1

I have to plot UTM coordinates (easting and northing) on a map and I wanted to do that with the matplotlib basemap toolkit in python.

Is there a way to use these coordinates directly or do I have to convert them into lat and long coordinates? If I have to convert them is there an easy way to do it?

thank you!

1
  • I don't think that Basemap accepts UTM coordinates, for the conversion from UTM to lat/lon you might want to look into e.g. GDAL Commented Dec 2, 2015 at 19:03

1 Answer 1

1

Okay, I found an answer: At http://pypi.python.org/pypi/utm there is a UTM conversion library (written by TBieniek). It is also possible to convert UTM with pyproj.

I found the answer here: lat/lon to utm to lat/lon is extremely flawed, how come?

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.