mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
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>
6 lines
139 B
Python
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"
|