#1 Thu 03 August 2006 11:04
- mathildeharel
- Participant occasionnel
- Date d'inscription: 4 Nov 2005
- Messages: 17
géoréférencer cadastre.dxf
bonjour à tous,
Je possède des planches cadastrales en .dxf, en non terrestre. J'ai réussi à les importer sous MI en vecteur en projection UTM.
2 problèmes:
- pas moyen de changer la projection en Lambert 2
- dans une même table, j'ai des points, des polylignes et des polygones.
1) Ayant la version 7.0 de MI, donc pas registervector.MBX pour caler des vecteurs, quelqu'un a-t'il une astuce qui m'éviterai d'acheter la version 7.5?
2) y a-t'il un moyen pour faire une sélection par type d'objets?
En vous remerciant par avance!
Hors ligne
#2 Thu 03 August 2006 12:05
Re: géoréférencer cadastre.dxf
Question n°2 :
soit convertir votre TAB en shape (décomposition en type d'entité), soit un mbx :
http://georezo.net/forum/viewtopic.php?pid=39993#p39993
[img]http://members.iinet.net.au/~haycraft/iaa/fig07sds.gif[/img]
Select By Drawing Style (SDS)
If you're a Mapinfo Pro user and you want to Select some rows of a table, not by values in the text fields, but by the Drawing Style of the objects in the Obj field, then it's a real chore.
For example if you need to select, from a table of Text objects, the rows containing Text features drawn with
Box background
Bold and Shadow effects
then you'll have to type
select * from TextTable into Selection
where (((StyleAttr(ObjectInfo(Obj,2),2)\256) mod 2)=0)
and (StyleAttr(ObjectInfo(Obj,2),5)<>-1)
and (((StyleAttr(ObjectInfo(Obj,2),2)\1) mod 2)=1)
and (((StyleAttr(ObjectInfo(Obj,2),2)\32) mod 2)=1)
SDS is query builder tool that lets you build and execute such queries through familiar style-picker dialogs.
Cordialement,
Robin.
Hors ligne