Skip to main content

I have a CSV with XY data for Kansas City. I've been told its in UTM. Not sure of the zone though (zone 15?). How do I convert this to Long and Lat?

Take a look at the CsmapAttributeReprojector.

You can visually verify the UTM zone by using a VertexCreator and a CoordinateSystemSetter before sending it to the Inspector with a background map.


Take a look at the CsmapAttributeReprojector.

You can visually verify the UTM zone by using a VertexCreator and a CoordinateSystemSetter before sending it to the Inspector with a background map.

 

Awesome! I'll give that a try. Thanks

You can even read the CSV file without using the VertexCreator. Set the coordinate system in the reader and set the attribute datatype to be x-coordinate and y-coordinate. The reader will create the geometry points automatically in the chosen coordinate system. Add an inspector to view in the Data Inspector. Then insert a Reprojector before the inspector to re-project to Lat/Long and view again.


or... Read the csv as a non spatial features and use the attribute reprojector to convert to lat long


or... Read the csv as a non spatial features and use the attribute reprojector to convert to lat long

Which is exactly what the CsmapAttributeReprojector does :-)

 

 


Reply