I have a set of coordinates in epsg:3857:
webmerc_coords = (-8956562.6 5368787.8)
Is there a way to determine what the appropriate local NAD83 UTM projection should be for this point?
I'm specifically looking for a Python-based (GeoPandas/pyproj etc.) or even better, JavaScript-based (proj4js) implementation of a function that can do this.
The coords given above, if plugged into this hypothetical function, would return 'EPSG:26917' as that's the NAD83 grid those EPSG:3857 coords most appropriately 'belong to'.
Looking at https://epsg.io/26917 for example, there are center coordinates listed, as well as bounds for this projection. I think what I'm looking for is essentially a function that will find the projection whose center coordinates are closest to MY coordinates or am I wrong in my logic somewhere here and asking for something impossible?