Skip to content
Advertisement

Python: Convert map in kilometres to degrees

I have a pandas Dataframe with a few million rows, each with an X and Y attribute with their location in kilometres according to the WGS 1984 World Mercator projection (created using ArcGIS).

What is the easiest way to project these points back to degrees, without leaving the Python/pandas environment?

Advertisement

Answer

Many years later, this is how I would do this. Keeping everything in GeoPandas to minimise the possibility of footguns.

Some imports:

JavaScript

Create a dataframe (note the values must be in metres!)

JavaScript

Create geometries from the X/Y coordinates

JavaScript

Convert to a GeoDataFrame, setting the current CRS. In this case EPSG:3857, the projection from the question.

JavaScript

Project it to the standard WGS84 CRS in degrees (EPSG:4326).

JavaScript

And then (optionally), extract the X/Y coordinates in degrees back into standard columns:

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