package/python-pyproj: new package

Provides cartographic projections in Python
https://pyproj4.github.io/pyproj/stable/

Signed-off-by: Daniel Crowe <daniel.crowe@maxmine.com.au>
[Julien:
 - reword commit title
 - add test files in DEVELOPERS entries
]
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
Daniel Crowe
2025-05-09 10:45:30 +09:30
committed by Julien Olivain
parent 02de349895
commit 7c65b4484e
7 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
from pyproj import CRS
# WGS 84 - World Geodetic System 1984, used in GPS
crs_4326 = CRS.from_epsg(4326)
assert crs_4326.name == "WGS 84"