- Vous êtes ici: Accéder au Wiki GeoRezo » Accueil : Wiki GeoRezo » Les logiciels en géomatique » Autodesk » Ressources Map 3D
Ceci est une ancienne révision du document !
Strict Standards: Declaration of syntax_plugin_googlemaps_googlemap::handle() should be compatible with DokuWiki_Syntax_Plugin::handle($match, $state, $pos, Doku_Handler $handler) in /var/www/html/web/wiki/lib/plugins/googlemaps/syntax/googlemap.php on line 169
Strict Standards: Declaration of syntax_plugin_googlemaps_googlemap::render() should be compatible with DokuWiki_Syntax_Plugin::render($format, Doku_Renderer $renderer, $data) in /var/www/html/web/wiki/lib/plugins/googlemaps/syntax/googlemap.php on line 169
Strict Standards: Declaration of syntax_plugin_nextpage::handle() should be compatible with DokuWiki_Syntax_Plugin::handle($match, $state, $pos, Doku_Handler $handler) in /var/www/html/web/wiki/lib/plugins/nextpage/syntax.php on line 69
Strict Standards: Declaration of syntax_plugin_nextpage::render() should be compatible with DokuWiki_Syntax_Plugin::render($format, Doku_Renderer $renderer, $data) in /var/www/html/web/wiki/lib/plugins/nextpage/syntax.php on line 69
Strict Standards: Declaration of syntax_plugin_pageindex::handle() should be compatible with DokuWiki_Syntax_Plugin::handle($match, $state, $pos, Doku_Handler $handler) in /var/www/html/web/wiki/lib/plugins/pageindex/syntax.php on line 177
Strict Standards: Declaration of syntax_plugin_pageindex::render() should be compatible with DokuWiki_Syntax_Plugin::render($format, Doku_Renderer $renderer, $data) in /var/www/html/web/wiki/lib/plugins/pageindex/syntax.php on line 177
Table des matières
Ressources Map 3D
- [Map 3D 2009] : SP1 et Hotfix
- [Map 3D 2008] : SP1 et Hotfix
- [Map 3D] : Changer la projection (vecteur)
- [Map 3D] : Nettoyer un dessin
- [Map 3D] : Générer Textes depuis Données d'Objet Map (Object Data)
- [Map 3D] : Requête avec Tests sur Table de Données d'Objet (Object Data)
- [Map 3D] : Conversion de Xdata d'AutoCAD en Données d'Objet de Map (Object Data)
- [Map 3D] : Rappel sur les Données d'Objet de MAP + Routine pour les copier ... (Object Data)
- [Map 3D] : Draper un raster sur un MNT
- [Map 3D] : Publier en DWF avec Données attributaires (Object Data & Liens ASE-SQL)
- [Map 3D] : Les MPOLYGONs de MAP
Transferts VERS ou DEPUIS différents logiciels externes :
- [Map 3D] : Importation d'un fichier Mapinfo dans MAP - Idem pour TAB / SHP / etc
- [Map 3D] : Export en MIF-MID depuis MAP (Small Bug !)
Astuces
Convertir une polyligne 2d en polyligne 3D
;; Routine Convert3D (par GC)
;; En entree : polyligne 2D
;; En sortie : polyligne 3D
;; Commande au clavier : CONVERT3D
;; GetVertices (par GC)
;; Retourne la liste des sommets des polylignes (coordonnées SCG)
;; Argument : ename de la polyligne
(defun GetVertices (ent / elst pt plst)
(setq elst (entget ent))
(cond
((= (cdr (assoc 0 elst)) "LWPOLYLINE")
(setq elv (cdr (assoc 38 elst)))
(apply 'append
(mapcar
'(lambda (x)
(if (= 10 (car x))
(list (trans (list (cadr x) (caddr x) elv) ent 0))
)
)
elst
)
)

