pyproj icon indicating copy to clipboard operation
pyproj copied to clipboard

Python interface to PROJ (cartographic projections and coordinate transformations library)

Results 45 pyproj issues
Sort by recently updated
recently updated
newest added

#### Installation method/steps - First, PROJ was installed using the Cygwin package installation tool. - Then attempted to install pyproj using pip: `pip3 install pyproj` #### Environment Information - pyproj...

installation-issues
windows

Related to #930 Thinking about pyproj 3.4.x being the last series to support python 3.8. Community references: - Python 3.11 - October 2022 [ref](https://devguide.python.org/versions/). #1110 - [NEP-29](https://numpy.org/neps/nep-0029-deprecation_policy.html) says numpy drops...

Currently don't have CI runners to build/test them. There are options to potentially cross compile, but the wheels wouldn't be able to be tested. Not sure what the best way...

help wanted
installation-issues
macos

https://devguide.python.org/versions/ Release: 2022-10-03

Hi. When I download pyproj (MAC M1 chip, Big Sur 11.0.1) on python in a VENV folder it works originally then always seems to come up with the following error:...

help wanted
installation-issues
macos

https://github.com/OSGeo/PROJ/pull/3180 PROJ 9.1+

proposal

#### Code Sample, a copy-pastable example if possible ```python import pyproj crs_wkt = 'PROJCRS["unknown",BASEGEOGCRS["unknown",DATUM["unknown",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1,ID["EPSG",9001]]]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Equidistant Cylindrical",ID["EPSG",1028]],PARAMETER["Latitude of 1st standard parallel",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8823]],PARAMETER["Longitude of natural origin",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["unknown",111319.490793274],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["unknown",111319.490793274],ID["EPSG",8807]]],CS[Cartesian,3],AXIS["(E)",east,ORDER[1],LENGTHUNIT["unknown",111319.490793274]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["unknown",111319.490793274]],AXIS["ellipsoidal height (h)",up,ORDER[3],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]' crs = pyproj.CRS.from_user_input(crs_wkt)...

bug
documentation

Until 2 days ago the below was working. Not sure this is a msys2/mingw or pyproj issue. First noticed on an appveyor (Visual Studio 2109) build, since confirmed locally. Need...

help wanted
installation-issues
windows

There is a `is_wkt` function that allows you to check if a given string is a WKT string: https://github.com/pyproj4/pyproj/blob/2d3cc7e0b83f59df2c0f5d3c2a8446ce0f224700/pyproj/_crs.pyx#L32-L48 The `proj` method it is using for that (`proj_context_guess_wkt_dialect`) should also...

enhancement
proposal

https://github.com/OSGeo/PROJ/pull/2914 PROJ 9

proposal