corresponding_utm_projection#

corresponding_utm_projection(lon: float, lat: float) str[source]#

Find the EPSG code of the UTM projection from a lon/lat in WGS84.

>>> corresponding_utm_projection(lon=7.8, lat=48.6)  # Strasbourg
'EPSG:32632'
Parameters
  • lon (float) – Longitude (WGS84)

  • lat (float) – Latitude (WGS84)

Returns

EPSG string

Return type

str