Files
shredos.x86_64/support/testing/tests/package/sample_python_pyproj.py
2026-01-06 22:53:29 +00: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"