Files
buildroot/support/testing/tests/package/sample_python_pyproj.py
Daniel Crowe 7c65b4484e 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>
2025-05-09 19:01:27 +02:00

6 lines
139 B
Python

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"