pyproj icon indicating copy to clipboard operation
pyproj copied to clipboard

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

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

performance hint: pyproj/_datadir.pyx:80:5: Exception check on 'pyproj_log_function' will always require the GIL to be acquired. Possible solutions: 1. Declare 'pyproj_log_function' as 'noexcept' if you control the definition and you're sure...

question
installation-issues

In the scope of adding a new feature to https://spatialreference.org/ `base crs`, in a similar way it is done in [epsg.org](http://epsg.org/), I think I need [proj_query_geodetic_crs_from_datum](https://proj.org/en/9.4/development/reference/functions.html#c.proj_query_geodetic_crs_from_datum). (Please, correct me if...

enhancement
proposal

`geometry_area_perimeter` has limitations that means it cannot calculate the area of many polygons: https://pyproj4.github.io/pyproj/stable/api/geod.html#pyproj.Geod.geometry_area_perimeter Suggestion: A method/function/class that allows calculation of the area of a polygon anywhere on the earth's...

question
proposal
proj
documentation

The `geometry_area_perimeter` method documented https://pyproj4.github.io/pyproj/stable/api/geod.html#pyproj.Geod.geometry_area_perimeter - doesn't list its limitations. These include, but may not be limited to: * Only working for areas up to half the size of the...

documentation
good-first-issue

Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.17 to 2.18. Release notes Sourced from pypa/cibuildwheel's releases. v2.18.0 ✨ Adds CPython 3.13 support, under the prerelease flag CIBW_PRERELEASE_PYTHONS. This version of cibuildwheel uses 3.13.0b1. Free-threading...

dependencies

#### Problem description The following error may occur when trying to import pyproj into a QGIS plugin ``` terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc Abandon (core...

bug
help wanted
installation-issues

- [ ] Closes #xxxx - [ ] Tests added - [ ] Fully documented, including `history.rst` for all changes and `api/*.rst` for new API

Hello, Currently, setting the environment variable PROJ_DATA has no effect on pyproj when the installation of pyproj brings its own data. I think it would be good to lower the...

question
proposal
installation-issues

# Problem description I am updating the pkgsrc pkg for py-proj to 3.7.0. I do not have a clear memory of running tests before. In pkgsrc we invoked tests as...

installation-issues

#### Code Sample, a copy-pastable example if possible ```python import numpy as np from pyproj import Transformer from joblib import Parallel, delayed import time # Generate test data N =...

bug