Python interface to PROJ.4 library. Performs cartographic transformations and geodetic computations.
Questions tagged [pyproj]
184 questions
-1
votes
1 answer
Python: correcting offset of points on google maps (due to satellite image tilt)
I'm using the google maps static api to get top view satellite images of objects of which I have the surface coordinates (LoD1 / LoD2).
the points are always slightly off, I think this is due to a small tilt in the satellite image itself (is it a…

ArieAI
- 354
- 1
- 12
-1
votes
1 answer
DeprecationWarning: This function is deprecated. See: https://pyproj4.github.io/pyproj/stable/gotchas.html#upgrading-to-pyproj-2-from-pyproj-1
I am using Jupyter notebook and I have written the following code:
#!pip install shapely
import shapely.geometry
#!pip install pyproj
import pyproj
from pyproj import Transformer
import math
def lonlat_to_xy(lon, lat):
proj_latlon =…

Tom C
- 3
- 3
-1
votes
1 answer
pyproj - How to decide the initial points of any UTM zone
I am trying to convert X,Y system to latitude and longitude, and it seems that many people recommend pyproj
In their sample code, they use p1 = Proj(init='epsg:26915') and p2 = Proj(init='epsg:26715')
But that's for UTM Zone15
Here is my sample x =…

Cherry Wu
- 3,844
- 9
- 43
- 63