mirror of
https://github.com/wassname/PyCRS.git
synced 2026-06-27 16:10:29 +08:00
54 lines
889 B
Python
54 lines
889 B
Python
|
|
|
|
class WGS84:
|
|
proj4 = "WGS84"
|
|
ogc_wkt = "WGS_1984"
|
|
esri_wkt = "WGS_1984"
|
|
|
|
semimaj_ax = 6378137
|
|
inv_flat = 298.257223563
|
|
|
|
|
|
class WGS72:
|
|
proj4 = "WGS72"
|
|
ogc_wkt = "WGS 72"
|
|
esri_wkt = "WGS_1972"
|
|
|
|
semimaj_ax = 6378135
|
|
inv_flat = 298.26
|
|
|
|
class International:
|
|
proj4 = "intl"
|
|
ogc_wkt = "International_1924"
|
|
esri_wkt = "International_1924"
|
|
|
|
semimaj_ax = 6378388.0
|
|
inv_flat = 297.0
|
|
|
|
class GRS80:
|
|
proj4 = "GRS80"
|
|
ogc_wkt = "GRS_1980"
|
|
esri_wkt = "GRS_1980"
|
|
|
|
semimaj_ax = 6378137.0
|
|
inv_flat = 298.257222101
|
|
|
|
class Clarke1866:
|
|
proj4 = "clrk66"
|
|
ogc_wkt = "Clarke_1866"
|
|
esri_wkt = "Clarke_1866"
|
|
|
|
semimaj_ax = 6378206.4
|
|
inv_flat = 294.9786982
|
|
|
|
class Airy1830:
|
|
proj4 = "airy"
|
|
ogc_wkt = "Airy 1830"
|
|
esri_wkt = "Airy_1830"
|
|
|
|
semimaj_ax = 6377563.396
|
|
inv_flat = 299.3249646
|
|
|
|
|
|
|