pyproj
pyproj copied to clipboard
Python interface to PROJ (cartographic projections and coordinate transformations library)
Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.23 to 3.0. Release notes Sourced from pypa/cibuildwheel's releases. v3.0.0 See @henryiii's release post for more info on new features! 🌟 Adds the ability to build wheels...
#### Code Sample, a copy-pastable example if possible A "Minimal, Complete and Verifiable Example" will make it much easier for maintainers to help you: - http://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports - https://stackoverflow.com/help/minimal-reproducible-example ```python from...
#### What is the current behavior? Unable to install the package from pip. #### What is the desired behavior? To have [native wheel for WoA](https://blogs.windows.com/windowsdeveloper/2025/04/14/github-actions-now-supports-windows-on-arm-runners-for-all-public-repos/). GitHub Actions now supports win-arm64...
### Example Code showing the issue where the transformation part of the BoundCRS object is ignored ```python from pyproj import CRS,Transformer from pyproj.crs import BoundCRS import numpy as np np.set_printoptions(suppress=True)...
The ``TransformerGroup`` class in Pyproj does not manage to return the same list of available transformations between two CRSs as `the `projinfo`` command in the PROJ CLI. Ideally they should...
- [x] Closes #1486  --- It seems that it added my previous commits, I'm not sure what I did wrong. Does it change anything for the PR ?
When working on the doc I found that building the docs was only explained for Linux users. [Link for the conversation](https://github.com/pyproj4/pyproj/pull/1489#issuecomment-2825301296) I think we need to add a note for...
As mentioned in [GeoPandas #3539](https://github.com/geopandas/geopandas/issues/3539), there is interest in using pyproj to calculate geodesic areas and lengths. The current pyproj API (`Geod::geometry_area_perimeter`) for this uses singular shapely objects, which is...
Should probably document this better, but WKT & coordinate systems don't mix well together: https://github.com/OSGeo/PROJ/issues/1819 I recommend using `to_json`/`from_json` instead. _Originally posted by @snowman2 in https://github.com/pyproj4/pyproj/discussions/1485#discussioncomment-12671241_
Some of the pyproj functionality requires `shapely`. E.g. [`Geod.geometry_area_perimeter`](https://pyproj4.github.io/pyproj/stable/api/geod.html#pyproj.Geod.geometry_area_perimeter). Nevertheless when you `pip install pyproj`, `shapely` does not get installed. I understand that most of the time when you install...