DXF - Convert its coordinates.

Post Reply
wwj
Posts: 2497
Joined: 27 Jan 2007 08:16

DXF - Convert its coordinates.

Post by wwj »

Rhino software itself does not have built-in support for transforming or converting geographic coordinates (such as NAD 83 to State Plane Nevada Central 1927). However, you can achieve this through one of the following methods:
1. Using Rhino's Plugins

Rhino supports plugins that handle geospatial data and coordinate transformations. Specifically, plugins like Rhino Terrain or VisualARQ can help with some geospatial tasks. Check whether these plugins support your coordinate systems.

2. Using GIS Software

If precise coordinate transformation is required, export the DXF file from Rhino and use a GIS software like QGIS or ArcGIS to reproject the coordinates:

Import your DXF file into the GIS software.
Define the current projection (e.g., NAD 83 BLM Zone 11N).
Reproject the data to your target system (e.g., State Plane Nevada Central 1927).
Export the reprojected DXF and import it back into Rhino if needed.


3. Manual Transformation in Rhino

If you know the transformation parameters (e.g., translation, rotation, and scale), you can apply these transformations in Rhino manually:

Use the Move, Scale, and Rotate commands to adjust your geometry.
For more precise control, you can use scripting in Rhino with RhinoScript, Grasshopper, or Rhino.Python.

4. Using CAD Software with Coordinate System Support

Software like AutoCAD Map 3D or Civil 3D supports geospatial coordinate systems natively. You could transform the DXF coordinates in such software and then import the file into Rhino.

Would you like help with one of these methods?
Post Reply