mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-14 06:32:11 +00:00
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"
|