.NET
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

coordinate system extraction

1 REPLY 1
Reply
Message 1 of 2
murali.pandey
1149 Views, 1 Reply

coordinate system extraction

Hi

Anybody can tell me ,how can I extract coordinate system of a autocad Map dwg file by using C#. I have to use this information to set the coordinate system of other drawing.

 

Thanks

Murali

1 REPLY 1
Message 2 of 2
norman.yuan
in reply to: murali.pandey

I assume by "coordinate system", you mean GIS coordinate system that assigned to a drawing in AutoCAD Map 3D/Civil 3D, right?

 

To do that you need to set reference to AutoCAD Map 3D GIS platform API assemblies. Depending on the version of AutoCAD Map, the assemblies' name changes since it is officially available in AutoCAD Map 2009 (2008 had preview version).

 

Anyway, to find out the GIS coordinate system assigned to a drawing, you can do this:

 

Autodesk.Gis.Map.Platform.AcMapMap map=Autodesk.Gis.Map.Platform.AcMapMap.GetCurrentMap()

string wkt=map.GetMapSRS()

if (string.IsNullOrEmpty(wkt))

    ''No coordinate system is assigned

else

{

    OSGeo.MapGuid.MgCoordinateSystemFactory factory=new OSGeo.MapGuide.NgCoordinateSystemFactory();

    //Get assigned CS. code, such as "UTM83-12"

    string csCode=factory.ConvertWktToCoordinateSystemCode(wkt);

}

 

However, when I ran this code in my AutoCAD Map 2009, GetMapSRS() sometimes does not return the coordinate system wellknown text on already opened drawing, even the drawing really has a CS assigned and I had to reopen the drawing. I have not tried this on later AutoCAD Map version. I am not sure it is the API bug in the early API version (Acad Map 2009) or my code error somewhere. Anyway, hope this be a little help.

 

BTW, for Acad Map specific, you may want to post to Acad Map Developing forum, but I guess a lot of regular visitors to this group may also actually use ACAD vertical like Acad Map/Civil anyway.

 

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk DevCon in Munich May 28-29th


Autodesk Design & Make Report

”Boost