mirror of
https://github.com/wassname/PyCRS.git
synced 2026-06-27 16:10:29 +08:00
a8aad24a13
Next step figure out more stable proj4 parsing of datums and proj etc, with adding more specific names. Then consistently make to_esriwkt work.
15 lines
218 B
Python
15 lines
218 B
Python
|
|
|
|
class Robinson:
|
|
proj4 = "robin"
|
|
ogc_wkt = "Robinson"
|
|
|
|
class UTM:
|
|
proj4 = "utm"
|
|
ogc_wkt = "Transverse_Mercator"
|
|
|
|
class ObliqueMercator:
|
|
proj4 = "omerc"
|
|
ogc_wkt = "Hotine_Oblique_Mercator"
|
|
|