Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have 100 drawings having the wrong coordinate system.
There is a way to access the database of each drawing and set up the proper coordinate system
The code I found out is not for the side database is only for the current drawing:
Autodesk.Gis.Map.MapApplication mapApp = Autodesk.Gis.Map.HostMapApplicationServices.Application;
Autodesk.Gis.Map.Project.ProjectModel projModel = mapApp.ActiveProject;
projModel.Projection = "TN18F";
Solved! Go to Solution.