mirror of
https://github.com/wassname/PyCRS.git
synced 2026-06-27 16:10:29 +08:00
fcc463fa76
Also just need to expand to more projection name, datum name, and ellipsoid name definitions, and also additional special parameters. After that, test, and move onto from_wkt()...
12 lines
202 B
Python
12 lines
202 B
Python
|
|
|
|
class Meter:
|
|
proj4 = "m"
|
|
ogc_wkt = "Meters" # or is it metre?? sometimes even Meter?
|
|
esri_wkt = "Meter"
|
|
|
|
class Degree:
|
|
proj4 = "degrees"
|
|
ogc_wkt = "degree"
|
|
esri_wkt = "Degree"
|