pyproj
pyproj copied to clipboard
Python interface to PROJ (cartographic projections and coordinate transformations library)
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...
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...
`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...
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...
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...
#### 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...
- [ ] 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...
# 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...
#### 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 =...