Skip to content
Advertisement

pyproj conversion UTM to lat/long out by 3 deg

I am reading UTM point data from a shape file. The geopandas CRS string associated with the shape file is:

JavaScript

I convert the point data to lat/long using pyproj:

JavaScript

This gives me the correct latitude but the longitude is exactly 3 degrees out. I changed the UTM zone to utm=+20 but now am 3 degress out in the other direction. I also tried setting the false easting with x_0=500000 and the central longitude with lon_0=-60 but that made no difference. Finally, I tried setting a projection system using one of the EPSG settings in the CRS string eg

JavaScript

but that gave the error message CRSError: Invalid projection: epsg:6326: (Internal Proj Error: proj_create: crs not found). Would appreciate any suggestions as I am new to GIS and finding it difficult to understand projections. An illustration of the problem is shown below:

JavaScript

EDIT: After further investigation I found that I should have been using the Transverse Mercator projection, not Universal Transverse Mercator. If I use:

JavaScript

then the points plot in the correct position.

Advertisement

Answer

Recommendations:

JavaScript

Output:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement