Passed
Push — master ( bbeaaa...9ed6c0 )
by Doug
25:29
created

Datum   B

Complexity

Total Complexity 19

Size/Duplication

Total Lines 14422
Duplicated Lines 0 %

Test Coverage

Coverage 94.34%

Importance

Changes 5
Bugs 0 Features 0
Metric Value
eloc 6572
dl 0
loc 14422
ccs 50
cts 53
cp 0.9434
rs 8.8
c 5
b 0
f 0
wmc 19

10 Methods

Rating   Name   Duplication   Size   Complexity  
A getDatumType() 0 3 1
A getFrameReferenceEpoch() 0 3 1
B fromSRID() 0 47 9
A getSRID() 0 3 1
A getPrimeMeridian() 0 3 1
A getSupportedSRIDs() 0 8 2
A getName() 0 3 1
A registerCustomDatum() 0 3 1
A __construct() 0 14 1
A getEllipsoid() 0 3 1
1
<?php
2
/**
3
 * PHPCoord.
4
 *
5
 * @author Doug Wright
6
 */
7
declare(strict_types=1);
8
9
namespace PHPCoord\Datum;
10
11
use DateTimeInterface;
12
use PHPCoord\Exception\UnknownDatumException;
13
use PHPCoord\UnitOfMeasure\Time\Year;
14
15
use function end;
16
17
class Datum
18
{
19
    /**
20
     * AIOC 1995
21
     * Type: Vertical
22
     * Extent: Azerbaijan - Caspian offshore and onshore Sangachal terminal.
23
     * Average level of Caspian Sea at the Oil Rocks tide gauge June-September 1995.
24
     * AIOC 1995 datum is 1.7m above Caspian datum and 26.3m below Baltic datum.
25
     */
26
    public const EPSG_AIOC_1995 = 'urn:ogc:def:datum:EPSG::5133';
27
28
    /**
29
     * AbInvA96_2020 Intermediate Reference Frame
30
     * Type: Geodetic
31
     * Extent: United Kingdom (UK) - on or related to the A96 highway from Aberdeen to Inverness.
32
     * Defined through the application of the AbInvA96_2000 NTv2 transformation (code 9386) to ETRS89 as realized
33
     * through OSNet v2009 CORS.
34
     * Created in 2020 to support intermediate CRS "AbInvA96_2020-IRF" in the emulation of the AbInvA96_2020 Snake map
35
     * projection.
36
     */
37
    public const EPSG_ABINVA96_2020_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1273';
38
39
    /**
40
     * Abidjan 1987
41
     * Type: Geodetic
42
     * Extent: Côte d'Ivoire (Ivory Coast) - onshore and offshore.
43
     * Fundamental point: Abidjan I. Latitude: 5°18'51.01"N, longitude: 4°02'06.04"W (of Greenwich).
44
     */
45
    public const EPSG_ABIDJAN_1987 = 'urn:ogc:def:datum:EPSG::6143';
46
47
    /**
48
     * Accra
49
     * Type: Geodetic
50
     * Extent: Ghana - onshore and offshore.
51
     * Fundamental point: GCS Station 547. Latitude: 5°23'43.3"N, longitude: 0°11'52.3"W (of Greenwich).
52
     * Replaced in 1978 by Leigon datum (code 6250).
53
     */
54
    public const EPSG_ACCRA = 'urn:ogc:def:datum:EPSG::6168';
55
56
    /**
57
     * Aden 1925
58
     * Type: Geodetic
59
     * Extent: Yemen - South Yemen onshore mainland.
60
     */
61
    public const EPSG_ADEN_1925 = 'urn:ogc:def:datum:EPSG::1135';
62
63
    /**
64
     * Adindan
65
     * Type: Geodetic
66
     * Extent: Eritrea; Ethiopia; South Sudan; Sudan.
67
     * Fundamental point: Station 15; Adindan. Latitude: 22°10'07.110"N, longitude: 31°29'21.608"E (of Greenwich).
68
     * The 12th parallel traverse of 1966-70 (Point 58 datum, code 6620) is connected to the Blue Nile 1958 network in
69
     * western Sudan. This has given rise to misconceptions that the Blue Nile network is used in west Africa.
70
     */
71
    public const EPSG_ADINDAN = 'urn:ogc:def:datum:EPSG::6201';
72
73
    /**
74
     * Afgooye
75
     * Type: Geodetic
76
     * Extent: Somalia - onshore.
77
     */
78
    public const EPSG_AFGOOYE = 'urn:ogc:def:datum:EPSG::6205';
79
80
    /**
81
     * Agadez
82
     * Type: Geodetic
83
     * Extent: Niger.
84
     */
85
    public const EPSG_AGADEZ = 'urn:ogc:def:datum:EPSG::6206';
86
87
    /**
88
     * Ain el Abd 1970
89
     * Type: Geodetic
90
     * Extent: Bahrain, Kuwait and Saudi Arabia - onshore.
91
     * Fundamental point: Ain El Abd.  Latitude: 28°14'06.171"N, longitude: 48°16'20.906"E (of Greenwich).
92
     */
93
    public const EPSG_AIN_EL_ABD_1970 = 'urn:ogc:def:datum:EPSG::6204';
94
95
    /**
96
     * Albanian 1987
97
     * Type: Geodetic
98
     * Extent: Albania - onshore.
99
     */
100
    public const EPSG_ALBANIAN_1987 = 'urn:ogc:def:datum:EPSG::6191';
101
102
    /**
103
     * Alicante
104
     * Type: Vertical
105
     * Extent: Gibraltar - onshore; Spain - mainland onshore.
106
     * Mean Sea Level at Alicante between 1870 and 1872.
107
     * Orthometric heights.
108
     */
109
    public const EPSG_ALICANTE = 'urn:ogc:def:datum:EPSG::5180';
110
111
    /**
112
     * American Samoa 1962
113
     * Type: Geodetic
114
     * Extent: American Samoa - Tutuila, Aunu'u, Ofu, Olesega and Ta'u islands.
115
     * Fundamental point: Betty 13 eccentric. Latitude: 14°20'08.34"S, longitude: 170°42'52.25"W (of Greenwich).
116
     */
117
    public const EPSG_AMERICAN_SAMOA_1962 = 'urn:ogc:def:datum:EPSG::6169';
118
119
    /**
120
     * American Samoa Vertical Datum of 2002
121
     * Type: Vertical
122
     * Extent: American Samoa - Tutuila island.
123
     * Mean sea level at Pago Pago harbor, Tutuila. Benchmark 1770000 S TIDAL = 1.364m relative to National Tidal Datum
124
     * Epoch 1983-2001.
125
     * Replaces Tutuila vertical datum of 1962 (datum code 1121). Replaced by Pago Pago local tidal datum (datum code
126
     * 1302) in March 2020 after ASVD02 benchmarks destroyed by earthquake activity.
127
     */
128
    public const EPSG_AMERICAN_SAMOA_VERTICAL_DATUM_OF_2002 = 'urn:ogc:def:datum:EPSG::1125';
129
130
    /**
131
     * Amersfoort
132
     * Type: Geodetic
133
     * Extent: Netherlands - onshore, including Waddenzee, Dutch Wadden Islands and 12-mile offshore coastal zone.
134
     * Originally defined through fundamental point Amersfoort, latitude 52°09'22.178"N, longitude 5°23'15.478"E (of
135
     * Greenwich). Since 2000-10-01 has been redefined as derived from ETRS89 by application of the official
136
     * transformation RDNAPTRANS(TM).
137
     */
138
    public const EPSG_AMERSFOORT = 'urn:ogc:def:datum:EPSG::6289';
139
140
    /**
141
     * Ammassalik 1958
142
     * Type: Geodetic
143
     * Extent: Greenland - Ammassalik area onshore.
144
     */
145
    public const EPSG_AMMASSALIK_1958 = 'urn:ogc:def:datum:EPSG::6196';
146
147
    /**
148
     * Ancienne Triangulation Francaise (Paris)
149
     * Type: Geodetic
150
     * Extent: France - mainland onshore.
151
     * Uses the RGS value for the Paris meridian.  In Alsace, data suspected to be transformation of German network
152
     * into ATF. Replaced by Nouvelle Triangulation Francaise (Paris) (code 6807) which uses the 1936 IGN value for the
153
     * Paris meridian.
154
     */
155
    public const EPSG_ANCIENNE_TRIANGULATION_FRANCAISE_PARIS = 'urn:ogc:def:datum:EPSG::6901';
156
157
    /**
158
     * Anguilla 1957
159
     * Type: Geodetic
160
     * Extent: Anguilla - onshore.
161
     * Fundamental point: station A4, Police.
162
     */
163
    public const EPSG_ANGUILLA_1957 = 'urn:ogc:def:datum:EPSG::6600';
164
165
    /**
166
     * Antalya
167
     * Type: Vertical
168
     * Extent: Türkiye (Turkey) - onshore.
169
     * Mean sea Level at Antalya 1936-71.
170
     * Orthometric heights.
171
     */
172
    public const EPSG_ANTALYA = 'urn:ogc:def:datum:EPSG::5173';
173
174
    /**
175
     * Antigua 1943
176
     * Type: Geodetic
177
     * Extent: Antigua island - onshore.
178
     * Fundamental point: station A14.
179
     */
180
    public const EPSG_ANTIGUA_1943 = 'urn:ogc:def:datum:EPSG::6601';
181
182
    /**
183
     * Aratu
184
     * Type: Geodetic
185
     * Extent: Brazil - offshore south and east of a line intersecting the coast at 2°55'S; onshore Tucano basin.
186
     */
187
    public const EPSG_ARATU = 'urn:ogc:def:datum:EPSG::6208';
188
189
    /**
190
     * Arc 1950
191
     * Type: Geodetic
192
     * Extent: Botswana; Malawi; Zambia; Zimbabwe.
193
     * Fundamental point: Buffelsfontein. Latitude: 33°59'32.000"S, longitude: 25°30'44.622"E (of Greenwich).
194
     */
195
    public const EPSG_ARC_1950 = 'urn:ogc:def:datum:EPSG::6209';
196
197
    /**
198
     * Arc 1960
199
     * Type: Geodetic
200
     * Extent: Burundi, Kenya, Rwanda, Tanzania and Uganda.
201
     * Fundamental point: Buffelsfontein. Latitude: 33°59'32.000"S, longitude: 25°30'44.622"E (of Greenwich).
202
     */
203
    public const EPSG_ARC_1960 = 'urn:ogc:def:datum:EPSG::6210';
204
205
    /**
206
     * Ascension Island 1958
207
     * Type: Geodetic
208
     * Extent: St Helena, Ascension and Tristan da Cunha - Ascension Island - onshore.
209
     */
210
    public const EPSG_ASCENSION_ISLAND_1958 = 'urn:ogc:def:datum:EPSG::6712';
211
212
    /**
213
     * Astro DOS 71
214
     * Type: Geodetic
215
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
216
     * Fundamental point: DOS 71/4, Ladder Hill Fort, latitude: 15°55'30"S, longitude: 5°43'25"W (of Greenwich).
217
     */
218
    public const EPSG_ASTRO_DOS_71 = 'urn:ogc:def:datum:EPSG::6710';
219
220
    /**
221
     * Auckland 1946
222
     * Type: Vertical
223
     * Extent: New Zealand - North Island - Auckland vertical CRS area.
224
     * MSL at Auckland harbour 1909-1923.
225
     */
226
    public const EPSG_AUCKLAND_1946 = 'urn:ogc:def:datum:EPSG::5157';
227
228
    /**
229
     * Australian Antarctic Datum 1998
230
     * Type: Geodetic
231
     * Extent: Antarctica between 45°E and 136°E and between 142°E and 160°E - Australian sector.
232
     */
233
    public const EPSG_AUSTRALIAN_ANTARCTIC_DATUM_1998 = 'urn:ogc:def:datum:EPSG::6176';
234
235
    /**
236
     * Australian Geodetic Datum 1966
237
     * Type: Geodetic
238
     * Extent: Australia - onshore and offshore. Papua New Guinea - onshore.
239
     * Fundamental point: Johnson Memorial Cairn. Latitude: 25°56'54.5515"S, longitude: 133°12'30.0771"E (of
240
     * Greenwich).
241
     */
242
    public const EPSG_AUSTRALIAN_GEODETIC_DATUM_1966 = 'urn:ogc:def:datum:EPSG::6202';
243
244
    /**
245
     * Australian Geodetic Datum 1984
246
     * Type: Geodetic
247
     * Extent: Australia - Queensland, South Australia, Western Australia, federal areas offshore west of 129°E.
248
     * Fundamental point: Johnson Memorial Cairn. Latitude: 25°56'54.5515"S, longitude: 133°12'30.0771"E (of
249
     * Greenwich).
250
     * Uses all data from 1966 adjustment with additional observations, improved software and a geoid model.
251
     */
252
    public const EPSG_AUSTRALIAN_GEODETIC_DATUM_1984 = 'urn:ogc:def:datum:EPSG::6203';
253
254
    /**
255
     * Australian Height Datum
256
     * Type: Vertical
257
     * Extent: Australia - Australian Capital Territory, New South Wales, Northern Territory, Queensland, South
258
     * Australia, Tasmania, Western Australia and Victoria - onshore. Christmas Island - onshore. Cocos and Keeling
259
     * Islands - onshore.
260
     * Mainland: MSL 1966-68 at 30 gauges around coast. Tasmania: MSL 1972 at Hobart and Burnie. Christmas Island: MSL
261
     * (details unspecified). Cocos and Keeling Islands: MSL (details unspecified).
262
     * Normal-orthometric heights. Initially defined for mainland only, with independent height datums for Australian
263
     * mainland, Tasmania, Christmas Island and Cocos and Keeling Islands. With introduction of AUSGeoid2020 in 2017,
264
     * all considered to be AHD.
265
     */
266
    public const EPSG_AUSTRALIAN_HEIGHT_DATUM = 'urn:ogc:def:datum:EPSG::5111';
267
268
    /**
269
     * Australian Height Datum (Tasmania)
270
     * Type: Vertical
271
     * Extent: Australia - Tasmania mainland - onshore.
272
     * MSL 1972 at Hobart and Burnie.
273
     */
274
    public const EPSG_AUSTRALIAN_HEIGHT_DATUM_TASMANIA = 'urn:ogc:def:datum:EPSG::5112';
275
276
    /**
277
     * Australian Terrestrial Reference Frame 2014
278
     * Type: Dynamic geodetic
279
     * Extent: Australia including Lord Howe Island, Macquarie Island, Ashmore and Cartier Islands, Christmas Island,
280
     * Cocos (Keeling) Islands, Norfolk Island. All onshore and offshore.
281
     * ITRF2014 at epoch 2020.0.
282
     * Densification of ITRF2014 in the Australian region.
283
     */
284
    public const EPSG_AUSTRALIAN_TERRESTRIAL_REFERENCE_FRAME_2014 = 'urn:ogc:def:datum:EPSG::1291';
285
286
    /**
287
     * Australian Vertical Working Surface
288
     * Type: Vertical
289
     * Extent: Australia including Lord Howe Island, Macquarie Island, Ashmore and Cartier Islands, Christmas Island,
290
     * Cocos (Keeling) Islands, Norfolk Island. All onshore and offshore.
291
     * Realized by the Australian gravimetric quasi-geoid (AGQG).
292
     * Normal heights. Extends gravity-related heights to offshore. See AHD (datum code 5111) for cadastral survey or
293
     * local engineering survey including construction or mining.
294
     */
295
    public const EPSG_AUSTRALIAN_VERTICAL_WORKING_SURFACE = 'urn:ogc:def:datum:EPSG::1292';
296
297
    /**
298
     * Autonomous Regions of Portugal 2008
299
     * Type: Geodetic
300
     * Extent: Portugal - Azores and Madeira island groups and surrounding EEZ - Flores, Corvo; Graciosa, Terceira, Sao
301
     * Jorge, Pico, Faial; Sao Miguel, Santa Maria; Madeira, Porto Santo, Desertas; Selvagens.
302
     * ITRF93 as derived from the 1994 TransAtlantic Network for Geodynamics and Oceanography (TANGO) project.
303
     * Replaces older classical datums for Azores and Madeira archipelagos.
304
     */
305
    public const EPSG_AUTONOMOUS_REGIONS_OF_PORTUGAL_2008 = 'urn:ogc:def:datum:EPSG::1041';
306
307
    /**
308
     * Average Terrestrial System 1977
309
     * Type: Geodetic
310
     * Extent: Canada - New Brunswick; Nova Scotia; Prince Edward Island.
311
     * In use from 1979.  To be phased out in late 1990's.
312
     */
313
    public const EPSG_AVERAGE_TERRESTRIAL_SYSTEM_1977 = 'urn:ogc:def:datum:EPSG::6122';
314
315
    /**
316
     * Ayabelle Lighthouse
317
     * Type: Geodetic
318
     * Extent: Djibouti - onshore and offshore.
319
     * Fundamental point: Ayabelle Lighthouse.
320
     */
321
    public const EPSG_AYABELLE_LIGHTHOUSE = 'urn:ogc:def:datum:EPSG::6713';
322
323
    /**
324
     * Azores Central Islands 1948
325
     * Type: Geodetic
326
     * Extent: Portugal - central Azores onshore - Faial, Graciosa, Pico, Sao Jorge, Terceira.
327
     * Fundamental point: Graciosa south west base. Latitude: 39°03'54.934"N, longitude: 28°02'23.882"W (of
328
     * Greenwich).
329
     * Replaced by 1995 adjustment (datum code 6665).
330
     */
331
    public const EPSG_AZORES_CENTRAL_ISLANDS_1948 = 'urn:ogc:def:datum:EPSG::6183';
332
333
    /**
334
     * Azores Central Islands 1995
335
     * Type: Geodetic
336
     * Extent: Portugal - central Azores onshore - Faial, Graciosa, Pico, Sao Jorge, Terceira.
337
     * Fundamental point: Graciosa south west base. Origin and orientation constrained to those of the 1948 adjustment.
338
     * Classical and GPS observations. Replaces 1948 adjustment (datum code 6183).
339
     */
340
    public const EPSG_AZORES_CENTRAL_ISLANDS_1995 = 'urn:ogc:def:datum:EPSG::6665';
341
342
    /**
343
     * Azores Occidental Islands 1939
344
     * Type: Geodetic
345
     * Extent: Portugal - western Azores onshore - Flores, Corvo.
346
     * Fundamental point: Observatario Meteorologico Flores.
347
     */
348
    public const EPSG_AZORES_OCCIDENTAL_ISLANDS_1939 = 'urn:ogc:def:datum:EPSG::6182';
349
350
    /**
351
     * Azores Oriental Islands 1940
352
     * Type: Geodetic
353
     * Extent: Portugal - eastern Azores onshore - Sao Miguel, Santa Maria, Formigas.
354
     * Fundamental point: Forte de São Bras.
355
     * Replaced by 1995 adjustment (datum code 6664).
356
     */
357
    public const EPSG_AZORES_ORIENTAL_ISLANDS_1940 = 'urn:ogc:def:datum:EPSG::6184';
358
359
    /**
360
     * Azores Oriental Islands 1995
361
     * Type: Geodetic
362
     * Extent: Portugal - eastern Azores onshore - Sao Miguel, Santa Maria, Formigas.
363
     * Fundamental point: Forte de São Bras. Origin and orientation constrained to those of the 1940 adjustment.
364
     * Classical and GPS observations. Replaces 1940 adjustment (datum code 6184).
365
     */
366
    public const EPSG_AZORES_ORIENTAL_ISLANDS_1995 = 'urn:ogc:def:datum:EPSG::6664';
367
368
    /**
369
     * Baltic 1957
370
     * Type: Vertical
371
     * Extent: Czechia; Slovakia.
372
     * Datum: average water level at Kronstadt 1833. Network adjusted in 1957 as Uniform Precise Leveling Network of
373
     * Eastern Europe (EPNN).
374
     * Uses Normal heights.
375
     */
376
    public const EPSG_BALTIC_1957 = 'urn:ogc:def:datum:EPSG::1202';
377
378
    /**
379
     * Baltic 1977
380
     * Type: Vertical
381
     * Extent: Armenia; Azerbaijan; Belarus; Estonia - onshore; Georgia - onshore; Kazakhstan; Kyrgyzstan; Latvia -
382
     * onshore; Lithuania - onshore; Moldova; Russian Federation - onshore; Tajikistan; Turkmenistan; Ukraine -
383
     * onshore; Uzbekistan.
384
     * Datum: average water level at Kronstadt 1833. Network adjusted in 1974-78 as Uniform Precise Leveling Network of
385
     * Eastern Europe (EPNN).
386
     * Uses Normal heights. Adjustment also included former Czechoslovakia but was not adopted there, the 1957
387
     * adjustment being retained instead.
388
     */
389
    public const EPSG_BALTIC_1977 = 'urn:ogc:def:datum:EPSG::5105';
390
391
    /**
392
     * Baltic 1980
393
     * Type: Vertical
394
     * Extent: Hungary.
395
     * Uses Normal heights.
396
     */
397
    public const EPSG_BALTIC_1980 = 'urn:ogc:def:datum:EPSG::5185';
398
399
    /**
400
     * Baltic 1982
401
     * Type: Vertical
402
     * Extent: Bulgaria - onshore.
403
     * Network adjusted in 1982. Height at reference point Varna defined as 1958 value from the UPLN adjustment. Datum
404
     * at Kronstadt is mean sea level of Baltic in 1833.
405
     * Uses Normal heights.
406
     */
407
    public const EPSG_BALTIC_1982 = 'urn:ogc:def:datum:EPSG::5184';
408
409
    /**
410
     * Baltic 1986
411
     * Type: Vertical
412
     * Extent: Poland - onshore.
413
     * Mean sea level of Baltic at Kronstadt in 1833. Network adjusted in 1982.
414
     *
415
     * Uses Normal heights. Adopted in 1986.
416
     */
417
    public const EPSG_BALTIC_1986 = 'urn:ogc:def:datum:EPSG::1296';
418
419
    /**
420
     * Bandar Abbas
421
     * Type: Vertical
422
     * Extent: Iran - onshore.
423
     * Average sea level at Bandar Abbas 1995-2001.
424
     * Replaces Fao (datum code 5149) in Iran.
425
     */
426
    public const EPSG_BANDAR_ABBAS = 'urn:ogc:def:datum:EPSG::5150';
427
428
    /**
429
     * Barbados 1938
430
     * Type: Geodetic
431
     * Extent: Barbados - onshore.
432
     * Fundamental point: HMS Challenger astro station M1, St. Anne's Tower. Latitude 13°04'32.53"N, longitude
433
     * 59°36'29.34"W (of Greenwich).
434
     */
435
    public const EPSG_BARBADOS_1938 = 'urn:ogc:def:datum:EPSG::6212';
436
437
    /**
438
     * Batavia
439
     * Type: Geodetic
440
     * Extent: Indonesia - Bali, Java and western Sumatra onshore, offshore southern Java Sea, Madura Strait and
441
     * western Bali Sea.
442
     * Fundamental point: Longitude at Batavia Astro. Station. Latitude: 6°07'39.522"S, longitude: 106°48'27.790"E
443
     * (of Greenwich). Latitude and azimuth at Genuk.
444
     */
445
    public const EPSG_BATAVIA = 'urn:ogc:def:datum:EPSG::6211';
446
447
    /**
448
     * Batavia (Jakarta)
449
     * Type: Geodetic
450
     * Extent: Indonesia - onshore - Bali, Java and western Sumatra.
451
     * Fundamental point: Longitude at Batavia astronomical station. Latitude: 6°07'39.522"S, longitude: 0°00'00.0"E
452
     * (of Jakarta). Latitude and azimuth at Genuk.
453
     */
454
    public const EPSG_BATAVIA_JAKARTA = 'urn:ogc:def:datum:EPSG::6813';
455
456
    /**
457
     * Beduaram
458
     * Type: Geodetic
459
     * Extent: Niger - southeast.
460
     */
461
    public const EPSG_BEDUARAM = 'urn:ogc:def:datum:EPSG::6213';
462
463
    /**
464
     * Beijing 1954
465
     * Type: Geodetic
466
     * Extent: China - onshore and offshore.
467
     * Pulkovo, transferred through Russian triangulation.
468
     * Scale determined through three baselines in northeast China. Discontinuities at boundaries of adjustment blocks.
469
     * From 1982 replaced by Xian 1980 and New Beijing.
470
     */
471
    public const EPSG_BEIJING_1954 = 'urn:ogc:def:datum:EPSG::6214';
472
473
    /**
474
     * Bekaa Valley 1920
475
     * Type: Geodetic
476
     * Extent: Lebanon - onshore.
477
     */
478
    public const EPSG_BEKAA_VALLEY_1920 = 'urn:ogc:def:datum:EPSG::1137';
479
480
    /**
481
     * Belfast Lough
482
     * Type: Vertical
483
     * Extent: United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
484
     * Mean sea level between 1951 and 1956 at Clarendon Dock, Belfast. Initially realised through levelling network
485
     * adjustment, from 2002 redefined to be realised through OSGM geoid model.
486
     * Orthometric heights. Malin Head (datum code 5130) used for 1:50,000 and smaller mapping.
487
     */
488
    public const EPSG_BELFAST_LOUGH = 'urn:ogc:def:datum:EPSG::5131';
489
490
    /**
491
     * Bellevue
492
     * Type: Geodetic
493
     * Extent: Vanuatu - southern islands - Aneityum, Efate, Erromango and Tanna.
494
     * Datum covers all the major islands of Vanuatu in two different adjustment blocks, but practical usage is as
495
     * given in the area of use.
496
     */
497
    public const EPSG_BELLEVUE = 'urn:ogc:def:datum:EPSG::6714';
498
499
    /**
500
     * Bermuda 1957
501
     * Type: Geodetic
502
     * Extent: Bermuda - onshore.
503
     * Fundamental point: Fort George base. Latitude 32°22'44.36"N, longitude 64°40'58.11"W (of Greenwich).
504
     */
505
    public const EPSG_BERMUDA_1957 = 'urn:ogc:def:datum:EPSG::6216';
506
507
    /**
508
     * Bermuda 2000
509
     * Type: Geodetic
510
     * Extent: Bermuda - onshore and offshore.
511
     * ITRF96 at epoch 2000.0.
512
     */
513
    public const EPSG_BERMUDA_2000 = 'urn:ogc:def:datum:EPSG::6762';
514
515
    /**
516
     * Bern 1938
517
     * Type: Geodetic
518
     * Extent: Liechtenstein; Switzerland.
519
     * Fundamental point: Old Bern observatory. Latitude: 46°57'07.890"N, longitude: 7°26'22.335"E (of Greenwich).
520
     * This redetermination of the coordinates of fundamental point is used for scientific purposes and as the
521
     * graticule overprinted on topographic maps constructed on the CH1903 / LV03 projected CS (code 21781).
522
     */
523
    public const EPSG_BERN_1938 = 'urn:ogc:def:datum:EPSG::6306';
524
525
    /**
526
     * Bhutan National Geodetic Datum
527
     * Type: Geodetic
528
     * Extent: Bhutan.
529
     * ITRF2000 at epoch 2003.87.
530
     */
531
    public const EPSG_BHUTAN_NATIONAL_GEODETIC_DATUM = 'urn:ogc:def:datum:EPSG::1058';
532
533
    /**
534
     * Bioko
535
     * Type: Geodetic
536
     * Extent: Equatorial Guinea - Bioko onshore.
537
     */
538
    public const EPSG_BIOKO = 'urn:ogc:def:datum:EPSG::1136';
539
540
    /**
541
     * Bissau
542
     * Type: Geodetic
543
     * Extent: Guinea-Bissau - onshore.
544
     */
545
    public const EPSG_BISSAU = 'urn:ogc:def:datum:EPSG::6165';
546
547
    /**
548
     * Black Sea
549
     * Type: Vertical
550
     * Extent: Georgia - onshore and offshore.
551
     * Black Sea datum is 0.4m below Baltic datum.
552
     */
553
    public const EPSG_BLACK_SEA = 'urn:ogc:def:datum:EPSG::5134';
554
555
    /**
556
     * Bluff 1955
557
     * Type: Vertical
558
     * Extent: New Zealand - South Island - Bluff vertical CRS area.
559
     * MSL at Invercargill harbour over 8 years between 1918 and 1934.
560
     */
561
    public const EPSG_BLUFF_1955 = 'urn:ogc:def:datum:EPSG::5158';
562
563
    /**
564
     * Bogota 1975
565
     * Type: Geodetic
566
     * Extent: Colombia - mainland and offshore Caribbean.
567
     * Fundamental point: Bogota observatory. Latitude: 4°35'56.570"N, longitude: 74°04'51.300"W (of Greenwich).
568
     * Replaces 1951 adjustment. Replaced by MAGNA-SIRGAS (datum code 6685).
569
     */
570
    public const EPSG_BOGOTA_1975 = 'urn:ogc:def:datum:EPSG::6218';
571
572
    /**
573
     * Bogota 1975 (Bogota)
574
     * Type: Geodetic
575
     * Extent: Colombia - mainland onshore.
576
     * Fundamental point: Bogota observatory. Latitude: 4°35'56.570"N, longitude: 0°E (of Bogota).
577
     */
578
    public const EPSG_BOGOTA_1975_BOGOTA = 'urn:ogc:def:datum:EPSG::6802';
579
580
    /**
581
     * Bora Bora SAU 2001
582
     * Type: Vertical
583
     * Extent: French Polynesia - Society Islands - Bora Bora.
584
     * Fundamental benchmark: Vaitape quay SHOM benchmark B.
585
     * Included as part of NGPF - see datum code 5195.
586
     */
587
    public const EPSG_BORA_BORA_SAU_2001 = 'urn:ogc:def:datum:EPSG::5202';
588
589
    /**
590
     * British Isles height ensemble
591
     * Type: Ensemble
592
     * Extent: United Kingdom (UK) - offshore to boundary of UKCS within 49°45'N to 61°N and 9°W to 2°E; onshore
593
     * Great Britain (England, Wales and Scotland) and Northern Ireland. Ireland onshore. Isle of Man onshore.
594
     * Ensemble of 9 independent vertical datums now all defined through OS geoid model OSGM15.
595
     * Orthometric heights.
596
     */
597
    public const EPSG_BRITISH_ISLES_HEIGHT_ENSEMBLE = 'urn:ogc:def:datum:EPSG::1288';
598
599
    /**
600
     * Bukit Rimpah
601
     * Type: Geodetic
602
     * Extent: Indonesia - Banga and Belitung Islands.
603
     * 2°00'40.16"S, 105°51'39.76"E (of Greenwich).
604
     */
605
    public const EPSG_BUKIT_RIMPAH = 'urn:ogc:def:datum:EPSG::6219';
606
607
    /**
608
     * Bulgaria Geodetic System 2005
609
     * Type: Geodetic
610
     * Extent: Bulgaria - onshore and offshore.
611
     * Densification of ETRS89 realised through network of 112 permanent GNSS reference stations in [email protected].
612
     * Adopted as official Bulgarian reference datum through decree 153 of 2010-07-29.
613
     */
614
    public const EPSG_BULGARIA_GEODETIC_SYSTEM_2005 = 'urn:ogc:def:datum:EPSG::1167';
615
616
    /**
617
     * Bulgarian Height System 2005
618
     * Type: Vertical
619
     * Extent: Bulgaria - onshore.
620
     * Bulgarian realisation of EVRF2007. EVRF2007 heights of 58 points in Bulgaria held fixed.
621
     * Uses Normal heights. Adopted as official Bulgarian height reference datum through decree 153 of 2010-07-29.
622
     */
623
    public const EPSG_BULGARIAN_HEIGHT_SYSTEM_2005 = 'urn:ogc:def:datum:EPSG::1300';
624
625
    /**
626
     * CH1903
627
     * Type: Geodetic
628
     * Extent: Liechtenstein; Switzerland.
629
     * Fundamental point: Old Bern observatory. Latitude: 46°57'08.660"N, longitude: 7°26'22.500"E (of Greenwich).
630
     */
631
    public const EPSG_CH1903 = 'urn:ogc:def:datum:EPSG::6149';
632
633
    /**
634
     * CH1903 (Bern)
635
     * Type: Geodetic
636
     * Extent: Liechtenstein; Switzerland.
637
     * Fundamental point: Old Bern observatory. Latitude: 46°57'08.660"N, longitude: 0°E (of Bern).
638
     */
639
    public const EPSG_CH1903_BERN = 'urn:ogc:def:datum:EPSG::6801';
640
641
    /**
642
     * CH1903+
643
     * Type: Geodetic
644
     * Extent: Liechtenstein; Switzerland.
645
     * Fundamental point: Zimmerwald observatory.
646
     */
647
    public const EPSG_CH1903_PLUS = 'urn:ogc:def:datum:EPSG::6150';
648
649
    /**
650
     * CR-SIRGAS
651
     * Type: Geodetic
652
     * Extent: Costa Rica - onshore and offshore.
653
     * ITRF2008 (IGb08) at epoch 2014.59. Network of 42 GNSS stations of the passive and active reference system.
654
     * Replaces CR05 from April 2018.
655
     */
656
    public const EPSG_CR_SIRGAS = 'urn:ogc:def:datum:EPSG::1225';
657
658
    /**
659
     * Cadastre 1997
660
     * Type: Geodetic
661
     * Extent: Mayotte - onshore.
662
     * Coordinates of 1 station of Combani 1950 adjustment held fixed.
663
     * Derived by adjustment of GPS-observed network which was constrained to Combani 1950 coordinates of one station.
664
     */
665
    public const EPSG_CADASTRE_1997 = 'urn:ogc:def:datum:EPSG::1037';
666
667
    /**
668
     * Cagliari 1956
669
     * Type: Vertical
670
     * Extent: Italy - Sardinia onshore.
671
     * Mean Sea Level at Cagliari 1955-1957.
672
     * Orthometric heights.
673
     */
674
    public const EPSG_CAGLIARI_1956 = 'urn:ogc:def:datum:EPSG::1307';
675
676
    /**
677
     * Cais da Figueirinha - Angra do Heroismo
678
     * Type: Vertical
679
     * Extent: Portugal - central Azores - Terceira island onshore.
680
     * Mean Sea Level during 1951 at Cais da Figueirinha - Angra do Heroísmo.
681
     * Orthometric heights.
682
     */
683
    public const EPSG_CAIS_DA_FIGUEIRINHA_ANGRA_DO_HEROISMO = 'urn:ogc:def:datum:EPSG::1107';
684
685
    /**
686
     * Cais da Madalena
687
     * Type: Vertical
688
     * Extent: Portugal - central Azores - Pico island onshore.
689
     * Mean Sea Level during 1937 at Cais da Madalena.
690
     * Orthometric heights.
691
     */
692
    public const EPSG_CAIS_DA_MADALENA = 'urn:ogc:def:datum:EPSG::1105';
693
694
    /**
695
     * Cais da Pontinha - Funchal
696
     * Type: Vertical
697
     * Extent: Portugal - Madeira and Desertas islands - onshore.
698
     * Mean Sea Level during 1913 at Cais da Pontinha, Funchal.
699
     * Orthometric heights.
700
     */
701
    public const EPSG_CAIS_DA_PONTINHA_FUNCHAL = 'urn:ogc:def:datum:EPSG::1101';
702
703
    /**
704
     * Cais da Vila - Porto Santo
705
     * Type: Vertical
706
     * Extent: Portugal - Porto Santo island (Madeira archipelago) onshore.
707
     * Mean Sea Level during 1936 at Cais da Vila, Porto Santo.
708
     * Orthometric heights.
709
     */
710
    public const EPSG_CAIS_DA_VILA_PORTO_SANTO = 'urn:ogc:def:datum:EPSG::1102';
711
712
    /**
713
     * Cais da Vila do Porto
714
     * Type: Vertical
715
     * Extent: Portugal - eastern Azores onshore - Santa Maria, Formigas.
716
     * Mean Sea Level during 1965 at Cais da Vila, Porto.
717
     * Orthometric heights.
718
     */
719
    public const EPSG_CAIS_DA_VILA_DO_PORTO = 'urn:ogc:def:datum:EPSG::1109';
720
721
    /**
722
     * Cais das Velas
723
     * Type: Vertical
724
     * Extent: Portugal - central Azores - Sao Jorge island onshore.
725
     * Mean Sea Level during 1937 at Cais das Velas.
726
     * Orthometric heights.
727
     */
728
    public const EPSG_CAIS_DAS_VELAS = 'urn:ogc:def:datum:EPSG::1103';
729
730
    /**
731
     * Camacupa 1948
732
     * Type: Geodetic
733
     * Extent: Angola - Angola proper - onshore and offshore.
734
     * Fundamental point: Campo de Aviaçao. Latitude: 12°01'09.070"S, Longitude = 17°27'19.800"E (of Greenwich).
735
     * Provisional adjustment, replaced in 2015 for onshore use by Camacupa 2015.
736
     */
737
    public const EPSG_CAMACUPA_1948 = 'urn:ogc:def:datum:EPSG::6220';
738
739
    /**
740
     * Camacupa 2015
741
     * Type: Geodetic
742
     * Extent: Angola - onshore and offshore.
743
     * Fundamental point: Campo de Aviaçao. Latitude: 12°01'08.702"S, Longitude = 17°27'19.515"E (of Greenwich).
744
     * Second adjustment. Not used for offshore oil and gas exploration and production.
745
     */
746
    public const EPSG_CAMACUPA_2015 = 'urn:ogc:def:datum:EPSG::1217';
747
748
    /**
749
     * Camp Area Astro
750
     * Type: Geodetic
751
     * Extent: Antarctica - McMurdo Sound, Camp McMurdo area.
752
     */
753
    public const EPSG_CAMP_AREA_ASTRO = 'urn:ogc:def:datum:EPSG::6715';
754
755
    /**
756
     * Campo Inchauspe
757
     * Type: Geodetic
758
     * Extent: Argentina - mainland onshore and Atlantic offshore Tierra del Fuego.
759
     * Fundamental point: Campo Inchauspe. Latitude: 35°58'16.56"S, longitude: 62°10'12.03"W (of Greenwich).
760
     */
761
    public const EPSG_CAMPO_INCHAUSPE = 'urn:ogc:def:datum:EPSG::6221';
762
763
    /**
764
     * Canadian Geodetic Vertical Datum of 1928
765
     * Type: Vertical
766
     * Extent: Canada - onshore - Alberta; British Columbia; Manitoba south of 57°N; New Brunswick; Northwest
767
     * Territories south west of a line between 60°N, 110°W and the coast at 132°W; Nova Scotia; Ontario south of
768
     * 52°N; Prince Edward Island; Quebec - mainland west of 66°W and south of 55°N; Saskatchewan south of 55°N;
769
     * Yukon.
770
     * Based on the mean sea level determined from several tidal gauges located in strategic areas of the country.
771
     * From November 2013 replaced by CGVD2013 (datum code 1127).
772
     */
773
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_1928 = 'urn:ogc:def:datum:EPSG::5114';
774
775
    /**
776
     * Canadian Geodetic Vertical Datum of 2013 (CGG2013)
777
     * Type: Vertical
778
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
779
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
780
     * Yukon.
781
     * Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean
782
     * sea level for North America, realized through the Canadian gravimetric geoid (CGG) 2013 at epoch 2010.0.
783
     * Replaces CGVD28 from November 2013. Replaced by CGVD2013(CGG2013a) epoch 2010 from December 2015, supplemented
784
     * from February 2021 by snapshots of CGVD2013(CGG2013a) at epochs 1997.0 and 2002.0 (aligned with NAD83(CSRS)
785
     * realization epochs).
786
     */
787
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013 = 'urn:ogc:def:datum:EPSG::1127';
788
789
    /**
790
     * Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 1997
791
     * Type: Vertical
792
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
793
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
794
     * Yukon.
795
     * Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean
796
     * sea level for North America, realized through the Canadian gravimetric geoid 2013a applied at epoch 1997.0.
797
     * CGVD2013(CGG2013a) is a static datum; however, heights referenced to it change with time, primarily due to
798
     * glacial isostasy. This datum supports CGVD2013(CGG2013a) heights at epoch 1997.0. Other snapshots are at epochs
799
     * 2002.0 and 2010.0.
800
     */
801
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A_EPOCH_1997 = 'urn:ogc:def:datum:EPSG::1326';
802
803
    /**
804
     * Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 2002
805
     * Type: Vertical
806
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
807
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
808
     * Yukon.
809
     * Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean
810
     * sea level for North America, realized through the Canadian gravimetric geoid 2013a applied at epoch 2002.
811
     * CGVD2013(CGG2013a) is a static datum; however, heights referenced to it change with time, primarily due to
812
     * glacial isostasy. This datum supports CGVD2013(CGG2013a) heights at epoch 2002.0. Other snapshots are at epochs
813
     * 1997.0 and 2010.0.
814
     */
815
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A_EPOCH_2002 = 'urn:ogc:def:datum:EPSG::1325';
816
817
    /**
818
     * Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 2010
819
     * Type: Vertical
820
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
821
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
822
     * Yukon.
823
     * Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean
824
     * sea level for North America, realized through CGG2013a at epoch 2010.0. Geoid velocity defined as zero with
825
     * respect to NAD83(CSRS).
826
     * Replaces CGVD2013(CGG2013). CGVD2013(CGG2013a) is a static datum. However heights referenced to it change with
827
     * time, primarily due to glacial isostasy. In practice static snapshots are used at epochs 2010.0 (this datum),
828
     * 2002.0 and 1997.0.
829
     */
830
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A_EPOCH_2010 = 'urn:ogc:def:datum:EPSG::1256';
831
832
    /**
833
     * Cape
834
     * Type: Geodetic
835
     * Extent: Botswana; Eswatini (Swaziland); Lesotho; South Africa - mainland.
836
     * Fundamental point: Buffelsfontein. Latitude: 33°59'32.000"S, longitude: 25°30'44.622"E (of Greenwich).
837
     */
838
    public const EPSG_CAPE = 'urn:ogc:def:datum:EPSG::6222';
839
840
    /**
841
     * Cape Canaveral
842
     * Type: Geodetic
843
     * Extent: North America - onshore - Bahamas and USA - Florida (east).
844
     * Fundamental point: Central 1950.  Latitude: 28°29'32.36555"N, longitude 80°34'38.77362"W (of Greenwich).
845
     */
846
    public const EPSG_CAPE_CANAVERAL = 'urn:ogc:def:datum:EPSG::6717';
847
848
    /**
849
     * Carthage
850
     * Type: Geodetic
851
     * Extent: Tunisia - onshore and offshore.
852
     * Fundamental point: Carthage. Latitude: 40.9464506g = 36°51'06.50"N, longitude: 8.8724368g E of Paris =
853
     * 10°19'20.72"E (of Greenwich).
854
     * Fundamental point astronomic coordinates determined in 1878.
855
     */
856
    public const EPSG_CARTHAGE = 'urn:ogc:def:datum:EPSG::6223';
857
858
    /**
859
     * Carthage (Paris)
860
     * Type: Geodetic
861
     * Extent: Tunisia - onshore.
862
     * Fundamental point: Carthage. Latitude: 40.9464506g N, longitude: 8.8724368g E (of Paris).
863
     * Fundamental point astronomic coordinates determined in 1878.
864
     */
865
    public const EPSG_CARTHAGE_PARIS = 'urn:ogc:def:datum:EPSG::6816';
866
867
    /**
868
     * Cascais
869
     * Type: Vertical
870
     * Extent: Portugal - mainland - onshore.
871
     * Mean Sea Level at Cascais 1938.
872
     * Orthometric heights.
873
     */
874
    public const EPSG_CASCAIS = 'urn:ogc:def:datum:EPSG::5178';
875
876
    /**
877
     * Caspian Sea
878
     * Type: Vertical
879
     * Extent: Azerbaijan - offshore; Kazakhstan - offshore; Russian Federation - Caspian Sea; Turkmenistan - offshore.
880
     * Defined as -28.0m Baltic datum.
881
     */
882
    public const EPSG_CASPIAN_SEA = 'urn:ogc:def:datum:EPSG::5106';
883
884
    /**
885
     * Catania 1965
886
     * Type: Vertical
887
     * Extent: Italy - Sicily onshore.
888
     * Mean Sea Level at Catania in 1965.
889
     * Orthometric heights.
890
     */
891
    public const EPSG_CATANIA_1965 = 'urn:ogc:def:datum:EPSG::1306';
892
893
    /**
894
     * Cayman Brac Vertical Datum 1961
895
     * Type: Vertical
896
     * Extent: Cayman Islands - Cayman Brac.
897
     */
898
    public const EPSG_CAYMAN_BRAC_VERTICAL_DATUM_1961 = 'urn:ogc:def:datum:EPSG::1099';
899
900
    /**
901
     * Cayman Islands Geodetic Datum 2011
902
     * Type: Geodetic
903
     * Extent: Cayman Islands - onshore and offshore. Includes Grand Cayman, Little Cayman and Cayman Brac.
904
     * ITRF2005 at epoch 2011.0
905
     * Replaces GCGD59 (datum code 6723) and SIGD61 (datum code 6726).
906
     */
907
    public const EPSG_CAYMAN_ISLANDS_GEODETIC_DATUM_2011 = 'urn:ogc:def:datum:EPSG::1100';
908
909
    /**
910
     * Centre Spatial Guyanais 1967
911
     * Type: Geodetic
912
     * Extent: French Guiana - coastal area.
913
     * Fundamental point: Kourou-Diane. Latitude: 5°15'53.699"N, longitude: 52°48'09.149"W (of Greenwich).
914
     * Replaced by RGFG95 (code 6624).
915
     */
916
    public const EPSG_CENTRE_SPATIAL_GUYANAIS_1967 = 'urn:ogc:def:datum:EPSG::6623';
917
918
    /**
919
     * Ceuta 2
920
     * Type: Vertical
921
     * Extent: Spain - Ceuta onshore.
922
     * Mean Sea Level at Ceuta harbour between March 1944 and December 2006.
923
     * Orthometric heights. Replaces an earlier vertical datum in Ceuta harbour measured between 1908 and 1927.
924
     */
925
    public const EPSG_CEUTA_2 = 'urn:ogc:def:datum:EPSG::1285';
926
927
    /**
928
     * Chatham Islands Datum 1971
929
     * Type: Geodetic
930
     * Extent: New Zealand - Chatham Islands group - onshore.
931
     * Replaced by Chatham Islands Datum 1979 (code 6673).
932
     */
933
    public const EPSG_CHATHAM_ISLANDS_DATUM_1971 = 'urn:ogc:def:datum:EPSG::6672';
934
935
    /**
936
     * Chatham Islands Datum 1979
937
     * Type: Geodetic
938
     * Extent: New Zealand - Chatham Islands group - onshore.
939
     * Fundamental point: station Astro. Latitude: 43°57'23.60"S, longitude: 176°34'28.65"W (of Greenwich).
940
     * Replaces Chatham Islands Datum 1971 (code 6672). Replaced by New Zealand Geodetic Datum 2000 (code 6167) from
941
     * March 2000.
942
     */
943
    public const EPSG_CHATHAM_ISLANDS_DATUM_1979 = 'urn:ogc:def:datum:EPSG::6673';
944
945
    /**
946
     * China 2000
947
     * Type: Geodetic
948
     * Extent: China - onshore and offshore.
949
     * ITRF97 at epoch 2000.0
950
     * Combined adjustment of astro-geodetic observations as used for Xian 1980 and GPS control network observed
951
     * 2000-2003. Adopted July 2008.
952
     */
953
    public const EPSG_CHINA_2000 = 'urn:ogc:def:datum:EPSG::1043';
954
955
    /**
956
     * Chos Malal 1914
957
     * Type: Geodetic
958
     * Extent: Argentina - Mendoza province, Neuquen province, western La Pampa province and western Rio Negro
959
     * province.
960
     * Chos Malal police station.
961
     * Also known as Quini-Huao.  Replaced by Campo Inchauspe (code 6221) for topographic mapping, use for oil
962
     * exploration and production continues.
963
     */
964
    public const EPSG_CHOS_MALAL_1914 = 'urn:ogc:def:datum:EPSG::6160';
965
966
    /**
967
     * Chua
968
     * Type: Geodetic
969
     * Extent: Brazil - south of 18°S and west of 54°W, plus Distrito Federal. Paraguay - north.
970
     * Fundamental point: Chua. Latitude: 19°45'41.160"S, longitude: 48°06'07.560"W (of Greenwich).
971
     * The Chua origin and associated network is in Brazil with a connecting traverse through northern Paraguay. It was
972
     * used in Brazil only as input into the Corrego Allegre adjustment and for government work in Distrito Federal.
973
     */
974
    public const EPSG_CHUA = 'urn:ogc:def:datum:EPSG::6224';
975
976
    /**
977
     * Cocos Islands 1965
978
     * Type: Geodetic
979
     * Extent: Cocos (Keeling) Islands - onshore.
980
     * Fundamental point: Anna 1.
981
     */
982
    public const EPSG_COCOS_ISLANDS_1965 = 'urn:ogc:def:datum:EPSG::6708';
983
984
    /**
985
     * Combani 1950
986
     * Type: Geodetic
987
     * Extent: Mayotte - onshore.
988
     * Combani South Base.
989
     * Replaced by RGM04 and Cadastre 1997 (datum codes 1036-37).
990
     */
991
    public const EPSG_COMBANI_1950 = 'urn:ogc:def:datum:EPSG::6632';
992
993
    /**
994
     * Conakry 1905
995
     * Type: Geodetic
996
     * Extent: Guinea - onshore.
997
     * Fundamental point: Conakry. Latitude: 10.573766g N, longitude: 17.833682g W (of Paris).
998
     */
999
    public const EPSG_CONAKRY_1905 = 'urn:ogc:def:datum:EPSG::6315';
1000
1001
    /**
1002
     * Congo 1960 Pointe Noire
1003
     * Type: Geodetic
1004
     * Extent: Congo - onshore and offshore.
1005
     * Fundamental point: Point Noire Astro. Latitude: 4°47'00.10"S, longitude: 11°51'01.55"E (of Greenwich).
1006
     */
1007
    public const EPSG_CONGO_1960_POINTE_NOIRE = 'urn:ogc:def:datum:EPSG::6282';
1008
1009
    /**
1010
     * Constanta
1011
     * Type: Vertical
1012
     * Extent: Romania - onshore.
1013
     * Mean Sea Level at Constanta.
1014
     * Normal-orthometric heights.
1015
     */
1016
    public const EPSG_CONSTANTA = 'urn:ogc:def:datum:EPSG::5179';
1017
1018
    /**
1019
     * Corrego Alegre 1961
1020
     * Type: Geodetic
1021
     * Extent: Brazil - onshore - between 18°S and 27°30'S, also east of 54°W between 15°S and 18°S.
1022
     * Fundamental point: Corrego Alegre. Latitude: 19°50'14.91"S, longitude: 48°57'41.98"W (of Greenwich).
1023
     * Replaced by Corrego Alegre 1970-72 (datum code 6225). NIMA gives coordinates of origin as latitude:
1024
     * 19°50'15.14"S, longitude: 48°57'42.75"W.
1025
     */
1026
    public const EPSG_CORREGO_ALEGRE_1961 = 'urn:ogc:def:datum:EPSG::1074';
1027
1028
    /**
1029
     * Corrego Alegre 1970-72
1030
     * Type: Geodetic
1031
     * Extent: Brazil - onshore - west of 54°W and south of 18°S; also south of 15°S between 54°W and 42°W; also
1032
     * east of 42°W.
1033
     * Fundamental point: Corrego Alegre. Latitude: 19°50'14.91"S, longitude: 48°57'41.98"W (of Greenwich).
1034
     * Replaces 1961 adjustment (datum code 1074). Superseded by SAD69. NIMA gives coordinates of origin as latitude:
1035
     * 19°50'15.14"S, longitude: 48°57'42.75"W; these may refer to 1961 adjustment.
1036
     */
1037
    public const EPSG_CORREGO_ALEGRE_1970_72 = 'urn:ogc:def:datum:EPSG::6225';
1038
1039
    /**
1040
     * Costa Rica 2005
1041
     * Type: Geodetic
1042
     * Extent: Costa Rica - onshore and offshore.
1043
     * ITRF2000 at epoch 2005.83.  Network of 34 GPS stations throughout the country, five of which were connected to
1044
     * four Caribbean area ITRF stations.
1045
     * Replaces Ocotepeque (datum code 1070) in Costa Rica from March 2007.
1046
     */
1047
    public const EPSG_COSTA_RICA_2005 = 'urn:ogc:def:datum:EPSG::1065';
1048
1049
    /**
1050
     * Croatian Terrestrial Reference System
1051
     * Type: Geodetic
1052
     * Extent: Croatia - onshore and offshore.
1053
     * Densification of ETRS89 in Croatia at epoch 1995.55.
1054
     * Based on 78 control points with coordinates determined in ETRS89.
1055
     */
1056
    public const EPSG_CROATIAN_TERRESTRIAL_REFERENCE_SYSTEM = 'urn:ogc:def:datum:EPSG::6761';
1057
1058
    /**
1059
     * Croatian Vertical Reference Datum 1971
1060
     * Type: Vertical
1061
     * Extent: Croatia - onshore.
1062
     * Mean sea level at five tide gauges in Dubrovnik, Split, Bakar, Rovinj and Kopar at epoch 1971.5
1063
     * Replaces Trieste (datum code 1050).
1064
     */
1065
    public const EPSG_CROATIAN_VERTICAL_REFERENCE_DATUM_1971 = 'urn:ogc:def:datum:EPSG::5207';
1066
1067
    /**
1068
     * Cyprus Geodetic Reference System 1993
1069
     * Type: Geodetic
1070
     * Extent: Cyprus - onshore.
1071
     * Station Chionistra (Mount Troodos). Network scale and orientation determined by connection of six stations to
1072
     * ITRF91 in Europe at epoch 1993.1.
1073
     * Survey plans and maps produced by DLS after 1993.
1074
     */
1075
    public const EPSG_CYPRUS_GEODETIC_REFERENCE_SYSTEM_1993 = 'urn:ogc:def:datum:EPSG::1112';
1076
1077
    /**
1078
     * Dabola 1981
1079
     * Type: Geodetic
1080
     * Extent: Guinea - onshore.
1081
     */
1082
    public const EPSG_DABOLA_1981 = 'urn:ogc:def:datum:EPSG::6155';
1083
1084
    /**
1085
     * Danger 1950
1086
     * Type: Vertical
1087
     * Extent: St Pierre and Miquelon - onshore.
1088
     * Marker near tide gauge at port of Saint Pierre. Height is 1.26 metres above zero of tide gauge.
1089
     */
1090
    public const EPSG_DANGER_1950 = 'urn:ogc:def:datum:EPSG::5190';
1091
1092
    /**
1093
     * Dansk Normal Nul
1094
     * Type: Vertical
1095
     * Extent: Denmark - onshore.
1096
     * Mean Sea Level at 10 gauges.
1097
     * Orthometric heights.
1098
     */
1099
    public const EPSG_DANSK_NORMAL_NUL = 'urn:ogc:def:datum:EPSG::5132';
1100
1101
    /**
1102
     * Dansk Vertikal Reference 1990
1103
     * Type: Vertical
1104
     * Extent: Denmark - onshore.
1105
     * Benchmark at Århus cathedral referenced to mean sea level determined during 1990 at 10 tide gauges: Esbjerg,
1106
     * Fredericia, Frederikshavn, Gedser, Hirtshals, Hornbæk, Korsør, København, Slipshavn and Århus.
1107
     * Normal Orthometric heights.
1108
     */
1109
    public const EPSG_DANSK_VERTIKAL_REFERENCE_1990 = 'urn:ogc:def:datum:EPSG::5206';
1110
1111
    /**
1112
     * Datum 73
1113
     * Type: Geodetic
1114
     * Extent: Portugal - mainland - onshore.
1115
     * Fundamental point:  TF4, Melrica. Latitude: 39°41'37.30"N, longitude: 8°07'53.31"W (of Greenwich).
1116
     */
1117
    public const EPSG_DATUM_73 = 'urn:ogc:def:datum:EPSG::6274';
1118
1119
    /**
1120
     * Datum Altimetrico de Costa Rica 1952
1121
     * Type: Vertical
1122
     * Extent: Costa Rica - onshore.
1123
     * Mean Sea Level 1941-1952 at Puntarenas.
1124
     * Orthometric heights.
1125
     */
1126
    public const EPSG_DATUM_ALTIMETRICO_DE_COSTA_RICA_1952 = 'urn:ogc:def:datum:EPSG::1226';
1127
1128
    /**
1129
     * Datum Geodesi Nasional 1995
1130
     * Type: Geodetic
1131
     * Extent: Indonesia - onshore and offshore.
1132
     * ITRF91at epoch 1992.0.
1133
     * Replaces ID74 and all older datums.
1134
     */
1135
    public const EPSG_DATUM_GEODESI_NASIONAL_1995 = 'urn:ogc:def:datum:EPSG::6755';
1136
1137
    /**
1138
     * Dealul Piscului 1930
1139
     * Type: Geodetic
1140
     * Extent: Romania - onshore.
1141
     * Fundamental point: latitude 44°24'33.9606"N, longitude 26°06'44.8772"E (of Greenwich).
1142
     * Replaced by Pulkovo 1942(58) (datum code 6179).
1143
     */
1144
    public const EPSG_DEALUL_PISCULUI_1930 = 'urn:ogc:def:datum:EPSG::6316';
1145
1146
    /**
1147
     * Deception Island
1148
     * Type: Geodetic
1149
     * Extent: Antarctica - South Shetland Islands - Deception Island.
1150
     */
1151
    public const EPSG_DECEPTION_ISLAND = 'urn:ogc:def:datum:EPSG::6736';
1152
1153
    /**
1154
     * Deir ez Zor
1155
     * Type: Geodetic
1156
     * Extent: Lebanon - onshore. Syrian Arab Republic - onshore.
1157
     * Fundamental point: Trig. 254 Deir. Latitude: 35°21'49.975"N, longitude: 40°05'46.770"E (of Greenwich).
1158
     */
1159
    public const EPSG_DEIR_EZ_ZOR = 'urn:ogc:def:datum:EPSG::6227';
1160
1161
    /**
1162
     * Deutsche Bahn Reference System
1163
     * Type: Geodetic
1164
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
1165
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
1166
     * Schleswig-Holstein, Thuringen.
1167
     * Defined by transformation from ETRS89 (transformation code 5826) to be an average of DHDN realizations across
1168
     * all German states.
1169
     */
1170
    public const EPSG_DEUTSCHE_BAHN_REFERENCE_SYSTEM = 'urn:ogc:def:datum:EPSG::1081';
1171
1172
    /**
1173
     * Deutsches Hauptdreiecksnetz
1174
     * Type: Geodetic
1175
     * Extent: Germany - states of former West Germany onshore - Baden-Wurtemberg, Bayern, Bremen, Hamburg, Hessen,
1176
     * Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Schleswig-Holstein.
1177
     * Fundamental point: Rauenberg. Latitude: 52°27'12.021"N, longitude: 13°22'04.928"E (of Greenwich).  This
1178
     * station was destroyed in 1910 and the station at Potsdam substituted as the fundamental point.
1179
     */
1180
    public const EPSG_DEUTSCHES_HAUPTDREIECKSNETZ = 'urn:ogc:def:datum:EPSG::6314';
1181
1182
    /**
1183
     * Deutsches Haupthoehennetz 1912
1184
     * Type: Vertical
1185
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
1186
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
1187
     * Schleswig-Holstein, Thuringen.
1188
     * Height of reference point "Normalnullpunkt" at Berlin Observatory defined as 37.000m above MSL in 1879
1189
     * (transferred to benchmarks near Hoppegarten in Müncheberg in 1912). Datum at Normaal Amsterdams Peil (NAP) is
1190
     * mean high tide in 1684.
1191
     * Uses Normal-orthometric heights.
1192
     */
1193
    public const EPSG_DEUTSCHES_HAUPTHOEHENNETZ_1912 = 'urn:ogc:def:datum:EPSG::1161';
1194
1195
    /**
1196
     * Deutsches Haupthoehennetz 1985
1197
     * Type: Vertical
1198
     * Extent: Germany - states of former West Germany onshore - Baden-Wurtemberg, Bayern, Bremen, Hamburg, Hessen,
1199
     * Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Schleswig-Holstein.
1200
     * Network adjusted in 1985. Height of reference point Wallenhorst defined as value from 1928 adjustment. Datum at
1201
     * Normaal Amsterdams Peil (NAP) is mean high tide in 1684.
1202
     * Replaced by DHHN92. Uses Normal-orthometric heights.
1203
     */
1204
    public const EPSG_DEUTSCHES_HAUPTHOEHENNETZ_1985 = 'urn:ogc:def:datum:EPSG::5182';
1205
1206
    /**
1207
     * Deutsches Haupthoehennetz 1992
1208
     * Type: Vertical
1209
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
1210
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
1211
     * Schleswig-Holstein, Thuringen.
1212
     * Network adjusted in 1992. Geopotential number at reference point Wallenhorst defined as value from the
1213
     * UELN-73/86 adjustment. Datum at Normaal Amsterdams Peil (NAP) is mean high tide in 1684.
1214
     * Replaces DHHN85 in West Germany and SNN76 in East Germany. Uses Normal heights.
1215
     */
1216
    public const EPSG_DEUTSCHES_HAUPTHOEHENNETZ_1992 = 'urn:ogc:def:datum:EPSG::5181';
1217
1218
    /**
1219
     * Deutsches Haupthoehennetz 2016
1220
     * Type: Vertical
1221
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
1222
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
1223
     * Schleswig-Holstein, Thuringen.
1224
     * 2006-2012 levelling network adjusted to 72 points of the DHHN92. Datum at Normaal Amsterdams Peil (NAP) is mean
1225
     * high tide in 1684.
1226
     * Uses Normal heights in the mean tidal system.
1227
     */
1228
    public const EPSG_DEUTSCHES_HAUPTHOEHENNETZ_2016 = 'urn:ogc:def:datum:EPSG::1170';
1229
1230
    /**
1231
     * Diego Garcia 1969
1232
     * Type: Geodetic
1233
     * Extent: British Indian Ocean Territory - Chagos Archipelago - Diego Garcia.
1234
     * Fundamental point: ISTS 073.
1235
     */
1236
    public const EPSG_DIEGO_GARCIA_1969 = 'urn:ogc:def:datum:EPSG::6724';
1237
1238
    /**
1239
     * Dominica 1945
1240
     * Type: Geodetic
1241
     * Extent: Dominica - onshore.
1242
     * Fundamental point: station M12.
1243
     */
1244
    public const EPSG_DOMINICA_1945 = 'urn:ogc:def:datum:EPSG::6602';
1245
1246
    /**
1247
     * Douala 1948
1248
     * Type: Geodetic
1249
     * Extent: Cameroon - coastal area.
1250
     * South pillar of Douala base; 4°00'40.64"N, 9°42'30.41"E (of Greenwich).
1251
     * Replaced  by Manoca 1962 datum (code 6193).
1252
     */
1253
    public const EPSG_DOUALA_1948 = 'urn:ogc:def:datum:EPSG::6192';
1254
1255
    /**
1256
     * Douglas
1257
     * Type: Vertical
1258
     * Extent: Isle of Man - onshore.
1259
     * Mean Sea Level at Douglas 1865. Initially realised through levelling network adjustment, from 2002 redefined to
1260
     * be realised through OSGM geoid model.
1261
     * Orthometric heights.
1262
     */
1263
    public const EPSG_DOUGLAS = 'urn:ogc:def:datum:EPSG::5148';
1264
1265
    /**
1266
     * Dunedin 1958
1267
     * Type: Vertical
1268
     * Extent: New Zealand - South Island - between approximately 44°S and 46°S - Dunedin vertical CRS area.
1269
     * MSL at Dunedin harbour 1918-1937.
1270
     */
1271
    public const EPSG_DUNEDIN_1958 = 'urn:ogc:def:datum:EPSG::5159';
1272
1273
    /**
1274
     * Dunedin-Bluff 1960
1275
     * Type: Vertical
1276
     * Extent: New Zealand - South Island - Dunedin-Bluff vertical CRS area.
1277
     * Common adjustment of Dunedin 1958 and Bluff 1955 networks.
1278
     */
1279
    public const EPSG_DUNEDIN_BLUFF_1960 = 'urn:ogc:def:datum:EPSG::1040';
1280
1281
    /**
1282
     * Durres
1283
     * Type: Vertical
1284
     * Extent: Albania - onshore.
1285
     * Mean Sea Level at Durres.
1286
     * Normal-orthometric heights.
1287
     */
1288
    public const EPSG_DURRES = 'urn:ogc:def:datum:EPSG::5175';
1289
1290
    /**
1291
     * EBBWV14 Intermediate Reference Frame
1292
     * Type: Geodetic
1293
     * Extent: United Kingdom (UK) - on or related to the rail route from Newport (Park Junction) to Ebbw Vale.
1294
     * Defined through the application of the EBBWV14 NTv2 transformation to ETRS89 as realized through OSNet v2009
1295
     * CORS.
1296
     * Created in 2022 to support intermediate CRS "EBBWV14-IRF" in the emulation of the EBBWV14 Snake map projection.
1297
     */
1298
    public const EPSG_EBBWV14_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1319';
1299
1300
    /**
1301
     * ECML14_NB Intermediate Reference Frame
1302
     * Type: Geodetic
1303
     * Extent: United Kingdom (UK) - on or related to rail routes from Newcastle Central to Ashington via Benton North
1304
     * Junction, and the section from Bedlington to Morpeth.
1305
     * Defined through the application of the ECML14_NB NTv2 transformation (code 9759) to ETRS89 as realized through
1306
     * OSNet v2009 CORS.
1307
     * Created in 2021 to support intermediate CRS "ECML14_NB-IRF" in the emulation of the ECML14_NB Snake map
1308
     * projection.
1309
     */
1310
    public const EPSG_ECML14_NB_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1310';
1311
1312
    /**
1313
     * EGM2008 geoid
1314
     * Type: Vertical
1315
     * Extent: World.
1316
     * Derived through EGM2008 geoid undulation model consisting of spherical harmonic coefficients to degree 2190 and
1317
     * order 2159 applied to the WGS 84 ellipsoid.
1318
     * Replaces EGM96 geoid (datum code 5171). See transformation codes 3858 and 3859 for 2.5x2.5 and 1x1 arc minute
1319
     * geoid undulation grid files derived from the spherical harmonic coefficients.
1320
     */
1321
    public const EPSG_EGM2008_GEOID = 'urn:ogc:def:datum:EPSG::1027';
1322
1323
    /**
1324
     * EGM84 geoid
1325
     * Type: Vertical
1326
     * Extent: World.
1327
     * Derived through EGM84 geoid undulation model consisting of spherical harmonic coefficients to degree and order
1328
     * 180 applied to the WGS 84 ellipsoid.
1329
     * Replaced by EGM96 geoid (datum code 5171).
1330
     */
1331
    public const EPSG_EGM84_GEOID = 'urn:ogc:def:datum:EPSG::5203';
1332
1333
    /**
1334
     * EGM96 geoid
1335
     * Type: Vertical
1336
     * Extent: World.
1337
     * Derived through EGM84 geoid undulation model consisting of spherical harmonic coefficients to degree and order
1338
     * 360 applied to the WGS 84 ellipsoid.
1339
     * Replaces EGM84 geoid (datum code 5203). Replaced by EGM2008 geoid (datum code 1027).
1340
     */
1341
    public const EPSG_EGM96_GEOID = 'urn:ogc:def:datum:EPSG::5171';
1342
1343
    /**
1344
     * EOS21 Intermediate Reference Frame
1345
     * Type: Geodetic
1346
     * Extent: United Kingdom (UK) - on or related to the complex of rail routes in the East of Scotland, incorporating
1347
     * the route from Tweedbank through the Borders to Edinburgh; the line from Edinburgh to Aberdeen; routes via
1348
     * Kirkaldy and Cowdenbeath; and routes via Leuchars and Perth to Dundee.
1349
     * Defined through the application of the EOS21 NTv2 transformation (code 9740) to ETRS89 as realized through OSNet
1350
     * v2009 CORS.
1351
     * Created in 2021 to support intermediate CRS "EOS21-IRF" in the emulation of the EOS21 Snake map projection.
1352
     */
1353
    public const EPSG_EOS21_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1308';
1354
1355
    /**
1356
     * ETRF2000 Poland
1357
     * Type: Geodetic
1358
     * Extent: Poland - onshore and offshore.
1359
     * Polish densification of ETRS89 realized through adjustment of ASG-EUPOS network constrained to 35 EPN stations
1360
     * in [email protected].
1361
     * Adopted as official Polish reference frame from 2012-12-01 through Ordinance of the Council of Ministers of 15th
1362
     * November 2012 on the state system of spatial reference system.
1363
     */
1364
    public const EPSG_ETRF2000_POLAND = 'urn:ogc:def:datum:EPSG::1305';
1365
1366
    /**
1367
     * EWR2 Intermediate Reference Frame
1368
     * Type: Geodetic
1369
     * Extent: United Kingdom (UK) - on or related to East West Rail (Phase 2) routes from Oxford to Bicester,
1370
     * Bletchley and Bedford, and from Claydon Junction to Aylesbury and Princes Risborough.
1371
     * Defined through the application of the EWR2 NTv2 transformation (code 9763) to ETRS89 as realized through OSNet
1372
     * v2009 CORS.
1373
     * Created in 2021 to support intermediate CRS "EWR2-IRF" in the emulation of the EWR2 Snake map projection.
1374
     */
1375
    public const EPSG_EWR2_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1311';
1376
1377
    /**
1378
     * Easter Island 1967
1379
     * Type: Geodetic
1380
     * Extent: Chile - Easter Island onshore.
1381
     */
1382
    public const EPSG_EASTER_ISLAND_1967 = 'urn:ogc:def:datum:EPSG::6719';
1383
1384
    /**
1385
     * Egypt 1907
1386
     * Type: Geodetic
1387
     * Extent: Egypt - onshore and offshore.
1388
     * Fundamental point: Station F1 (Venus). Latitude: 30°01'42.86"N, longitude: 31°16'33.60"E (of Greenwich).
1389
     */
1390
    public const EPSG_EGYPT_1907 = 'urn:ogc:def:datum:EPSG::6229';
1391
1392
    /**
1393
     * Egypt 1930
1394
     * Type: Geodetic
1395
     * Extent: Egypt - onshore.
1396
     * Fundamental point: Station F1 (Venus). Latitude: 30°01'42.86"N, longitude: 31°16'37.05"E (of Greenwich).
1397
     * Note that Egypt 1930 uses the International 1924 ellipsoid, unlike the Egypt 1907 datum (code 6229) which uses
1398
     * the Helmert ellipsoid. Oil industry references to the Egypt 1930 datum name and the Helmert ellipsoid probably
1399
     * mean Egypt 1907 datum.
1400
     */
1401
    public const EPSG_EGYPT_1930 = 'urn:ogc:def:datum:EPSG::6199';
1402
1403
    /**
1404
     * Egypt Gulf of Suez S-650 TL
1405
     * Type: Geodetic
1406
     * Extent: Egypt - Gulf of Suez.
1407
     * Fundamental point: Station S-650 DMX. Adopted coordinates: latitude: 28°19'02.1907"N, longitude:
1408
     * 33°06'36.6344"E (of Greenwich). The proper Egypt 1907 coordinates for S-650 differ from these by about 20m.
1409
     * A coherent set of stations bordering the Gulf of Suez coordinated by Transit translocation ("TL") between 1980
1410
     * and 1984. Based on incorrect Egypt 1907 values for origin station S-650. Differs from true Egypt 1907 by
1411
     * approximately 20m.
1412
     */
1413
    public const EPSG_EGYPT_GULF_OF_SUEZ_S_650_TL = 'urn:ogc:def:datum:EPSG::6706';
1414
1415
    /**
1416
     * El Hierro
1417
     * Type: Vertical
1418
     * Extent: Spain - Canary Islands - El Hierro onshore.
1419
     * Mean Sea Level at La Estaca harbour in 2000.
1420
     * Orthometric heights.
1421
     */
1422
    public const EPSG_EL_HIERRO = 'urn:ogc:def:datum:EPSG::1284';
1423
1424
    /**
1425
     * Estonia 1992
1426
     * Type: Geodetic
1427
     * Extent: Estonia - onshore.
1428
     * Densification from 4 ETRS89 points.
1429
     * Based on ETRS89 as established during the 1992 Baltic campaign. Replaced by Estonia 1997 adjustment (code 6180).
1430
     */
1431
    public const EPSG_ESTONIA_1992 = 'urn:ogc:def:datum:EPSG::6133';
1432
1433
    /**
1434
     * Estonia 1997
1435
     * Type: Geodetic
1436
     * Extent: Estonia - onshore and offshore.
1437
     * Densification of ETRS89 during EUREF-ESTONIA97 campaign through transformation from ITRF96 at epoch 1997.56.
1438
     * Replaces Estonia 1992 adjustment (code 6133).
1439
     */
1440
    public const EPSG_ESTONIA_1997 = 'urn:ogc:def:datum:EPSG::6180';
1441
1442
    /**
1443
     * Estonian Height System 2000
1444
     * Type: Vertical
1445
     * Extent: Estonia - onshore.
1446
     * Estonian realisation of EVRF2007. Relevelling observed  2004-2013 and reduced to epoch 2000 using the NKG2005LU
1447
     * empirical land uplift model. EVRF2007 height of Poltsamaa fundamental bench mark (H=55.2114m) held fixed.
1448
     * Uses Normal heights.
1449
     */
1450
    public const EPSG_ESTONIAN_HEIGHT_SYSTEM_2000 = 'urn:ogc:def:datum:EPSG::1298';
1451
1452
    /**
1453
     * European Datum 1950
1454
     * Type: Geodetic
1455
     * Extent: Europe - west: Andorra; Cyprus; Denmark - onshore and offshore; Faroe Islands - onshore; France -
1456
     * offshore; Germany - offshore North Sea; Gibraltar; Greece - offshore; Israel - offshore; Italy including San
1457
     * Marino and Vatican City State; Ireland offshore; Malta; Netherlands - offshore; North Sea; Norway including
1458
     * Svalbard - onshore and offshore; Portugal - mainland - offshore; Spain - onshore; Türkiye (Turkey) - onshore
1459
     * and offshore; United Kingdom - UKCS offshore east of 6°W including Channel Islands (Guernsey and Jersey). Egypt
1460
     * - Western Desert; Iraq - onshore; Jordan.
1461
     * Fundamental point: Potsdam (Helmert Tower). Latitude: 52°22'51.4456"N, longitude: 13°03'58.9283"E (of
1462
     * Greenwich).
1463
     */
1464
    public const EPSG_EUROPEAN_DATUM_1950 = 'urn:ogc:def:datum:EPSG::6230';
1465
1466
    /**
1467
     * European Datum 1950(1977)
1468
     * Type: Geodetic
1469
     * Extent: Iran - onshore and offshore.
1470
     * Extension of ED50 over Iran.
1471
     * Sometimes referred to as ED50-ED77.
1472
     */
1473
    public const EPSG_EUROPEAN_DATUM_1950_1977 = 'urn:ogc:def:datum:EPSG::6154';
1474
1475
    /**
1476
     * European Datum 1979
1477
     * Type: Geodetic
1478
     * Extent: Europe - west.
1479
     * Fundamental point: Potsdam (Helmert Tower). Latitude: 52°22'51.4456"N, longitude: 13°03'58.9283"E (of
1480
     * Greenwich).
1481
     * Replaced by 1987 adjustment.
1482
     */
1483
    public const EPSG_EUROPEAN_DATUM_1979 = 'urn:ogc:def:datum:EPSG::6668';
1484
1485
    /**
1486
     * European Datum 1987
1487
     * Type: Geodetic
1488
     * Extent: Europe - west.
1489
     * Fundamental point: Potsdam (Helmert Tower). Latitude: 52°22'51.4456"N, longitude: 13°03'58.9283"E (of
1490
     * Greenwich).
1491
     */
1492
    public const EPSG_EUROPEAN_DATUM_1987 = 'urn:ogc:def:datum:EPSG::6231';
1493
1494
    /**
1495
     * European Libyan Datum 1979
1496
     * Type: Geodetic
1497
     * Extent: Libya - onshore and offshore.
1498
     * Extension of ED50 over Libya.
1499
     */
1500
    public const EPSG_EUROPEAN_LIBYAN_DATUM_1979 = 'urn:ogc:def:datum:EPSG::6159';
1501
1502
    /**
1503
     * European Terrestrial Reference Frame 1989
1504
     * Type: Geodetic
1505
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1506
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1507
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1508
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1509
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1510
     * of Man; Vatican City State.
1511
     * Coincides with ITRF89 at epoch 1989.0. Fixed to the stable part of the Eurasian tectonic plate through 3
1512
     * rotation rates derived from the AM02 geophysical model.
1513
     * Defined by transformation from ITRF89 (CT code 7932). Replaced by ETRF90 (datum code 1179).
1514
     */
1515
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1989 = 'urn:ogc:def:datum:EPSG::1178';
1516
1517
    /**
1518
     * European Terrestrial Reference Frame 1990
1519
     * Type: Geodetic
1520
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1521
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1522
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1523
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1524
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1525
     * of Man; Vatican City State.
1526
     * Coincides with ITRF90 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1527
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1528
     * AM02 geophysical model.
1529
     * Defined by transformation from ITRF90 (CT code 7933). Replaces ETRF89 (datum code 1178). Replaced by ETRF91
1530
     * (datum code 1180).
1531
     */
1532
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1990 = 'urn:ogc:def:datum:EPSG::1179';
1533
1534
    /**
1535
     * European Terrestrial Reference Frame 1991
1536
     * Type: Geodetic
1537
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1538
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1539
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1540
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1541
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1542
     * of Man; Vatican City State.
1543
     * Coincides with ITRF91 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1544
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1545
     * AM02 geophysical model.
1546
     * Defined by transformation from ITRF91 (CT code 7934). Replaces ETRF90 (datum code 1179). Replaced by ETRF92
1547
     * (datum code 1181).
1548
     */
1549
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1991 = 'urn:ogc:def:datum:EPSG::1180';
1550
1551
    /**
1552
     * European Terrestrial Reference Frame 1992
1553
     * Type: Geodetic
1554
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1555
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1556
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1557
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1558
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1559
     * of Man; Vatican City State.
1560
     * Coincides with ITRF92 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1561
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1562
     * NNR-NUVEL-1 geophysical model.
1563
     * Defined by transformation from ITRF92 (CT code 7935). Replaces ETRF91 (datum code 1180). Replaced by ETRF93
1564
     * (datum code 1182).
1565
     */
1566
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1992 = 'urn:ogc:def:datum:EPSG::1181';
1567
1568
    /**
1569
     * European Terrestrial Reference Frame 1993
1570
     * Type: Geodetic
1571
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1572
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1573
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1574
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1575
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1576
     * of Man; Vatican City State.
1577
     * Coincides with ITRF93 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1578
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1579
     * ITRF93 velocity field.
1580
     * Defined by transformation from ITRF93 (CT code 7936). Replaces ETRF92 (datum code 1181). Replaced by ETRF94
1581
     * (datum code 1183).
1582
     */
1583
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1993 = 'urn:ogc:def:datum:EPSG::1182';
1584
1585
    /**
1586
     * European Terrestrial Reference Frame 1994
1587
     * Type: Geodetic
1588
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1589
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1590
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1591
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1592
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1593
     * of Man; Vatican City State.
1594
     * Coincides with ITRF94 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1595
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1596
     * NNR-NUVEL-1A geophysical model.
1597
     * Defined by transformation from ITRF94 (CT code 7937). Replaces ETRF93 (datum code 1182). Replaced by ETRF96
1598
     * (datum code 1184).
1599
     */
1600
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1994 = 'urn:ogc:def:datum:EPSG::1183';
1601
1602
    /**
1603
     * European Terrestrial Reference Frame 1996
1604
     * Type: Geodetic
1605
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1606
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1607
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1608
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1609
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1610
     * of Man; Vatican City State.
1611
     * Coincides with ITRF96 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1612
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1613
     * NNR-NUVEL-1A geophysical model.
1614
     * Defined by transformation from ITRF96 (CT code 7938). Replaces ETRF94 (datum code 1183). Replaced by ETRF97
1615
     * (datum code 1185).
1616
     */
1617
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1996 = 'urn:ogc:def:datum:EPSG::1184';
1618
1619
    /**
1620
     * European Terrestrial Reference Frame 1997
1621
     * Type: Geodetic
1622
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1623
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1624
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1625
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1626
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1627
     * of Man; Vatican City State.
1628
     * Coincides with ITRF97 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1629
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1630
     * NNR-NUVEL-1A geophysical model.
1631
     * Defined by transformation from ITRF97 (CT code 7939). Replaces ETRF96 (datum code 1184). Replaced by ETRF2000
1632
     * (datum code 1186).
1633
     */
1634
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1997 = 'urn:ogc:def:datum:EPSG::1185';
1635
1636
    /**
1637
     * European Terrestrial Reference Frame 2000
1638
     * Type: Geodetic
1639
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1640
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1641
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1642
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1643
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1644
     * of Man; Vatican City State.
1645
     * Coincides with ITRF2000 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1646
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1647
     * ITRF2000 velocity field.
1648
     * Defined by transformation from ITRF2000 (CT 7940). Replaces ETRF97. On the publication of ETRF2005 the EUREF TWG
1649
     * recommended that ETRF2000 be the realization of ETRS89. ETRF2014 (code 1206) is technically superior to all
1650
     * earlier realizations of ETRS89.
1651
     */
1652
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_2000 = 'urn:ogc:def:datum:EPSG::1186';
1653
1654
    /**
1655
     * European Terrestrial Reference Frame 2005
1656
     * Type: Geodetic
1657
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1658
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1659
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1660
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1661
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1662
     * of Man; Vatican City State.
1663
     * Coincides with ITRF2005 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1664
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1665
     * ITRF2005 velocity field.
1666
     * Defined by transformation from ITRF2005 (CT 5900). On publication in 2007 of this reference frame, the EUREF TWG
1667
     * recommended that ETRF2000 rather than this reference frame remained as the preferred realization of ETRS89.
1668
     * Replaced by ETRF2014 (code 1206).
1669
     */
1670
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_2005 = 'urn:ogc:def:datum:EPSG::1204';
1671
1672
    /**
1673
     * European Terrestrial Reference Frame 2014
1674
     * Type: Geodetic
1675
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1676
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1677
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1678
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1679
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1680
     * of Man; Vatican City State.
1681
     * Coincides with ITRF2014 at epoch 1989.0. Fixed to the stable part of the Eurasian tectonic plate through 3
1682
     * rotation rates derived from the ITRF2014 velocity field.
1683
     * Defined by transformation from ITRF2014 (CT code 8366). Replaces ETRF2005 (datum code 1204). Technically
1684
     * superior to ETRF2000 (datum code 1186).
1685
     */
1686
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_2014 = 'urn:ogc:def:datum:EPSG::1206';
1687
1688
    /**
1689
     * European Terrestrial Reference System 1989 ensemble
1690
     * Type: Ensemble
1691
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1692
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1693
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1694
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1695
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1696
     * of Man; Vatican City State.
1697
     * Has been realized through ETRF89, ETRF90, ETRF91, ETRF92, ETRF93, ETRF94, ETRF96, ETRF97, ETRF2000, ETRF2005 and
1698
     * ETRF2014. This 'ensemble' covers any or all of these realizations without distinction.
1699
     */
1700
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_SYSTEM_1989_ENSEMBLE = 'urn:ogc:def:datum:EPSG::6258';
1701
1702
    /**
1703
     * European Vertical Reference Frame 2000
1704
     * Type: Vertical
1705
     * Extent: Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Croatia; Czechia; Denmark;
1706
     * Estonia; Finland; France - mainland; Germany; Gibraltar; Hungary; Italy - mainland and Sicily; Latvia;
1707
     * Liechtenstein; Lithuania; Luxembourg; Netherlands; Norway; Poland; Portugal - mainland; Romania; San Marino;
1708
     * Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great Britain mainland; Vatican
1709
     * City State.
1710
     * Height at Normaal Amsterdams Peil (NAP) is zero, defined through height at UELN bench mark 13600 (52°22'53"N
1711
     * 4°54'34"E) of 0.71599m. Datum at NAP is mean high tide in 1684.
1712
     * Realized by geopotential numbers and Normal heights of the United European Levelling Network. Replaced by
1713
     * EVRF2007 (datum code 5215).
1714
     */
1715
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2000 = 'urn:ogc:def:datum:EPSG::5129';
1716
1717
    /**
1718
     * European Vertical Reference Frame 2000 Austria
1719
     * Type: Vertical
1720
     * Extent: Austria.
1721
     * Geopotential numbers of the EVRF2000 (UELN95/98) node points in Austria converted to orthometric heights using a
1722
     * digital surface model.
1723
     * Geoid surface is smoother than the EVRF2000 quasigeoid.
1724
     */
1725
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2000_AUSTRIA = 'urn:ogc:def:datum:EPSG::1261';
1726
1727
    /**
1728
     * European Vertical Reference Frame 2007
1729
     * Type: Vertical
1730
     * Extent: Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Czechia;
1731
     * Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily; Latvia;
1732
     * Liechtenstein; Lithuania; Luxembourg; Netherlands; Norway; Poland; Portugal - mainland; Romania; San Marino;
1733
     * Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great Britain mainland; Vatican
1734
     * City State.
1735
     * Least squares fit to 13 stations of the EVRF2000 solution. Reduced to epoch 2000.0 for Nordic countries using
1736
     * the NKG2005LU uplift model.
1737
     * Realized by geopotential numbers and Normal heights of the United European Levelling Network. Replaces EVRF2000
1738
     * (datum code 5129). Replaced by EVRF2019 (datum code 1274).
1739
     */
1740
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2007 = 'urn:ogc:def:datum:EPSG::5215';
1741
1742
    /**
1743
     * European Vertical Reference Frame 2007 Poland
1744
     * Type: Vertical
1745
     * Extent: Poland - onshore.
1746
     * Origin: Mean North Sea Level at Amsterdam tide gauge. Normal heights obtained from adjustment of precise
1747
     * leveling campaigns conducted during 1998 - 2012 reduced to epoch 2008.00.
1748
     *
1749
     * Uses Normal heights.
1750
     */
1751
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2007_POLAND = 'urn:ogc:def:datum:EPSG::1297';
1752
1753
    /**
1754
     * European Vertical Reference Frame 2019
1755
     * Type: Vertical
1756
     * Extent: Europe - onshore - Andorra; Austria; Belarus; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia;
1757
     * Czechia; Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily;
1758
     * Latvia; Liechtenstein; Lithuania; Luxembourg; Netherlands; North Macedonia; Norway; Poland; Portugal - mainland;
1759
     * Romania; Russia – west of approximately 60°E; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden;
1760
     * Switzerland; United Kingdom (UK) - Great Britain mainland; Ukraine; Vatican City State.
1761
     * Fixed to geopotential values of 12 stable stations of the EVRF2007 solution. Re-adjusted in September 2020.
1762
     * Reduced to epoch 2000.0 for Nordic countries and Russia using the NKG2016LU_lev uplift model and for Switzerland
1763
     * using CHVRF15 velocities.
1764
     * Following EVRS conventions, EVRF2019 is a zero-tide surface. Replaces EVRF2007 (datum code 5215).
1765
     */
1766
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2019 = 'urn:ogc:def:datum:EPSG::1274';
1767
1768
    /**
1769
     * European Vertical Reference Frame 2019 mean tide
1770
     * Type: Vertical
1771
     * Extent: Europe - onshore - Andorra; Austria; Belarus; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia;
1772
     * Czechia; Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily;
1773
     * Latvia; Liechtenstein; Lithuania; Luxembourg; Netherlands; North Macedonia; Norway; Poland; Portugal - mainland;
1774
     * Romania; Russia – west of approximately 60°E; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden;
1775
     * Switzerland; United Kingdom (UK) - Great Britain mainland; Ukraine; Vatican City State.
1776
     * Derived from 2020-09 zero-tide EVRF2019 adjustment by Cmean = Czero + (0.28841*sin^2(phi)) +
1777
     * (0.00195*sin^4(phi)) - 0.09722 - 0.08432 kgal.m. The offset of 0.08432 forces the mean-tide height to the
1778
     * zero-tide height at the EVRF2000 origin in Amsterdam.
1779
     * Mean-tide surface, describing how water flows. See EVRF2019 (datum code 1274) for zero-tide surface which is
1780
     * consistent with ETRS conventions.
1781
     */
1782
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2019_MEAN_TIDE = 'urn:ogc:def:datum:EPSG::1287';
1783
1784
    /**
1785
     * FNL22 Intermediate Reference Frame
1786
     * Type: Geodetic
1787
     * Extent: United Kingdom (UK) - on or related to the rail route from Inverness to Thurso and Wick.
1788
     * Defined through the application of the FNL22 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS.
1789
     * Created in 2022 to support intermediate CRS "FNL22" in the emulation of the FNL22 Snake map projection.
1790
     */
1791
    public const EPSG_FNL22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1321';
1792
1793
    /**
1794
     * Fahud
1795
     * Type: Geodetic
1796
     * Extent: Oman - mainland onshore.
1797
     * Fundamental point: Station NO68-024 Fahud. Latitude: 22°17'31.182"N, longitude: 56°29'18.820"E (of Greenwich).
1798
     * Replaced by PSD93 (code 6134).
1799
     */
1800
    public const EPSG_FAHUD = 'urn:ogc:def:datum:EPSG::6232';
1801
1802
    /**
1803
     * Fahud Height Datum
1804
     * Type: Vertical
1805
     * Extent: Oman - mainland onshore.
1806
     * Single MSL determination at Mina Al Fahal.
1807
     * Based on reciprocal trigonometric heighting. Replaced by PHD93 Datum (code 5123) in 1993.
1808
     */
1809
    public const EPSG_FAHUD_HEIGHT_DATUM = 'urn:ogc:def:datum:EPSG::5124';
1810
1811
    /**
1812
     * Fair Isle
1813
     * Type: Vertical
1814
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Fair Isle onshore.
1815
     * Orthometric heights.
1816
     */
1817
    public const EPSG_FAIR_ISLE = 'urn:ogc:def:datum:EPSG::5139';
1818
1819
    /**
1820
     * Famagusta 1960
1821
     * Type: Vertical
1822
     * Extent: Cyprus - onshore.
1823
     * Mean sea level at Famagusta Harbour.
1824
     * Orthometric heights.
1825
     */
1826
    public const EPSG_FAMAGUSTA_1960 = 'urn:ogc:def:datum:EPSG::1148';
1827
1828
    /**
1829
     * Fao
1830
     * Type: Vertical
1831
     * Extent: Iraq - onshore southeast; Iran - onshore northern Gulf coast and west bordering southeast Iraq.
1832
     * Established by Hunting Surveys for IPC. In Iran replaced by Bandar Abbas (code 5150). At time of record creation
1833
     * NIOC data in Ahwaz area still usually referenced to Fao. In Iraq replaced by Fao 1979 (code 1028).
1834
     */
1835
    public const EPSG_FAO = 'urn:ogc:def:datum:EPSG::5149';
1836
1837
    /**
1838
     * Fao 1979
1839
     * Type: Vertical
1840
     * Extent: Iraq - onshore.
1841
     * Average sea level at Fao during two-year period in mid/late 1970s.
1842
     * Levelling network established by Polservice consortium.  Replaces Fao (datum code 5149) in Iraq.
1843
     */
1844
    public const EPSG_FAO_1979 = 'urn:ogc:def:datum:EPSG::1028';
1845
1846
    /**
1847
     * Faroe Datum 1954
1848
     * Type: Geodetic
1849
     * Extent: Faroe Islands - onshore.
1850
     * Astronomical observations at 3 points.
1851
     * Replaced by ED50 in late 1970's for all purposes other than cadastre. Replaced by fk89 for cadastre.
1852
     */
1853
    public const EPSG_FAROE_DATUM_1954 = 'urn:ogc:def:datum:EPSG::6741';
1854
1855
    /**
1856
     * Faroe Islands Vertical Reference 2009
1857
     * Type: Vertical
1858
     * Extent: Faroe Islands - onshore.
1859
     * Mean Tidal Height System.
1860
     */
1861
    public const EPSG_FAROE_ISLANDS_VERTICAL_REFERENCE_2009 = 'urn:ogc:def:datum:EPSG::1059';
1862
1863
    /**
1864
     * Fatu Iva 72
1865
     * Type: Geodetic
1866
     * Extent: French Polynesia - Marquesas Islands - Fatu Hiva.
1867
     * Fundamental point: Latitude: 9°25'58.00"S, longitude: 138°55'06.25"W (of Greenwich).
1868
     * Recomputed by IGN in 1972 using origin and observations of 1953-1955 Mission Hydrographique des Establissements
1869
     * Francais d'Oceanie (MHEFO 55). Replaced by RGPF (datum code 6687).
1870
     */
1871
    public const EPSG_FATU_IVA_72 = 'urn:ogc:def:datum:EPSG::6688';
1872
1873
    /**
1874
     * Fehmarnbelt Datum 2010
1875
     * Type: Geodetic
1876
     * Extent: Fehmarnbelt area of Denmark and Germany.
1877
     * ITRF2005 at epoch 2010.14.
1878
     * Defined through coordinates of four permanant GNSS stations.
1879
     */
1880
    public const EPSG_FEHMARNBELT_DATUM_2010 = 'urn:ogc:def:datum:EPSG::1078';
1881
1882
    /**
1883
     * Fehmarnbelt Vertical Reference 2010
1884
     * Type: Vertical
1885
     * Extent: Fehmarnbelt area of Denmark and Germany.
1886
     * Realised by precise levelling between tide gauges at Marienleuchte (Germany), Rodbyhavn (Denmark) and four
1887
     * Fehmarnbelt project GNSS stations.
1888
     */
1889
    public const EPSG_FEHMARNBELT_VERTICAL_REFERENCE_2010 = 'urn:ogc:def:datum:EPSG::1079';
1890
1891
    /**
1892
     * Fiji 1956
1893
     * Type: Geodetic
1894
     * Extent: Fiji - onshore - Vanua Levu, Taveuni, Viti Levu and and immediately adjacent smaller islands of Yasawa
1895
     * and Kandavu groups.
1896
     * Latitude origin was obtained astronomically at station Rasusuva = 17°49'03.13"S,  longitude origin was obtained
1897
     * astronomically at station Suva = 178°25'35.835"E (of Greenwich).
1898
     * For topographic mapping replaces Viti Levu 1912 and Vanua Levu 1915. Replaced by Fiji Geodetic Datum 1986.
1899
     */
1900
    public const EPSG_FIJI_1956 = 'urn:ogc:def:datum:EPSG::6721';
1901
1902
    /**
1903
     * Fiji Geodetic Datum 1986
1904
     * Type: Geodetic
1905
     * Extent: Fiji - onshore. Includes Viti Levu, Vanua Levu, Taveuni, the Yasawa Group, the Kadavu Group, the Lau
1906
     * Islands and Rotuma Islands.
1907
     * NWL 9D coordinates of 6 stations on Vitu Levu and Vanua Levu.
1908
     * Replaces Viti Levu 1912, Vanua Levu 1915 and Fiji 1956.
1909
     */
1910
    public const EPSG_FIJI_GEODETIC_DATUM_1986 = 'urn:ogc:def:datum:EPSG::6720';
1911
1912
    /**
1913
     * Final Datum 1958
1914
     * Type: Geodetic
1915
     * Extent: Iran - Arwaz area and onshore Gulf coast west of 54°E, Lavan Island, offshore Balal field and South
1916
     * Pars blocks 2 and 3.
1917
     * Fundamental point: Maniyur.  Latitude: 31°23'59.19"N, longitude: 48°32'31.38"E (of Greenwich).
1918
     * Network included in Nahrwan 1967 adjustment.
1919
     */
1920
    public const EPSG_FINAL_DATUM_1958 = 'urn:ogc:def:datum:EPSG::6132';
1921
1922
    /**
1923
     * Flannan Isles
1924
     * Type: Vertical
1925
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Flannan Isles onshore.
1926
     * Orthometric heights.
1927
     */
1928
    public const EPSG_FLANNAN_ISLES = 'urn:ogc:def:datum:EPSG::5146';
1929
1930
    /**
1931
     * Fort Marigot
1932
     * Type: Geodetic
1933
     * Extent: Guadeloupe - onshore - St Martin and St Barthélemy islands.
1934
     * Replaced by RRAF 1991 (datum code 1047).
1935
     */
1936
    public const EPSG_FORT_MARIGOT = 'urn:ogc:def:datum:EPSG::6621';
1937
1938
    /**
1939
     * Foula
1940
     * Type: Vertical
1941
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Foula onshore.
1942
     * Orthometric heights.
1943
     */
1944
    public const EPSG_FOULA = 'urn:ogc:def:datum:EPSG::5141';
1945
1946
    /**
1947
     * Fuerteventura
1948
     * Type: Vertical
1949
     * Extent: Spain - Canary Islands - Fuerteventura onshore.
1950
     * Mean Sea Level at Puerto del Rosario harbour between 1999-09-08 and 2000-12-31.
1951
     * Orthometric heights.
1952
     */
1953
    public const EPSG_FUERTEVENTURA = 'urn:ogc:def:datum:EPSG::1279';
1954
1955
    /**
1956
     * GBK19 Intermediate Reference Frame
1957
     * Type: Geodetic
1958
     * Extent: United Kingdom (UK) - on or related to the rail route from Glasgow to Kilmarnock via Barrhead and the
1959
     * branch to East Kilbride.
1960
     * Defined through the application of the GBK19 NTv2 transformation (code 9454) to ETRS89 as realized through OSNet
1961
     * v2009 CORS.
1962
     * Created in 2020 to support intermediate CRS "GBK19-IRF" in the emulation of the combined GBK19 Snake map
1963
     * projection.
1964
     */
1965
    public const EPSG_GBK19_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1289';
1966
1967
    /**
1968
     * GNTRANS
1969
     * Type: Vertical
1970
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
1971
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
1972
     * Schleswig-Holstein, Thuringen.
1973
     * Surface defined by the EGG97 quasi-geoid model modified in GNTRANS to achieve absolute position optimised for
1974
     * use with DB_REF.
1975
     * Implemented in GNTRANS. The GNTRANS height surface is available only through the GNTRANS application. Replaced
1976
     * by the GNTRANS2016 height surface (datum code 1318).
1977
     */
1978
    public const EPSG_GNTRANS = 'urn:ogc:def:datum:EPSG::1316';
1979
1980
    /**
1981
     * GNTRANS2016
1982
     * Type: Vertical
1983
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
1984
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
1985
     * Schleswig-Holstein, Thuringen.
1986
     * Surface defined by the GCG2016 quasi-geoid model applied to ETRS89.
1987
     * Approximates the national DHHN2016 levelling surface to around 1cm in lowlands and 2cm in high mountains, but
1988
     * unlike DHHN2016 it is defined by the GCG2016 geoid model. Like DHHN2016, uses Normal heights in the mean tide
1989
     * system.
1990
     */
1991
    public const EPSG_GNTRANS2016 = 'urn:ogc:def:datum:EPSG::1318';
1992
1993
    /**
1994
     * Gambia
1995
     * Type: Geodetic
1996
     * Extent: Gambia - onshore.
1997
     */
1998
    public const EPSG_GAMBIA = 'urn:ogc:def:datum:EPSG::1139';
1999
2000
    /**
2001
     * Gan 1970
2002
     * Type: Geodetic
2003
     * Extent: Maldives - onshore.
2004
     * In some references incorrectly named "Gandajika 1970". See datum code 6685.
2005
     */
2006
    public const EPSG_GAN_1970 = 'urn:ogc:def:datum:EPSG::6684';
2007
2008
    /**
2009
     * Garoua
2010
     * Type: Geodetic
2011
     * Extent: Cameroon - Garoua area.
2012
     * Fundamental point: IGN astronomical station and benchmark no. 16 at Tongo. Latitude 8°55'08.74"N, longitude
2013
     * 13°30'43.19"E (of Greenwich).
2014
     */
2015
    public const EPSG_GAROUA = 'urn:ogc:def:datum:EPSG::6197';
2016
2017
    /**
2018
     * Gebrauchshohen ADRIA
2019
     * Type: Vertical
2020
     * Extent: Austria.
2021
     * Reference point Hutbiegl defined relative to mean sea level at Trieste in 1875.
2022
     * Normal-orthometric heights.
2023
     */
2024
    public const EPSG_GEBRAUCHSHOHEN_ADRIA = 'urn:ogc:def:datum:EPSG::5176';
2025
2026
    /**
2027
     * Genoa 1942
2028
     * Type: Vertical
2029
     * Extent: Italy - mainland (including San Marino and Vatican City State) and Sicily.
2030
     * Mean Sea Level at Genoa (Ponte Morosini) 1937-1946.
2031
     * Orthometric heights.
2032
     */
2033
    public const EPSG_GENOA_1942 = 'urn:ogc:def:datum:EPSG::1051';
2034
2035
    /**
2036
     * Geocentric Datum Brunei Darussalam 2009
2037
     * Type: Geodetic
2038
     * Extent: Brunei Darussalam - onshore and offshore.
2039
     * ITRF2005 at epoch 2009.45
2040
     * Replaces use of Timbalai from July 2009.
2041
     */
2042
    public const EPSG_GEOCENTRIC_DATUM_BRUNEI_DARUSSALAM_2009 = 'urn:ogc:def:datum:EPSG::1056';
2043
2044
    /**
2045
     * Geocentric Datum of Australia 1994
2046
     * Type: Geodetic
2047
     * Extent: Australia including Lord Howe Island, Macquarie Island, Ashmore and Cartier Islands, Christmas Island,
2048
     * Cocos (Keeling) Islands, Norfolk Island. All onshore and offshore.
2049
     * ITRF92 at epoch 1994.0.
2050
     */
2051
    public const EPSG_GEOCENTRIC_DATUM_OF_AUSTRALIA_1994 = 'urn:ogc:def:datum:EPSG::6283';
2052
2053
    /**
2054
     * Geocentric Datum of Australia 2020
2055
     * Type: Geodetic
2056
     * Extent: Australia including Lord Howe Island, Macquarie Island, Ashmore and Cartier Islands, Christmas Island,
2057
     * Cocos (Keeling) Islands, Norfolk Island. All onshore and offshore.
2058
     * ITRF2014 at epoch 2020.0.
2059
     */
2060
    public const EPSG_GEOCENTRIC_DATUM_OF_AUSTRALIA_2020 = 'urn:ogc:def:datum:EPSG::1168';
2061
2062
    /**
2063
     * Geocentric datum of Korea
2064
     * Type: Geodetic
2065
     * Extent: Republic of Korea (South Korea) - onshore and offshore.
2066
     * ITRF2000 at epoch 2002.0.
2067
     */
2068
    public const EPSG_GEOCENTRIC_DATUM_OF_KOREA = 'urn:ogc:def:datum:EPSG::6737';
2069
2070
    /**
2071
     * Geodetic Datum of 1965
2072
     * Type: Geodetic
2073
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
2074
     * Adjusted to best mean fit 9 stations of the OSNI 1952 primary adjustment in Northern Ireland plus the 1965
2075
     * values of 3 stations in the Republic of Ireland.
2076
     * Differences from the 1965 adjustment (datum code 6299) are: average difference in Eastings 0.092m; average
2077
     * difference in Northings 0.108m; maximum vector difference 0.548m.
2078
     */
2079
    public const EPSG_GEODETIC_DATUM_OF_1965 = 'urn:ogc:def:datum:EPSG::6300';
2080
2081
    /**
2082
     * Geodetic Datum of Malaysia 2000
2083
     * Type: Geodetic
2084
     * Extent: Malaysia - onshore and offshore. Includes peninsular Malayasia, Sabah and Sarawak.
2085
     * ITRF2000, epoch 2000.0.
2086
     * Replaces all older Malaysian datums.
2087
     */
2088
    public const EPSG_GEODETIC_DATUM_OF_MALAYSIA_2000 = 'urn:ogc:def:datum:EPSG::6742';
2089
2090
    /**
2091
     * Geodezicheskaya Sistema Koordinat 2011
2092
     * Type: Geodetic
2093
     * Extent: Russian Federation - onshore and offshore.
2094
     * Coordinates of the Russian fundamental astronomic-geodetic network (about 50 stations) at epoch 2011.0.
2095
     */
2096
    public const EPSG_GEODEZICHESKAYA_SISTEMA_KOORDINAT_2011 = 'urn:ogc:def:datum:EPSG::1159';
2097
2098
    /**
2099
     * Gisborne 1926
2100
     * Type: Vertical
2101
     * Extent: New Zealand - North Island - Gisborne vertical CRS area.
2102
     * MSL at Gisborne harbour 1926.
2103
     */
2104
    public const EPSG_GISBORNE_1926 = 'urn:ogc:def:datum:EPSG::5160';
2105
2106
    /**
2107
     * Gran Canaria
2108
     * Type: Vertical
2109
     * Extent: Spain - Canary Islands - Gran Canaria onshore.
2110
     * Mean Sea Level at Las Palmas de Gran Canaria harbour between 1992 and 1997.
2111
     * Orthometric heights.
2112
     */
2113
    public const EPSG_GRAN_CANARIA = 'urn:ogc:def:datum:EPSG::1280';
2114
2115
    /**
2116
     * Grand Cayman Geodetic Datum 1959
2117
     * Type: Geodetic
2118
     * Extent: Cayman Islands - Grand Cayman.
2119
     * Fundamental point: GC1. Latitude: 19°17'54.43"N, longitude: 81°22'37.17"W (of Greenwich).
2120
     * Replaced by CIGD11 (datum code 1100).
2121
     */
2122
    public const EPSG_GRAND_CAYMAN_GEODETIC_DATUM_1959 = 'urn:ogc:def:datum:EPSG::6723';
2123
2124
    /**
2125
     * Grand Cayman Vertical Datum 1954
2126
     * Type: Vertical
2127
     * Extent: Cayman Islands - Grand Cayman.
2128
     */
2129
    public const EPSG_GRAND_CAYMAN_VERTICAL_DATUM_1954 = 'urn:ogc:def:datum:EPSG::1097';
2130
2131
    /**
2132
     * Grand Comoros
2133
     * Type: Geodetic
2134
     * Extent: Comoros - Njazidja (Grande Comore).
2135
     * Fundamental point: M'Tsaoueni.  Latitude: 11°28'32.200"S, longitude: 43°15'42.315"E (of Greenwich).
2136
     */
2137
    public const EPSG_GRAND_COMOROS = 'urn:ogc:def:datum:EPSG::6646';
2138
2139
    /**
2140
     * Greek
2141
     * Type: Geodetic
2142
     * Extent: Greece - onshore.
2143
     * Fundamental point: Athens Observatory. Latitude 37°58'20.132"N, longitude 23°42'58.815"E (of Greenwich)
2144
     * See geodetic datum alias 6404.  Used as basis of topographic mapping based on Hatt projection. Replaced by
2145
     * GGRS87 (code 6121).
2146
     */
2147
    public const EPSG_GREEK = 'urn:ogc:def:datum:EPSG::6120';
2148
2149
    /**
2150
     * Greek (Athens)
2151
     * Type: Geodetic
2152
     * Extent: Greece - onshore.
2153
     * Fundamental point: Athens Observatory. Latitude 37°58'20.132"N, longitude 0°E (of Athens).
2154
     * See geodetic datum alias 6404.  Used as basis of topographic mapping based on Hatt projection.
2155
     */
2156
    public const EPSG_GREEK_ATHENS = 'urn:ogc:def:datum:EPSG::6815';
2157
2158
    /**
2159
     * Greek Geodetic Reference System 1987
2160
     * Type: Geodetic
2161
     * Extent: Greece - onshore.
2162
     * Fundamental point: Dionysos. Latitude 38°04'33.8"N, longitude 23°55'51.0"E of Greenwich; geoid height 7.0 m.
2163
     * Replaced (old) Greek datum.  Oil industry work based on ED50.
2164
     */
2165
    public const EPSG_GREEK_GEODETIC_REFERENCE_SYSTEM_1987 = 'urn:ogc:def:datum:EPSG::6121';
2166
2167
    /**
2168
     * Greenland 1996
2169
     * Type: Geodetic
2170
     * Extent: Greenland - onshore and offshore.
2171
     * ITRF94 at epoch 1996.62
2172
     * Replaces Ammassalik 1958, Qornoq 1927 and Scoresbysund 1952.
2173
     */
2174
    public const EPSG_GREENLAND_1996 = 'urn:ogc:def:datum:EPSG::6747';
2175
2176
    /**
2177
     * Greenland Vertical Reference 2000
2178
     * Type: Vertical
2179
     * Extent: Greenland - onshore and offshore between 59°N and 84°N and west of 10°W.
2180
     * Defined through the gravimetric geoid 2000 model locally aligned with MSL at a number of sites.
2181
     * Orthometric heights. Replaced by GVR2016.
2182
     */
2183
    public const EPSG_GREENLAND_VERTICAL_REFERENCE_2000 = 'urn:ogc:def:datum:EPSG::1199';
2184
2185
    /**
2186
     * Greenland Vertical Reference 2016
2187
     * Type: Vertical
2188
     * Extent: Greenland - onshore and offshore between 58°N and 85°N and west of 7°W.
2189
     * Defined through the gravimetric geoid 2016 model locally aligned to MSL as measured at Nuuk during the 1960s.
2190
     * Orthometric heights. Replaces GVR2000.
2191
     */
2192
    public const EPSG_GREENLAND_VERTICAL_REFERENCE_2016 = 'urn:ogc:def:datum:EPSG::1200';
2193
2194
    /**
2195
     * Grenada 1953
2196
     * Type: Geodetic
2197
     * Extent: Grenada and southern Grenadine Islands - onshore.
2198
     * Fundamental point: station GS8, Sante Marie.
2199
     */
2200
    public const EPSG_GRENADA_1953 = 'urn:ogc:def:datum:EPSG::6603';
2201
2202
    /**
2203
     * Guadeloupe 1948
2204
     * Type: Geodetic
2205
     * Extent: Guadeloupe - onshore - Basse-Terre, Grande-Terre, La Desirade, Marie-Galante, Les Saintes.
2206
     * Replaced by RRAF 1991 (datum code 1047).
2207
     */
2208
    public const EPSG_GUADELOUPE_1948 = 'urn:ogc:def:datum:EPSG::6622';
2209
2210
    /**
2211
     * Guadeloupe 1951
2212
     * Type: Vertical
2213
     * Extent: Guadeloupe - onshore - Basse-Terre and Grande-Terre.
2214
     * Mean sea level July 1947 to June 1948 at Pointe-Fouillole (Pointe-à-Pitre harbour). Origin = marker AO'-12 with
2215
     * height of 1.917m above msl.
2216
     * Orthometric heights. Replaced by Guadeloupe 1988 (datum code 5155). Guadeloupe 1951 height 0.00m is 0.629m above
2217
     * 1947-48 sounding datum.
2218
     */
2219
    public const EPSG_GUADELOUPE_1951 = 'urn:ogc:def:datum:EPSG::5193';
2220
2221
    /**
2222
     * Guadeloupe 1988
2223
     * Type: Vertical
2224
     * Extent: Guadeloupe - onshore - Basse-Terre and Grande-Terre.
2225
     * Mean sea level July 1947 to June 1948 at Pointe-Fouillole (Pointe-à-Pitre harbour). Origin = marker GO-7
2226
     * (formerly AO'-5) with defined height of 2.67m above msl adopted from 1951 value. Guadeloupe 1988 height 0.00m is
2227
     * 0.46m above 1984 sounding datum.
2228
     * Orthometric heights. Replaces Guadeloupe 1951 (datum code 5193).
2229
     */
2230
    public const EPSG_GUADELOUPE_1988 = 'urn:ogc:def:datum:EPSG::5155';
2231
2232
    /**
2233
     * Guam 1963
2234
     * Type: Geodetic
2235
     * Extent: Guam - onshore. Northern Mariana Islands - onshore.
2236
     * Fundamental point: Tagcha. Latitude: 13°22'38.49"N, longitude: 144°45'51.56"E (of Greenwich).
2237
     * Replaced by NAD83(HARN).
2238
     */
2239
    public const EPSG_GUAM_1963 = 'urn:ogc:def:datum:EPSG::6675';
2240
2241
    /**
2242
     * Guam Vertical Datum of 1963
2243
     * Type: Vertical
2244
     * Extent: Guam - onshore.
2245
     * Mean sea level at Apra harbor, Guam, 1949-1962. Benchmark NO 5 1949 = 0.599m.
2246
     * Replaced by Guam vertical datum of 2004 (datum code 1126).
2247
     */
2248
    public const EPSG_GUAM_VERTICAL_DATUM_OF_1963 = 'urn:ogc:def:datum:EPSG::1122';
2249
2250
    /**
2251
     * Guam Vertical Datum of 2004
2252
     * Type: Vertical
2253
     * Extent: Guam - onshore.
2254
     * Mean sea level at Apra harbor, Guam. Benchmark 1630000 TIDAL 4 = 2.170m relative to US National Tidal Datum
2255
     * Epoch 1983-2001. MSL is 0.419m above MLLW and the BM is 2.589m above MLLW.
2256
     * Replaces Guam Vertical Datum of 1963 (datum code 1122).
2257
     */
2258
    public const EPSG_GUAM_VERTICAL_DATUM_OF_2004 = 'urn:ogc:def:datum:EPSG::1126';
2259
2260
    /**
2261
     * Gulshan 303
2262
     * Type: Geodetic
2263
     * Extent: Bangladesh - onshore and offshore.
2264
     * Gulshan garden, Dhaka.
2265
     * Network of more than 140 control points observed and adjusted in 1995 by Japan International Cooperation Agency
2266
     * (JICA).
2267
     */
2268
    public const EPSG_GULSHAN_303 = 'urn:ogc:def:datum:EPSG::6682';
2269
2270
    /**
2271
     * Gunung Segara
2272
     * Type: Geodetic
2273
     * Extent: Indonesia - Kalimantan - onshore east coastal area including Mahakam delta coastal and offshore shelf
2274
     * areas.
2275
     * Station P5 (Gunung Segara). Latitude 0°32'12.83"S, longitude 117°08'48.47"E (of Greenwich).
2276
     */
2277
    public const EPSG_GUNUNG_SEGARA = 'urn:ogc:def:datum:EPSG::6613';
2278
2279
    /**
2280
     * Gunung Segara (Jakarta)
2281
     * Type: Geodetic
2282
     * Extent: Indonesia - Kalimantan - onshore east coastal area including Mahakam delta coastal and offshore shelf
2283
     * areas.
2284
     * Station P5 (Gunung Segara) 0°32'12.83"S, 117°08'48.47"E (of Greenwich). Longitude 8°20'20.68"E (of Jakarta).
2285
     */
2286
    public const EPSG_GUNUNG_SEGARA_JAKARTA = 'urn:ogc:def:datum:EPSG::6820';
2287
2288
    /**
2289
     * Gusterberg (Ferro)
2290
     * Type: Geodetic
2291
     * Extent: Austria - Upper Austria and Salzburg provinces. Czechia - Bohemia.
2292
     * Fundamental point: Gusterberg. Latitude: 48°02'18.47"N, longitude: 31°48'15.05"E (of Ferro).
2293
     */
2294
    public const EPSG_GUSTERBERG_FERRO = 'urn:ogc:def:datum:EPSG::1188';
2295
2296
    /**
2297
     * HS2 Intermediate Reference Frame
2298
     * Type: Geodetic
2299
     * Extent: United Kingdom (UK) - HS2 phases 1 and 2a railway corridor from London to Birmingham, Lichfield and
2300
     * Crewe.
2301
     * Defined through application of the HS2TN02 transformation to ETRS89 as realized through OSNet v2001 CORS.
2302
     * Subsequently realized through application of the HS2TN15 transformation to ETRS89 as realized through OSNet
2303
     * v2009 CORS.
2304
     * Created to support intermediate CRS "HS2-IRF" in the emulation of the HS2P1+14 Snake map projection.
2305
     */
2306
    public const EPSG_HS2_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1264';
2307
2308
    /**
2309
     * HS2 Vertical Reference Frame
2310
     * Type: Vertical
2311
     * Extent: United Kingdom (UK) - HS2 phases 1 and 2a railway corridor from London to Birmingham, Lichfield and
2312
     * Crewe.
2313
     * Equivalent to Ordnance Datum Newlyn as realized through OSNet v2001 and OSGM02.
2314
     * After introduction of OSNet v2009 CORS, OSTN15 and the OSGM15 geoid model, the HS2 VRF is maintained equivalent
2315
     * to OSNet v2001 and OSGM02 through HS2GM15 (code 9304).
2316
     */
2317
    public const EPSG_HS2_VERTICAL_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1265';
2318
2319
    /**
2320
     * HULLEE13 Intermediate Reference Frame
2321
     * Type: Geodetic
2322
     * Extent: United Kingdom (UK) - on or related to the rail route from the Morley tunnel through Leeds to Hull.
2323
     * Defined through the application of the HULLEE13 NTv2 transformation to ETRS89 as realized through OSNet v2009
2324
     * CORS.
2325
     * Created in 2022 to support intermediate CRS "HULLEE13-IRF" in the emulation of the HULLEE13 Snake map
2326
     * projection.
2327
     */
2328
    public const EPSG_HULLEE13_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1317';
2329
2330
    /**
2331
     * Ha Tien 1960
2332
     * Type: Vertical
2333
     * Extent: Cambodia - mainland onshore; Vietnam - mainland onshore.
2334
     * In Vietnam replaced by Hon Dau in 1992.
2335
     */
2336
    public const EPSG_HA_TIEN_1960 = 'urn:ogc:def:datum:EPSG::5125';
2337
2338
    /**
2339
     * Hanoi 1972
2340
     * Type: Geodetic
2341
     * Extent: Vietnam - onshore.
2342
     */
2343
    public const EPSG_HANOI_1972 = 'urn:ogc:def:datum:EPSG::6147';
2344
2345
    /**
2346
     * Hartebeesthoek94
2347
     * Type: Geodetic
2348
     * Extent: Eswatini (Swaziland); Lesotho; South Africa - onshore and offshore.
2349
     * Coincident with ITRF91 at epoch 1994.0 at Hartebeesthoek astronomical observatory near Pretoria.
2350
     * Replaces Cape datum (code 6222).
2351
     */
2352
    public const EPSG_HARTEBEESTHOEK94 = 'urn:ogc:def:datum:EPSG::6148';
2353
2354
    /**
2355
     * Helle 1954
2356
     * Type: Geodetic
2357
     * Extent: Jan Mayen - onshore.
2358
     */
2359
    public const EPSG_HELLE_1954 = 'urn:ogc:def:datum:EPSG::6660';
2360
2361
    /**
2362
     * Helsinki 1943
2363
     * Type: Vertical
2364
     * Extent: Finland - onshore mainland south of approximately 66°N.
2365
     * MSL at Helsinki during 1943.
2366
     * Uses orthometric heights. Effect of the land uplift during the 2nd national  levelling was not taken into
2367
     * account. Replaced by N60 (datum code 5116).
2368
     */
2369
    public const EPSG_HELSINKI_1943 = 'urn:ogc:def:datum:EPSG::1213';
2370
2371
    /**
2372
     * Helsinki 1960
2373
     * Type: Vertical
2374
     * Extent: Finland - onshore.
2375
     * MSL at Helsinki during 1960.
2376
     * Uses orthometric heights. Replaced by N2000 (datum code 1030).
2377
     */
2378
    public const EPSG_HELSINKI_1960 = 'urn:ogc:def:datum:EPSG::5116';
2379
2380
    /**
2381
     * Herat North
2382
     * Type: Geodetic
2383
     * Extent: Afghanistan.
2384
     * Fundamental point: Herat North. Latitude: 34°23'09.08"N, longitude: 64°10'58.94"E (of Greenwich).
2385
     */
2386
    public const EPSG_HERAT_NORTH = 'urn:ogc:def:datum:EPSG::6255';
2387
2388
    /**
2389
     * High Water
2390
     * Type: Vertical
2391
     * Extent: World.
2392
     * The highest level reached at a place by the water surface in one tidal cycle. When used on inland (non-tidal)
2393
     * waters it is generally defined as a level which the daily mean water level exceeds less than 5% of the time.
2394
     * Users are advised to not use this generic vertical datum but to define explicit realizations of high water by
2395
     * specifying location and epoch, for instance "High water at xxx during yyyy-yyyy".
2396
     */
2397
    public const EPSG_HIGH_WATER = 'urn:ogc:def:datum:EPSG::1094';
2398
2399
    /**
2400
     * Higher High Water Large Tide
2401
     * Type: Vertical
2402
     * Extent: World.
2403
     * The average of the highest high waters, one from each of 19 years of observations.
2404
     * Users are advised to not use this generic vertical datum but to define explicit realizations of HHWLT by
2405
     * specifying location and epoch, for instance "HHWLT at xxx during yyyy-yyyy".
2406
     */
2407
    public const EPSG_HIGHER_HIGH_WATER_LARGE_TIDE = 'urn:ogc:def:datum:EPSG::1084';
2408
2409
    /**
2410
     * Highest Astronomical Tide
2411
     * Type: Vertical
2412
     * Extent: World.
2413
     * The highest tide level which can be predicted to occur under average meteorological conditions and under any
2414
     * combination of astronomical conditions.
2415
     * Users are advised to not use this generic vertical datum but to define explicit realizations of HAT by
2416
     * specifying location and epoch, for instance "HAT at xxx during yyyy-yyyy".
2417
     */
2418
    public const EPSG_HIGHEST_ASTRONOMICAL_TIDE = 'urn:ogc:def:datum:EPSG::1082';
2419
2420
    /**
2421
     * Hito XVIII 1963
2422
     * Type: Geodetic
2423
     * Extent: Chile - Tierra del Fuego, onshore; Argentina - Tierra del Fuego, onshore and offshore Atlantic west of
2424
     * 66°W.
2425
     * Chile-Argentina boundary survey.
2426
     * Used in Tierra del Fuego.
2427
     */
2428
    public const EPSG_HITO_XVIII_1963 = 'urn:ogc:def:datum:EPSG::6254';
2429
2430
    /**
2431
     * Hjorsey 1955
2432
     * Type: Geodetic
2433
     * Extent: Iceland - mainland.
2434
     * Fundamental point:  Latitude: 64°31'29.26"N, longitude: 22°22'05.84"W (of Greenwich).
2435
     */
2436
    public const EPSG_HJORSEY_1955 = 'urn:ogc:def:datum:EPSG::6658';
2437
2438
    /**
2439
     * Hon Dau 1992
2440
     * Type: Vertical
2441
     * Extent: Vietnam - mainland onshore.
2442
     * Replaces Ha Tien in Vietnam.
2443
     */
2444
    public const EPSG_HON_DAU_1992 = 'urn:ogc:def:datum:EPSG::5126';
2445
2446
    /**
2447
     * Hong Kong 1963
2448
     * Type: Geodetic
2449
     * Extent: China - Hong Kong - onshore and offshore.
2450
     * Fundamental point: Trig "Zero", 38.4 feet south along the transit circle of the Kowloon Observatory. Latitude
2451
     * 22°18'12.82"N, longitude 114°10'18.75"E (of Greenwich).
2452
     * Replaced by Hong Kong 1963(67) for military purposes only in 1967.  Replaced by Hong Kong 1980.
2453
     */
2454
    public const EPSG_HONG_KONG_1963 = 'urn:ogc:def:datum:EPSG::6738';
2455
2456
    /**
2457
     * Hong Kong 1963(67)
2458
     * Type: Geodetic
2459
     * Extent: China - Hong Kong - onshore and offshore.
2460
     * Fundamental point: Trig "Zero", 38.4 feet south along the transit circle of the Kowloon Observatory. Latitude
2461
     * 22°18'12.82"N, longitude 114°10'18.75"E (of Greenwich).
2462
     * Replaces Hong Kong 1963 for military purposes only in 1967.  Replaced by Hong Kong 1980.
2463
     */
2464
    public const EPSG_HONG_KONG_1963_67 = 'urn:ogc:def:datum:EPSG::6739';
2465
2466
    /**
2467
     * Hong Kong 1980
2468
     * Type: Geodetic
2469
     * Extent: China - Hong Kong - onshore and offshore.
2470
     * Fundamental point: Trig "Zero", 38.4 feet south along the transit circle of the Kowloon Observatory. Latitude
2471
     * 22°18'12.82"N, longitude 114°10'18.75"E (of Greenwich).
2472
     * Replaces Hong Kong 1963 and Hong Kong 1963(67).
2473
     */
2474
    public const EPSG_HONG_KONG_1980 = 'urn:ogc:def:datum:EPSG::6611';
2475
2476
    /**
2477
     * Hong Kong Chart Datum
2478
     * Type: Vertical
2479
     * Extent: China - Hong Kong - offshore.
2480
     * Approximates to Lowest Astronomic Tide level (LAT).
2481
     * Chart datum is 0.15 metres below Hong Kong Principal Datum (code 5135) and 1.38m below MSL at Quarry Bay.
2482
     */
2483
    public const EPSG_HONG_KONG_CHART_DATUM = 'urn:ogc:def:datum:EPSG::5136';
2484
2485
    /**
2486
     * Hong Kong Geodetic
2487
     * Type: Geodetic
2488
     * Extent: China - Hong Kong - onshore and offshore.
2489
     * ITRF96 at epoch 1998.121
2490
     * Locally sometimes referred to as ITRF96 or WGS 84, these are not strictly correct as it applies only at epoch
2491
     * 1998.121 and ignores subsequent tectonic plate motion.
2492
     */
2493
    public const EPSG_HONG_KONG_GEODETIC = 'urn:ogc:def:datum:EPSG::1209';
2494
2495
    /**
2496
     * Hong Kong Principal Datum
2497
     * Type: Vertical
2498
     * Extent: China - Hong Kong - onshore.
2499
     * 1.23m below the mean of 19 years (1965-83) observations of tide levels at North Point, Victoria Harbour.
2500
     */
2501
    public const EPSG_HONG_KONG_PRINCIPAL_DATUM = 'urn:ogc:def:datum:EPSG::5135';
2502
2503
    /**
2504
     * Horta
2505
     * Type: Vertical
2506
     * Extent: Portugal - central Azores - Faial island onshore.
2507
     * Mean Sea Level during 1935 at Horta.
2508
     * Orthometric heights.
2509
     */
2510
    public const EPSG_HORTA = 'urn:ogc:def:datum:EPSG::1104';
2511
2512
    /**
2513
     * Hu Tzu Shan 1950
2514
     * Type: Geodetic
2515
     * Extent: Taiwan, Republic of China - onshore - Taiwan Island, Penghu (Pescadores) Islands.
2516
     * Fundamental point: Hu Tzu Shan. Latitude: 23°58'32.34"N, longitude: 120°58'25.975"E (of Greenwich).
2517
     */
2518
    public const EPSG_HU_TZU_SHAN_1950 = 'urn:ogc:def:datum:EPSG::6236';
2519
2520
    /**
2521
     * Huahine SAU 2001
2522
     * Type: Vertical
2523
     * Extent: French Polynesia - Society Islands - Huahine.
2524
     * Fundamental benchmark: SHOM B3
2525
     * Included as part of NGPF - see datum code 5195.
2526
     */
2527
    public const EPSG_HUAHINE_SAU_2001 = 'urn:ogc:def:datum:EPSG::5200';
2528
2529
    /**
2530
     * Hungarian Datum 1909
2531
     * Type: Geodetic
2532
     * Extent: Hungary.
2533
     * Fundamental point not given in information source, but presumably Szolohegy which is origin of later HD72.
2534
     * Replaced earlier HD1863 adjustment also on Bessel ellipsoid. Both HD1863 and HD1909 were originally on Ferro
2535
     * Prime Meridian but subsequently converted to Greenwich. Replaced by HD72 (datum code 6237).
2536
     */
2537
    public const EPSG_HUNGARIAN_DATUM_1909 = 'urn:ogc:def:datum:EPSG::1024';
2538
2539
    /**
2540
     * Hungarian Datum 1972
2541
     * Type: Geodetic
2542
     * Extent: Hungary.
2543
     * Fundamental point: Szolohegy. Latitude: 47°17'32,6156"N, longitude 19°36'09.9865"E (of Greenwich); geoid
2544
     * height 6.56m.
2545
     * Replaced Hungarian Datum 1909 (EPSG datum code 1024).
2546
     */
2547
    public const EPSG_HUNGARIAN_DATUM_1972 = 'urn:ogc:def:datum:EPSG::6237';
2548
2549
    /**
2550
     * IG05 Intermediate Datum
2551
     * Type: Geodetic
2552
     * Extent: Israel - onshore; Palestine Territory - onshore.
2553
     * Defined by transformation from IGD05 at epoch 2004.75.
2554
     */
2555
    public const EPSG_IG05_INTERMEDIATE_DATUM = 'urn:ogc:def:datum:EPSG::1142';
2556
2557
    /**
2558
     * IG05/12 Intermediate Datum
2559
     * Type: Geodetic
2560
     * Extent: Israel - onshore; Palestine Territory - onshore.
2561
     * Defined by transformation from IGD05/12 at epoch 2012.00.
2562
     */
2563
    public const EPSG_IG05_12_INTERMEDIATE_DATUM = 'urn:ogc:def:datum:EPSG::1144';
2564
2565
    /**
2566
     * IGC 1962 Arc of the 6th Parallel South
2567
     * Type: Geodetic
2568
     * Extent: The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse.
2569
     * Coordinates of 3 stations determined with respect to Arc 1950: Mulungu 4°47'39.2325"S, 29°59'37.5864"E;
2570
     * Nyakawembe 4°14'57.3618"S, 29°42'52.8032"E; Kavula 4°35'15.8634"S, 29°41'14.2693"E (all longitude w.r.t.
2571
     * Greenwich).
2572
     */
2573
    public const EPSG_IGC_1962_ARC_OF_THE_6TH_PARALLEL_SOUTH = 'urn:ogc:def:datum:EPSG::6697';
2574
2575
    /**
2576
     * IGN 1962 Kerguelen
2577
     * Type: Geodetic
2578
     * Extent: French Southern Territories - Kerguelen onshore.
2579
     * K0 1949.
2580
     */
2581
    public const EPSG_IGN_1962_KERGUELEN = 'urn:ogc:def:datum:EPSG::6698';
2582
2583
    /**
2584
     * IGN 1966
2585
     * Type: Vertical
2586
     * Extent: French Polynesia - Society Islands - Tahiti.
2587
     * Fundamental benchmark: RN501
2588
     * Included as part of NGPF - see datum code 5195.
2589
     */
2590
    public const EPSG_IGN_1966 = 'urn:ogc:def:datum:EPSG::5196';
2591
2592
    /**
2593
     * IGN 1988 LS
2594
     * Type: Vertical
2595
     * Extent: Guadeloupe - onshore - Les Saintes.
2596
     * Mean sea level 1984 at Terre de Haut. Origin = marker O de -5 with defined height of 1.441m above msl. IGN 1988
2597
     * LS height 0.00m is 0.46m above 1987 sounding datum; this approximately corresponds with msl at Pointe-à-Pitre
2598
     * (see datum code 5155, CRS 5757).
2599
     * Orthometric heights.
2600
     */
2601
    public const EPSG_IGN_1988_LS = 'urn:ogc:def:datum:EPSG::5210';
2602
2603
    /**
2604
     * IGN 1988 MG
2605
     * Type: Vertical
2606
     * Extent: Guadeloupe - onshore - Marie-Galante.
2607
     * Mean sea level 1987 at Grand-Bourg. Origin = marker M0-I with defined height of 0.832m above msl. IGN 1988 MG
2608
     * height 0.00m is 0.46m above 1987 sounding datum; this approximately corresponds with msl at Pointe-à-Pitre (see
2609
     * datum code 5155, CRS code 5757).
2610
     * Orthometric heights.
2611
     */
2612
    public const EPSG_IGN_1988_MG = 'urn:ogc:def:datum:EPSG::5211';
2613
2614
    /**
2615
     * IGN 1988 SB
2616
     * Type: Vertical
2617
     * Extent: Guadeloupe - onshore - St Barthelemy island.
2618
     * Mean sea level 1988 at port of Gustavia. Origin = marker A.ef-2 with defined height of 0.621m above msl. IGN
2619
     * 1988 SB height 0.00m deduced to be 0.201m above mean sea level at Pointe-à-Pitre.
2620
     * Orthometric heights.
2621
     */
2622
    public const EPSG_IGN_1988_SB = 'urn:ogc:def:datum:EPSG::5213';
2623
2624
    /**
2625
     * IGN 1988 SM
2626
     * Type: Vertical
2627
     * Extent: Guadeloupe - onshore - St Martin island.
2628
     * Mean sea level 1949-1950 deduced at Fort Marigot. Origin = marker AS-13 with defined height of 6.990m above msl.
2629
     * IGN 1988 SM height 0.00m deduced to be 0.41m above sounding datum.
2630
     * Orthometric heights.
2631
     */
2632
    public const EPSG_IGN_1988_SM = 'urn:ogc:def:datum:EPSG::5214';
2633
2634
    /**
2635
     * IGN 1992 LD
2636
     * Type: Vertical
2637
     * Extent: Guadeloupe - onshore - La Desirade.
2638
     * Mean sea level at Pointe-à-Pitre. Origin = marker A with defined height of 0.792m above msl. IGN 1992 LD height
2639
     * 0.00m is 0.629m above sounding datum at Pointe-à-Pitre.
2640
     * Orthometric heights. Replaced by IGN 2008 LD (datum code 1250).
2641
     */
2642
    public const EPSG_IGN_1992_LD = 'urn:ogc:def:datum:EPSG::5212';
2643
2644
    /**
2645
     * IGN 2008 LD
2646
     * Type: Vertical
2647
     * Extent: Guadeloupe - onshore - La Desirade.
2648
     * Mean sea level at Pointe-à-Pitre. Origin = IGN Marker 20A with defined height of 0.50 m above msl of 1987.
2649
     * Orthometric heights. Replaces IGN 1992 LD (datum code 5212).
2650
     */
2651
    public const EPSG_IGN_2008_LD = 'urn:ogc:def:datum:EPSG::1250';
2652
2653
    /**
2654
     * IGN Astro 1960
2655
     * Type: Geodetic
2656
     * Extent: Mauritania - onshore.
2657
     * Realised through a set of independent astronomically-positioned points.
2658
     * Observed during 1959-1960. Independent points not connected through a network. Relative accuracy estimated at
2659
     * 50-100m. Replaced by Mauritania 1999 (datum code 6702).
2660
     */
2661
    public const EPSG_IGN_ASTRO_1960 = 'urn:ogc:def:datum:EPSG::6700';
2662
2663
    /**
2664
     * IGN53 Mare
2665
     * Type: Geodetic
2666
     * Extent: New Caledonia - Loyalty Islands - Mare.
2667
     * South-east end of the La Roche base.
2668
     */
2669
    public const EPSG_IGN53_MARE = 'urn:ogc:def:datum:EPSG::6641';
2670
2671
    /**
2672
     * IGN56 Lifou
2673
     * Type: Geodetic
2674
     * Extent: New Caledonia - Loyalty Islands - Lifou.
2675
     * South end of the Goume base.
2676
     */
2677
    public const EPSG_IGN56_LIFOU = 'urn:ogc:def:datum:EPSG::6633';
2678
2679
    /**
2680
     * IGN63 Hiva Oa
2681
     * Type: Geodetic
2682
     * Extent: French Polynesia - Marquesas Islands - Hiva Oa and Tahuata.
2683
     * Fundamental point: Atuona. Latitude: 9°48'27.20"S, longitude: 139°02'15.45"W (of Greenwich).
2684
     * Replaced by RGPF (datum code 6687).
2685
     */
2686
    public const EPSG_IGN63_HIVA_OA = 'urn:ogc:def:datum:EPSG::6689';
2687
2688
    /**
2689
     * IGN72 Grande Terre
2690
     * Type: Geodetic
2691
     * Extent: New Caledonia - Grande Terre.
2692
     * North end of Gomen base.
2693
     */
2694
    public const EPSG_IGN72_GRANDE_TERRE = 'urn:ogc:def:datum:EPSG::6634';
2695
2696
    /**
2697
     * IGN72 Nuku Hiva
2698
     * Type: Geodetic
2699
     * Extent: French Polynesia - Marquesas Islands - Nuku Hiva, Ua Huka and Ua Pou.
2700
     * Fundamental point: Taiohae. Latitude: 8°55'03.97"S, longitude: 140°05'36.24"W (of Greenwich).
2701
     * Replaced by RGPF (datum code 6687).
2702
     */
2703
    public const EPSG_IGN72_NUKU_HIVA = 'urn:ogc:def:datum:EPSG::6630';
2704
2705
    /**
2706
     * IGS00
2707
     * Type: Dynamic geodetic
2708
     * Extent: World.
2709
     * Derived from ITRF2000 at epoch 1998.00 through a subset of 54 stable IGS station coordinates. Preserves the ITRF
2710
     * origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques.
2711
     * Used for IGS products from GPS week 1143 through GPS week 1252 (2001-12-02 through 2004-01-10). Replaces IGS97,
2712
     * replaced by IGb00. For all practical purposes coincident with ITRF2000.
2713
     */
2714
    public const EPSG_IGS00 = 'urn:ogc:def:datum:EPSG::1245';
2715
2716
    /**
2717
     * IGS05
2718
     * Type: Dynamic geodetic
2719
     * Extent: World.
2720
     * Derived from ITRF2005 at epoch 2000.00 through a subset of 139 stable IGS station coordinates. Preserves the
2721
     * ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic
2722
     * techniques.
2723
     * Used for IGS products from GPS week 1400 through GPS week 1631 (2006-11-05 to 2011-04-16). Replaces IGb00,
2724
     * replaced by IGb08. For all practical purposes coincident with ITRF2005.
2725
     */
2726
    public const EPSG_IGS05 = 'urn:ogc:def:datum:EPSG::1247';
2727
2728
    /**
2729
     * IGS08
2730
     * Type: Dynamic geodetic
2731
     * Extent: World.
2732
     * Derived from ITRF2008 at epoch 2005.00 through a subset of 232 stable IGS station coordinates. Preserves the
2733
     * ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic
2734
     * techniques.
2735
     * Used for IGS products from GPS week 1632 through GPS week 1708 (2011-04-17 through 2012-10-06). Replaces IGS05.
2736
     * Replaced by IGb08. For all practical purposes coincident with ITRF2008.
2737
     */
2738
    public const EPSG_IGS08 = 'urn:ogc:def:datum:EPSG::1141';
2739
2740
    /**
2741
     * IGS14
2742
     * Type: Dynamic geodetic
2743
     * Extent: World.
2744
     * Derived from ITRF2014 at epoch 2010.00 through a subset of 252 stable IGS station coordinates. Preserves the
2745
     * ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic
2746
     * techniques.
2747
     * Used for IGS products from GPS week 1934 (2017-01-29) through GPS week 2105 (2020-05-16). Replaces IGb08,
2748
     * replaced by IGb14. For all practical purposes coincident with ITRF2014.
2749
     */
2750
    public const EPSG_IGS14 = 'urn:ogc:def:datum:EPSG::1191';
2751
2752
    /**
2753
     * IGS97
2754
     * Type: Dynamic geodetic
2755
     * Extent: World.
2756
     * Derived from ITRF97 at epoch 1997.00 through a subset of stable IGS station coordinates. Preserves the ITRF
2757
     * origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques.
2758
     * Used for IGS products from GPS week 1065 through GPS week 1142 (2000-06-04 to 2001-12-01). Replaced by IGS00.
2759
     * For all practical purposes coincident with ITRF97.
2760
     */
2761
    public const EPSG_IGS97 = 'urn:ogc:def:datum:EPSG::1244';
2762
2763
    /**
2764
     * IGb00
2765
     * Type: Dynamic geodetic
2766
     * Extent: World.
2767
     * Derived from ITRF2000 at epoch 1998.00 through a subset of 99 stable IGS station coordinates. Preserves the ITRF
2768
     * origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques.
2769
     * Used for IGS products from GPS week 1253 through GPS week 1399 (2004-01-11 to 2006-11-04). Replaces IGS00,
2770
     * replaced by IGS05. For all practical purposes coincident with ITRF2000.
2771
     */
2772
    public const EPSG_IGB00 = 'urn:ogc:def:datum:EPSG::1246';
2773
2774
    /**
2775
     * IGb08
2776
     * Type: Dynamic geodetic
2777
     * Extent: World.
2778
     * Derived from ITRF2008 at epoch 2005.00 through a subset of 232 stable IGS station coordinates. Preserves the
2779
     * ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic
2780
     * techniques.
2781
     * Used for IGS products from GPS week 1709 through GPS week 1933 (2012-10-07 to 2017-01-28). Replaces IGS08,
2782
     * replaced by IGS14. For all practical purposes coincident with ITRF2008.
2783
     */
2784
    public const EPSG_IGB08 = 'urn:ogc:def:datum:EPSG::1248';
2785
2786
    /**
2787
     * IGb14
2788
     * Type: Dynamic geodetic
2789
     * Extent: World.
2790
     * Daily IGS combined operational solutions of GPS weeks 730 to 2092. IGb14 is aligned in origin, scale and
2791
     * orientation to IGS14 via a subset of 233 selected stations. As IGS14 is aligned to ITRF2014, IGb14 is also
2792
     * aligned to ITRF2014.
2793
     * Used for IGS products from GPS week 2106 (2020-05-17). Replaces IGS14. Compared to IGS14, IGb14 benefits from 5
2794
     * more years of input data, a revised discontinuity list and 9 additional stations. For all practical purposes
2795
     * coincident with ITRF2014.
2796
     */
2797
    public const EPSG_IGB14 = 'urn:ogc:def:datum:EPSG::1272';
2798
2799
    /**
2800
     * IRENET95
2801
     * Type: Geodetic
2802
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
2803
     * ETRS89 stations in Ireland
2804
     * Densification of ETRS89.
2805
     */
2806
    public const EPSG_IRENET95 = 'urn:ogc:def:datum:EPSG::6173';
2807
2808
    /**
2809
     * Ibiza
2810
     * Type: Vertical
2811
     * Extent: Spain - Balearic Islands - Ibiza and Formentera - onshore.
2812
     * Mean Sea Level at Ibiza harbour between January 2003 and December 2005.
2813
     * Orthometric heights.
2814
     */
2815
    public const EPSG_IBIZA = 'urn:ogc:def:datum:EPSG::1277';
2816
2817
    /**
2818
     * Incheon
2819
     * Type: Vertical
2820
     * Extent: Republic of Korea (South Korea) - mainland onshore.
2821
     * MSL 1913-1916 at Incheon Bay.
2822
     */
2823
    public const EPSG_INCHEON = 'urn:ogc:def:datum:EPSG::1049';
2824
2825
    /**
2826
     * Indian 1954
2827
     * Type: Geodetic
2828
     * Extent: Myanmar (Burma) - onshore; Thailand - onshore.
2829
     * Extension of Kalianpur 1937 over Myanmar and Thailand.
2830
     */
2831
    public const EPSG_INDIAN_1954 = 'urn:ogc:def:datum:EPSG::6239';
2832
2833
    /**
2834
     * Indian 1960
2835
     * Type: Geodetic
2836
     * Extent: Cambodia - onshore; Vietnam - onshore and offshore Cuu Long basin.
2837
     * DMA extension over IndoChina of the Indian 1954 network adjusted  to better fit local geoid.
2838
     * Also known as Indian (DMA Reduced).
2839
     */
2840
    public const EPSG_INDIAN_1960 = 'urn:ogc:def:datum:EPSG::6131';
2841
2842
    /**
2843
     * Indian 1975
2844
     * Type: Geodetic
2845
     * Extent: Thailand - onshore plus offshore Gulf of Thailand.
2846
     * Fundamental point: Khau Sakaerang.
2847
     */
2848
    public const EPSG_INDIAN_1975 = 'urn:ogc:def:datum:EPSG::6240';
2849
2850
    /**
2851
     * Indian Spring Low Water
2852
     * Type: Vertical
2853
     * Extent: World.
2854
     * The level below MSL equal to the sum of the amplitudes of the harmonic constituents M2, S2, K1 and O1. It
2855
     * approximates mean lower low water spring tides (MLLWS).
2856
     * Users are advised to not use this generic vertical datum but to define explicit realizations of ISLW by
2857
     * specifying location and epoch, for instance "ISLW at xxx during yyyy-yyyy".
2858
     */
2859
    public const EPSG_INDIAN_SPRING_LOW_WATER = 'urn:ogc:def:datum:EPSG::1085';
2860
2861
    /**
2862
     * Indonesian Datum 1974
2863
     * Type: Geodetic
2864
     * Extent: Indonesia - onshore.
2865
     * Fundamental point: Padang. Latitude: 0°56'38.414"S, longitude: 100°22' 8.804"E (of Greenwich). Ellipsoidal
2866
     * height 3.190m, gravity-related height 14.0m above mean sea level.
2867
     * Replaced by DGN95.
2868
     */
2869
    public const EPSG_INDONESIAN_DATUM_1974 = 'urn:ogc:def:datum:EPSG::6238';
2870
2871
    /**
2872
     * Indonesian Geoid 2020 version 1
2873
     * Type: Vertical
2874
     * Extent: Indonesia - onshore and offshore.
2875
     * Defined by INAGeoid2020 gravimetric geoid model v1 applied to SRGI2013.
2876
     * Uses gravity data observed to 2019 fitted to control points on Java and Bali.
2877
     */
2878
    public const EPSG_INDONESIAN_GEOID_2020_VERSION_1 = 'urn:ogc:def:datum:EPSG::1294';
2879
2880
    /**
2881
     * Indonesian Geoid 2020 version 2
2882
     * Type: Vertical
2883
     * Extent: Indonesia - onshore and offshore.
2884
     * Defined by INAGeoid2020 gravimetric geoid model v2 applied to SRGI2013.
2885
     * Uses gravity data observed to 2021 fitted to tide gauge benchmarks across Indonesia.
2886
     */
2887
    public const EPSG_INDONESIAN_GEOID_2020_VERSION_2 = 'urn:ogc:def:datum:EPSG::1328';
2888
2889
    /**
2890
     * Instantaneous Water Level
2891
     * Type: Vertical
2892
     * Extent: World.
2893
     * Instantaneous water level uncorrected for tide.
2894
     * Not specific to any location or epoch.
2895
     */
2896
    public const EPSG_INSTANTANEOUS_WATER_LEVEL = 'urn:ogc:def:datum:EPSG::5113';
2897
2898
    /**
2899
     * Institut Geographique du Congo Belge 1955
2900
     * Type: Geodetic
2901
     * Extent: The Democratic Republic of the Congo (Zaire) - Lower Congo (Bas Congo)
2902
     * Fundamental point: Yella east base. Latitude: 6°00'53.139"S, longitude: 12°58'29.287"E (of Greenwich).
2903
     * Replaced by IGC 1962 Arc of the 6th Parallel South, except for oil industry activities.
2904
     */
2905
    public const EPSG_INSTITUT_GEOGRAPHIQUE_DU_CONGO_BELGE_1955 = 'urn:ogc:def:datum:EPSG::6701';
2906
2907
    /**
2908
     * International Great Lakes Datum 1955
2909
     * Type: Vertical
2910
     * Extent: Canada and United States (USA) - Great Lakes basin and St Lawrence Seaway.
2911
     * Mean water level 1941-1956 at Pointe-au-Père (Father's Point), Quebec. Benchmark 1248-G = 3.794m.
2912
     * Dynamic heights. Adopted in 1962. Replaced by IGLD 1985 in January 1992.
2913
     */
2914
    public const EPSG_INTERNATIONAL_GREAT_LAKES_DATUM_1955 = 'urn:ogc:def:datum:EPSG::5204';
2915
2916
    /**
2917
     * International Great Lakes Datum 1985
2918
     * Type: Vertical
2919
     * Extent: Canada and United States (USA) - Great Lakes basin and St Lawrence Seaway.
2920
     * Mean water level 1970-1983 at Pointe-au-Père (Father's Point) and 1984-1988 at Rimouski, Quebec. Benchmark
2921
     * 1250-G = 6.273m.
2922
     * Dynamic heights. Replaces IGLD 1955 from January 1992.
2923
     */
2924
    public const EPSG_INTERNATIONAL_GREAT_LAKES_DATUM_1985 = 'urn:ogc:def:datum:EPSG::5205';
2925
2926
    /**
2927
     * International Terrestrial Reference Frame 1988
2928
     * Type: Dynamic geodetic
2929
     * Extent: World.
2930
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
2931
     * 3-dimensional Cartesian station coordinates (SCS).
2932
     * Realization of the IERS Terrestrial Reference System (ITRS) at epoch 1988.0. Replaced by ITRF89 (code 6648).
2933
     */
2934
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1988 = 'urn:ogc:def:datum:EPSG::6647';
2935
2936
    /**
2937
     * International Terrestrial Reference Frame 1989
2938
     * Type: Dynamic geodetic
2939
     * Extent: World.
2940
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
2941
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0.
2942
     * Realization of the IERS Terrestrial Reference System (ITRS) from April 1991. Replaces ITRF88 (code 6647).
2943
     * Replaced by ITRF90 (code 6649).
2944
     */
2945
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1989 = 'urn:ogc:def:datum:EPSG::6648';
2946
2947
    /**
2948
     * International Terrestrial Reference Frame 1990
2949
     * Type: Dynamic geodetic
2950
     * Extent: World.
2951
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
2952
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0.
2953
     * Realization of the IERS Terrestrial Reference System (ITRS) from December 1991. Replaces ITRF89 (code 6648).
2954
     * Replaced by ITRF91 (code 6650).
2955
     */
2956
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1990 = 'urn:ogc:def:datum:EPSG::6649';
2957
2958
    /**
2959
     * International Terrestrial Reference Frame 1991
2960
     * Type: Dynamic geodetic
2961
     * Extent: World.
2962
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
2963
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0.
2964
     * Realization of the IERS Terrestrial Reference System (ITRS) from October 1992. Replaces ITRF90 (code 6649).
2965
     * Replaced by ITRF92 (code 6651).
2966
     */
2967
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1991 = 'urn:ogc:def:datum:EPSG::6650';
2968
2969
    /**
2970
     * International Terrestrial Reference Frame 1992
2971
     * Type: Dynamic geodetic
2972
     * Extent: World.
2973
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of 287
2974
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0.
2975
     * Realization of the IERS Terrestrial Reference System (ITRS) from October 1993. Replaces ITRF91 (code 6650).
2976
     * Replaced by ITRF93 (code 6652).
2977
     */
2978
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1992 = 'urn:ogc:def:datum:EPSG::6651';
2979
2980
    /**
2981
     * International Terrestrial Reference Frame 1993
2982
     * Type: Dynamic geodetic
2983
     * Extent: World.
2984
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
2985
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1993.0.
2986
     * Realization of the IERS Terrestrial Reference System (ITRS) from October 1994. Replaces ITRF92 (code 6651).
2987
     * Replaced by ITRF94 (code 6653).
2988
     */
2989
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1993 = 'urn:ogc:def:datum:EPSG::6652';
2990
2991
    /**
2992
     * International Terrestrial Reference Frame 1994
2993
     * Type: Dynamic geodetic
2994
     * Extent: World.
2995
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
2996
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1993.0.
2997
     * Realization of the IERS Terrestrial Reference System (ITRS) from March 1996. Replaces ITRF93 (code 6652).
2998
     * Replaced by ITRF96 (code 6654).
2999
     */
3000
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1994 = 'urn:ogc:def:datum:EPSG::6653';
3001
3002
    /**
3003
     * International Terrestrial Reference Frame 1996
3004
     * Type: Dynamic geodetic
3005
     * Extent: World.
3006
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
3007
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1997.0.
3008
     * Realization of the IERS Terrestrial Reference System (ITRS) from May 1998. Replaces ITRF94 (code 6653). Replaced
3009
     * by ITRF97 (code 6655).
3010
     */
3011
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1996 = 'urn:ogc:def:datum:EPSG::6654';
3012
3013
    /**
3014
     * International Terrestrial Reference Frame 1997
3015
     * Type: Dynamic geodetic
3016
     * Extent: World.
3017
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
3018
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1997.0.
3019
     * Realization of the IERS Terrestrial Reference System (ITRS) from May 1999. Replaces ITRF96 (code 6654). Replaced
3020
     * by ITRF2000 (code 6656).
3021
     */
3022
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1997 = 'urn:ogc:def:datum:EPSG::6655';
3023
3024
    /**
3025
     * International Terrestrial Reference Frame 2000
3026
     * Type: Dynamic geodetic
3027
     * Extent: World.
3028
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
3029
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1997.0.
3030
     * Realization of the IERS Terrestrial Reference System (ITRS) from 2004. Replaces ITRF97 (code 6655). Replaced by
3031
     * ITRF2005 (code 6896).
3032
     */
3033
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2000 = 'urn:ogc:def:datum:EPSG::6656';
3034
3035
    /**
3036
     * International Terrestrial Reference Frame 2005
3037
     * Type: Dynamic geodetic
3038
     * Extent: World.
3039
     * Origin at geocentre, originally orientated to the BIH Terrestrial System at epoch 1984.0 then adjusted to ensure
3040
     * zero net rotation to earth's overall tectonic motion. Defined by time series of Cartesian station coordinates
3041
     * for epoch 2000.0.
3042
     * Realization of the IERS Terrestrial Reference System (ITRS) from September 2007. Replaces ITRF2000 (code 6656).
3043
     * Replaced by ITRF2008 (datum code 1061).
3044
     */
3045
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2005 = 'urn:ogc:def:datum:EPSG::6896';
3046
3047
    /**
3048
     * International Terrestrial Reference Frame 2008
3049
     * Type: Dynamic geodetic
3050
     * Extent: World.
3051
     * Origin at geocentre. The ITRF2008 origin is defined in such a way that there are null translation parameters at
3052
     * epoch 2005.0 and null translation rates between the ITRF2008 and the ILRS SLR time series.
3053
     * Realization of the IERS Terrestrial Reference System (ITRS) from 2012. Replaces ITRF2005 (code 6896).
3054
     */
3055
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2008 = 'urn:ogc:def:datum:EPSG::1061';
3056
3057
    /**
3058
     * International Terrestrial Reference Frame 2014
3059
     * Type: Dynamic geodetic
3060
     * Extent: World.
3061
     * Origin at geocentre. Origin = ILRS SLR long-term solution at epoch 2010.0. Zero scale and scale rate between
3062
     * ITRF2014 and the average of VLBI and SLR scales/rates. Orientation = ITRF2008@ 2010.0 with zero rotation rates
3063
     * between the ITRF2014 and ITRF2008.
3064
     * Realization of the IERS Terrestrial Reference System (ITRS). Replaces ITRF2008 (datum code 1061) from January
3065
     * 2016. Replaced by ITRF2020 (datum code 1322) from April 2022.
3066
     */
3067
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2014 = 'urn:ogc:def:datum:EPSG::1165';
3068
3069
    /**
3070
     * International Terrestrial Reference Frame 2020
3071
     * Type: Dynamic geodetic
3072
     * Extent: World.
3073
     * Origin at geocentre. Origin = ILRS SLR long-term solution at epoch 2015.0. Zero scale and scale rate between
3074
     * ITRF2020 and the average of VLBI and SLR scales/rates. Orientation = ITRF2014@ 2015.0 with zero rotation rates
3075
     * between the ITRF2020 and ITRF2014.
3076
     * Realization of the IERS Terrestrial Reference System (ITRS). Replaces ITRF2014 (datum code 1165) from April
3077
     * 2022.
3078
     */
3079
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2020 = 'urn:ogc:def:datum:EPSG::1322';
3080
3081
    /**
3082
     * Iraq-Kuwait Boundary Datum 1992
3083
     * Type: Geodetic
3084
     * Extent: Iraq - Kuwait boundary.
3085
     * Four stations established between September and December 1991 determined by GPS and Doppler observations.
3086
     */
3087
    public const EPSG_IRAQ_KUWAIT_BOUNDARY_DATUM_1992 = 'urn:ogc:def:datum:EPSG::6667';
3088
3089
    /**
3090
     * Iraqi Geospatial Reference System
3091
     * Type: Geodetic
3092
     * Extent: Iraq - onshore and offshore.
3093
     * ITRF2000 at epoch 1997.0.
3094
     */
3095
    public const EPSG_IRAQI_GEOSPATIAL_REFERENCE_SYSTEM = 'urn:ogc:def:datum:EPSG::1029';
3096
3097
    /**
3098
     * Islands Net 1993
3099
     * Type: Geodetic
3100
     * Extent: Iceland - onshore and offshore.
3101
     * ITRF93 at epoch 1993.6.
3102
     * Replaced by ISN2004 (datum code 1060).
3103
     */
3104
    public const EPSG_ISLANDS_NET_1993 = 'urn:ogc:def:datum:EPSG::6659';
3105
3106
    /**
3107
     * Islands Net 2004
3108
     * Type: Geodetic
3109
     * Extent: Iceland - onshore and offshore.
3110
     * ITRF2000 at epoch 2004.6.
3111
     * Replaces ISN93 (datum code 6659). Replaced by ISN2016 (datum code 1087).
3112
     */
3113
    public const EPSG_ISLANDS_NET_2004 = 'urn:ogc:def:datum:EPSG::1060';
3114
3115
    /**
3116
     * Islands Net 2016
3117
     * Type: Geodetic
3118
     * Extent: Iceland - onshore and offshore.
3119
     * ITRF2014 at epoch 2016.5.
3120
     * Replaces ISN2004 from September 2017.
3121
     */
3122
    public const EPSG_ISLANDS_NET_2016 = 'urn:ogc:def:datum:EPSG::1187';
3123
3124
    /**
3125
     * Israel 1993
3126
     * Type: Geodetic
3127
     * Extent: Israel - onshore; Palestine Territory - onshore.
3128
     * Fundamental point:  Latitude: 31°44'03.817"N, longitude: 35°12'16.261"E (of Greenwich).
3129
     * Replaces Palestine 1923 (datum code 6281). Replaced by IGD05 (datum code 1143).
3130
     */
3131
    public const EPSG_ISRAEL_1993 = 'urn:ogc:def:datum:EPSG::6141';
3132
3133
    /**
3134
     * Israeli Geodetic Datum 2005
3135
     * Type: Geodetic
3136
     * Extent: Israel - onshore and offshore.
3137
     * Defined by coordinates of 13 Active Positioning Network (APN) stations in ITRF2000 at epoch 2004.75. A further
3138
     * five APN stations were added in 2006.
3139
     * Replaces Israel 1993 (datum code 6141). Replaced by IGD05/12 (datum code 1115).
3140
     */
3141
    public const EPSG_ISRAELI_GEODETIC_DATUM_2005 = 'urn:ogc:def:datum:EPSG::1114';
3142
3143
    /**
3144
     * Israeli Geodetic Datum 2005(2012)
3145
     * Type: Geodetic
3146
     * Extent: Israel - onshore and offshore.
3147
     * Datum updated in 2012 with four APN stations removed from definition. Coordinate epoch remains ITRF2000 at epoch
3148
     * 2004.75.
3149
     * Replaces IGD05 (datum code 1114).
3150
     */
3151
    public const EPSG_ISRAELI_GEODETIC_DATUM_2005_2012 = 'urn:ogc:def:datum:EPSG::1115';
3152
3153
    /**
3154
     * Istituto Geografico Militaire 1995
3155
     * Type: Geodetic
3156
     * Extent: Italy - onshore and offshore; San Marino, Vatican City State.
3157
     * Densification of ETRF89 in Italy. Network of 1296 points observed 1992-1995 adjusted in 1996 constrained to 9
3158
     * ETRF89 points at epoch 1989.0. By April 2021 the framework was composed of 3104 points of the fundamental
3159
     * network and 3819 densification points.
3160
     * Replaced by RDN2008 (datum code 1132) from 2011-11-10.
3161
     */
3162
    public const EPSG_ISTITUTO_GEOGRAFICO_MILITAIRE_1995 = 'urn:ogc:def:datum:EPSG::6670';
3163
3164
    /**
3165
     * Iwo Jima 1945
3166
     * Type: Geodetic
3167
     * Extent: Japan - Iwo Jima island.
3168
     * Fundamental point: Beacon "E".
3169
     */
3170
    public const EPSG_IWO_JIMA_1945 = 'urn:ogc:def:datum:EPSG::6709';
3171
3172
    /**
3173
     * Jamaica 1875
3174
     * Type: Geodetic
3175
     * Extent: Jamaica - onshore.
3176
     * Fundamental point: Fort Charles Flagstaff. Latitude: 17°55'55.800"N, longitude: 76°56'37.260"W (of Greenwich).
3177
     */
3178
    public const EPSG_JAMAICA_1875 = 'urn:ogc:def:datum:EPSG::6241';
3179
3180
    /**
3181
     * Jamaica 1969
3182
     * Type: Geodetic
3183
     * Extent: Jamaica - onshore.
3184
     * Fundamental point: Fort Charles Flagstaff. Latitude: 17°55'55.800"N, longitude: 76°56'37.260"W (of Greenwich).
3185
     */
3186
    public const EPSG_JAMAICA_1969 = 'urn:ogc:def:datum:EPSG::6242';
3187
3188
    /**
3189
     * Jamaica 2001
3190
     * Type: Geodetic
3191
     * Extent: Jamaica - onshore and offshore. Includes Morant Cays and Pedro Cays.
3192
     * Aligned to WGS 84.
3193
     */
3194
    public const EPSG_JAMAICA_2001 = 'urn:ogc:def:datum:EPSG::6758';
3195
3196
    /**
3197
     * Jamestown 1971
3198
     * Type: Vertical
3199
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
3200
     * MSL at Jamestown 1971 defined through elevation of triangulation station Astro DOS 71/4 Ladder Hill Fort being
3201
     * 267.858 metres above MSL.
3202
     */
3203
    public const EPSG_JAMESTOWN_1971 = 'urn:ogc:def:datum:EPSG::1175';
3204
3205
    /**
3206
     * Japanese Geodetic Datum 2000
3207
     * Type: Geodetic
3208
     * Extent: Japan - onshore and offshore.
3209
     * ITRF94 at epoch 1997.0. Fundamental point: Tokyo-Taisho, latitude: 35°39'29.1572"N, longitude:
3210
     * 139°44'28.8759"E (of Greenwich).
3211
     * Instigated under amendment to the Japanese Surveying Law with effect from April 2002. Replaces Tokyo datum (code
3212
     * 6301). Replaced by JGD2011 (datum code 1128) with effect from 21st October 2011.
3213
     */
3214
    public const EPSG_JAPANESE_GEODETIC_DATUM_2000 = 'urn:ogc:def:datum:EPSG::6612';
3215
3216
    /**
3217
     * Japanese Geodetic Datum 2000 (vertical)
3218
     * Type: Vertical
3219
     * Extent: Japan - onshore mainland - Hokkaido, Honshu, Shikoku, Kyushu.
3220
     * 24.4140 metres above mean sea level Tokyo Bay.
3221
     * Orthometric heights. Replaces JSLD69 and JSLD72 with effect from April 2002. Replaced by JGD2011 (vertical)
3222
     * (datum code 1131) with effect from 21st October 2011.
3223
     */
3224
    public const EPSG_JAPANESE_GEODETIC_DATUM_2000_VERTICAL = 'urn:ogc:def:datum:EPSG::1130';
3225
3226
    /**
3227
     * Japanese Geodetic Datum 2011
3228
     * Type: Geodetic
3229
     * Extent: Japan - onshore and offshore.
3230
     * ITRF94 at epoch 1997.0 except for northern Honshu area impacted by 2011 Tohoku earthquake which is ITRF2008 at
3231
     * epoch 2011.395. Fundamental point: Tokyo-Taisho, latitude: 35°39'29.1572"N, longitude: 139°44'28.8869"E (of
3232
     * Greenwich).
3233
     * Instigated under amendment to the Japanese Surveying Law with effect from 21st October 2011. Replaces JGD2000
3234
     * (datum code 6612).
3235
     */
3236
    public const EPSG_JAPANESE_GEODETIC_DATUM_2011 = 'urn:ogc:def:datum:EPSG::1128';
3237
3238
    /**
3239
     * Japanese Geodetic Datum 2011 (vertical)
3240
     * Type: Vertical
3241
     * Extent: Japan - onshore mainland - Hokkaido, Honshu, Shikoku, Kyushu.
3242
     * 24.3900 metres above mean sea level Tokyo Bay.
3243
     * Orthometric heights. Replaces JGD2000 (vertical) (datum code 1130) with effect from 21st October 2011.
3244
     */
3245
    public const EPSG_JAPANESE_GEODETIC_DATUM_2011_VERTICAL = 'urn:ogc:def:datum:EPSG::1131';
3246
3247
    /**
3248
     * Japanese Standard Levelling Datum 1969
3249
     * Type: Vertical
3250
     * Extent: Japan - onshore mainland - Honshu, Shikoku, Kyushu.
3251
     * 24.4140 metres above mean sea level Tokyo Bay.
3252
     * Normal-orthometric heights. Replaces JSLD49. Replaced by JGD2000 (vertical) (datum code 1130) from April 2002.
3253
     */
3254
    public const EPSG_JAPANESE_STANDARD_LEVELLING_DATUM_1969 = 'urn:ogc:def:datum:EPSG::5122';
3255
3256
    /**
3257
     * Japanese Standard Levelling Datum 1972
3258
     * Type: Vertical
3259
     * Extent: Japan - onshore mainland - Hokkaido.
3260
     * Mean sea level Oshoro 1963-72.
3261
     * Normal-orthometric heights. Replaced by JGD2000 (vertical) (datum code 1130) with effect from April 2002.
3262
     */
3263
    public const EPSG_JAPANESE_STANDARD_LEVELLING_DATUM_1972 = 'urn:ogc:def:datum:EPSG::1129';
3264
3265
    /**
3266
     * Johnston Island 1961
3267
     * Type: Geodetic
3268
     * Extent: United States Minor Outlying Islands - Johnston Island.
3269
     */
3270
    public const EPSG_JOHNSTON_ISLAND_1961 = 'urn:ogc:def:datum:EPSG::6725';
3271
3272
    /**
3273
     * Jouik 1961
3274
     * Type: Geodetic
3275
     * Extent: Mauritania - coastal area north of Cape Timiris.
3276
     * Replaced by Mauritania 1999 (datum code 6702).
3277
     */
3278
    public const EPSG_JOUIK_1961 = 'urn:ogc:def:datum:EPSG::6679';
3279
3280
    /**
3281
     * KOC Construction Datum
3282
     * Type: Vertical
3283
     * Extent: Kuwait - onshore.
3284
     * Approximately 1.52m below MSL. Created for the construction of the Mina al Ahmadi refinery.
3285
     */
3286
    public const EPSG_KOC_CONSTRUCTION_DATUM = 'urn:ogc:def:datum:EPSG::5188';
3287
3288
    /**
3289
     * KOC Well Datum
3290
     * Type: Vertical
3291
     * Extent: Kuwait - onshore.
3292
     * Approximately 3.22m above MSL.
3293
     */
3294
    public const EPSG_KOC_WELL_DATUM = 'urn:ogc:def:datum:EPSG::5187';
3295
3296
    /**
3297
     * Kalianpur 1880
3298
     * Type: Geodetic
3299
     * Extent: Bangladesh - onshore; India - mainland onshore; Myanmar (Burma) - onshore; Pakistan - onshore.
3300
     * Fundamental point: Kalianpur. Latitude: 24°07'11.260"N, longitude: 77°39'17.570"E (of Greenwich).
3301
     * Includes 1916 extension into Burma (Myanmar).  Replaced by 1937 adjustment.
3302
     */
3303
    public const EPSG_KALIANPUR_1880 = 'urn:ogc:def:datum:EPSG::6243';
3304
3305
    /**
3306
     * Kalianpur 1937
3307
     * Type: Geodetic
3308
     * Extent: Bangladesh - onshore; India - mainland onshore; Myanmar - onshore and Moattama area offshore; Pakistan -
3309
     * onshore.
3310
     * Fundamental point: Kalianpur. Latitude: 24° 07'11.260"N, longitude: 77°39'17.570"E (of Greenwich).
3311
     * Replaces 1880 adjustment except for topographic mapping.  Replaced in Bangladesh and Pakistan by 1962
3312
     * metrication conversion and in India by 1975 metrication conversion.
3313
     */
3314
    public const EPSG_KALIANPUR_1937 = 'urn:ogc:def:datum:EPSG::6144';
3315
3316
    /**
3317
     * Kalianpur 1962
3318
     * Type: Geodetic
3319
     * Extent: Pakistan - onshore and offshore.
3320
     * Fundamental point: Kalianpur. Latitude: 24° 07'11.260"N, longitude: 77°39'17.570"E (of Greenwich).
3321
     * 1937 adjustment rescaled by ratio metric conversions of Indian foot (1937) to Indian foot (1962).
3322
     */
3323
    public const EPSG_KALIANPUR_1962 = 'urn:ogc:def:datum:EPSG::6145';
3324
3325
    /**
3326
     * Kalianpur 1975
3327
     * Type: Geodetic
3328
     * Extent: India - mainland onshore.
3329
     * Fundamental point: Kalianpur. Latitude: 24° 07'11.260"N, longitude: 77°39'17.570"E (of Greenwich).
3330
     * 1937 adjustment rescaled by ratio metric conversions of Indian foot (1937) to Indian foot (1975).
3331
     */
3332
    public const EPSG_KALIANPUR_1975 = 'urn:ogc:def:datum:EPSG::6146';
3333
3334
    /**
3335
     * Kandawala
3336
     * Type: Geodetic
3337
     * Extent: Sri Lanka - onshore.
3338
     * Fundamental point: Kandawala. Latitude: 7°14'06.838"N, longitude: 79°52'36.670"E.
3339
     */
3340
    public const EPSG_KANDAWALA = 'urn:ogc:def:datum:EPSG::6244';
3341
3342
    /**
3343
     * Karbala 1979
3344
     * Type: Geodetic
3345
     * Extent: Iraq - onshore.
3346
     * Fundamental point: Karbala. Latitude: 32°34'14.4941"N, longitude: 44°00'49.6379"E.
3347
     * National geodetic network established by Polservice consortium.
3348
     */
3349
    public const EPSG_KARBALA_1979 = 'urn:ogc:def:datum:EPSG::6743';
3350
3351
    /**
3352
     * Kartastokoordinaattijarjestelma (1966)
3353
     * Type: Geodetic
3354
     * Extent: Finland - onshore.
3355
     * Adjustment with fundamental point SF31 based on ED50 transformed to best fit the older VVJ adjustment.
3356
     * Adopted in 1970.
3357
     */
3358
    public const EPSG_KARTASTOKOORDINAATTIJARJESTELMA_1966 = 'urn:ogc:def:datum:EPSG::6123';
3359
3360
    /**
3361
     * Kasai 1953
3362
     * Type: Geodetic
3363
     * Extent: The Democratic Republic of the Congo (Zaire) - Kasai - south of 5°S and east of 21°30'E.
3364
     * Two stations of the Katanga triangulation with ellipsoid change applied: Kabila, latitude 6°58'34.023"S,
3365
     * longitude 23°50'24.028"E (of Greenwich); and Gandajika NW base, latitude 6°45'01.057"S, longitude
3366
     * 23°57'03.038"E (of Greenwich).
3367
     * Replaced by IGC 1962 Arc of the 6th Parallel South.
3368
     */
3369
    public const EPSG_KASAI_1953 = 'urn:ogc:def:datum:EPSG::6696';
3370
3371
    /**
3372
     * Katanga 1955
3373
     * Type: Geodetic
3374
     * Extent: The Democratic Republic of the Congo (Zaire) - Katanga.
3375
     * Fundamental point: Tshinsenda A. Latitude: 12°30'31.568"S, longitude: 28°01'02.971"E (of Greenwich).
3376
     * Replaces earlier adjustments.
3377
     */
3378
    public const EPSG_KATANGA_1955 = 'urn:ogc:def:datum:EPSG::6695';
3379
3380
    /**
3381
     * Kertau (RSO)
3382
     * Type: Geodetic
3383
     * Extent: Malaysia - West Malaysia; Singapore.
3384
     * Adopts metric conversion of 0.914398 metres per yard exactly. This is a truncation of the Sears 1922 ratio.
3385
     */
3386
    public const EPSG_KERTAU_RSO = 'urn:ogc:def:datum:EPSG::6751';
3387
3388
    /**
3389
     * Kertau 1968
3390
     * Type: Geodetic
3391
     * Extent: Malaysia - West Malaysia onshore and offshore east coast; Singapore - onshore and offshore.
3392
     * Fundamental point: Kertau. Latitude: 3°27'50.710"N, longitude: 102°37'24.550"E (of Greenwich).
3393
     * Replaces MRT48 and earlier adjustments. Adopts metric conversion of 39.370113 inches per metre. Not used for
3394
     * 1969 metrication of RSO grid - see Kertau (RSO) (code 6751).
3395
     */
3396
    public const EPSG_KERTAU_1968 = 'urn:ogc:def:datum:EPSG::6245';
3397
3398
    /**
3399
     * Kingdom of Saudi Arabia Geodetic Reference Frame 2017
3400
     * Type: Geodetic
3401
     * Extent: Saudi Arabia - onshore and offshore.
3402
     * ITRF2014 at epoch 2017.00.
3403
     * Realized by 333 GNSS stations in Saudi Arabia aligned to ITRF2014 through core network of 46 stations adjusted
3404
     * to 15 IGS stations.
3405
     */
3406
    public const EPSG_KINGDOM_OF_SAUDI_ARABIA_GEODETIC_REFERENCE_FRAME_2017 = 'urn:ogc:def:datum:EPSG::1268';
3407
3408
    /**
3409
     * Kingdom of Saudi Arabia Vertical Reference Frame Jeddah 2014
3410
     * Type: Vertical
3411
     * Extent: Saudi Arabia - onshore.
3412
     * Jeddah tide gauge bench mark TGBM-B height of 1.7446m at 2014.75.
3413
     */
3414
    public const EPSG_KINGDOM_OF_SAUDI_ARABIA_VERTICAL_REFERENCE_FRAME_JEDDAH_2014 = 'urn:ogc:def:datum:EPSG::1269';
3415
3416
    /**
3417
     * Kiunga
3418
     * Type: Vertical
3419
     * Extent: Papua New Guinea - onshore south of 5°S and west of 144°E.
3420
     * PSM 9465 at Kiunga Airport. Propagated through bilinear interpolation of EGM2008 geoid model (transformation
3421
     * code 3858) reduced to PSM 9465 by offset of -3.0m.
3422
     */
3423
    public const EPSG_KIUNGA = 'urn:ogc:def:datum:EPSG::1151';
3424
3425
    /**
3426
     * Korean Datum 1985
3427
     * Type: Geodetic
3428
     * Extent: Republic of Korea (South Korea) - onshore.
3429
     * Fundamental point: Suwon. Latitude 37°16'31.9034"N, longitude 127°03'05.1451"E of Greenwich. This is
3430
     * consistent with the Tokyo 1918 datum latitude and longitude.
3431
     * Replaces Tokyo 1918 (datum code 6301). Replaced by Korea 2000 (datum code 6737).
3432
     */
3433
    public const EPSG_KOREAN_DATUM_1985 = 'urn:ogc:def:datum:EPSG::6162';
3434
3435
    /**
3436
     * Korean Datum 1995
3437
     * Type: Geodetic
3438
     * Extent: Republic of Korea (South Korea) - onshore.
3439
     */
3440
    public const EPSG_KOREAN_DATUM_1995 = 'urn:ogc:def:datum:EPSG::6166';
3441
3442
    /**
3443
     * Kosovo Reference System 2001
3444
     * Type: Geodetic
3445
     * Extent: Kosovo.
3446
     * Densification of ETRF97 in Kosovo at epoch 2001.25.
3447
     * First order network of 32 stations connected to 8 EUREF Permanant Network (EPN) stations observed march-April
3448
     * 2001. Densified in 2012.
3449
     */
3450
    public const EPSG_KOSOVO_REFERENCE_SYSTEM_2001 = 'urn:ogc:def:datum:EPSG::1251';
3451
3452
    /**
3453
     * Kousseri
3454
     * Type: Geodetic
3455
     * Extent: Cameroon - N'Djamena area.
3456
     * IGN astronomical station Dabanga; 11°55'05.9"N  14°38'40.8"E (of Greenwich).
3457
     */
3458
    public const EPSG_KOUSSERI = 'urn:ogc:def:datum:EPSG::6198';
3459
3460
    /**
3461
     * Kumul 34
3462
     * Type: Vertical
3463
     * Extent: Papua New Guinea - Papuan fold and thrust belt.
3464
     * Kumul Platform Station 34. Propagated through bilinear interpolation of EGM96 geoid model (transformation code
3465
     * 10084) reduced to Kumul 34 by offset of -0.87m.
3466
     */
3467
    public const EPSG_KUMUL_34 = 'urn:ogc:def:datum:EPSG::1150';
3468
3469
    /**
3470
     * Kusaie 1951
3471
     * Type: Geodetic
3472
     * Extent: Federated States of Micronesia - Kosrae (Kusaie).
3473
     */
3474
    public const EPSG_KUSAIE_1951 = 'urn:ogc:def:datum:EPSG::6735';
3475
3476
    /**
3477
     * Kuwait Oil Company
3478
     * Type: Geodetic
3479
     * Extent: Kuwait - onshore.
3480
     * Fundamental point: K28.  Latitude: 29°03'42.348"N, longitude: 48°08'42.558"E (of Greenwich).
3481
     */
3482
    public const EPSG_KUWAIT_OIL_COMPANY = 'urn:ogc:def:datum:EPSG::6246';
3483
3484
    /**
3485
     * Kuwait PWD
3486
     * Type: Vertical
3487
     * Extent: Kuwait - onshore.
3488
     * Mean Low Low Water (MLLW) at Kuwait City.
3489
     * Approximately 1.03m below MSL.
3490
     */
3491
    public const EPSG_KUWAIT_PWD = 'urn:ogc:def:datum:EPSG::5186';
3492
3493
    /**
3494
     * Kuwait Utility
3495
     * Type: Geodetic
3496
     * Extent: Kuwait - Kuwait City.
3497
     */
3498
    public const EPSG_KUWAIT_UTILITY = 'urn:ogc:def:datum:EPSG::6319';
3499
3500
    /**
3501
     * Kyrgyzstan Geodetic Datum 2006
3502
     * Type: Geodetic
3503
     * Extent: Kyrgyzstan.
3504
     * 6 stations of the Kyrgyzstan zero-order network tied to ITRF2005 at epoch 2006.70.
3505
     * The accuracy in the connection to ITRF2005 is estimated to be 5 mm in horizontal and 10-20 mm in height (95%
3506
     * confidence).
3507
     */
3508
    public const EPSG_KYRGYZSTAN_GEODETIC_DATUM_2006 = 'urn:ogc:def:datum:EPSG::1160';
3509
3510
    /**
3511
     * La Canoa
3512
     * Type: Geodetic
3513
     * Extent: Venezuela - onshore.
3514
     * Fundamental point: La Canoa. Latitude: 8°34'17.170"N, longitude: 63°51'34.880"W (of Greenwich).
3515
     * Origin and network incorporated within PSAD56 (datum code 6248).
3516
     */
3517
    public const EPSG_LA_CANOA = 'urn:ogc:def:datum:EPSG::6247';
3518
3519
    /**
3520
     * La Gomera
3521
     * Type: Vertical
3522
     * Extent: Spain - Canary Islands - La Gomera onshore.
3523
     * Mean Sea Level at San Sebastian de la Gomera harbour.
3524
     * Orthometric heights.
3525
     */
3526
    public const EPSG_LA_GOMERA = 'urn:ogc:def:datum:EPSG::1282';
3527
3528
    /**
3529
     * La Palma
3530
     * Type: Vertical
3531
     * Extent: Spain - Canary Islands - La Palma onshore.
3532
     * Mean Sea Level at Santa Cruz de la Palma harbour in 1997.
3533
     * Orthometric heights.
3534
     */
3535
    public const EPSG_LA_PALMA = 'urn:ogc:def:datum:EPSG::1283';
3536
3537
    /**
3538
     * Lagos 1955
3539
     * Type: Vertical
3540
     * Extent: Nigeria - onshore.
3541
     * Mean sea level at Lagos, 1912-1928.
3542
     */
3543
    public const EPSG_LAGOS_1955 = 'urn:ogc:def:datum:EPSG::5194';
3544
3545
    /**
3546
     * Lake
3547
     * Type: Geodetic
3548
     * Extent: Venezuela - Lake Maracaibo area, onshore and offshore in lake.
3549
     * Fundamental point: Maracaibo Cathedral. Latitude: 10°38'34.678"N, longitude: 71°36'20.224"W (of Greenwich).
3550
     */
3551
    public const EPSG_LAKE = 'urn:ogc:def:datum:EPSG::6249';
3552
3553
    /**
3554
     * Landeshohennetz 1995
3555
     * Type: Vertical
3556
     * Extent: Liechtenstein; Switzerland.
3557
     * Origin at Repere Pierre du Niton (RPN) defined as 373.6 metres above msl. This value derived from msl at
3558
     * Marseille in 1897 through the French Lallemand network.
3559
     * Orthometric heights. For scientific purposes only, replaces LN02.
3560
     */
3561
    public const EPSG_LANDESHOHENNETZ_1995 = 'urn:ogc:def:datum:EPSG::5128';
3562
3563
    /**
3564
     * Landesnivellement 1902
3565
     * Type: Vertical
3566
     * Extent: Liechtenstein; Switzerland.
3567
     * Origin at Repere Pierre du Niton (RPN) defined as 373.6 metres above msl. This value derived from msl at
3568
     * Marseille in 1897 through the French Lallemand network.
3569
     * Levelling observations not corrected for gravity field. For scientific purposes, replaced by LHHN95.
3570
     */
3571
    public const EPSG_LANDESNIVELLEMENT_1902 = 'urn:ogc:def:datum:EPSG::5127';
3572
3573
    /**
3574
     * Landshaedarkerfi Islands 2004
3575
     * Type: Vertical
3576
     * Extent: Iceland - onshore.
3577
     * Adjustment is referenced to mean sea level at Reykjavík epoch 2004.6.
3578
     */
3579
    public const EPSG_LANDSHAEDARKERFI_ISLANDS_2004 = 'urn:ogc:def:datum:EPSG::1190';
3580
3581
    /**
3582
     * Lanzarote
3583
     * Type: Vertical
3584
     * Extent: Spain - Canary Islands - Lanzarote onshore.
3585
     * Mean Sea Level at Naos harbour, Arrecife, between 1994 and 1995.
3586
     * Orthometric heights.
3587
     */
3588
    public const EPSG_LANZAROTE = 'urn:ogc:def:datum:EPSG::1278';
3589
3590
    /**
3591
     * Lao 1993
3592
     * Type: Geodetic
3593
     * Extent: Laos.
3594
     * Fundamental point: Lao 1982 coordinates of Pakxa pillar. Latitude: 18°23'57.0056"N, longitude:
3595
     * 103°38'41.8020"E (of Greenwich). Orientation parallel with WGS 84.
3596
     * Replaces Vientiane 1982. Replaced by Lao 1997.
3597
     */
3598
    public const EPSG_LAO_1993 = 'urn:ogc:def:datum:EPSG::6677';
3599
3600
    /**
3601
     * Lao National Datum 1997
3602
     * Type: Geodetic
3603
     * Extent: Laos.
3604
     * Fundamental point: Vientiane (Nongteng) Astro Pillar. Latitude: 18°01'31.3480"N, longitude: 102°30'57.1376"E
3605
     * (of Greenwich).
3606
     * Replaces Lao 1993.
3607
     */
3608
    public const EPSG_LAO_NATIONAL_DATUM_1997 = 'urn:ogc:def:datum:EPSG::6678';
3609
3610
    /**
3611
     * Latvia 1992
3612
     * Type: Geodetic
3613
     * Extent: Latvia - onshore and offshore.
3614
     * Constrained to 4 ETRS89 points in Latvia from the EUREF Baltic 1992 campaign.
3615
     * Densification of ETRS89 during the 1992 Baltic campaign.
3616
     */
3617
    public const EPSG_LATVIA_1992 = 'urn:ogc:def:datum:EPSG::6661';
3618
3619
    /**
3620
     * Latvian Height System 2000
3621
     * Type: Vertical
3622
     * Extent: Latvia - onshore.
3623
     * Latvian realisation of EVRF2007. Observed from 2000-2010 and reduced to epoch 2000.5 using empirical land uplift
3624
     * model of Latvia. EVRF2007 heights of 16 points around Latvia held fixed.
3625
     * Uses Normal heights.
3626
     */
3627
    public const EPSG_LATVIAN_HEIGHT_SYSTEM_2000 = 'urn:ogc:def:datum:EPSG::1162';
3628
3629
    /**
3630
     * Le Pouce 1934
3631
     * Type: Geodetic
3632
     * Extent: Mauritius - mainland onshore.
3633
     * Fundamental point: Le Pouce. Latitude: 20°11'42.25"S, longitude: 57°31'18.58"E (of Greenwich).
3634
     */
3635
    public const EPSG_LE_POUCE_1934 = 'urn:ogc:def:datum:EPSG::6699';
3636
3637
    /**
3638
     * Leigon
3639
     * Type: Geodetic
3640
     * Extent: Ghana - onshore and offshore.
3641
     * Fundamental point: GCS Station 121, Leigon. Latitude: 5°38'52.27"N, longitude: 0°11'46.08"W (of Greenwich).
3642
     * Replaced Accra datum (code 6168) from 1978.  Coordinates at Leigon fundamental point defined as Accra datum
3643
     * values for that point.
3644
     */
3645
    public const EPSG_LEIGON = 'urn:ogc:def:datum:EPSG::6250';
3646
3647
    /**
3648
     * Lerwick
3649
     * Type: Vertical
3650
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Shetland Islands onshore.
3651
     * Mean Sea Level at Lerwick 1979 correlated to pre-1900. Initially realised through levelling network adjustment,
3652
     * from 2002 redefined to be realised through OSGM geoid model.
3653
     * Orthometric heights.
3654
     */
3655
    public const EPSG_LERWICK = 'urn:ogc:def:datum:EPSG::5140';
3656
3657
    /**
3658
     * Liberia 1964
3659
     * Type: Geodetic
3660
     * Extent: Liberia - onshore.
3661
     * Fundamental point: Robertsfield. Latitude: 6°13'53.02"N, longitude: 10°21'35.44"W (of Greenwich).
3662
     */
3663
    public const EPSG_LIBERIA_1964 = 'urn:ogc:def:datum:EPSG::6251';
3664
3665
    /**
3666
     * Libyan Geodetic Datum 2006
3667
     * Type: Geodetic
3668
     * Extent: Libya - onshore and offshore.
3669
     * 5 stations tied to ITRF2000 through 8 days of continuous observations in May 2006.
3670
     * Replaces ELD79.
3671
     */
3672
    public const EPSG_LIBYAN_GEODETIC_DATUM_2006 = 'urn:ogc:def:datum:EPSG::6754';
3673
3674
    /**
3675
     * Lisbon 1890
3676
     * Type: Geodetic
3677
     * Extent: Portugal - mainland - onshore.
3678
     * Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42'43.631"N, longitude: 9°07'54.862"W of Greenwich.
3679
     * Replaced by Lisbon 1937 adjustment (which uses International 1924 ellipsoid).
3680
     */
3681
    public const EPSG_LISBON_1890 = 'urn:ogc:def:datum:EPSG::6666';
3682
3683
    /**
3684
     * Lisbon 1890 (Lisbon)
3685
     * Type: Geodetic
3686
     * Extent: Portugal - mainland - onshore.
3687
     * Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42'43.631"N, longitude: 0°E (of Lisbon).
3688
     * Replaced by Lisbon 1937 adjustment (which uses International 1924 ellipsoid).
3689
     */
3690
    public const EPSG_LISBON_1890_LISBON = 'urn:ogc:def:datum:EPSG::6904';
3691
3692
    /**
3693
     * Lisbon 1937
3694
     * Type: Geodetic
3695
     * Extent: Portugal - mainland - onshore.
3696
     * Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42'43.631"N, longitude: 9°07'54.862"W (of
3697
     * Greenwich).
3698
     * Replaces Lisbon 1890 adjustment (which used Bessel 1841 ellipsoid).
3699
     */
3700
    public const EPSG_LISBON_1937 = 'urn:ogc:def:datum:EPSG::6207';
3701
3702
    /**
3703
     * Lisbon 1937 (Lisbon)
3704
     * Type: Geodetic
3705
     * Extent: Portugal - mainland - onshore.
3706
     * Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42'43.631"N, longitude: 0°E (of Lisbon).
3707
     * Replaces Lisbon 1890 adjustment (which used Bessel 1841 ellipsoid).
3708
     */
3709
    public const EPSG_LISBON_1937_LISBON = 'urn:ogc:def:datum:EPSG::6803';
3710
3711
    /**
3712
     * Lithuania 1994 (ETRS89)
3713
     * Type: Geodetic
3714
     * Extent: Lithuania - onshore and offshore.
3715
     * Constrained to 4 ETRS89 points in Lithuania from the EUREF Baltic 1992 campaign.
3716
     * Densification of ETRS89 during the 1992 Baltic campaign.
3717
     */
3718
    public const EPSG_LITHUANIA_1994_ETRS89 = 'urn:ogc:def:datum:EPSG::6126';
3719
3720
    /**
3721
     * Lithuanian Height System 2007
3722
     * Type: Vertical
3723
     * Extent: Lithuania - onshore.
3724
     * Lithuanian realisation of EVRF2007. EVRF2007 heights of 10 points in Lithuania held fixed.
3725
     * Uses Normal heights.
3726
     */
3727
    public const EPSG_LITHUANIAN_HEIGHT_SYSTEM_2007 = 'urn:ogc:def:datum:EPSG::1299';
3728
3729
    /**
3730
     * Little Cayman Vertical Datum 1961
3731
     * Type: Vertical
3732
     * Extent: Cayman Islands - Little Cayman.
3733
     */
3734
    public const EPSG_LITTLE_CAYMAN_VERTICAL_DATUM_1961 = 'urn:ogc:def:datum:EPSG::1098';
3735
3736
    /**
3737
     * Local Tidal Datum at Pago Pago 2020
3738
     * Type: Vertical
3739
     * Extent: American Samoa - Tutuila island.
3740
     * MSL at Pago Pago 2011–2016.
3741
     * Normal-orthometric heights. Replaces ASVD02 (datum code 1125) in March 2020 after the ASVD02 benchmarks were
3742
     * destroyed by earthquake activity.
3743
     */
3744
    public const EPSG_LOCAL_TIDAL_DATUM_AT_PAGO_PAGO_2020 = 'urn:ogc:def:datum:EPSG::1302';
3745
3746
    /**
3747
     * Locodjo 1965
3748
     * Type: Geodetic
3749
     * Extent: Côte d'Ivoire (Ivory Coast) - onshore and offshore.
3750
     * Fundamental point: T5 Banco. Latitude: 5°18'50.5"N, longitude: 4°02'05.1"W (of Greenwich).
3751
     */
3752
    public const EPSG_LOCODJO_1965 = 'urn:ogc:def:datum:EPSG::6142';
3753
3754
    /**
3755
     * Loma Quintana
3756
     * Type: Geodetic
3757
     * Extent: Venezuela - onshore north of approximately 7°45'N.
3758
     * Fundamental point: Loma Quintana.
3759
     * Replaced by La Canoa (code 6247).
3760
     */
3761
    public const EPSG_LOMA_QUINTANA = 'urn:ogc:def:datum:EPSG::6288';
3762
3763
    /**
3764
     * Lome
3765
     * Type: Geodetic
3766
     * Extent: Togo - onshore and offshore.
3767
     */
3768
    public const EPSG_LOME = 'urn:ogc:def:datum:EPSG::6252';
3769
3770
    /**
3771
     * Low Water
3772
     * Type: Vertical
3773
     * Extent: World.
3774
     * The lowest level reached by the water surface in one tidal cycle. When used in inland (non-tidal) waters it is
3775
     * generally defined as a level which the daily mean water level would fall below less than 5% of the time.
3776
     * On a river it is a sloping surface. Users are advised to not use this generic vertical datum but to define
3777
     * explicit realizations of low water by specifying location and epoch, for instance "Low water at xxx during
3778
     * yyyy-yyyy".
3779
     */
3780
    public const EPSG_LOW_WATER = 'urn:ogc:def:datum:EPSG::1093';
3781
3782
    /**
3783
     * Lower Low Water Large Tide
3784
     * Type: Vertical
3785
     * Extent: World.
3786
     * The average of the lowest low waters, one from each of 19 years of observations.
3787
     * Users are advised to not use this generic vertical datum but to define explicit realizations of LLWLT by
3788
     * specifying location and epoch, for instance "LLWLT at xxx during yyyy-yyyy".
3789
     */
3790
    public const EPSG_LOWER_LOW_WATER_LARGE_TIDE = 'urn:ogc:def:datum:EPSG::1083';
3791
3792
    /**
3793
     * Lowest Astronomical Tide
3794
     * Type: Vertical
3795
     * Extent: World.
3796
     * The lowest tide level which can be predicted to occur under average meteorological conditions and under any
3797
     * combination of astronomical conditions.
3798
     * Users are advised to not use this generic vertical datum but to define explicit realizations of LAT by
3799
     * specifying location and epoch, for instance "LAT at xxx during yyyy-yyyy".
3800
     */
3801
    public const EPSG_LOWEST_ASTRONOMICAL_TIDE = 'urn:ogc:def:datum:EPSG::1080';
3802
3803
    /**
3804
     * Lowest Astronomical Tide Netherlands
3805
     * Type: Vertical
3806
     * Extent: Netherlands - offshore North Sea.
3807
     * Surface defined through the nllat hydroid model applied to ETRS89.
3808
     * The lowest tide level which can be predicted to occur under average meteorological conditions and under any
3809
     * combination of astronomical conditions.
3810
     */
3811
    public const EPSG_LOWEST_ASTRONOMICAL_TIDE_NETHERLANDS = 'urn:ogc:def:datum:EPSG::1290';
3812
3813
    /**
3814
     * Luxembourg Reference Frame
3815
     * Type: Geodetic
3816
     * Extent: Luxembourg.
3817
     * Fundamental point of 1930 triangulation: northern station of Habay-la-Neuve baseline in Belgium. Latitude:
3818
     * 49°43'24.408"N, longitude: 5°38'22.470"E (of Greenwich). Since 2006 LUREF has been realized by GNSS station
3819
     * positions and transformation from ETRF.
3820
     * The transformation from ETRF 2000 first defining LUREF in 2006 has been recomputed in 2014 and 2020.
3821
     */
3822
    public const EPSG_LUXEMBOURG_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::6181';
3823
3824
    /**
3825
     * Luzon 1911
3826
     * Type: Geodetic
3827
     * Extent: Philippines - onshore.
3828
     * Fundamental point: Balacan. Latitude: 13°33'41.000"N, longitude: 121°52'03.000"E (of Greenwich).
3829
     * Replaced by Philippine Reference system of 1992 (datum code 6683).
3830
     */
3831
    public const EPSG_LUZON_1911 = 'urn:ogc:def:datum:EPSG::6253';
3832
3833
    /**
3834
     * Lyon Turin Ferroviaire 2004
3835
     * Type: Geodetic
3836
     * Extent: France and Italy - on or related to the rail route from Lyon to Turin.
3837
     * Densification of ETRS89 realised through network of 40 stations adjusted to 7 EUREF reference stations in
3838
     * [email protected].
3839
     */
3840
    public const EPSG_LYON_TURIN_FERROVIAIRE_2004 = 'urn:ogc:def:datum:EPSG::1295';
3841
3842
    /**
3843
     * Lyttelton 1937
3844
     * Type: Vertical
3845
     * Extent: New Zealand - South Island - between approximately 41°20'S and 45°S - Lyttleton vertical CRS area.
3846
     * MSL at Lyttelton harbour over 9 years between 1918 and 1933.
3847
     */
3848
    public const EPSG_LYTTELTON_1937 = 'urn:ogc:def:datum:EPSG::5161';
3849
3850
    /**
3851
     * M'poraloko
3852
     * Type: Geodetic
3853
     * Extent: Gabon - onshore and offshore.
3854
     */
3855
    public const EPSG_MPORALOKO = 'urn:ogc:def:datum:EPSG::6266';
3856
3857
    /**
3858
     * MGI 1901
3859
     * Type: Geodetic
3860
     * Extent: Bosnia and Herzegovina; Croatia - onshore; Kosovo; Montenegro - onshore; North Macedonia; Serbia;
3861
     * Slovenia - onshore.
3862
     * Fundamental point: Hermannskogel. Latitude: 48°16'15.29"N, longitude: 16°17'55.04"E (of Greenwich).
3863
     * The longitude of the datum origin equates to the Albrecht 1902 value for the Ferro meridian of 17°39'46.02"
3864
     * west of Greenwich. Densified in 1948.
3865
     */
3866
    public const EPSG_MGI_1901 = 'urn:ogc:def:datum:EPSG::1031';
3867
3868
    /**
3869
     * MML07 Intermediate Reference Frame
3870
     * Type: Geodetic
3871
     * Extent: United Kingdom (UK) - on or related to the Midland Mainline rail route from Sheffield to London.
3872
     * Defined through the application of the MML07 NTv2 transformation (code 9369) to ETRS89 as realized through OSNet
3873
     * v2009 CORS.
3874
     * Created in 2020 to support intermediate CRS "MML07-IRF" in the emulation of the MML07 Snake map projection.
3875
     */
3876
    public const EPSG_MML07_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1271';
3877
3878
    /**
3879
     * MOLDOR11 Intermediate Reference Frame
3880
     * Type: Geodetic
3881
     * Extent: United Kingdom (UK) - on or related to the rail route from Manchester via Ordsall Lane and the Hope
3882
     * Valley to Dore Junction.
3883
     * Defined through the application of the MOLDOR11 NTv2 transformation (code 9878) to ETRS89 as realized through
3884
     * OSNet v2009 CORS.
3885
     * Created in 2021 to support intermediate CRS "MOLDOR11-IRF" in the emulation of the MOLDOR11 Snake map
3886
     * projection.
3887
     */
3888
    public const EPSG_MOLDOR11_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1315';
3889
3890
    /**
3891
     * MOLDREF99
3892
     * Type: Geodetic
3893
     * Extent: Moldova.
3894
     * Densification of ETRS89.
3895
     */
3896
    public const EPSG_MOLDREF99 = 'urn:ogc:def:datum:EPSG::1032';
3897
3898
    /**
3899
     * MOMRA Terrestrial Reference Frame 2000
3900
     * Type: Geodetic
3901
     * Extent: Saudi Arabia - onshore and offshore.
3902
     * ITRF2000 at epoch 2004.00.
3903
     * 13 CORS Fiducial Stations linked to 7 IGS stations by 10-day long GPS survey.
3904
     */
3905
    public const EPSG_MOMRA_TERRESTRIAL_REFERENCE_FRAME_2000 = 'urn:ogc:def:datum:EPSG::1218';
3906
3907
    /**
3908
     * MOMRA Vertical Geodetic Control
3909
     * Type: Vertical
3910
     * Extent: Saudi Arabia - onshore.
3911
     * Mean sea level Jeddah 1969.
3912
     */
3913
    public const EPSG_MOMRA_VERTICAL_GEODETIC_CONTROL = 'urn:ogc:def:datum:EPSG::1219';
3914
3915
    /**
3916
     * MOP78
3917
     * Type: Geodetic
3918
     * Extent: Wallis and Futuna - Wallis.
3919
     */
3920
    public const EPSG_MOP78 = 'urn:ogc:def:datum:EPSG::6639';
3921
3922
    /**
3923
     * MRH21 Intermediate Reference Frame
3924
     * Type: Geodetic
3925
     * Extent: United Kingdom (UK) - on or related to Midland Rail Hub, covering routes through Cardiff, Bristol,
3926
     * Gloucester, Derby, Birmingham, Leicester, and Lincoln.
3927
     * Defined through the application of the MRH21 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS.
3928
     * Created in 2021 to support intermediate CRS "MRH21-IRF" in the emulation of the MRH21 Snake map projection.
3929
     */
3930
    public const EPSG_MRH21_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1314';
3931
3932
    /**
3933
     * MWC18 Intermediate Reference Frame
3934
     * Type: Geodetic
3935
     * Extent: United Kingdom (UK) - on or related to the rail route from Manchester via Wigan and Liverpool to
3936
     * Chester.
3937
     * Defined through the application of the MWC18 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS.
3938
     * Created in 2022 to support intermediate CRS "MWC18" in the emulation of the MWC18 Snake map projection.
3939
     */
3940
    public const EPSG_MWC18_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1324';
3941
3942
    /**
3943
     * Macao 1920
3944
     * Type: Geodetic
3945
     * Extent: China - Macao - onshore and offshore.
3946
     * Fundamental point: Avenida Conselheiro Borja base A, later transferred to Monte da Barra, latitude
3947
     * 22°11'03.139"N, longitude 113°31'43.625"E (of Greenwich).
3948
     * Replaces Macao 1907. In 1955 an adjustment made in 1940 was assessed to have unresolvable conflicts and the 1920
3949
     * adjustment was reinstated.
3950
     */
3951
    public const EPSG_MACAO_1920 = 'urn:ogc:def:datum:EPSG::1207';
3952
3953
    /**
3954
     * Macao Geodetic Datum 2008
3955
     * Type: Geodetic
3956
     * Extent: China - Macao - onshore and offshore.
3957
     * ITRF2005 at epoch 2008.38.
3958
     * Locally sometimes referred to as ITRF2005, this is not strictly correct as it applies only at epoch 2008.38 and
3959
     * ignores subsequent tectonic plate motion.
3960
     */
3961
    public const EPSG_MACAO_GEODETIC_DATUM_2008 = 'urn:ogc:def:datum:EPSG::1208';
3962
3963
    /**
3964
     * Macao Height Datum
3965
     * Type: Vertical
3966
     * Extent: China - Macao - onshore and offshore.
3967
     * Mean sea level Ma Kau Seak 1925-1964.
3968
     */
3969
    public const EPSG_MACAO_HEIGHT_DATUM = 'urn:ogc:def:datum:EPSG::1210';
3970
3971
    /**
3972
     * Madrid 1870 (Madrid)
3973
     * Type: Geodetic
3974
     * Extent: Spain - mainland onshore.
3975
     * Fundamental point: Retiro observatory, Madrid.
3976
     * Replaced by ED50.
3977
     */
3978
    public const EPSG_MADRID_1870_MADRID = 'urn:ogc:def:datum:EPSG::6903';
3979
3980
    /**
3981
     * Madzansua
3982
     * Type: Geodetic
3983
     * Extent: Mozambique - west - Tete province.
3984
     * Fundamental point: Madzansua.
3985
     * Replaced by transformation to Tete datum (datum code 6127).
3986
     */
3987
    public const EPSG_MADZANSUA = 'urn:ogc:def:datum:EPSG::6128';
3988
3989
    /**
3990
     * Mahe 1971
3991
     * Type: Geodetic
3992
     * Extent: Seychelles - Mahe Island.
3993
     * Fundamental point: Station SITE. Latitude: 4°40'14.644"S, longitude: 55°28'44.488"E (of Greenwich).
3994
     * South East Island 1943 (datum code 1138) used for topographic mapping, cadastral and hydrographic survey.
3995
     */
3996
    public const EPSG_MAHE_1971 = 'urn:ogc:def:datum:EPSG::6256';
3997
3998
    /**
3999
     * Makassar
4000
     * Type: Geodetic
4001
     * Extent: Indonesia - south west Sulawesi.
4002
     * Fundamental point: station P1, Moncongloe. Latitude: 5°08'41.42"S, long 119°24'14.94"E (of Greenwich).
4003
     */
4004
    public const EPSG_MAKASSAR = 'urn:ogc:def:datum:EPSG::6257';
4005
4006
    /**
4007
     * Makassar (Jakarta)
4008
     * Type: Geodetic
4009
     * Extent: Indonesia - south west Sulawesi.
4010
     * Fundamental point: station P1, Moncongloe. Latitude 5°08'41.42"S, longitude 12°35'47.15"E (of Jakarta).
4011
     */
4012
    public const EPSG_MAKASSAR_JAKARTA = 'urn:ogc:def:datum:EPSG::6804';
4013
4014
    /**
4015
     * Malin Head
4016
     * Type: Vertical
4017
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
4018
     * Mean sea level between January 1960 and December 1969. Initially realised through levelling network adjustment,
4019
     * from 2002 redefined to be realised through OSGM geoid model.
4020
     * Orthometric heights.
4021
     */
4022
    public const EPSG_MALIN_HEAD = 'urn:ogc:def:datum:EPSG::5130';
4023
4024
    /**
4025
     * Mallorca
4026
     * Type: Vertical
4027
     * Extent: Spain - Balearic Islands - Mallorca onshore.
4028
     * Mean Sea Level at Palma de Mallorca harbour between April 1997 and December 2006.
4029
     * Orthometric heights.
4030
     */
4031
    public const EPSG_MALLORCA = 'urn:ogc:def:datum:EPSG::1275';
4032
4033
    /**
4034
     * Malongo 1987
4035
     * Type: Geodetic
4036
     * Extent: Angola (Cabinda) - offshore; The Democratic Republic of the Congo (Zaire) - offshore.
4037
     * Fundamental point: Station Y at Malongo base camp. Latitude: 5°23'30.810"S, longitude: 12°12'01.590"E (of
4038
     * Greenwich).
4039
     * Replaced Mhast (offshore) (code 6705) in 1987. Origin coordinates constrained to those of Mhast (offshore) but
4040
     * other station coordinates differ. References to "Mhast" since 1987 often should have stated "Malongo 1987".
4041
     */
4042
    public const EPSG_MALONGO_1987 = 'urn:ogc:def:datum:EPSG::6259';
4043
4044
    /**
4045
     * Manoca 1962
4046
     * Type: Geodetic
4047
     * Extent: Cameroon - coastal area.
4048
     * Reservoir centre at the  Manoca tower ("tube Suel"), 3°51'49.896"N, 9°36'49.347"E (of Greenwich).
4049
     * The intent of the Bukavu 1953 conference was to adopt the Clarke 1880 (RGS) ellipsoid (code 7012) but in
4050
     * practice this datum has used the IGN version.  Replaces Douala 1948 (code 6192).
4051
     */
4052
    public const EPSG_MANOCA_1962 = 'urn:ogc:def:datum:EPSG::6193';
4053
4054
    /**
4055
     * Maputo
4056
     * Type: Vertical
4057
     * Extent: Mozambique - onshore.
4058
     * Mean sea level at Maputo.
4059
     */
4060
    public const EPSG_MAPUTO = 'urn:ogc:def:datum:EPSG::5121';
4061
4062
    /**
4063
     * Marco Geocentrico Nacional de Referencia
4064
     * Type: Geodetic
4065
     * Extent: Colombia - onshore and offshore. Includes San Andres y Providencia, Malpelo Islands, Roncador Bank,
4066
     * Serrana Bank and Serranilla Bank.
4067
     * Densification of SIRGAS95 (ITRF94 at epoch 1995.4) in Colombia. Bogota observatory coordinates: Latitude:
4068
     * 4°35'46.3215"N, longitude: 74°04'39.0285"W (of Greenwich).
4069
     * Densification of SIRGAS 1995 within Colombia. Replaces Bogota 1975 (datum code 6218).
4070
     */
4071
    public const EPSG_MARCO_GEOCENTRICO_NACIONAL_DE_REFERENCIA = 'urn:ogc:def:datum:EPSG::6686';
4072
4073
    /**
4074
     * Marco Geodesico Nacional de Bolivia
4075
     * Type: Geodetic
4076
     * Extent: Bolivia.
4077
     * IGS05 (ITRF2005) at epoch 2010.2.  Densification of SIRGAS95 network in Bolivia, consisting of 125 passive
4078
     * geodetic stations and 8 continuous recording GPS stations.
4079
     * Densification of SIRGAS 1995 within Bolivia. Replaces PSAD56 (datum code 6248) in Bolivia.
4080
     */
4081
    public const EPSG_MARCO_GEODESICO_NACIONAL_DE_BOLIVIA = 'urn:ogc:def:datum:EPSG::1063';
4082
4083
    /**
4084
     * Marcus Island 1952
4085
     * Type: Geodetic
4086
     * Extent: Japan - onshore - Tokyo-to south of 28°N and east of 143°E - Minamitori-shima (Marcus Island).
4087
     * Marcus Island Astronomic Station.
4088
     */
4089
    public const EPSG_MARCUS_ISLAND_1952 = 'urn:ogc:def:datum:EPSG::6711';
4090
4091
    /**
4092
     * Marshall Islands 1960
4093
     * Type: Geodetic
4094
     * Extent: Marshall Islands - onshore. Wake atoll onshore.
4095
     */
4096
    public const EPSG_MARSHALL_ISLANDS_1960 = 'urn:ogc:def:datum:EPSG::6732';
4097
4098
    /**
4099
     * Martinique 1938
4100
     * Type: Geodetic
4101
     * Extent: Martinique - onshore.
4102
     * Fundamental point: Fort Desaix. Latitude: 14°36'54.090"N, longitude: 61°04'04.030"W (of Greenwich).
4103
     * Replaced by RRAF 1991 (datum code 1047).
4104
     */
4105
    public const EPSG_MARTINIQUE_1938 = 'urn:ogc:def:datum:EPSG::6625';
4106
4107
    /**
4108
     * Martinique 1955
4109
     * Type: Vertical
4110
     * Extent: Martinique - onshore.
4111
     * Mean sea level at Fort de France 1939. Marker DO-4-II on quay wall with elevation of 1.38m above msl.
4112
     * Orthometric heights. Replaced by Martinique 1987 (datum code 5154).
4113
     */
4114
    public const EPSG_MARTINIQUE_1955 = 'urn:ogc:def:datum:EPSG::5192';
4115
4116
    /**
4117
     * Martinique 1987
4118
     * Type: Vertical
4119
     * Extent: Martinique - onshore.
4120
     * Mean sea level 1939 at Fort de France. Origin = marker Nbc2 on rebuilt quay wall with defined elevation of 1.38m
4121
     * above msl. Martinique 1987 height 0.00m is 0.56m above SHOM sounding datum.
4122
     * Orthometric heights. Replaces Martinique 1955 (datum code 5192).
4123
     */
4124
    public const EPSG_MARTINIQUE_1987 = 'urn:ogc:def:datum:EPSG::5154';
4125
4126
    /**
4127
     * Massawa
4128
     * Type: Geodetic
4129
     * Extent: Eritrea - onshore and offshore.
4130
     */
4131
    public const EPSG_MASSAWA = 'urn:ogc:def:datum:EPSG::6262';
4132
4133
    /**
4134
     * Maupiti 83
4135
     * Type: Geodetic
4136
     * Extent: French Polynesia - Society Islands - Maupiti.
4137
     * Fundamental point: Pitiahe South Base. Latitude: 16°28'28.942"S, longitude: 152°14'55.059"W (of Greenwich).
4138
     * Replaced by RGPF (datum code 6687).
4139
     */
4140
    public const EPSG_MAUPITI_83 = 'urn:ogc:def:datum:EPSG::6692';
4141
4142
    /**
4143
     * Maupiti SAU 2001
4144
     * Type: Vertical
4145
     * Extent: French Polynesia - Society Islands - Maupiti.
4146
     * Fundamental benchmark: RN11
4147
     * Included as part of NGPF - see datum code 5195.
4148
     */
4149
    public const EPSG_MAUPITI_SAU_2001 = 'urn:ogc:def:datum:EPSG::5199';
4150
4151
    /**
4152
     * Mauritania 1999
4153
     * Type: Geodetic
4154
     * Extent: Mauritania - onshore and offshore.
4155
     * ITRF96 at epoch 1997.0
4156
     * A network of 36 GPS stations tied to ITRF96, 8 of which are IGN 1962 astronomic points.
4157
     */
4158
    public const EPSG_MAURITANIA_1999 = 'urn:ogc:def:datum:EPSG::6702';
4159
4160
    /**
4161
     * Mayotte 1950
4162
     * Type: Vertical
4163
     * Extent: Mayotte - onshore.
4164
     * IGN 1950 marker (height 0.0m) on southwest jetty at Dzaoudzi (Petite-Terre) is 2.18m above zero of tide gauge.
4165
     * SHOM 1953 marker on east (Issoufali) jetty at Dzaoudzi (height 4.74m) is the base for Mayotte heights.
4166
     * Datum transferred to benchmark RN0 with height of 2.774m above tide gauge on eastern jetty at Mamoudzou
4167
     * (Grand-Terre) in 1979.
4168
     */
4169
    public const EPSG_MAYOTTE_1950 = 'urn:ogc:def:datum:EPSG::5191';
4170
4171
    /**
4172
     * Mean High Water
4173
     * Type: Vertical
4174
     * Extent: World.
4175
     * The average height of the high waters at a place over a 19-year period.
4176
     * Users are advised to not use this generic vertical datum but to define explicit realizations of MHW by
4177
     * specifying location and epoch, for instance "MHW at xxx during yyyy-yyyy".
4178
     */
4179
    public const EPSG_MEAN_HIGH_WATER = 'urn:ogc:def:datum:EPSG::1092';
4180
4181
    /**
4182
     * Mean High Water Spring Tides
4183
     * Type: Vertical
4184
     * Extent: World.
4185
     * The average height of the high waters of spring tides.
4186
     * Users are advised to not use this generic vertical datum but to define explicit realizations of MHWS by
4187
     * specifying location and epoch, for instance "MHWS at xxx during yyyy-yyyy".
4188
     */
4189
    public const EPSG_MEAN_HIGH_WATER_SPRING_TIDES = 'urn:ogc:def:datum:EPSG::1088';
4190
4191
    /**
4192
     * Mean Higher High Water
4193
     * Type: Vertical
4194
     * Extent: World.
4195
     * The average height of the higher high waters at a place over a 19-year period.
4196
     * Users are advised to not use this generic vertical datum but to define explicit realizations of MHHW by
4197
     * specifying location and epoch, for instance "MHHW at xxx during yyyy-yyyy".
4198
     */
4199
    public const EPSG_MEAN_HIGHER_HIGH_WATER = 'urn:ogc:def:datum:EPSG::1090';
4200
4201
    /**
4202
     * Mean Low Water
4203
     * Type: Vertical
4204
     * Extent: World.
4205
     * The average height of all low waters at a place over a 19-year period.
4206
     * Users are advised to not use this generic vertical datum but to define explicit realizations of MLW by
4207
     * specifying location and epoch, for instance "MLW at xxx during yyyy-yyyy".
4208
     */
4209
    public const EPSG_MEAN_LOW_WATER = 'urn:ogc:def:datum:EPSG::1091';
4210
4211
    /**
4212
     * Mean Low Water Spring Tides
4213
     * Type: Vertical
4214
     * Extent: World.
4215
     * The average height of the low waters of spring tides.
4216
     * Users are advised to not use this generic vertical datum but to define explicit realizations of MLWS by
4217
     * specifying location and epoch, for instance "MLWS at xxx during yyyy-yyyy".
4218
     */
4219
    public const EPSG_MEAN_LOW_WATER_SPRING_TIDES = 'urn:ogc:def:datum:EPSG::1087';
4220
4221
    /**
4222
     * Mean Lower Low Water
4223
     * Type: Vertical
4224
     * Extent: World.
4225
     * The average height of the lower low waters at a place over a 19-year period.
4226
     * Users are advised to not use this generic vertical datum but to define explicit realizations of MLLW by
4227
     * specifying location and epoch, for instance "MLLW at xxx during yyyy-yyyy".
4228
     */
4229
    public const EPSG_MEAN_LOWER_LOW_WATER = 'urn:ogc:def:datum:EPSG::1089';
4230
4231
    /**
4232
     * Mean Lower Low Water Spring Tides
4233
     * Type: Vertical
4234
     * Extent: World.
4235
     * The average height of the lower low water spring tides at a place.
4236
     * Users are advised to not use this generic vertical datum but to define explicit realizations of MLLWS by
4237
     * specifying location and epoch, for instance "MLLWS at xxx during yyyy-yyyy".
4238
     */
4239
    public const EPSG_MEAN_LOWER_LOW_WATER_SPRING_TIDES = 'urn:ogc:def:datum:EPSG::1086';
4240
4241
    /**
4242
     * Mean Sea Level
4243
     * Type: Vertical
4244
     * Extent: World.
4245
     * The average height of the surface of the sea at a tide station for all stages of the tide over a 19-year period,
4246
     * usually determined from hourly height readings measured from a fixed predetermined reference level.
4247
     * Approximates geoid. Users are advised to not use this generic vertical datum but to define explicit realizations
4248
     * of MSL by specifying location and epoch, for instance "MSL at xxx during yyyy-yyyy".
4249
     */
4250
    public const EPSG_MEAN_SEA_LEVEL = 'urn:ogc:def:datum:EPSG::5100';
4251
4252
    /**
4253
     * Mean Sea Level Netherlands
4254
     * Type: Vertical
4255
     * Extent: Netherlands - offshore North Sea.
4256
     * Surface defined through the nlgeo geoid model applied to ETRS89.
4257
     * Coincides with NAP datum plane. Approximates physical mean sea surface to a few decimetres.
4258
     */
4259
    public const EPSG_MEAN_SEA_LEVEL_NETHERLANDS = 'urn:ogc:def:datum:EPSG::1270';
4260
4261
    /**
4262
     * Menorca
4263
     * Type: Vertical
4264
     * Extent: Spain - Balearic Islands - Menorca onshore.
4265
     * Mean Sea Level at Ciutadella harbour between June 2007 and June 2008.
4266
     * Orthometric heights.
4267
     */
4268
    public const EPSG_MENORCA = 'urn:ogc:def:datum:EPSG::1276';
4269
4270
    /**
4271
     * Merchich
4272
     * Type: Geodetic
4273
     * Extent: Africa - Morocco and Western Sahara - onshore.
4274
     * Fundamental point: Merchich. Latitude: 33°26'59.672"N, longitude: 7°33'27.295"W (of Greenwich).
4275
     */
4276
    public const EPSG_MERCHICH = 'urn:ogc:def:datum:EPSG::6261';
4277
4278
    /**
4279
     * Mexico ITRF2008
4280
     * Type: Geodetic
4281
     * Extent: Mexico - onshore and offshore.
4282
     * ITRF2008 at epoch 2010.00.
4283
     * Realised by a frame of 15 active GPS stations observed and adjusted in the ITRF2008. Includes ties to tide
4284
     * gauges. Replaces Mexico ITRF92 (datum code 1042).
4285
     */
4286
    public const EPSG_MEXICO_ITRF2008 = 'urn:ogc:def:datum:EPSG::1120';
4287
4288
    /**
4289
     * Mexico ITRF92
4290
     * Type: Geodetic
4291
     * Extent: Mexico - onshore and offshore.
4292
     * ITRF1992 at epoch 1988.00.
4293
     * Realized by a frame of 15 active GPS stations observed and adjusted in the ITRF1992. Includes ties to tide
4294
     * gauges. Replaces NAD27 (datum code 6267). Replaced by Mexico ITRF2008 (datum code 1120) from December 2010.
4295
     */
4296
    public const EPSG_MEXICO_ITRF92 = 'urn:ogc:def:datum:EPSG::1042';
4297
4298
    /**
4299
     * Mhast (offshore)
4300
     * Type: Geodetic
4301
     * Extent: Angola (Cabinda) - offshore; The Democratic Republic of the Congo (Zaire) - offshore.
4302
     * Fundamental point: Station Y at Malongo base camp. Latitude: 5°23'30.810"S, longitude: 12°12'01.590"E (of
4303
     * Greenwich).
4304
     * Origin coordinates determined by Transit single point position using 32 passes and transformed from WGS72BE
4305
     * using transformation code 15790. Differs from Mhast (onshore) by approximately 10m. Replaced in 1987 by Malongo
4306
     * 1987 (code 6259).
4307
     */
4308
    public const EPSG_MHAST_OFFSHORE = 'urn:ogc:def:datum:EPSG::6705';
4309
4310
    /**
4311
     * Mhast (onshore)
4312
     * Type: Geodetic
4313
     * Extent: Angola (Cabinda) - onshore and offshore; The Democratic Republic of the Congo (Zaire) - onshore coastal
4314
     * area and offshore.
4315
     * Probably adopted a Mhast 1951 coordinate set but associated an incorrect ellipsoid with it.
4316
     * Adopted by oil industry with intention of being Mhast 1951 (code 6703) but incorrectly (for Mhast 1951) used the
4317
     * International 1924 ellipsoid. This datum differs by about 400 metres from the Portuguese Mhast 1951 and Camacupa
4318
     * datums.
4319
     */
4320
    public const EPSG_MHAST_ONSHORE = 'urn:ogc:def:datum:EPSG::6704';
4321
4322
    /**
4323
     * Midway 1961
4324
     * Type: Geodetic
4325
     * Extent: United States Minor Outlying Islands - Midway Islands - Sand Island and Eastern Island.
4326
     */
4327
    public const EPSG_MIDWAY_1961 = 'urn:ogc:def:datum:EPSG::6727';
4328
4329
    /**
4330
     * Militar-Geographische Institut
4331
     * Type: Geodetic
4332
     * Extent: Austria.
4333
     * Fundamental point: Hermannskogel. Latitude: 48°16'15.29"N, longitude: 16°17'41.06"E (of Greenwich).
4334
     * The longitude of the datum origin equates to a value for the Ferro meridian of 17°40' exactly west of
4335
     * Greenwich.
4336
     */
4337
    public const EPSG_MILITAR_GEOGRAPHISCHE_INSTITUT = 'urn:ogc:def:datum:EPSG::6312';
4338
4339
    /**
4340
     * Militar-Geographische Institut (Ferro)
4341
     * Type: Geodetic
4342
     * Extent: Austria. Bosnia and Herzegovina. Croatia - onshore. Kosovo. Montenegro - onshore. North Macedonia.
4343
     * Serbia. Slovenia - onshore.
4344
     * Fundamental point: Hermannskogel. Latitude: 48°16'15.29"N, longitude: 33°57'41.06"E (of Ferro).
4345
     * Replaced by MGI in Austria and MGI 1901 in former Yugoslavia.
4346
     */
4347
    public const EPSG_MILITAR_GEOGRAPHISCHE_INSTITUT_FERRO = 'urn:ogc:def:datum:EPSG::6805';
4348
4349
    /**
4350
     * Ministerio de Marina Norte
4351
     * Type: Geodetic
4352
     * Extent: Argentina - Tierra del Fuego onshore.
4353
     * Developed by the Servicio de Hidrografia Naval.
4354
     */
4355
    public const EPSG_MINISTERIO_DE_MARINA_NORTE = 'urn:ogc:def:datum:EPSG::1258';
4356
4357
    /**
4358
     * Ministerio de Marina Sur
4359
     * Type: Geodetic
4360
     * Extent: Argentina - Tierra del Fuego onshore.
4361
     * Developed by the Servicio de Hidrografia Naval.
4362
     */
4363
    public const EPSG_MINISTERIO_DE_MARINA_SUR = 'urn:ogc:def:datum:EPSG::1259';
4364
4365
    /**
4366
     * Minna
4367
     * Type: Geodetic
4368
     * Extent: Nigeria - onshore and offshore.
4369
     * Fundamental point: Minna base station L40. Latitude: 9°38'08.87"N, longitude: 6°30'58.76"E (of Greenwich).
4370
     */
4371
    public const EPSG_MINNA = 'urn:ogc:def:datum:EPSG::6263';
4372
4373
    /**
4374
     * Missao Hidrografico Angola y Sao Tome 1951
4375
     * Type: Geodetic
4376
     * Extent: Angola - Cabinda.
4377
     * Extension of Camacupa datum into Cabinda.
4378
     * A variation of this datum has been adopted by the oil industry but incorrectly using the International 1924
4379
     * ellipsoid and not tied to the official Portuguese triangulation - see Mhast (onshore) and Mhast (offshore)
4380
     * (codes 6704 and 6705).
4381
     */
4382
    public const EPSG_MISSAO_HIDROGRAFICO_ANGOLA_Y_SAO_TOME_1951 = 'urn:ogc:def:datum:EPSG::6703';
4383
4384
    /**
4385
     * Monte Mario
4386
     * Type: Geodetic
4387
     * Extent: Italy - onshore and offshore; San Marino, Vatican City State.
4388
     * Fundamental point: Monte Mario. Latitude: 41°55'25.51"N, longitude: 12°27'08.4"E (of Greenwich).
4389
     * Replaced Genova datum, Bessel 1841 ellipsoid, from 1940.
4390
     */
4391
    public const EPSG_MONTE_MARIO = 'urn:ogc:def:datum:EPSG::6265';
4392
4393
    /**
4394
     * Monte Mario (Rome)
4395
     * Type: Geodetic
4396
     * Extent: Italy - onshore and offshore; San Marino, Vatican City State.
4397
     * Fundamental point: Monte Mario. Latitude: 41°55'25.51"N, longitude: 0°00' 00.00"E (of Rome).
4398
     * Replaced Genova datum, Bessel 1841 ellipsoid, from 1940.
4399
     */
4400
    public const EPSG_MONTE_MARIO_ROME = 'urn:ogc:def:datum:EPSG::6806';
4401
4402
    /**
4403
     * Montserrat 1958
4404
     * Type: Geodetic
4405
     * Extent: Montserrat - onshore.
4406
     * Fundamental point: station M36.
4407
     */
4408
    public const EPSG_MONTSERRAT_1958 = 'urn:ogc:def:datum:EPSG::6604';
4409
4410
    /**
4411
     * Moorea 87
4412
     * Type: Geodetic
4413
     * Extent: French Polynesia - Society Islands - Moorea.
4414
     * Two stations on Tahiti whose coordinates from the Tahiti 1979 adjustment were held fixed.
4415
     * Replaces Tahiti 52 (datum code 6628) in Moorea. Replaced by RGPF (datum code 6687).
4416
     */
4417
    public const EPSG_MOOREA_87 = 'urn:ogc:def:datum:EPSG::6691';
4418
4419
    /**
4420
     * Moorea SAU 1981
4421
     * Type: Vertical
4422
     * Extent: French Polynesia - Society Islands - Moorea.
4423
     * Fundamental benchmark: RN225
4424
     * Included as part of NGPF - see datum code 5195.
4425
     */
4426
    public const EPSG_MOOREA_SAU_1981 = 'urn:ogc:def:datum:EPSG::5197';
4427
4428
    /**
4429
     * Moturiki 1953
4430
     * Type: Vertical
4431
     * Extent: New Zealand - North Island - Moturiki vertical CRS area.
4432
     * MSL at Moturiki Island February 1949 to December 1952.
4433
     */
4434
    public const EPSG_MOTURIKI_1953 = 'urn:ogc:def:datum:EPSG::5162';
4435
4436
    /**
4437
     * Mount Dillon
4438
     * Type: Geodetic
4439
     * Extent: Trinidad and Tobago - Tobago - onshore.
4440
     * Fundamental point: Mount Dillon triangulation station. Latitude: 11°15'07.843"N, longitude: 60°41'09.632"W (of
4441
     * Greenwich).
4442
     */
4443
    public const EPSG_MOUNT_DILLON = 'urn:ogc:def:datum:EPSG::6157';
4444
4445
    /**
4446
     * Moznet (ITRF94)
4447
     * Type: Geodetic
4448
     * Extent: Mozambique - onshore and offshore.
4449
     * ITRF94 at epoch 1996.9.
4450
     */
4451
    public const EPSG_MOZNET_ITRF94 = 'urn:ogc:def:datum:EPSG::6130';
4452
4453
    /**
4454
     * N2000
4455
     * Type: Vertical
4456
     * Extent: Finland - onshore.
4457
     * Height at Metsaahovi (latitude 60.21762°N, longitude 24.39517°E) of 54.4233m related to EVRF2000 origin
4458
     * through Baltic Levelling Ring adjustment at epoch 2000.0.
4459
     * Realized through the third precise levelling network. Uses normal heights. Replaces N43 and N60 (datum codes
4460
     * 1213 and 5116). To account for isostatic land uplift use NKG2005 model.
4461
     */
4462
    public const EPSG_N2000 = 'urn:ogc:def:datum:EPSG::1030';
4463
4464
    /**
4465
     * NAD83 (Continuously Operating Reference Station 1996)
4466
     * Type: Geodetic
4467
     * Extent: Puerto Rico - onshore and offshore. United States (USA) onshore and offshore - Alabama; Alaska; Arizona;
4468
     * Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas;
4469
     * Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana;
4470
     * Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma;
4471
     * Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia;
4472
     * Washington; West Virginia; Wisconsin; Wyoming. US Virgin Islands - onshore and offshore.
4473
     * Defined by time-dependent transformations from ITRF (see CT codes 6864-6866). The ITRF realization used has been
4474
     * changed periodically; ITRF96 in years 1997 through 1999, ITRF97 in 2000 and 2001 and ITRF2000 from 2002.
4475
     * Replaced by NAD83(2011) from 2011-09-06.
4476
     */
4477
    public const EPSG_NAD83_CONTINUOUSLY_OPERATING_REFERENCE_STATION_1996 = 'urn:ogc:def:datum:EPSG::1133';
4478
4479
    /**
4480
     * NAD83 (Federal Base Network)
4481
     * Type: Geodetic
4482
     * Extent: American Samoa - Tutuila, Aunu'u, Ofu, Olesega, Ta'u and Rose islands - onshore. Guam - onshore.
4483
     * Northern Mariana Islands - onshore. Puerto Rico - onshore. United States (USA) - CONUS - Alabama; Arizona;
4484
     * Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas;
4485
     * Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana;
4486
     * Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma;
4487
     * Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia;
4488
     * Washington; West Virginia; Wisconsin; Wyoming - onshore plus Gulf of Mexico offshore continental shelf (GoM
4489
     * OCS). US Virgin Islands - onshore.
4490
     * A collection of individual state-wide adjustments including GPS observations made between 1997 and 2004.
4491
     * In CA CT FL ID MA ME MT NC NH NJ NV NY OR RI SC TN VT WA and WI, replaces the early 1990s HARN adjustment. In
4492
     * rest of CONUS the difference between the HARN and FBN adjustments was under 5cm and the original HARN
4493
     * adjustments were adopted as NAD83(FBN).
4494
     */
4495
    public const EPSG_NAD83_FEDERAL_BASE_NETWORK = 'urn:ogc:def:datum:EPSG::1211';
4496
4497
    /**
4498
     * NAD83 (High Accuracy Reference Network - Corrected)
4499
     * Type: Geodetic
4500
     * Extent: Puerto Rico and US Virgin Islands - onshore.
4501
     * In PRVI replaces NAD83(HARN) to correct errors. Replaced by NAD83(FBN).
4502
     */
4503
    public const EPSG_NAD83_HIGH_ACCURACY_REFERENCE_NETWORK_CORRECTED = 'urn:ogc:def:datum:EPSG::1212';
4504
4505
    /**
4506
     * NAD83 (High Accuracy Reference Network)
4507
     * Type: Geodetic
4508
     * Extent: American Samoa - onshore - Tutuila, Aunu'u, Ofu, Olesega, Ta'u and Rose islands. Guam - onshore.
4509
     * Northern Mariana Islands - onshore. Puerto Rico - onshore. United States (USA) - onshore Alabama, Alaska,
4510
     * Arizona, Arkansas, California, Colorado, Connecticut, Delaware, Florida, Georgia, Hawaii, Idaho, Illinois,
4511
     * Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Maryland, Massachusetts, Michigan, Minnesota, Mississippi,
4512
     * Missouri, Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York, North Carolina, North
4513
     * Dakota, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, South Dakota, Tennessee, Texas,
4514
     * Utah, Vermont, Virginia, Washington, West Virginia, Wisconsin and Wyoming; offshore Gulf of Mexico continental
4515
     * shelf (GoM OCS). US Virgin Islands - onshore.
4516
     * A collection of individual state-wide adjustments including GPS observations made between 1991 and 1996.
4517
     * In CONUS, American Samoa and Guam replaced by NAD83(FBN). In Alaska replaced by NAD83(NSRS2007). In Hawaii
4518
     * replaced by NAD83(PA11). In Puerto Rico and US Virgin Islands replaced by NAD83(HARN Corrected).
4519
     */
4520
    public const EPSG_NAD83_HIGH_ACCURACY_REFERENCE_NETWORK = 'urn:ogc:def:datum:EPSG::6152';
4521
4522
    /**
4523
     * NAD83 (National Spatial Reference System 2007)
4524
     * Type: Geodetic
4525
     * Extent: Puerto Rico - onshore and offshore. United States (USA) onshore and offshore - Alabama; Alaska; Arizona;
4526
     * Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas;
4527
     * Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana;
4528
     * Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma;
4529
     * Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia;
4530
     * Washington; West Virginia; Wisconsin; Wyoming. US Virgin Islands - onshore and offshore.
4531
     * Coordinates of 486 national continually operating reference system (CORS) and 195 collaborative GPS (CGPS) sites
4532
     * constrained to their CORS96 values, ITRF2000 at epoch 2002.0.
4533
     * Replaced by NAD83 (National Spatial Reference System 2011), datum code 1116.
4534
     */
4535
    public const EPSG_NAD83_NATIONAL_SPATIAL_REFERENCE_SYSTEM_2007 = 'urn:ogc:def:datum:EPSG::6759';
4536
4537
    /**
4538
     * NAD83 (National Spatial Reference System 2011)
4539
     * Type: Geodetic
4540
     * Extent: Puerto Rico - onshore and offshore. United States (USA) onshore and offshore - Alabama; Alaska; Arizona;
4541
     * Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas;
4542
     * Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana;
4543
     * Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma;
4544
     * Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia;
4545
     * Washington; West Virginia; Wisconsin; Wyoming. US Virgin Islands - onshore and offshore.
4546
     * Coordinates of a nationwide adjustment of 79,546 NGS "passive" control stations in CONUS and Alaska, constrained
4547
     * to 1,171 current CORS station coordinates at epoch 2010.0.
4548
     * Replaces NAD83(NSRS2007). Transformaton code 7807 from ITRF2008 is understood to underlay the  CORS station
4549
     * coordinates.
4550
     */
4551
    public const EPSG_NAD83_NATIONAL_SPATIAL_REFERENCE_SYSTEM_2011 = 'urn:ogc:def:datum:EPSG::1116';
4552
4553
    /**
4554
     * NAD83 (National Spatial Reference System MA11)
4555
     * Type: Geodetic
4556
     * Extent: Guam, Northern Mariana Islands and Palau; onshore and offshore.
4557
     * Coordinates of a nationwide adjustment including 171 NGS "passive" control stations constrained to 24 current
4558
     * Pacific CORS station coordinates at epoch 2010.0.
4559
     * Replaces NAD83(HARN) (GGN93) and NAD83(FBN) in Guam. ITRF2008 is understood to underlay the latest CORS station
4560
     * coordinates.
4561
     */
4562
    public const EPSG_NAD83_NATIONAL_SPATIAL_REFERENCE_SYSTEM_MA11 = 'urn:ogc:def:datum:EPSG::1118';
4563
4564
    /**
4565
     * NAD83 (National Spatial Reference System PA11)
4566
     * Type: Geodetic
4567
     * Extent: American Samoa, Marshall Islands, United States (USA) - Hawaii, United States minor outlying islands;
4568
     * onshore and offshore.
4569
     * Coordinates of a nationwide adjustment including 345 NGS "passive" control stations constrained to 24 current
4570
     * Pacific CORS station coordinates at epoch 2010.0.
4571
     * Replaces NAD83(HARN) and NAD83(FBN) in Hawaii and American Samoa. ITRF2008 is understood to underlay the latest
4572
     * CORS station coordinates.
4573
     */
4574
    public const EPSG_NAD83_NATIONAL_SPATIAL_REFERENCE_SYSTEM_PA11 = 'urn:ogc:def:datum:EPSG::1117';
4575
4576
    /**
4577
     * NAD83 Canadian Spatial Reference System
4578
     * Type: Geodetic
4579
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
4580
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
4581
     * Yukon.
4582
     * Includes all versions of NAD83(CSRS) from v2 [CSRS98] onwards without specific identification. As such it has an
4583
     * accuracy of approximately 1m.
4584
     */
4585
    public const EPSG_NAD83_CANADIAN_SPATIAL_REFERENCE_SYSTEM = 'urn:ogc:def:datum:EPSG::6140';
4586
4587
    /**
4588
     * NEA74 Noumea
4589
     * Type: Geodetic
4590
     * Extent: New Caledonia - Grande Terre - Noumea district.
4591
     * Noumea old signal station.
4592
     */
4593
    public const EPSG_NEA74_NOUMEA = 'urn:ogc:def:datum:EPSG::6644';
4594
4595
    /**
4596
     * NGO 1948
4597
     * Type: Geodetic
4598
     * Extent: Norway - onshore.
4599
     * Fundamental point: Oslo observatory. Latitude: 59°54'43.7"N, longitude: 10°43'22.5"E (of Greenwich).
4600
     */
4601
    public const EPSG_NGO_1948 = 'urn:ogc:def:datum:EPSG::6273';
4602
4603
    /**
4604
     * NGO 1948 (Oslo)
4605
     * Type: Geodetic
4606
     * Extent: Norway - onshore.
4607
     * Fundamental point: Oslo observatory. Latitude: 59°54'43.7"N, longitude: 0°00'00.0"E (of Oslo).
4608
     */
4609
    public const EPSG_NGO_1948_OSLO = 'urn:ogc:def:datum:EPSG::6817';
4610
4611
    /**
4612
     * NSWC 9Z-2
4613
     * Type: Geodetic
4614
     * Extent: World.
4615
     * Transit precise ephemeris before 1991.
4616
     */
4617
    public const EPSG_NSWC_9Z_2 = 'urn:ogc:def:datum:EPSG::6276';
4618
4619
    /**
4620
     * Nahrwan 1934
4621
     * Type: Geodetic
4622
     * Extent: Iraq - onshore; Iran - onshore northern Gulf coast and west bordering southeast Iraq.
4623
     * Fundamental point: Nahrwan south base.  Latitude: 33°19'10.87"N, longitude: 44°43'25.54"E (of Greenwich).
4624
     * This adjustment later discovered to have a significant orientation error. In Iran replaced by FD58. In Iraq,
4625
     * replaced by Karbala 1979.
4626
     */
4627
    public const EPSG_NAHRWAN_1934 = 'urn:ogc:def:datum:EPSG::6744';
4628
4629
    /**
4630
     * Nahrwan 1967
4631
     * Type: Geodetic
4632
     * Extent: Arabian Gulf; Qatar - offshore; United Arab Emirates (UAE) - Abu Dhabi; Dubai; Sharjah; Ajman; Fujairah;
4633
     * Ras Al Kaimah; Umm Al Qaiwain - onshore and offshore.
4634
     * Fundamental point: Nahrwan south base.  Latitude: 33°19'10.87"N, longitude: 44°43'25.54"E (of Greenwich).
4635
     */
4636
    public const EPSG_NAHRWAN_1967 = 'urn:ogc:def:datum:EPSG::6270';
4637
4638
    /**
4639
     * Nakhl-e Ghanem
4640
     * Type: Geodetic
4641
     * Extent: Iran - Kangan district.
4642
     * Coordinates of two stations determined with respect to ITRF 2000 at epoch 2005.2: BMT1 latitude
4643
     * 27°42'09.8417"N, longitude 52°12'11.0362"E (of Greenwich); Total1 latitude 27°31'03.8896"N, longitude
4644
     * 52°36'13.1312"E (of Greenwich).
4645
     */
4646
    public const EPSG_NAKHL_E_GHANEM = 'urn:ogc:def:datum:EPSG::6693';
4647
4648
    /**
4649
     * Naparima 1955
4650
     * Type: Geodetic
4651
     * Extent: Trinidad and Tobago - Trinidad - onshore.
4652
     * Fundamental point: Naparima. Latitude: 10°16'44.860"N, longitude: 61°27'34.620"W (of Greenwich).
4653
     * Extended to Tobago as Naparima 1972. (Note: Naparima 1972 is not used in Trinidad).
4654
     */
4655
    public const EPSG_NAPARIMA_1955 = 'urn:ogc:def:datum:EPSG::6158';
4656
4657
    /**
4658
     * Naparima 1972
4659
     * Type: Geodetic
4660
     * Extent: Trinidad and Tobago - Tobago - onshore.
4661
     * Fundamental point: Naparima. Latitude: 10°16'44.860"N, longitude: 61°27'34.620"W (of Greenwich).
4662
     * Naparima 1972 is an extension to Tobago of the Naparima 1955 network of Trinidad.
4663
     */
4664
    public const EPSG_NAPARIMA_1972 = 'urn:ogc:def:datum:EPSG::6271';
4665
4666
    /**
4667
     * Napier 1962
4668
     * Type: Vertical
4669
     * Extent: New Zealand - North Island - Hawkes Bay meridional circuit and Napier vertical crs area.
4670
     * MSL at Napier harbour. Period of derivation unknown.
4671
     */
4672
    public const EPSG_NAPIER_1962 = 'urn:ogc:def:datum:EPSG::5163';
4673
4674
    /**
4675
     * National Geodetic Network
4676
     * Type: Geodetic
4677
     * Extent: Kuwait - onshore.
4678
     * Replaces 1984 adjustment which used the WGS72 ellipsoid.
4679
     */
4680
    public const EPSG_NATIONAL_GEODETIC_NETWORK = 'urn:ogc:def:datum:EPSG::6318';
4681
4682
    /**
4683
     * National Geodetic Vertical Datum 1929
4684
     * Type: Vertical
4685
     * Extent: United States (USA) - CONUS onshore - Alabama; Arizona; Arkansas; California; Colorado; Connecticut;
4686
     * Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland;
4687
     * Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey;
4688
     * New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South
4689
     * Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin;
4690
     * Wyoming.
4691
     * 26 tide gauges in the US and Canada.
4692
     * Normal orthometric heights.
4693
     */
4694
    public const EPSG_NATIONAL_GEODETIC_VERTICAL_DATUM_1929 = 'urn:ogc:def:datum:EPSG::5102';
4695
4696
    /**
4697
     * National Vertical Datum 1992
4698
     * Type: Vertical
4699
     * Extent: Bangladesh - onshore.
4700
     * Mean Sea Level 1992-1994 at tidal station at Rangadia, Chittagong.
4701
     */
4702
    public const EPSG_NATIONAL_VERTICAL_DATUM_1992 = 'urn:ogc:def:datum:EPSG::1303';
4703
4704
    /**
4705
     * Nelson 1955
4706
     * Type: Vertical
4707
     * Extent: New Zealand - South Island - north of approximately 42°20'S - Nelson vertical CRS area.
4708
     * MSL at Nelson harbour 1939-1942.
4709
     */
4710
    public const EPSG_NELSON_1955 = 'urn:ogc:def:datum:EPSG::5164';
4711
4712
    /**
4713
     * Nepal 1981
4714
     * Type: Geodetic
4715
     * Extent: Nepal.
4716
     * Fundamental point: Station 12/157 Nagarkot. Latitude: 27°41'31.04"N, longitude: 85°31'20.23"E (of Greenwich).
4717
     */
4718
    public const EPSG_NEPAL_1981 = 'urn:ogc:def:datum:EPSG::1111';
4719
4720
    /**
4721
     * New Beijing
4722
     * Type: Geodetic
4723
     * Extent: China - onshore.
4724
     * Derived by conformal transformation of Xian 1980 adjustment onto Krassowsky ellipsoid.
4725
     * From 1982 replaces Beijing 1954.
4726
     */
4727
    public const EPSG_NEW_BEIJING = 'urn:ogc:def:datum:EPSG::1045';
4728
4729
    /**
4730
     * New Zealand Geodetic Datum 1949
4731
     * Type: Geodetic
4732
     * Extent: New Zealand - North Island, South Island, Stewart Island - onshore and nearshore.
4733
     * Fundamental point: Papatahi. Latitude: 41°19' 8.900"S, longitude: 175°02'51.000"E (of Greenwich).
4734
     * Replaced by New Zealand Geodetic Datum 2000 (code 6167) from March 2000.
4735
     */
4736
    public const EPSG_NEW_ZEALAND_GEODETIC_DATUM_1949 = 'urn:ogc:def:datum:EPSG::6272';
4737
4738
    /**
4739
     * New Zealand Geodetic Datum 2000
4740
     * Type: Geodetic
4741
     * Extent: New Zealand - onshore and offshore. Includes Antipodes Islands, Auckland Islands, Bounty Islands,
4742
     * Chatham Islands, Cambell Island, Kermadec Islands, Raoul Island and Snares Islands.
4743
     * Based on ITRF96 at epoch 2000.0
4744
     * Replaces New Zealand Geodetic Datum 1949 (code 6272) and Chatham Islands Datum 1979 (code 6673) from March 2000.
4745
     */
4746
    public const EPSG_NEW_ZEALAND_GEODETIC_DATUM_2000 = 'urn:ogc:def:datum:EPSG::6167';
4747
4748
    /**
4749
     * New Zealand Vertical Datum 2009
4750
     * Type: Vertical
4751
     * Extent: New Zealand - onshore and offshore. Includes Antipodes Islands, Auckland Islands, Bounty Islands,
4752
     * Chatham Islands, Cambell Island, Kermadec Islands, Raoul Island and Snares Islands.
4753
     * New Zealand Quasigeoid 2009 which is defined by the application of the NZ geoid 2009 grid to NZGD2000
4754
     * ellipsoidal heights. See transformation code 4459.
4755
     */
4756
    public const EPSG_NEW_ZEALAND_VERTICAL_DATUM_2009 = 'urn:ogc:def:datum:EPSG::1039';
4757
4758
    /**
4759
     * New Zealand Vertical Datum 2016
4760
     * Type: Vertical
4761
     * Extent: New Zealand - onshore and offshore. Includes Antipodes Islands, Auckland Islands, Bounty Islands,
4762
     * Chatham Islands, Cambell Island, Kermadec Islands, Raoul Island and Snares Islands.
4763
     * New Zealand quasigeoid 2016 which is defined by the application of the NZ geoid 2016 grid to NZGD2000
4764
     * ellipsoidal heights. See transformation code 7840.
4765
     */
4766
    public const EPSG_NEW_ZEALAND_VERTICAL_DATUM_2016 = 'urn:ogc:def:datum:EPSG::1169';
4767
4768
    /**
4769
     * Nivellement General Guyanais 1977
4770
     * Type: Vertical
4771
     * Extent: French Guiana - onshore.
4772
     * Mean sea level 1936 at Cayenne. Origin = marker BM35 on stone on St Francois battery, Cayenne, with defined
4773
     * elevation of 1.64m above msl. NGG1977 height 0.00m is 1.96m above sounding datum defined at Cayenne in 1936 by
4774
     * SHM.
4775
     * Orthometric heights.
4776
     */
4777
    public const EPSG_NIVELLEMENT_GENERAL_GUYANAIS_1977 = 'urn:ogc:def:datum:EPSG::5153';
4778
4779
    /**
4780
     * Nivellement General de Nouvelle Caledonie
4781
     * Type: Vertical
4782
     * Extent: New Caledonia - Grande Terre.
4783
     * Rivet AB01 established by SHOM (Service Hydrographique de la Marine)  in 1937 on the Quai des Volontaires in
4784
     * Noumea. Height i: 1.885 metre above mean sea level.
4785
     * Orthometric heights.
4786
     */
4787
    public const EPSG_NIVELLEMENT_GENERAL_DE_NOUVELLE_CALEDONIE = 'urn:ogc:def:datum:EPSG::5151';
4788
4789
    /**
4790
     * Nivellement General de Nouvelle Caledonie 2008
4791
     * Type: Vertical
4792
     * Extent: New Caledonia - Belep, Grande Terre, Ile des Pins, Loyalty Islands (Lifou, Mare, Ouvea).
4793
     * Normal heights.
4794
     */
4795
    public const EPSG_NIVELLEMENT_GENERAL_DE_NOUVELLE_CALEDONIE_2008 = 'urn:ogc:def:datum:EPSG::1255';
4796
4797
    /**
4798
     * Nivellement General de Polynesie Francaise
4799
     * Type: Vertical
4800
     * Extent: French Polynesia - Society Islands - Bora Bora, Huahine, Maupiti, Moorea, Raiatea, Tahaa and Tahiti.
4801
     * The collection of heterogeneous levelling networks throughout the Society Islands of French Polynesia.
4802
     */
4803
    public const EPSG_NIVELLEMENT_GENERAL_DE_POLYNESIE_FRANCAISE = 'urn:ogc:def:datum:EPSG::5195';
4804
4805
    /**
4806
     * Nivellement General de la Corse 1948
4807
     * Type: Vertical
4808
     * Extent: France - Corsica onshore.
4809
     * Mean sea level at Ajaccio between 1912 and 1937.
4810
     * Replaced by IGN78 Corsica (datum 5120).
4811
     */
4812
    public const EPSG_NIVELLEMENT_GENERAL_DE_LA_CORSE_1948 = 'urn:ogc:def:datum:EPSG::5189';
4813
4814
    /**
4815
     * Nivellement General de la France - IGN69
4816
     * Type: Vertical
4817
     * Extent: France - mainland onshore.
4818
     * Rivet number M.ac O-VIII on the Marseille tide gauge site, with the height fixed in 1897 at 1.661 metre above
4819
     * mean sea level between February 2nd 1885 and January 1st 1897.
4820
     * Uses Normal heights.
4821
     */
4822
    public const EPSG_NIVELLEMENT_GENERAL_DE_LA_FRANCE_IGN69 = 'urn:ogc:def:datum:EPSG::5119';
4823
4824
    /**
4825
     * Nivellement General de la France - IGN78
4826
     * Type: Vertical
4827
     * Extent: France - Corsica onshore.
4828
     * Marker MM3 situated on the tide gauge site of Ajaccio. Height is 3.640 metre above mean sea level.
4829
     * Uses Normal heights. Replaces NGC (datum code 5189).
4830
     */
4831
    public const EPSG_NIVELLEMENT_GENERAL_DE_LA_FRANCE_IGN78 = 'urn:ogc:def:datum:EPSG::5120';
4832
4833
    /**
4834
     * Nivellement General de la France - Lallemand
4835
     * Type: Vertical
4836
     * Extent: France - mainland onshore.
4837
     * Rivet number M.ac O-VIII on the Marseille tide gauge site, with the height fixed in 1897 at 1.661 metre above
4838
     * mean sea level between February 2nd 1885 and January 1st 1897.
4839
     * Orthometric heights.
4840
     */
4841
    public const EPSG_NIVELLEMENT_GENERAL_DE_LA_FRANCE_LALLEMAND = 'urn:ogc:def:datum:EPSG::5118';
4842
4843
    /**
4844
     * Nivellement General du Luxembourg 1995
4845
     * Type: Vertical
4846
     * Extent: Luxembourg.
4847
     * Reference point Wemperhardt defined as 528.030m above Normaal Amsterdams Peil (NAP). Datum at NAP is mean high
4848
     * tide in 1684. Network adjusted in 1995.
4849
     * Pseudo-orthometric heights.
4850
     */
4851
    public const EPSG_NIVELLEMENT_GENERAL_DU_LUXEMBOURG_1995 = 'urn:ogc:def:datum:EPSG::5172';
4852
4853
    /**
4854
     * Nord Sahara 1959
4855
     * Type: Geodetic
4856
     * Extent: Algeria - onshore and offshore.
4857
     * Coordinates of primary network readjusted on ED50 datum and then transformed conformally to Clarke 1880 (RGS)
4858
     * ellipsoid.
4859
     * Adjustment includes Morocco and Tunisia but use only in Algeria. Within Algeria the adjustment is north of 32°N
4860
     * but use has been extended southwards in many disconnected projects, some based on independent astro stations
4861
     * rather than the geodetic network.
4862
     */
4863
    public const EPSG_NORD_SAHARA_1959 = 'urn:ogc:def:datum:EPSG::6307';
4864
4865
    /**
4866
     * Normaal Amsterdams Peil
4867
     * Type: Vertical
4868
     * Extent: Netherlands - onshore and offshore.
4869
     * Mean high tide at Amsterdam in 1684. Onshore NAP is defined by the published heights of benchmarks and since
4870
     * 2018 extended offshore defined by the application of the official transformation from ETRS89, RDNAPTRANS(TM).
4871
     * Orthometric heights. From 2018, use has been extended from Netherlands onshore to Netherlands onshore and
4872
     * offshore.
4873
     */
4874
    public const EPSG_NORMAAL_AMSTERDAMS_PEIL = 'urn:ogc:def:datum:EPSG::5109';
4875
4876
    /**
4877
     * North American Datum 1927
4878
     * Type: Geodetic
4879
     * Extent: North and central America: Antigua and Barbuda - onshore. Bahamas - onshore plus offshore over internal
4880
     * continental shelf only. Belize - onshore. British Virgin Islands - onshore. Canada onshore - Alberta, British
4881
     * Columbia, Manitoba, New Brunswick, Newfoundland and Labrador, Northwest Territories, Nova Scotia, Nunavut,
4882
     * Ontario, Prince Edward Island, Quebec, Saskatchewan and Yukon - plus offshore east coast. Cuba - onshore and
4883
     * offshore. El Salvador - onshore. Guatemala - onshore. Honduras - onshore. Panama - onshore. Puerto Rico -
4884
     * onshore. Mexico - onshore plus offshore east coast. Nicaragua - onshore. United States (USA) onshore and
4885
     * offshore - Alabama, Alaska, Arizona, Arkansas, California, Colorado, Connecticut, Delaware, Florida, Georgia,
4886
     * Idaho, Illinois, Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Maryland, Massachusetts, Michigan,
4887
     * Minnesota, Mississippi, Missouri, Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York,
4888
     * North Carolina, North Dakota, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, South Dakota,
4889
     * Tennessee, Texas, Utah, Vermont, Virginia, Washington, West Virginia, Wisconsin and Wyoming - plus offshore . US
4890
     * Virgin Islands - onshore.
4891
     * Fundamental point: Meade's Ranch. Latitude: 39°13'26.686"N, longitude: 98°32'30.506"W (of Greenwich).
4892
     * In United States (USA) and Canada, replaced by North American Datum 1983 (NAD83) (code 6269) ; in Mexico,
4893
     * replaced by Mexican Datum of 1993 (code 1042).
4894
     */
4895
    public const EPSG_NORTH_AMERICAN_DATUM_1927 = 'urn:ogc:def:datum:EPSG::6267';
4896
4897
    /**
4898
     * North American Datum 1927 (1976)
4899
     * Type: Geodetic
4900
     * Extent: Canada - Ontario.
4901
     * Fundamental point: Meade's Ranch. Latitude: 39°13'26.686"N, longitude: 98°32'30.506"W (of Greenwich).
4902
     * NAD27(76) used in Ontario for all maps at scale 1/20 000 and larger; elsewhere in Canada for selected purposes.
4903
     */
4904
    public const EPSG_NORTH_AMERICAN_DATUM_1927_1976 = 'urn:ogc:def:datum:EPSG::6608';
4905
4906
    /**
4907
     * North American Datum 1927 (CGQ77)
4908
     * Type: Geodetic
4909
     * Extent: Canada - Quebec.
4910
     * Fundamental point: Meade's Ranch. Latitude: 39°13'26.686"N, longitude: 98°32'30.506"W (of Greenwich).
4911
     * NAD27 (CGQ77) used in Quebec for all maps at scale 1/20 000 and larger; generally for maps issued by the Quebec
4912
     * cartography office whose reference system is CGQ77.
4913
     */
4914
    public const EPSG_NORTH_AMERICAN_DATUM_1927_CGQ77 = 'urn:ogc:def:datum:EPSG::6609';
4915
4916
    /**
4917
     * North American Datum 1983
4918
     * Type: Geodetic
4919
     * Extent: North America - onshore and offshore: Canada - Alberta; British Columbia; Manitoba; New Brunswick;
4920
     * Newfoundland and Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec;
4921
     * Saskatchewan; Yukon. Puerto Rico. United States (USA) - Alabama; Alaska; Arizona; Arkansas; California;
4922
     * Colorado; Connecticut; Delaware; Florida; Georgia; Hawaii; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky;
4923
     * Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska;
4924
     * Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon;
4925
     * Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington;
4926
     * West Virginia; Wisconsin; Wyoming. US Virgin Islands. British Virgin Islands.
4927
     * NAD83 Doppler Transit stations in NWL 9D were aligned with the BIH Conventional Terrestrial Reference Frame
4928
     * (BTS) at epoch 1984.0 using an internationally adopted transformation. NAD83 is now known to be non-geocentric
4929
     * by about 2.2 meters.
4930
     * Although the 1986 adjustment included connections to Greenland and Mexico, it has not been adopted there. In
4931
     * Canada and US, replaced NAD27.
4932
     */
4933
    public const EPSG_NORTH_AMERICAN_DATUM_1983 = 'urn:ogc:def:datum:EPSG::6269';
4934
4935
    /**
4936
     * North American Datum of 1983 (CSRS) version 2
4937
     * Type: Geodetic
4938
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
4939
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
4940
     * Yukon.
4941
     * Defined at reference epoch 1997.0 by a transformation from ITRF96 (see transformation code 8259). The frame is
4942
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
4943
     * Published 1998-01-01; adopted by the Canadian federal government and the provincial governments of Alberta,
4944
     * Saskatchewan, Manitoba, Quebec, New Brunswick and Prince Edward Island. Replaces NAD83(CSRS96). Replaced by
4945
     * NAD83(CSRS)v3.
4946
     */
4947
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_2 = 'urn:ogc:def:datum:EPSG::1193';
4948
4949
    /**
4950
     * North American Datum of 1983 (CSRS) version 3
4951
     * Type: Geodetic
4952
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
4953
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
4954
     * Yukon.
4955
     * Defined at reference epoch 1997.0 by a transformation from ITRF97 (see transformation code 8260). The frame is
4956
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
4957
     * Published 1999-01-01; adopted by the Canadian federal government (2000) and the provincial governments of
4958
     * British Columbia (CRD in 2000, all Victoria Island 2005), Ontario (2008) and Nova Scotia (2000). Replaces
4959
     * NAD83(CSRS)v2. Replaced by NAD83(CSRS)v4.
4960
     */
4961
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_3 = 'urn:ogc:def:datum:EPSG::1194';
4962
4963
    /**
4964
     * North American Datum of 1983 (CSRS) version 4
4965
     * Type: Geodetic
4966
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
4967
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
4968
     * Yukon.
4969
     * Defined at reference epoch 2002.0 by a transformation from ITRF2000 (see transformation code 8261). The frame is
4970
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
4971
     * Published 2002-01-01; adopted by the Canadian federal government (2002) and the provincial governments of
4972
     * British Columbia (for mainland only, not Victoria Island) (2005) and Alberta (2004). Replaces NAD83(CSRS)v3.
4973
     * Replaced by NAD83(CSRS)v5.
4974
     */
4975
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_4 = 'urn:ogc:def:datum:EPSG::1195';
4976
4977
    /**
4978
     * North American Datum of 1983 (CSRS) version 5
4979
     * Type: Geodetic
4980
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
4981
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
4982
     * Yukon.
4983
     * Defined at reference epoch 2006.0 by a transformation from ITRF2005 (see transformation code 9227). The frame is
4984
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
4985
     * Published 2007-01-01; adopted by the Canadian federal government in 2007. Replaces NAD83(CSRS)v4. Replaced by
4986
     * NAD83(CSRS)v6.
4987
     */
4988
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_5 = 'urn:ogc:def:datum:EPSG::1196';
4989
4990
    /**
4991
     * North American Datum of 1983 (CSRS) version 6
4992
     * Type: Geodetic
4993
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
4994
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
4995
     * Yukon.
4996
     * Defined at reference epoch 2010.0 by a transformation from ITRF2008 (see transformation code 8264). The frame is
4997
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
4998
     * Published 2010-01-01; adopted by the Canadian government (2012) and the provincial governments of Manitoba
4999
     * (2014), Ontario (2013), Prince Edward Island (2014), Nova Scotia (2014) and Newfoundland (2012). Replaces
5000
     * NAD83(CSRSv5). Replaced by NAD83(CSRS)v7.
5001
     */
5002
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_6 = 'urn:ogc:def:datum:EPSG::1197';
5003
5004
    /**
5005
     * North American Datum of 1983 (CSRS) version 7
5006
     * Type: Geodetic
5007
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
5008
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
5009
     * Yukon.
5010
     * Defined at reference epoch 2010.0 by a transformation from ITRF2014 (see transformation code 8265). The frame is
5011
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
5012
     * Published 2017-05-01; adopted by the Canadian federal government (2017) and the provincial governments of
5013
     * Alberta (2021) and Prince Edward Island (2020). Replaces NAD83(CSRS)v6.
5014
     */
5015
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_7 = 'urn:ogc:def:datum:EPSG::1198';
5016
5017
    /**
5018
     * North American Datum of 1983 (CSRS96)
5019
     * Type: Geodetic
5020
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
5021
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
5022
     * Yukon.
5023
     * Defined at epoch 1988.0 by a transformation from ITRF92, the definition superseded by a transformation from
5024
     * ITRF93 and then by a transformation from ITRF94. (See transformation codes 8256-58).
5025
     * Adopted by the Canadian federal government from 1996-01-01. Replaces NAD83 [sometimes called NAD83(Original)].
5026
     * Replaced by NAD83(CSRS)v2.
5027
     */
5028
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS96 = 'urn:ogc:def:datum:EPSG::1192';
5029
5030
    /**
5031
     * North American Datum of 1983 (MARP00)
5032
     * Type: Geodetic
5033
     * Extent: Guam, Northern Mariana Islands and Palau; onshore and offshore.
5034
     * Defined by a time-dependent seven parameter transformation of ITRF2000 3D geocentric Cartesian coordinates and
5035
     * velocities at reference epoch 1993.62, aligned to the Mariana plate at other epochs based on an Euler pole
5036
     * rotation.
5037
     * Replaces NAD83(HARN) (GGN93) and NAD83(FBN) in Guam. Replaced by NAD83(MA11).
5038
     */
5039
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_MARP00 = 'urn:ogc:def:datum:EPSG::1221';
5040
5041
    /**
5042
     * North American Datum of 1983 (PACP00)
5043
     * Type: Geodetic
5044
     * Extent: American Samoa, Marshall Islands, United States (USA) - Hawaii, United States minor outlying islands;
5045
     * onshore and offshore.
5046
     * Defined by a time-dependent seven parameter transformation of ITRF2000 3D geocentric Cartesian coordinates and
5047
     * velocities at reference epoch 1993.62, aligned to the Pacific plate at other epochs based on an Euler pole
5048
     * rotation.
5049
     * Replaces NAD83(HARN) and NAD83(FBN) in Hawaii and American Samoa. Replaced by NAD83(PA11).
5050
     */
5051
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_PACP00 = 'urn:ogc:def:datum:EPSG::1249';
5052
5053
    /**
5054
     * North American Vertical Datum 1988
5055
     * Type: Vertical
5056
     * Extent: Mexico - onshore. United States (USA) - CONUS and Alaska - onshore - Alabama; Alaska; Arizona; Arkansas;
5057
     * California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky;
5058
     * Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska;
5059
     * Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon;
5060
     * Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington;
5061
     * West Virginia; Wisconsin; Wyoming.
5062
     * Mean water level 1970-1983 at Pointe-au-Père (Father's Point) and 1984-1988 at Rimouski, Quebec. Benchmark
5063
     * 1250-G = 6.273m.
5064
     * Helmert orthometric heights.
5065
     */
5066
    public const EPSG_NORTH_AMERICAN_VERTICAL_DATUM_1988 = 'urn:ogc:def:datum:EPSG::5103';
5067
5068
    /**
5069
     * North Rona
5070
     * Type: Vertical
5071
     * Extent: United Kingdom (UK) - Great Britain - Scotland - North Rona onshore.
5072
     * Orthometric heights.
5073
     */
5074
    public const EPSG_NORTH_RONA = 'urn:ogc:def:datum:EPSG::5143';
5075
5076
    /**
5077
     * Northern Marianas Vertical Datum of 2003
5078
     * Type: Vertical
5079
     * Extent: Northern Mariana Islands - onshore - Rota, Saipan and Tinian.
5080
     * Mean sea level at Tanapag harbor, Saipan. Benchmark 1633227 TIDAL UH-2C = 1.657m relative to National Tidal
5081
     * Datum Epoch 1983-2001. Transferred to Rota (East Harbor, BM TIDAL 3 = 1.482m) and Tinian (Harbor BM TIDAL 1 =
5082
     * 2.361m).
5083
     * Replaces all earlier vertical datums on these islands.
5084
     */
5085
    public const EPSG_NORTHERN_MARIANAS_VERTICAL_DATUM_OF_2003 = 'urn:ogc:def:datum:EPSG::1119';
5086
5087
    /**
5088
     * Norway Normal Null 1954
5089
     * Type: Vertical
5090
     * Extent: Norway - onshore.
5091
     * MSL defined by regression at 7 gauges with between 17 and 67 years observations.
5092
     * Includes initial NN1954 system and NNN1957 system. Former name retained. Normal-orthometric heights. Replaced by
5093
     * NN2000.
5094
     */
5095
    public const EPSG_NORWAY_NORMAL_NULL_1954 = 'urn:ogc:def:datum:EPSG::5174';
5096
5097
    /**
5098
     * Norway Normal Null 2000
5099
     * Type: Vertical
5100
     * Extent: Norway - onshore.
5101
     * Adjustment is referenced to mean high tide at Amsterdams Peil in 1684. To account for land level movements
5102
     * caused by isostatic rebound, heights are reduced to epoch 2000.0 using values computed from the NKG2005LU uplift
5103
     * model.
5104
     * Replaces NN54. Uses Normal heights.
5105
     */
5106
    public const EPSG_NORWAY_NORMAL_NULL_2000 = 'urn:ogc:def:datum:EPSG::1096';
5107
5108
    /**
5109
     * Norwegian Chart Datum
5110
     * Type: Vertical
5111
     * Extent: Norway (offshore) and Svalbard and Jan Mayen (offshore).
5112
     * LAT (sum of all harmonic constituents) with an added safety margin in areas where low water levels frequently
5113
     * deviate from LAT. The safety margin is 20 cm from Utsira to the Swedish border and 30 cm in the inner part of
5114
     * the Oslofjord (north of Drøbak).
5115
     * Prior to 2000-01-01 the definition of chart datum was Z0 = M2 + S2 + N2 + K2 + K1 + ½Sa plus safety margins (10
5116
     * cm north of Hordaland, 20 cm in Hordaland, 30 cm from Rogaland to the Swedish border and 40 cm in the inner
5117
     * parts of the Oslofjord).
5118
     */
5119
    public const EPSG_NORWEGIAN_CHART_DATUM = 'urn:ogc:def:datum:EPSG::1301';
5120
5121
    /**
5122
     * Not specified (based on Airy 1830 ellipsoid)
5123
     * Type: Geodetic
5124
     * Extent: World.
5125
     * Included for coordinate reference systems where datum is unknown.
5126
     */
5127
    public const EPSG_NOT_SPECIFIED_BASED_ON_AIRY_1830_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6001';
5128
5129
    /**
5130
     * Not specified (based on Airy Modified 1849 ellipsoid)
5131
     * Type: Geodetic
5132
     * Extent: World.
5133
     * Included for coordinate reference systems where datum is unknown.
5134
     */
5135
    public const EPSG_NOT_SPECIFIED_BASED_ON_AIRY_MODIFIED_1849_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6002';
5136
5137
    /**
5138
     * Not specified (based on Australian National Spheroid)
5139
     * Type: Geodetic
5140
     * Extent: World.
5141
     * Included for coordinate reference systems where datum is unknown.
5142
     */
5143
    public const EPSG_NOT_SPECIFIED_BASED_ON_AUSTRALIAN_NATIONAL_SPHEROID = 'urn:ogc:def:datum:EPSG::6003';
5144
5145
    /**
5146
     * Not specified (based on Average Terrestrial System 1977 ellipsoid)
5147
     * Type: Geodetic
5148
     * Extent: World.
5149
     * Included for coordinate reference systems where datum is unknown.
5150
     */
5151
    public const EPSG_NOT_SPECIFIED_BASED_ON_AVERAGE_TERRESTRIAL_SYSTEM_1977_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6041';
5152
5153
    /**
5154
     * Not specified (based on Bessel 1841 ellipsoid)
5155
     * Type: Geodetic
5156
     * Extent: World.
5157
     * Included for coordinate reference systems where datum is unknown.
5158
     */
5159
    public const EPSG_NOT_SPECIFIED_BASED_ON_BESSEL_1841_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6004';
5160
5161
    /**
5162
     * Not specified (based on Bessel Modified ellipsoid)
5163
     * Type: Geodetic
5164
     * Extent: World.
5165
     * Included for coordinate reference systems where datum is unknown.
5166
     */
5167
    public const EPSG_NOT_SPECIFIED_BASED_ON_BESSEL_MODIFIED_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6005';
5168
5169
    /**
5170
     * Not specified (based on Bessel Namibia ellipsoid)
5171
     * Type: Geodetic
5172
     * Extent: World.
5173
     * Included for coordinate reference systems where datum is unknown.
5174
     */
5175
    public const EPSG_NOT_SPECIFIED_BASED_ON_BESSEL_NAMIBIA_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6006';
5176
5177
    /**
5178
     * Not specified (based on Clarke 1858 ellipsoid)
5179
     * Type: Geodetic
5180
     * Extent: World.
5181
     * Included for coordinate reference systems where datum is unknown.
5182
     */
5183
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1858_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6007';
5184
5185
    /**
5186
     * Not specified (based on Clarke 1866 Authalic Sphere)
5187
     * Type: Geodetic
5188
     * Extent: World.
5189
     * Included for coordinate reference systems where datum is unknown.
5190
     */
5191
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1866_AUTHALIC_SPHERE = 'urn:ogc:def:datum:EPSG::6052';
5192
5193
    /**
5194
     * Not specified (based on Clarke 1866 ellipsoid)
5195
     * Type: Geodetic
5196
     * Extent: World.
5197
     * Included for coordinate reference systems where datum is unknown.
5198
     */
5199
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1866_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6008';
5200
5201
    /**
5202
     * Not specified (based on Clarke 1880 (Arc) ellipsoid)
5203
     * Type: Geodetic
5204
     * Extent: World.
5205
     * Included for coordinate reference systems where datum is unknown.
5206
     */
5207
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_ARC_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6013';
5208
5209
    /**
5210
     * Not specified (based on Clarke 1880 (Benoit) ellipsoid)
5211
     * Type: Geodetic
5212
     * Extent: World.
5213
     * Included for coordinate reference systems where datum is unknown.
5214
     */
5215
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_BENOIT_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6010';
5216
5217
    /**
5218
     * Not specified (based on Clarke 1880 (IGN) ellipsoid)
5219
     * Type: Geodetic
5220
     * Extent: World.
5221
     * Included for coordinate reference systems where datum is unknown.
5222
     */
5223
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_IGN_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6011';
5224
5225
    /**
5226
     * Not specified (based on Clarke 1880 (RGS) ellipsoid)
5227
     * Type: Geodetic
5228
     * Extent: World.
5229
     * Included for coordinate reference systems where datum is unknown.
5230
     */
5231
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_RGS_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6012';
5232
5233
    /**
5234
     * Not specified (based on Clarke 1880 (SGA 1922) ellipsoid)
5235
     * Type: Geodetic
5236
     * Extent: World.
5237
     * Included for coordinate reference systems where datum is unknown.
5238
     */
5239
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_SGA_1922_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6014';
5240
5241
    /**
5242
     * Not specified (based on Clarke 1880 ellipsoid)
5243
     * Type: Geodetic
5244
     * Extent: World.
5245
     * Included for coordinate reference systems where datum is unknown.
5246
     */
5247
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6034';
5248
5249
    /**
5250
     * Not specified (based on Everest (1830 Definition) ellipsoid)
5251
     * Type: Geodetic
5252
     * Extent: World.
5253
     * Included for coordinate reference systems where datum is unknown.
5254
     */
5255
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_DEFINITION_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6042';
5256
5257
    /**
5258
     * Not specified (based on Everest 1830 (1937 Adjustment) ellipsoid)
5259
     * Type: Geodetic
5260
     * Extent: World.
5261
     * Included for coordinate reference systems where datum is unknown.
5262
     */
5263
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_1937_ADJUSTMENT_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6015';
5264
5265
    /**
5266
     * Not specified (based on Everest 1830 (1962 Definition) ellipsoid)
5267
     * Type: Geodetic
5268
     * Extent: World.
5269
     * Included for coordinate reference systems where datum is unknown.
5270
     */
5271
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_1962_DEFINITION_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6044';
5272
5273
    /**
5274
     * Not specified (based on Everest 1830 (1967 Definition) ellipsoid)
5275
     * Type: Geodetic
5276
     * Extent: World.
5277
     * Included for coordinate reference systems where datum is unknown.
5278
     */
5279
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_1967_DEFINITION_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6016';
5280
5281
    /**
5282
     * Not specified (based on Everest 1830 (1975 Definition) ellipsoid)
5283
     * Type: Geodetic
5284
     * Extent: World.
5285
     * Included for coordinate reference systems where datum is unknown.
5286
     */
5287
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_1975_DEFINITION_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6045';
5288
5289
    /**
5290
     * Not specified (based on Everest 1830 Modified ellipsoid)
5291
     * Type: Geodetic
5292
     * Extent: World.
5293
     * Included for coordinate reference systems where datum is unknown.
5294
     */
5295
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_MODIFIED_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6018';
5296
5297
    /**
5298
     * Not specified (based on GEM 10C ellipsoid)
5299
     * Type: Geodetic
5300
     * Extent: World.
5301
     * Included for coordinate reference systems where datum is unknown.
5302
     */
5303
    public const EPSG_NOT_SPECIFIED_BASED_ON_GEM_10C_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6031';
5304
5305
    /**
5306
     * Not specified (based on GRS 1967 ellipsoid)
5307
     * Type: Geodetic
5308
     * Extent: World.
5309
     * Included for coordinate reference systems where datum is unknown.
5310
     */
5311
    public const EPSG_NOT_SPECIFIED_BASED_ON_GRS_1967_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6036';
5312
5313
    /**
5314
     * Not specified (based on GRS 1980 Authalic Sphere)
5315
     * Type: Geodetic
5316
     * Extent: World.
5317
     * Included for coordinate reference systems where datum is unknown.
5318
     */
5319
    public const EPSG_NOT_SPECIFIED_BASED_ON_GRS_1980_AUTHALIC_SPHERE = 'urn:ogc:def:datum:EPSG::6047';
5320
5321
    /**
5322
     * Not specified (based on GRS 1980 ellipsoid)
5323
     * Type: Geodetic
5324
     * Extent: World.
5325
     * Included for coordinate reference systems where datum is unknown.
5326
     */
5327
    public const EPSG_NOT_SPECIFIED_BASED_ON_GRS_1980_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6019';
5328
5329
    /**
5330
     * Not specified (based on Helmert 1906 ellipsoid)
5331
     * Type: Geodetic
5332
     * Extent: World.
5333
     * Included for coordinate reference systems where datum is unknown.
5334
     */
5335
    public const EPSG_NOT_SPECIFIED_BASED_ON_HELMERT_1906_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6020';
5336
5337
    /**
5338
     * Not specified (based on Hughes 1980 ellipsoid)
5339
     * Type: Geodetic
5340
     * Extent: World.
5341
     * Included for coordinate reference systems where datum is unknown.
5342
     */
5343
    public const EPSG_NOT_SPECIFIED_BASED_ON_HUGHES_1980_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6054';
5344
5345
    /**
5346
     * Not specified (based on Indonesian National Spheroid)
5347
     * Type: Geodetic
5348
     * Extent: World.
5349
     * Included for coordinate reference systems where datum is unknown.
5350
     */
5351
    public const EPSG_NOT_SPECIFIED_BASED_ON_INDONESIAN_NATIONAL_SPHEROID = 'urn:ogc:def:datum:EPSG::6021';
5352
5353
    /**
5354
     * Not specified (based on International 1924 Authalic Sphere)
5355
     * Type: Geodetic
5356
     * Extent: World.
5357
     * Included for coordinate reference systems where datum is unknown.
5358
     */
5359
    public const EPSG_NOT_SPECIFIED_BASED_ON_INTERNATIONAL_1924_AUTHALIC_SPHERE = 'urn:ogc:def:datum:EPSG::6053';
5360
5361
    /**
5362
     * Not specified (based on International 1924 ellipsoid)
5363
     * Type: Geodetic
5364
     * Extent: World.
5365
     * Included for coordinate reference systems where datum is unknown.
5366
     */
5367
    public const EPSG_NOT_SPECIFIED_BASED_ON_INTERNATIONAL_1924_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6022';
5368
5369
    /**
5370
     * Not specified (based on Krassowsky 1940 ellipsoid)
5371
     * Type: Geodetic
5372
     * Extent: World.
5373
     * Included for coordinate reference systems where datum is unknown.
5374
     */
5375
    public const EPSG_NOT_SPECIFIED_BASED_ON_KRASSOWSKY_1940_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6024';
5376
5377
    /**
5378
     * Not specified (based on NWL 9D ellipsoid)
5379
     * Type: Geodetic
5380
     * Extent: World.
5381
     * Included for coordinate reference systems where datum is unknown.
5382
     */
5383
    public const EPSG_NOT_SPECIFIED_BASED_ON_NWL_9D_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6025';
5384
5385
    /**
5386
     * Not specified (based on OSU86F ellipsoid)
5387
     * Type: Geodetic
5388
     * Extent: World.
5389
     * Included for coordinate reference systems where datum is unknown.
5390
     */
5391
    public const EPSG_NOT_SPECIFIED_BASED_ON_OSU86F_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6032';
5392
5393
    /**
5394
     * Not specified (based on OSU91A ellipsoid)
5395
     * Type: Geodetic
5396
     * Extent: World.
5397
     * Included for coordinate reference systems where datum is unknown.
5398
     */
5399
    public const EPSG_NOT_SPECIFIED_BASED_ON_OSU91A_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6033';
5400
5401
    /**
5402
     * Not specified (based on Plessis 1817 ellipsoid)
5403
     * Type: Geodetic
5404
     * Extent: World.
5405
     * Included for coordinate reference systems where datum is unknown.
5406
     */
5407
    public const EPSG_NOT_SPECIFIED_BASED_ON_PLESSIS_1817_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6027';
5408
5409
    /**
5410
     * Not specified (based on Struve 1860 ellipsoid)
5411
     * Type: Geodetic
5412
     * Extent: World.
5413
     * Included for coordinate reference systems where datum is unknown.
5414
     */
5415
    public const EPSG_NOT_SPECIFIED_BASED_ON_STRUVE_1860_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6028';
5416
5417
    /**
5418
     * Not specified (based on WGS 72 ellipsoid)
5419
     * Type: Geodetic
5420
     * Extent: World.
5421
     * Included for coordinate reference systems where datum is unknown.
5422
     */
5423
    public const EPSG_NOT_SPECIFIED_BASED_ON_WGS_72_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6043';
5424
5425
    /**
5426
     * Not specified (based on WGS 84 ellipsoid)
5427
     * Type: Geodetic
5428
     * Extent: World.
5429
     * Included for coordinate reference systems where datum is unknown.
5430
     */
5431
    public const EPSG_NOT_SPECIFIED_BASED_ON_WGS_84_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6030';
5432
5433
    /**
5434
     * Not specified (based on War Office ellipsoid)
5435
     * Type: Geodetic
5436
     * Extent: World.
5437
     * Included for coordinate reference systems where datum is unknown.
5438
     */
5439
    public const EPSG_NOT_SPECIFIED_BASED_ON_WAR_OFFICE_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6029';
5440
5441
    /**
5442
     * Nouakchott 1965
5443
     * Type: Geodetic
5444
     * Extent: Mauritania - coastal area south of Cape Timiris.
5445
     * Nouakchott astronomical point.
5446
     * Triangulation limited to environs of Nouakchott. Extended in 1982 by satellite translocation from a single
5447
     * station "Ruines" to support Syledis chain for offshore operations. Replaced by Mauritania 1999 (datum code
5448
     * 6602).
5449
     */
5450
    public const EPSG_NOUAKCHOTT_1965 = 'urn:ogc:def:datum:EPSG::6680';
5451
5452
    /**
5453
     * Nouvelle Triangulation Francaise
5454
     * Type: Geodetic
5455
     * Extent: France - onshore - mainland and Corsica.
5456
     * Fundamental point: Pantheon. Latitude: 48°50'46.522"N, longitude: 2°20'48.667"E (of Greenwich).
5457
     */
5458
    public const EPSG_NOUVELLE_TRIANGULATION_FRANCAISE = 'urn:ogc:def:datum:EPSG::6275';
5459
5460
    /**
5461
     * Nouvelle Triangulation Francaise (Paris)
5462
     * Type: Geodetic
5463
     * Extent: France - onshore - mainland and Corsica.
5464
     * Fundamental point: Pantheon. Latitude: 54.273618g N, longitude: 0.0106921g E (of Paris).
5465
     */
5466
    public const EPSG_NOUVELLE_TRIANGULATION_FRANCAISE_PARIS = 'urn:ogc:def:datum:EPSG::6807';
5467
5468
    /**
5469
     * OS (SN) 1980
5470
     * Type: Geodetic
5471
     * Extent: Ireland - onshore. United Kingdom (UK) - onshore - England; Scotland; Wales; Northern Ireland. Isle of
5472
     * Man.
5473
     * Fundamental point: Herstmonceux. Latitude: 50°51'55.271"N, longitude: 0°20'45.882"E (of Greenwich).
5474
     */
5475
    public const EPSG_OS_SN_1980 = 'urn:ogc:def:datum:EPSG::6279';
5476
5477
    /**
5478
     * OSGB 1970 (SN)
5479
     * Type: Geodetic
5480
     * Extent: United Kingdom (UK) - Great Britain - England and Wales onshore, Scotland onshore and Western Isles
5481
     * nearshore including Sea of the Hebrides and The Minch; Isle of Man onshore.
5482
     * Fundamental point: Herstmonceux. Latitude: 50°51'55.271"N, longitude: 0°20'45.882"E (of Greenwich).
5483
     */
5484
    public const EPSG_OSGB_1970_SN = 'urn:ogc:def:datum:EPSG::6278';
5485
5486
    /**
5487
     * OSNI 1952
5488
     * Type: Geodetic
5489
     * Extent: United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
5490
     * Position fixed to the coordinates from the 19th century Principle Triangulation of station Divis. Scale and
5491
     * orientation controlled by position of Principle Triangulation stations Knocklayd and Trostan.
5492
     * Replaced by Geodetic Datum of 1965 alias 1975 Mapping Adjustment or TM75 (datum code 6300).
5493
     */
5494
    public const EPSG_OSNI_1952 = 'urn:ogc:def:datum:EPSG::6188';
5495
5496
    /**
5497
     * Observatario
5498
     * Type: Geodetic
5499
     * Extent: Mozambique - south.
5500
     * Fundamental point: Campos Rodrigues observatory, Maputo.
5501
     * Replaced by transformation to Tete datum (datum code 6127).
5502
     */
5503
    public const EPSG_OBSERVATARIO = 'urn:ogc:def:datum:EPSG::6129';
5504
5505
    /**
5506
     * Ocotepeque 1935
5507
     * Type: Geodetic
5508
     * Extent: Costa Rica; El Salvador; Guatemala; Honduras; Nicaragua.
5509
     * Fundamental point: Base Norte. Latitude: 14°26'20.168"N, longitude: 89°11'33.964"W.
5510
     * Replaced in Costa Rica by Costa Rica 2005 (CR05) from March 2007 and replaced in El Salvador by SIRGAS_ES2007
5511
     * from August 2007.
5512
     */
5513
    public const EPSG_OCOTEPEQUE_1935 = 'urn:ogc:def:datum:EPSG::1070';
5514
5515
    /**
5516
     * Old Hawaiian
5517
     * Type: Geodetic
5518
     * Extent: United States (USA) - Hawaii - main islands onshore.
5519
     * Fundamental point: Oahu West Base Astro.  Latitude: 21°18'13.89"N, longitude 157°50'55.79"W (of Greenwich)
5520
     * Hawaiian Islands were never on NAD27 but rather on Old Hawaiian Datum.  NADCON conversion program provides
5521
     * transformation from Old Hawaiian Datum to NAD83 (original 1986 realization) but making the transformation appear
5522
     * to user as if from NAD27.
5523
     */
5524
    public const EPSG_OLD_HAWAIIAN = 'urn:ogc:def:datum:EPSG::6135';
5525
5526
    /**
5527
     * Oman National Geodetic Datum 2014
5528
     * Type: Geodetic
5529
     * Extent: Oman - onshore and offshore.
5530
     * 20 stations of the Oman primary network tied to ITRF2008 at epoch 2013.15.
5531
     * Replaces WGS 84 (G873). Replaced by ONGD17.
5532
     */
5533
    public const EPSG_OMAN_NATIONAL_GEODETIC_DATUM_2014 = 'urn:ogc:def:datum:EPSG::1147';
5534
5535
    /**
5536
     * Oman National Geodetic Datum 2017
5537
     * Type: Geodetic
5538
     * Extent: Oman - onshore and offshore.
5539
     * Oman primary network of 39 stations tied to ITRF2014 at epoch 2017.24.
5540
     * Replaces ONGD14 from March 2019.
5541
     */
5542
    public const EPSG_OMAN_NATIONAL_GEODETIC_DATUM_2017 = 'urn:ogc:def:datum:EPSG::1263';
5543
5544
    /**
5545
     * One Tree Point 1964
5546
     * Type: Vertical
5547
     * Extent: New Zealand - North Island - One Tree Point vertical CRS area.
5548
     * MSL at Whangarei harbour 1960-1963.
5549
     */
5550
    public const EPSG_ONE_TREE_POINT_1964 = 'urn:ogc:def:datum:EPSG::5165';
5551
5552
    /**
5553
     * Ordnance Datum Newlyn
5554
     * Type: Vertical
5555
     * Extent: United Kingdom (UK) - Great Britain onshore - England and Wales - mainland; Scotland - mainland and
5556
     * Inner Hebrides.
5557
     * Mean Sea Level at Newlyn between 1915 and 1921. Initially realised through 1921 and then 1956 levelling network
5558
     * adjustments. From 2002 redefined to be realised through OSGM geoid models.
5559
     * Orthometric heights.
5560
     */
5561
    public const EPSG_ORDNANCE_DATUM_NEWLYN = 'urn:ogc:def:datum:EPSG::5101';
5562
5563
    /**
5564
     * Ordnance Datum Newlyn (Offshore)
5565
     * Type: Vertical
5566
     * Extent: United Kingdom (UK) - offshore between 2km from shore and boundary of UKCS within 49°46'N to 61°01'N
5567
     * and 7°33'W to 3°33'E.
5568
     * Defined by OSGM geoid model.
5569
     * Extension of Ordnance Datum Newlyn offshore through geoid model. Orthometric heights.
5570
     */
5571
    public const EPSG_ORDNANCE_DATUM_NEWLYN_OFFSHORE = 'urn:ogc:def:datum:EPSG::1164';
5572
5573
    /**
5574
     * Ordnance Datum Newlyn (Orkney Isles)
5575
     * Type: Vertical
5576
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Orkney Islands onshore.
5577
     * Connected to Newlyn datum by triangulation from the British mainland. Initially realised through levelling
5578
     * network adjustment, from 2002 redefined to be realised through OSGM geoid model.
5579
     * Considered as separate from Newlyn because the accuracy of the trigonometric connection across the Pentland
5580
     * Firth does not meet geodetic levelling specifications. Orthometric heights.
5581
     */
5582
    public const EPSG_ORDNANCE_DATUM_NEWLYN_ORKNEY_ISLES = 'urn:ogc:def:datum:EPSG::5138';
5583
5584
    /**
5585
     * Ordnance Survey of Great Britain 1936
5586
     * Type: Geodetic
5587
     * Extent: United Kingdom (UK) - offshore to boundary of UKCS within 49°45'N to 61°N and 9°W to 2°E; onshore
5588
     * Great Britain (England, Wales and Scotland). Isle of Man onshore.
5589
     * Prior to 2002 fundamental point: Herstmonceux, Latitude: 50°51'55.271"N, longitude: 0°20'45.882"E,
5590
     * triangulation adjustment started 1936, completed 1962. From April 2002 the datum is defined through the
5591
     * application of the OSTN transformation from ETRS89.
5592
     * The average accuracy of OSTN compared to the old triangulation network (down to 3rd order) is 0.1m. With the
5593
     * introduction of OSTN15, the area for OGSB36 has effectively been extended from Britain to cover the adjacent UK
5594
     * Continental Shelf.
5595
     */
5596
    public const EPSG_ORDNANCE_SURVEY_OF_GREAT_BRITAIN_1936 = 'urn:ogc:def:datum:EPSG::6277';
5597
5598
    /**
5599
     * Ostend
5600
     * Type: Vertical
5601
     * Extent: Belgium - onshore.
5602
     * Mean low water at Ostend 1855-78 transferred to benchmark GIKMN at Uccle.
5603
     * Realized through the second general levelling (DNG or TAW) 1981-1999.
5604
     */
5605
    public const EPSG_OSTEND = 'urn:ogc:def:datum:EPSG::5110';
5606
5607
    /**
5608
     * PDO Height Datum 1993
5609
     * Type: Vertical
5610
     * Extent: Oman - onshore. Includes Musandam and the Kuria Muria (Al Hallaniyah) islands.
5611
     * Misclosure between Muscat and Salalah less than .5 meters with differences from of up to 5 meters from old Fahud
5612
     * Datum.  The PHD93 adjustment was initially known as the Spine.  Replaces Fahud Vertical Datum (code 5124) from
5613
     * 1993.
5614
     */
5615
    public const EPSG_PDO_HEIGHT_DATUM_1993 = 'urn:ogc:def:datum:EPSG::5123';
5616
5617
    /**
5618
     * PDO Survey Datum 1993
5619
     * Type: Geodetic
5620
     * Extent: Oman - onshore. Includes Musandam and the Kuria Muria (Al Hallaniyah) islands.
5621
     * Adjustment best fitted to Fahud network.
5622
     * Replaces Fahud datum (code 6232). Maximum differences to Fahud adjustment are 20 metres.
5623
     */
5624
    public const EPSG_PDO_SURVEY_DATUM_1993 = 'urn:ogc:def:datum:EPSG::6134';
5625
5626
    /**
5627
     * PNG08
5628
     * Type: Vertical
5629
     * Extent: Papua New Guinea - between 0°N and 12°S and 140°E and 158°E - onshore and offshore.
5630
     * Mean sea level at 8 tide gauges around PNG, defined through application of PNG08 geoid model (transformation
5631
     * code 7655) to PNG94 (CRS code 5545).
5632
     */
5633
    public const EPSG_PNG08 = 'urn:ogc:def:datum:EPSG::1149';
5634
5635
    /**
5636
     * Palestine 1923
5637
     * Type: Geodetic
5638
     * Extent: Israel - onshore; Jordan; Palestine Territory - onshore.
5639
     * Fundamental point: Point 82'M  Jerusalem. Latitude: 31°44' 2.749"N, longitude: 35°12'43.490"E (of Greenwich).
5640
     */
5641
    public const EPSG_PALESTINE_1923 = 'urn:ogc:def:datum:EPSG::6281';
5642
5643
    /**
5644
     * Pampa del Castillo
5645
     * Type: Geodetic
5646
     * Extent: Argentina - Chibut province south of approximately 42°30'S and Santa Cruz province north of
5647
     * approximately 50°20'S.
5648
     * Replaced by Campo Inchauspe (code 6221) for topographic mapping, use for oil exploration and production in Golfo
5649
     * San Jorge basin (44°S to 47.5°S) continues.
5650
     */
5651
    public const EPSG_PAMPA_DEL_CASTILLO = 'urn:ogc:def:datum:EPSG::6161';
5652
5653
    /**
5654
     * Panama-Colon 1911
5655
     * Type: Geodetic
5656
     * Extent: Panama - onshore.
5657
     * Fundamental point: Balboa Hill. Latitude: 09°04'57.637"N, longtitude: 79°43'50.313"W.
5658
     * Reports of the existence of an Ancon datum are probably erroneous, considering that the origin of the
5659
     * Panamá-Colón Datum of 1911 is at Balboa Hill and the access road up the hill is from the town of Ancon, Canal
5660
     * Zone.
5661
     */
5662
    public const EPSG_PANAMA_COLON_1911 = 'urn:ogc:def:datum:EPSG::1072';
5663
5664
    /**
5665
     * Papua New Guinea Geodetic Datum 1994
5666
     * Type: Geodetic
5667
     * Extent: Papua New Guinea - onshore and offshore. Includes Bismark archipelago, Louisade archipelago, Admiralty
5668
     * Islands, d'Entrecasteaux Islands, northern Solomon Islands, Trobriand Islands, New Britain, New Ireland,
5669
     * Woodlark, and associated islands.
5670
     * ITRF92 at epoch 1994.0.
5671
     * Adopted 1996. Coincident with WGS 84 in 1994 but rapidly divergent due to significant tectonic motion in PNG.
5672
     */
5673
    public const EPSG_PAPUA_NEW_GUINEA_GEODETIC_DATUM_1994 = 'urn:ogc:def:datum:EPSG::1076';
5674
5675
    /**
5676
     * Parametry Zemli 1990
5677
     * Type: Dynamic geodetic
5678
     * Extent: World.
5679
     * Defined through coordinates of stations of the satellite geodetic network (SGN) in Russia at epoch 1990.0.
5680
     * Replaced by PZ-90.02 from 2007-09-20.
5681
     */
5682
    public const EPSG_PARAMETRY_ZEMLI_1990 = 'urn:ogc:def:datum:EPSG::6740';
5683
5684
    /**
5685
     * Parametry Zemli 1990.02
5686
     * Type: Dynamic geodetic
5687
     * Extent: World.
5688
     * Defined through coordinates of 33 stations of the satellite geodetic network (SGN) in Russia and Antarctica
5689
     * adjusted to a subset of 14 IGS stations in Russia at epoch 2002.0. The IGS station coordinates are considered to
5690
     * be equivalent to ITRF2000.
5691
     * Replaces PZ-90 from 2007-09-20. Replaced by PZ-90.11 from 2014-01-15.
5692
     */
5693
    public const EPSG_PARAMETRY_ZEMLI_1990_02 = 'urn:ogc:def:datum:EPSG::1157';
5694
5695
    /**
5696
     * Parametry Zemli 1990.11
5697
     * Type: Dynamic geodetic
5698
     * Extent: World.
5699
     * Defined through coordinates of 33 stations of the satellite geodetic network (SGN) in Russia and Antarctica
5700
     * adjusted to a subset of 14 IGS stations in Russia at epoch 2010.0. The IGS station coordinates are considered to
5701
     * be equivalent to ITRF2008.
5702
     * Replaces PZ-90.02 from 2014-01-15.
5703
     */
5704
    public const EPSG_PARAMETRY_ZEMLI_1990_11 = 'urn:ogc:def:datum:EPSG::1158';
5705
5706
    /**
5707
     * Peru96
5708
     * Type: Geodetic
5709
     * Extent: Peru - onshore and offshore.
5710
     * Densification of SIRGAS95 network (ITRF94 at epoch 1995.4) in Peru, consisting of 47 passive geodetic stations
5711
     * and 3 continuous recording GPS stations.
5712
     * Densification of SIRGAS 1995 within Peru. Replaces PSAD56 (datum code 6248) in Peru.
5713
     */
5714
    public const EPSG_PERU96 = 'urn:ogc:def:datum:EPSG::1067';
5715
5716
    /**
5717
     * Petrels 1972
5718
     * Type: Geodetic
5719
     * Extent: Antarctica - Adelie Land - Petrels island.
5720
     * Fundamental point: Astro station DZ on Ile de Petrels. Latitude: 66°40'00"S, longitude: 140°00'46"E (of
5721
     * Greenwich).
5722
     */
5723
    public const EPSG_PETRELS_1972 = 'urn:ogc:def:datum:EPSG::6636';
5724
5725
    /**
5726
     * Philippine Reference System 1992
5727
     * Type: Geodetic
5728
     * Extent: Philippines - onshore and offshore.
5729
     * Fundamental point: Balacan. Latitude: 13°33'41.000"N, longitude: 121°52'03.000"E (of Greenwich),
5730
     * geoid-ellipsoid separation 0.34m.
5731
     * Replaces Luzon 1911 datum (code 6253).
5732
     */
5733
    public const EPSG_PHILIPPINE_REFERENCE_SYSTEM_1992 = 'urn:ogc:def:datum:EPSG::6683';
5734
5735
    /**
5736
     * Phoenix Islands 1966
5737
     * Type: Geodetic
5738
     * Extent: Kiribati - Phoenix Islands: Kanton, Orona, McKean Atoll, Birnie Atoll, Phoenix Seamounts.
5739
     */
5740
    public const EPSG_PHOENIX_ISLANDS_1966 = 'urn:ogc:def:datum:EPSG::6716';
5741
5742
    /**
5743
     * Pico de las Nieves 1968
5744
     * Type: Geodetic
5745
     * Extent: Spain - Canary Islands onshore.
5746
     * Pico de las Nieves mountain, Gran Canaria. The fundamental point is a different station to that for PN84.
5747
     * Replaced by PN84 only on western islands (El Hierro, La Gomera, La Palma and Tenerife). Both PN68 and PN84
5748
     * replaced by REGCAN95.
5749
     */
5750
    public const EPSG_PICO_DE_LAS_NIEVES_1968 = 'urn:ogc:def:datum:EPSG::1286';
5751
5752
    /**
5753
     * Pico de las Nieves 1984
5754
     * Type: Geodetic
5755
     * Extent: Spain - Canary Islands - El Hierro, La Gomera, La Palma and Tenerife - onshore.
5756
     * Pico de las Nieves mountain, Gran Canaria. The fundamental point is a different station to that for PN68.
5757
     * Replaces Pico de las Nieves 1968 (PN68) only on western islands (El Hierro, La Gomera, La Palma and Tenerife).
5758
     * Replaced by REGCAN95.
5759
     */
5760
    public const EPSG_PICO_DE_LAS_NIEVES_1984 = 'urn:ogc:def:datum:EPSG::6728';
5761
5762
    /**
5763
     * Piraeus Harbour 1986
5764
     * Type: Vertical
5765
     * Extent: Greece - onshore.
5766
     * MSL determined during 1986.
5767
     */
5768
    public const EPSG_PIRAEUS_HARBOUR_1986 = 'urn:ogc:def:datum:EPSG::5115';
5769
5770
    /**
5771
     * Pitcairn 1967
5772
     * Type: Geodetic
5773
     * Extent: Pitcairn - Pitcairn Island.
5774
     * Fundamental point: Pitcairn Astro. Latitude: 25°04'06.87"S, longitude: 130°06'47.83"W (of Greenwich).
5775
     * Replaced by Pitcairn 2006.
5776
     */
5777
    public const EPSG_PITCAIRN_1967 = 'urn:ogc:def:datum:EPSG::6729';
5778
5779
    /**
5780
     * Pitcairn 2006
5781
     * Type: Geodetic
5782
     * Extent: Pitcairn - Pitcairn Island.
5783
     * Fundamental point: Pitcairn Astro. Latitude: 25°04'06.7894"S, longitude: 130°06'46.6816"W (of Greenwich),
5784
     * derived by single point GPS oberservations.
5785
     * Replaces Pitcairn 1967.
5786
     */
5787
    public const EPSG_PITCAIRN_2006 = 'urn:ogc:def:datum:EPSG::6763';
5788
5789
    /**
5790
     * Point 58
5791
     * Type: Geodetic
5792
     * Extent: Senegal - central, Mali - southwest, Burkina Faso - central, Niger - southwest, Nigeria - north, Chad -
5793
     * central. All in proximity to the parallel of latitude of 12°N.
5794
     * Fundamental point: Point 58. Latitude: 12°52'44.045"N, longitude: 3°58'37.040"E (of Greenwich).
5795
     * Used as the basis for computation of the 12th Parallel traverse conducted 1966-70 from Senegal to Chad and
5796
     * connecting to the Blue Nile 1958 (Adindan) triangulation in Sudan.
5797
     */
5798
    public const EPSG_POINT_58 = 'urn:ogc:def:datum:EPSG::6620';
5799
5800
    /**
5801
     * Pointe Geologie Perroud 1950
5802
     * Type: Geodetic
5803
     * Extent: Antarctica - Adelie Land - coastal area between 136°E and 142°E.
5804
     * Fundamental point: Astro station G.0 on Pointe Geologie. Latitude: 66°39'30"S, longitude: 140°01'00"E (of
5805
     * Greenwich).
5806
     */
5807
    public const EPSG_POINTE_GEOLOGIE_PERROUD_1950 = 'urn:ogc:def:datum:EPSG::6637';
5808
5809
    /**
5810
     * Ponta Delgada
5811
     * Type: Vertical
5812
     * Extent: Portugal - eastern Azores - Sao Miguel island onshore.
5813
     * Mean Sea Level during 1991 at Ponta Delgada.
5814
     * Orthometric heights.
5815
     */
5816
    public const EPSG_PONTA_DELGADA = 'urn:ogc:def:datum:EPSG::1110';
5817
5818
    /**
5819
     * Poolbeg
5820
     * Type: Vertical
5821
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
5822
     * Low water mark of the spring tide on the 8 April 1837 at Poolbeg Lighthouse, Dublin.
5823
     * Topographic mapping before 1956 in Northern Ireland and 1970 in the Republic of Ireland. Replaced by Belfast
5824
     * Lough and Malin Head (datum codes 5130-31).
5825
     */
5826
    public const EPSG_POOLBEG = 'urn:ogc:def:datum:EPSG::5152';
5827
5828
    /**
5829
     * Port Moresby 1996
5830
     * Type: Vertical
5831
     * Extent: Papua New Guinea - onshore - Gulf province east of 144°24'E, Central province and National Capital
5832
     * District.
5833
     * BM198 (adjacent to the Port Moresby tide gauge) height of 3.02 above MSL as determined by CSIRO in 1990.
5834
     * Propagated through bilinear interpolation of EGM96 geoid model (transformation code 10084) reduced by offset of
5835
     * -1.58m.
5836
     * Offset has been determined by static GNSS estimation of ellipsoid height of BM198.
5837
     */
5838
    public const EPSG_PORT_MORESBY_1996 = 'urn:ogc:def:datum:EPSG::1171';
5839
5840
    /**
5841
     * Port Moresby 2008
5842
     * Type: Vertical
5843
     * Extent: Papua New Guinea - onshore - Gulf province east of 144°24'E, Central province and National Capital
5844
     * District.
5845
     * BM198 (adjacent to the Port Moresby tide gauge) height of 3.02 above MSL as determined by CSIRO in 1990.
5846
     * Propagated through bilinear interpolation of EGM2008 geoid model (transformation code 3858 or 3859) reduced by
5847
     * offset of -0.93m.
5848
     * Offset has been determined by static GNSS estimation of ellipsoid height of BM198 validated to a precision of 10
5849
     * cm by short period tidal observations at Kerema wharf in 2010.
5850
     */
5851
    public const EPSG_PORT_MORESBY_2008 = 'urn:ogc:def:datum:EPSG::1172';
5852
5853
    /**
5854
     * Porto Santo 1936
5855
     * Type: Geodetic
5856
     * Extent: Portugal - Madeira, Porto Santo and Desertas islands - onshore.
5857
     * SE Base on Porto Santo island.
5858
     * Replaced by 1995 adjustment (datum code 6663). For Selvagens see Selvagem Grande (code 6616).
5859
     */
5860
    public const EPSG_PORTO_SANTO_1936 = 'urn:ogc:def:datum:EPSG::6615';
5861
5862
    /**
5863
     * Porto Santo 1995
5864
     * Type: Geodetic
5865
     * Extent: Portugal - Madeira, Porto Santo and Desertas islands - onshore.
5866
     * SE Base on Porto Santo island. Origin and orientation constrained to those of the 1936 adjustment.
5867
     * Classical and GPS observations. Replaces 1936 adjustment (datum code 6615).
5868
     * For Selvagens see Selvagem Grande (datum code 6616).
5869
     */
5870
    public const EPSG_PORTO_SANTO_1995 = 'urn:ogc:def:datum:EPSG::6663';
5871
5872
    /**
5873
     * Posiciones Geodesicas Argentinas 1994
5874
     * Type: Geodetic
5875
     * Extent: Argentina - onshore and offshore.
5876
     * A geodetic network of 127 high accuracy surveyed points based on WGS 84 coordinates at time of survey that
5877
     * define the National Geodetic System (Sistema Geodésico Nacional). Surveyed between February and April 1993 and
5878
     * between March and May 1994.
5879
     * Defined the National Geodetic Reference Network from 9th May 1997. Technically, but not legally, replaced by
5880
     * POSGAR 98 (datum code 6190) until May 2009, when POSGAR 2007 (datum code 1062) was officially replaced POSGAR
5881
     * 94.
5882
     */
5883
    public const EPSG_POSICIONES_GEODESICAS_ARGENTINAS_1994 = 'urn:ogc:def:datum:EPSG::6694';
5884
5885
    /**
5886
     * Posiciones Geodesicas Argentinas 1998
5887
     * Type: Geodetic
5888
     * Extent: Argentina - onshore and offshore.
5889
     * A geodetic network of 136 high accuracy surveyed points. Densification of SIRGAS 1995; ITRF94 at epoch 1995.4.
5890
     * Technically, but not legally, this datum replaced the 1994 POSGAR adjustment (code 6694) until adoption of the
5891
     * 2007 POSGAR adjustment (code 1062) in May 2009.
5892
     */
5893
    public const EPSG_POSICIONES_GEODESICAS_ARGENTINAS_1998 = 'urn:ogc:def:datum:EPSG::6190';
5894
5895
    /**
5896
     * Posiciones Geodesicas Argentinas 2007
5897
     * Type: Geodetic
5898
     * Extent: Argentina - onshore and offshore.
5899
     * A geodetic network of 211 high accuracy surveyed points (178 passive and 33 continuous operating) based on
5900
     * ITRF2005, Epoch 2006.632, that define the National Geodetic System (Sistema Geodésico Nacional) effective 15
5901
     * May 2009.
5902
     * POSGAR 07 has been adopted by order of the Director of the National Geographic Institute on 15th May 2009 as the
5903
     * new National Geodetic Reference Frame and replaces the pre-existing POSGAR 94.
5904
     */
5905
    public const EPSG_POSICIONES_GEODESICAS_ARGENTINAS_2007 = 'urn:ogc:def:datum:EPSG::1062';
5906
5907
    /**
5908
     * Potsdam Datum/83
5909
     * Type: Geodetic
5910
     * Extent: Germany - Thuringen.
5911
     * Fundamental point: Rauenberg. Latitude: 52°27'12.021"N, longitude: 13°22'04.928"E (of Greenwich). This station
5912
     * was destroyed in 1910 and the station at Potsdam substituted as the fundamental point.
5913
     * PD/83 is the realization of DHDN in Thuringen. It is the resultant of applying a transformation derived at 13
5914
     * points on the border between East and West Germany to Pulkovo 1942/83 points in Thuringen.
5915
     */
5916
    public const EPSG_POTSDAM_DATUM_83 = 'urn:ogc:def:datum:EPSG::6746';
5917
5918
    /**
5919
     * Principe
5920
     * Type: Geodetic
5921
     * Extent: Sao Tome and Principe - onshore - Principe.
5922
     * Fundamental point: Morro do Papagaio. Latitude: 1°36'46.87"N, longitude: 7°23'39.65"E (of Greenwich).
5923
     */
5924
    public const EPSG_PRINCIPE = 'urn:ogc:def:datum:EPSG::1046';
5925
5926
    /**
5927
     * Provisional South American Datum 1956
5928
     * Type: Geodetic
5929
     * Extent: Aruba - onshore; Bolivia; Bonaire - onshore; Brazil - offshore - Amazon Cone shelf; Chile - onshore
5930
     * north of 43°30'S; Curacao - onshore; Ecuador - mainland onshore; Guyana - onshore; Peru - onshore; Venezuela -
5931
     * onshore.
5932
     * Fundamental point: La Canoa. Latitude: 8°34'17.170"N, longitude: 63°51'34.880"W (of Greenwich).
5933
     * Same origin as La Canoa datum.
5934
     */
5935
    public const EPSG_PROVISIONAL_SOUTH_AMERICAN_DATUM_1956 = 'urn:ogc:def:datum:EPSG::6248';
5936
5937
    /**
5938
     * Puerto Rico
5939
     * Type: Geodetic
5940
     * Extent: Puerto Rico, US Virgin Islands and British Virgin Islands - onshore.
5941
     * Fundamental point: Cardona Island Lighthouse. Latitude:17°57'31.40"N, longitude: 66°38'07.53"W (of Greenwich).
5942
     * NADCON conversion program provides transformation from Puerto Rico Datum to NAD83 (original 1986 realization)
5943
     * but making the transformation appear to user as if from NAD27.
5944
     */
5945
    public const EPSG_PUERTO_RICO = 'urn:ogc:def:datum:EPSG::6139';
5946
5947
    /**
5948
     * Puerto Rico Vertical Datum of 2002
5949
     * Type: Vertical
5950
     * Extent: Puerto Rico - onshore.
5951
     * Mean sea level at San Juan. Benchmark 9756371 A TIDAL = 1.334m relative to National Tidal Datum Epoch 1960-1978.
5952
     * Replaces all earlier vertical datums for Puerto Rico.
5953
     */
5954
    public const EPSG_PUERTO_RICO_VERTICAL_DATUM_OF_2002 = 'urn:ogc:def:datum:EPSG::1123';
5955
5956
    /**
5957
     * Pulkovo 1942
5958
     * Type: Geodetic
5959
     * Extent: Armenia; Azerbaijan; Belarus; Estonia - onshore; Georgia - onshore; Kazakhstan; Kyrgyzstan; Latvia -
5960
     * onshore; Lithuania - onshore; Moldova; Russian Federation - onshore; Tajikistan; Turkmenistan; Ukraine -
5961
     * onshore; Uzbekistan.
5962
     * Fundamental point: Pulkovo observatory. Latitude: 59°46'18.550"N, longitude: 30°19'42.090"E (of Greenwich).
5963
     */
5964
    public const EPSG_PULKOVO_1942 = 'urn:ogc:def:datum:EPSG::6284';
5965
5966
    /**
5967
     * Pulkovo 1942(58)
5968
     * Type: Geodetic
5969
     * Extent: Onshore: Bulgaria, Czechia, Germany (former DDR), Hungary, Poland and Slovakia. Onshore and offshore:
5970
     * Albania and Romania.
5971
     * Fundamental point: Pulkovo observatory. Latitude: 59°46'18.550"N, longitude: 30°19'42.090"E (of Greenwich).
5972
     * 1956 international adjustment of Uniform Astro-Geodetic Network of countries of central and eastern Europe.
5973
     * Locally densified during 1957 and 1958.
5974
     */
5975
    public const EPSG_PULKOVO_1942_58 = 'urn:ogc:def:datum:EPSG::6179';
5976
5977
    /**
5978
     * Pulkovo 1942(83)
5979
     * Type: Geodetic
5980
     * Extent: Onshore Bulgaria, Czechia, Germany (former DDR), Hungary and Slovakia.
5981
     * Fundamental point: Pulkovo observatory. Latitude: 59°46'18.550"N, longitude: 30°19'42.090"E (of Greenwich).
5982
     * 1983 international adjustment of Uniform Astro-Geodetic Network of countries of central and eastern Europe.
5983
     */
5984
    public const EPSG_PULKOVO_1942_83 = 'urn:ogc:def:datum:EPSG::6178';
5985
5986
    /**
5987
     * Pulkovo 1995
5988
     * Type: Geodetic
5989
     * Extent: Russian Federation - onshore and offshore.
5990
     * Fundamental point: Pulkovo observatory. Latitude: 59°46'15.359"N, longitude: 30°19'28.318"E (of Greenwich).
5991
     */
5992
    public const EPSG_PULKOVO_1995 = 'urn:ogc:def:datum:EPSG::6200';
5993
5994
    /**
5995
     * Qatar 1948
5996
     * Type: Geodetic
5997
     * Extent: Qatar - onshore.
5998
     * Fundamental point: Sokey 0 M. Latitude: 25°22'56.500"N, longitude: 50°45'41.000"E (of Greenwich).
5999
     */
6000
    public const EPSG_QATAR_1948 = 'urn:ogc:def:datum:EPSG::6286';
6001
6002
    /**
6003
     * Qatar 1974
6004
     * Type: Geodetic
6005
     * Extent: Qatar - onshore and offshore.
6006
     * Fundamental point: Station G3.
6007
     */
6008
    public const EPSG_QATAR_1974 = 'urn:ogc:def:datum:EPSG::6285';
6009
6010
    /**
6011
     * Qatar National Datum 1995
6012
     * Type: Geodetic
6013
     * Extent: Qatar - onshore.
6014
     * Defined by transformation from WGS 84 - see coordinate operation code 1840.
6015
     */
6016
    public const EPSG_QATAR_NATIONAL_DATUM_1995 = 'urn:ogc:def:datum:EPSG::6614';
6017
6018
    /**
6019
     * Qornoq 1927
6020
     * Type: Geodetic
6021
     * Extent: Greenland - west coast onshore.
6022
     * Fundamental point: Station 7008. Latitude: 64°31'06.27"N, longitude: 51°12'24.86"W (of Greenwich).
6023
     */
6024
    public const EPSG_QORNOQ_1927 = 'urn:ogc:def:datum:EPSG::6194';
6025
6026
    /**
6027
     * Raiatea SAU 2001
6028
     * Type: Vertical
6029
     * Extent: French Polynesia - Society Islands - Raiatea.
6030
     * Fundamental benchmark: RN1
6031
     * Included as part of NGPF - see datum code 5195.
6032
     */
6033
    public const EPSG_RAIATEA_SAU_2001 = 'urn:ogc:def:datum:EPSG::5198';
6034
6035
    /**
6036
     * Ras Ghumays
6037
     * Type: Vertical
6038
     * Extent: United Arab Emirates (UAE) - Abu Dhabi onshore.
6039
     * Mean Sea Level at Ras Ghumays 1978 and 1979.
6040
     * Orthometric heights.
6041
     */
6042
    public const EPSG_RAS_GHUMAYS = 'urn:ogc:def:datum:EPSG::1146';
6043
6044
    /**
6045
     * Rassadiran
6046
     * Type: Geodetic
6047
     * Extent: Iran - Taheri refinery site.
6048
     * Fundamental point: Total1. Latitude: 27°31'07.784"N, longitude: 52°36'12.741"E (of Greenwich).
6049
     */
6050
    public const EPSG_RASSADIRAN = 'urn:ogc:def:datum:EPSG::6153';
6051
6052
    /**
6053
     * Rauenberg Datum/83
6054
     * Type: Geodetic
6055
     * Extent: Germany - Sachsen.
6056
     * Fundamental point: Rauenberg. Latitude: 52°27'12.021"N, longitude: 13°22'04.928"E (of Greenwich). This station
6057
     * was destroyed in 1910 and the station at Potsdam substituted as the fundamental point.
6058
     * RD/83 is the realization of DHDN in Saxony. It is the resultant of applying a transformation derived at 106
6059
     * points throughout former East Germany to Pulkovo 1942/83 points in Saxony.
6060
     */
6061
    public const EPSG_RAUENBERG_DATUM_83 = 'urn:ogc:def:datum:EPSG::6745';
6062
6063
    /**
6064
     * Red Geodesica Para Mineria en Chile
6065
     * Type: Dynamic geodetic
6066
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6067
     * Gomez.
6068
     * Realized through 26 stations in the IGS (SIRGAS-CON) active reference station network in Chile.
6069
     */
6070
    public const EPSG_RED_GEODESICA_PARA_MINERIA_EN_CHILE = 'urn:ogc:def:datum:EPSG::1304';
6071
6072
    /**
6073
     * Red Geodesica Venezolana
6074
     * Type: Geodetic
6075
     * Extent: Venezuela - onshore and offshore.
6076
     * Realised by a frame of 67 stations observed in 1995 as a densification of the SIRGAS campaign and adjusted in
6077
     * the ITRF94 at epoch 1995.4.
6078
     */
6079
    public const EPSG_RED_GEODESICA_VENEZOLANA = 'urn:ogc:def:datum:EPSG::6189';
6080
6081
    /**
6082
     * Red Geodesica de Canarias 1995
6083
     * Type: Geodetic
6084
     * Extent: Spain - Canary Islands onshore and offshore.
6085
     * ITRF93 at epoch 1994.9 at VLBI station INTA at the Canary Spatial Centre (CEC) at Maspalomas on Grand Canary.
6086
     * Replaces Pico de las Nieves 1968 (PN68) and Pico de las Nieves 1984 (PN84).
6087
     */
6088
    public const EPSG_RED_GEODESICA_DE_CANARIAS_1995 = 'urn:ogc:def:datum:EPSG::1035';
6089
6090
    /**
6091
     * Reference System de Angola 2013
6092
     * Type: Geodetic
6093
     * Extent: Angola - onshore and offshore.
6094
     * Network of 18 stations throughout Angola referenced to ITRF2008 @ 2010.90.
6095
     * Established through daily PPP solutions in GPS week G1610.
6096
     */
6097
    public const EPSG_REFERENCE_SYSTEM_DE_ANGOLA_2013 = 'urn:ogc:def:datum:EPSG::1220';
6098
6099
    /**
6100
     * Reseau Geodesique Francais 1993 v1
6101
     * Type: Geodetic
6102
     * Extent: France - onshore and offshore, mainland and Corsica (France métropolitaine including Corsica).
6103
     * Coincident with ETRS89 at epoch 1993.0. Derived from long-term GNSS observations at 23 points aligned to ETRF93.
6104
     * @ 1993.0 through fundamental points at Grasse, Toulouse and Brest. Network supplemented in 1994 and 1995 by
6105
     * approx. 1000 additional stations.
6106
     * RGF93 v1 is a realization of ETRS89. Replaced by RGF93 v2 (datum code 1312) from 2010-06-18.
6107
     */
6108
    public const EPSG_RESEAU_GEODESIQUE_FRANCAIS_1993_V1 = 'urn:ogc:def:datum:EPSG::6171';
6109
6110
    /**
6111
     * Reseau Geodesique Francais 1993 v2
6112
     * Type: Geodetic
6113
     * Extent: France - onshore and offshore, mainland and Corsica (France métropolitaine including Corsica).
6114
     * Aligned with ETRF2000 at epoch 2009.0. Based on the French GNSS permanent network (RGP) from 1998 to 2009, and
6115
     * the re-observation of the geodetic points of the French Reference Network (RRF) and French Base Network
6116
     * (RBF) from 2000 to 2011.
6117
     * RGF93 v2 is a realization of ETRS89. Replaces RGF93 v1 (datum code 6171) from 2010-06-18. Replaced by RGF93 v2b
6118
     * (datum code 1313) from 2021-01-05.
6119
     */
6120
    public const EPSG_RESEAU_GEODESIQUE_FRANCAIS_1993_V2 = 'urn:ogc:def:datum:EPSG::1312';
6121
6122
    /**
6123
     * Reseau Geodesique Francais 1993 v2b
6124
     * Type: Geodetic
6125
     * Extent: France - onshore and offshore, mainland and Corsica (France métropolitaine including Corsica).
6126
     * Aligned with ETRF2000 at epoch 2019.0. Derived through reprocessing of the French GNSS permanent network (RGP)
6127
     * in IGS14.
6128
     * RGF93 v2b is a realization of ETRS89. Third realization of RGF93. Replaces RGF93 v2 (datum code 1312) from
6129
     * 2021-01-05.
6130
     */
6131
    public const EPSG_RESEAU_GEODESIQUE_FRANCAIS_1993_V2B = 'urn:ogc:def:datum:EPSG::1313';
6132
6133
    /**
6134
     * Reseau Geodesique Francais Guyane 1995
6135
     * Type: Geodetic
6136
     * Extent: French Guiana - onshore and offshore.
6137
     * ITRF93 at epoch 1995.0
6138
     * Replaces CSG67 (datum code 6623).
6139
     */
6140
    public const EPSG_RESEAU_GEODESIQUE_FRANCAIS_GUYANE_1995 = 'urn:ogc:def:datum:EPSG::6624';
6141
6142
    /**
6143
     * Reseau Geodesique de Mayotte 2004
6144
     * Type: Geodetic
6145
     * Extent: Mayotte - onshore and offshore.
6146
     * ITRF2000 at epoch 2004.0
6147
     * Replaces Combani 1950 (datum code 6632) except for cadastral purposes. (Cadastre 1997 (datum code 1037) used for
6148
     * cadastral purposes).
6149
     */
6150
    public const EPSG_RESEAU_GEODESIQUE_DE_MAYOTTE_2004 = 'urn:ogc:def:datum:EPSG::1036';
6151
6152
    /**
6153
     * Reseau Geodesique de Nouvelle Caledonie 91-93
6154
     * Type: Geodetic
6155
     * Extent: New Caledonia - onshore and offshore. Isle de Pins, Loyalty Islands, Huon Islands, Belep archipelago,
6156
     * Chesterfield Islands, and Walpole.
6157
     * ITRF90 at epoch 1989.0.
6158
     */
6159
    public const EPSG_RESEAU_GEODESIQUE_DE_NOUVELLE_CALEDONIE_91_93 = 'urn:ogc:def:datum:EPSG::6749';
6160
6161
    /**
6162
     * Reseau Geodesique de Saint Pierre et Miquelon 2006
6163
     * Type: Geodetic
6164
     * Extent: St Pierre and Miquelon - onshore and offshore.
6165
     * ITRF2000 at epoch 2006.0
6166
     * Replaces Saint Pierre et Miquelon 1950 (datum code 6638).
6167
     */
6168
    public const EPSG_RESEAU_GEODESIQUE_DE_SAINT_PIERRE_ET_MIQUELON_2006 = 'urn:ogc:def:datum:EPSG::1038';
6169
6170
    /**
6171
     * Reseau Geodesique de Wallis et Futuna 1996
6172
     * Type: Geodetic
6173
     * Extent: Wallis and Futuna - onshore and offshore - Uvea, Futuna, and Alofi.
6174
     * Coincident with ITRF94 at epoch 1993.00.
6175
     */
6176
    public const EPSG_RESEAU_GEODESIQUE_DE_WALLIS_ET_FUTUNA_1996 = 'urn:ogc:def:datum:EPSG::1223';
6177
6178
    /**
6179
     * Reseau Geodesique de la Polynesie Francaise
6180
     * Type: Geodetic
6181
     * Extent: French Polynesia - onshore and offshore. Includes Society archipelago, Tuamotu archipelago, Marquesas
6182
     * Islands, Gambier Islands and Austral Islands.
6183
     * ITRF92 at epoch 1993.0. Densification by GPS of the Reference Network of French Polynesia, a coordinate set of
6184
     * 13 stations determined through DORIS observations.
6185
     * Replaces Tahaa 54 (datum code 6629), IGN 63 Hiva Oa (6689), IGN 72 Nuku Hiva (6630), Maupiti 83 (6692), MHEFO 55
6186
     * (6688), Moorea 87 (6691) and Tahiti 79 (6690).
6187
     */
6188
    public const EPSG_RESEAU_GEODESIQUE_DE_LA_POLYNESIE_FRANCAISE = 'urn:ogc:def:datum:EPSG::6687';
6189
6190
    /**
6191
     * Reseau Geodesique de la RDC 2005
6192
     * Type: Geodetic
6193
     * Extent: The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto -
6194
     * onshore and offshore.
6195
     * ITRF2000 at epoch 2005.4.
6196
     */
6197
    public const EPSG_RESEAU_GEODESIQUE_DE_LA_RDC_2005 = 'urn:ogc:def:datum:EPSG::1033';
6198
6199
    /**
6200
     * Reseau Geodesique de la Reunion 1992
6201
     * Type: Geodetic
6202
     * Extent: Reunion - onshore and offshore.
6203
     * ITRF91 at epoch 1993.0
6204
     * Replaces Piton des Neiges (code 6626).
6205
     */
6206
    public const EPSG_RESEAU_GEODESIQUE_DE_LA_REUNION_1992 = 'urn:ogc:def:datum:EPSG::6627';
6207
6208
    /**
6209
     * Reseau Geodesique des Antilles Francaises 2009
6210
     * Type: Geodetic
6211
     * Extent: French Antilles onshore and offshore - Guadeloupe (including Grande Terre, Basse Terre, Marie Galante,
6212
     * Les Saintes, Iles de la Petite Terre, La Desirade); Martinique; St Barthélemy; St Martin.
6213
     * ITRF2005 at epoch 2009.0
6214
     * Replaces RRAF91 in Martinique and Guadeloupe.
6215
     */
6216
    public const EPSG_RESEAU_GEODESIQUE_DES_ANTILLES_FRANCAISES_2009 = 'urn:ogc:def:datum:EPSG::1073';
6217
6218
    /**
6219
     * Reseau Geodesique des Terres Australes et Antarctiques Francaises 2007
6220
     * Type: Geodetic
6221
     * Extent: French Southern Territories - onshore and offshore: Amsterdam and St Paul, Crozet, Europa and Kerguelen.
6222
     * Antarctica - Adelie Land coastal area.
6223
     * ITRF2005 at epoch 2007.274
6224
     * Replaces IGN 1963-64 on Amsterdam, Saint-Paul 1969 on St Paul, IGN64 on Crozet, MHM 1954 on Europa, IGN 1962 on
6225
     * Kerguelen, and Petrels 1972 and Perroud 1950 in Adelie Land.
6226
     */
6227
    public const EPSG_RESEAU_GEODESIQUE_DES_TERRES_AUSTRALES_ET_ANTARCTIQUES_FRANCAISES_2007 = 'urn:ogc:def:datum:EPSG::1113';
6228
6229
    /**
6230
     * Reseau National Belge 1950
6231
     * Type: Geodetic
6232
     * Extent: Belgium - onshore.
6233
     * Fundamental point: Lommel (tower). Latitude: 51°13'47.334"N, longitude: 5°18'49.483"E (of Greenwich).
6234
     */
6235
    public const EPSG_RESEAU_NATIONAL_BELGE_1950 = 'urn:ogc:def:datum:EPSG::6215';
6236
6237
    /**
6238
     * Reseau National Belge 1950 (Brussels)
6239
     * Type: Geodetic
6240
     * Extent: Belgium - onshore.
6241
     * Fundamental point: Lommel (tower). Latitude: 51°13'47.334"N, longitude: 0°56'44.773"E (of Brussels).
6242
     */
6243
    public const EPSG_RESEAU_NATIONAL_BELGE_1950_BRUSSELS = 'urn:ogc:def:datum:EPSG::6809';
6244
6245
    /**
6246
     * Reseau National Belge 1972
6247
     * Type: Geodetic
6248
     * Extent: Belgium - onshore.
6249
     * Fundamental point: Uccle observatory. Latitude: 50°47'57.704"N, longitude: 4°21'24.983"E (of Greenwich).
6250
     */
6251
    public const EPSG_RESEAU_NATIONAL_BELGE_1972 = 'urn:ogc:def:datum:EPSG::6313';
6252
6253
    /**
6254
     * Reseau de Reference des Antilles Francaises 1991
6255
     * Type: Geodetic
6256
     * Extent: French Antilles onshore and offshore - Guadeloupe (including Grande Terre, Basse Terre, Marie Galante,
6257
     * Les Saintes, Iles de la Petite Terre, La Desirade); Martinique; St Barthélemy; St Martin.
6258
     * WGS 84 coordinates of a single station determined during the 1988 Tango mission.
6259
     * Replaces Fort Marigot and Sainte Anne (datum codes 6621-22) in Guadeloupe and Fort Desaix (datum code 6625) in
6260
     * Martinique. Replaced by Reseau Geodesique des Antilles Francaises 2009 (datum code 1073).
6261
     */
6262
    public const EPSG_RESEAU_DE_REFERENCE_DES_ANTILLES_FRANCAISES_1991 = 'urn:ogc:def:datum:EPSG::1047';
6263
6264
    /**
6265
     * Rete Dinamica Nazionale 2008
6266
     * Type: Geodetic
6267
     * Extent: Italy - onshore and offshore; San Marino, Vatican City State.
6268
     * Italian densification of ETRS89 realised through network of 99 permanent reference stations in [email protected].
6269
     * Adopted as official Italian reference datum 10/11/2011. Replaces IGM95 (datum code 6670).
6270
     */
6271
    public const EPSG_RETE_DINAMICA_NAZIONALE_2008 = 'urn:ogc:def:datum:EPSG::1132';
6272
6273
    /**
6274
     * Reunion 1947
6275
     * Type: Geodetic
6276
     * Extent: Reunion - onshore.
6277
     * Fundamental point: Piton des Neiges (Borne). Latitude: 21°05'13.119"S, longitude: 55°29'09.193"E (of
6278
     * Greenwich).
6279
     * Replaced by RGR92 (datum code 6627).
6280
     */
6281
    public const EPSG_REUNION_1947 = 'urn:ogc:def:datum:EPSG::6626';
6282
6283
    /**
6284
     * Reunion 1989
6285
     * Type: Vertical
6286
     * Extent: Reunion - onshore.
6287
     * Mean sea level during part of November 1949 at port of Saint-Pierre. Origin = marker AB-100 with defined
6288
     * elevation of 13.808m above msl.
6289
     * Orthometric heights. Replaces Reunion IGN58. Value of marker AB-100 retains height from 1958 adjustment.
6290
     */
6291
    public const EPSG_REUNION_1989 = 'urn:ogc:def:datum:EPSG::5156';
6292
6293
    /**
6294
     * Reykjavik 1900
6295
     * Type: Geodetic
6296
     * Extent: Iceland - mainland.
6297
     * Fundamental point:  Latitude: 64°08'31.88"N, longitude: 21°55'51.15"W (of Greenwich).
6298
     */
6299
    public const EPSG_REYKJAVIK_1900 = 'urn:ogc:def:datum:EPSG::6657';
6300
6301
    /**
6302
     * Rikets hojdsystem 1900
6303
     * Type: Vertical
6304
     * Extent: Sweden - onshore.
6305
     * Adjustment is referenced to mean sea level at Slussen, Stockholm.
6306
     * Realized through the first precise levelling network of 1886-1905. Replaced by RH70.
6307
     */
6308
    public const EPSG_RIKETS_HOJDSYSTEM_1900 = 'urn:ogc:def:datum:EPSG::5209';
6309
6310
    /**
6311
     * Rikets hojdsystem 1970
6312
     * Type: Vertical
6313
     * Extent: Sweden - onshore.
6314
     * Adjustment is referenced to mean high tide at Amsterdams Peil in 1684. To account for land level movements
6315
     * caused by isostatic rebound, heights are reduced to epoch 1970.0 using uplift values computed from repeated
6316
     * levelling observations.
6317
     * Realized through the second precise levelling network of 1951-1967. Uses Normal heights. Replaces RH00. Replaced
6318
     * in 2005 by RH2000.
6319
     */
6320
    public const EPSG_RIKETS_HOJDSYSTEM_1970 = 'urn:ogc:def:datum:EPSG::5117';
6321
6322
    /**
6323
     * Rikets hojdsystem 2000
6324
     * Type: Vertical
6325
     * Extent: Sweden - onshore.
6326
     * Adjustment is referenced to mean high tide at Amsterdams Peil in 1684. To account for land level movements
6327
     * caused by isostatic rebound, heights are reduced to epoch 2000.0 using values computed from the RH 2000 LU
6328
     * (=NKG2005LU) uplift model.
6329
     * Realized through the third precise levelling network of 1979-2003. Adopted in 2005, replacing RH70. Uses Normal
6330
     * heights.
6331
     */
6332
    public const EPSG_RIKETS_HOJDSYSTEM_2000 = 'urn:ogc:def:datum:EPSG::5208';
6333
6334
    /**
6335
     * Rikets koordinatsystem 1990
6336
     * Type: Geodetic
6337
     * Extent: Sweden - onshore and offshore.
6338
     * Replaces RT38 adjustment (datum code 6308).
6339
     */
6340
    public const EPSG_RIKETS_KOORDINATSYSTEM_1990 = 'urn:ogc:def:datum:EPSG::6124';
6341
6342
    /**
6343
     * Ross Sea Region Geodetic Datum 2000
6344
     * Type: Geodetic
6345
     * Extent: Antarctica - Ross Sea Region - nominally between 160°E and 150°W but includes buffer on eastern
6346
     * hemisphere margin to include Transantarctic Mountains
6347
     * Based on ITRF96 at epoch 2000.0.
6348
     */
6349
    public const EPSG_ROSS_SEA_REGION_GEODETIC_DATUM_2000 = 'urn:ogc:def:datum:EPSG::6764';
6350
6351
    /**
6352
     * SCM22 Intermediate Reference Frame
6353
     * Type: Geodetic
6354
     * Extent: United Kingdom (UK) - on or related to the Scottish central mainline rail route from Motherwell through
6355
     * Perth and Pitlochry to Inverness.
6356
     * Defined through the application of the SCM22 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS.
6357
     * Created in 2022 to support intermediate CRS "SCM22-IRF" in the emulation of the SCM22 Snake map projection.
6358
     */
6359
    public const EPSG_SCM22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1320';
6360
6361
    /**
6362
     * SIRGAS Continuously Operating Network DGF00P01
6363
     * Type: Dynamic geodetic
6364
     * Extent: Latin America - Central America and South America, onshore and offshore.
6365
     * Aligned to ITRF97 at epoch 2000.40. Realized by a frame of 31 continuously operating stations using GPS
6366
     * observations from June 1996 to February 2000. Velocity model VEMOS2003 used to propagate coordinates to the
6367
     * frame reference epoch.
6368
     * DGF00P01 is included in ITRF2000 as a regional densification for South America. Replaced by DGF01P01 (datum code
6369
     * 1228).
6370
     */
6371
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF00P01 = 'urn:ogc:def:datum:EPSG::1227';
6372
6373
    /**
6374
     * SIRGAS Continuously Operating Network DGF01P01
6375
     * Type: Dynamic geodetic
6376
     * Extent: Latin America - Central America and South America, onshore and offshore.
6377
     * Aligned to ITRF2000 at epoch 2000.00. Realized by a frame of 48 continuously operating stations using GPS
6378
     * observations from June 1996 to April 2001. Velocity model VEMOS2003 used to propagate coordinates to the frame
6379
     * reference epoch.
6380
     * Replaces DGF00P01 (datum code 1227). Replaced by DGF01P02 (datum code 1229).
6381
     */
6382
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF01P01 = 'urn:ogc:def:datum:EPSG::1228';
6383
6384
    /**
6385
     * SIRGAS Continuously Operating Network DGF01P02
6386
     * Type: Dynamic geodetic
6387
     * Extent: Latin America - Central America and South America, onshore and offshore.
6388
     * Aligned to ITRF2000 at epoch 1998.40. Realized by a frame of 49 continuously operating stations using GPS
6389
     * observations from June 1996 to October 2001. Velocity model VEMOS2003 used to propagate coordinates to the frame
6390
     * reference epoch.
6391
     * Replaces DGF01P01 (datum code 1228). Replaced by DGF02P01 (datum code 1230).
6392
     */
6393
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF01P02 = 'urn:ogc:def:datum:EPSG::1229';
6394
6395
    /**
6396
     * SIRGAS Continuously Operating Network DGF02P01
6397
     * Type: Dynamic geodetic
6398
     * Extent: Latin America - Central America and South America, onshore and offshore.
6399
     * Aligned to ITRF2000 at epoch 2000.00. Realized by a frame of 53 continuously operating stations using GPS
6400
     * observations from June 1996 to July 2002. Velocity model VEMOS2003 used to propagate coordinates to the frame
6401
     * reference epoch.
6402
     * Replaces DGF01P02 (datum code 1229). Replaced by DGF04P01 (datum code 1331).
6403
     */
6404
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF02P01 = 'urn:ogc:def:datum:EPSG::1230';
6405
6406
    /**
6407
     * SIRGAS Continuously Operating Network DGF04P01
6408
     * Type: Dynamic geodetic
6409
     * Extent: Latin America - Central America and South America, onshore and offshore.
6410
     * Aligned to ITRF2000 at epoch 2003.00. Realized by a frame of 69 continuously operating stations using GPS
6411
     * observations from June 1996 to July 2004. Velocity model VEMOS2003 used to propagate coordinates to the frame
6412
     * reference epoch.
6413
     * Replaces DGF02P01 (datum code 1230). Replaced by DGF05P01 (datum code 1232).
6414
     */
6415
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF04P01 = 'urn:ogc:def:datum:EPSG::1231';
6416
6417
    /**
6418
     * SIRGAS Continuously Operating Network DGF05P01
6419
     * Type: Dynamic geodetic
6420
     * Extent: Latin America - Central America and South America, onshore and offshore.
6421
     * Aligned to ITRF2000 at epoch 2004.00. Realized by a frame of 95 continuously operating stations using GPS
6422
     * observations from June 1996 to September 2005. Velocity model VEMOS2003 used to propagate coordinates to the
6423
     * frame reference epoch.
6424
     * Replaces DGF04P01 (datum code 1231). Replaced by DGF06P01 (datum code 1233).
6425
     */
6426
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF05P01 = 'urn:ogc:def:datum:EPSG::1232';
6427
6428
    /**
6429
     * SIRGAS Continuously Operating Network DGF06P01
6430
     * Type: Dynamic geodetic
6431
     * Extent: Latin America - Central America and South America, onshore and offshore.
6432
     * Aligned to ITRF2000 at epoch 2004.00. Realized by a frame of 94 continuously operating stations using GPS
6433
     * observations from June 1996 to June 2006. Velocity model VEMOS2003 used to propagate coordinates to the frame
6434
     * reference epoch.
6435
     * Replaces DGF05P01 (datum code 1232). Replaced by DGF07P01 (datum code 1234).
6436
     */
6437
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF06P01 = 'urn:ogc:def:datum:EPSG::1233';
6438
6439
    /**
6440
     * SIRGAS Continuously Operating Network DGF07P01
6441
     * Type: Dynamic geodetic
6442
     * Extent: Latin America - Central America and South America, onshore and offshore.
6443
     * Aligned to IGS05 at epoch 2004.50. Realized by a frame of 106 continuously operating stations using GPS
6444
     * observations in 3 periods between December 2001 and October 2007. Velocity model VEMOS2003 used to propagate
6445
     * coordinates to the frame reference epoch.
6446
     * Replaces DGF06P01 (datum code 1233). Replaced by DGF08P01 (datum code 1235).
6447
     */
6448
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF07P01 = 'urn:ogc:def:datum:EPSG::1234';
6449
6450
    /**
6451
     * SIRGAS Continuously Operating Network DGF08P01
6452
     * Type: Dynamic geodetic
6453
     * Extent: Latin America - Central America and South America, onshore and offshore.
6454
     * Aligned to IGS05 at epoch 2004.50. Realized by a frame of 126 continuously operating stations using GPS
6455
     * observations from December 2002 to March 2008. Velocity model VEMOS2003 used to propagate coordinates to the
6456
     * frame reference epoch.
6457
     * Replaces DGF07P01 (datum code 1234). Replaced by SIR09P01  (datum code 1236).
6458
     */
6459
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF08P01 = 'urn:ogc:def:datum:EPSG::1235';
6460
6461
    /**
6462
     * SIRGAS Continuously Operating Network SIR09P01
6463
     * Type: Dynamic geodetic
6464
     * Extent: Latin America - Central America and South America, onshore and offshore.
6465
     * Aligned to IGS05 at epoch 2005.00. Realized by a frame of 128 continuously operating stations using GPS
6466
     * observations from January 2000 to January 2009. Velocity model VEMOS2009 used to propagate coordinates to the
6467
     * frame reference epoch.
6468
     * Replaces DGF08P01 (datum code 1235). Replaced by SIR10P01 (datum code 1237).
6469
     */
6470
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR09P01 = 'urn:ogc:def:datum:EPSG::1236';
6471
6472
    /**
6473
     * SIRGAS Continuously Operating Network SIR10P01
6474
     * Type: Dynamic geodetic
6475
     * Extent: Latin America - Central America and South America, onshore and offshore.
6476
     * Aligned to ITRF08 at epoch 2005.00. Realized by a frame of 183 continuously operating stations using GPS
6477
     * observations from January 2000 to June 2010. Velocity model VEMOS2009 used to propagate coordinates to the frame
6478
     * reference epoch.
6479
     * Replaces SIR09P01 (datum code 1236). Replaced by SIR11P01 (datum code 1238).
6480
     */
6481
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR10P01 = 'urn:ogc:def:datum:EPSG::1237';
6482
6483
    /**
6484
     * SIRGAS Continuously Operating Network SIR11P01
6485
     * Type: Dynamic geodetic
6486
     * Extent: Latin America - Central America and South America, onshore and offshore.
6487
     * Aligned to ITRF08 at epoch 2005.00. Realized by a frame of 230 continuously operating stations using GPS
6488
     * observations from January 2000 to April 2011. Velocity model VEMOS2009 used to propagate coordinates to the
6489
     * frame reference epoch.
6490
     * Replaces SIR10P01 (datum code 1237). Replaced by SIR13P01 (datum code 1239). Last multi-year solution without
6491
     * the effects of the El Maule earthquake in February 2010.
6492
     */
6493
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR11P01 = 'urn:ogc:def:datum:EPSG::1238';
6494
6495
    /**
6496
     * SIRGAS Continuously Operating Network SIR13P01
6497
     * Type: Dynamic geodetic
6498
     * Extent: Latin America - Central America and South America, onshore and offshore.
6499
     * Aligned to IGb08 at epoch 2012.00. Realized by a frame of 108 continuously operating stations using GPS
6500
     * observations from April 2010 to June 2013. Velocity model VEMOS2009 used to propagate coordinates to the frame
6501
     * reference epoch.
6502
     * Replaces SIR11P01 (datum code 1238). Replaced by SIR14P01 (datum code 1240). First multi-year solution after the
6503
     * El Maule earthquake of February 2010.
6504
     */
6505
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR13P01 = 'urn:ogc:def:datum:EPSG::1239';
6506
6507
    /**
6508
     * SIRGAS Continuously Operating Network SIR14P01
6509
     * Type: Dynamic geodetic
6510
     * Extent: Latin America - Central America and South America, onshore and offshore.
6511
     * Aligned to IGb08 at epoch 2013.00. Realized by a frame of 242 continuously operating stations using GNSS
6512
     * observations from April 2010 to July 2014. Velocity model VEMOS2009 used to propagate coordinates to the frame
6513
     * reference epoch.
6514
     * Replaces SIR13P01 (datum code 1239). Replaced by SIR15P01 (datum code 1241).
6515
     */
6516
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR14P01 = 'urn:ogc:def:datum:EPSG::1240';
6517
6518
    /**
6519
     * SIRGAS Continuously Operating Network SIR15P01
6520
     * Type: Dynamic geodetic
6521
     * Extent: Latin America - Central America and South America, onshore and offshore.
6522
     * Aligned to IGb08 at epoch 2013.00. Realized by a frame of 303 continuously operating stations using GNSS
6523
     * observations from March 2010 to April 2015. Velocity model VEMOS2015 used to propagate coordinates to the frame
6524
     * reference epoch.
6525
     * Replaces SIR14P01 (datum code 1240). Replaced by SIR17P01 (datum code 1242).
6526
     */
6527
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR15P01 = 'urn:ogc:def:datum:EPSG::1241';
6528
6529
    /**
6530
     * SIRGAS Continuously Operating Network SIR17P01
6531
     * Type: Dynamic geodetic
6532
     * Extent: Latin America - Central America and South America, onshore and offshore.
6533
     * Aligned to IGS14 at epoch 2015.00. Realized by a frame of 345 continuously operating stations using GNSS
6534
     * observations from April 2011 to January 2017. Velocity model VEMOS2017 used to propagate coordinates to the
6535
     * frame reference epoch.
6536
     * Replaces SIR15P01 (datum code 1241).
6537
     */
6538
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR17P01 = 'urn:ogc:def:datum:EPSG::1242';
6539
6540
    /**
6541
     * SIRGAS-Chile realization 1 epoch 2002
6542
     * Type: Geodetic
6543
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6544
     * Gomez.
6545
     * ITRF2000 at epoch 2002.0.  Densification of SIRGAS 2000 network in Chile, consisting of 650 monumented stations.
6546
     * Densification of SIRGAS 2000 within Chile. Replaces PSAD56 (datum code 6248) in Chile, HITO XVIII (datum code
6547
     * 6254) in Chilean Tierra del Fuego and Easter Island 1967 (datum code 6719) in Easter Island. Replaced by
6548
     * SIRGAS-Chile 2010 (datum code 1243).
6549
     */
6550
    public const EPSG_SIRGAS_CHILE_REALIZATION_1_EPOCH_2002 = 'urn:ogc:def:datum:EPSG::1064';
6551
6552
    /**
6553
     * SIRGAS-Chile realization 2 epoch 2010
6554
     * Type: Geodetic
6555
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6556
     * Gomez.
6557
     * IGS08 at epoch 2010.00. Densification of SIRGAS-CON network in Chile, consisting of 120 monumented stations.
6558
     * Replaces SIRGAS-Chile realization 1 epoch 2002, following significant tectonic deformation. Replaced by
6559
     * SIRGAS-Chile realization 3 epoch 2013.
6560
     */
6561
    public const EPSG_SIRGAS_CHILE_REALIZATION_2_EPOCH_2010 = 'urn:ogc:def:datum:EPSG::1243';
6562
6563
    /**
6564
     * SIRGAS-Chile realization 3 epoch 2013
6565
     * Type: Geodetic
6566
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6567
     * Gomez.
6568
     * IGb08 at epoch 2013.00. Densification of SIRGAS-CON network in Chile, consisting of 130 monumented stations.
6569
     * Replaces SIRGAS-Chile realization 2 epoch 2010, following significant tectonic deformation. Replaced by
6570
     * SIRGAS-Chile realization 4 epoch 2016.
6571
     */
6572
    public const EPSG_SIRGAS_CHILE_REALIZATION_3_EPOCH_2013 = 'urn:ogc:def:datum:EPSG::1252';
6573
6574
    /**
6575
     * SIRGAS-Chile realization 4 epoch 2016
6576
     * Type: Geodetic
6577
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6578
     * Gomez.
6579
     * IGb08 at epoch 2016.00. Densification of SIRGAS-CON network in Chile, consisting of 200 monumented stations.
6580
     * Replaces SIRGAS-Chile realization 3 epoch 2013. Replaced by SIRGAS-Chile realization 5 epoch 2021 due to
6581
     * significant tectonic deformation.
6582
     */
6583
    public const EPSG_SIRGAS_CHILE_REALIZATION_4_EPOCH_2016 = 'urn:ogc:def:datum:EPSG::1253';
6584
6585
    /**
6586
     * SIRGAS-Chile realization 5 epoch 2021
6587
     * Type: Geodetic
6588
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6589
     * Gomez.
6590
     * Densification of SIRGAS-CON network in Chile, consisting of 97 stations forming the active CORS network (RGN)
6591
     * referenced to IGb2014 (ITRF2014) at epoch 2021.00. Passive stations used in previous realizations have been
6592
     * removed from this solution.
6593
     * Replaces SIRGAS-Chile realization 4 epoch 2016 from August 2021 due to significant tectonic deformation. 24
6594
     * additional active CORS used in this realization compared to that of 2016.
6595
     */
6596
    public const EPSG_SIRGAS_CHILE_REALIZATION_5_EPOCH_2021 = 'urn:ogc:def:datum:EPSG::1327';
6597
6598
    /**
6599
     * SIRGAS-ROU98
6600
     * Type: Geodetic
6601
     * Extent: Uruguay - onshore and offshore.
6602
     * Densification of SIRGAS95 network in Uruguay, consisting of 17 passive geodetic stations and 3 continuous
6603
     * recording GPS stations. ITRF94 at epoch 1995.4.
6604
     * Densification of SIRGAS 1995 within Uruguay. Replaces Yacare (datum code 6309) in Uruguay. Uruguay documentation
6605
     * clearly states use of WGS 84 reference ellipsoid.
6606
     */
6607
    public const EPSG_SIRGAS_ROU98 = 'urn:ogc:def:datum:EPSG::1068';
6608
6609
    /**
6610
     * SIRGAS_ES2007.8
6611
     * Type: Geodetic
6612
     * Extent: El Salvador - onshore and offshore.
6613
     * ITRF2005 at epoch 2007.85.  Densification of SIRGAS-CON network in El Salvador, consisting of 38 monumented
6614
     * stations.
6615
     * SIRGAS-ES2007.8 is the national SIRGAS densification.
6616
     */
6617
    public const EPSG_SIRGAS_ES2007_8 = 'urn:ogc:def:datum:EPSG::1069';
6618
6619
    /**
6620
     * ST71 Belep
6621
     * Type: Geodetic
6622
     * Extent: New Caledonia - Belep.
6623
     */
6624
    public const EPSG_ST71_BELEP = 'urn:ogc:def:datum:EPSG::6643';
6625
6626
    /**
6627
     * ST84 Ile des Pins
6628
     * Type: Geodetic
6629
     * Extent: New Caledonia - Ile des Pins.
6630
     * Fundamental point: Pic Nga.
6631
     */
6632
    public const EPSG_ST84_ILE_DES_PINS = 'urn:ogc:def:datum:EPSG::6642';
6633
6634
    /**
6635
     * ST87 Ouvea
6636
     * Type: Geodetic
6637
     * Extent: New Caledonia - Loyalty Islands - Ouvea.
6638
     * Ouloup.
6639
     */
6640
    public const EPSG_ST87_OUVEA = 'urn:ogc:def:datum:EPSG::6750';
6641
6642
    /**
6643
     * SVY21
6644
     * Type: Geodetic
6645
     * Extent: Singapore - onshore and offshore.
6646
     * Fundamental point: Base 7 at Pierce Reservoir. Latitude: 1°22'02.9154"N, longitude: 103°49'31.9752"E (of
6647
     * Greenwich).
6648
     * Replaces Kertau 1968 for cadastral purposes from August 2004.
6649
     */
6650
    public const EPSG_SVY21 = 'urn:ogc:def:datum:EPSG::6757';
6651
6652
    /**
6653
     * SWEREF99
6654
     * Type: Geodetic
6655
     * Extent: Sweden - onshore and offshore.
6656
     * Densification of ETRS89.
6657
     * The solution was calculated in ITRF97 epoch 1999.5, and has subsequently been corrected to ETRS89 in accordance
6658
     * with guidelines given by EUREF.
6659
     */
6660
    public const EPSG_SWEREF99 = 'urn:ogc:def:datum:EPSG::6619';
6661
6662
    /**
6663
     * Saint Pierre et Miquelon 1950
6664
     * Type: Geodetic
6665
     * Extent: St Pierre and Miquelon - onshore.
6666
     * Replaced by RGSPM06 (datum code 1038).
6667
     */
6668
    public const EPSG_SAINT_PIERRE_ET_MIQUELON_1950 = 'urn:ogc:def:datum:EPSG::6638';
6669
6670
    /**
6671
     * Santa Cruz da Graciosa
6672
     * Type: Vertical
6673
     * Extent: Portugal - central Azores - Graciosa island onshore.
6674
     * Mean Sea Level during 1938 at Santa Cruz da Graciosa.
6675
     * Orthometric heights.
6676
     */
6677
    public const EPSG_SANTA_CRUZ_DA_GRACIOSA = 'urn:ogc:def:datum:EPSG::1106';
6678
6679
    /**
6680
     * Santa Cruz das Flores
6681
     * Type: Vertical
6682
     * Extent: Portugal - western Azores onshore - Flores, Corvo.
6683
     * Mean Sea Level during 1965 at Santa Cruz das Flores.
6684
     * Orthometric heights.
6685
     */
6686
    public const EPSG_SANTA_CRUZ_DAS_FLORES = 'urn:ogc:def:datum:EPSG::1108';
6687
6688
    /**
6689
     * Santo 1965
6690
     * Type: Geodetic
6691
     * Extent: Vanuatu - northern islands - Aese, Ambrym, Aoba, Epi, Espiritu Santo, Maewo, Malo, Malkula, Paama,
6692
     * Pentecost, Shepherd and Tutuba.
6693
     * Datum covers all the major islands of Vanuatu in two different adjustment blocks, but practical usage is as
6694
     * given in the area of use.
6695
     */
6696
    public const EPSG_SANTO_1965 = 'urn:ogc:def:datum:EPSG::6730';
6697
6698
    /**
6699
     * Sao Tome
6700
     * Type: Geodetic
6701
     * Extent: Sao Tome and Principe - onshore - Sao Tome.
6702
     * Fundamental point: Fortaleza. Latitude: 0°20'49.02"N, longitude: 6°44'41.85"E (of Greenwich).
6703
     */
6704
    public const EPSG_SAO_TOME = 'urn:ogc:def:datum:EPSG::1044';
6705
6706
    /**
6707
     * Sapper Hill 1943
6708
     * Type: Geodetic
6709
     * Extent: Falkland Islands (Malvinas) - onshore.
6710
     */
6711
    public const EPSG_SAPPER_HILL_1943 = 'urn:ogc:def:datum:EPSG::6292';
6712
6713
    /**
6714
     * Schwarzeck
6715
     * Type: Geodetic
6716
     * Extent: Namibia - onshore and offshore.
6717
     * Fundamental point: Schwarzeck. Latitude: 22°45'35.820"S, longitude: 18°40'34.549"E (of Greenwich). Fixed
6718
     * during German South West Africa-British Bechuanaland boundary survey of 1898-1903.
6719
     */
6720
    public const EPSG_SCHWARZECK = 'urn:ogc:def:datum:EPSG::6293';
6721
6722
    /**
6723
     * Scoresbysund 1952
6724
     * Type: Geodetic
6725
     * Extent: Greenland - Scoresbysund area onshore.
6726
     */
6727
    public const EPSG_SCORESBYSUND_1952 = 'urn:ogc:def:datum:EPSG::6195';
6728
6729
    /**
6730
     * Selvagem Grande
6731
     * Type: Geodetic
6732
     * Extent: Portugal - Selvagens islands (Madeira province) - onshore.
6733
     */
6734
    public const EPSG_SELVAGEM_GRANDE = 'urn:ogc:def:datum:EPSG::6616';
6735
6736
    /**
6737
     * Serbian Reference Network 1998
6738
     * Type: Geodetic
6739
     * Extent: Serbia including Vojvodina.
6740
     * Densification of ETRS89 in Serbia at epoch 1998.7 based on coordinates of 6 stations in Serbia of Yugoslav
6741
     * Reference Frame (YUREF) 1998 campaign.
6742
     * Observed 1998-2003.
6743
     */
6744
    public const EPSG_SERBIAN_REFERENCE_NETWORK_1998 = 'urn:ogc:def:datum:EPSG::1034';
6745
6746
    /**
6747
     * Serbian Spatial Reference System 2000
6748
     * Type: Geodetic
6749
     * Extent: Serbia including Vojvodina.
6750
     * Densification of ETRF2000 in Serbia at epoch 2010.63.
6751
     * Replaces SREF98.
6752
     */
6753
    public const EPSG_SERBIAN_SPATIAL_REFERENCE_SYSTEM_2000 = 'urn:ogc:def:datum:EPSG::1214';
6754
6755
    /**
6756
     * Serbian Vertical Reference System 2012
6757
     * Type: Vertical
6758
     * Extent: Serbia including Vojvodina.
6759
     * Mean sea level of Adriatic Sea in 1971.
6760
     * Normal heights above quasi-geoid. In Serbia replaces Trieste (datum code 1050).
6761
     */
6762
    public const EPSG_SERBIAN_VERTICAL_REFERENCE_SYSTEM_2012 = 'urn:ogc:def:datum:EPSG::1216';
6763
6764
    /**
6765
     * Serindung
6766
     * Type: Geodetic
6767
     * Extent: Indonesia - west Kalimantan - onshore coastal area.
6768
     * Fundamental point: Ep A. Latitude: 1°06'10.60"N, longitude: 105°00'59.82"E (of Greenwich).
6769
     */
6770
    public const EPSG_SERINDUNG = 'urn:ogc:def:datum:EPSG::6295';
6771
6772
    /**
6773
     * Sibun Gorge 1922
6774
     * Type: Geodetic
6775
     * Extent: Belize - onshore.
6776
     * Latitude: 17º03'40.471"N, longitude: 88º37'54.687"W.
6777
     */
6778
    public const EPSG_SIBUN_GORGE_1922 = 'urn:ogc:def:datum:EPSG::1071';
6779
6780
    /**
6781
     * Sierra Leone 1968
6782
     * Type: Geodetic
6783
     * Extent: Sierra Leone - onshore.
6784
     * Fundamental point: SLX2 Astro. Latitude: 8°27'17.567"N, longitude: 12°49'40.186"W (of Greenwich).
6785
     * Extension and readjustment with additional observations of 1960 network.  Coordinates of 1960 stations change by
6786
     * less than 3 metres.
6787
     */
6788
    public const EPSG_SIERRA_LEONE_1968 = 'urn:ogc:def:datum:EPSG::6175';
6789
6790
    /**
6791
     * Sierra Leone Colony 1924
6792
     * Type: Geodetic
6793
     * Extent: Sierra Leone - Freetown Peninsula.
6794
     * Fundamental point: Kortright. Latitude: 8°28'44.4"N, longitude: 13°13'03.81"W (of Greenwich).
6795
     */
6796
    public const EPSG_SIERRA_LEONE_COLONY_1924 = 'urn:ogc:def:datum:EPSG::6174';
6797
6798
    /**
6799
     * Singapore Height Datum
6800
     * Type: Vertical
6801
     * Extent: Singapore - onshore and offshore.
6802
     * Mean sea level determined at Victoria Dock tide gauge 1935-1937.
6803
     * Orthometric heights. Network readjusted in 2009.
6804
     */
6805
    public const EPSG_SINGAPORE_HEIGHT_DATUM = 'urn:ogc:def:datum:EPSG::1140';
6806
6807
    /**
6808
     * Sistem Referensi Geospasial Indonesia 2013
6809
     * Type: Dynamic geodetic
6810
     * Extent: Indonesia - onshore and offshore.
6811
     * ITRF2008 at epoch 2012.0.
6812
     * Semi-dynamic datum. Geometric element of geodetic control network (JKG). Replaces DGN95 and all older datums.
6813
     */
6814
    public const EPSG_SISTEM_REFERENSI_GEOSPASIAL_INDONESIA_2013 = 'urn:ogc:def:datum:EPSG::1293';
6815
6816
    /**
6817
     * Sistema Geodesico Nacional de Panama MACARIO SOLIS
6818
     * Type: Geodetic
6819
     * Extent: Panama - onshore and offshore.
6820
     * ITRF2000 at epoch 2000.0. Densification of SIRGAS 2000 network in Panama, consisting of 20 GPS stations
6821
     * throughout the country.
6822
     */
6823
    public const EPSG_SISTEMA_GEODESICO_NACIONAL_DE_PANAMA_MACARIO_SOLIS = 'urn:ogc:def:datum:EPSG::1066';
6824
6825
    /**
6826
     * Sistema de Referencia Geocentrico para America del Sur 1995
6827
     * Type: Geodetic
6828
     * Extent: South America - onshore and offshore. Ecuador (mainland and Galapagos) - onshore and offshore.
6829
     * ITRF94 at epoch 1995.4.
6830
     * Realized by a frame of 58 stations observed in 1995 and adjusted in ITRF94. Provisional NIMA adjustment
6831
     * reference epoch was 1995.42 but final report accepted value is 1995.40.  Replaced by SIRGAS 2000.
6832
     */
6833
    public const EPSG_SISTEMA_DE_REFERENCIA_GEOCENTRICO_PARA_AMERICA_DEL_SUR_1995 = 'urn:ogc:def:datum:EPSG::6170';
6834
6835
    /**
6836
     * Sistema de Referencia Geocentrico para las AmericaS 2000
6837
     * Type: Geodetic
6838
     * Extent: Latin America - Central America and South America - onshore and offshore. Brazil - onshore and offshore.
6839
     * ITRF2000 at epoch 2000.40.
6840
     * Realized by a frame of 184 stations observed in 2000 and adjusted in the ITRF2000. Includes ties to tide gauges.
6841
     * Replaces SIRGAS 1995 system for South America; expands SIRGAS to Central America.  Name changed in 2001 for use
6842
     * in all of Latin America.
6843
     */
6844
    public const EPSG_SISTEMA_DE_REFERENCIA_GEOCENTRICO_PARA_LAS_AMERICAS_2000 = 'urn:ogc:def:datum:EPSG::6674';
6845
6846
    /**
6847
     * Sistema de Referencia Vertical Nacional 2016
6848
     * Type: Vertical
6849
     * Extent: Argentina - onshore.
6850
     * Mean Sea Level 1923 at Mar del Plata defined at station 71 (C = 121.64978 m^2s^-2) = 12.43m for mainland,
6851
     * Ushuaia station PF1N(383) (C = 38.427 m^2s^-2) =  3.915m for Tierra del Fuego. These geopotential numbers
6852
     * correspond with historic values.
6853
     * Replaces SRVN71.
6854
     */
6855
    public const EPSG_SISTEMA_DE_REFERENCIA_VERTICAL_NACIONAL_2016 = 'urn:ogc:def:datum:EPSG::1260';
6856
6857
    /**
6858
     * Sister Islands Geodetic Datum 1961
6859
     * Type: Geodetic
6860
     * Extent: Cayman Islands - Little Cayman and Cayman Brac.
6861
     * Fundamental point: LC5. Latitude: 19°39'46.324"N, longitude: 80°03'47.910"W (of Greenwich).
6862
     * Replaced by CIGD11 (datum code 1100).
6863
     */
6864
    public const EPSG_SISTER_ISLANDS_GEODETIC_DATUM_1961 = 'urn:ogc:def:datum:EPSG::6726';
6865
6866
    /**
6867
     * Slovenia Geodetic Datum 1996
6868
     * Type: Geodetic
6869
     * Extent: Slovenia - onshore and offshore.
6870
     * Densification of ETRS89, based on ITRS89 at epoch 1995.55.
6871
     */
6872
    public const EPSG_SLOVENIA_GEODETIC_DATUM_1996 = 'urn:ogc:def:datum:EPSG::6765';
6873
6874
    /**
6875
     * Slovenian Vertical System 2000
6876
     * Type: Vertical
6877
     * Extent: Slovenia - onshore.
6878
     * Reference point Ruse defined relative to mean sea level at Trieste in 1875.
6879
     * Normal-orthometric heights. Promulgated through the National Vertical Network adjustment of 1999.
6880
     */
6881
    public const EPSG_SLOVENIAN_VERTICAL_SYSTEM_2000 = 'urn:ogc:def:datum:EPSG::5177';
6882
6883
    /**
6884
     * Slovenian Vertical System 2010
6885
     * Type: Vertical
6886
     * Extent: Slovenia - onshore.
6887
     * Mean sea level at Koper over 18.6 years, selected epoch is 2010-10-10.
6888
     * Normal heights. Replaces SVS2000 from 2019-01.
6889
     */
6890
    public const EPSG_SLOVENIAN_VERTICAL_SYSTEM_2010 = 'urn:ogc:def:datum:EPSG::1215';
6891
6892
    /**
6893
     * Solomon 1968
6894
     * Type: Geodetic
6895
     * Extent: Solomon Islands - onshore southern Solomon Islands, primarily Guadalcanal, Malaita, San Cristobel, Santa
6896
     * Isobel, Choiseul, Makira-Ulawa.
6897
     * Fundamental point: GUX 1.
6898
     */
6899
    public const EPSG_SOLOMON_1968 = 'urn:ogc:def:datum:EPSG::6718';
6900
6901
    /**
6902
     * South Africa Land Levelling Datum
6903
     * Type: Vertical
6904
     * Extent: South Africa - mainland onshore.
6905
     * Mean Sea Level at Cape Town harbour 1900 and 1907, referred to Datum Benchmark BM1.
6906
     * Orthometric heights.
6907
     */
6908
    public const EPSG_SOUTH_AFRICA_LAND_LEVELLING_DATUM = 'urn:ogc:def:datum:EPSG::1262';
6909
6910
    /**
6911
     * South American Datum 1969
6912
     * Type: Geodetic
6913
     * Extent: Brazil - onshore and offshore. In rest of South America - onshore north of approximately 45°S and
6914
     * Tierra del Fuego.
6915
     * Fundamental point: Chua. Geodetic latitude: 19°45'41.6527"S; geodetic longitude: 48°06'04.0639"W (of
6916
     * Greenwich). (Astronomic coordinates: Latitude 19°45'41.34"S +/- 0.05", longitude 48°06'07.80"W +/- 0.08").
6917
     * SAD69 uses GRS 1967 ellipsoid but with 1/f to exactly 2 decimal places. In Brazil only, replaced by SAD69(96)
6918
     * (datum code 1075).
6919
     */
6920
    public const EPSG_SOUTH_AMERICAN_DATUM_1969 = 'urn:ogc:def:datum:EPSG::6618';
6921
6922
    /**
6923
     * South American Datum 1969(96)
6924
     * Type: Geodetic
6925
     * Extent: Brazil - onshore and offshore. Includes Rocas, Fernando de Noronha archipelago, Trindade, Ihlas Martim
6926
     * Vaz and Sao Pedro e Sao Paulo.
6927
     * Fundamental point: Chua. Geodetic latitude: 19°45'41.6527"S; geodetic longitude: 48°06'04.0639"W (of
6928
     * Greenwich). (Astronomic coordinates: Latitude 19°45'41.34"S +/- 0.05", longitude 48°06'07.80"W +/- 0.08").
6929
     * SAD69 uses GRS 1967 ellipsoid but with 1/f to exactly 2 decimal places. Replaces original 1969 adjustment (datum
6930
     * code 6618) in Brazil.
6931
     */
6932
    public const EPSG_SOUTH_AMERICAN_DATUM_1969_96 = 'urn:ogc:def:datum:EPSG::1075';
6933
6934
    /**
6935
     * South East Island 1943
6936
     * Type: Geodetic
6937
     * Extent: Seychelles - Mahe, Silhouette, North, Aride Island, Praslin, La Digue and Frigate islands including
6938
     * adjacent smaller granitic islands on the Seychelles Bank, Bird Island and Denis Island.
6939
     * Fundamental point: Challenger Astro near Port Victoria lighthouse. Latitude: 4°40'39.460"S, longitude:
6940
     * 55°32'00.166"E (of Greenwich).
6941
     * Network readjusted in 1958-59 and extended to Bird and Denis islands in 1975.
6942
     */
6943
    public const EPSG_SOUTH_EAST_ISLAND_1943 = 'urn:ogc:def:datum:EPSG::1138';
6944
6945
    /**
6946
     * South Georgia 1968
6947
     * Type: Geodetic
6948
     * Extent: South Georgia and the South Sandwich Islands - South Georgia onshore.
6949
     * Fundamental point: ISTS 061.
6950
     */
6951
    public const EPSG_SOUTH_GEORGIA_1968 = 'urn:ogc:def:datum:EPSG::6722';
6952
6953
    /**
6954
     * South Yemen
6955
     * Type: Geodetic
6956
     * Extent: Yemen - South Yemen onshore mainland.
6957
     */
6958
    public const EPSG_SOUTH_YEMEN = 'urn:ogc:def:datum:EPSG::6164';
6959
6960
    /**
6961
     * Sri Lanka Datum 1999
6962
     * Type: Geodetic
6963
     * Extent: Sri Lanka - onshore.
6964
     * Fundamental point: ISM Diyatalawa. Latitude: 6°49'02.687"N, longitude: 80°57'40.880"E.
6965
     * Introduced in 2000.
6966
     */
6967
    public const EPSG_SRI_LANKA_DATUM_1999 = 'urn:ogc:def:datum:EPSG::1053';
6968
6969
    /**
6970
     * Sri Lanka Vertical Datum
6971
     * Type: Vertical
6972
     * Extent: Sri Lanka - onshore.
6973
     * MSL at Colombo 1884-1889.
6974
     * Normal-orthometric heights, but often referred to as "orthometric".
6975
     */
6976
    public const EPSG_SRI_LANKA_VERTICAL_DATUM = 'urn:ogc:def:datum:EPSG::1054';
6977
6978
    /**
6979
     * St. George Island
6980
     * Type: Geodetic
6981
     * Extent: United States (USA) - Alaska - Pribilof Islands - St George Island.
6982
     * Fundamental point latitude: 56°36'11.31"N, longitude: 169°32'36.00"W (of Greenwich).
6983
     * Many Alaskan islands were never on NAD27 but rather on independent datums.  NADCON conversion program provides
6984
     * transformation from St. George Island Datum to NAD83 (original 1986 realization) - making the transformation
6985
     * appear to user as if from NAD27.
6986
     */
6987
    public const EPSG_ST_GEORGE_ISLAND = 'urn:ogc:def:datum:EPSG::6138';
6988
6989
    /**
6990
     * St. Helena Geodetic Datum 2015
6991
     * Type: Geodetic
6992
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
6993
     * ITRF2008 at epoch 2015.0. ITRF2008 coordinates (15°56'33.1198"S, 5°40'02.4412"W, 453.183m ellipsoid height) of
6994
     * Longwood IGS CORS station STHL on 1st January 2015.
6995
     * Developed by Richard Stanaway, Quickclose Pty Ltd, superseding Astro DOS 71 from 1st January 2016.
6996
     */
6997
    public const EPSG_ST_HELENA_GEODETIC_DATUM_2015 = 'urn:ogc:def:datum:EPSG::1174';
6998
6999
    /**
7000
     * St. Helena Tritan
7001
     * Type: Geodetic
7002
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
7003
     * WGS 84(G1150) at epoch 2011.773. WGS 84 coordinates (15°56'33.1217"S, 5°40'02.4436"W, 453.288m ellipsoid
7004
     * height) of Longwood IGS CORS station STHL on 9th October 2011.
7005
     */
7006
    public const EPSG_ST_HELENA_TRITAN = 'urn:ogc:def:datum:EPSG::1173';
7007
7008
    /**
7009
     * St. Helena Tritan Vertical Datum 2011
7010
     * Type: Vertical
7011
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
7012
     * MSL defined by Longwood IGS station STHL reference level of 436.215m.
7013
     * Defined by offset of -17.073m applied to St. Helena Tritan ellipsiodal height (CRS code 7880).
7014
     */
7015
    public const EPSG_ST_HELENA_TRITAN_VERTICAL_DATUM_2011 = 'urn:ogc:def:datum:EPSG::1176';
7016
7017
    /**
7018
     * St. Helena Vertical Datum 2015
7019
     * Type: Vertical
7020
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
7021
     * Longwood IGS station STHL reference level of 436.312m.
7022
     * Defined by SHGEOID15 geoid model (transformation code 7891) applied to SHGD2015 (CRS code 7885).
7023
     */
7024
    public const EPSG_ST_HELENA_VERTICAL_DATUM_2015 = 'urn:ogc:def:datum:EPSG::1177';
7025
7026
    /**
7027
     * St. Kilda
7028
     * Type: Vertical
7029
     * Extent: United Kingdom (UK) - Great Britain - Scotland - St Kilda onshore.
7030
     * Orthometric heights.
7031
     */
7032
    public const EPSG_ST_KILDA = 'urn:ogc:def:datum:EPSG::5145';
7033
7034
    /**
7035
     * St. Kitts 1955
7036
     * Type: Geodetic
7037
     * Extent: St Kitts and Nevis - onshore.
7038
     * Fundamental point: station K12.
7039
     */
7040
    public const EPSG_ST_KITTS_1955 = 'urn:ogc:def:datum:EPSG::6605';
7041
7042
    /**
7043
     * St. Lawrence Island
7044
     * Type: Geodetic
7045
     * Extent: United States (USA) - Alaska - St Lawrence Island.
7046
     * Many Alaskan islands were never on NAD27 but rather on independent datums.  NADCON conversion program provides
7047
     * transformation from St. Lawrence Island Datum to NAD83 (original 1986 realization) - making the transformation
7048
     * appear to user as if from NAD27.
7049
     */
7050
    public const EPSG_ST_LAWRENCE_ISLAND = 'urn:ogc:def:datum:EPSG::6136';
7051
7052
    /**
7053
     * St. Lucia 1955
7054
     * Type: Geodetic
7055
     * Extent: St Lucia - onshore.
7056
     * Fundamental point: station DCS3.
7057
     */
7058
    public const EPSG_ST_LUCIA_1955 = 'urn:ogc:def:datum:EPSG::6606';
7059
7060
    /**
7061
     * St. Marys
7062
     * Type: Vertical
7063
     * Extent: United Kingdom (UK) - Great Britain - England - Isles of Scilly onshore.
7064
     * Mean Sea Level at St. Marys 1887. Initially realised through levelling network adjustment, from 2002 redefined
7065
     * to be realised through OSGM geoid model.
7066
     * Orthometric heights.
7067
     */
7068
    public const EPSG_ST_MARYS = 'urn:ogc:def:datum:EPSG::5147';
7069
7070
    /**
7071
     * St. Paul Island
7072
     * Type: Geodetic
7073
     * Extent: United States (USA) - Alaska - Pribilof Islands - St Paul Island.
7074
     * Fundamental point latitude: 57°07'16.86"N, longitude: 170°16'24.00"W (of Greenwich).
7075
     * Many Alaskan islands were never on NAD27 but rather on independent datums.  NADCON conversion program provides
7076
     * transformation from St. Paul Island Datum to NAD83 (original 1986 realization) - making the transformation
7077
     * appear to user as if from NAD27.
7078
     */
7079
    public const EPSG_ST_PAUL_ISLAND = 'urn:ogc:def:datum:EPSG::6137';
7080
7081
    /**
7082
     * St. Stephen (Ferro)
7083
     * Type: Geodetic
7084
     * Extent: Austria - Lower Austria. Czechia - Moravia and Czech Silesia.
7085
     * Fundamental point: St. Stephen's cathedral, Vienna. Latitude: 48°12'31.54"N, longitude: 34°02'27.32"E (of
7086
     * Ferro).
7087
     */
7088
    public const EPSG_ST_STEPHEN_FERRO = 'urn:ogc:def:datum:EPSG::1189';
7089
7090
    /**
7091
     * St. Vincent 1945
7092
     * Type: Geodetic
7093
     * Extent: St Vincent and the northern Grenadine Islands - onshore.
7094
     * Fundamental point: station V1, Fort Charlotte.
7095
     */
7096
    public const EPSG_ST_VINCENT_1945 = 'urn:ogc:def:datum:EPSG::6607';
7097
7098
    /**
7099
     * Staatlichen Nivellementnetzes 1976
7100
     * Type: Vertical
7101
     * Extent: Germany - states of former East Germany - Berlin, Brandenburg; Mecklenburg-Vorpommern; Sachsen;
7102
     * Sachsen-Anhalt; Thuringen.
7103
     * Network adjusted in 1976. Height at reference point Hoppegarten defined as 1957 value from the UPLN adjustment.
7104
     * Datum at Kronstadt is mean sea level of Baltic in 1833.
7105
     * Introduced in 1979. Uses Normal heights. Replaced by DHHN92.
7106
     */
7107
    public const EPSG_STAATLICHEN_NIVELLEMENTNETZES_1976 = 'urn:ogc:def:datum:EPSG::5183';
7108
7109
    /**
7110
     * Stewart Island 1977
7111
     * Type: Vertical
7112
     * Extent: New Zealand - Stewart Island.
7113
     * MSL at 3-5 high and low tides at two different locations.
7114
     */
7115
    public const EPSG_STEWART_ISLAND_1977 = 'urn:ogc:def:datum:EPSG::5170';
7116
7117
    /**
7118
     * Stockholm 1938
7119
     * Type: Geodetic
7120
     * Extent: Sweden - onshore.
7121
     * Fundamental point: Stockholm observatory.
7122
     * Replaced by RT90 adjustment (datum code 6124).
7123
     */
7124
    public const EPSG_STOCKHOLM_1938 = 'urn:ogc:def:datum:EPSG::6308';
7125
7126
    /**
7127
     * Stockholm 1938 (Stockholm)
7128
     * Type: Geodetic
7129
     * Extent: Sweden - onshore.
7130
     * Fundamental point: Stockholm observatory
7131
     * Replaced by RT90 adjustment (datum code 6124).
7132
     */
7133
    public const EPSG_STOCKHOLM_1938_STOCKHOLM = 'urn:ogc:def:datum:EPSG::6814';
7134
7135
    /**
7136
     * Stornoway
7137
     * Type: Vertical
7138
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Outer Hebrides onshore.
7139
     * Mean Sea Level at Stornoway 1977 correlated to pre-1900. Initially realised through levelling network
7140
     * adjustment, from 2002 redefined to be realised through OSGM geoid model.
7141
     * Orthometric heights.
7142
     */
7143
    public const EPSG_STORNOWAY = 'urn:ogc:def:datum:EPSG::5144';
7144
7145
    /**
7146
     * Sule Skerry
7147
     * Type: Vertical
7148
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Sule Skerry onshore.
7149
     * Orthometric heights.
7150
     */
7151
    public const EPSG_SULE_SKERRY = 'urn:ogc:def:datum:EPSG::5142';
7152
7153
    /**
7154
     * Svalbard vertical datum 2006
7155
     * Type: Vertical
7156
     * Extent: Arctic (Norway (Svalbard) onshore and offshore) - between 81°10'N and 76°10'N.
7157
     * Mean Sea Level (MSL) at Ny-Ålesund. The SVD2006 surface (arcgp-2006-sk) is the Arctic Gravity Project 2006
7158
     * (arcgp-2006) surface adjusted to two benchmarks tied to the Ny-Ålesund tide gauge. arcgp-2006-sk=arcgp-2006 -
7159
     * 0.8986m.
7160
     */
7161
    public const EPSG_SVALBARD_VERTICAL_DATUM_2006 = 'urn:ogc:def:datum:EPSG::1323';
7162
7163
    /**
7164
     * Swiss Terrestrial Reference System 1995
7165
     * Type: Geodetic
7166
     * Extent: Liechtenstein; Switzerland.
7167
     * ETRF89 at epoch 1993.0.
7168
     * First realized through CHTRF95 and subsequently CHTRF98, 2004, 2010 and 2016 with an aim to re-measure every 6
7169
     * years.
7170
     */
7171
    public const EPSG_SWISS_TERRESTRIAL_REFERENCE_SYSTEM_1995 = 'urn:ogc:def:datum:EPSG::6151';
7172
7173
    /**
7174
     * System of the Unified Trigonometrical Cadastral Network
7175
     * Type: Geodetic
7176
     * Extent: Czechia; Slovakia.
7177
     * Modification of Austrian MGI datum, code 6312.
7178
     */
7179
    public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK = 'urn:ogc:def:datum:EPSG::6156';
7180
7181
    /**
7182
     * System of the Unified Trigonometrical Cadastral Network (Ferro)
7183
     * Type: Geodetic
7184
     * Extent: Czechia; Slovakia.
7185
     * Modification of Austrian MGI (Ferro) datum.
7186
     */
7187
    public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK_FERRO = 'urn:ogc:def:datum:EPSG::6818';
7188
7189
    /**
7190
     * System of the Unified Trigonometrical Cadastral Network [JTSK03]
7191
     * Type: Geodetic
7192
     * Extent: Slovakia.
7193
     */
7194
    public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK_JTSK03 = 'urn:ogc:def:datum:EPSG::1201';
7195
7196
    /**
7197
     * System of the Unified Trigonometrical Cadastral Network/05
7198
     * Type: Geodetic
7199
     * Extent: Czechia.
7200
     * Constrained to S-JTSK but realised through readjustment in projected CRS domain. Related to ETRS89 R05
7201
     * realisation through transformation code 5226.
7202
     */
7203
    public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK_05 = 'urn:ogc:def:datum:EPSG::1052';
7204
7205
    /**
7206
     * System of the Unified Trigonometrical Cadastral Network/05 (Ferro)
7207
     * Type: Geodetic
7208
     * Extent: Czechia.
7209
     * Constrained to S-JTSK but realised through readjustment in projected CRS domain.
7210
     */
7211
    public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK_05_FERRO = 'urn:ogc:def:datum:EPSG::1055';
7212
7213
    /**
7214
     * TM65
7215
     * Type: Geodetic
7216
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
7217
     * Adjusted to best mean fit 12 stations of the OSNI 1952 primary adjustment.
7218
     * Differences between OSNI 1952 and TM65 at these stations are RMS 0.25m east, 0.23m north, maximum vector 0.57m.
7219
     * TM65 replaced by and not to be confused with Geodetic Datum of 1965 alias 1975 Mapping Adjustment or TM75 (datum
7220
     * code 6300).
7221
     */
7222
    public const EPSG_TM65 = 'urn:ogc:def:datum:EPSG::6299';
7223
7224
    /**
7225
     * TPEN11 Intermediate Reference Frame
7226
     * Type: Geodetic
7227
     * Extent: United Kingdom (UK) - on or related to the Trans-Pennine rail route from Liverpool via Manchester to
7228
     * Bradford and Leeds.
7229
     * Defined through the application of the TPEN11 NTv2 transformation (code 9365) to ETRS89 as realized through
7230
     * OSNet v2009 CORS.
7231
     * Created in 2020 to support intermediate CRS "TPEN11-IRF" in the emulation of the combined TPEN11 Snake and
7232
     * TPEN11ext Snake map projections.
7233
     */
7234
    public const EPSG_TPEN11_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1266';
7235
7236
    /**
7237
     * Tahaa 54
7238
     * Type: Geodetic
7239
     * Extent: French Polynesia - Society Islands - Bora Bora, Huahine, Raiatea and Tahaa.
7240
     * Fundamental point: Tahaa East Base. Latitude: 16°33'20.97"S, longitude: 151°29'06.25"W (of Greenwich).
7241
     * Replaced by RGPF (datum code 6687).
7242
     */
7243
    public const EPSG_TAHAA_54 = 'urn:ogc:def:datum:EPSG::6629';
7244
7245
    /**
7246
     * Tahaa SAU 2001
7247
     * Type: Vertical
7248
     * Extent: French Polynesia - Society Islands - Tahaa.
7249
     * Fundamental benchmark: RN16
7250
     * Included as part of NGPF - see datum code 5195.
7251
     */
7252
    public const EPSG_TAHAA_SAU_2001 = 'urn:ogc:def:datum:EPSG::5201';
7253
7254
    /**
7255
     * Tahiti 52
7256
     * Type: Geodetic
7257
     * Extent: French Polynesia - Society Islands - Moorea and Tahiti.
7258
     * Fundamental point: Tahiti North Base. Latitude: 17°38'10.0"S, longitude: 149°36'57.8"W (of Greenwich).
7259
     * Replaced by Tahiti 79 (datum code 6690) in Tahiti and Moorea 87 (code 6691) in Moorea.
7260
     */
7261
    public const EPSG_TAHITI_52 = 'urn:ogc:def:datum:EPSG::6628';
7262
7263
    /**
7264
     * Tahiti 79
7265
     * Type: Geodetic
7266
     * Extent: French Polynesia - Society Islands - Tahiti.
7267
     * Fundamental point: Tahiti North Base. Latitude: 17°38'10.0"S, longitude: 149°36'57.8"W (of Greenwich).
7268
     * Replaces Tahiti 52 (datum code 6628) in Tahiti. Replaced by RGPF (datum code 6687).
7269
     */
7270
    public const EPSG_TAHITI_79 = 'urn:ogc:def:datum:EPSG::6690';
7271
7272
    /**
7273
     * Taiwan Datum 1967
7274
     * Type: Geodetic
7275
     * Extent: Taiwan, Republic of China - onshore - Taiwan Island, Penghu (Pescadores) Islands.
7276
     * Fundamental point: Hu Tzu Shan. Latitude: 23°58'32.34"N, longitude: 120°58'25.975"E (of Greenwich).
7277
     * Adopted in 1980. TWD67 uses the GRS 1967 ellipsoid but with 1/f to exactly 2 decimal places.
7278
     */
7279
    public const EPSG_TAIWAN_DATUM_1967 = 'urn:ogc:def:datum:EPSG::1025';
7280
7281
    /**
7282
     * Taiwan Datum 1997
7283
     * Type: Geodetic
7284
     * Extent: Taiwan, Republic of China - onshore and offshore - Taiwan Island, Penghu (Pescadores) Islands.
7285
     * ITRF94 at epoch 1997.0
7286
     * Adopted in 1998.
7287
     */
7288
    public const EPSG_TAIWAN_DATUM_1997 = 'urn:ogc:def:datum:EPSG::1026';
7289
7290
    /**
7291
     * Taiwan Vertical Datum 2001
7292
     * Type: Vertical
7293
     * Extent: Taiwan, Republic of China - onshore - Taiwan Island.
7294
     * Mean Sea Level at Keelung between 1957 and 1991.
7295
     * Orthometric heights.
7296
     */
7297
    public const EPSG_TAIWAN_VERTICAL_DATUM_2001 = 'urn:ogc:def:datum:EPSG::1224';
7298
7299
    /**
7300
     * Tananarive 1925
7301
     * Type: Geodetic
7302
     * Extent: Madagascar - onshore and nearshore.
7303
     * Fundamental point: Tananarive observatory. Latitude: 18°55'02.10"S, longitude: 47°33'06.75"E (of Greenwich).
7304
     */
7305
    public const EPSG_TANANARIVE_1925 = 'urn:ogc:def:datum:EPSG::6297';
7306
7307
    /**
7308
     * Tananarive 1925 (Paris)
7309
     * Type: Geodetic
7310
     * Extent: Madagascar - onshore.
7311
     * Fundamental point: Tananarive observatory. Latitude: 21.0191667g S, longitude: 50.23849537g E (of Paris).
7312
     */
7313
    public const EPSG_TANANARIVE_1925_PARIS = 'urn:ogc:def:datum:EPSG::6810';
7314
7315
    /**
7316
     * Tapi Aike
7317
     * Type: Geodetic
7318
     * Extent: Argentina - Santa Cruz province south of approximately 50°20'S.
7319
     * Replaced by Campo Inchauspe (code 6221) for topographic mapping, use for oil exploration and production
7320
     * continues.
7321
     */
7322
    public const EPSG_TAPI_AIKE = 'urn:ogc:def:datum:EPSG::1257';
7323
7324
    /**
7325
     * Taranaki 1970
7326
     * Type: Vertical
7327
     * Extent: New Zealand - North Island - Taranaki vertical CRS area.
7328
     * MSL at Taranaki harbour 1918-1921.
7329
     */
7330
    public const EPSG_TARANAKI_1970 = 'urn:ogc:def:datum:EPSG::5167';
7331
7332
    /**
7333
     * Tararu 1952
7334
     * Type: Vertical
7335
     * Extent: New Zealand - North Island - Tararu vertical CRS area.
7336
     * MSL at Tararu Point 1922-1923.
7337
     */
7338
    public const EPSG_TARARU_1952 = 'urn:ogc:def:datum:EPSG::5166';
7339
7340
    /**
7341
     * Tenerife
7342
     * Type: Vertical
7343
     * Extent: Spain - Canary Islands - Tenerife onshore.
7344
     * Mean Sea Level at Santa Cruz de Tenerife harbour between 1960 and 1970.
7345
     * Orthometric heights.
7346
     */
7347
    public const EPSG_TENERIFE = 'urn:ogc:def:datum:EPSG::1281';
7348
7349
    /**
7350
     * Tern Island 1961
7351
     * Type: Geodetic
7352
     * Extent: United States (USA) - Hawaii - Tern Island and Sorel Atoll.
7353
     * Fundamental point: station FRIG on tern island, station B4 on Sorol Atoll.
7354
     * Two independent astronomic determinations considered to be consistent through adoption of common transformation
7355
     * to WGS 84 (see tfm code 15795).
7356
     */
7357
    public const EPSG_TERN_ISLAND_1961 = 'urn:ogc:def:datum:EPSG::6707';
7358
7359
    /**
7360
     * Tete
7361
     * Type: Geodetic
7362
     * Extent: Mozambique - onshore.
7363
     * Fundamental point: Tete.
7364
     */
7365
    public const EPSG_TETE = 'urn:ogc:def:datum:EPSG::6127';
7366
7367
    /**
7368
     * Timbalai 1948
7369
     * Type: Geodetic
7370
     * Extent: Brunei - onshore and offshore; Malaysia - East Malaysia (Sabah; Sarawak) - onshore and offshore.
7371
     * Fundamental point: Station P85 at Timbalai. Latitude: 5°17' 3.548"N, longitude: 115°10'56.409"E (of
7372
     * Greenwich).
7373
     * In 1968, the original adjustment was densified in Sarawak and extended to Sabah.
7374
     */
7375
    public const EPSG_TIMBALAI_1948 = 'urn:ogc:def:datum:EPSG::6298';
7376
7377
    /**
7378
     * Tokyo
7379
     * Type: Geodetic
7380
     * Extent: Japan - onshore; North Korea - onshore; South Korea - onshore.
7381
     * Fundamental point: Nikon-Keido-Genten. Latitude: 35°39'17.5148"N, longitude: 139°44'40.5020"E (of Greenwich).
7382
     * Longitude derived in 1918.
7383
     * In Japan, replaces Tokyo 1892 (code 1048) and replaced by Japanese Geodetic Datum 2000 (code 6611). In Korea
7384
     * used only for geodetic applications before being replaced by Korean 1985 (code 6162).
7385
     */
7386
    public const EPSG_TOKYO = 'urn:ogc:def:datum:EPSG::6301';
7387
7388
    /**
7389
     * Tokyo 1892
7390
     * Type: Geodetic
7391
     * Extent: Japan - onshore; North Korea - onshore; South Korea - onshore.
7392
     * Fundamental point: Nikon-Keido-Genten. Latitude: 35°39'17.5148"N, longitude: 139°44'30.0970"E (of Greenwich).
7393
     * Longitude derived in 1892.
7394
     * Extended from Japan to Korea in 1898. In Japan replaced by Tokyo 1918 (datum code 6301). In South Korea replaced
7395
     * by Tokyo 1918 (code 6301) only for geodetic purposes; for all other purposes replaced by Korean 1985 (code
7396
     * 6162).
7397
     */
7398
    public const EPSG_TOKYO_1892 = 'urn:ogc:def:datum:EPSG::1048';
7399
7400
    /**
7401
     * Tonga Geodetic Datum 2005
7402
     * Type: Geodetic
7403
     * Extent: Tonga - onshore and offshore.
7404
     * Based on ITRF2000 at epoch 2005.0.
7405
     */
7406
    public const EPSG_TONGA_GEODETIC_DATUM_2005 = 'urn:ogc:def:datum:EPSG::1095';
7407
7408
    /**
7409
     * Trieste
7410
     * Type: Vertical
7411
     * Extent: Bosnia and Herzegovina; Croatia - onshore; Kosovo; Montenegro - onshore; North Macedonia; Serbia;
7412
     * Slovenia - onshore.
7413
     * Reference point HM1(BV1)-Trieste defined relative to mean sea level at Trieste in 1875.
7414
     * Normal-orthometric heights. In Croatia replaced by HVRS71 (datum code 5207).
7415
     */
7416
    public const EPSG_TRIESTE = 'urn:ogc:def:datum:EPSG::1050';
7417
7418
    /**
7419
     * Trinidad 1903
7420
     * Type: Geodetic
7421
     * Extent: Trinidad and Tobago - Trinidad - onshore and offshore.
7422
     * Station 00, Harbour Master's Flagstaff, Port of Spain.
7423
     * Trinidad 1903 / Trinidad Grid coordinates (Clarke's links): 333604.30 E, 436366.91 N (Latitude: 10°38'39.01"N,
7424
     * Longitude: 61°30'38.00"W of Greenwich).
7425
     */
7426
    public const EPSG_TRINIDAD_1903 = 'urn:ogc:def:datum:EPSG::6302';
7427
7428
    /**
7429
     * Tristan 1968
7430
     * Type: Geodetic
7431
     * Extent: St Helena, Ascension and Tristan da Cunha - Tristan da Cunha island group including Tristan,
7432
     * Inaccessible, Nightingale, Middle and Stoltenhoff Islands.
7433
     */
7434
    public const EPSG_TRISTAN_1968 = 'urn:ogc:def:datum:EPSG::6734';
7435
7436
    /**
7437
     * Trucial Coast 1948
7438
     * Type: Geodetic
7439
     * Extent: United Arab Emirates (UAE) - Abu Dhabi onshore and Dubai onshore.
7440
     * Fundamental point: TC1. Latitude: 25°23'50.190"N, longitude: 55°26'43.950"E (of Greenwich).
7441
     */
7442
    public const EPSG_TRUCIAL_COAST_1948 = 'urn:ogc:def:datum:EPSG::6303';
7443
7444
    /**
7445
     * Turkish National Reference Frame
7446
     * Type: Geodetic
7447
     * Extent: Türkiye (Turkey) - onshore and offshore.
7448
     * ITRF96 at epoch 2005.0.
7449
     */
7450
    public const EPSG_TURKISH_NATIONAL_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1057';
7451
7452
    /**
7453
     * Tutuila Vertical Datum of 1962
7454
     * Type: Vertical
7455
     * Extent: American Samoa - Tutuila island.
7456
     * Mean sea level at Pago Pago harbor, Tutuila, over 10 years 1949-1955 and 1957-1959. Benchmark NO 2 1948 =
7457
     * 7.67ftUS.
7458
     * Replaced by American Samoa Vertical Datum of 2002 (datum code 1125).
7459
     */
7460
    public const EPSG_TUTUILA_VERTICAL_DATUM_OF_1962 = 'urn:ogc:def:datum:EPSG::1121';
7461
7462
    /**
7463
     * Ukraine 2000
7464
     * Type: Geodetic
7465
     * Extent: Ukraine - onshore and offshore.
7466
     * Orientation and scale constrained to be same as ITRF2000 at epoch 2005.0. Position is minimised deviation
7467
     * between reference ellipsoid and quasigeoid in territory of Ukraine.
7468
     */
7469
    public const EPSG_UKRAINE_2000 = 'urn:ogc:def:datum:EPSG::1077';
7470
7471
    /**
7472
     * Vanua Levu 1915
7473
     * Type: Geodetic
7474
     * Extent: Fiji - Vanua Levu and Taveuni.
7475
     * Latitude origin was obtained astronomically at station Numuiloa = 16°23'38.36"S, longitude origin was obtained
7476
     * astronomically at station Suva = 178°25'35.835"E.
7477
     * For topographic mapping, replaced by Fiji 1956. For other purposes, replaced by Fiji 1986.
7478
     */
7479
    public const EPSG_VANUA_LEVU_1915 = 'urn:ogc:def:datum:EPSG::6748';
7480
7481
    /**
7482
     * Vientiane 1982
7483
     * Type: Geodetic
7484
     * Extent: Laos.
7485
     * Fundamental point: Vientiane (Nongteng) Astro Pillar. Latitude: 18°01'31.6301"N, longitude: 102°30'56.6999"E
7486
     * (of Greenwich).
7487
     * Replaced by Lao 1993.
7488
     */
7489
    public const EPSG_VIENTIANE_1982 = 'urn:ogc:def:datum:EPSG::6676';
7490
7491
    /**
7492
     * Vietnam 2000
7493
     * Type: Geodetic
7494
     * Extent: Vietnam - onshore.
7495
     * Point N00, located in the premises of the Land Administration Research Institute, Hoang Quoc Viet Street, Hanoi.
7496
     * Replaces Hanoi 1972.
7497
     */
7498
    public const EPSG_VIETNAM_2000 = 'urn:ogc:def:datum:EPSG::6756';
7499
7500
    /**
7501
     * Virgin Islands Vertical Datum of 2009
7502
     * Type: Vertical
7503
     * Extent: US Virgin Islands - onshore - St Croix, St John, and St Thomas.
7504
     * Mean sea level for National Tidal Datum Epoch 1983–2001 at (i) Lime Tree Bay, St. Croix (BM 9751401 M =
7505
     * 3.111m) , (ii) Lameshur Bay, St. John (BM 9751381 TIDAL A = 1.077m) , and (iii) Charlotte Amalie, St. Thomas (BM
7506
     * 9751639 F = 1.552m).
7507
     * Replaces all earlier vertical datums on these islands.
7508
     */
7509
    public const EPSG_VIRGIN_ISLANDS_VERTICAL_DATUM_OF_2009 = 'urn:ogc:def:datum:EPSG::1124';
7510
7511
    /**
7512
     * Viti Levu 1912
7513
     * Type: Geodetic
7514
     * Extent: Fiji - Viti Levu island.
7515
     * Latitude origin was obtained astronomically at station Monavatu = 17°53'28.285"S, longitude origin was obtained
7516
     * astronomically at station Suva = 178°25'35.835"E.
7517
     * For topographic mapping, replaced by Fiji 1956. For other purposes, replaced by Fiji 1986.
7518
     */
7519
    public const EPSG_VITI_LEVU_1912 = 'urn:ogc:def:datum:EPSG::6752';
7520
7521
    /**
7522
     * Voirol 1875
7523
     * Type: Geodetic
7524
     * Extent: Algeria - onshore north of 32°N.
7525
     * Fundamental point: Voirol. Latitude: 36°45'07.927"N, longitude: 3°02'49.435"E of Greenwich. Uses RGS (and old
7526
     * IGN) value of 2°20'13.95"for Greenwich-Paris meridian difference.
7527
     * Replaced by Voirol 1879 (code 6671).
7528
     */
7529
    public const EPSG_VOIROL_1875 = 'urn:ogc:def:datum:EPSG::6304';
7530
7531
    /**
7532
     * Voirol 1875 (Paris)
7533
     * Type: Geodetic
7534
     * Extent: Algeria - onshore north of 32°N.
7535
     * Fundamental point: Voirol. Latitude: 40.83578 grads N, longitude: 0.78873 grads E (of Paris).
7536
     */
7537
    public const EPSG_VOIROL_1875_PARIS = 'urn:ogc:def:datum:EPSG::6811';
7538
7539
    /**
7540
     * Voirol 1879
7541
     * Type: Geodetic
7542
     * Extent: Algeria - onshore north of 32°N.
7543
     * Fundamental point: Voirol. Latitude: 36°45'08.199"N, longitude: 3°02'49.435"E (of Greenwich). Uses RGS (and
7544
     * old IGN) value of 2°20'13.95"for Greenwich-Paris meridian difference.
7545
     * Replaces Voirol 1875 (code 6304).
7546
     */
7547
    public const EPSG_VOIROL_1879 = 'urn:ogc:def:datum:EPSG::6671';
7548
7549
    /**
7550
     * Voirol 1879 (Paris)
7551
     * Type: Geodetic
7552
     * Extent: Algeria - onshore north of 32°N.
7553
     * Fundamental point: Voirol. Latitude: 40.835864 grads N, longitude: 0.788735 grads E (of Paris).
7554
     * Replaces Voirol 1875 (Paris) (code 6811).
7555
     */
7556
    public const EPSG_VOIROL_1879_PARIS = 'urn:ogc:def:datum:EPSG::6821';
7557
7558
    /**
7559
     * WGS 72 Transit Broadcast Ephemeris
7560
     * Type: Dynamic geodetic
7561
     * Extent: World.
7562
     * Alleged datum for use with Transit broadcast ephemeris prior to 1989. Relationship to WGS 72 has changed over
7563
     * time.
7564
     */
7565
    public const EPSG_WGS_72_TRANSIT_BROADCAST_EPHEMERIS = 'urn:ogc:def:datum:EPSG::6324';
7566
7567
    /**
7568
     * Waitangi (Chatham Island) 1959
7569
     * Type: Vertical
7570
     * Extent: New Zealand - Chatham Island - onshore.
7571
     * MSL at Waitangi harbour collected in 1959.
7572
     */
7573
    public const EPSG_WAITANGI_CHATHAM_ISLAND_1959 = 'urn:ogc:def:datum:EPSG::5169';
7574
7575
    /**
7576
     * Wake Island 1952
7577
     * Type: Geodetic
7578
     * Extent: Wake atoll - onshore.
7579
     */
7580
    public const EPSG_WAKE_ISLAND_1952 = 'urn:ogc:def:datum:EPSG::6733';
7581
7582
    /**
7583
     * Wellington 1953
7584
     * Type: Vertical
7585
     * Extent: New Zealand - North Island - Wellington vertical CRS area.
7586
     * MSL at Wellington harbour 1909-1946.
7587
     */
7588
    public const EPSG_WELLINGTON_1953 = 'urn:ogc:def:datum:EPSG::5168';
7589
7590
    /**
7591
     * Wiener Null
7592
     * Type: Vertical
7593
     * Extent: Austria - Vienna city state.
7594
     * Historic benchmark on the Schwedenbrücke over an artificial channel of River Danube (Donaukanal) with GHA
7595
     * height of 156.680m.
7596
     */
7597
    public const EPSG_WIENER_NULL = 'urn:ogc:def:datum:EPSG::1267';
7598
7599
    /**
7600
     * World Geodetic System 1966
7601
     * Type: Dynamic geodetic
7602
     * Extent: World.
7603
     * Developed from a worldwide distribution of terrestrial and geodetic satellite observations and defined through a
7604
     * set of station coordinates.
7605
     * A worldwide 5° × 5° mean free air gravity anomaly field provided the basic data for producing the WGS 66
7606
     * gravimetric geoid. Replaced by WGS 72.
7607
     */
7608
    public const EPSG_WORLD_GEODETIC_SYSTEM_1966 = 'urn:ogc:def:datum:EPSG::6760';
7609
7610
    /**
7611
     * World Geodetic System 1972
7612
     * Type: Dynamic geodetic
7613
     * Extent: World.
7614
     * Developed from a worldwide distribution of terrestrial and geodetic satellite observations and defined through a
7615
     * set of station coordinates.
7616
     * Used by GPS before 1987. For Transit satellite positioning see also WGS 72BE.
7617
     */
7618
    public const EPSG_WORLD_GEODETIC_SYSTEM_1972 = 'urn:ogc:def:datum:EPSG::6322';
7619
7620
    /**
7621
     * World Geodetic System 1984 (G1150)
7622
     * Type: Dynamic geodetic
7623
     * Extent: World.
7624
     * Defined through coordinates of 17 GPS tracking stations adjusted to a subset of 49 IGS stations. Observations
7625
     * made in February 2001. The reference epoch for ITRF2000 is 1997.0; station coordinates were transformed to
7626
     * 2001.0 using IERS station velocities.
7627
     * Replaces World Geodetic System 1984 (G873) from 2002-01-20. Replaced by World Geodetic System 1984 (G1674) from
7628
     * 2012-02-08.
7629
     */
7630
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G1150 = 'urn:ogc:def:datum:EPSG::1154';
7631
7632
    /**
7633
     * World Geodetic System 1984 (G1674)
7634
     * Type: Dynamic geodetic
7635
     * Extent: World.
7636
     * Defined through coordinates of 15 GPS tracking stations adjusted to a subset of IGS stations at epoch 2005.0.
7637
     * The IGS station coordinates are considered to be equivalent to ITRF2008.
7638
     * Replaces World Geodetic System 1984 (G1150) from 2012-02-08. Replaced by World Geodetic System 1984 (G1762) from
7639
     * 2013-10-16.
7640
     */
7641
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G1674 = 'urn:ogc:def:datum:EPSG::1155';
7642
7643
    /**
7644
     * World Geodetic System 1984 (G1762)
7645
     * Type: Dynamic geodetic
7646
     * Extent: World.
7647
     * Defined through coordinates of 19 GPS tracking stations adjusted to a subset of IGb08 stations at epoch 2005.0
7648
     * using observations made in May 2013. The IGb08 coordinates are considered to be equivalent to ITRF2008.
7649
     * Replaces WGS 84 (G1674) from 2013-10-16. Frame was redesignated WGS 84 (G1762') after coordinates of 7 NGA
7650
     * tracking stations were changed following station moves and antenna updates 2014-08 to 2015-06. Replaced by WGS
7651
     * 84 (G2139) from 2021-01-03.
7652
     */
7653
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G1762 = 'urn:ogc:def:datum:EPSG::1156';
7654
7655
    /**
7656
     * World Geodetic System 1984 (G2139)
7657
     * Type: Dynamic geodetic
7658
     * Extent: World.
7659
     * Defined through coordinates of 19 GPS tracking stations aligned with a subset of IGb14 stations at epoch 2016.0.
7660
     * The IGb14 station coordinates are considered to be equivalent to ITRF2014.
7661
     * Replaces World Geodetic System 1984 (G1762) from 2021-01-03. Tracking station coordinate changes on 2021-03-28
7662
     * when NGA implemented IGS definition of antenna phase centre offset.
7663
     */
7664
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G2139 = 'urn:ogc:def:datum:EPSG::1309';
7665
7666
    /**
7667
     * World Geodetic System 1984 (G730)
7668
     * Type: Dynamic geodetic
7669
     * Extent: World.
7670
     * Defined through coordinates of 10 GPS tracking stations adjusted to a subset of ITRF92 stations at epoch 1994.0.
7671
     * The reference epoch for ITRF92 is 1988.0; the ITRF92 station coordinates were transformed to 1994.0 using the
7672
     * NNR-NUVEL1 plate motion model.
7673
     * Replaces the original Transit-derived World Geodetic System 1984 from 1994-06-29. Replaced by World Geodetic
7674
     * System 1984 (G873) from 1997-01-29.
7675
     */
7676
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G730 = 'urn:ogc:def:datum:EPSG::1152';
7677
7678
    /**
7679
     * World Geodetic System 1984 (G873)
7680
     * Type: Dynamic geodetic
7681
     * Extent: World.
7682
     * Defined through coordinates of 13 GPS tracking stations adjusted to a subset of ITRF94 stations at epoch 1997.0.
7683
     * The reference epoch for the adjustment was 1994.0 and the coordinates were propagated to 1997.0 using the
7684
     * NNR-NUVEL-1A plate motion model.
7685
     * Replaces World Geodetic System 1984 (G730) from 1997-01-29. Replaced by World Geodetic System 1984 (G1150) from
7686
     * 2002-01-20.
7687
     */
7688
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G873 = 'urn:ogc:def:datum:EPSG::1153';
7689
7690
    /**
7691
     * World Geodetic System 1984 (Transit)
7692
     * Type: Dynamic geodetic
7693
     * Extent: World.
7694
     * Defined through coordinates of 5 GPS tracking stations in the Transit doppler positioning NSWC 9Z-2 reference
7695
     * frame transformed to be aligned to the BIH Conventional Terrestrial Reference Frame (BTS) at epoch 1984.0.
7696
     * The NSWC 9Z-2 origin shifted by -4.5 m along the Z-axis, scale changed by -0.6 x 10E-6 and the reference
7697
     * meridian rotated westward by 0.814" to be aligned to the BTS at epoch 1984.0. Replaced by World Geodetic System
7698
     * 1984 (G730) from 1994-06-29.
7699
     */
7700
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_TRANSIT = 'urn:ogc:def:datum:EPSG::1166';
7701
7702
    /**
7703
     * World Geodetic System 1984 ensemble
7704
     * Type: Ensemble
7705
     * Extent: World.
7706
     * EPSG::6326 has been the then current realization. No distinction is made between the original and subsequent
7707
     * (G730, G873, G1150, G1674, G1762 and G2139) WGS 84 frames. Since 1997, WGS 84 has been maintained within 10cm of
7708
     * the then current ITRF.
7709
     */
7710
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_ENSEMBLE = 'urn:ogc:def:datum:EPSG::6326';
7711
7712
    /**
7713
     * Xian 1980
7714
     * Type: Geodetic
7715
     * Extent: China - onshore.
7716
     * Xian observatory.
7717
     */
7718
    public const EPSG_XIAN_1980 = 'urn:ogc:def:datum:EPSG::6610';
7719
7720
    /**
7721
     * Yacare
7722
     * Type: Geodetic
7723
     * Extent: Uruguay - onshore.
7724
     * Fundamental point: Yacare. Latitude: 30°35'53.68"S, longitude: 57°25'01.30"W (of Greenwich).
7725
     */
7726
    public const EPSG_YACARE = 'urn:ogc:def:datum:EPSG::6309';
7727
7728
    /**
7729
     * Yellow Sea 1956
7730
     * Type: Vertical
7731
     * Extent: China - onshore.
7732
     * 2 years tide readings at Qingdao.
7733
     * Replaced by Yellow Sea 1985 datum.
7734
     */
7735
    public const EPSG_YELLOW_SEA_1956 = 'urn:ogc:def:datum:EPSG::5104';
7736
7737
    /**
7738
     * Yellow Sea 1985
7739
     * Type: Vertical
7740
     * Extent: China - onshore.
7741
     * 20 years tide readings at Qingdao.
7742
     * Replaces Yellow Sea 1956 datum.
7743
     */
7744
    public const EPSG_YELLOW_SEA_1985 = 'urn:ogc:def:datum:EPSG::5137';
7745
7746
    /**
7747
     * Yemen National Geodetic Network 1996
7748
     * Type: Geodetic
7749
     * Extent: Yemen - onshore and offshore.
7750
     * Sana'a IGN reference marker.
7751
     */
7752
    public const EPSG_YEMEN_NATIONAL_GEODETIC_NETWORK_1996 = 'urn:ogc:def:datum:EPSG::6163';
7753
7754
    /**
7755
     * Yoff
7756
     * Type: Geodetic
7757
     * Extent: Senegal - onshore and offshore.
7758
     * Fundamental point: Yoff. Latitude: 14°44'41.62"N, longitude: 17°29'07.02"W (of Greenwich).
7759
     */
7760
    public const EPSG_YOFF = 'urn:ogc:def:datum:EPSG::6310';
7761
7762
    /**
7763
     * Zanderij
7764
     * Type: Geodetic
7765
     * Extent: Suriname - onshore and offshore.
7766
     */
7767
    public const EPSG_ZANDERIJ = 'urn:ogc:def:datum:EPSG::6311';
7768
7769
    /**
7770
     * Fk89
7771
     * Type: Geodetic
7772
     * Extent: Faroe Islands - onshore.
7773
     * Replaces FD54 for cadastre.
7774
     */
7775
    public const EPSG_FK89 = 'urn:ogc:def:datum:EPSG::6753';
7776
7777
    /**
7778
     * @deprecated use EPSG_LUXEMBOURG_REFERENCE_FRAME instead
7779
     */
7780
    public const EPSG_LUXEMBOURG_1930 = 'urn:ogc:def:datum:EPSG::6181';
7781
7782
    /**
7783
     * @deprecated use EPSG_NIVELLEMENT_GENERAL_DU_LUXEMBOURG_1995 instead
7784
     */
7785
    public const EPSG_NIVELLEMENT_GENERAL_DU_LUXEMBOURG = 'urn:ogc:def:datum:EPSG::5172';
7786
7787
    /**
7788
     * @deprecated use EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A_EPOCH_2010 instead
7789
     */
7790
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A = 'urn:ogc:def:datum:EPSG::1256';
7791
7792
    /**
7793
     * @deprecated use EPSG_INDONESIAN_GEOID_2020_VERSION_1 instead
7794
     */
7795
    public const EPSG_INDONESIAN_GEOID_2020 = 'urn:ogc:def:datum:EPSG::1294';
7796
7797
    protected static array $sridData = [
7798
        'urn:ogc:def:datum:EPSG::1024' => [
7799
            'name' => 'Hungarian Datum 1909',
7800
            'type' => 'geodetic',
7801
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
7802
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7803
            'conventional_rs' => null,
7804
            'frame_reference_epoch' => null,
7805
        ],
7806
        'urn:ogc:def:datum:EPSG::1025' => [
7807
            'name' => 'Taiwan Datum 1967',
7808
            'type' => 'geodetic',
7809
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7050',
7810
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7811
            'conventional_rs' => null,
7812
            'frame_reference_epoch' => null,
7813
        ],
7814
        'urn:ogc:def:datum:EPSG::1026' => [
7815
            'name' => 'Taiwan Datum 1997',
7816
            'type' => 'geodetic',
7817
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7818
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7819
            'conventional_rs' => null,
7820
            'frame_reference_epoch' => null,
7821
        ],
7822
        'urn:ogc:def:datum:EPSG::1027' => [
7823
            'name' => 'EGM2008 geoid',
7824
            'type' => 'vertical',
7825
            'ellipsoid' => null,
7826
            'prime_meridian' => null,
7827
            'conventional_rs' => null,
7828
            'frame_reference_epoch' => null,
7829
        ],
7830
        'urn:ogc:def:datum:EPSG::1028' => [
7831
            'name' => 'Fao 1979',
7832
            'type' => 'vertical',
7833
            'ellipsoid' => null,
7834
            'prime_meridian' => null,
7835
            'conventional_rs' => null,
7836
            'frame_reference_epoch' => null,
7837
        ],
7838
        'urn:ogc:def:datum:EPSG::1029' => [
7839
            'name' => 'Iraqi Geospatial Reference System',
7840
            'type' => 'geodetic',
7841
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7842
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7843
            'conventional_rs' => null,
7844
            'frame_reference_epoch' => null,
7845
        ],
7846
        'urn:ogc:def:datum:EPSG::1030' => [
7847
            'name' => 'N2000',
7848
            'type' => 'vertical',
7849
            'ellipsoid' => null,
7850
            'prime_meridian' => null,
7851
            'conventional_rs' => null,
7852
            'frame_reference_epoch' => null,
7853
        ],
7854
        'urn:ogc:def:datum:EPSG::1031' => [
7855
            'name' => 'MGI 1901',
7856
            'type' => 'geodetic',
7857
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
7858
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7859
            'conventional_rs' => null,
7860
            'frame_reference_epoch' => null,
7861
        ],
7862
        'urn:ogc:def:datum:EPSG::1032' => [
7863
            'name' => 'MOLDREF99',
7864
            'type' => 'geodetic',
7865
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7866
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7867
            'conventional_rs' => null,
7868
            'frame_reference_epoch' => null,
7869
        ],
7870
        'urn:ogc:def:datum:EPSG::1033' => [
7871
            'name' => 'Reseau Geodesique de la RDC 2005',
7872
            'type' => 'geodetic',
7873
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7874
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7875
            'conventional_rs' => null,
7876
            'frame_reference_epoch' => null,
7877
        ],
7878
        'urn:ogc:def:datum:EPSG::1034' => [
7879
            'name' => 'Serbian Reference Network 1998',
7880
            'type' => 'geodetic',
7881
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7882
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7883
            'conventional_rs' => null,
7884
            'frame_reference_epoch' => null,
7885
        ],
7886
        'urn:ogc:def:datum:EPSG::1035' => [
7887
            'name' => 'Red Geodesica de Canarias 1995',
7888
            'type' => 'geodetic',
7889
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7890
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7891
            'conventional_rs' => null,
7892
            'frame_reference_epoch' => null,
7893
        ],
7894
        'urn:ogc:def:datum:EPSG::1036' => [
7895
            'name' => 'Reseau Geodesique de Mayotte 2004',
7896
            'type' => 'geodetic',
7897
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7898
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7899
            'conventional_rs' => null,
7900
            'frame_reference_epoch' => null,
7901
        ],
7902
        'urn:ogc:def:datum:EPSG::1037' => [
7903
            'name' => 'Cadastre 1997',
7904
            'type' => 'geodetic',
7905
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
7906
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7907
            'conventional_rs' => null,
7908
            'frame_reference_epoch' => null,
7909
        ],
7910
        'urn:ogc:def:datum:EPSG::1038' => [
7911
            'name' => 'Reseau Geodesique de Saint Pierre et Miquelon 2006',
7912
            'type' => 'geodetic',
7913
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7914
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7915
            'conventional_rs' => null,
7916
            'frame_reference_epoch' => null,
7917
        ],
7918
        'urn:ogc:def:datum:EPSG::1039' => [
7919
            'name' => 'New Zealand Vertical Datum 2009',
7920
            'type' => 'vertical',
7921
            'ellipsoid' => null,
7922
            'prime_meridian' => null,
7923
            'conventional_rs' => null,
7924
            'frame_reference_epoch' => null,
7925
        ],
7926
        'urn:ogc:def:datum:EPSG::1040' => [
7927
            'name' => 'Dunedin-Bluff 1960',
7928
            'type' => 'vertical',
7929
            'ellipsoid' => null,
7930
            'prime_meridian' => null,
7931
            'conventional_rs' => null,
7932
            'frame_reference_epoch' => null,
7933
        ],
7934
        'urn:ogc:def:datum:EPSG::1041' => [
7935
            'name' => 'Autonomous Regions of Portugal 2008',
7936
            'type' => 'geodetic',
7937
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7938
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7939
            'conventional_rs' => null,
7940
            'frame_reference_epoch' => null,
7941
        ],
7942
        'urn:ogc:def:datum:EPSG::1042' => [
7943
            'name' => 'Mexico ITRF92',
7944
            'type' => 'geodetic',
7945
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7946
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7947
            'conventional_rs' => null,
7948
            'frame_reference_epoch' => null,
7949
        ],
7950
        'urn:ogc:def:datum:EPSG::1043' => [
7951
            'name' => 'China 2000',
7952
            'type' => 'geodetic',
7953
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::1024',
7954
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7955
            'conventional_rs' => null,
7956
            'frame_reference_epoch' => null,
7957
        ],
7958
        'urn:ogc:def:datum:EPSG::1044' => [
7959
            'name' => 'Sao Tome',
7960
            'type' => 'geodetic',
7961
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
7962
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7963
            'conventional_rs' => null,
7964
            'frame_reference_epoch' => null,
7965
        ],
7966
        'urn:ogc:def:datum:EPSG::1045' => [
7967
            'name' => 'New Beijing',
7968
            'type' => 'geodetic',
7969
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
7970
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7971
            'conventional_rs' => null,
7972
            'frame_reference_epoch' => null,
7973
        ],
7974
        'urn:ogc:def:datum:EPSG::1046' => [
7975
            'name' => 'Principe',
7976
            'type' => 'geodetic',
7977
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
7978
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7979
            'conventional_rs' => null,
7980
            'frame_reference_epoch' => null,
7981
        ],
7982
        'urn:ogc:def:datum:EPSG::1047' => [
7983
            'name' => 'Reseau de Reference des Antilles Francaises 1991',
7984
            'type' => 'geodetic',
7985
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7986
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7987
            'conventional_rs' => null,
7988
            'frame_reference_epoch' => null,
7989
        ],
7990
        'urn:ogc:def:datum:EPSG::1048' => [
7991
            'name' => 'Tokyo 1892',
7992
            'type' => 'geodetic',
7993
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
7994
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7995
            'conventional_rs' => null,
7996
            'frame_reference_epoch' => null,
7997
        ],
7998
        'urn:ogc:def:datum:EPSG::1049' => [
7999
            'name' => 'Incheon',
8000
            'type' => 'vertical',
8001
            'ellipsoid' => null,
8002
            'prime_meridian' => null,
8003
            'conventional_rs' => null,
8004
            'frame_reference_epoch' => null,
8005
        ],
8006
        'urn:ogc:def:datum:EPSG::1050' => [
8007
            'name' => 'Trieste',
8008
            'type' => 'vertical',
8009
            'ellipsoid' => null,
8010
            'prime_meridian' => null,
8011
            'conventional_rs' => null,
8012
            'frame_reference_epoch' => null,
8013
        ],
8014
        'urn:ogc:def:datum:EPSG::1051' => [
8015
            'name' => 'Genoa 1942',
8016
            'type' => 'vertical',
8017
            'ellipsoid' => null,
8018
            'prime_meridian' => null,
8019
            'conventional_rs' => null,
8020
            'frame_reference_epoch' => null,
8021
        ],
8022
        'urn:ogc:def:datum:EPSG::1052' => [
8023
            'name' => 'System of the Unified Trigonometrical Cadastral Network/05',
8024
            'type' => 'geodetic',
8025
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
8026
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8027
            'conventional_rs' => null,
8028
            'frame_reference_epoch' => null,
8029
        ],
8030
        'urn:ogc:def:datum:EPSG::1053' => [
8031
            'name' => 'Sri Lanka Datum 1999',
8032
            'type' => 'geodetic',
8033
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
8034
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8035
            'conventional_rs' => null,
8036
            'frame_reference_epoch' => null,
8037
        ],
8038
        'urn:ogc:def:datum:EPSG::1054' => [
8039
            'name' => 'Sri Lanka Vertical Datum',
8040
            'type' => 'vertical',
8041
            'ellipsoid' => null,
8042
            'prime_meridian' => null,
8043
            'conventional_rs' => null,
8044
            'frame_reference_epoch' => null,
8045
        ],
8046
        'urn:ogc:def:datum:EPSG::1055' => [
8047
            'name' => 'System of the Unified Trigonometrical Cadastral Network/05 (Ferro)',
8048
            'type' => 'geodetic',
8049
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
8050
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909',
8051
            'conventional_rs' => null,
8052
            'frame_reference_epoch' => null,
8053
        ],
8054
        'urn:ogc:def:datum:EPSG::1056' => [
8055
            'name' => 'Geocentric Datum Brunei Darussalam 2009',
8056
            'type' => 'geodetic',
8057
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8058
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8059
            'conventional_rs' => null,
8060
            'frame_reference_epoch' => null,
8061
        ],
8062
        'urn:ogc:def:datum:EPSG::1057' => [
8063
            'name' => 'Turkish National Reference Frame',
8064
            'type' => 'geodetic',
8065
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8066
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8067
            'conventional_rs' => null,
8068
            'frame_reference_epoch' => null,
8069
        ],
8070
        'urn:ogc:def:datum:EPSG::1058' => [
8071
            'name' => 'Bhutan National Geodetic Datum',
8072
            'type' => 'geodetic',
8073
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8074
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8075
            'conventional_rs' => null,
8076
            'frame_reference_epoch' => null,
8077
        ],
8078
        'urn:ogc:def:datum:EPSG::1059' => [
8079
            'name' => 'Faroe Islands Vertical Reference 2009',
8080
            'type' => 'vertical',
8081
            'ellipsoid' => null,
8082
            'prime_meridian' => null,
8083
            'conventional_rs' => null,
8084
            'frame_reference_epoch' => null,
8085
        ],
8086
        'urn:ogc:def:datum:EPSG::1060' => [
8087
            'name' => 'Islands Net 2004',
8088
            'type' => 'geodetic',
8089
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8090
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8091
            'conventional_rs' => null,
8092
            'frame_reference_epoch' => null,
8093
        ],
8094
        'urn:ogc:def:datum:EPSG::1061' => [
8095
            'name' => 'International Terrestrial Reference Frame 2008',
8096
            'type' => 'dynamic geodetic',
8097
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8098
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8099
            'conventional_rs' => null,
8100
            'frame_reference_epoch' => 2005.0,
8101
        ],
8102
        'urn:ogc:def:datum:EPSG::1062' => [
8103
            'name' => 'Posiciones Geodesicas Argentinas 2007',
8104
            'type' => 'geodetic',
8105
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8106
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8107
            'conventional_rs' => null,
8108
            'frame_reference_epoch' => null,
8109
        ],
8110
        'urn:ogc:def:datum:EPSG::1063' => [
8111
            'name' => 'Marco Geodesico Nacional de Bolivia',
8112
            'type' => 'geodetic',
8113
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8114
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8115
            'conventional_rs' => null,
8116
            'frame_reference_epoch' => null,
8117
        ],
8118
        'urn:ogc:def:datum:EPSG::1064' => [
8119
            'name' => 'SIRGAS-Chile realization 1 epoch 2002',
8120
            'type' => 'geodetic',
8121
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8122
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8123
            'conventional_rs' => null,
8124
            'frame_reference_epoch' => null,
8125
        ],
8126
        'urn:ogc:def:datum:EPSG::1065' => [
8127
            'name' => 'Costa Rica 2005',
8128
            'type' => 'geodetic',
8129
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8130
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8131
            'conventional_rs' => null,
8132
            'frame_reference_epoch' => null,
8133
        ],
8134
        'urn:ogc:def:datum:EPSG::1066' => [
8135
            'name' => 'Sistema Geodesico Nacional de Panama MACARIO SOLIS',
8136
            'type' => 'geodetic',
8137
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8138
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8139
            'conventional_rs' => null,
8140
            'frame_reference_epoch' => null,
8141
        ],
8142
        'urn:ogc:def:datum:EPSG::1067' => [
8143
            'name' => 'Peru96',
8144
            'type' => 'geodetic',
8145
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8146
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8147
            'conventional_rs' => null,
8148
            'frame_reference_epoch' => null,
8149
        ],
8150
        'urn:ogc:def:datum:EPSG::1068' => [
8151
            'name' => 'SIRGAS-ROU98',
8152
            'type' => 'geodetic',
8153
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8154
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8155
            'conventional_rs' => null,
8156
            'frame_reference_epoch' => null,
8157
        ],
8158
        'urn:ogc:def:datum:EPSG::1069' => [
8159
            'name' => 'SIRGAS_ES2007.8',
8160
            'type' => 'geodetic',
8161
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8162
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8163
            'conventional_rs' => null,
8164
            'frame_reference_epoch' => null,
8165
        ],
8166
        'urn:ogc:def:datum:EPSG::1070' => [
8167
            'name' => 'Ocotepeque 1935',
8168
            'type' => 'geodetic',
8169
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
8170
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8171
            'conventional_rs' => null,
8172
            'frame_reference_epoch' => null,
8173
        ],
8174
        'urn:ogc:def:datum:EPSG::1071' => [
8175
            'name' => 'Sibun Gorge 1922',
8176
            'type' => 'geodetic',
8177
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007',
8178
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8179
            'conventional_rs' => null,
8180
            'frame_reference_epoch' => null,
8181
        ],
8182
        'urn:ogc:def:datum:EPSG::1072' => [
8183
            'name' => 'Panama-Colon 1911',
8184
            'type' => 'geodetic',
8185
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
8186
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8187
            'conventional_rs' => null,
8188
            'frame_reference_epoch' => null,
8189
        ],
8190
        'urn:ogc:def:datum:EPSG::1073' => [
8191
            'name' => 'Reseau Geodesique des Antilles Francaises 2009',
8192
            'type' => 'geodetic',
8193
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8194
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8195
            'conventional_rs' => null,
8196
            'frame_reference_epoch' => null,
8197
        ],
8198
        'urn:ogc:def:datum:EPSG::1074' => [
8199
            'name' => 'Corrego Alegre 1961',
8200
            'type' => 'geodetic',
8201
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
8202
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8203
            'conventional_rs' => null,
8204
            'frame_reference_epoch' => null,
8205
        ],
8206
        'urn:ogc:def:datum:EPSG::1075' => [
8207
            'name' => 'South American Datum 1969(96)',
8208
            'type' => 'geodetic',
8209
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7050',
8210
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8211
            'conventional_rs' => null,
8212
            'frame_reference_epoch' => null,
8213
        ],
8214
        'urn:ogc:def:datum:EPSG::1076' => [
8215
            'name' => 'Papua New Guinea Geodetic Datum 1994',
8216
            'type' => 'geodetic',
8217
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8218
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8219
            'conventional_rs' => null,
8220
            'frame_reference_epoch' => null,
8221
        ],
8222
        'urn:ogc:def:datum:EPSG::1077' => [
8223
            'name' => 'Ukraine 2000',
8224
            'type' => 'geodetic',
8225
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
8226
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8227
            'conventional_rs' => null,
8228
            'frame_reference_epoch' => null,
8229
        ],
8230
        'urn:ogc:def:datum:EPSG::1078' => [
8231
            'name' => 'Fehmarnbelt Datum 2010',
8232
            'type' => 'geodetic',
8233
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8234
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8235
            'conventional_rs' => null,
8236
            'frame_reference_epoch' => null,
8237
        ],
8238
        'urn:ogc:def:datum:EPSG::1079' => [
8239
            'name' => 'Fehmarnbelt Vertical Reference 2010',
8240
            'type' => 'vertical',
8241
            'ellipsoid' => null,
8242
            'prime_meridian' => null,
8243
            'conventional_rs' => null,
8244
            'frame_reference_epoch' => null,
8245
        ],
8246
        'urn:ogc:def:datum:EPSG::1080' => [
8247
            'name' => 'Lowest Astronomical Tide',
8248
            'type' => 'vertical',
8249
            'ellipsoid' => null,
8250
            'prime_meridian' => null,
8251
            'conventional_rs' => null,
8252
            'frame_reference_epoch' => null,
8253
        ],
8254
        'urn:ogc:def:datum:EPSG::1081' => [
8255
            'name' => 'Deutsche Bahn Reference System',
8256
            'type' => 'geodetic',
8257
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
8258
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8259
            'conventional_rs' => null,
8260
            'frame_reference_epoch' => null,
8261
        ],
8262
        'urn:ogc:def:datum:EPSG::1082' => [
8263
            'name' => 'Highest Astronomical Tide',
8264
            'type' => 'vertical',
8265
            'ellipsoid' => null,
8266
            'prime_meridian' => null,
8267
            'conventional_rs' => null,
8268
            'frame_reference_epoch' => null,
8269
        ],
8270
        'urn:ogc:def:datum:EPSG::1083' => [
8271
            'name' => 'Lower Low Water Large Tide',
8272
            'type' => 'vertical',
8273
            'ellipsoid' => null,
8274
            'prime_meridian' => null,
8275
            'conventional_rs' => null,
8276
            'frame_reference_epoch' => null,
8277
        ],
8278
        'urn:ogc:def:datum:EPSG::1084' => [
8279
            'name' => 'Higher High Water Large Tide',
8280
            'type' => 'vertical',
8281
            'ellipsoid' => null,
8282
            'prime_meridian' => null,
8283
            'conventional_rs' => null,
8284
            'frame_reference_epoch' => null,
8285
        ],
8286
        'urn:ogc:def:datum:EPSG::1085' => [
8287
            'name' => 'Indian Spring Low Water',
8288
            'type' => 'vertical',
8289
            'ellipsoid' => null,
8290
            'prime_meridian' => null,
8291
            'conventional_rs' => null,
8292
            'frame_reference_epoch' => null,
8293
        ],
8294
        'urn:ogc:def:datum:EPSG::1086' => [
8295
            'name' => 'Mean Lower Low Water Spring Tides',
8296
            'type' => 'vertical',
8297
            'ellipsoid' => null,
8298
            'prime_meridian' => null,
8299
            'conventional_rs' => null,
8300
            'frame_reference_epoch' => null,
8301
        ],
8302
        'urn:ogc:def:datum:EPSG::1087' => [
8303
            'name' => 'Mean Low Water Spring Tides',
8304
            'type' => 'vertical',
8305
            'ellipsoid' => null,
8306
            'prime_meridian' => null,
8307
            'conventional_rs' => null,
8308
            'frame_reference_epoch' => null,
8309
        ],
8310
        'urn:ogc:def:datum:EPSG::1088' => [
8311
            'name' => 'Mean High Water Spring Tides',
8312
            'type' => 'vertical',
8313
            'ellipsoid' => null,
8314
            'prime_meridian' => null,
8315
            'conventional_rs' => null,
8316
            'frame_reference_epoch' => null,
8317
        ],
8318
        'urn:ogc:def:datum:EPSG::1089' => [
8319
            'name' => 'Mean Lower Low Water',
8320
            'type' => 'vertical',
8321
            'ellipsoid' => null,
8322
            'prime_meridian' => null,
8323
            'conventional_rs' => null,
8324
            'frame_reference_epoch' => null,
8325
        ],
8326
        'urn:ogc:def:datum:EPSG::1090' => [
8327
            'name' => 'Mean Higher High Water',
8328
            'type' => 'vertical',
8329
            'ellipsoid' => null,
8330
            'prime_meridian' => null,
8331
            'conventional_rs' => null,
8332
            'frame_reference_epoch' => null,
8333
        ],
8334
        'urn:ogc:def:datum:EPSG::1091' => [
8335
            'name' => 'Mean Low Water',
8336
            'type' => 'vertical',
8337
            'ellipsoid' => null,
8338
            'prime_meridian' => null,
8339
            'conventional_rs' => null,
8340
            'frame_reference_epoch' => null,
8341
        ],
8342
        'urn:ogc:def:datum:EPSG::1092' => [
8343
            'name' => 'Mean High Water',
8344
            'type' => 'vertical',
8345
            'ellipsoid' => null,
8346
            'prime_meridian' => null,
8347
            'conventional_rs' => null,
8348
            'frame_reference_epoch' => null,
8349
        ],
8350
        'urn:ogc:def:datum:EPSG::1093' => [
8351
            'name' => 'Low Water',
8352
            'type' => 'vertical',
8353
            'ellipsoid' => null,
8354
            'prime_meridian' => null,
8355
            'conventional_rs' => null,
8356
            'frame_reference_epoch' => null,
8357
        ],
8358
        'urn:ogc:def:datum:EPSG::1094' => [
8359
            'name' => 'High Water',
8360
            'type' => 'vertical',
8361
            'ellipsoid' => null,
8362
            'prime_meridian' => null,
8363
            'conventional_rs' => null,
8364
            'frame_reference_epoch' => null,
8365
        ],
8366
        'urn:ogc:def:datum:EPSG::1095' => [
8367
            'name' => 'Tonga Geodetic Datum 2005',
8368
            'type' => 'geodetic',
8369
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8370
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8371
            'conventional_rs' => null,
8372
            'frame_reference_epoch' => null,
8373
        ],
8374
        'urn:ogc:def:datum:EPSG::1096' => [
8375
            'name' => 'Norway Normal Null 2000',
8376
            'type' => 'vertical',
8377
            'ellipsoid' => null,
8378
            'prime_meridian' => null,
8379
            'conventional_rs' => null,
8380
            'frame_reference_epoch' => 2000.0,
8381
        ],
8382
        'urn:ogc:def:datum:EPSG::1097' => [
8383
            'name' => 'Grand Cayman Vertical Datum 1954',
8384
            'type' => 'vertical',
8385
            'ellipsoid' => null,
8386
            'prime_meridian' => null,
8387
            'conventional_rs' => null,
8388
            'frame_reference_epoch' => null,
8389
        ],
8390
        'urn:ogc:def:datum:EPSG::1098' => [
8391
            'name' => 'Little Cayman Vertical Datum 1961',
8392
            'type' => 'vertical',
8393
            'ellipsoid' => null,
8394
            'prime_meridian' => null,
8395
            'conventional_rs' => null,
8396
            'frame_reference_epoch' => null,
8397
        ],
8398
        'urn:ogc:def:datum:EPSG::1099' => [
8399
            'name' => 'Cayman Brac Vertical Datum 1961',
8400
            'type' => 'vertical',
8401
            'ellipsoid' => null,
8402
            'prime_meridian' => null,
8403
            'conventional_rs' => null,
8404
            'frame_reference_epoch' => null,
8405
        ],
8406
        'urn:ogc:def:datum:EPSG::1100' => [
8407
            'name' => 'Cayman Islands Geodetic Datum 2011',
8408
            'type' => 'geodetic',
8409
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8410
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8411
            'conventional_rs' => null,
8412
            'frame_reference_epoch' => null,
8413
        ],
8414
        'urn:ogc:def:datum:EPSG::1101' => [
8415
            'name' => 'Cais da Pontinha - Funchal',
8416
            'type' => 'vertical',
8417
            'ellipsoid' => null,
8418
            'prime_meridian' => null,
8419
            'conventional_rs' => null,
8420
            'frame_reference_epoch' => null,
8421
        ],
8422
        'urn:ogc:def:datum:EPSG::1102' => [
8423
            'name' => 'Cais da Vila - Porto Santo',
8424
            'type' => 'vertical',
8425
            'ellipsoid' => null,
8426
            'prime_meridian' => null,
8427
            'conventional_rs' => null,
8428
            'frame_reference_epoch' => null,
8429
        ],
8430
        'urn:ogc:def:datum:EPSG::1103' => [
8431
            'name' => 'Cais das Velas',
8432
            'type' => 'vertical',
8433
            'ellipsoid' => null,
8434
            'prime_meridian' => null,
8435
            'conventional_rs' => null,
8436
            'frame_reference_epoch' => null,
8437
        ],
8438
        'urn:ogc:def:datum:EPSG::1104' => [
8439
            'name' => 'Horta',
8440
            'type' => 'vertical',
8441
            'ellipsoid' => null,
8442
            'prime_meridian' => null,
8443
            'conventional_rs' => null,
8444
            'frame_reference_epoch' => null,
8445
        ],
8446
        'urn:ogc:def:datum:EPSG::1105' => [
8447
            'name' => 'Cais da Madalena',
8448
            'type' => 'vertical',
8449
            'ellipsoid' => null,
8450
            'prime_meridian' => null,
8451
            'conventional_rs' => null,
8452
            'frame_reference_epoch' => null,
8453
        ],
8454
        'urn:ogc:def:datum:EPSG::1106' => [
8455
            'name' => 'Santa Cruz da Graciosa',
8456
            'type' => 'vertical',
8457
            'ellipsoid' => null,
8458
            'prime_meridian' => null,
8459
            'conventional_rs' => null,
8460
            'frame_reference_epoch' => null,
8461
        ],
8462
        'urn:ogc:def:datum:EPSG::1107' => [
8463
            'name' => 'Cais da Figueirinha - Angra do Heroismo',
8464
            'type' => 'vertical',
8465
            'ellipsoid' => null,
8466
            'prime_meridian' => null,
8467
            'conventional_rs' => null,
8468
            'frame_reference_epoch' => null,
8469
        ],
8470
        'urn:ogc:def:datum:EPSG::1108' => [
8471
            'name' => 'Santa Cruz das Flores',
8472
            'type' => 'vertical',
8473
            'ellipsoid' => null,
8474
            'prime_meridian' => null,
8475
            'conventional_rs' => null,
8476
            'frame_reference_epoch' => null,
8477
        ],
8478
        'urn:ogc:def:datum:EPSG::1109' => [
8479
            'name' => 'Cais da Vila do Porto',
8480
            'type' => 'vertical',
8481
            'ellipsoid' => null,
8482
            'prime_meridian' => null,
8483
            'conventional_rs' => null,
8484
            'frame_reference_epoch' => null,
8485
        ],
8486
        'urn:ogc:def:datum:EPSG::1110' => [
8487
            'name' => 'Ponta Delgada',
8488
            'type' => 'vertical',
8489
            'ellipsoid' => null,
8490
            'prime_meridian' => null,
8491
            'conventional_rs' => null,
8492
            'frame_reference_epoch' => null,
8493
        ],
8494
        'urn:ogc:def:datum:EPSG::1111' => [
8495
            'name' => 'Nepal 1981',
8496
            'type' => 'geodetic',
8497
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
8498
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8499
            'conventional_rs' => null,
8500
            'frame_reference_epoch' => null,
8501
        ],
8502
        'urn:ogc:def:datum:EPSG::1112' => [
8503
            'name' => 'Cyprus Geodetic Reference System 1993',
8504
            'type' => 'geodetic',
8505
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8506
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8507
            'conventional_rs' => null,
8508
            'frame_reference_epoch' => null,
8509
        ],
8510
        'urn:ogc:def:datum:EPSG::1113' => [
8511
            'name' => 'Reseau Geodesique des Terres Australes et Antarctiques Francaises 2007',
8512
            'type' => 'geodetic',
8513
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8514
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8515
            'conventional_rs' => null,
8516
            'frame_reference_epoch' => null,
8517
        ],
8518
        'urn:ogc:def:datum:EPSG::1114' => [
8519
            'name' => 'Israeli Geodetic Datum 2005',
8520
            'type' => 'geodetic',
8521
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8522
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8523
            'conventional_rs' => null,
8524
            'frame_reference_epoch' => null,
8525
        ],
8526
        'urn:ogc:def:datum:EPSG::1115' => [
8527
            'name' => 'Israeli Geodetic Datum 2005(2012)',
8528
            'type' => 'geodetic',
8529
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8530
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8531
            'conventional_rs' => null,
8532
            'frame_reference_epoch' => null,
8533
        ],
8534
        'urn:ogc:def:datum:EPSG::1116' => [
8535
            'name' => 'NAD83 (National Spatial Reference System 2011)',
8536
            'type' => 'geodetic',
8537
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8538
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8539
            'conventional_rs' => null,
8540
            'frame_reference_epoch' => null,
8541
        ],
8542
        'urn:ogc:def:datum:EPSG::1117' => [
8543
            'name' => 'NAD83 (National Spatial Reference System PA11)',
8544
            'type' => 'geodetic',
8545
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8546
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8547
            'conventional_rs' => null,
8548
            'frame_reference_epoch' => null,
8549
        ],
8550
        'urn:ogc:def:datum:EPSG::1118' => [
8551
            'name' => 'NAD83 (National Spatial Reference System MA11)',
8552
            'type' => 'geodetic',
8553
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8554
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8555
            'conventional_rs' => null,
8556
            'frame_reference_epoch' => null,
8557
        ],
8558
        'urn:ogc:def:datum:EPSG::1119' => [
8559
            'name' => 'Northern Marianas Vertical Datum of 2003',
8560
            'type' => 'vertical',
8561
            'ellipsoid' => null,
8562
            'prime_meridian' => null,
8563
            'conventional_rs' => null,
8564
            'frame_reference_epoch' => null,
8565
        ],
8566
        'urn:ogc:def:datum:EPSG::1120' => [
8567
            'name' => 'Mexico ITRF2008',
8568
            'type' => 'geodetic',
8569
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8570
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8571
            'conventional_rs' => null,
8572
            'frame_reference_epoch' => null,
8573
        ],
8574
        'urn:ogc:def:datum:EPSG::1121' => [
8575
            'name' => 'Tutuila Vertical Datum of 1962',
8576
            'type' => 'vertical',
8577
            'ellipsoid' => null,
8578
            'prime_meridian' => null,
8579
            'conventional_rs' => null,
8580
            'frame_reference_epoch' => null,
8581
        ],
8582
        'urn:ogc:def:datum:EPSG::1122' => [
8583
            'name' => 'Guam Vertical Datum of 1963',
8584
            'type' => 'vertical',
8585
            'ellipsoid' => null,
8586
            'prime_meridian' => null,
8587
            'conventional_rs' => null,
8588
            'frame_reference_epoch' => null,
8589
        ],
8590
        'urn:ogc:def:datum:EPSG::1123' => [
8591
            'name' => 'Puerto Rico Vertical Datum of 2002',
8592
            'type' => 'vertical',
8593
            'ellipsoid' => null,
8594
            'prime_meridian' => null,
8595
            'conventional_rs' => null,
8596
            'frame_reference_epoch' => null,
8597
        ],
8598
        'urn:ogc:def:datum:EPSG::1124' => [
8599
            'name' => 'Virgin Islands Vertical Datum of 2009',
8600
            'type' => 'vertical',
8601
            'ellipsoid' => null,
8602
            'prime_meridian' => null,
8603
            'conventional_rs' => null,
8604
            'frame_reference_epoch' => null,
8605
        ],
8606
        'urn:ogc:def:datum:EPSG::1125' => [
8607
            'name' => 'American Samoa Vertical Datum of 2002',
8608
            'type' => 'vertical',
8609
            'ellipsoid' => null,
8610
            'prime_meridian' => null,
8611
            'conventional_rs' => null,
8612
            'frame_reference_epoch' => null,
8613
        ],
8614
        'urn:ogc:def:datum:EPSG::1126' => [
8615
            'name' => 'Guam Vertical Datum of 2004',
8616
            'type' => 'vertical',
8617
            'ellipsoid' => null,
8618
            'prime_meridian' => null,
8619
            'conventional_rs' => null,
8620
            'frame_reference_epoch' => null,
8621
        ],
8622
        'urn:ogc:def:datum:EPSG::1127' => [
8623
            'name' => 'Canadian Geodetic Vertical Datum of 2013 (CGG2013)',
8624
            'type' => 'vertical',
8625
            'ellipsoid' => null,
8626
            'prime_meridian' => null,
8627
            'conventional_rs' => null,
8628
            'frame_reference_epoch' => null,
8629
        ],
8630
        'urn:ogc:def:datum:EPSG::1128' => [
8631
            'name' => 'Japanese Geodetic Datum 2011',
8632
            'type' => 'geodetic',
8633
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8634
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8635
            'conventional_rs' => null,
8636
            'frame_reference_epoch' => null,
8637
        ],
8638
        'urn:ogc:def:datum:EPSG::1129' => [
8639
            'name' => 'Japanese Standard Levelling Datum 1972',
8640
            'type' => 'vertical',
8641
            'ellipsoid' => null,
8642
            'prime_meridian' => null,
8643
            'conventional_rs' => null,
8644
            'frame_reference_epoch' => null,
8645
        ],
8646
        'urn:ogc:def:datum:EPSG::1130' => [
8647
            'name' => 'Japanese Geodetic Datum 2000 (vertical)',
8648
            'type' => 'vertical',
8649
            'ellipsoid' => null,
8650
            'prime_meridian' => null,
8651
            'conventional_rs' => null,
8652
            'frame_reference_epoch' => null,
8653
        ],
8654
        'urn:ogc:def:datum:EPSG::1131' => [
8655
            'name' => 'Japanese Geodetic Datum 2011 (vertical)',
8656
            'type' => 'vertical',
8657
            'ellipsoid' => null,
8658
            'prime_meridian' => null,
8659
            'conventional_rs' => null,
8660
            'frame_reference_epoch' => null,
8661
        ],
8662
        'urn:ogc:def:datum:EPSG::1132' => [
8663
            'name' => 'Rete Dinamica Nazionale 2008',
8664
            'type' => 'geodetic',
8665
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8666
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8667
            'conventional_rs' => null,
8668
            'frame_reference_epoch' => null,
8669
        ],
8670
        'urn:ogc:def:datum:EPSG::1133' => [
8671
            'name' => 'NAD83 (Continuously Operating Reference Station 1996)',
8672
            'type' => 'geodetic',
8673
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8674
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8675
            'conventional_rs' => null,
8676
            'frame_reference_epoch' => null,
8677
        ],
8678
        'urn:ogc:def:datum:EPSG::1135' => [
8679
            'name' => 'Aden 1925',
8680
            'type' => 'geodetic',
8681
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
8682
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8683
            'conventional_rs' => null,
8684
            'frame_reference_epoch' => null,
8685
        ],
8686
        'urn:ogc:def:datum:EPSG::1136' => [
8687
            'name' => 'Bioko',
8688
            'type' => 'geodetic',
8689
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
8690
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8691
            'conventional_rs' => null,
8692
            'frame_reference_epoch' => null,
8693
        ],
8694
        'urn:ogc:def:datum:EPSG::1137' => [
8695
            'name' => 'Bekaa Valley 1920',
8696
            'type' => 'geodetic',
8697
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
8698
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8699
            'conventional_rs' => null,
8700
            'frame_reference_epoch' => null,
8701
        ],
8702
        'urn:ogc:def:datum:EPSG::1138' => [
8703
            'name' => 'South East Island 1943',
8704
            'type' => 'geodetic',
8705
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
8706
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8707
            'conventional_rs' => null,
8708
            'frame_reference_epoch' => null,
8709
        ],
8710
        'urn:ogc:def:datum:EPSG::1139' => [
8711
            'name' => 'Gambia',
8712
            'type' => 'geodetic',
8713
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
8714
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8715
            'conventional_rs' => null,
8716
            'frame_reference_epoch' => null,
8717
        ],
8718
        'urn:ogc:def:datum:EPSG::1140' => [
8719
            'name' => 'Singapore Height Datum',
8720
            'type' => 'vertical',
8721
            'ellipsoid' => null,
8722
            'prime_meridian' => null,
8723
            'conventional_rs' => null,
8724
            'frame_reference_epoch' => null,
8725
        ],
8726
        'urn:ogc:def:datum:EPSG::1141' => [
8727
            'name' => 'IGS08',
8728
            'type' => 'dynamic geodetic',
8729
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8730
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8731
            'conventional_rs' => null,
8732
            'frame_reference_epoch' => 2005.0,
8733
        ],
8734
        'urn:ogc:def:datum:EPSG::1142' => [
8735
            'name' => 'IG05 Intermediate Datum',
8736
            'type' => 'geodetic',
8737
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8738
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8739
            'conventional_rs' => null,
8740
            'frame_reference_epoch' => null,
8741
        ],
8742
        'urn:ogc:def:datum:EPSG::1144' => [
8743
            'name' => 'IG05/12 Intermediate Datum',
8744
            'type' => 'geodetic',
8745
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8746
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8747
            'conventional_rs' => null,
8748
            'frame_reference_epoch' => null,
8749
        ],
8750
        'urn:ogc:def:datum:EPSG::1146' => [
8751
            'name' => 'Ras Ghumays',
8752
            'type' => 'vertical',
8753
            'ellipsoid' => null,
8754
            'prime_meridian' => null,
8755
            'conventional_rs' => null,
8756
            'frame_reference_epoch' => null,
8757
        ],
8758
        'urn:ogc:def:datum:EPSG::1147' => [
8759
            'name' => 'Oman National Geodetic Datum 2014',
8760
            'type' => 'geodetic',
8761
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8762
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8763
            'conventional_rs' => null,
8764
            'frame_reference_epoch' => null,
8765
        ],
8766
        'urn:ogc:def:datum:EPSG::1148' => [
8767
            'name' => 'Famagusta 1960',
8768
            'type' => 'vertical',
8769
            'ellipsoid' => null,
8770
            'prime_meridian' => null,
8771
            'conventional_rs' => null,
8772
            'frame_reference_epoch' => null,
8773
        ],
8774
        'urn:ogc:def:datum:EPSG::1149' => [
8775
            'name' => 'PNG08',
8776
            'type' => 'vertical',
8777
            'ellipsoid' => null,
8778
            'prime_meridian' => null,
8779
            'conventional_rs' => null,
8780
            'frame_reference_epoch' => null,
8781
        ],
8782
        'urn:ogc:def:datum:EPSG::1150' => [
8783
            'name' => 'Kumul 34',
8784
            'type' => 'vertical',
8785
            'ellipsoid' => null,
8786
            'prime_meridian' => null,
8787
            'conventional_rs' => null,
8788
            'frame_reference_epoch' => null,
8789
        ],
8790
        'urn:ogc:def:datum:EPSG::1151' => [
8791
            'name' => 'Kiunga',
8792
            'type' => 'vertical',
8793
            'ellipsoid' => null,
8794
            'prime_meridian' => null,
8795
            'conventional_rs' => null,
8796
            'frame_reference_epoch' => null,
8797
        ],
8798
        'urn:ogc:def:datum:EPSG::1152' => [
8799
            'name' => 'World Geodetic System 1984 (G730)',
8800
            'type' => 'dynamic geodetic',
8801
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8802
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8803
            'conventional_rs' => 1024,
8804
            'frame_reference_epoch' => 1994.0,
8805
        ],
8806
        'urn:ogc:def:datum:EPSG::1153' => [
8807
            'name' => 'World Geodetic System 1984 (G873)',
8808
            'type' => 'dynamic geodetic',
8809
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8810
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8811
            'conventional_rs' => 1024,
8812
            'frame_reference_epoch' => 1997.0,
8813
        ],
8814
        'urn:ogc:def:datum:EPSG::1154' => [
8815
            'name' => 'World Geodetic System 1984 (G1150)',
8816
            'type' => 'dynamic geodetic',
8817
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8818
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8819
            'conventional_rs' => 1024,
8820
            'frame_reference_epoch' => 2001.0,
8821
        ],
8822
        'urn:ogc:def:datum:EPSG::1155' => [
8823
            'name' => 'World Geodetic System 1984 (G1674)',
8824
            'type' => 'dynamic geodetic',
8825
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8826
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8827
            'conventional_rs' => 1024,
8828
            'frame_reference_epoch' => 2005.0,
8829
        ],
8830
        'urn:ogc:def:datum:EPSG::1156' => [
8831
            'name' => 'World Geodetic System 1984 (G1762)',
8832
            'type' => 'dynamic geodetic',
8833
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8834
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8835
            'conventional_rs' => 1024,
8836
            'frame_reference_epoch' => 2005.0,
8837
        ],
8838
        'urn:ogc:def:datum:EPSG::1157' => [
8839
            'name' => 'Parametry Zemli 1990.02',
8840
            'type' => 'dynamic geodetic',
8841
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7054',
8842
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8843
            'conventional_rs' => null,
8844
            'frame_reference_epoch' => 2002.0,
8845
        ],
8846
        'urn:ogc:def:datum:EPSG::1158' => [
8847
            'name' => 'Parametry Zemli 1990.11',
8848
            'type' => 'dynamic geodetic',
8849
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7054',
8850
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8851
            'conventional_rs' => null,
8852
            'frame_reference_epoch' => 2010.0,
8853
        ],
8854
        'urn:ogc:def:datum:EPSG::1159' => [
8855
            'name' => 'Geodezicheskaya Sistema Koordinat 2011',
8856
            'type' => 'geodetic',
8857
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::1025',
8858
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8859
            'conventional_rs' => null,
8860
            'frame_reference_epoch' => null,
8861
        ],
8862
        'urn:ogc:def:datum:EPSG::1160' => [
8863
            'name' => 'Kyrgyzstan Geodetic Datum 2006',
8864
            'type' => 'geodetic',
8865
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8866
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8867
            'conventional_rs' => null,
8868
            'frame_reference_epoch' => null,
8869
        ],
8870
        'urn:ogc:def:datum:EPSG::1161' => [
8871
            'name' => 'Deutsches Haupthoehennetz 1912',
8872
            'type' => 'vertical',
8873
            'ellipsoid' => null,
8874
            'prime_meridian' => null,
8875
            'conventional_rs' => null,
8876
            'frame_reference_epoch' => null,
8877
        ],
8878
        'urn:ogc:def:datum:EPSG::1162' => [
8879
            'name' => 'Latvian Height System 2000',
8880
            'type' => 'vertical',
8881
            'ellipsoid' => null,
8882
            'prime_meridian' => null,
8883
            'conventional_rs' => null,
8884
            'frame_reference_epoch' => null,
8885
        ],
8886
        'urn:ogc:def:datum:EPSG::1164' => [
8887
            'name' => 'Ordnance Datum Newlyn (Offshore)',
8888
            'type' => 'vertical',
8889
            'ellipsoid' => null,
8890
            'prime_meridian' => null,
8891
            'conventional_rs' => 1026,
8892
            'frame_reference_epoch' => null,
8893
        ],
8894
        'urn:ogc:def:datum:EPSG::1165' => [
8895
            'name' => 'International Terrestrial Reference Frame 2014',
8896
            'type' => 'dynamic geodetic',
8897
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8898
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8899
            'conventional_rs' => null,
8900
            'frame_reference_epoch' => 2010.0,
8901
        ],
8902
        'urn:ogc:def:datum:EPSG::1166' => [
8903
            'name' => 'World Geodetic System 1984 (Transit)',
8904
            'type' => 'dynamic geodetic',
8905
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8906
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8907
            'conventional_rs' => 1024,
8908
            'frame_reference_epoch' => 1984.0,
8909
        ],
8910
        'urn:ogc:def:datum:EPSG::1167' => [
8911
            'name' => 'Bulgaria Geodetic System 2005',
8912
            'type' => 'geodetic',
8913
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8914
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8915
            'conventional_rs' => null,
8916
            'frame_reference_epoch' => null,
8917
        ],
8918
        'urn:ogc:def:datum:EPSG::1168' => [
8919
            'name' => 'Geocentric Datum of Australia 2020',
8920
            'type' => 'geodetic',
8921
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8922
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8923
            'conventional_rs' => null,
8924
            'frame_reference_epoch' => null,
8925
        ],
8926
        'urn:ogc:def:datum:EPSG::1169' => [
8927
            'name' => 'New Zealand Vertical Datum 2016',
8928
            'type' => 'vertical',
8929
            'ellipsoid' => null,
8930
            'prime_meridian' => null,
8931
            'conventional_rs' => null,
8932
            'frame_reference_epoch' => null,
8933
        ],
8934
        'urn:ogc:def:datum:EPSG::1170' => [
8935
            'name' => 'Deutsches Haupthoehennetz 2016',
8936
            'type' => 'vertical',
8937
            'ellipsoid' => null,
8938
            'prime_meridian' => null,
8939
            'conventional_rs' => null,
8940
            'frame_reference_epoch' => null,
8941
        ],
8942
        'urn:ogc:def:datum:EPSG::1171' => [
8943
            'name' => 'Port Moresby 1996',
8944
            'type' => 'vertical',
8945
            'ellipsoid' => null,
8946
            'prime_meridian' => null,
8947
            'conventional_rs' => null,
8948
            'frame_reference_epoch' => null,
8949
        ],
8950
        'urn:ogc:def:datum:EPSG::1172' => [
8951
            'name' => 'Port Moresby 2008',
8952
            'type' => 'vertical',
8953
            'ellipsoid' => null,
8954
            'prime_meridian' => null,
8955
            'conventional_rs' => null,
8956
            'frame_reference_epoch' => null,
8957
        ],
8958
        'urn:ogc:def:datum:EPSG::1173' => [
8959
            'name' => 'St. Helena Tritan',
8960
            'type' => 'geodetic',
8961
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8962
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8963
            'conventional_rs' => null,
8964
            'frame_reference_epoch' => null,
8965
        ],
8966
        'urn:ogc:def:datum:EPSG::1174' => [
8967
            'name' => 'St. Helena Geodetic Datum 2015',
8968
            'type' => 'geodetic',
8969
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8970
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8971
            'conventional_rs' => null,
8972
            'frame_reference_epoch' => null,
8973
        ],
8974
        'urn:ogc:def:datum:EPSG::1175' => [
8975
            'name' => 'Jamestown 1971',
8976
            'type' => 'vertical',
8977
            'ellipsoid' => null,
8978
            'prime_meridian' => null,
8979
            'conventional_rs' => null,
8980
            'frame_reference_epoch' => null,
8981
        ],
8982
        'urn:ogc:def:datum:EPSG::1176' => [
8983
            'name' => 'St. Helena Tritan Vertical Datum 2011',
8984
            'type' => 'vertical',
8985
            'ellipsoid' => null,
8986
            'prime_meridian' => null,
8987
            'conventional_rs' => null,
8988
            'frame_reference_epoch' => null,
8989
        ],
8990
        'urn:ogc:def:datum:EPSG::1177' => [
8991
            'name' => 'St. Helena Vertical Datum 2015',
8992
            'type' => 'vertical',
8993
            'ellipsoid' => null,
8994
            'prime_meridian' => null,
8995
            'conventional_rs' => null,
8996
            'frame_reference_epoch' => null,
8997
        ],
8998
        'urn:ogc:def:datum:EPSG::1178' => [
8999
            'name' => 'European Terrestrial Reference Frame 1989',
9000
            'type' => 'geodetic',
9001
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9002
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9003
            'conventional_rs' => 1025,
9004
            'frame_reference_epoch' => null,
9005
        ],
9006
        'urn:ogc:def:datum:EPSG::1179' => [
9007
            'name' => 'European Terrestrial Reference Frame 1990',
9008
            'type' => 'geodetic',
9009
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9010
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9011
            'conventional_rs' => 1025,
9012
            'frame_reference_epoch' => null,
9013
        ],
9014
        'urn:ogc:def:datum:EPSG::1180' => [
9015
            'name' => 'European Terrestrial Reference Frame 1991',
9016
            'type' => 'geodetic',
9017
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9018
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9019
            'conventional_rs' => 1025,
9020
            'frame_reference_epoch' => null,
9021
        ],
9022
        'urn:ogc:def:datum:EPSG::1181' => [
9023
            'name' => 'European Terrestrial Reference Frame 1992',
9024
            'type' => 'geodetic',
9025
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9026
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9027
            'conventional_rs' => 1025,
9028
            'frame_reference_epoch' => null,
9029
        ],
9030
        'urn:ogc:def:datum:EPSG::1182' => [
9031
            'name' => 'European Terrestrial Reference Frame 1993',
9032
            'type' => 'geodetic',
9033
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9034
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9035
            'conventional_rs' => 1025,
9036
            'frame_reference_epoch' => null,
9037
        ],
9038
        'urn:ogc:def:datum:EPSG::1183' => [
9039
            'name' => 'European Terrestrial Reference Frame 1994',
9040
            'type' => 'geodetic',
9041
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9042
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9043
            'conventional_rs' => 1025,
9044
            'frame_reference_epoch' => null,
9045
        ],
9046
        'urn:ogc:def:datum:EPSG::1184' => [
9047
            'name' => 'European Terrestrial Reference Frame 1996',
9048
            'type' => 'geodetic',
9049
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9050
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9051
            'conventional_rs' => 1025,
9052
            'frame_reference_epoch' => null,
9053
        ],
9054
        'urn:ogc:def:datum:EPSG::1185' => [
9055
            'name' => 'European Terrestrial Reference Frame 1997',
9056
            'type' => 'geodetic',
9057
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9058
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9059
            'conventional_rs' => 1025,
9060
            'frame_reference_epoch' => null,
9061
        ],
9062
        'urn:ogc:def:datum:EPSG::1186' => [
9063
            'name' => 'European Terrestrial Reference Frame 2000',
9064
            'type' => 'geodetic',
9065
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9066
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9067
            'conventional_rs' => 1025,
9068
            'frame_reference_epoch' => null,
9069
        ],
9070
        'urn:ogc:def:datum:EPSG::1187' => [
9071
            'name' => 'Islands Net 2016',
9072
            'type' => 'geodetic',
9073
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9074
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9075
            'conventional_rs' => null,
9076
            'frame_reference_epoch' => null,
9077
        ],
9078
        'urn:ogc:def:datum:EPSG::1188' => [
9079
            'name' => 'Gusterberg (Ferro)',
9080
            'type' => 'geodetic',
9081
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::1026',
9082
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909',
9083
            'conventional_rs' => null,
9084
            'frame_reference_epoch' => null,
9085
        ],
9086
        'urn:ogc:def:datum:EPSG::1189' => [
9087
            'name' => 'St. Stephen (Ferro)',
9088
            'type' => 'geodetic',
9089
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::1026',
9090
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909',
9091
            'conventional_rs' => null,
9092
            'frame_reference_epoch' => null,
9093
        ],
9094
        'urn:ogc:def:datum:EPSG::1190' => [
9095
            'name' => 'Landshaedarkerfi Islands 2004',
9096
            'type' => 'vertical',
9097
            'ellipsoid' => null,
9098
            'prime_meridian' => null,
9099
            'conventional_rs' => null,
9100
            'frame_reference_epoch' => null,
9101
        ],
9102
        'urn:ogc:def:datum:EPSG::1191' => [
9103
            'name' => 'IGS14',
9104
            'type' => 'dynamic geodetic',
9105
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9106
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9107
            'conventional_rs' => null,
9108
            'frame_reference_epoch' => 2010.0,
9109
        ],
9110
        'urn:ogc:def:datum:EPSG::1192' => [
9111
            'name' => 'North American Datum of 1983 (CSRS96)',
9112
            'type' => 'geodetic',
9113
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9114
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9115
            'conventional_rs' => null,
9116
            'frame_reference_epoch' => null,
9117
        ],
9118
        'urn:ogc:def:datum:EPSG::1193' => [
9119
            'name' => 'North American Datum of 1983 (CSRS) version 2',
9120
            'type' => 'geodetic',
9121
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9122
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9123
            'conventional_rs' => null,
9124
            'frame_reference_epoch' => null,
9125
        ],
9126
        'urn:ogc:def:datum:EPSG::1194' => [
9127
            'name' => 'North American Datum of 1983 (CSRS) version 3',
9128
            'type' => 'geodetic',
9129
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9130
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9131
            'conventional_rs' => null,
9132
            'frame_reference_epoch' => null,
9133
        ],
9134
        'urn:ogc:def:datum:EPSG::1195' => [
9135
            'name' => 'North American Datum of 1983 (CSRS) version 4',
9136
            'type' => 'geodetic',
9137
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9138
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9139
            'conventional_rs' => null,
9140
            'frame_reference_epoch' => null,
9141
        ],
9142
        'urn:ogc:def:datum:EPSG::1196' => [
9143
            'name' => 'North American Datum of 1983 (CSRS) version 5',
9144
            'type' => 'geodetic',
9145
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9146
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9147
            'conventional_rs' => null,
9148
            'frame_reference_epoch' => null,
9149
        ],
9150
        'urn:ogc:def:datum:EPSG::1197' => [
9151
            'name' => 'North American Datum of 1983 (CSRS) version 6',
9152
            'type' => 'geodetic',
9153
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9154
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9155
            'conventional_rs' => null,
9156
            'frame_reference_epoch' => null,
9157
        ],
9158
        'urn:ogc:def:datum:EPSG::1198' => [
9159
            'name' => 'North American Datum of 1983 (CSRS) version 7',
9160
            'type' => 'geodetic',
9161
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9162
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9163
            'conventional_rs' => null,
9164
            'frame_reference_epoch' => null,
9165
        ],
9166
        'urn:ogc:def:datum:EPSG::1199' => [
9167
            'name' => 'Greenland Vertical Reference 2000',
9168
            'type' => 'vertical',
9169
            'ellipsoid' => null,
9170
            'prime_meridian' => null,
9171
            'conventional_rs' => null,
9172
            'frame_reference_epoch' => null,
9173
        ],
9174
        'urn:ogc:def:datum:EPSG::1200' => [
9175
            'name' => 'Greenland Vertical Reference 2016',
9176
            'type' => 'vertical',
9177
            'ellipsoid' => null,
9178
            'prime_meridian' => null,
9179
            'conventional_rs' => null,
9180
            'frame_reference_epoch' => null,
9181
        ],
9182
        'urn:ogc:def:datum:EPSG::1201' => [
9183
            'name' => 'System of the Unified Trigonometrical Cadastral Network [JTSK03]',
9184
            'type' => 'geodetic',
9185
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
9186
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9187
            'conventional_rs' => null,
9188
            'frame_reference_epoch' => null,
9189
        ],
9190
        'urn:ogc:def:datum:EPSG::1202' => [
9191
            'name' => 'Baltic 1957',
9192
            'type' => 'vertical',
9193
            'ellipsoid' => null,
9194
            'prime_meridian' => null,
9195
            'conventional_rs' => null,
9196
            'frame_reference_epoch' => null,
9197
        ],
9198
        'urn:ogc:def:datum:EPSG::1204' => [
9199
            'name' => 'European Terrestrial Reference Frame 2005',
9200
            'type' => 'geodetic',
9201
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9202
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9203
            'conventional_rs' => 1025,
9204
            'frame_reference_epoch' => null,
9205
        ],
9206
        'urn:ogc:def:datum:EPSG::1206' => [
9207
            'name' => 'European Terrestrial Reference Frame 2014',
9208
            'type' => 'geodetic',
9209
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9210
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9211
            'conventional_rs' => 1025,
9212
            'frame_reference_epoch' => null,
9213
        ],
9214
        'urn:ogc:def:datum:EPSG::1207' => [
9215
            'name' => 'Macao 1920',
9216
            'type' => 'geodetic',
9217
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
9218
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9219
            'conventional_rs' => null,
9220
            'frame_reference_epoch' => null,
9221
        ],
9222
        'urn:ogc:def:datum:EPSG::1208' => [
9223
            'name' => 'Macao Geodetic Datum 2008',
9224
            'type' => 'geodetic',
9225
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9226
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9227
            'conventional_rs' => null,
9228
            'frame_reference_epoch' => null,
9229
        ],
9230
        'urn:ogc:def:datum:EPSG::1209' => [
9231
            'name' => 'Hong Kong Geodetic',
9232
            'type' => 'geodetic',
9233
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9234
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9235
            'conventional_rs' => null,
9236
            'frame_reference_epoch' => null,
9237
        ],
9238
        'urn:ogc:def:datum:EPSG::1210' => [
9239
            'name' => 'Macao Height Datum',
9240
            'type' => 'vertical',
9241
            'ellipsoid' => null,
9242
            'prime_meridian' => null,
9243
            'conventional_rs' => null,
9244
            'frame_reference_epoch' => null,
9245
        ],
9246
        'urn:ogc:def:datum:EPSG::1211' => [
9247
            'name' => 'NAD83 (Federal Base Network)',
9248
            'type' => 'geodetic',
9249
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9250
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9251
            'conventional_rs' => null,
9252
            'frame_reference_epoch' => null,
9253
        ],
9254
        'urn:ogc:def:datum:EPSG::1212' => [
9255
            'name' => 'NAD83 (High Accuracy Reference Network - Corrected)',
9256
            'type' => 'geodetic',
9257
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9258
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9259
            'conventional_rs' => null,
9260
            'frame_reference_epoch' => null,
9261
        ],
9262
        'urn:ogc:def:datum:EPSG::1213' => [
9263
            'name' => 'Helsinki 1943',
9264
            'type' => 'vertical',
9265
            'ellipsoid' => null,
9266
            'prime_meridian' => null,
9267
            'conventional_rs' => null,
9268
            'frame_reference_epoch' => null,
9269
        ],
9270
        'urn:ogc:def:datum:EPSG::1214' => [
9271
            'name' => 'Serbian Spatial Reference System 2000',
9272
            'type' => 'geodetic',
9273
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9274
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9275
            'conventional_rs' => null,
9276
            'frame_reference_epoch' => null,
9277
        ],
9278
        'urn:ogc:def:datum:EPSG::1215' => [
9279
            'name' => 'Slovenian Vertical System 2010',
9280
            'type' => 'vertical',
9281
            'ellipsoid' => null,
9282
            'prime_meridian' => null,
9283
            'conventional_rs' => null,
9284
            'frame_reference_epoch' => null,
9285
        ],
9286
        'urn:ogc:def:datum:EPSG::1216' => [
9287
            'name' => 'Serbian Vertical Reference System 2012',
9288
            'type' => 'vertical',
9289
            'ellipsoid' => null,
9290
            'prime_meridian' => null,
9291
            'conventional_rs' => null,
9292
            'frame_reference_epoch' => null,
9293
        ],
9294
        'urn:ogc:def:datum:EPSG::1217' => [
9295
            'name' => 'Camacupa 2015',
9296
            'type' => 'geodetic',
9297
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
9298
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9299
            'conventional_rs' => null,
9300
            'frame_reference_epoch' => null,
9301
        ],
9302
        'urn:ogc:def:datum:EPSG::1218' => [
9303
            'name' => 'MOMRA Terrestrial Reference Frame 2000',
9304
            'type' => 'geodetic',
9305
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9306
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9307
            'conventional_rs' => null,
9308
            'frame_reference_epoch' => null,
9309
        ],
9310
        'urn:ogc:def:datum:EPSG::1219' => [
9311
            'name' => 'MOMRA Vertical Geodetic Control',
9312
            'type' => 'vertical',
9313
            'ellipsoid' => null,
9314
            'prime_meridian' => null,
9315
            'conventional_rs' => null,
9316
            'frame_reference_epoch' => null,
9317
        ],
9318
        'urn:ogc:def:datum:EPSG::1220' => [
9319
            'name' => 'Reference System de Angola 2013',
9320
            'type' => 'geodetic',
9321
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9322
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9323
            'conventional_rs' => null,
9324
            'frame_reference_epoch' => null,
9325
        ],
9326
        'urn:ogc:def:datum:EPSG::1221' => [
9327
            'name' => 'North American Datum of 1983 (MARP00)',
9328
            'type' => 'geodetic',
9329
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9330
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9331
            'conventional_rs' => null,
9332
            'frame_reference_epoch' => null,
9333
        ],
9334
        'urn:ogc:def:datum:EPSG::1223' => [
9335
            'name' => 'Reseau Geodesique de Wallis et Futuna 1996',
9336
            'type' => 'geodetic',
9337
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9338
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9339
            'conventional_rs' => null,
9340
            'frame_reference_epoch' => null,
9341
        ],
9342
        'urn:ogc:def:datum:EPSG::1224' => [
9343
            'name' => 'Taiwan Vertical Datum 2001',
9344
            'type' => 'vertical',
9345
            'ellipsoid' => null,
9346
            'prime_meridian' => null,
9347
            'conventional_rs' => null,
9348
            'frame_reference_epoch' => null,
9349
        ],
9350
        'urn:ogc:def:datum:EPSG::1225' => [
9351
            'name' => 'CR-SIRGAS',
9352
            'type' => 'geodetic',
9353
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9354
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9355
            'conventional_rs' => null,
9356
            'frame_reference_epoch' => null,
9357
        ],
9358
        'urn:ogc:def:datum:EPSG::1226' => [
9359
            'name' => 'Datum Altimetrico de Costa Rica 1952',
9360
            'type' => 'vertical',
9361
            'ellipsoid' => null,
9362
            'prime_meridian' => null,
9363
            'conventional_rs' => null,
9364
            'frame_reference_epoch' => null,
9365
        ],
9366
        'urn:ogc:def:datum:EPSG::1227' => [
9367
            'name' => 'SIRGAS Continuously Operating Network DGF00P01',
9368
            'type' => 'dynamic geodetic',
9369
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9370
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9371
            'conventional_rs' => null,
9372
            'frame_reference_epoch' => 2000.4,
9373
        ],
9374
        'urn:ogc:def:datum:EPSG::1228' => [
9375
            'name' => 'SIRGAS Continuously Operating Network DGF01P01',
9376
            'type' => 'dynamic geodetic',
9377
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9378
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9379
            'conventional_rs' => null,
9380
            'frame_reference_epoch' => 2000.0,
9381
        ],
9382
        'urn:ogc:def:datum:EPSG::1229' => [
9383
            'name' => 'SIRGAS Continuously Operating Network DGF01P02',
9384
            'type' => 'dynamic geodetic',
9385
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9386
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9387
            'conventional_rs' => null,
9388
            'frame_reference_epoch' => 1998.4,
9389
        ],
9390
        'urn:ogc:def:datum:EPSG::1230' => [
9391
            'name' => 'SIRGAS Continuously Operating Network DGF02P01',
9392
            'type' => 'dynamic geodetic',
9393
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9394
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9395
            'conventional_rs' => null,
9396
            'frame_reference_epoch' => 2000.0,
9397
        ],
9398
        'urn:ogc:def:datum:EPSG::1231' => [
9399
            'name' => 'SIRGAS Continuously Operating Network DGF04P01',
9400
            'type' => 'dynamic geodetic',
9401
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9402
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9403
            'conventional_rs' => null,
9404
            'frame_reference_epoch' => 2003.0,
9405
        ],
9406
        'urn:ogc:def:datum:EPSG::1232' => [
9407
            'name' => 'SIRGAS Continuously Operating Network DGF05P01',
9408
            'type' => 'dynamic geodetic',
9409
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9410
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9411
            'conventional_rs' => null,
9412
            'frame_reference_epoch' => 2004.0,
9413
        ],
9414
        'urn:ogc:def:datum:EPSG::1233' => [
9415
            'name' => 'SIRGAS Continuously Operating Network DGF06P01',
9416
            'type' => 'dynamic geodetic',
9417
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9418
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9419
            'conventional_rs' => null,
9420
            'frame_reference_epoch' => 2004.0,
9421
        ],
9422
        'urn:ogc:def:datum:EPSG::1234' => [
9423
            'name' => 'SIRGAS Continuously Operating Network DGF07P01',
9424
            'type' => 'dynamic geodetic',
9425
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9426
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9427
            'conventional_rs' => null,
9428
            'frame_reference_epoch' => 2004.5,
9429
        ],
9430
        'urn:ogc:def:datum:EPSG::1235' => [
9431
            'name' => 'SIRGAS Continuously Operating Network DGF08P01',
9432
            'type' => 'dynamic geodetic',
9433
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9434
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9435
            'conventional_rs' => null,
9436
            'frame_reference_epoch' => 2004.5,
9437
        ],
9438
        'urn:ogc:def:datum:EPSG::1236' => [
9439
            'name' => 'SIRGAS Continuously Operating Network SIR09P01',
9440
            'type' => 'dynamic geodetic',
9441
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9442
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9443
            'conventional_rs' => null,
9444
            'frame_reference_epoch' => 2005.0,
9445
        ],
9446
        'urn:ogc:def:datum:EPSG::1237' => [
9447
            'name' => 'SIRGAS Continuously Operating Network SIR10P01',
9448
            'type' => 'dynamic geodetic',
9449
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9450
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9451
            'conventional_rs' => null,
9452
            'frame_reference_epoch' => 2005.0,
9453
        ],
9454
        'urn:ogc:def:datum:EPSG::1238' => [
9455
            'name' => 'SIRGAS Continuously Operating Network SIR11P01',
9456
            'type' => 'dynamic geodetic',
9457
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9458
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9459
            'conventional_rs' => null,
9460
            'frame_reference_epoch' => 2005.0,
9461
        ],
9462
        'urn:ogc:def:datum:EPSG::1239' => [
9463
            'name' => 'SIRGAS Continuously Operating Network SIR13P01',
9464
            'type' => 'dynamic geodetic',
9465
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9466
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9467
            'conventional_rs' => null,
9468
            'frame_reference_epoch' => 2012.0,
9469
        ],
9470
        'urn:ogc:def:datum:EPSG::1240' => [
9471
            'name' => 'SIRGAS Continuously Operating Network SIR14P01',
9472
            'type' => 'dynamic geodetic',
9473
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9474
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9475
            'conventional_rs' => null,
9476
            'frame_reference_epoch' => 2013.0,
9477
        ],
9478
        'urn:ogc:def:datum:EPSG::1241' => [
9479
            'name' => 'SIRGAS Continuously Operating Network SIR15P01',
9480
            'type' => 'dynamic geodetic',
9481
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9482
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9483
            'conventional_rs' => null,
9484
            'frame_reference_epoch' => 2013.0,
9485
        ],
9486
        'urn:ogc:def:datum:EPSG::1242' => [
9487
            'name' => 'SIRGAS Continuously Operating Network SIR17P01',
9488
            'type' => 'dynamic geodetic',
9489
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9490
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9491
            'conventional_rs' => null,
9492
            'frame_reference_epoch' => 2015.0,
9493
        ],
9494
        'urn:ogc:def:datum:EPSG::1243' => [
9495
            'name' => 'SIRGAS-Chile realization 2 epoch 2010',
9496
            'type' => 'geodetic',
9497
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9498
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9499
            'conventional_rs' => null,
9500
            'frame_reference_epoch' => null,
9501
        ],
9502
        'urn:ogc:def:datum:EPSG::1244' => [
9503
            'name' => 'IGS97',
9504
            'type' => 'dynamic geodetic',
9505
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9506
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9507
            'conventional_rs' => null,
9508
            'frame_reference_epoch' => 1997.0,
9509
        ],
9510
        'urn:ogc:def:datum:EPSG::1245' => [
9511
            'name' => 'IGS00',
9512
            'type' => 'dynamic geodetic',
9513
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9514
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9515
            'conventional_rs' => null,
9516
            'frame_reference_epoch' => 1998.0,
9517
        ],
9518
        'urn:ogc:def:datum:EPSG::1246' => [
9519
            'name' => 'IGb00',
9520
            'type' => 'dynamic geodetic',
9521
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9522
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9523
            'conventional_rs' => null,
9524
            'frame_reference_epoch' => 1998.0,
9525
        ],
9526
        'urn:ogc:def:datum:EPSG::1247' => [
9527
            'name' => 'IGS05',
9528
            'type' => 'dynamic geodetic',
9529
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9530
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9531
            'conventional_rs' => null,
9532
            'frame_reference_epoch' => 2000.0,
9533
        ],
9534
        'urn:ogc:def:datum:EPSG::1248' => [
9535
            'name' => 'IGb08',
9536
            'type' => 'dynamic geodetic',
9537
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9538
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9539
            'conventional_rs' => null,
9540
            'frame_reference_epoch' => 2005.0,
9541
        ],
9542
        'urn:ogc:def:datum:EPSG::1249' => [
9543
            'name' => 'North American Datum of 1983 (PACP00)',
9544
            'type' => 'geodetic',
9545
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9546
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9547
            'conventional_rs' => null,
9548
            'frame_reference_epoch' => null,
9549
        ],
9550
        'urn:ogc:def:datum:EPSG::1250' => [
9551
            'name' => 'IGN 2008 LD',
9552
            'type' => 'vertical',
9553
            'ellipsoid' => null,
9554
            'prime_meridian' => null,
9555
            'conventional_rs' => null,
9556
            'frame_reference_epoch' => null,
9557
        ],
9558
        'urn:ogc:def:datum:EPSG::1251' => [
9559
            'name' => 'Kosovo Reference System 2001',
9560
            'type' => 'geodetic',
9561
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9562
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9563
            'conventional_rs' => null,
9564
            'frame_reference_epoch' => null,
9565
        ],
9566
        'urn:ogc:def:datum:EPSG::1252' => [
9567
            'name' => 'SIRGAS-Chile realization 3 epoch 2013',
9568
            'type' => 'geodetic',
9569
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9570
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9571
            'conventional_rs' => null,
9572
            'frame_reference_epoch' => null,
9573
        ],
9574
        'urn:ogc:def:datum:EPSG::1253' => [
9575
            'name' => 'SIRGAS-Chile realization 4 epoch 2016',
9576
            'type' => 'geodetic',
9577
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9578
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9579
            'conventional_rs' => null,
9580
            'frame_reference_epoch' => null,
9581
        ],
9582
        'urn:ogc:def:datum:EPSG::1255' => [
9583
            'name' => 'Nivellement General de Nouvelle Caledonie 2008',
9584
            'type' => 'vertical',
9585
            'ellipsoid' => null,
9586
            'prime_meridian' => null,
9587
            'conventional_rs' => null,
9588
            'frame_reference_epoch' => null,
9589
        ],
9590
        'urn:ogc:def:datum:EPSG::1256' => [
9591
            'name' => 'Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 2010',
9592
            'type' => 'vertical',
9593
            'ellipsoid' => null,
9594
            'prime_meridian' => null,
9595
            'conventional_rs' => null,
9596
            'frame_reference_epoch' => null,
9597
        ],
9598
        'urn:ogc:def:datum:EPSG::1257' => [
9599
            'name' => 'Tapi Aike',
9600
            'type' => 'geodetic',
9601
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
9602
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9603
            'conventional_rs' => null,
9604
            'frame_reference_epoch' => null,
9605
        ],
9606
        'urn:ogc:def:datum:EPSG::1258' => [
9607
            'name' => 'Ministerio de Marina Norte',
9608
            'type' => 'geodetic',
9609
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
9610
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9611
            'conventional_rs' => null,
9612
            'frame_reference_epoch' => null,
9613
        ],
9614
        'urn:ogc:def:datum:EPSG::1259' => [
9615
            'name' => 'Ministerio de Marina Sur',
9616
            'type' => 'geodetic',
9617
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
9618
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9619
            'conventional_rs' => null,
9620
            'frame_reference_epoch' => null,
9621
        ],
9622
        'urn:ogc:def:datum:EPSG::1260' => [
9623
            'name' => 'Sistema de Referencia Vertical Nacional 2016',
9624
            'type' => 'vertical',
9625
            'ellipsoid' => null,
9626
            'prime_meridian' => null,
9627
            'conventional_rs' => null,
9628
            'frame_reference_epoch' => null,
9629
        ],
9630
        'urn:ogc:def:datum:EPSG::1261' => [
9631
            'name' => 'European Vertical Reference Frame 2000 Austria',
9632
            'type' => 'vertical',
9633
            'ellipsoid' => null,
9634
            'prime_meridian' => null,
9635
            'conventional_rs' => null,
9636
            'frame_reference_epoch' => null,
9637
        ],
9638
        'urn:ogc:def:datum:EPSG::1262' => [
9639
            'name' => 'South Africa Land Levelling Datum',
9640
            'type' => 'vertical',
9641
            'ellipsoid' => null,
9642
            'prime_meridian' => null,
9643
            'conventional_rs' => null,
9644
            'frame_reference_epoch' => null,
9645
        ],
9646
        'urn:ogc:def:datum:EPSG::1263' => [
9647
            'name' => 'Oman National Geodetic Datum 2017',
9648
            'type' => 'geodetic',
9649
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9650
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9651
            'conventional_rs' => null,
9652
            'frame_reference_epoch' => null,
9653
        ],
9654
        'urn:ogc:def:datum:EPSG::1264' => [
9655
            'name' => 'HS2 Intermediate Reference Frame',
9656
            'type' => 'geodetic',
9657
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9658
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9659
            'conventional_rs' => null,
9660
            'frame_reference_epoch' => null,
9661
        ],
9662
        'urn:ogc:def:datum:EPSG::1265' => [
9663
            'name' => 'HS2 Vertical Reference Frame',
9664
            'type' => 'vertical',
9665
            'ellipsoid' => null,
9666
            'prime_meridian' => null,
9667
            'conventional_rs' => null,
9668
            'frame_reference_epoch' => null,
9669
        ],
9670
        'urn:ogc:def:datum:EPSG::1266' => [
9671
            'name' => 'TPEN11 Intermediate Reference Frame',
9672
            'type' => 'geodetic',
9673
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9674
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9675
            'conventional_rs' => null,
9676
            'frame_reference_epoch' => null,
9677
        ],
9678
        'urn:ogc:def:datum:EPSG::1267' => [
9679
            'name' => 'Wiener Null',
9680
            'type' => 'vertical',
9681
            'ellipsoid' => null,
9682
            'prime_meridian' => null,
9683
            'conventional_rs' => null,
9684
            'frame_reference_epoch' => null,
9685
        ],
9686
        'urn:ogc:def:datum:EPSG::1268' => [
9687
            'name' => 'Kingdom of Saudi Arabia Geodetic Reference Frame 2017',
9688
            'type' => 'geodetic',
9689
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9690
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9691
            'conventional_rs' => null,
9692
            'frame_reference_epoch' => null,
9693
        ],
9694
        'urn:ogc:def:datum:EPSG::1269' => [
9695
            'name' => 'Kingdom of Saudi Arabia Vertical Reference Frame Jeddah 2014',
9696
            'type' => 'vertical',
9697
            'ellipsoid' => null,
9698
            'prime_meridian' => null,
9699
            'conventional_rs' => null,
9700
            'frame_reference_epoch' => null,
9701
        ],
9702
        'urn:ogc:def:datum:EPSG::1270' => [
9703
            'name' => 'Mean Sea Level Netherlands',
9704
            'type' => 'vertical',
9705
            'ellipsoid' => null,
9706
            'prime_meridian' => null,
9707
            'conventional_rs' => null,
9708
            'frame_reference_epoch' => null,
9709
        ],
9710
        'urn:ogc:def:datum:EPSG::1271' => [
9711
            'name' => 'MML07 Intermediate Reference Frame',
9712
            'type' => 'geodetic',
9713
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9714
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9715
            'conventional_rs' => null,
9716
            'frame_reference_epoch' => null,
9717
        ],
9718
        'urn:ogc:def:datum:EPSG::1272' => [
9719
            'name' => 'IGb14',
9720
            'type' => 'dynamic geodetic',
9721
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9722
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9723
            'conventional_rs' => null,
9724
            'frame_reference_epoch' => 2010.0,
9725
        ],
9726
        'urn:ogc:def:datum:EPSG::1273' => [
9727
            'name' => 'AbInvA96_2020 Intermediate Reference Frame',
9728
            'type' => 'geodetic',
9729
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9730
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9731
            'conventional_rs' => null,
9732
            'frame_reference_epoch' => null,
9733
        ],
9734
        'urn:ogc:def:datum:EPSG::1274' => [
9735
            'name' => 'European Vertical Reference Frame 2019',
9736
            'type' => 'vertical',
9737
            'ellipsoid' => null,
9738
            'prime_meridian' => null,
9739
            'conventional_rs' => null,
9740
            'frame_reference_epoch' => null,
9741
        ],
9742
        'urn:ogc:def:datum:EPSG::1275' => [
9743
            'name' => 'Mallorca',
9744
            'type' => 'vertical',
9745
            'ellipsoid' => null,
9746
            'prime_meridian' => null,
9747
            'conventional_rs' => null,
9748
            'frame_reference_epoch' => null,
9749
        ],
9750
        'urn:ogc:def:datum:EPSG::1276' => [
9751
            'name' => 'Menorca',
9752
            'type' => 'vertical',
9753
            'ellipsoid' => null,
9754
            'prime_meridian' => null,
9755
            'conventional_rs' => null,
9756
            'frame_reference_epoch' => null,
9757
        ],
9758
        'urn:ogc:def:datum:EPSG::1277' => [
9759
            'name' => 'Ibiza',
9760
            'type' => 'vertical',
9761
            'ellipsoid' => null,
9762
            'prime_meridian' => null,
9763
            'conventional_rs' => null,
9764
            'frame_reference_epoch' => null,
9765
        ],
9766
        'urn:ogc:def:datum:EPSG::1278' => [
9767
            'name' => 'Lanzarote',
9768
            'type' => 'vertical',
9769
            'ellipsoid' => null,
9770
            'prime_meridian' => null,
9771
            'conventional_rs' => null,
9772
            'frame_reference_epoch' => null,
9773
        ],
9774
        'urn:ogc:def:datum:EPSG::1279' => [
9775
            'name' => 'Fuerteventura',
9776
            'type' => 'vertical',
9777
            'ellipsoid' => null,
9778
            'prime_meridian' => null,
9779
            'conventional_rs' => null,
9780
            'frame_reference_epoch' => null,
9781
        ],
9782
        'urn:ogc:def:datum:EPSG::1280' => [
9783
            'name' => 'Gran Canaria',
9784
            'type' => 'vertical',
9785
            'ellipsoid' => null,
9786
            'prime_meridian' => null,
9787
            'conventional_rs' => null,
9788
            'frame_reference_epoch' => null,
9789
        ],
9790
        'urn:ogc:def:datum:EPSG::1281' => [
9791
            'name' => 'Tenerife',
9792
            'type' => 'vertical',
9793
            'ellipsoid' => null,
9794
            'prime_meridian' => null,
9795
            'conventional_rs' => null,
9796
            'frame_reference_epoch' => null,
9797
        ],
9798
        'urn:ogc:def:datum:EPSG::1282' => [
9799
            'name' => 'La Gomera',
9800
            'type' => 'vertical',
9801
            'ellipsoid' => null,
9802
            'prime_meridian' => null,
9803
            'conventional_rs' => null,
9804
            'frame_reference_epoch' => null,
9805
        ],
9806
        'urn:ogc:def:datum:EPSG::1283' => [
9807
            'name' => 'La Palma',
9808
            'type' => 'vertical',
9809
            'ellipsoid' => null,
9810
            'prime_meridian' => null,
9811
            'conventional_rs' => null,
9812
            'frame_reference_epoch' => null,
9813
        ],
9814
        'urn:ogc:def:datum:EPSG::1284' => [
9815
            'name' => 'El Hierro',
9816
            'type' => 'vertical',
9817
            'ellipsoid' => null,
9818
            'prime_meridian' => null,
9819
            'conventional_rs' => null,
9820
            'frame_reference_epoch' => null,
9821
        ],
9822
        'urn:ogc:def:datum:EPSG::1285' => [
9823
            'name' => 'Ceuta 2',
9824
            'type' => 'vertical',
9825
            'ellipsoid' => null,
9826
            'prime_meridian' => null,
9827
            'conventional_rs' => null,
9828
            'frame_reference_epoch' => null,
9829
        ],
9830
        'urn:ogc:def:datum:EPSG::1286' => [
9831
            'name' => 'Pico de las Nieves 1968',
9832
            'type' => 'geodetic',
9833
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
9834
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9835
            'conventional_rs' => null,
9836
            'frame_reference_epoch' => null,
9837
        ],
9838
        'urn:ogc:def:datum:EPSG::1287' => [
9839
            'name' => 'European Vertical Reference Frame 2019 mean tide',
9840
            'type' => 'vertical',
9841
            'ellipsoid' => null,
9842
            'prime_meridian' => null,
9843
            'conventional_rs' => null,
9844
            'frame_reference_epoch' => null,
9845
        ],
9846
        'urn:ogc:def:datum:EPSG::1288' => [
9847
            'name' => 'British Isles height ensemble',
9848
            'type' => 'ensemble',
9849
            'ellipsoid' => null,
9850
            'prime_meridian' => null,
9851
            'conventional_rs' => null,
9852
            'frame_reference_epoch' => null,
9853
            'ensemble' => [
9854
                'urn:ogc:def:datum:EPSG::5130',
9855
                'urn:ogc:def:datum:EPSG::5131',
9856
                'urn:ogc:def:datum:EPSG::5101',
9857
                'urn:ogc:def:datum:EPSG::1164',
9858
                'urn:ogc:def:datum:EPSG::5138',
9859
                'urn:ogc:def:datum:EPSG::5140',
9860
                'urn:ogc:def:datum:EPSG::5144',
9861
                'urn:ogc:def:datum:EPSG::5148',
9862
                'urn:ogc:def:datum:EPSG::5147',
9863
            ],
9864
        ],
9865
        'urn:ogc:def:datum:EPSG::1289' => [
9866
            'name' => 'GBK19 Intermediate Reference Frame',
9867
            'type' => 'geodetic',
9868
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9869
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9870
            'conventional_rs' => null,
9871
            'frame_reference_epoch' => null,
9872
        ],
9873
        'urn:ogc:def:datum:EPSG::1290' => [
9874
            'name' => 'Lowest Astronomical Tide Netherlands',
9875
            'type' => 'vertical',
9876
            'ellipsoid' => null,
9877
            'prime_meridian' => null,
9878
            'conventional_rs' => null,
9879
            'frame_reference_epoch' => null,
9880
        ],
9881
        'urn:ogc:def:datum:EPSG::1291' => [
9882
            'name' => 'Australian Terrestrial Reference Frame 2014',
9883
            'type' => 'dynamic geodetic',
9884
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9885
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9886
            'conventional_rs' => null,
9887
            'frame_reference_epoch' => 2020.0,
9888
        ],
9889
        'urn:ogc:def:datum:EPSG::1292' => [
9890
            'name' => 'Australian Vertical Working Surface',
9891
            'type' => 'vertical',
9892
            'ellipsoid' => null,
9893
            'prime_meridian' => null,
9894
            'conventional_rs' => null,
9895
            'frame_reference_epoch' => null,
9896
        ],
9897
        'urn:ogc:def:datum:EPSG::1293' => [
9898
            'name' => 'Sistem Referensi Geospasial Indonesia 2013',
9899
            'type' => 'dynamic geodetic',
9900
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
9901
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9902
            'conventional_rs' => null,
9903
            'frame_reference_epoch' => 2012.0,
9904
        ],
9905
        'urn:ogc:def:datum:EPSG::1294' => [
9906
            'name' => 'Indonesian Geoid 2020 version 1',
9907
            'type' => 'vertical',
9908
            'ellipsoid' => null,
9909
            'prime_meridian' => null,
9910
            'conventional_rs' => null,
9911
            'frame_reference_epoch' => null,
9912
        ],
9913
        'urn:ogc:def:datum:EPSG::1295' => [
9914
            'name' => 'Lyon Turin Ferroviaire 2004',
9915
            'type' => 'geodetic',
9916
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9917
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9918
            'conventional_rs' => null,
9919
            'frame_reference_epoch' => null,
9920
        ],
9921
        'urn:ogc:def:datum:EPSG::1296' => [
9922
            'name' => 'Baltic 1986',
9923
            'type' => 'vertical',
9924
            'ellipsoid' => null,
9925
            'prime_meridian' => null,
9926
            'conventional_rs' => null,
9927
            'frame_reference_epoch' => null,
9928
        ],
9929
        'urn:ogc:def:datum:EPSG::1297' => [
9930
            'name' => 'European Vertical Reference Frame 2007 Poland',
9931
            'type' => 'vertical',
9932
            'ellipsoid' => null,
9933
            'prime_meridian' => null,
9934
            'conventional_rs' => null,
9935
            'frame_reference_epoch' => null,
9936
        ],
9937
        'urn:ogc:def:datum:EPSG::1298' => [
9938
            'name' => 'Estonian Height System 2000',
9939
            'type' => 'vertical',
9940
            'ellipsoid' => null,
9941
            'prime_meridian' => null,
9942
            'conventional_rs' => null,
9943
            'frame_reference_epoch' => null,
9944
        ],
9945
        'urn:ogc:def:datum:EPSG::1299' => [
9946
            'name' => 'Lithuanian Height System 2007',
9947
            'type' => 'vertical',
9948
            'ellipsoid' => null,
9949
            'prime_meridian' => null,
9950
            'conventional_rs' => null,
9951
            'frame_reference_epoch' => null,
9952
        ],
9953
        'urn:ogc:def:datum:EPSG::1300' => [
9954
            'name' => 'Bulgarian Height System 2005',
9955
            'type' => 'vertical',
9956
            'ellipsoid' => null,
9957
            'prime_meridian' => null,
9958
            'conventional_rs' => null,
9959
            'frame_reference_epoch' => null,
9960
        ],
9961
        'urn:ogc:def:datum:EPSG::1301' => [
9962
            'name' => 'Norwegian Chart Datum',
9963
            'type' => 'vertical',
9964
            'ellipsoid' => null,
9965
            'prime_meridian' => null,
9966
            'conventional_rs' => null,
9967
            'frame_reference_epoch' => null,
9968
        ],
9969
        'urn:ogc:def:datum:EPSG::1302' => [
9970
            'name' => 'Local Tidal Datum at Pago Pago 2020',
9971
            'type' => 'vertical',
9972
            'ellipsoid' => null,
9973
            'prime_meridian' => null,
9974
            'conventional_rs' => null,
9975
            'frame_reference_epoch' => null,
9976
        ],
9977
        'urn:ogc:def:datum:EPSG::1303' => [
9978
            'name' => 'National Vertical Datum 1992',
9979
            'type' => 'vertical',
9980
            'ellipsoid' => null,
9981
            'prime_meridian' => null,
9982
            'conventional_rs' => null,
9983
            'frame_reference_epoch' => null,
9984
        ],
9985
        'urn:ogc:def:datum:EPSG::1304' => [
9986
            'name' => 'Red Geodesica Para Mineria en Chile',
9987
            'type' => 'dynamic geodetic',
9988
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9989
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9990
            'conventional_rs' => null,
9991
            'frame_reference_epoch' => 2019.0,
9992
        ],
9993
        'urn:ogc:def:datum:EPSG::1305' => [
9994
            'name' => 'ETRF2000 Poland',
9995
            'type' => 'geodetic',
9996
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9997
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9998
            'conventional_rs' => null,
9999
            'frame_reference_epoch' => null,
10000
        ],
10001
        'urn:ogc:def:datum:EPSG::1306' => [
10002
            'name' => 'Catania 1965',
10003
            'type' => 'vertical',
10004
            'ellipsoid' => null,
10005
            'prime_meridian' => null,
10006
            'conventional_rs' => null,
10007
            'frame_reference_epoch' => null,
10008
        ],
10009
        'urn:ogc:def:datum:EPSG::1307' => [
10010
            'name' => 'Cagliari 1956',
10011
            'type' => 'vertical',
10012
            'ellipsoid' => null,
10013
            'prime_meridian' => null,
10014
            'conventional_rs' => null,
10015
            'frame_reference_epoch' => null,
10016
        ],
10017
        'urn:ogc:def:datum:EPSG::1308' => [
10018
            'name' => 'EOS21 Intermediate Reference Frame',
10019
            'type' => 'geodetic',
10020
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10021
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10022
            'conventional_rs' => null,
10023
            'frame_reference_epoch' => null,
10024
        ],
10025
        'urn:ogc:def:datum:EPSG::1309' => [
10026
            'name' => 'World Geodetic System 1984 (G2139)',
10027
            'type' => 'dynamic geodetic',
10028
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
10029
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10030
            'conventional_rs' => 1024,
10031
            'frame_reference_epoch' => 2016.0,
10032
        ],
10033
        'urn:ogc:def:datum:EPSG::1310' => [
10034
            'name' => 'ECML14_NB Intermediate Reference Frame',
10035
            'type' => 'geodetic',
10036
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10037
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10038
            'conventional_rs' => null,
10039
            'frame_reference_epoch' => null,
10040
        ],
10041
        'urn:ogc:def:datum:EPSG::1311' => [
10042
            'name' => 'EWR2 Intermediate Reference Frame',
10043
            'type' => 'geodetic',
10044
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10045
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10046
            'conventional_rs' => null,
10047
            'frame_reference_epoch' => null,
10048
        ],
10049
        'urn:ogc:def:datum:EPSG::1312' => [
10050
            'name' => 'Reseau Geodesique Francais 1993 v2',
10051
            'type' => 'geodetic',
10052
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10053
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10054
            'conventional_rs' => null,
10055
            'frame_reference_epoch' => null,
10056
        ],
10057
        'urn:ogc:def:datum:EPSG::1313' => [
10058
            'name' => 'Reseau Geodesique Francais 1993 v2b',
10059
            'type' => 'geodetic',
10060
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10061
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10062
            'conventional_rs' => null,
10063
            'frame_reference_epoch' => null,
10064
        ],
10065
        'urn:ogc:def:datum:EPSG::1314' => [
10066
            'name' => 'MRH21 Intermediate Reference Frame',
10067
            'type' => 'geodetic',
10068
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10069
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10070
            'conventional_rs' => null,
10071
            'frame_reference_epoch' => null,
10072
        ],
10073
        'urn:ogc:def:datum:EPSG::1315' => [
10074
            'name' => 'MOLDOR11 Intermediate Reference Frame',
10075
            'type' => 'geodetic',
10076
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10077
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10078
            'conventional_rs' => null,
10079
            'frame_reference_epoch' => null,
10080
        ],
10081
        'urn:ogc:def:datum:EPSG::1316' => [
10082
            'name' => 'GNTRANS',
10083
            'type' => 'vertical',
10084
            'ellipsoid' => null,
10085
            'prime_meridian' => null,
10086
            'conventional_rs' => null,
10087
            'frame_reference_epoch' => null,
10088
        ],
10089
        'urn:ogc:def:datum:EPSG::1317' => [
10090
            'name' => 'HULLEE13 Intermediate Reference Frame',
10091
            'type' => 'geodetic',
10092
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10093
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10094
            'conventional_rs' => null,
10095
            'frame_reference_epoch' => null,
10096
        ],
10097
        'urn:ogc:def:datum:EPSG::1318' => [
10098
            'name' => 'GNTRANS2016',
10099
            'type' => 'vertical',
10100
            'ellipsoid' => null,
10101
            'prime_meridian' => null,
10102
            'conventional_rs' => null,
10103
            'frame_reference_epoch' => null,
10104
        ],
10105
        'urn:ogc:def:datum:EPSG::1319' => [
10106
            'name' => 'EBBWV14 Intermediate Reference Frame',
10107
            'type' => 'geodetic',
10108
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10109
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10110
            'conventional_rs' => null,
10111
            'frame_reference_epoch' => null,
10112
        ],
10113
        'urn:ogc:def:datum:EPSG::1320' => [
10114
            'name' => 'SCM22 Intermediate Reference Frame',
10115
            'type' => 'geodetic',
10116
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10117
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10118
            'conventional_rs' => null,
10119
            'frame_reference_epoch' => null,
10120
        ],
10121
        'urn:ogc:def:datum:EPSG::1321' => [
10122
            'name' => 'FNL22 Intermediate Reference Frame',
10123
            'type' => 'geodetic',
10124
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10125
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10126
            'conventional_rs' => null,
10127
            'frame_reference_epoch' => null,
10128
        ],
10129
        'urn:ogc:def:datum:EPSG::1322' => [
10130
            'name' => 'International Terrestrial Reference Frame 2020',
10131
            'type' => 'dynamic geodetic',
10132
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10133
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10134
            'conventional_rs' => null,
10135
            'frame_reference_epoch' => 2015.0,
10136
        ],
10137
        'urn:ogc:def:datum:EPSG::1323' => [
10138
            'name' => 'Svalbard vertical datum 2006',
10139
            'type' => 'vertical',
10140
            'ellipsoid' => null,
10141
            'prime_meridian' => null,
10142
            'conventional_rs' => null,
10143
            'frame_reference_epoch' => null,
10144
        ],
10145
        'urn:ogc:def:datum:EPSG::1324' => [
10146
            'name' => 'MWC18 Intermediate Reference Frame',
10147
            'type' => 'geodetic',
10148
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10149
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10150
            'conventional_rs' => null,
10151
            'frame_reference_epoch' => null,
10152
        ],
10153
        'urn:ogc:def:datum:EPSG::1325' => [
10154
            'name' => 'Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 2002',
10155
            'type' => 'vertical',
10156
            'ellipsoid' => null,
10157
            'prime_meridian' => null,
10158
            'conventional_rs' => null,
10159
            'frame_reference_epoch' => null,
10160
        ],
10161
        'urn:ogc:def:datum:EPSG::1326' => [
10162
            'name' => 'Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 1997',
10163
            'type' => 'vertical',
10164
            'ellipsoid' => null,
10165
            'prime_meridian' => null,
10166
            'conventional_rs' => null,
10167
            'frame_reference_epoch' => null,
10168
        ],
10169
        'urn:ogc:def:datum:EPSG::1327' => [
10170
            'name' => 'SIRGAS-Chile realization 5 epoch 2021',
10171
            'type' => 'geodetic',
10172
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10173
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10174
            'conventional_rs' => null,
10175
            'frame_reference_epoch' => null,
10176
        ],
10177
        'urn:ogc:def:datum:EPSG::1328' => [
10178
            'name' => 'Indonesian Geoid 2020 version 2',
10179
            'type' => 'vertical',
10180
            'ellipsoid' => null,
10181
            'prime_meridian' => null,
10182
            'conventional_rs' => null,
10183
            'frame_reference_epoch' => null,
10184
        ],
10185
        'urn:ogc:def:datum:EPSG::5100' => [
10186
            'name' => 'Mean Sea Level',
10187
            'type' => 'vertical',
10188
            'ellipsoid' => null,
10189
            'prime_meridian' => null,
10190
            'conventional_rs' => null,
10191
            'frame_reference_epoch' => null,
10192
        ],
10193
        'urn:ogc:def:datum:EPSG::5101' => [
10194
            'name' => 'Ordnance Datum Newlyn',
10195
            'type' => 'vertical',
10196
            'ellipsoid' => null,
10197
            'prime_meridian' => null,
10198
            'conventional_rs' => 1026,
10199
            'frame_reference_epoch' => null,
10200
        ],
10201
        'urn:ogc:def:datum:EPSG::5102' => [
10202
            'name' => 'National Geodetic Vertical Datum 1929',
10203
            'type' => 'vertical',
10204
            'ellipsoid' => null,
10205
            'prime_meridian' => null,
10206
            'conventional_rs' => null,
10207
            'frame_reference_epoch' => null,
10208
        ],
10209
        'urn:ogc:def:datum:EPSG::5103' => [
10210
            'name' => 'North American Vertical Datum 1988',
10211
            'type' => 'vertical',
10212
            'ellipsoid' => null,
10213
            'prime_meridian' => null,
10214
            'conventional_rs' => null,
10215
            'frame_reference_epoch' => null,
10216
        ],
10217
        'urn:ogc:def:datum:EPSG::5104' => [
10218
            'name' => 'Yellow Sea 1956',
10219
            'type' => 'vertical',
10220
            'ellipsoid' => null,
10221
            'prime_meridian' => null,
10222
            'conventional_rs' => null,
10223
            'frame_reference_epoch' => null,
10224
        ],
10225
        'urn:ogc:def:datum:EPSG::5105' => [
10226
            'name' => 'Baltic 1977',
10227
            'type' => 'vertical',
10228
            'ellipsoid' => null,
10229
            'prime_meridian' => null,
10230
            'conventional_rs' => null,
10231
            'frame_reference_epoch' => null,
10232
        ],
10233
        'urn:ogc:def:datum:EPSG::5106' => [
10234
            'name' => 'Caspian Sea',
10235
            'type' => 'vertical',
10236
            'ellipsoid' => null,
10237
            'prime_meridian' => null,
10238
            'conventional_rs' => null,
10239
            'frame_reference_epoch' => null,
10240
        ],
10241
        'urn:ogc:def:datum:EPSG::5109' => [
10242
            'name' => 'Normaal Amsterdams Peil',
10243
            'type' => 'vertical',
10244
            'ellipsoid' => null,
10245
            'prime_meridian' => null,
10246
            'conventional_rs' => null,
10247
            'frame_reference_epoch' => null,
10248
        ],
10249
        'urn:ogc:def:datum:EPSG::5110' => [
10250
            'name' => 'Ostend',
10251
            'type' => 'vertical',
10252
            'ellipsoid' => null,
10253
            'prime_meridian' => null,
10254
            'conventional_rs' => null,
10255
            'frame_reference_epoch' => null,
10256
        ],
10257
        'urn:ogc:def:datum:EPSG::5111' => [
10258
            'name' => 'Australian Height Datum',
10259
            'type' => 'vertical',
10260
            'ellipsoid' => null,
10261
            'prime_meridian' => null,
10262
            'conventional_rs' => null,
10263
            'frame_reference_epoch' => null,
10264
        ],
10265
        'urn:ogc:def:datum:EPSG::5112' => [
10266
            'name' => 'Australian Height Datum (Tasmania)',
10267
            'type' => 'vertical',
10268
            'ellipsoid' => null,
10269
            'prime_meridian' => null,
10270
            'conventional_rs' => null,
10271
            'frame_reference_epoch' => null,
10272
        ],
10273
        'urn:ogc:def:datum:EPSG::5113' => [
10274
            'name' => 'Instantaneous Water Level',
10275
            'type' => 'vertical',
10276
            'ellipsoid' => null,
10277
            'prime_meridian' => null,
10278
            'conventional_rs' => null,
10279
            'frame_reference_epoch' => null,
10280
        ],
10281
        'urn:ogc:def:datum:EPSG::5114' => [
10282
            'name' => 'Canadian Geodetic Vertical Datum of 1928',
10283
            'type' => 'vertical',
10284
            'ellipsoid' => null,
10285
            'prime_meridian' => null,
10286
            'conventional_rs' => null,
10287
            'frame_reference_epoch' => null,
10288
        ],
10289
        'urn:ogc:def:datum:EPSG::5115' => [
10290
            'name' => 'Piraeus Harbour 1986',
10291
            'type' => 'vertical',
10292
            'ellipsoid' => null,
10293
            'prime_meridian' => null,
10294
            'conventional_rs' => null,
10295
            'frame_reference_epoch' => null,
10296
        ],
10297
        'urn:ogc:def:datum:EPSG::5116' => [
10298
            'name' => 'Helsinki 1960',
10299
            'type' => 'vertical',
10300
            'ellipsoid' => null,
10301
            'prime_meridian' => null,
10302
            'conventional_rs' => null,
10303
            'frame_reference_epoch' => null,
10304
        ],
10305
        'urn:ogc:def:datum:EPSG::5117' => [
10306
            'name' => 'Rikets hojdsystem 1970',
10307
            'type' => 'vertical',
10308
            'ellipsoid' => null,
10309
            'prime_meridian' => null,
10310
            'conventional_rs' => null,
10311
            'frame_reference_epoch' => null,
10312
        ],
10313
        'urn:ogc:def:datum:EPSG::5118' => [
10314
            'name' => 'Nivellement General de la France - Lallemand',
10315
            'type' => 'vertical',
10316
            'ellipsoid' => null,
10317
            'prime_meridian' => null,
10318
            'conventional_rs' => null,
10319
            'frame_reference_epoch' => null,
10320
        ],
10321
        'urn:ogc:def:datum:EPSG::5119' => [
10322
            'name' => 'Nivellement General de la France - IGN69',
10323
            'type' => 'vertical',
10324
            'ellipsoid' => null,
10325
            'prime_meridian' => null,
10326
            'conventional_rs' => null,
10327
            'frame_reference_epoch' => null,
10328
        ],
10329
        'urn:ogc:def:datum:EPSG::5120' => [
10330
            'name' => 'Nivellement General de la France - IGN78',
10331
            'type' => 'vertical',
10332
            'ellipsoid' => null,
10333
            'prime_meridian' => null,
10334
            'conventional_rs' => null,
10335
            'frame_reference_epoch' => null,
10336
        ],
10337
        'urn:ogc:def:datum:EPSG::5121' => [
10338
            'name' => 'Maputo',
10339
            'type' => 'vertical',
10340
            'ellipsoid' => null,
10341
            'prime_meridian' => null,
10342
            'conventional_rs' => null,
10343
            'frame_reference_epoch' => null,
10344
        ],
10345
        'urn:ogc:def:datum:EPSG::5122' => [
10346
            'name' => 'Japanese Standard Levelling Datum 1969',
10347
            'type' => 'vertical',
10348
            'ellipsoid' => null,
10349
            'prime_meridian' => null,
10350
            'conventional_rs' => null,
10351
            'frame_reference_epoch' => null,
10352
        ],
10353
        'urn:ogc:def:datum:EPSG::5123' => [
10354
            'name' => 'PDO Height Datum 1993',
10355
            'type' => 'vertical',
10356
            'ellipsoid' => null,
10357
            'prime_meridian' => null,
10358
            'conventional_rs' => null,
10359
            'frame_reference_epoch' => null,
10360
        ],
10361
        'urn:ogc:def:datum:EPSG::5124' => [
10362
            'name' => 'Fahud Height Datum',
10363
            'type' => 'vertical',
10364
            'ellipsoid' => null,
10365
            'prime_meridian' => null,
10366
            'conventional_rs' => null,
10367
            'frame_reference_epoch' => null,
10368
        ],
10369
        'urn:ogc:def:datum:EPSG::5125' => [
10370
            'name' => 'Ha Tien 1960',
10371
            'type' => 'vertical',
10372
            'ellipsoid' => null,
10373
            'prime_meridian' => null,
10374
            'conventional_rs' => null,
10375
            'frame_reference_epoch' => null,
10376
        ],
10377
        'urn:ogc:def:datum:EPSG::5126' => [
10378
            'name' => 'Hon Dau 1992',
10379
            'type' => 'vertical',
10380
            'ellipsoid' => null,
10381
            'prime_meridian' => null,
10382
            'conventional_rs' => null,
10383
            'frame_reference_epoch' => null,
10384
        ],
10385
        'urn:ogc:def:datum:EPSG::5127' => [
10386
            'name' => 'Landesnivellement 1902',
10387
            'type' => 'vertical',
10388
            'ellipsoid' => null,
10389
            'prime_meridian' => null,
10390
            'conventional_rs' => null,
10391
            'frame_reference_epoch' => null,
10392
        ],
10393
        'urn:ogc:def:datum:EPSG::5128' => [
10394
            'name' => 'Landeshohennetz 1995',
10395
            'type' => 'vertical',
10396
            'ellipsoid' => null,
10397
            'prime_meridian' => null,
10398
            'conventional_rs' => null,
10399
            'frame_reference_epoch' => null,
10400
        ],
10401
        'urn:ogc:def:datum:EPSG::5129' => [
10402
            'name' => 'European Vertical Reference Frame 2000',
10403
            'type' => 'vertical',
10404
            'ellipsoid' => null,
10405
            'prime_meridian' => null,
10406
            'conventional_rs' => null,
10407
            'frame_reference_epoch' => null,
10408
        ],
10409
        'urn:ogc:def:datum:EPSG::5130' => [
10410
            'name' => 'Malin Head',
10411
            'type' => 'vertical',
10412
            'ellipsoid' => null,
10413
            'prime_meridian' => null,
10414
            'conventional_rs' => 1026,
10415
            'frame_reference_epoch' => null,
10416
        ],
10417
        'urn:ogc:def:datum:EPSG::5131' => [
10418
            'name' => 'Belfast Lough',
10419
            'type' => 'vertical',
10420
            'ellipsoid' => null,
10421
            'prime_meridian' => null,
10422
            'conventional_rs' => 1026,
10423
            'frame_reference_epoch' => null,
10424
        ],
10425
        'urn:ogc:def:datum:EPSG::5132' => [
10426
            'name' => 'Dansk Normal Nul',
10427
            'type' => 'vertical',
10428
            'ellipsoid' => null,
10429
            'prime_meridian' => null,
10430
            'conventional_rs' => null,
10431
            'frame_reference_epoch' => null,
10432
        ],
10433
        'urn:ogc:def:datum:EPSG::5133' => [
10434
            'name' => 'AIOC 1995',
10435
            'type' => 'vertical',
10436
            'ellipsoid' => null,
10437
            'prime_meridian' => null,
10438
            'conventional_rs' => null,
10439
            'frame_reference_epoch' => null,
10440
        ],
10441
        'urn:ogc:def:datum:EPSG::5134' => [
10442
            'name' => 'Black Sea',
10443
            'type' => 'vertical',
10444
            'ellipsoid' => null,
10445
            'prime_meridian' => null,
10446
            'conventional_rs' => null,
10447
            'frame_reference_epoch' => null,
10448
        ],
10449
        'urn:ogc:def:datum:EPSG::5135' => [
10450
            'name' => 'Hong Kong Principal Datum',
10451
            'type' => 'vertical',
10452
            'ellipsoid' => null,
10453
            'prime_meridian' => null,
10454
            'conventional_rs' => null,
10455
            'frame_reference_epoch' => null,
10456
        ],
10457
        'urn:ogc:def:datum:EPSG::5136' => [
10458
            'name' => 'Hong Kong Chart Datum',
10459
            'type' => 'vertical',
10460
            'ellipsoid' => null,
10461
            'prime_meridian' => null,
10462
            'conventional_rs' => null,
10463
            'frame_reference_epoch' => null,
10464
        ],
10465
        'urn:ogc:def:datum:EPSG::5137' => [
10466
            'name' => 'Yellow Sea 1985',
10467
            'type' => 'vertical',
10468
            'ellipsoid' => null,
10469
            'prime_meridian' => null,
10470
            'conventional_rs' => null,
10471
            'frame_reference_epoch' => null,
10472
        ],
10473
        'urn:ogc:def:datum:EPSG::5138' => [
10474
            'name' => 'Ordnance Datum Newlyn (Orkney Isles)',
10475
            'type' => 'vertical',
10476
            'ellipsoid' => null,
10477
            'prime_meridian' => null,
10478
            'conventional_rs' => 1026,
10479
            'frame_reference_epoch' => null,
10480
        ],
10481
        'urn:ogc:def:datum:EPSG::5139' => [
10482
            'name' => 'Fair Isle',
10483
            'type' => 'vertical',
10484
            'ellipsoid' => null,
10485
            'prime_meridian' => null,
10486
            'conventional_rs' => null,
10487
            'frame_reference_epoch' => null,
10488
        ],
10489
        'urn:ogc:def:datum:EPSG::5140' => [
10490
            'name' => 'Lerwick',
10491
            'type' => 'vertical',
10492
            'ellipsoid' => null,
10493
            'prime_meridian' => null,
10494
            'conventional_rs' => 1026,
10495
            'frame_reference_epoch' => null,
10496
        ],
10497
        'urn:ogc:def:datum:EPSG::5141' => [
10498
            'name' => 'Foula',
10499
            'type' => 'vertical',
10500
            'ellipsoid' => null,
10501
            'prime_meridian' => null,
10502
            'conventional_rs' => null,
10503
            'frame_reference_epoch' => null,
10504
        ],
10505
        'urn:ogc:def:datum:EPSG::5142' => [
10506
            'name' => 'Sule Skerry',
10507
            'type' => 'vertical',
10508
            'ellipsoid' => null,
10509
            'prime_meridian' => null,
10510
            'conventional_rs' => null,
10511
            'frame_reference_epoch' => null,
10512
        ],
10513
        'urn:ogc:def:datum:EPSG::5143' => [
10514
            'name' => 'North Rona',
10515
            'type' => 'vertical',
10516
            'ellipsoid' => null,
10517
            'prime_meridian' => null,
10518
            'conventional_rs' => null,
10519
            'frame_reference_epoch' => null,
10520
        ],
10521
        'urn:ogc:def:datum:EPSG::5144' => [
10522
            'name' => 'Stornoway',
10523
            'type' => 'vertical',
10524
            'ellipsoid' => null,
10525
            'prime_meridian' => null,
10526
            'conventional_rs' => 1026,
10527
            'frame_reference_epoch' => null,
10528
        ],
10529
        'urn:ogc:def:datum:EPSG::5145' => [
10530
            'name' => 'St. Kilda',
10531
            'type' => 'vertical',
10532
            'ellipsoid' => null,
10533
            'prime_meridian' => null,
10534
            'conventional_rs' => null,
10535
            'frame_reference_epoch' => null,
10536
        ],
10537
        'urn:ogc:def:datum:EPSG::5146' => [
10538
            'name' => 'Flannan Isles',
10539
            'type' => 'vertical',
10540
            'ellipsoid' => null,
10541
            'prime_meridian' => null,
10542
            'conventional_rs' => null,
10543
            'frame_reference_epoch' => null,
10544
        ],
10545
        'urn:ogc:def:datum:EPSG::5147' => [
10546
            'name' => 'St. Marys',
10547
            'type' => 'vertical',
10548
            'ellipsoid' => null,
10549
            'prime_meridian' => null,
10550
            'conventional_rs' => 1026,
10551
            'frame_reference_epoch' => null,
10552
        ],
10553
        'urn:ogc:def:datum:EPSG::5148' => [
10554
            'name' => 'Douglas',
10555
            'type' => 'vertical',
10556
            'ellipsoid' => null,
10557
            'prime_meridian' => null,
10558
            'conventional_rs' => 1026,
10559
            'frame_reference_epoch' => null,
10560
        ],
10561
        'urn:ogc:def:datum:EPSG::5149' => [
10562
            'name' => 'Fao',
10563
            'type' => 'vertical',
10564
            'ellipsoid' => null,
10565
            'prime_meridian' => null,
10566
            'conventional_rs' => null,
10567
            'frame_reference_epoch' => null,
10568
        ],
10569
        'urn:ogc:def:datum:EPSG::5150' => [
10570
            'name' => 'Bandar Abbas',
10571
            'type' => 'vertical',
10572
            'ellipsoid' => null,
10573
            'prime_meridian' => null,
10574
            'conventional_rs' => null,
10575
            'frame_reference_epoch' => null,
10576
        ],
10577
        'urn:ogc:def:datum:EPSG::5151' => [
10578
            'name' => 'Nivellement General de Nouvelle Caledonie',
10579
            'type' => 'vertical',
10580
            'ellipsoid' => null,
10581
            'prime_meridian' => null,
10582
            'conventional_rs' => null,
10583
            'frame_reference_epoch' => null,
10584
        ],
10585
        'urn:ogc:def:datum:EPSG::5152' => [
10586
            'name' => 'Poolbeg',
10587
            'type' => 'vertical',
10588
            'ellipsoid' => null,
10589
            'prime_meridian' => null,
10590
            'conventional_rs' => null,
10591
            'frame_reference_epoch' => null,
10592
        ],
10593
        'urn:ogc:def:datum:EPSG::5153' => [
10594
            'name' => 'Nivellement General Guyanais 1977',
10595
            'type' => 'vertical',
10596
            'ellipsoid' => null,
10597
            'prime_meridian' => null,
10598
            'conventional_rs' => null,
10599
            'frame_reference_epoch' => null,
10600
        ],
10601
        'urn:ogc:def:datum:EPSG::5154' => [
10602
            'name' => 'Martinique 1987',
10603
            'type' => 'vertical',
10604
            'ellipsoid' => null,
10605
            'prime_meridian' => null,
10606
            'conventional_rs' => null,
10607
            'frame_reference_epoch' => null,
10608
        ],
10609
        'urn:ogc:def:datum:EPSG::5155' => [
10610
            'name' => 'Guadeloupe 1988',
10611
            'type' => 'vertical',
10612
            'ellipsoid' => null,
10613
            'prime_meridian' => null,
10614
            'conventional_rs' => null,
10615
            'frame_reference_epoch' => null,
10616
        ],
10617
        'urn:ogc:def:datum:EPSG::5156' => [
10618
            'name' => 'Reunion 1989',
10619
            'type' => 'vertical',
10620
            'ellipsoid' => null,
10621
            'prime_meridian' => null,
10622
            'conventional_rs' => null,
10623
            'frame_reference_epoch' => null,
10624
        ],
10625
        'urn:ogc:def:datum:EPSG::5157' => [
10626
            'name' => 'Auckland 1946',
10627
            'type' => 'vertical',
10628
            'ellipsoid' => null,
10629
            'prime_meridian' => null,
10630
            'conventional_rs' => null,
10631
            'frame_reference_epoch' => null,
10632
        ],
10633
        'urn:ogc:def:datum:EPSG::5158' => [
10634
            'name' => 'Bluff 1955',
10635
            'type' => 'vertical',
10636
            'ellipsoid' => null,
10637
            'prime_meridian' => null,
10638
            'conventional_rs' => null,
10639
            'frame_reference_epoch' => null,
10640
        ],
10641
        'urn:ogc:def:datum:EPSG::5159' => [
10642
            'name' => 'Dunedin 1958',
10643
            'type' => 'vertical',
10644
            'ellipsoid' => null,
10645
            'prime_meridian' => null,
10646
            'conventional_rs' => null,
10647
            'frame_reference_epoch' => null,
10648
        ],
10649
        'urn:ogc:def:datum:EPSG::5160' => [
10650
            'name' => 'Gisborne 1926',
10651
            'type' => 'vertical',
10652
            'ellipsoid' => null,
10653
            'prime_meridian' => null,
10654
            'conventional_rs' => null,
10655
            'frame_reference_epoch' => null,
10656
        ],
10657
        'urn:ogc:def:datum:EPSG::5161' => [
10658
            'name' => 'Lyttelton 1937',
10659
            'type' => 'vertical',
10660
            'ellipsoid' => null,
10661
            'prime_meridian' => null,
10662
            'conventional_rs' => null,
10663
            'frame_reference_epoch' => null,
10664
        ],
10665
        'urn:ogc:def:datum:EPSG::5162' => [
10666
            'name' => 'Moturiki 1953',
10667
            'type' => 'vertical',
10668
            'ellipsoid' => null,
10669
            'prime_meridian' => null,
10670
            'conventional_rs' => null,
10671
            'frame_reference_epoch' => null,
10672
        ],
10673
        'urn:ogc:def:datum:EPSG::5163' => [
10674
            'name' => 'Napier 1962',
10675
            'type' => 'vertical',
10676
            'ellipsoid' => null,
10677
            'prime_meridian' => null,
10678
            'conventional_rs' => null,
10679
            'frame_reference_epoch' => null,
10680
        ],
10681
        'urn:ogc:def:datum:EPSG::5164' => [
10682
            'name' => 'Nelson 1955',
10683
            'type' => 'vertical',
10684
            'ellipsoid' => null,
10685
            'prime_meridian' => null,
10686
            'conventional_rs' => null,
10687
            'frame_reference_epoch' => null,
10688
        ],
10689
        'urn:ogc:def:datum:EPSG::5165' => [
10690
            'name' => 'One Tree Point 1964',
10691
            'type' => 'vertical',
10692
            'ellipsoid' => null,
10693
            'prime_meridian' => null,
10694
            'conventional_rs' => null,
10695
            'frame_reference_epoch' => null,
10696
        ],
10697
        'urn:ogc:def:datum:EPSG::5166' => [
10698
            'name' => 'Tararu 1952',
10699
            'type' => 'vertical',
10700
            'ellipsoid' => null,
10701
            'prime_meridian' => null,
10702
            'conventional_rs' => null,
10703
            'frame_reference_epoch' => null,
10704
        ],
10705
        'urn:ogc:def:datum:EPSG::5167' => [
10706
            'name' => 'Taranaki 1970',
10707
            'type' => 'vertical',
10708
            'ellipsoid' => null,
10709
            'prime_meridian' => null,
10710
            'conventional_rs' => null,
10711
            'frame_reference_epoch' => null,
10712
        ],
10713
        'urn:ogc:def:datum:EPSG::5168' => [
10714
            'name' => 'Wellington 1953',
10715
            'type' => 'vertical',
10716
            'ellipsoid' => null,
10717
            'prime_meridian' => null,
10718
            'conventional_rs' => null,
10719
            'frame_reference_epoch' => null,
10720
        ],
10721
        'urn:ogc:def:datum:EPSG::5169' => [
10722
            'name' => 'Waitangi (Chatham Island) 1959',
10723
            'type' => 'vertical',
10724
            'ellipsoid' => null,
10725
            'prime_meridian' => null,
10726
            'conventional_rs' => null,
10727
            'frame_reference_epoch' => null,
10728
        ],
10729
        'urn:ogc:def:datum:EPSG::5170' => [
10730
            'name' => 'Stewart Island 1977',
10731
            'type' => 'vertical',
10732
            'ellipsoid' => null,
10733
            'prime_meridian' => null,
10734
            'conventional_rs' => null,
10735
            'frame_reference_epoch' => null,
10736
        ],
10737
        'urn:ogc:def:datum:EPSG::5171' => [
10738
            'name' => 'EGM96 geoid',
10739
            'type' => 'vertical',
10740
            'ellipsoid' => null,
10741
            'prime_meridian' => null,
10742
            'conventional_rs' => null,
10743
            'frame_reference_epoch' => null,
10744
        ],
10745
        'urn:ogc:def:datum:EPSG::5172' => [
10746
            'name' => 'Nivellement General du Luxembourg 1995',
10747
            'type' => 'vertical',
10748
            'ellipsoid' => null,
10749
            'prime_meridian' => null,
10750
            'conventional_rs' => null,
10751
            'frame_reference_epoch' => null,
10752
        ],
10753
        'urn:ogc:def:datum:EPSG::5173' => [
10754
            'name' => 'Antalya',
10755
            'type' => 'vertical',
10756
            'ellipsoid' => null,
10757
            'prime_meridian' => null,
10758
            'conventional_rs' => null,
10759
            'frame_reference_epoch' => null,
10760
        ],
10761
        'urn:ogc:def:datum:EPSG::5174' => [
10762
            'name' => 'Norway Normal Null 1954',
10763
            'type' => 'vertical',
10764
            'ellipsoid' => null,
10765
            'prime_meridian' => null,
10766
            'conventional_rs' => null,
10767
            'frame_reference_epoch' => null,
10768
        ],
10769
        'urn:ogc:def:datum:EPSG::5175' => [
10770
            'name' => 'Durres',
10771
            'type' => 'vertical',
10772
            'ellipsoid' => null,
10773
            'prime_meridian' => null,
10774
            'conventional_rs' => null,
10775
            'frame_reference_epoch' => null,
10776
        ],
10777
        'urn:ogc:def:datum:EPSG::5176' => [
10778
            'name' => 'Gebrauchshohen ADRIA',
10779
            'type' => 'vertical',
10780
            'ellipsoid' => null,
10781
            'prime_meridian' => null,
10782
            'conventional_rs' => null,
10783
            'frame_reference_epoch' => null,
10784
        ],
10785
        'urn:ogc:def:datum:EPSG::5177' => [
10786
            'name' => 'Slovenian Vertical System 2000',
10787
            'type' => 'vertical',
10788
            'ellipsoid' => null,
10789
            'prime_meridian' => null,
10790
            'conventional_rs' => null,
10791
            'frame_reference_epoch' => null,
10792
        ],
10793
        'urn:ogc:def:datum:EPSG::5178' => [
10794
            'name' => 'Cascais',
10795
            'type' => 'vertical',
10796
            'ellipsoid' => null,
10797
            'prime_meridian' => null,
10798
            'conventional_rs' => null,
10799
            'frame_reference_epoch' => null,
10800
        ],
10801
        'urn:ogc:def:datum:EPSG::5179' => [
10802
            'name' => 'Constanta',
10803
            'type' => 'vertical',
10804
            'ellipsoid' => null,
10805
            'prime_meridian' => null,
10806
            'conventional_rs' => null,
10807
            'frame_reference_epoch' => null,
10808
        ],
10809
        'urn:ogc:def:datum:EPSG::5180' => [
10810
            'name' => 'Alicante',
10811
            'type' => 'vertical',
10812
            'ellipsoid' => null,
10813
            'prime_meridian' => null,
10814
            'conventional_rs' => null,
10815
            'frame_reference_epoch' => null,
10816
        ],
10817
        'urn:ogc:def:datum:EPSG::5181' => [
10818
            'name' => 'Deutsches Haupthoehennetz 1992',
10819
            'type' => 'vertical',
10820
            'ellipsoid' => null,
10821
            'prime_meridian' => null,
10822
            'conventional_rs' => null,
10823
            'frame_reference_epoch' => null,
10824
        ],
10825
        'urn:ogc:def:datum:EPSG::5182' => [
10826
            'name' => 'Deutsches Haupthoehennetz 1985',
10827
            'type' => 'vertical',
10828
            'ellipsoid' => null,
10829
            'prime_meridian' => null,
10830
            'conventional_rs' => null,
10831
            'frame_reference_epoch' => null,
10832
        ],
10833
        'urn:ogc:def:datum:EPSG::5183' => [
10834
            'name' => 'Staatlichen Nivellementnetzes 1976',
10835
            'type' => 'vertical',
10836
            'ellipsoid' => null,
10837
            'prime_meridian' => null,
10838
            'conventional_rs' => null,
10839
            'frame_reference_epoch' => null,
10840
        ],
10841
        'urn:ogc:def:datum:EPSG::5184' => [
10842
            'name' => 'Baltic 1982',
10843
            'type' => 'vertical',
10844
            'ellipsoid' => null,
10845
            'prime_meridian' => null,
10846
            'conventional_rs' => null,
10847
            'frame_reference_epoch' => null,
10848
        ],
10849
        'urn:ogc:def:datum:EPSG::5185' => [
10850
            'name' => 'Baltic 1980',
10851
            'type' => 'vertical',
10852
            'ellipsoid' => null,
10853
            'prime_meridian' => null,
10854
            'conventional_rs' => null,
10855
            'frame_reference_epoch' => null,
10856
        ],
10857
        'urn:ogc:def:datum:EPSG::5186' => [
10858
            'name' => 'Kuwait PWD',
10859
            'type' => 'vertical',
10860
            'ellipsoid' => null,
10861
            'prime_meridian' => null,
10862
            'conventional_rs' => null,
10863
            'frame_reference_epoch' => null,
10864
        ],
10865
        'urn:ogc:def:datum:EPSG::5187' => [
10866
            'name' => 'KOC Well Datum',
10867
            'type' => 'vertical',
10868
            'ellipsoid' => null,
10869
            'prime_meridian' => null,
10870
            'conventional_rs' => null,
10871
            'frame_reference_epoch' => null,
10872
        ],
10873
        'urn:ogc:def:datum:EPSG::5188' => [
10874
            'name' => 'KOC Construction Datum',
10875
            'type' => 'vertical',
10876
            'ellipsoid' => null,
10877
            'prime_meridian' => null,
10878
            'conventional_rs' => null,
10879
            'frame_reference_epoch' => null,
10880
        ],
10881
        'urn:ogc:def:datum:EPSG::5189' => [
10882
            'name' => 'Nivellement General de la Corse 1948',
10883
            'type' => 'vertical',
10884
            'ellipsoid' => null,
10885
            'prime_meridian' => null,
10886
            'conventional_rs' => null,
10887
            'frame_reference_epoch' => null,
10888
        ],
10889
        'urn:ogc:def:datum:EPSG::5190' => [
10890
            'name' => 'Danger 1950',
10891
            'type' => 'vertical',
10892
            'ellipsoid' => null,
10893
            'prime_meridian' => null,
10894
            'conventional_rs' => null,
10895
            'frame_reference_epoch' => null,
10896
        ],
10897
        'urn:ogc:def:datum:EPSG::5191' => [
10898
            'name' => 'Mayotte 1950',
10899
            'type' => 'vertical',
10900
            'ellipsoid' => null,
10901
            'prime_meridian' => null,
10902
            'conventional_rs' => null,
10903
            'frame_reference_epoch' => null,
10904
        ],
10905
        'urn:ogc:def:datum:EPSG::5192' => [
10906
            'name' => 'Martinique 1955',
10907
            'type' => 'vertical',
10908
            'ellipsoid' => null,
10909
            'prime_meridian' => null,
10910
            'conventional_rs' => null,
10911
            'frame_reference_epoch' => null,
10912
        ],
10913
        'urn:ogc:def:datum:EPSG::5193' => [
10914
            'name' => 'Guadeloupe 1951',
10915
            'type' => 'vertical',
10916
            'ellipsoid' => null,
10917
            'prime_meridian' => null,
10918
            'conventional_rs' => null,
10919
            'frame_reference_epoch' => null,
10920
        ],
10921
        'urn:ogc:def:datum:EPSG::5194' => [
10922
            'name' => 'Lagos 1955',
10923
            'type' => 'vertical',
10924
            'ellipsoid' => null,
10925
            'prime_meridian' => null,
10926
            'conventional_rs' => null,
10927
            'frame_reference_epoch' => null,
10928
        ],
10929
        'urn:ogc:def:datum:EPSG::5195' => [
10930
            'name' => 'Nivellement General de Polynesie Francaise',
10931
            'type' => 'vertical',
10932
            'ellipsoid' => null,
10933
            'prime_meridian' => null,
10934
            'conventional_rs' => null,
10935
            'frame_reference_epoch' => null,
10936
        ],
10937
        'urn:ogc:def:datum:EPSG::5196' => [
10938
            'name' => 'IGN 1966',
10939
            'type' => 'vertical',
10940
            'ellipsoid' => null,
10941
            'prime_meridian' => null,
10942
            'conventional_rs' => null,
10943
            'frame_reference_epoch' => null,
10944
        ],
10945
        'urn:ogc:def:datum:EPSG::5197' => [
10946
            'name' => 'Moorea SAU 1981',
10947
            'type' => 'vertical',
10948
            'ellipsoid' => null,
10949
            'prime_meridian' => null,
10950
            'conventional_rs' => null,
10951
            'frame_reference_epoch' => null,
10952
        ],
10953
        'urn:ogc:def:datum:EPSG::5198' => [
10954
            'name' => 'Raiatea SAU 2001',
10955
            'type' => 'vertical',
10956
            'ellipsoid' => null,
10957
            'prime_meridian' => null,
10958
            'conventional_rs' => null,
10959
            'frame_reference_epoch' => null,
10960
        ],
10961
        'urn:ogc:def:datum:EPSG::5199' => [
10962
            'name' => 'Maupiti SAU 2001',
10963
            'type' => 'vertical',
10964
            'ellipsoid' => null,
10965
            'prime_meridian' => null,
10966
            'conventional_rs' => null,
10967
            'frame_reference_epoch' => null,
10968
        ],
10969
        'urn:ogc:def:datum:EPSG::5200' => [
10970
            'name' => 'Huahine SAU 2001',
10971
            'type' => 'vertical',
10972
            'ellipsoid' => null,
10973
            'prime_meridian' => null,
10974
            'conventional_rs' => null,
10975
            'frame_reference_epoch' => null,
10976
        ],
10977
        'urn:ogc:def:datum:EPSG::5201' => [
10978
            'name' => 'Tahaa SAU 2001',
10979
            'type' => 'vertical',
10980
            'ellipsoid' => null,
10981
            'prime_meridian' => null,
10982
            'conventional_rs' => null,
10983
            'frame_reference_epoch' => null,
10984
        ],
10985
        'urn:ogc:def:datum:EPSG::5202' => [
10986
            'name' => 'Bora Bora SAU 2001',
10987
            'type' => 'vertical',
10988
            'ellipsoid' => null,
10989
            'prime_meridian' => null,
10990
            'conventional_rs' => null,
10991
            'frame_reference_epoch' => null,
10992
        ],
10993
        'urn:ogc:def:datum:EPSG::5203' => [
10994
            'name' => 'EGM84 geoid',
10995
            'type' => 'vertical',
10996
            'ellipsoid' => null,
10997
            'prime_meridian' => null,
10998
            'conventional_rs' => null,
10999
            'frame_reference_epoch' => null,
11000
        ],
11001
        'urn:ogc:def:datum:EPSG::5204' => [
11002
            'name' => 'International Great Lakes Datum 1955',
11003
            'type' => 'vertical',
11004
            'ellipsoid' => null,
11005
            'prime_meridian' => null,
11006
            'conventional_rs' => null,
11007
            'frame_reference_epoch' => null,
11008
        ],
11009
        'urn:ogc:def:datum:EPSG::5205' => [
11010
            'name' => 'International Great Lakes Datum 1985',
11011
            'type' => 'vertical',
11012
            'ellipsoid' => null,
11013
            'prime_meridian' => null,
11014
            'conventional_rs' => null,
11015
            'frame_reference_epoch' => null,
11016
        ],
11017
        'urn:ogc:def:datum:EPSG::5206' => [
11018
            'name' => 'Dansk Vertikal Reference 1990',
11019
            'type' => 'vertical',
11020
            'ellipsoid' => null,
11021
            'prime_meridian' => null,
11022
            'conventional_rs' => null,
11023
            'frame_reference_epoch' => null,
11024
        ],
11025
        'urn:ogc:def:datum:EPSG::5207' => [
11026
            'name' => 'Croatian Vertical Reference Datum 1971',
11027
            'type' => 'vertical',
11028
            'ellipsoid' => null,
11029
            'prime_meridian' => null,
11030
            'conventional_rs' => null,
11031
            'frame_reference_epoch' => null,
11032
        ],
11033
        'urn:ogc:def:datum:EPSG::5208' => [
11034
            'name' => 'Rikets hojdsystem 2000',
11035
            'type' => 'vertical',
11036
            'ellipsoid' => null,
11037
            'prime_meridian' => null,
11038
            'conventional_rs' => null,
11039
            'frame_reference_epoch' => 2000.0,
11040
        ],
11041
        'urn:ogc:def:datum:EPSG::5209' => [
11042
            'name' => 'Rikets hojdsystem 1900',
11043
            'type' => 'vertical',
11044
            'ellipsoid' => null,
11045
            'prime_meridian' => null,
11046
            'conventional_rs' => null,
11047
            'frame_reference_epoch' => null,
11048
        ],
11049
        'urn:ogc:def:datum:EPSG::5210' => [
11050
            'name' => 'IGN 1988 LS',
11051
            'type' => 'vertical',
11052
            'ellipsoid' => null,
11053
            'prime_meridian' => null,
11054
            'conventional_rs' => null,
11055
            'frame_reference_epoch' => null,
11056
        ],
11057
        'urn:ogc:def:datum:EPSG::5211' => [
11058
            'name' => 'IGN 1988 MG',
11059
            'type' => 'vertical',
11060
            'ellipsoid' => null,
11061
            'prime_meridian' => null,
11062
            'conventional_rs' => null,
11063
            'frame_reference_epoch' => null,
11064
        ],
11065
        'urn:ogc:def:datum:EPSG::5212' => [
11066
            'name' => 'IGN 1992 LD',
11067
            'type' => 'vertical',
11068
            'ellipsoid' => null,
11069
            'prime_meridian' => null,
11070
            'conventional_rs' => null,
11071
            'frame_reference_epoch' => null,
11072
        ],
11073
        'urn:ogc:def:datum:EPSG::5213' => [
11074
            'name' => 'IGN 1988 SB',
11075
            'type' => 'vertical',
11076
            'ellipsoid' => null,
11077
            'prime_meridian' => null,
11078
            'conventional_rs' => null,
11079
            'frame_reference_epoch' => null,
11080
        ],
11081
        'urn:ogc:def:datum:EPSG::5214' => [
11082
            'name' => 'IGN 1988 SM',
11083
            'type' => 'vertical',
11084
            'ellipsoid' => null,
11085
            'prime_meridian' => null,
11086
            'conventional_rs' => null,
11087
            'frame_reference_epoch' => null,
11088
        ],
11089
        'urn:ogc:def:datum:EPSG::5215' => [
11090
            'name' => 'European Vertical Reference Frame 2007',
11091
            'type' => 'vertical',
11092
            'ellipsoid' => null,
11093
            'prime_meridian' => null,
11094
            'conventional_rs' => null,
11095
            'frame_reference_epoch' => null,
11096
        ],
11097
        'urn:ogc:def:datum:EPSG::6001' => [
11098
            'name' => 'Not specified (based on Airy 1830 ellipsoid)',
11099
            'type' => 'geodetic',
11100
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001',
11101
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11102
            'conventional_rs' => null,
11103
            'frame_reference_epoch' => null,
11104
        ],
11105
        'urn:ogc:def:datum:EPSG::6002' => [
11106
            'name' => 'Not specified (based on Airy Modified 1849 ellipsoid)',
11107
            'type' => 'geodetic',
11108
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7002',
11109
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11110
            'conventional_rs' => null,
11111
            'frame_reference_epoch' => null,
11112
        ],
11113
        'urn:ogc:def:datum:EPSG::6003' => [
11114
            'name' => 'Not specified (based on Australian National Spheroid)',
11115
            'type' => 'geodetic',
11116
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7003',
11117
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11118
            'conventional_rs' => null,
11119
            'frame_reference_epoch' => null,
11120
        ],
11121
        'urn:ogc:def:datum:EPSG::6004' => [
11122
            'name' => 'Not specified (based on Bessel 1841 ellipsoid)',
11123
            'type' => 'geodetic',
11124
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
11125
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11126
            'conventional_rs' => null,
11127
            'frame_reference_epoch' => null,
11128
        ],
11129
        'urn:ogc:def:datum:EPSG::6005' => [
11130
            'name' => 'Not specified (based on Bessel Modified ellipsoid)',
11131
            'type' => 'geodetic',
11132
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7005',
11133
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11134
            'conventional_rs' => null,
11135
            'frame_reference_epoch' => null,
11136
        ],
11137
        'urn:ogc:def:datum:EPSG::6006' => [
11138
            'name' => 'Not specified (based on Bessel Namibia ellipsoid)',
11139
            'type' => 'geodetic',
11140
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7046',
11141
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11142
            'conventional_rs' => null,
11143
            'frame_reference_epoch' => null,
11144
        ],
11145
        'urn:ogc:def:datum:EPSG::6007' => [
11146
            'name' => 'Not specified (based on Clarke 1858 ellipsoid)',
11147
            'type' => 'geodetic',
11148
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007',
11149
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11150
            'conventional_rs' => null,
11151
            'frame_reference_epoch' => null,
11152
        ],
11153
        'urn:ogc:def:datum:EPSG::6008' => [
11154
            'name' => 'Not specified (based on Clarke 1866 ellipsoid)',
11155
            'type' => 'geodetic',
11156
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11157
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11158
            'conventional_rs' => null,
11159
            'frame_reference_epoch' => null,
11160
        ],
11161
        'urn:ogc:def:datum:EPSG::6010' => [
11162
            'name' => 'Not specified (based on Clarke 1880 (Benoit) ellipsoid)',
11163
            'type' => 'geodetic',
11164
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7010',
11165
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11166
            'conventional_rs' => null,
11167
            'frame_reference_epoch' => null,
11168
        ],
11169
        'urn:ogc:def:datum:EPSG::6011' => [
11170
            'name' => 'Not specified (based on Clarke 1880 (IGN) ellipsoid)',
11171
            'type' => 'geodetic',
11172
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
11173
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11174
            'conventional_rs' => null,
11175
            'frame_reference_epoch' => null,
11176
        ],
11177
        'urn:ogc:def:datum:EPSG::6012' => [
11178
            'name' => 'Not specified (based on Clarke 1880 (RGS) ellipsoid)',
11179
            'type' => 'geodetic',
11180
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11181
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11182
            'conventional_rs' => null,
11183
            'frame_reference_epoch' => null,
11184
        ],
11185
        'urn:ogc:def:datum:EPSG::6013' => [
11186
            'name' => 'Not specified (based on Clarke 1880 (Arc) ellipsoid)',
11187
            'type' => 'geodetic',
11188
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7013',
11189
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11190
            'conventional_rs' => null,
11191
            'frame_reference_epoch' => null,
11192
        ],
11193
        'urn:ogc:def:datum:EPSG::6014' => [
11194
            'name' => 'Not specified (based on Clarke 1880 (SGA 1922) ellipsoid)',
11195
            'type' => 'geodetic',
11196
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7014',
11197
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11198
            'conventional_rs' => null,
11199
            'frame_reference_epoch' => null,
11200
        ],
11201
        'urn:ogc:def:datum:EPSG::6015' => [
11202
            'name' => 'Not specified (based on Everest 1830 (1937 Adjustment) ellipsoid)',
11203
            'type' => 'geodetic',
11204
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
11205
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11206
            'conventional_rs' => null,
11207
            'frame_reference_epoch' => null,
11208
        ],
11209
        'urn:ogc:def:datum:EPSG::6016' => [
11210
            'name' => 'Not specified (based on Everest 1830 (1967 Definition) ellipsoid)',
11211
            'type' => 'geodetic',
11212
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7016',
11213
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11214
            'conventional_rs' => null,
11215
            'frame_reference_epoch' => null,
11216
        ],
11217
        'urn:ogc:def:datum:EPSG::6018' => [
11218
            'name' => 'Not specified (based on Everest 1830 Modified ellipsoid)',
11219
            'type' => 'geodetic',
11220
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7018',
11221
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11222
            'conventional_rs' => null,
11223
            'frame_reference_epoch' => null,
11224
        ],
11225
        'urn:ogc:def:datum:EPSG::6019' => [
11226
            'name' => 'Not specified (based on GRS 1980 ellipsoid)',
11227
            'type' => 'geodetic',
11228
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11229
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11230
            'conventional_rs' => null,
11231
            'frame_reference_epoch' => null,
11232
        ],
11233
        'urn:ogc:def:datum:EPSG::6020' => [
11234
            'name' => 'Not specified (based on Helmert 1906 ellipsoid)',
11235
            'type' => 'geodetic',
11236
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020',
11237
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11238
            'conventional_rs' => null,
11239
            'frame_reference_epoch' => null,
11240
        ],
11241
        'urn:ogc:def:datum:EPSG::6021' => [
11242
            'name' => 'Not specified (based on Indonesian National Spheroid)',
11243
            'type' => 'geodetic',
11244
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7021',
11245
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11246
            'conventional_rs' => null,
11247
            'frame_reference_epoch' => null,
11248
        ],
11249
        'urn:ogc:def:datum:EPSG::6022' => [
11250
            'name' => 'Not specified (based on International 1924 ellipsoid)',
11251
            'type' => 'geodetic',
11252
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11253
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11254
            'conventional_rs' => null,
11255
            'frame_reference_epoch' => null,
11256
        ],
11257
        'urn:ogc:def:datum:EPSG::6024' => [
11258
            'name' => 'Not specified (based on Krassowsky 1940 ellipsoid)',
11259
            'type' => 'geodetic',
11260
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
11261
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11262
            'conventional_rs' => null,
11263
            'frame_reference_epoch' => null,
11264
        ],
11265
        'urn:ogc:def:datum:EPSG::6025' => [
11266
            'name' => 'Not specified (based on NWL 9D ellipsoid)',
11267
            'type' => 'geodetic',
11268
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7025',
11269
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11270
            'conventional_rs' => null,
11271
            'frame_reference_epoch' => null,
11272
        ],
11273
        'urn:ogc:def:datum:EPSG::6027' => [
11274
            'name' => 'Not specified (based on Plessis 1817 ellipsoid)',
11275
            'type' => 'geodetic',
11276
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7027',
11277
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11278
            'conventional_rs' => null,
11279
            'frame_reference_epoch' => null,
11280
        ],
11281
        'urn:ogc:def:datum:EPSG::6028' => [
11282
            'name' => 'Not specified (based on Struve 1860 ellipsoid)',
11283
            'type' => 'geodetic',
11284
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7028',
11285
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11286
            'conventional_rs' => null,
11287
            'frame_reference_epoch' => null,
11288
        ],
11289
        'urn:ogc:def:datum:EPSG::6029' => [
11290
            'name' => 'Not specified (based on War Office ellipsoid)',
11291
            'type' => 'geodetic',
11292
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7029',
11293
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11294
            'conventional_rs' => null,
11295
            'frame_reference_epoch' => null,
11296
        ],
11297
        'urn:ogc:def:datum:EPSG::6030' => [
11298
            'name' => 'Not specified (based on WGS 84 ellipsoid)',
11299
            'type' => 'geodetic',
11300
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
11301
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11302
            'conventional_rs' => null,
11303
            'frame_reference_epoch' => null,
11304
        ],
11305
        'urn:ogc:def:datum:EPSG::6031' => [
11306
            'name' => 'Not specified (based on GEM 10C ellipsoid)',
11307
            'type' => 'geodetic',
11308
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7031',
11309
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11310
            'conventional_rs' => null,
11311
            'frame_reference_epoch' => null,
11312
        ],
11313
        'urn:ogc:def:datum:EPSG::6032' => [
11314
            'name' => 'Not specified (based on OSU86F ellipsoid)',
11315
            'type' => 'geodetic',
11316
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7032',
11317
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11318
            'conventional_rs' => null,
11319
            'frame_reference_epoch' => null,
11320
        ],
11321
        'urn:ogc:def:datum:EPSG::6033' => [
11322
            'name' => 'Not specified (based on OSU91A ellipsoid)',
11323
            'type' => 'geodetic',
11324
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7033',
11325
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11326
            'conventional_rs' => null,
11327
            'frame_reference_epoch' => null,
11328
        ],
11329
        'urn:ogc:def:datum:EPSG::6034' => [
11330
            'name' => 'Not specified (based on Clarke 1880 ellipsoid)',
11331
            'type' => 'geodetic',
11332
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7034',
11333
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11334
            'conventional_rs' => null,
11335
            'frame_reference_epoch' => null,
11336
        ],
11337
        'urn:ogc:def:datum:EPSG::6036' => [
11338
            'name' => 'Not specified (based on GRS 1967 ellipsoid)',
11339
            'type' => 'geodetic',
11340
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7036',
11341
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11342
            'conventional_rs' => null,
11343
            'frame_reference_epoch' => null,
11344
        ],
11345
        'urn:ogc:def:datum:EPSG::6041' => [
11346
            'name' => 'Not specified (based on Average Terrestrial System 1977 ellipsoid)',
11347
            'type' => 'geodetic',
11348
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7041',
11349
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11350
            'conventional_rs' => null,
11351
            'frame_reference_epoch' => null,
11352
        ],
11353
        'urn:ogc:def:datum:EPSG::6042' => [
11354
            'name' => 'Not specified (based on Everest (1830 Definition) ellipsoid)',
11355
            'type' => 'geodetic',
11356
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7042',
11357
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11358
            'conventional_rs' => null,
11359
            'frame_reference_epoch' => null,
11360
        ],
11361
        'urn:ogc:def:datum:EPSG::6043' => [
11362
            'name' => 'Not specified (based on WGS 72 ellipsoid)',
11363
            'type' => 'geodetic',
11364
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7043',
11365
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11366
            'conventional_rs' => null,
11367
            'frame_reference_epoch' => null,
11368
        ],
11369
        'urn:ogc:def:datum:EPSG::6044' => [
11370
            'name' => 'Not specified (based on Everest 1830 (1962 Definition) ellipsoid)',
11371
            'type' => 'geodetic',
11372
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7044',
11373
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11374
            'conventional_rs' => null,
11375
            'frame_reference_epoch' => null,
11376
        ],
11377
        'urn:ogc:def:datum:EPSG::6045' => [
11378
            'name' => 'Not specified (based on Everest 1830 (1975 Definition) ellipsoid)',
11379
            'type' => 'geodetic',
11380
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7045',
11381
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11382
            'conventional_rs' => null,
11383
            'frame_reference_epoch' => null,
11384
        ],
11385
        'urn:ogc:def:datum:EPSG::6047' => [
11386
            'name' => 'Not specified (based on GRS 1980 Authalic Sphere)',
11387
            'type' => 'geodetic',
11388
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7048',
11389
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11390
            'conventional_rs' => null,
11391
            'frame_reference_epoch' => null,
11392
        ],
11393
        'urn:ogc:def:datum:EPSG::6052' => [
11394
            'name' => 'Not specified (based on Clarke 1866 Authalic Sphere)',
11395
            'type' => 'geodetic',
11396
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7052',
11397
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11398
            'conventional_rs' => null,
11399
            'frame_reference_epoch' => null,
11400
        ],
11401
        'urn:ogc:def:datum:EPSG::6053' => [
11402
            'name' => 'Not specified (based on International 1924 Authalic Sphere)',
11403
            'type' => 'geodetic',
11404
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7057',
11405
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11406
            'conventional_rs' => null,
11407
            'frame_reference_epoch' => null,
11408
        ],
11409
        'urn:ogc:def:datum:EPSG::6054' => [
11410
            'name' => 'Not specified (based on Hughes 1980 ellipsoid)',
11411
            'type' => 'geodetic',
11412
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7058',
11413
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11414
            'conventional_rs' => null,
11415
            'frame_reference_epoch' => null,
11416
        ],
11417
        'urn:ogc:def:datum:EPSG::6120' => [
11418
            'name' => 'Greek',
11419
            'type' => 'geodetic',
11420
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
11421
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11422
            'conventional_rs' => null,
11423
            'frame_reference_epoch' => null,
11424
        ],
11425
        'urn:ogc:def:datum:EPSG::6121' => [
11426
            'name' => 'Greek Geodetic Reference System 1987',
11427
            'type' => 'geodetic',
11428
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11429
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11430
            'conventional_rs' => null,
11431
            'frame_reference_epoch' => null,
11432
        ],
11433
        'urn:ogc:def:datum:EPSG::6122' => [
11434
            'name' => 'Average Terrestrial System 1977',
11435
            'type' => 'geodetic',
11436
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7041',
11437
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11438
            'conventional_rs' => null,
11439
            'frame_reference_epoch' => null,
11440
        ],
11441
        'urn:ogc:def:datum:EPSG::6123' => [
11442
            'name' => 'Kartastokoordinaattijarjestelma (1966)',
11443
            'type' => 'geodetic',
11444
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11445
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11446
            'conventional_rs' => null,
11447
            'frame_reference_epoch' => null,
11448
        ],
11449
        'urn:ogc:def:datum:EPSG::6124' => [
11450
            'name' => 'Rikets koordinatsystem 1990',
11451
            'type' => 'geodetic',
11452
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
11453
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11454
            'conventional_rs' => null,
11455
            'frame_reference_epoch' => null,
11456
        ],
11457
        'urn:ogc:def:datum:EPSG::6126' => [
11458
            'name' => 'Lithuania 1994 (ETRS89)',
11459
            'type' => 'geodetic',
11460
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11461
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11462
            'conventional_rs' => null,
11463
            'frame_reference_epoch' => null,
11464
        ],
11465
        'urn:ogc:def:datum:EPSG::6127' => [
11466
            'name' => 'Tete',
11467
            'type' => 'geodetic',
11468
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11469
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11470
            'conventional_rs' => null,
11471
            'frame_reference_epoch' => null,
11472
        ],
11473
        'urn:ogc:def:datum:EPSG::6128' => [
11474
            'name' => 'Madzansua',
11475
            'type' => 'geodetic',
11476
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11477
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11478
            'conventional_rs' => null,
11479
            'frame_reference_epoch' => null,
11480
        ],
11481
        'urn:ogc:def:datum:EPSG::6129' => [
11482
            'name' => 'Observatario',
11483
            'type' => 'geodetic',
11484
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11485
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11486
            'conventional_rs' => null,
11487
            'frame_reference_epoch' => null,
11488
        ],
11489
        'urn:ogc:def:datum:EPSG::6130' => [
11490
            'name' => 'Moznet (ITRF94)',
11491
            'type' => 'geodetic',
11492
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
11493
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11494
            'conventional_rs' => null,
11495
            'frame_reference_epoch' => null,
11496
        ],
11497
        'urn:ogc:def:datum:EPSG::6131' => [
11498
            'name' => 'Indian 1960',
11499
            'type' => 'geodetic',
11500
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
11501
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11502
            'conventional_rs' => null,
11503
            'frame_reference_epoch' => null,
11504
        ],
11505
        'urn:ogc:def:datum:EPSG::6132' => [
11506
            'name' => 'Final Datum 1958',
11507
            'type' => 'geodetic',
11508
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11509
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11510
            'conventional_rs' => null,
11511
            'frame_reference_epoch' => null,
11512
        ],
11513
        'urn:ogc:def:datum:EPSG::6133' => [
11514
            'name' => 'Estonia 1992',
11515
            'type' => 'geodetic',
11516
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11517
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11518
            'conventional_rs' => null,
11519
            'frame_reference_epoch' => null,
11520
        ],
11521
        'urn:ogc:def:datum:EPSG::6134' => [
11522
            'name' => 'PDO Survey Datum 1993',
11523
            'type' => 'geodetic',
11524
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11525
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11526
            'conventional_rs' => null,
11527
            'frame_reference_epoch' => null,
11528
        ],
11529
        'urn:ogc:def:datum:EPSG::6135' => [
11530
            'name' => 'Old Hawaiian',
11531
            'type' => 'geodetic',
11532
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11533
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11534
            'conventional_rs' => null,
11535
            'frame_reference_epoch' => null,
11536
        ],
11537
        'urn:ogc:def:datum:EPSG::6136' => [
11538
            'name' => 'St. Lawrence Island',
11539
            'type' => 'geodetic',
11540
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11541
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11542
            'conventional_rs' => null,
11543
            'frame_reference_epoch' => null,
11544
        ],
11545
        'urn:ogc:def:datum:EPSG::6137' => [
11546
            'name' => 'St. Paul Island',
11547
            'type' => 'geodetic',
11548
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11549
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11550
            'conventional_rs' => null,
11551
            'frame_reference_epoch' => null,
11552
        ],
11553
        'urn:ogc:def:datum:EPSG::6138' => [
11554
            'name' => 'St. George Island',
11555
            'type' => 'geodetic',
11556
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11557
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11558
            'conventional_rs' => null,
11559
            'frame_reference_epoch' => null,
11560
        ],
11561
        'urn:ogc:def:datum:EPSG::6139' => [
11562
            'name' => 'Puerto Rico',
11563
            'type' => 'geodetic',
11564
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11565
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11566
            'conventional_rs' => null,
11567
            'frame_reference_epoch' => null,
11568
        ],
11569
        'urn:ogc:def:datum:EPSG::6140' => [
11570
            'name' => 'NAD83 Canadian Spatial Reference System',
11571
            'type' => 'geodetic',
11572
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11573
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11574
            'conventional_rs' => null,
11575
            'frame_reference_epoch' => null,
11576
        ],
11577
        'urn:ogc:def:datum:EPSG::6141' => [
11578
            'name' => 'Israel 1993',
11579
            'type' => 'geodetic',
11580
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11581
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11582
            'conventional_rs' => null,
11583
            'frame_reference_epoch' => null,
11584
        ],
11585
        'urn:ogc:def:datum:EPSG::6142' => [
11586
            'name' => 'Locodjo 1965',
11587
            'type' => 'geodetic',
11588
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11589
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11590
            'conventional_rs' => null,
11591
            'frame_reference_epoch' => null,
11592
        ],
11593
        'urn:ogc:def:datum:EPSG::6143' => [
11594
            'name' => 'Abidjan 1987',
11595
            'type' => 'geodetic',
11596
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11597
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11598
            'conventional_rs' => null,
11599
            'frame_reference_epoch' => null,
11600
        ],
11601
        'urn:ogc:def:datum:EPSG::6144' => [
11602
            'name' => 'Kalianpur 1937',
11603
            'type' => 'geodetic',
11604
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
11605
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11606
            'conventional_rs' => null,
11607
            'frame_reference_epoch' => null,
11608
        ],
11609
        'urn:ogc:def:datum:EPSG::6145' => [
11610
            'name' => 'Kalianpur 1962',
11611
            'type' => 'geodetic',
11612
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7044',
11613
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11614
            'conventional_rs' => null,
11615
            'frame_reference_epoch' => null,
11616
        ],
11617
        'urn:ogc:def:datum:EPSG::6146' => [
11618
            'name' => 'Kalianpur 1975',
11619
            'type' => 'geodetic',
11620
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7045',
11621
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11622
            'conventional_rs' => null,
11623
            'frame_reference_epoch' => null,
11624
        ],
11625
        'urn:ogc:def:datum:EPSG::6147' => [
11626
            'name' => 'Hanoi 1972',
11627
            'type' => 'geodetic',
11628
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
11629
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11630
            'conventional_rs' => null,
11631
            'frame_reference_epoch' => null,
11632
        ],
11633
        'urn:ogc:def:datum:EPSG::6148' => [
11634
            'name' => 'Hartebeesthoek94',
11635
            'type' => 'geodetic',
11636
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
11637
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11638
            'conventional_rs' => null,
11639
            'frame_reference_epoch' => null,
11640
        ],
11641
        'urn:ogc:def:datum:EPSG::6149' => [
11642
            'name' => 'CH1903',
11643
            'type' => 'geodetic',
11644
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
11645
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11646
            'conventional_rs' => null,
11647
            'frame_reference_epoch' => null,
11648
        ],
11649
        'urn:ogc:def:datum:EPSG::6150' => [
11650
            'name' => 'CH1903+',
11651
            'type' => 'geodetic',
11652
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
11653
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11654
            'conventional_rs' => null,
11655
            'frame_reference_epoch' => null,
11656
        ],
11657
        'urn:ogc:def:datum:EPSG::6151' => [
11658
            'name' => 'Swiss Terrestrial Reference System 1995',
11659
            'type' => 'geodetic',
11660
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11661
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11662
            'conventional_rs' => null,
11663
            'frame_reference_epoch' => null,
11664
        ],
11665
        'urn:ogc:def:datum:EPSG::6152' => [
11666
            'name' => 'NAD83 (High Accuracy Reference Network)',
11667
            'type' => 'geodetic',
11668
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11669
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11670
            'conventional_rs' => null,
11671
            'frame_reference_epoch' => null,
11672
        ],
11673
        'urn:ogc:def:datum:EPSG::6153' => [
11674
            'name' => 'Rassadiran',
11675
            'type' => 'geodetic',
11676
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11677
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11678
            'conventional_rs' => null,
11679
            'frame_reference_epoch' => null,
11680
        ],
11681
        'urn:ogc:def:datum:EPSG::6154' => [
11682
            'name' => 'European Datum 1950(1977)',
11683
            'type' => 'geodetic',
11684
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11685
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11686
            'conventional_rs' => null,
11687
            'frame_reference_epoch' => null,
11688
        ],
11689
        'urn:ogc:def:datum:EPSG::6155' => [
11690
            'name' => 'Dabola 1981',
11691
            'type' => 'geodetic',
11692
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
11693
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11694
            'conventional_rs' => null,
11695
            'frame_reference_epoch' => null,
11696
        ],
11697
        'urn:ogc:def:datum:EPSG::6156' => [
11698
            'name' => 'System of the Unified Trigonometrical Cadastral Network',
11699
            'type' => 'geodetic',
11700
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
11701
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11702
            'conventional_rs' => null,
11703
            'frame_reference_epoch' => null,
11704
        ],
11705
        'urn:ogc:def:datum:EPSG::6157' => [
11706
            'name' => 'Mount Dillon',
11707
            'type' => 'geodetic',
11708
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007',
11709
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11710
            'conventional_rs' => null,
11711
            'frame_reference_epoch' => null,
11712
        ],
11713
        'urn:ogc:def:datum:EPSG::6158' => [
11714
            'name' => 'Naparima 1955',
11715
            'type' => 'geodetic',
11716
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11717
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11718
            'conventional_rs' => null,
11719
            'frame_reference_epoch' => null,
11720
        ],
11721
        'urn:ogc:def:datum:EPSG::6159' => [
11722
            'name' => 'European Libyan Datum 1979',
11723
            'type' => 'geodetic',
11724
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11725
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11726
            'conventional_rs' => null,
11727
            'frame_reference_epoch' => null,
11728
        ],
11729
        'urn:ogc:def:datum:EPSG::6160' => [
11730
            'name' => 'Chos Malal 1914',
11731
            'type' => 'geodetic',
11732
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11733
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11734
            'conventional_rs' => null,
11735
            'frame_reference_epoch' => null,
11736
        ],
11737
        'urn:ogc:def:datum:EPSG::6161' => [
11738
            'name' => 'Pampa del Castillo',
11739
            'type' => 'geodetic',
11740
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11741
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11742
            'conventional_rs' => null,
11743
            'frame_reference_epoch' => null,
11744
        ],
11745
        'urn:ogc:def:datum:EPSG::6162' => [
11746
            'name' => 'Korean Datum 1985',
11747
            'type' => 'geodetic',
11748
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
11749
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11750
            'conventional_rs' => null,
11751
            'frame_reference_epoch' => null,
11752
        ],
11753
        'urn:ogc:def:datum:EPSG::6163' => [
11754
            'name' => 'Yemen National Geodetic Network 1996',
11755
            'type' => 'geodetic',
11756
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
11757
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11758
            'conventional_rs' => null,
11759
            'frame_reference_epoch' => null,
11760
        ],
11761
        'urn:ogc:def:datum:EPSG::6164' => [
11762
            'name' => 'South Yemen',
11763
            'type' => 'geodetic',
11764
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
11765
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11766
            'conventional_rs' => null,
11767
            'frame_reference_epoch' => null,
11768
        ],
11769
        'urn:ogc:def:datum:EPSG::6165' => [
11770
            'name' => 'Bissau',
11771
            'type' => 'geodetic',
11772
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11773
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11774
            'conventional_rs' => null,
11775
            'frame_reference_epoch' => null,
11776
        ],
11777
        'urn:ogc:def:datum:EPSG::6166' => [
11778
            'name' => 'Korean Datum 1995',
11779
            'type' => 'geodetic',
11780
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
11781
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11782
            'conventional_rs' => null,
11783
            'frame_reference_epoch' => null,
11784
        ],
11785
        'urn:ogc:def:datum:EPSG::6167' => [
11786
            'name' => 'New Zealand Geodetic Datum 2000',
11787
            'type' => 'geodetic',
11788
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11789
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11790
            'conventional_rs' => null,
11791
            'frame_reference_epoch' => null,
11792
        ],
11793
        'urn:ogc:def:datum:EPSG::6168' => [
11794
            'name' => 'Accra',
11795
            'type' => 'geodetic',
11796
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7029',
11797
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11798
            'conventional_rs' => null,
11799
            'frame_reference_epoch' => null,
11800
        ],
11801
        'urn:ogc:def:datum:EPSG::6169' => [
11802
            'name' => 'American Samoa 1962',
11803
            'type' => 'geodetic',
11804
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11805
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11806
            'conventional_rs' => null,
11807
            'frame_reference_epoch' => null,
11808
        ],
11809
        'urn:ogc:def:datum:EPSG::6170' => [
11810
            'name' => 'Sistema de Referencia Geocentrico para America del Sur 1995',
11811
            'type' => 'geodetic',
11812
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11813
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11814
            'conventional_rs' => null,
11815
            'frame_reference_epoch' => null,
11816
        ],
11817
        'urn:ogc:def:datum:EPSG::6171' => [
11818
            'name' => 'Reseau Geodesique Francais 1993 v1',
11819
            'type' => 'geodetic',
11820
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11821
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11822
            'conventional_rs' => null,
11823
            'frame_reference_epoch' => null,
11824
        ],
11825
        'urn:ogc:def:datum:EPSG::6173' => [
11826
            'name' => 'IRENET95',
11827
            'type' => 'geodetic',
11828
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11829
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11830
            'conventional_rs' => null,
11831
            'frame_reference_epoch' => null,
11832
        ],
11833
        'urn:ogc:def:datum:EPSG::6174' => [
11834
            'name' => 'Sierra Leone Colony 1924',
11835
            'type' => 'geodetic',
11836
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7029',
11837
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11838
            'conventional_rs' => null,
11839
            'frame_reference_epoch' => null,
11840
        ],
11841
        'urn:ogc:def:datum:EPSG::6175' => [
11842
            'name' => 'Sierra Leone 1968',
11843
            'type' => 'geodetic',
11844
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11845
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11846
            'conventional_rs' => null,
11847
            'frame_reference_epoch' => null,
11848
        ],
11849
        'urn:ogc:def:datum:EPSG::6176' => [
11850
            'name' => 'Australian Antarctic Datum 1998',
11851
            'type' => 'geodetic',
11852
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11853
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11854
            'conventional_rs' => null,
11855
            'frame_reference_epoch' => null,
11856
        ],
11857
        'urn:ogc:def:datum:EPSG::6178' => [
11858
            'name' => 'Pulkovo 1942(83)',
11859
            'type' => 'geodetic',
11860
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
11861
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11862
            'conventional_rs' => null,
11863
            'frame_reference_epoch' => null,
11864
        ],
11865
        'urn:ogc:def:datum:EPSG::6179' => [
11866
            'name' => 'Pulkovo 1942(58)',
11867
            'type' => 'geodetic',
11868
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
11869
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11870
            'conventional_rs' => null,
11871
            'frame_reference_epoch' => null,
11872
        ],
11873
        'urn:ogc:def:datum:EPSG::6180' => [
11874
            'name' => 'Estonia 1997',
11875
            'type' => 'geodetic',
11876
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11877
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11878
            'conventional_rs' => null,
11879
            'frame_reference_epoch' => null,
11880
        ],
11881
        'urn:ogc:def:datum:EPSG::6181' => [
11882
            'name' => 'Luxembourg Reference Frame',
11883
            'type' => 'geodetic',
11884
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11885
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11886
            'conventional_rs' => null,
11887
            'frame_reference_epoch' => null,
11888
        ],
11889
        'urn:ogc:def:datum:EPSG::6182' => [
11890
            'name' => 'Azores Occidental Islands 1939',
11891
            'type' => 'geodetic',
11892
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11893
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11894
            'conventional_rs' => null,
11895
            'frame_reference_epoch' => null,
11896
        ],
11897
        'urn:ogc:def:datum:EPSG::6183' => [
11898
            'name' => 'Azores Central Islands 1948',
11899
            'type' => 'geodetic',
11900
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11901
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11902
            'conventional_rs' => null,
11903
            'frame_reference_epoch' => null,
11904
        ],
11905
        'urn:ogc:def:datum:EPSG::6184' => [
11906
            'name' => 'Azores Oriental Islands 1940',
11907
            'type' => 'geodetic',
11908
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11909
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11910
            'conventional_rs' => null,
11911
            'frame_reference_epoch' => null,
11912
        ],
11913
        'urn:ogc:def:datum:EPSG::6188' => [
11914
            'name' => 'OSNI 1952',
11915
            'type' => 'geodetic',
11916
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001',
11917
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11918
            'conventional_rs' => null,
11919
            'frame_reference_epoch' => null,
11920
        ],
11921
        'urn:ogc:def:datum:EPSG::6189' => [
11922
            'name' => 'Red Geodesica Venezolana',
11923
            'type' => 'geodetic',
11924
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11925
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11926
            'conventional_rs' => null,
11927
            'frame_reference_epoch' => null,
11928
        ],
11929
        'urn:ogc:def:datum:EPSG::6190' => [
11930
            'name' => 'Posiciones Geodesicas Argentinas 1998',
11931
            'type' => 'geodetic',
11932
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11933
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11934
            'conventional_rs' => null,
11935
            'frame_reference_epoch' => null,
11936
        ],
11937
        'urn:ogc:def:datum:EPSG::6191' => [
11938
            'name' => 'Albanian 1987',
11939
            'type' => 'geodetic',
11940
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
11941
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11942
            'conventional_rs' => null,
11943
            'frame_reference_epoch' => null,
11944
        ],
11945
        'urn:ogc:def:datum:EPSG::6192' => [
11946
            'name' => 'Douala 1948',
11947
            'type' => 'geodetic',
11948
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11949
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11950
            'conventional_rs' => null,
11951
            'frame_reference_epoch' => null,
11952
        ],
11953
        'urn:ogc:def:datum:EPSG::6193' => [
11954
            'name' => 'Manoca 1962',
11955
            'type' => 'geodetic',
11956
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
11957
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11958
            'conventional_rs' => null,
11959
            'frame_reference_epoch' => null,
11960
        ],
11961
        'urn:ogc:def:datum:EPSG::6194' => [
11962
            'name' => 'Qornoq 1927',
11963
            'type' => 'geodetic',
11964
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11965
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11966
            'conventional_rs' => null,
11967
            'frame_reference_epoch' => null,
11968
        ],
11969
        'urn:ogc:def:datum:EPSG::6195' => [
11970
            'name' => 'Scoresbysund 1952',
11971
            'type' => 'geodetic',
11972
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11973
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11974
            'conventional_rs' => null,
11975
            'frame_reference_epoch' => null,
11976
        ],
11977
        'urn:ogc:def:datum:EPSG::6196' => [
11978
            'name' => 'Ammassalik 1958',
11979
            'type' => 'geodetic',
11980
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11981
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11982
            'conventional_rs' => null,
11983
            'frame_reference_epoch' => null,
11984
        ],
11985
        'urn:ogc:def:datum:EPSG::6197' => [
11986
            'name' => 'Garoua',
11987
            'type' => 'geodetic',
11988
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11989
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11990
            'conventional_rs' => null,
11991
            'frame_reference_epoch' => null,
11992
        ],
11993
        'urn:ogc:def:datum:EPSG::6198' => [
11994
            'name' => 'Kousseri',
11995
            'type' => 'geodetic',
11996
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11997
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11998
            'conventional_rs' => null,
11999
            'frame_reference_epoch' => null,
12000
        ],
12001
        'urn:ogc:def:datum:EPSG::6199' => [
12002
            'name' => 'Egypt 1930',
12003
            'type' => 'geodetic',
12004
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12005
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12006
            'conventional_rs' => null,
12007
            'frame_reference_epoch' => null,
12008
        ],
12009
        'urn:ogc:def:datum:EPSG::6200' => [
12010
            'name' => 'Pulkovo 1995',
12011
            'type' => 'geodetic',
12012
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
12013
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12014
            'conventional_rs' => null,
12015
            'frame_reference_epoch' => null,
12016
        ],
12017
        'urn:ogc:def:datum:EPSG::6201' => [
12018
            'name' => 'Adindan',
12019
            'type' => 'geodetic',
12020
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12021
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12022
            'conventional_rs' => null,
12023
            'frame_reference_epoch' => null,
12024
        ],
12025
        'urn:ogc:def:datum:EPSG::6202' => [
12026
            'name' => 'Australian Geodetic Datum 1966',
12027
            'type' => 'geodetic',
12028
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7003',
12029
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12030
            'conventional_rs' => null,
12031
            'frame_reference_epoch' => null,
12032
        ],
12033
        'urn:ogc:def:datum:EPSG::6203' => [
12034
            'name' => 'Australian Geodetic Datum 1984',
12035
            'type' => 'geodetic',
12036
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7003',
12037
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12038
            'conventional_rs' => null,
12039
            'frame_reference_epoch' => null,
12040
        ],
12041
        'urn:ogc:def:datum:EPSG::6204' => [
12042
            'name' => 'Ain el Abd 1970',
12043
            'type' => 'geodetic',
12044
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12045
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12046
            'conventional_rs' => null,
12047
            'frame_reference_epoch' => null,
12048
        ],
12049
        'urn:ogc:def:datum:EPSG::6205' => [
12050
            'name' => 'Afgooye',
12051
            'type' => 'geodetic',
12052
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
12053
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12054
            'conventional_rs' => null,
12055
            'frame_reference_epoch' => null,
12056
        ],
12057
        'urn:ogc:def:datum:EPSG::6206' => [
12058
            'name' => 'Agadez',
12059
            'type' => 'geodetic',
12060
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12061
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12062
            'conventional_rs' => null,
12063
            'frame_reference_epoch' => null,
12064
        ],
12065
        'urn:ogc:def:datum:EPSG::6207' => [
12066
            'name' => 'Lisbon 1937',
12067
            'type' => 'geodetic',
12068
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12069
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12070
            'conventional_rs' => null,
12071
            'frame_reference_epoch' => null,
12072
        ],
12073
        'urn:ogc:def:datum:EPSG::6208' => [
12074
            'name' => 'Aratu',
12075
            'type' => 'geodetic',
12076
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12077
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12078
            'conventional_rs' => null,
12079
            'frame_reference_epoch' => null,
12080
        ],
12081
        'urn:ogc:def:datum:EPSG::6209' => [
12082
            'name' => 'Arc 1950',
12083
            'type' => 'geodetic',
12084
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7013',
12085
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12086
            'conventional_rs' => null,
12087
            'frame_reference_epoch' => null,
12088
        ],
12089
        'urn:ogc:def:datum:EPSG::6210' => [
12090
            'name' => 'Arc 1960',
12091
            'type' => 'geodetic',
12092
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12093
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12094
            'conventional_rs' => null,
12095
            'frame_reference_epoch' => null,
12096
        ],
12097
        'urn:ogc:def:datum:EPSG::6211' => [
12098
            'name' => 'Batavia',
12099
            'type' => 'geodetic',
12100
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12101
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12102
            'conventional_rs' => null,
12103
            'frame_reference_epoch' => null,
12104
        ],
12105
        'urn:ogc:def:datum:EPSG::6212' => [
12106
            'name' => 'Barbados 1938',
12107
            'type' => 'geodetic',
12108
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12109
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12110
            'conventional_rs' => null,
12111
            'frame_reference_epoch' => null,
12112
        ],
12113
        'urn:ogc:def:datum:EPSG::6213' => [
12114
            'name' => 'Beduaram',
12115
            'type' => 'geodetic',
12116
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12117
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12118
            'conventional_rs' => null,
12119
            'frame_reference_epoch' => null,
12120
        ],
12121
        'urn:ogc:def:datum:EPSG::6214' => [
12122
            'name' => 'Beijing 1954',
12123
            'type' => 'geodetic',
12124
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
12125
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12126
            'conventional_rs' => null,
12127
            'frame_reference_epoch' => null,
12128
        ],
12129
        'urn:ogc:def:datum:EPSG::6215' => [
12130
            'name' => 'Reseau National Belge 1950',
12131
            'type' => 'geodetic',
12132
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12133
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12134
            'conventional_rs' => null,
12135
            'frame_reference_epoch' => null,
12136
        ],
12137
        'urn:ogc:def:datum:EPSG::6216' => [
12138
            'name' => 'Bermuda 1957',
12139
            'type' => 'geodetic',
12140
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
12141
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12142
            'conventional_rs' => null,
12143
            'frame_reference_epoch' => null,
12144
        ],
12145
        'urn:ogc:def:datum:EPSG::6218' => [
12146
            'name' => 'Bogota 1975',
12147
            'type' => 'geodetic',
12148
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12149
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12150
            'conventional_rs' => null,
12151
            'frame_reference_epoch' => null,
12152
        ],
12153
        'urn:ogc:def:datum:EPSG::6219' => [
12154
            'name' => 'Bukit Rimpah',
12155
            'type' => 'geodetic',
12156
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12157
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12158
            'conventional_rs' => null,
12159
            'frame_reference_epoch' => null,
12160
        ],
12161
        'urn:ogc:def:datum:EPSG::6220' => [
12162
            'name' => 'Camacupa 1948',
12163
            'type' => 'geodetic',
12164
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12165
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12166
            'conventional_rs' => null,
12167
            'frame_reference_epoch' => null,
12168
        ],
12169
        'urn:ogc:def:datum:EPSG::6221' => [
12170
            'name' => 'Campo Inchauspe',
12171
            'type' => 'geodetic',
12172
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12173
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12174
            'conventional_rs' => null,
12175
            'frame_reference_epoch' => null,
12176
        ],
12177
        'urn:ogc:def:datum:EPSG::6222' => [
12178
            'name' => 'Cape',
12179
            'type' => 'geodetic',
12180
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7013',
12181
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12182
            'conventional_rs' => null,
12183
            'frame_reference_epoch' => null,
12184
        ],
12185
        'urn:ogc:def:datum:EPSG::6223' => [
12186
            'name' => 'Carthage',
12187
            'type' => 'geodetic',
12188
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12189
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12190
            'conventional_rs' => null,
12191
            'frame_reference_epoch' => null,
12192
        ],
12193
        'urn:ogc:def:datum:EPSG::6224' => [
12194
            'name' => 'Chua',
12195
            'type' => 'geodetic',
12196
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12197
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12198
            'conventional_rs' => null,
12199
            'frame_reference_epoch' => null,
12200
        ],
12201
        'urn:ogc:def:datum:EPSG::6225' => [
12202
            'name' => 'Corrego Alegre 1970-72',
12203
            'type' => 'geodetic',
12204
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12205
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12206
            'conventional_rs' => null,
12207
            'frame_reference_epoch' => null,
12208
        ],
12209
        'urn:ogc:def:datum:EPSG::6227' => [
12210
            'name' => 'Deir ez Zor',
12211
            'type' => 'geodetic',
12212
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12213
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12214
            'conventional_rs' => null,
12215
            'frame_reference_epoch' => null,
12216
        ],
12217
        'urn:ogc:def:datum:EPSG::6229' => [
12218
            'name' => 'Egypt 1907',
12219
            'type' => 'geodetic',
12220
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020',
12221
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12222
            'conventional_rs' => null,
12223
            'frame_reference_epoch' => null,
12224
        ],
12225
        'urn:ogc:def:datum:EPSG::6230' => [
12226
            'name' => 'European Datum 1950',
12227
            'type' => 'geodetic',
12228
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12229
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12230
            'conventional_rs' => null,
12231
            'frame_reference_epoch' => null,
12232
        ],
12233
        'urn:ogc:def:datum:EPSG::6231' => [
12234
            'name' => 'European Datum 1987',
12235
            'type' => 'geodetic',
12236
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12237
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12238
            'conventional_rs' => null,
12239
            'frame_reference_epoch' => null,
12240
        ],
12241
        'urn:ogc:def:datum:EPSG::6232' => [
12242
            'name' => 'Fahud',
12243
            'type' => 'geodetic',
12244
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12245
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12246
            'conventional_rs' => null,
12247
            'frame_reference_epoch' => null,
12248
        ],
12249
        'urn:ogc:def:datum:EPSG::6236' => [
12250
            'name' => 'Hu Tzu Shan 1950',
12251
            'type' => 'geodetic',
12252
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12253
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12254
            'conventional_rs' => null,
12255
            'frame_reference_epoch' => null,
12256
        ],
12257
        'urn:ogc:def:datum:EPSG::6237' => [
12258
            'name' => 'Hungarian Datum 1972',
12259
            'type' => 'geodetic',
12260
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7036',
12261
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12262
            'conventional_rs' => null,
12263
            'frame_reference_epoch' => null,
12264
        ],
12265
        'urn:ogc:def:datum:EPSG::6238' => [
12266
            'name' => 'Indonesian Datum 1974',
12267
            'type' => 'geodetic',
12268
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7021',
12269
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12270
            'conventional_rs' => null,
12271
            'frame_reference_epoch' => null,
12272
        ],
12273
        'urn:ogc:def:datum:EPSG::6239' => [
12274
            'name' => 'Indian 1954',
12275
            'type' => 'geodetic',
12276
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
12277
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12278
            'conventional_rs' => null,
12279
            'frame_reference_epoch' => null,
12280
        ],
12281
        'urn:ogc:def:datum:EPSG::6240' => [
12282
            'name' => 'Indian 1975',
12283
            'type' => 'geodetic',
12284
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
12285
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12286
            'conventional_rs' => null,
12287
            'frame_reference_epoch' => null,
12288
        ],
12289
        'urn:ogc:def:datum:EPSG::6241' => [
12290
            'name' => 'Jamaica 1875',
12291
            'type' => 'geodetic',
12292
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7034',
12293
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12294
            'conventional_rs' => null,
12295
            'frame_reference_epoch' => null,
12296
        ],
12297
        'urn:ogc:def:datum:EPSG::6242' => [
12298
            'name' => 'Jamaica 1969',
12299
            'type' => 'geodetic',
12300
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
12301
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12302
            'conventional_rs' => null,
12303
            'frame_reference_epoch' => null,
12304
        ],
12305
        'urn:ogc:def:datum:EPSG::6243' => [
12306
            'name' => 'Kalianpur 1880',
12307
            'type' => 'geodetic',
12308
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7042',
12309
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12310
            'conventional_rs' => null,
12311
            'frame_reference_epoch' => null,
12312
        ],
12313
        'urn:ogc:def:datum:EPSG::6244' => [
12314
            'name' => 'Kandawala',
12315
            'type' => 'geodetic',
12316
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
12317
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12318
            'conventional_rs' => null,
12319
            'frame_reference_epoch' => null,
12320
        ],
12321
        'urn:ogc:def:datum:EPSG::6245' => [
12322
            'name' => 'Kertau 1968',
12323
            'type' => 'geodetic',
12324
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7018',
12325
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12326
            'conventional_rs' => null,
12327
            'frame_reference_epoch' => null,
12328
        ],
12329
        'urn:ogc:def:datum:EPSG::6246' => [
12330
            'name' => 'Kuwait Oil Company',
12331
            'type' => 'geodetic',
12332
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12333
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12334
            'conventional_rs' => null,
12335
            'frame_reference_epoch' => null,
12336
        ],
12337
        'urn:ogc:def:datum:EPSG::6247' => [
12338
            'name' => 'La Canoa',
12339
            'type' => 'geodetic',
12340
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12341
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12342
            'conventional_rs' => null,
12343
            'frame_reference_epoch' => null,
12344
        ],
12345
        'urn:ogc:def:datum:EPSG::6248' => [
12346
            'name' => 'Provisional South American Datum 1956',
12347
            'type' => 'geodetic',
12348
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12349
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12350
            'conventional_rs' => null,
12351
            'frame_reference_epoch' => null,
12352
        ],
12353
        'urn:ogc:def:datum:EPSG::6249' => [
12354
            'name' => 'Lake',
12355
            'type' => 'geodetic',
12356
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12357
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12358
            'conventional_rs' => null,
12359
            'frame_reference_epoch' => null,
12360
        ],
12361
        'urn:ogc:def:datum:EPSG::6250' => [
12362
            'name' => 'Leigon',
12363
            'type' => 'geodetic',
12364
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12365
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12366
            'conventional_rs' => null,
12367
            'frame_reference_epoch' => null,
12368
        ],
12369
        'urn:ogc:def:datum:EPSG::6251' => [
12370
            'name' => 'Liberia 1964',
12371
            'type' => 'geodetic',
12372
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12373
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12374
            'conventional_rs' => null,
12375
            'frame_reference_epoch' => null,
12376
        ],
12377
        'urn:ogc:def:datum:EPSG::6252' => [
12378
            'name' => 'Lome',
12379
            'type' => 'geodetic',
12380
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12381
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12382
            'conventional_rs' => null,
12383
            'frame_reference_epoch' => null,
12384
        ],
12385
        'urn:ogc:def:datum:EPSG::6253' => [
12386
            'name' => 'Luzon 1911',
12387
            'type' => 'geodetic',
12388
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
12389
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12390
            'conventional_rs' => null,
12391
            'frame_reference_epoch' => null,
12392
        ],
12393
        'urn:ogc:def:datum:EPSG::6254' => [
12394
            'name' => 'Hito XVIII 1963',
12395
            'type' => 'geodetic',
12396
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12397
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12398
            'conventional_rs' => null,
12399
            'frame_reference_epoch' => null,
12400
        ],
12401
        'urn:ogc:def:datum:EPSG::6255' => [
12402
            'name' => 'Herat North',
12403
            'type' => 'geodetic',
12404
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12405
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12406
            'conventional_rs' => null,
12407
            'frame_reference_epoch' => null,
12408
        ],
12409
        'urn:ogc:def:datum:EPSG::6256' => [
12410
            'name' => 'Mahe 1971',
12411
            'type' => 'geodetic',
12412
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12413
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12414
            'conventional_rs' => null,
12415
            'frame_reference_epoch' => null,
12416
        ],
12417
        'urn:ogc:def:datum:EPSG::6257' => [
12418
            'name' => 'Makassar',
12419
            'type' => 'geodetic',
12420
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12421
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12422
            'conventional_rs' => null,
12423
            'frame_reference_epoch' => null,
12424
        ],
12425
        'urn:ogc:def:datum:EPSG::6258' => [
12426
            'name' => 'European Terrestrial Reference System 1989 ensemble',
12427
            'type' => 'ensemble',
12428
            'ellipsoid' => null,
12429
            'prime_meridian' => null,
12430
            'conventional_rs' => null,
12431
            'frame_reference_epoch' => null,
12432
            'ensemble' => [
12433
                'urn:ogc:def:datum:EPSG::1178',
12434
                'urn:ogc:def:datum:EPSG::1179',
12435
                'urn:ogc:def:datum:EPSG::1180',
12436
                'urn:ogc:def:datum:EPSG::1181',
12437
                'urn:ogc:def:datum:EPSG::1182',
12438
                'urn:ogc:def:datum:EPSG::1183',
12439
                'urn:ogc:def:datum:EPSG::1184',
12440
                'urn:ogc:def:datum:EPSG::1185',
12441
                'urn:ogc:def:datum:EPSG::1186',
12442
                'urn:ogc:def:datum:EPSG::1204',
12443
                'urn:ogc:def:datum:EPSG::1206',
12444
            ],
12445
        ],
12446
        'urn:ogc:def:datum:EPSG::6259' => [
12447
            'name' => 'Malongo 1987',
12448
            'type' => 'geodetic',
12449
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12450
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12451
            'conventional_rs' => null,
12452
            'frame_reference_epoch' => null,
12453
        ],
12454
        'urn:ogc:def:datum:EPSG::6261' => [
12455
            'name' => 'Merchich',
12456
            'type' => 'geodetic',
12457
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12458
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12459
            'conventional_rs' => null,
12460
            'frame_reference_epoch' => null,
12461
        ],
12462
        'urn:ogc:def:datum:EPSG::6262' => [
12463
            'name' => 'Massawa',
12464
            'type' => 'geodetic',
12465
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12466
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12467
            'conventional_rs' => null,
12468
            'frame_reference_epoch' => null,
12469
        ],
12470
        'urn:ogc:def:datum:EPSG::6263' => [
12471
            'name' => 'Minna',
12472
            'type' => 'geodetic',
12473
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12474
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12475
            'conventional_rs' => null,
12476
            'frame_reference_epoch' => null,
12477
        ],
12478
        'urn:ogc:def:datum:EPSG::6265' => [
12479
            'name' => 'Monte Mario',
12480
            'type' => 'geodetic',
12481
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12482
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12483
            'conventional_rs' => null,
12484
            'frame_reference_epoch' => null,
12485
        ],
12486
        'urn:ogc:def:datum:EPSG::6266' => [
12487
            'name' => 'M\'poraloko',
12488
            'type' => 'geodetic',
12489
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12490
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12491
            'conventional_rs' => null,
12492
            'frame_reference_epoch' => null,
12493
        ],
12494
        'urn:ogc:def:datum:EPSG::6267' => [
12495
            'name' => 'North American Datum 1927',
12496
            'type' => 'geodetic',
12497
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
12498
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12499
            'conventional_rs' => null,
12500
            'frame_reference_epoch' => null,
12501
        ],
12502
        'urn:ogc:def:datum:EPSG::6269' => [
12503
            'name' => 'North American Datum 1983',
12504
            'type' => 'geodetic',
12505
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12506
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12507
            'conventional_rs' => null,
12508
            'frame_reference_epoch' => null,
12509
        ],
12510
        'urn:ogc:def:datum:EPSG::6270' => [
12511
            'name' => 'Nahrwan 1967',
12512
            'type' => 'geodetic',
12513
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12514
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12515
            'conventional_rs' => null,
12516
            'frame_reference_epoch' => null,
12517
        ],
12518
        'urn:ogc:def:datum:EPSG::6271' => [
12519
            'name' => 'Naparima 1972',
12520
            'type' => 'geodetic',
12521
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12522
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12523
            'conventional_rs' => null,
12524
            'frame_reference_epoch' => null,
12525
        ],
12526
        'urn:ogc:def:datum:EPSG::6272' => [
12527
            'name' => 'New Zealand Geodetic Datum 1949',
12528
            'type' => 'geodetic',
12529
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12530
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12531
            'conventional_rs' => null,
12532
            'frame_reference_epoch' => null,
12533
        ],
12534
        'urn:ogc:def:datum:EPSG::6273' => [
12535
            'name' => 'NGO 1948',
12536
            'type' => 'geodetic',
12537
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7005',
12538
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12539
            'conventional_rs' => null,
12540
            'frame_reference_epoch' => null,
12541
        ],
12542
        'urn:ogc:def:datum:EPSG::6274' => [
12543
            'name' => 'Datum 73',
12544
            'type' => 'geodetic',
12545
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12546
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12547
            'conventional_rs' => null,
12548
            'frame_reference_epoch' => null,
12549
        ],
12550
        'urn:ogc:def:datum:EPSG::6275' => [
12551
            'name' => 'Nouvelle Triangulation Francaise',
12552
            'type' => 'geodetic',
12553
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12554
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12555
            'conventional_rs' => null,
12556
            'frame_reference_epoch' => null,
12557
        ],
12558
        'urn:ogc:def:datum:EPSG::6276' => [
12559
            'name' => 'NSWC 9Z-2',
12560
            'type' => 'geodetic',
12561
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7025',
12562
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12563
            'conventional_rs' => null,
12564
            'frame_reference_epoch' => null,
12565
        ],
12566
        'urn:ogc:def:datum:EPSG::6277' => [
12567
            'name' => 'Ordnance Survey of Great Britain 1936',
12568
            'type' => 'geodetic',
12569
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001',
12570
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12571
            'conventional_rs' => null,
12572
            'frame_reference_epoch' => null,
12573
        ],
12574
        'urn:ogc:def:datum:EPSG::6278' => [
12575
            'name' => 'OSGB 1970 (SN)',
12576
            'type' => 'geodetic',
12577
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001',
12578
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12579
            'conventional_rs' => null,
12580
            'frame_reference_epoch' => null,
12581
        ],
12582
        'urn:ogc:def:datum:EPSG::6279' => [
12583
            'name' => 'OS (SN) 1980',
12584
            'type' => 'geodetic',
12585
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001',
12586
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12587
            'conventional_rs' => null,
12588
            'frame_reference_epoch' => null,
12589
        ],
12590
        'urn:ogc:def:datum:EPSG::6281' => [
12591
            'name' => 'Palestine 1923',
12592
            'type' => 'geodetic',
12593
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7010',
12594
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12595
            'conventional_rs' => null,
12596
            'frame_reference_epoch' => null,
12597
        ],
12598
        'urn:ogc:def:datum:EPSG::6282' => [
12599
            'name' => 'Congo 1960 Pointe Noire',
12600
            'type' => 'geodetic',
12601
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12602
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12603
            'conventional_rs' => null,
12604
            'frame_reference_epoch' => null,
12605
        ],
12606
        'urn:ogc:def:datum:EPSG::6283' => [
12607
            'name' => 'Geocentric Datum of Australia 1994',
12608
            'type' => 'geodetic',
12609
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12610
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12611
            'conventional_rs' => null,
12612
            'frame_reference_epoch' => null,
12613
        ],
12614
        'urn:ogc:def:datum:EPSG::6284' => [
12615
            'name' => 'Pulkovo 1942',
12616
            'type' => 'geodetic',
12617
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
12618
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12619
            'conventional_rs' => null,
12620
            'frame_reference_epoch' => null,
12621
        ],
12622
        'urn:ogc:def:datum:EPSG::6285' => [
12623
            'name' => 'Qatar 1974',
12624
            'type' => 'geodetic',
12625
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12626
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12627
            'conventional_rs' => null,
12628
            'frame_reference_epoch' => null,
12629
        ],
12630
        'urn:ogc:def:datum:EPSG::6286' => [
12631
            'name' => 'Qatar 1948',
12632
            'type' => 'geodetic',
12633
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020',
12634
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12635
            'conventional_rs' => null,
12636
            'frame_reference_epoch' => null,
12637
        ],
12638
        'urn:ogc:def:datum:EPSG::6288' => [
12639
            'name' => 'Loma Quintana',
12640
            'type' => 'geodetic',
12641
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12642
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12643
            'conventional_rs' => null,
12644
            'frame_reference_epoch' => null,
12645
        ],
12646
        'urn:ogc:def:datum:EPSG::6289' => [
12647
            'name' => 'Amersfoort',
12648
            'type' => 'geodetic',
12649
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12650
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12651
            'conventional_rs' => null,
12652
            'frame_reference_epoch' => null,
12653
        ],
12654
        'urn:ogc:def:datum:EPSG::6292' => [
12655
            'name' => 'Sapper Hill 1943',
12656
            'type' => 'geodetic',
12657
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12658
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12659
            'conventional_rs' => null,
12660
            'frame_reference_epoch' => null,
12661
        ],
12662
        'urn:ogc:def:datum:EPSG::6293' => [
12663
            'name' => 'Schwarzeck',
12664
            'type' => 'geodetic',
12665
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7046',
12666
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12667
            'conventional_rs' => null,
12668
            'frame_reference_epoch' => null,
12669
        ],
12670
        'urn:ogc:def:datum:EPSG::6295' => [
12671
            'name' => 'Serindung',
12672
            'type' => 'geodetic',
12673
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12674
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12675
            'conventional_rs' => null,
12676
            'frame_reference_epoch' => null,
12677
        ],
12678
        'urn:ogc:def:datum:EPSG::6297' => [
12679
            'name' => 'Tananarive 1925',
12680
            'type' => 'geodetic',
12681
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12682
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12683
            'conventional_rs' => null,
12684
            'frame_reference_epoch' => null,
12685
        ],
12686
        'urn:ogc:def:datum:EPSG::6298' => [
12687
            'name' => 'Timbalai 1948',
12688
            'type' => 'geodetic',
12689
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7016',
12690
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12691
            'conventional_rs' => null,
12692
            'frame_reference_epoch' => null,
12693
        ],
12694
        'urn:ogc:def:datum:EPSG::6299' => [
12695
            'name' => 'TM65',
12696
            'type' => 'geodetic',
12697
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7002',
12698
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12699
            'conventional_rs' => null,
12700
            'frame_reference_epoch' => null,
12701
        ],
12702
        'urn:ogc:def:datum:EPSG::6300' => [
12703
            'name' => 'Geodetic Datum of 1965',
12704
            'type' => 'geodetic',
12705
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7002',
12706
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12707
            'conventional_rs' => null,
12708
            'frame_reference_epoch' => null,
12709
        ],
12710
        'urn:ogc:def:datum:EPSG::6301' => [
12711
            'name' => 'Tokyo',
12712
            'type' => 'geodetic',
12713
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12714
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12715
            'conventional_rs' => null,
12716
            'frame_reference_epoch' => null,
12717
        ],
12718
        'urn:ogc:def:datum:EPSG::6302' => [
12719
            'name' => 'Trinidad 1903',
12720
            'type' => 'geodetic',
12721
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007',
12722
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12723
            'conventional_rs' => null,
12724
            'frame_reference_epoch' => null,
12725
        ],
12726
        'urn:ogc:def:datum:EPSG::6303' => [
12727
            'name' => 'Trucial Coast 1948',
12728
            'type' => 'geodetic',
12729
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020',
12730
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12731
            'conventional_rs' => null,
12732
            'frame_reference_epoch' => null,
12733
        ],
12734
        'urn:ogc:def:datum:EPSG::6304' => [
12735
            'name' => 'Voirol 1875',
12736
            'type' => 'geodetic',
12737
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12738
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12739
            'conventional_rs' => null,
12740
            'frame_reference_epoch' => null,
12741
        ],
12742
        'urn:ogc:def:datum:EPSG::6306' => [
12743
            'name' => 'Bern 1938',
12744
            'type' => 'geodetic',
12745
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12746
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12747
            'conventional_rs' => null,
12748
            'frame_reference_epoch' => null,
12749
        ],
12750
        'urn:ogc:def:datum:EPSG::6307' => [
12751
            'name' => 'Nord Sahara 1959',
12752
            'type' => 'geodetic',
12753
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12754
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12755
            'conventional_rs' => null,
12756
            'frame_reference_epoch' => null,
12757
        ],
12758
        'urn:ogc:def:datum:EPSG::6308' => [
12759
            'name' => 'Stockholm 1938',
12760
            'type' => 'geodetic',
12761
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12762
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12763
            'conventional_rs' => null,
12764
            'frame_reference_epoch' => null,
12765
        ],
12766
        'urn:ogc:def:datum:EPSG::6309' => [
12767
            'name' => 'Yacare',
12768
            'type' => 'geodetic',
12769
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12770
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12771
            'conventional_rs' => null,
12772
            'frame_reference_epoch' => null,
12773
        ],
12774
        'urn:ogc:def:datum:EPSG::6310' => [
12775
            'name' => 'Yoff',
12776
            'type' => 'geodetic',
12777
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12778
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12779
            'conventional_rs' => null,
12780
            'frame_reference_epoch' => null,
12781
        ],
12782
        'urn:ogc:def:datum:EPSG::6311' => [
12783
            'name' => 'Zanderij',
12784
            'type' => 'geodetic',
12785
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12786
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12787
            'conventional_rs' => null,
12788
            'frame_reference_epoch' => null,
12789
        ],
12790
        'urn:ogc:def:datum:EPSG::6312' => [
12791
            'name' => 'Militar-Geographische Institut',
12792
            'type' => 'geodetic',
12793
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12794
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12795
            'conventional_rs' => null,
12796
            'frame_reference_epoch' => null,
12797
        ],
12798
        'urn:ogc:def:datum:EPSG::6313' => [
12799
            'name' => 'Reseau National Belge 1972',
12800
            'type' => 'geodetic',
12801
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12802
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12803
            'conventional_rs' => null,
12804
            'frame_reference_epoch' => null,
12805
        ],
12806
        'urn:ogc:def:datum:EPSG::6314' => [
12807
            'name' => 'Deutsches Hauptdreiecksnetz',
12808
            'type' => 'geodetic',
12809
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12810
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12811
            'conventional_rs' => null,
12812
            'frame_reference_epoch' => null,
12813
        ],
12814
        'urn:ogc:def:datum:EPSG::6315' => [
12815
            'name' => 'Conakry 1905',
12816
            'type' => 'geodetic',
12817
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12818
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12819
            'conventional_rs' => null,
12820
            'frame_reference_epoch' => null,
12821
        ],
12822
        'urn:ogc:def:datum:EPSG::6316' => [
12823
            'name' => 'Dealul Piscului 1930',
12824
            'type' => 'geodetic',
12825
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12826
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12827
            'conventional_rs' => null,
12828
            'frame_reference_epoch' => null,
12829
        ],
12830
        'urn:ogc:def:datum:EPSG::6318' => [
12831
            'name' => 'National Geodetic Network',
12832
            'type' => 'geodetic',
12833
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
12834
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12835
            'conventional_rs' => null,
12836
            'frame_reference_epoch' => null,
12837
        ],
12838
        'urn:ogc:def:datum:EPSG::6319' => [
12839
            'name' => 'Kuwait Utility',
12840
            'type' => 'geodetic',
12841
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12842
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12843
            'conventional_rs' => null,
12844
            'frame_reference_epoch' => null,
12845
        ],
12846
        'urn:ogc:def:datum:EPSG::6322' => [
12847
            'name' => 'World Geodetic System 1972',
12848
            'type' => 'dynamic geodetic',
12849
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7043',
12850
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12851
            'conventional_rs' => null,
12852
            'frame_reference_epoch' => 1972.0,
12853
        ],
12854
        'urn:ogc:def:datum:EPSG::6324' => [
12855
            'name' => 'WGS 72 Transit Broadcast Ephemeris',
12856
            'type' => 'dynamic geodetic',
12857
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7043',
12858
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12859
            'conventional_rs' => null,
12860
            'frame_reference_epoch' => 1972.0,
12861
        ],
12862
        'urn:ogc:def:datum:EPSG::6326' => [
12863
            'name' => 'World Geodetic System 1984 ensemble',
12864
            'type' => 'ensemble',
12865
            'ellipsoid' => null,
12866
            'prime_meridian' => null,
12867
            'conventional_rs' => null,
12868
            'frame_reference_epoch' => null,
12869
            'ensemble' => [
12870
                'urn:ogc:def:datum:EPSG::1166',
12871
                'urn:ogc:def:datum:EPSG::1152',
12872
                'urn:ogc:def:datum:EPSG::1153',
12873
                'urn:ogc:def:datum:EPSG::1154',
12874
                'urn:ogc:def:datum:EPSG::1155',
12875
                'urn:ogc:def:datum:EPSG::1156',
12876
                'urn:ogc:def:datum:EPSG::1309',
12877
            ],
12878
        ],
12879
        'urn:ogc:def:datum:EPSG::6600' => [
12880
            'name' => 'Anguilla 1957',
12881
            'type' => 'geodetic',
12882
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12883
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12884
            'conventional_rs' => null,
12885
            'frame_reference_epoch' => null,
12886
        ],
12887
        'urn:ogc:def:datum:EPSG::6601' => [
12888
            'name' => 'Antigua 1943',
12889
            'type' => 'geodetic',
12890
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12891
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12892
            'conventional_rs' => null,
12893
            'frame_reference_epoch' => null,
12894
        ],
12895
        'urn:ogc:def:datum:EPSG::6602' => [
12896
            'name' => 'Dominica 1945',
12897
            'type' => 'geodetic',
12898
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12899
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12900
            'conventional_rs' => null,
12901
            'frame_reference_epoch' => null,
12902
        ],
12903
        'urn:ogc:def:datum:EPSG::6603' => [
12904
            'name' => 'Grenada 1953',
12905
            'type' => 'geodetic',
12906
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12907
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12908
            'conventional_rs' => null,
12909
            'frame_reference_epoch' => null,
12910
        ],
12911
        'urn:ogc:def:datum:EPSG::6604' => [
12912
            'name' => 'Montserrat 1958',
12913
            'type' => 'geodetic',
12914
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12915
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12916
            'conventional_rs' => null,
12917
            'frame_reference_epoch' => null,
12918
        ],
12919
        'urn:ogc:def:datum:EPSG::6605' => [
12920
            'name' => 'St. Kitts 1955',
12921
            'type' => 'geodetic',
12922
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12923
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12924
            'conventional_rs' => null,
12925
            'frame_reference_epoch' => null,
12926
        ],
12927
        'urn:ogc:def:datum:EPSG::6606' => [
12928
            'name' => 'St. Lucia 1955',
12929
            'type' => 'geodetic',
12930
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12931
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12932
            'conventional_rs' => null,
12933
            'frame_reference_epoch' => null,
12934
        ],
12935
        'urn:ogc:def:datum:EPSG::6607' => [
12936
            'name' => 'St. Vincent 1945',
12937
            'type' => 'geodetic',
12938
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12939
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12940
            'conventional_rs' => null,
12941
            'frame_reference_epoch' => null,
12942
        ],
12943
        'urn:ogc:def:datum:EPSG::6608' => [
12944
            'name' => 'North American Datum 1927 (1976)',
12945
            'type' => 'geodetic',
12946
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
12947
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12948
            'conventional_rs' => null,
12949
            'frame_reference_epoch' => null,
12950
        ],
12951
        'urn:ogc:def:datum:EPSG::6609' => [
12952
            'name' => 'North American Datum 1927 (CGQ77)',
12953
            'type' => 'geodetic',
12954
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
12955
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12956
            'conventional_rs' => null,
12957
            'frame_reference_epoch' => null,
12958
        ],
12959
        'urn:ogc:def:datum:EPSG::6610' => [
12960
            'name' => 'Xian 1980',
12961
            'type' => 'geodetic',
12962
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7049',
12963
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12964
            'conventional_rs' => null,
12965
            'frame_reference_epoch' => null,
12966
        ],
12967
        'urn:ogc:def:datum:EPSG::6611' => [
12968
            'name' => 'Hong Kong 1980',
12969
            'type' => 'geodetic',
12970
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12971
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12972
            'conventional_rs' => null,
12973
            'frame_reference_epoch' => null,
12974
        ],
12975
        'urn:ogc:def:datum:EPSG::6612' => [
12976
            'name' => 'Japanese Geodetic Datum 2000',
12977
            'type' => 'geodetic',
12978
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12979
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12980
            'conventional_rs' => null,
12981
            'frame_reference_epoch' => null,
12982
        ],
12983
        'urn:ogc:def:datum:EPSG::6613' => [
12984
            'name' => 'Gunung Segara',
12985
            'type' => 'geodetic',
12986
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12987
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12988
            'conventional_rs' => null,
12989
            'frame_reference_epoch' => null,
12990
        ],
12991
        'urn:ogc:def:datum:EPSG::6614' => [
12992
            'name' => 'Qatar National Datum 1995',
12993
            'type' => 'geodetic',
12994
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12995
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12996
            'conventional_rs' => null,
12997
            'frame_reference_epoch' => null,
12998
        ],
12999
        'urn:ogc:def:datum:EPSG::6615' => [
13000
            'name' => 'Porto Santo 1936',
13001
            'type' => 'geodetic',
13002
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13003
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13004
            'conventional_rs' => null,
13005
            'frame_reference_epoch' => null,
13006
        ],
13007
        'urn:ogc:def:datum:EPSG::6616' => [
13008
            'name' => 'Selvagem Grande',
13009
            'type' => 'geodetic',
13010
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13011
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13012
            'conventional_rs' => null,
13013
            'frame_reference_epoch' => null,
13014
        ],
13015
        'urn:ogc:def:datum:EPSG::6618' => [
13016
            'name' => 'South American Datum 1969',
13017
            'type' => 'geodetic',
13018
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7050',
13019
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13020
            'conventional_rs' => null,
13021
            'frame_reference_epoch' => null,
13022
        ],
13023
        'urn:ogc:def:datum:EPSG::6619' => [
13024
            'name' => 'SWEREF99',
13025
            'type' => 'geodetic',
13026
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13027
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13028
            'conventional_rs' => null,
13029
            'frame_reference_epoch' => null,
13030
        ],
13031
        'urn:ogc:def:datum:EPSG::6620' => [
13032
            'name' => 'Point 58',
13033
            'type' => 'geodetic',
13034
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13035
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13036
            'conventional_rs' => null,
13037
            'frame_reference_epoch' => null,
13038
        ],
13039
        'urn:ogc:def:datum:EPSG::6621' => [
13040
            'name' => 'Fort Marigot',
13041
            'type' => 'geodetic',
13042
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13043
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13044
            'conventional_rs' => null,
13045
            'frame_reference_epoch' => null,
13046
        ],
13047
        'urn:ogc:def:datum:EPSG::6622' => [
13048
            'name' => 'Guadeloupe 1948',
13049
            'type' => 'geodetic',
13050
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13051
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13052
            'conventional_rs' => null,
13053
            'frame_reference_epoch' => null,
13054
        ],
13055
        'urn:ogc:def:datum:EPSG::6623' => [
13056
            'name' => 'Centre Spatial Guyanais 1967',
13057
            'type' => 'geodetic',
13058
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13059
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13060
            'conventional_rs' => null,
13061
            'frame_reference_epoch' => null,
13062
        ],
13063
        'urn:ogc:def:datum:EPSG::6624' => [
13064
            'name' => 'Reseau Geodesique Francais Guyane 1995',
13065
            'type' => 'geodetic',
13066
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13067
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13068
            'conventional_rs' => null,
13069
            'frame_reference_epoch' => null,
13070
        ],
13071
        'urn:ogc:def:datum:EPSG::6625' => [
13072
            'name' => 'Martinique 1938',
13073
            'type' => 'geodetic',
13074
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13075
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13076
            'conventional_rs' => null,
13077
            'frame_reference_epoch' => null,
13078
        ],
13079
        'urn:ogc:def:datum:EPSG::6626' => [
13080
            'name' => 'Reunion 1947',
13081
            'type' => 'geodetic',
13082
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13083
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13084
            'conventional_rs' => null,
13085
            'frame_reference_epoch' => null,
13086
        ],
13087
        'urn:ogc:def:datum:EPSG::6627' => [
13088
            'name' => 'Reseau Geodesique de la Reunion 1992',
13089
            'type' => 'geodetic',
13090
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13091
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13092
            'conventional_rs' => null,
13093
            'frame_reference_epoch' => null,
13094
        ],
13095
        'urn:ogc:def:datum:EPSG::6628' => [
13096
            'name' => 'Tahiti 52',
13097
            'type' => 'geodetic',
13098
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13099
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13100
            'conventional_rs' => null,
13101
            'frame_reference_epoch' => null,
13102
        ],
13103
        'urn:ogc:def:datum:EPSG::6629' => [
13104
            'name' => 'Tahaa 54',
13105
            'type' => 'geodetic',
13106
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13107
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13108
            'conventional_rs' => null,
13109
            'frame_reference_epoch' => null,
13110
        ],
13111
        'urn:ogc:def:datum:EPSG::6630' => [
13112
            'name' => 'IGN72 Nuku Hiva',
13113
            'type' => 'geodetic',
13114
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13115
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13116
            'conventional_rs' => null,
13117
            'frame_reference_epoch' => null,
13118
        ],
13119
        'urn:ogc:def:datum:EPSG::6632' => [
13120
            'name' => 'Combani 1950',
13121
            'type' => 'geodetic',
13122
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13123
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13124
            'conventional_rs' => null,
13125
            'frame_reference_epoch' => null,
13126
        ],
13127
        'urn:ogc:def:datum:EPSG::6633' => [
13128
            'name' => 'IGN56 Lifou',
13129
            'type' => 'geodetic',
13130
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13131
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13132
            'conventional_rs' => null,
13133
            'frame_reference_epoch' => null,
13134
        ],
13135
        'urn:ogc:def:datum:EPSG::6634' => [
13136
            'name' => 'IGN72 Grande Terre',
13137
            'type' => 'geodetic',
13138
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13139
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13140
            'conventional_rs' => null,
13141
            'frame_reference_epoch' => null,
13142
        ],
13143
        'urn:ogc:def:datum:EPSG::6636' => [
13144
            'name' => 'Petrels 1972',
13145
            'type' => 'geodetic',
13146
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13147
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13148
            'conventional_rs' => null,
13149
            'frame_reference_epoch' => null,
13150
        ],
13151
        'urn:ogc:def:datum:EPSG::6637' => [
13152
            'name' => 'Pointe Geologie Perroud 1950',
13153
            'type' => 'geodetic',
13154
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13155
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13156
            'conventional_rs' => null,
13157
            'frame_reference_epoch' => null,
13158
        ],
13159
        'urn:ogc:def:datum:EPSG::6638' => [
13160
            'name' => 'Saint Pierre et Miquelon 1950',
13161
            'type' => 'geodetic',
13162
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13163
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13164
            'conventional_rs' => null,
13165
            'frame_reference_epoch' => null,
13166
        ],
13167
        'urn:ogc:def:datum:EPSG::6639' => [
13168
            'name' => 'MOP78',
13169
            'type' => 'geodetic',
13170
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13171
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13172
            'conventional_rs' => null,
13173
            'frame_reference_epoch' => null,
13174
        ],
13175
        'urn:ogc:def:datum:EPSG::6641' => [
13176
            'name' => 'IGN53 Mare',
13177
            'type' => 'geodetic',
13178
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13179
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13180
            'conventional_rs' => null,
13181
            'frame_reference_epoch' => null,
13182
        ],
13183
        'urn:ogc:def:datum:EPSG::6642' => [
13184
            'name' => 'ST84 Ile des Pins',
13185
            'type' => 'geodetic',
13186
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13187
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13188
            'conventional_rs' => null,
13189
            'frame_reference_epoch' => null,
13190
        ],
13191
        'urn:ogc:def:datum:EPSG::6643' => [
13192
            'name' => 'ST71 Belep',
13193
            'type' => 'geodetic',
13194
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13195
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13196
            'conventional_rs' => null,
13197
            'frame_reference_epoch' => null,
13198
        ],
13199
        'urn:ogc:def:datum:EPSG::6644' => [
13200
            'name' => 'NEA74 Noumea',
13201
            'type' => 'geodetic',
13202
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13203
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13204
            'conventional_rs' => null,
13205
            'frame_reference_epoch' => null,
13206
        ],
13207
        'urn:ogc:def:datum:EPSG::6646' => [
13208
            'name' => 'Grand Comoros',
13209
            'type' => 'geodetic',
13210
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13211
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13212
            'conventional_rs' => null,
13213
            'frame_reference_epoch' => null,
13214
        ],
13215
        'urn:ogc:def:datum:EPSG::6647' => [
13216
            'name' => 'International Terrestrial Reference Frame 1988',
13217
            'type' => 'dynamic geodetic',
13218
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13219
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13220
            'conventional_rs' => null,
13221
            'frame_reference_epoch' => 1988.0,
13222
        ],
13223
        'urn:ogc:def:datum:EPSG::6648' => [
13224
            'name' => 'International Terrestrial Reference Frame 1989',
13225
            'type' => 'dynamic geodetic',
13226
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13227
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13228
            'conventional_rs' => null,
13229
            'frame_reference_epoch' => 1988.0,
13230
        ],
13231
        'urn:ogc:def:datum:EPSG::6649' => [
13232
            'name' => 'International Terrestrial Reference Frame 1990',
13233
            'type' => 'dynamic geodetic',
13234
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13235
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13236
            'conventional_rs' => null,
13237
            'frame_reference_epoch' => 1988.0,
13238
        ],
13239
        'urn:ogc:def:datum:EPSG::6650' => [
13240
            'name' => 'International Terrestrial Reference Frame 1991',
13241
            'type' => 'dynamic geodetic',
13242
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13243
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13244
            'conventional_rs' => null,
13245
            'frame_reference_epoch' => 1988.0,
13246
        ],
13247
        'urn:ogc:def:datum:EPSG::6651' => [
13248
            'name' => 'International Terrestrial Reference Frame 1992',
13249
            'type' => 'dynamic geodetic',
13250
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13251
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13252
            'conventional_rs' => null,
13253
            'frame_reference_epoch' => 1988.0,
13254
        ],
13255
        'urn:ogc:def:datum:EPSG::6652' => [
13256
            'name' => 'International Terrestrial Reference Frame 1993',
13257
            'type' => 'dynamic geodetic',
13258
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13259
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13260
            'conventional_rs' => null,
13261
            'frame_reference_epoch' => 1993.0,
13262
        ],
13263
        'urn:ogc:def:datum:EPSG::6653' => [
13264
            'name' => 'International Terrestrial Reference Frame 1994',
13265
            'type' => 'dynamic geodetic',
13266
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13267
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13268
            'conventional_rs' => null,
13269
            'frame_reference_epoch' => 1993.0,
13270
        ],
13271
        'urn:ogc:def:datum:EPSG::6654' => [
13272
            'name' => 'International Terrestrial Reference Frame 1996',
13273
            'type' => 'dynamic geodetic',
13274
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13275
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13276
            'conventional_rs' => null,
13277
            'frame_reference_epoch' => 1997.0,
13278
        ],
13279
        'urn:ogc:def:datum:EPSG::6655' => [
13280
            'name' => 'International Terrestrial Reference Frame 1997',
13281
            'type' => 'dynamic geodetic',
13282
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13283
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13284
            'conventional_rs' => null,
13285
            'frame_reference_epoch' => 1997.0,
13286
        ],
13287
        'urn:ogc:def:datum:EPSG::6656' => [
13288
            'name' => 'International Terrestrial Reference Frame 2000',
13289
            'type' => 'dynamic geodetic',
13290
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13291
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13292
            'conventional_rs' => null,
13293
            'frame_reference_epoch' => 1997.0,
13294
        ],
13295
        'urn:ogc:def:datum:EPSG::6657' => [
13296
            'name' => 'Reykjavik 1900',
13297
            'type' => 'geodetic',
13298
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7051',
13299
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13300
            'conventional_rs' => null,
13301
            'frame_reference_epoch' => null,
13302
        ],
13303
        'urn:ogc:def:datum:EPSG::6658' => [
13304
            'name' => 'Hjorsey 1955',
13305
            'type' => 'geodetic',
13306
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13307
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13308
            'conventional_rs' => null,
13309
            'frame_reference_epoch' => null,
13310
        ],
13311
        'urn:ogc:def:datum:EPSG::6659' => [
13312
            'name' => 'Islands Net 1993',
13313
            'type' => 'geodetic',
13314
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13315
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13316
            'conventional_rs' => null,
13317
            'frame_reference_epoch' => null,
13318
        ],
13319
        'urn:ogc:def:datum:EPSG::6660' => [
13320
            'name' => 'Helle 1954',
13321
            'type' => 'geodetic',
13322
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13323
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13324
            'conventional_rs' => null,
13325
            'frame_reference_epoch' => null,
13326
        ],
13327
        'urn:ogc:def:datum:EPSG::6661' => [
13328
            'name' => 'Latvia 1992',
13329
            'type' => 'geodetic',
13330
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13331
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13332
            'conventional_rs' => null,
13333
            'frame_reference_epoch' => null,
13334
        ],
13335
        'urn:ogc:def:datum:EPSG::6663' => [
13336
            'name' => 'Porto Santo 1995',
13337
            'type' => 'geodetic',
13338
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13339
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13340
            'conventional_rs' => null,
13341
            'frame_reference_epoch' => null,
13342
        ],
13343
        'urn:ogc:def:datum:EPSG::6664' => [
13344
            'name' => 'Azores Oriental Islands 1995',
13345
            'type' => 'geodetic',
13346
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13347
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13348
            'conventional_rs' => null,
13349
            'frame_reference_epoch' => null,
13350
        ],
13351
        'urn:ogc:def:datum:EPSG::6665' => [
13352
            'name' => 'Azores Central Islands 1995',
13353
            'type' => 'geodetic',
13354
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13355
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13356
            'conventional_rs' => null,
13357
            'frame_reference_epoch' => null,
13358
        ],
13359
        'urn:ogc:def:datum:EPSG::6666' => [
13360
            'name' => 'Lisbon 1890',
13361
            'type' => 'geodetic',
13362
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
13363
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13364
            'conventional_rs' => null,
13365
            'frame_reference_epoch' => null,
13366
        ],
13367
        'urn:ogc:def:datum:EPSG::6667' => [
13368
            'name' => 'Iraq-Kuwait Boundary Datum 1992',
13369
            'type' => 'geodetic',
13370
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
13371
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13372
            'conventional_rs' => null,
13373
            'frame_reference_epoch' => null,
13374
        ],
13375
        'urn:ogc:def:datum:EPSG::6668' => [
13376
            'name' => 'European Datum 1979',
13377
            'type' => 'geodetic',
13378
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13379
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13380
            'conventional_rs' => null,
13381
            'frame_reference_epoch' => null,
13382
        ],
13383
        'urn:ogc:def:datum:EPSG::6670' => [
13384
            'name' => 'Istituto Geografico Militaire 1995',
13385
            'type' => 'geodetic',
13386
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13387
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13388
            'conventional_rs' => null,
13389
            'frame_reference_epoch' => null,
13390
        ],
13391
        'urn:ogc:def:datum:EPSG::6671' => [
13392
            'name' => 'Voirol 1879',
13393
            'type' => 'geodetic',
13394
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
13395
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13396
            'conventional_rs' => null,
13397
            'frame_reference_epoch' => null,
13398
        ],
13399
        'urn:ogc:def:datum:EPSG::6672' => [
13400
            'name' => 'Chatham Islands Datum 1971',
13401
            'type' => 'geodetic',
13402
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13403
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13404
            'conventional_rs' => null,
13405
            'frame_reference_epoch' => null,
13406
        ],
13407
        'urn:ogc:def:datum:EPSG::6673' => [
13408
            'name' => 'Chatham Islands Datum 1979',
13409
            'type' => 'geodetic',
13410
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13411
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13412
            'conventional_rs' => null,
13413
            'frame_reference_epoch' => null,
13414
        ],
13415
        'urn:ogc:def:datum:EPSG::6674' => [
13416
            'name' => 'Sistema de Referencia Geocentrico para las AmericaS 2000',
13417
            'type' => 'geodetic',
13418
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13419
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13420
            'conventional_rs' => null,
13421
            'frame_reference_epoch' => null,
13422
        ],
13423
        'urn:ogc:def:datum:EPSG::6675' => [
13424
            'name' => 'Guam 1963',
13425
            'type' => 'geodetic',
13426
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13427
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13428
            'conventional_rs' => null,
13429
            'frame_reference_epoch' => null,
13430
        ],
13431
        'urn:ogc:def:datum:EPSG::6676' => [
13432
            'name' => 'Vientiane 1982',
13433
            'type' => 'geodetic',
13434
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
13435
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13436
            'conventional_rs' => null,
13437
            'frame_reference_epoch' => null,
13438
        ],
13439
        'urn:ogc:def:datum:EPSG::6677' => [
13440
            'name' => 'Lao 1993',
13441
            'type' => 'geodetic',
13442
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
13443
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13444
            'conventional_rs' => null,
13445
            'frame_reference_epoch' => null,
13446
        ],
13447
        'urn:ogc:def:datum:EPSG::6678' => [
13448
            'name' => 'Lao National Datum 1997',
13449
            'type' => 'geodetic',
13450
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
13451
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13452
            'conventional_rs' => null,
13453
            'frame_reference_epoch' => null,
13454
        ],
13455
        'urn:ogc:def:datum:EPSG::6679' => [
13456
            'name' => 'Jouik 1961',
13457
            'type' => 'geodetic',
13458
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13459
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13460
            'conventional_rs' => null,
13461
            'frame_reference_epoch' => null,
13462
        ],
13463
        'urn:ogc:def:datum:EPSG::6680' => [
13464
            'name' => 'Nouakchott 1965',
13465
            'type' => 'geodetic',
13466
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13467
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13468
            'conventional_rs' => null,
13469
            'frame_reference_epoch' => null,
13470
        ],
13471
        'urn:ogc:def:datum:EPSG::6682' => [
13472
            'name' => 'Gulshan 303',
13473
            'type' => 'geodetic',
13474
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
13475
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13476
            'conventional_rs' => null,
13477
            'frame_reference_epoch' => null,
13478
        ],
13479
        'urn:ogc:def:datum:EPSG::6683' => [
13480
            'name' => 'Philippine Reference System 1992',
13481
            'type' => 'geodetic',
13482
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13483
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13484
            'conventional_rs' => null,
13485
            'frame_reference_epoch' => null,
13486
        ],
13487
        'urn:ogc:def:datum:EPSG::6684' => [
13488
            'name' => 'Gan 1970',
13489
            'type' => 'geodetic',
13490
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13491
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13492
            'conventional_rs' => null,
13493
            'frame_reference_epoch' => null,
13494
        ],
13495
        'urn:ogc:def:datum:EPSG::6686' => [
13496
            'name' => 'Marco Geocentrico Nacional de Referencia',
13497
            'type' => 'geodetic',
13498
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13499
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13500
            'conventional_rs' => null,
13501
            'frame_reference_epoch' => null,
13502
        ],
13503
        'urn:ogc:def:datum:EPSG::6687' => [
13504
            'name' => 'Reseau Geodesique de la Polynesie Francaise',
13505
            'type' => 'geodetic',
13506
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13507
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13508
            'conventional_rs' => null,
13509
            'frame_reference_epoch' => null,
13510
        ],
13511
        'urn:ogc:def:datum:EPSG::6688' => [
13512
            'name' => 'Fatu Iva 72',
13513
            'type' => 'geodetic',
13514
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13515
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13516
            'conventional_rs' => null,
13517
            'frame_reference_epoch' => null,
13518
        ],
13519
        'urn:ogc:def:datum:EPSG::6689' => [
13520
            'name' => 'IGN63 Hiva Oa',
13521
            'type' => 'geodetic',
13522
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13523
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13524
            'conventional_rs' => null,
13525
            'frame_reference_epoch' => null,
13526
        ],
13527
        'urn:ogc:def:datum:EPSG::6690' => [
13528
            'name' => 'Tahiti 79',
13529
            'type' => 'geodetic',
13530
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13531
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13532
            'conventional_rs' => null,
13533
            'frame_reference_epoch' => null,
13534
        ],
13535
        'urn:ogc:def:datum:EPSG::6691' => [
13536
            'name' => 'Moorea 87',
13537
            'type' => 'geodetic',
13538
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13539
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13540
            'conventional_rs' => null,
13541
            'frame_reference_epoch' => null,
13542
        ],
13543
        'urn:ogc:def:datum:EPSG::6692' => [
13544
            'name' => 'Maupiti 83',
13545
            'type' => 'geodetic',
13546
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13547
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13548
            'conventional_rs' => null,
13549
            'frame_reference_epoch' => null,
13550
        ],
13551
        'urn:ogc:def:datum:EPSG::6693' => [
13552
            'name' => 'Nakhl-e Ghanem',
13553
            'type' => 'geodetic',
13554
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
13555
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13556
            'conventional_rs' => null,
13557
            'frame_reference_epoch' => null,
13558
        ],
13559
        'urn:ogc:def:datum:EPSG::6694' => [
13560
            'name' => 'Posiciones Geodesicas Argentinas 1994',
13561
            'type' => 'geodetic',
13562
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
13563
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13564
            'conventional_rs' => null,
13565
            'frame_reference_epoch' => null,
13566
        ],
13567
        'urn:ogc:def:datum:EPSG::6695' => [
13568
            'name' => 'Katanga 1955',
13569
            'type' => 'geodetic',
13570
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13571
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13572
            'conventional_rs' => null,
13573
            'frame_reference_epoch' => null,
13574
        ],
13575
        'urn:ogc:def:datum:EPSG::6696' => [
13576
            'name' => 'Kasai 1953',
13577
            'type' => 'geodetic',
13578
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13579
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13580
            'conventional_rs' => null,
13581
            'frame_reference_epoch' => null,
13582
        ],
13583
        'urn:ogc:def:datum:EPSG::6697' => [
13584
            'name' => 'IGC 1962 Arc of the 6th Parallel South',
13585
            'type' => 'geodetic',
13586
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13587
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13588
            'conventional_rs' => null,
13589
            'frame_reference_epoch' => null,
13590
        ],
13591
        'urn:ogc:def:datum:EPSG::6698' => [
13592
            'name' => 'IGN 1962 Kerguelen',
13593
            'type' => 'geodetic',
13594
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13595
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13596
            'conventional_rs' => null,
13597
            'frame_reference_epoch' => null,
13598
        ],
13599
        'urn:ogc:def:datum:EPSG::6699' => [
13600
            'name' => 'Le Pouce 1934',
13601
            'type' => 'geodetic',
13602
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13603
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13604
            'conventional_rs' => null,
13605
            'frame_reference_epoch' => null,
13606
        ],
13607
        'urn:ogc:def:datum:EPSG::6700' => [
13608
            'name' => 'IGN Astro 1960',
13609
            'type' => 'geodetic',
13610
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13611
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13612
            'conventional_rs' => null,
13613
            'frame_reference_epoch' => null,
13614
        ],
13615
        'urn:ogc:def:datum:EPSG::6701' => [
13616
            'name' => 'Institut Geographique du Congo Belge 1955',
13617
            'type' => 'geodetic',
13618
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13619
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13620
            'conventional_rs' => null,
13621
            'frame_reference_epoch' => null,
13622
        ],
13623
        'urn:ogc:def:datum:EPSG::6702' => [
13624
            'name' => 'Mauritania 1999',
13625
            'type' => 'geodetic',
13626
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13627
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13628
            'conventional_rs' => null,
13629
            'frame_reference_epoch' => null,
13630
        ],
13631
        'urn:ogc:def:datum:EPSG::6703' => [
13632
            'name' => 'Missao Hidrografico Angola y Sao Tome 1951',
13633
            'type' => 'geodetic',
13634
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13635
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13636
            'conventional_rs' => null,
13637
            'frame_reference_epoch' => null,
13638
        ],
13639
        'urn:ogc:def:datum:EPSG::6704' => [
13640
            'name' => 'Mhast (onshore)',
13641
            'type' => 'geodetic',
13642
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13643
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13644
            'conventional_rs' => null,
13645
            'frame_reference_epoch' => null,
13646
        ],
13647
        'urn:ogc:def:datum:EPSG::6705' => [
13648
            'name' => 'Mhast (offshore)',
13649
            'type' => 'geodetic',
13650
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13651
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13652
            'conventional_rs' => null,
13653
            'frame_reference_epoch' => null,
13654
        ],
13655
        'urn:ogc:def:datum:EPSG::6706' => [
13656
            'name' => 'Egypt Gulf of Suez S-650 TL',
13657
            'type' => 'geodetic',
13658
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020',
13659
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13660
            'conventional_rs' => null,
13661
            'frame_reference_epoch' => null,
13662
        ],
13663
        'urn:ogc:def:datum:EPSG::6707' => [
13664
            'name' => 'Tern Island 1961',
13665
            'type' => 'geodetic',
13666
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13667
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13668
            'conventional_rs' => null,
13669
            'frame_reference_epoch' => null,
13670
        ],
13671
        'urn:ogc:def:datum:EPSG::6708' => [
13672
            'name' => 'Cocos Islands 1965',
13673
            'type' => 'geodetic',
13674
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7003',
13675
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13676
            'conventional_rs' => null,
13677
            'frame_reference_epoch' => null,
13678
        ],
13679
        'urn:ogc:def:datum:EPSG::6709' => [
13680
            'name' => 'Iwo Jima 1945',
13681
            'type' => 'geodetic',
13682
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13683
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13684
            'conventional_rs' => null,
13685
            'frame_reference_epoch' => null,
13686
        ],
13687
        'urn:ogc:def:datum:EPSG::6710' => [
13688
            'name' => 'Astro DOS 71',
13689
            'type' => 'geodetic',
13690
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13691
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13692
            'conventional_rs' => null,
13693
            'frame_reference_epoch' => null,
13694
        ],
13695
        'urn:ogc:def:datum:EPSG::6711' => [
13696
            'name' => 'Marcus Island 1952',
13697
            'type' => 'geodetic',
13698
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13699
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13700
            'conventional_rs' => null,
13701
            'frame_reference_epoch' => null,
13702
        ],
13703
        'urn:ogc:def:datum:EPSG::6712' => [
13704
            'name' => 'Ascension Island 1958',
13705
            'type' => 'geodetic',
13706
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13707
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13708
            'conventional_rs' => null,
13709
            'frame_reference_epoch' => null,
13710
        ],
13711
        'urn:ogc:def:datum:EPSG::6713' => [
13712
            'name' => 'Ayabelle Lighthouse',
13713
            'type' => 'geodetic',
13714
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13715
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13716
            'conventional_rs' => null,
13717
            'frame_reference_epoch' => null,
13718
        ],
13719
        'urn:ogc:def:datum:EPSG::6714' => [
13720
            'name' => 'Bellevue',
13721
            'type' => 'geodetic',
13722
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13723
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13724
            'conventional_rs' => null,
13725
            'frame_reference_epoch' => null,
13726
        ],
13727
        'urn:ogc:def:datum:EPSG::6715' => [
13728
            'name' => 'Camp Area Astro',
13729
            'type' => 'geodetic',
13730
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13731
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13732
            'conventional_rs' => null,
13733
            'frame_reference_epoch' => null,
13734
        ],
13735
        'urn:ogc:def:datum:EPSG::6716' => [
13736
            'name' => 'Phoenix Islands 1966',
13737
            'type' => 'geodetic',
13738
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13739
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13740
            'conventional_rs' => null,
13741
            'frame_reference_epoch' => null,
13742
        ],
13743
        'urn:ogc:def:datum:EPSG::6717' => [
13744
            'name' => 'Cape Canaveral',
13745
            'type' => 'geodetic',
13746
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13747
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13748
            'conventional_rs' => null,
13749
            'frame_reference_epoch' => null,
13750
        ],
13751
        'urn:ogc:def:datum:EPSG::6718' => [
13752
            'name' => 'Solomon 1968',
13753
            'type' => 'geodetic',
13754
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13755
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13756
            'conventional_rs' => null,
13757
            'frame_reference_epoch' => null,
13758
        ],
13759
        'urn:ogc:def:datum:EPSG::6719' => [
13760
            'name' => 'Easter Island 1967',
13761
            'type' => 'geodetic',
13762
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13763
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13764
            'conventional_rs' => null,
13765
            'frame_reference_epoch' => null,
13766
        ],
13767
        'urn:ogc:def:datum:EPSG::6720' => [
13768
            'name' => 'Fiji Geodetic Datum 1986',
13769
            'type' => 'geodetic',
13770
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7043',
13771
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13772
            'conventional_rs' => null,
13773
            'frame_reference_epoch' => null,
13774
        ],
13775
        'urn:ogc:def:datum:EPSG::6721' => [
13776
            'name' => 'Fiji 1956',
13777
            'type' => 'geodetic',
13778
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13779
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13780
            'conventional_rs' => null,
13781
            'frame_reference_epoch' => null,
13782
        ],
13783
        'urn:ogc:def:datum:EPSG::6722' => [
13784
            'name' => 'South Georgia 1968',
13785
            'type' => 'geodetic',
13786
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13787
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13788
            'conventional_rs' => null,
13789
            'frame_reference_epoch' => null,
13790
        ],
13791
        'urn:ogc:def:datum:EPSG::6723' => [
13792
            'name' => 'Grand Cayman Geodetic Datum 1959',
13793
            'type' => 'geodetic',
13794
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13795
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13796
            'conventional_rs' => null,
13797
            'frame_reference_epoch' => null,
13798
        ],
13799
        'urn:ogc:def:datum:EPSG::6724' => [
13800
            'name' => 'Diego Garcia 1969',
13801
            'type' => 'geodetic',
13802
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13803
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13804
            'conventional_rs' => null,
13805
            'frame_reference_epoch' => null,
13806
        ],
13807
        'urn:ogc:def:datum:EPSG::6725' => [
13808
            'name' => 'Johnston Island 1961',
13809
            'type' => 'geodetic',
13810
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13811
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13812
            'conventional_rs' => null,
13813
            'frame_reference_epoch' => null,
13814
        ],
13815
        'urn:ogc:def:datum:EPSG::6726' => [
13816
            'name' => 'Sister Islands Geodetic Datum 1961',
13817
            'type' => 'geodetic',
13818
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13819
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13820
            'conventional_rs' => null,
13821
            'frame_reference_epoch' => null,
13822
        ],
13823
        'urn:ogc:def:datum:EPSG::6727' => [
13824
            'name' => 'Midway 1961',
13825
            'type' => 'geodetic',
13826
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13827
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13828
            'conventional_rs' => null,
13829
            'frame_reference_epoch' => null,
13830
        ],
13831
        'urn:ogc:def:datum:EPSG::6728' => [
13832
            'name' => 'Pico de las Nieves 1984',
13833
            'type' => 'geodetic',
13834
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13835
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13836
            'conventional_rs' => null,
13837
            'frame_reference_epoch' => null,
13838
        ],
13839
        'urn:ogc:def:datum:EPSG::6729' => [
13840
            'name' => 'Pitcairn 1967',
13841
            'type' => 'geodetic',
13842
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13843
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13844
            'conventional_rs' => null,
13845
            'frame_reference_epoch' => null,
13846
        ],
13847
        'urn:ogc:def:datum:EPSG::6730' => [
13848
            'name' => 'Santo 1965',
13849
            'type' => 'geodetic',
13850
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13851
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13852
            'conventional_rs' => null,
13853
            'frame_reference_epoch' => null,
13854
        ],
13855
        'urn:ogc:def:datum:EPSG::6732' => [
13856
            'name' => 'Marshall Islands 1960',
13857
            'type' => 'geodetic',
13858
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7053',
13859
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13860
            'conventional_rs' => null,
13861
            'frame_reference_epoch' => null,
13862
        ],
13863
        'urn:ogc:def:datum:EPSG::6733' => [
13864
            'name' => 'Wake Island 1952',
13865
            'type' => 'geodetic',
13866
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13867
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13868
            'conventional_rs' => null,
13869
            'frame_reference_epoch' => null,
13870
        ],
13871
        'urn:ogc:def:datum:EPSG::6734' => [
13872
            'name' => 'Tristan 1968',
13873
            'type' => 'geodetic',
13874
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13875
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13876
            'conventional_rs' => null,
13877
            'frame_reference_epoch' => null,
13878
        ],
13879
        'urn:ogc:def:datum:EPSG::6735' => [
13880
            'name' => 'Kusaie 1951',
13881
            'type' => 'geodetic',
13882
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13883
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13884
            'conventional_rs' => null,
13885
            'frame_reference_epoch' => null,
13886
        ],
13887
        'urn:ogc:def:datum:EPSG::6736' => [
13888
            'name' => 'Deception Island',
13889
            'type' => 'geodetic',
13890
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13891
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13892
            'conventional_rs' => null,
13893
            'frame_reference_epoch' => null,
13894
        ],
13895
        'urn:ogc:def:datum:EPSG::6737' => [
13896
            'name' => 'Geocentric datum of Korea',
13897
            'type' => 'geodetic',
13898
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13899
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13900
            'conventional_rs' => null,
13901
            'frame_reference_epoch' => null,
13902
        ],
13903
        'urn:ogc:def:datum:EPSG::6738' => [
13904
            'name' => 'Hong Kong 1963',
13905
            'type' => 'geodetic',
13906
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007',
13907
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13908
            'conventional_rs' => null,
13909
            'frame_reference_epoch' => null,
13910
        ],
13911
        'urn:ogc:def:datum:EPSG::6739' => [
13912
            'name' => 'Hong Kong 1963(67)',
13913
            'type' => 'geodetic',
13914
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13915
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13916
            'conventional_rs' => null,
13917
            'frame_reference_epoch' => null,
13918
        ],
13919
        'urn:ogc:def:datum:EPSG::6740' => [
13920
            'name' => 'Parametry Zemli 1990',
13921
            'type' => 'dynamic geodetic',
13922
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7054',
13923
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13924
            'conventional_rs' => null,
13925
            'frame_reference_epoch' => 1990.0,
13926
        ],
13927
        'urn:ogc:def:datum:EPSG::6741' => [
13928
            'name' => 'Faroe Datum 1954',
13929
            'type' => 'geodetic',
13930
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13931
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13932
            'conventional_rs' => null,
13933
            'frame_reference_epoch' => null,
13934
        ],
13935
        'urn:ogc:def:datum:EPSG::6742' => [
13936
            'name' => 'Geodetic Datum of Malaysia 2000',
13937
            'type' => 'geodetic',
13938
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13939
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13940
            'conventional_rs' => null,
13941
            'frame_reference_epoch' => null,
13942
        ],
13943
        'urn:ogc:def:datum:EPSG::6743' => [
13944
            'name' => 'Karbala 1979',
13945
            'type' => 'geodetic',
13946
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13947
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13948
            'conventional_rs' => null,
13949
            'frame_reference_epoch' => null,
13950
        ],
13951
        'urn:ogc:def:datum:EPSG::6744' => [
13952
            'name' => 'Nahrwan 1934',
13953
            'type' => 'geodetic',
13954
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13955
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13956
            'conventional_rs' => null,
13957
            'frame_reference_epoch' => null,
13958
        ],
13959
        'urn:ogc:def:datum:EPSG::6745' => [
13960
            'name' => 'Rauenberg Datum/83',
13961
            'type' => 'geodetic',
13962
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
13963
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13964
            'conventional_rs' => null,
13965
            'frame_reference_epoch' => null,
13966
        ],
13967
        'urn:ogc:def:datum:EPSG::6746' => [
13968
            'name' => 'Potsdam Datum/83',
13969
            'type' => 'geodetic',
13970
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
13971
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13972
            'conventional_rs' => null,
13973
            'frame_reference_epoch' => null,
13974
        ],
13975
        'urn:ogc:def:datum:EPSG::6747' => [
13976
            'name' => 'Greenland 1996',
13977
            'type' => 'geodetic',
13978
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13979
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13980
            'conventional_rs' => null,
13981
            'frame_reference_epoch' => null,
13982
        ],
13983
        'urn:ogc:def:datum:EPSG::6748' => [
13984
            'name' => 'Vanua Levu 1915',
13985
            'type' => 'geodetic',
13986
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7055',
13987
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13988
            'conventional_rs' => null,
13989
            'frame_reference_epoch' => null,
13990
        ],
13991
        'urn:ogc:def:datum:EPSG::6749' => [
13992
            'name' => 'Reseau Geodesique de Nouvelle Caledonie 91-93',
13993
            'type' => 'geodetic',
13994
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13995
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13996
            'conventional_rs' => null,
13997
            'frame_reference_epoch' => null,
13998
        ],
13999
        'urn:ogc:def:datum:EPSG::6750' => [
14000
            'name' => 'ST87 Ouvea',
14001
            'type' => 'geodetic',
14002
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14003
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14004
            'conventional_rs' => null,
14005
            'frame_reference_epoch' => null,
14006
        ],
14007
        'urn:ogc:def:datum:EPSG::6751' => [
14008
            'name' => 'Kertau (RSO)',
14009
            'type' => 'geodetic',
14010
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7056',
14011
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14012
            'conventional_rs' => null,
14013
            'frame_reference_epoch' => null,
14014
        ],
14015
        'urn:ogc:def:datum:EPSG::6752' => [
14016
            'name' => 'Viti Levu 1912',
14017
            'type' => 'geodetic',
14018
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7055',
14019
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14020
            'conventional_rs' => null,
14021
            'frame_reference_epoch' => null,
14022
        ],
14023
        'urn:ogc:def:datum:EPSG::6753' => [
14024
            'name' => 'fk89',
14025
            'type' => 'geodetic',
14026
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14027
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14028
            'conventional_rs' => null,
14029
            'frame_reference_epoch' => null,
14030
        ],
14031
        'urn:ogc:def:datum:EPSG::6754' => [
14032
            'name' => 'Libyan Geodetic Datum 2006',
14033
            'type' => 'geodetic',
14034
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14035
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14036
            'conventional_rs' => null,
14037
            'frame_reference_epoch' => null,
14038
        ],
14039
        'urn:ogc:def:datum:EPSG::6755' => [
14040
            'name' => 'Datum Geodesi Nasional 1995',
14041
            'type' => 'geodetic',
14042
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14043
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14044
            'conventional_rs' => null,
14045
            'frame_reference_epoch' => null,
14046
        ],
14047
        'urn:ogc:def:datum:EPSG::6756' => [
14048
            'name' => 'Vietnam 2000',
14049
            'type' => 'geodetic',
14050
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14051
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14052
            'conventional_rs' => null,
14053
            'frame_reference_epoch' => null,
14054
        ],
14055
        'urn:ogc:def:datum:EPSG::6757' => [
14056
            'name' => 'SVY21',
14057
            'type' => 'geodetic',
14058
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14059
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14060
            'conventional_rs' => null,
14061
            'frame_reference_epoch' => null,
14062
        ],
14063
        'urn:ogc:def:datum:EPSG::6758' => [
14064
            'name' => 'Jamaica 2001',
14065
            'type' => 'geodetic',
14066
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14067
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14068
            'conventional_rs' => null,
14069
            'frame_reference_epoch' => null,
14070
        ],
14071
        'urn:ogc:def:datum:EPSG::6759' => [
14072
            'name' => 'NAD83 (National Spatial Reference System 2007)',
14073
            'type' => 'geodetic',
14074
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14075
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14076
            'conventional_rs' => null,
14077
            'frame_reference_epoch' => null,
14078
        ],
14079
        'urn:ogc:def:datum:EPSG::6760' => [
14080
            'name' => 'World Geodetic System 1966',
14081
            'type' => 'dynamic geodetic',
14082
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7025',
14083
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14084
            'conventional_rs' => null,
14085
            'frame_reference_epoch' => 1966.0,
14086
        ],
14087
        'urn:ogc:def:datum:EPSG::6761' => [
14088
            'name' => 'Croatian Terrestrial Reference System',
14089
            'type' => 'geodetic',
14090
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14091
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14092
            'conventional_rs' => null,
14093
            'frame_reference_epoch' => null,
14094
        ],
14095
        'urn:ogc:def:datum:EPSG::6762' => [
14096
            'name' => 'Bermuda 2000',
14097
            'type' => 'geodetic',
14098
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14099
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14100
            'conventional_rs' => null,
14101
            'frame_reference_epoch' => null,
14102
        ],
14103
        'urn:ogc:def:datum:EPSG::6763' => [
14104
            'name' => 'Pitcairn 2006',
14105
            'type' => 'geodetic',
14106
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14107
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14108
            'conventional_rs' => null,
14109
            'frame_reference_epoch' => null,
14110
        ],
14111
        'urn:ogc:def:datum:EPSG::6764' => [
14112
            'name' => 'Ross Sea Region Geodetic Datum 2000',
14113
            'type' => 'geodetic',
14114
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14115
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14116
            'conventional_rs' => null,
14117
            'frame_reference_epoch' => null,
14118
        ],
14119
        'urn:ogc:def:datum:EPSG::6765' => [
14120
            'name' => 'Slovenia Geodetic Datum 1996',
14121
            'type' => 'geodetic',
14122
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14123
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14124
            'conventional_rs' => null,
14125
            'frame_reference_epoch' => null,
14126
        ],
14127
        'urn:ogc:def:datum:EPSG::6801' => [
14128
            'name' => 'CH1903 (Bern)',
14129
            'type' => 'geodetic',
14130
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14131
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8907',
14132
            'conventional_rs' => null,
14133
            'frame_reference_epoch' => null,
14134
        ],
14135
        'urn:ogc:def:datum:EPSG::6802' => [
14136
            'name' => 'Bogota 1975 (Bogota)',
14137
            'type' => 'geodetic',
14138
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14139
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8904',
14140
            'conventional_rs' => null,
14141
            'frame_reference_epoch' => null,
14142
        ],
14143
        'urn:ogc:def:datum:EPSG::6803' => [
14144
            'name' => 'Lisbon 1937 (Lisbon)',
14145
            'type' => 'geodetic',
14146
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14147
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8902',
14148
            'conventional_rs' => null,
14149
            'frame_reference_epoch' => null,
14150
        ],
14151
        'urn:ogc:def:datum:EPSG::6804' => [
14152
            'name' => 'Makassar (Jakarta)',
14153
            'type' => 'geodetic',
14154
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14155
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8908',
14156
            'conventional_rs' => null,
14157
            'frame_reference_epoch' => null,
14158
        ],
14159
        'urn:ogc:def:datum:EPSG::6805' => [
14160
            'name' => 'Militar-Geographische Institut (Ferro)',
14161
            'type' => 'geodetic',
14162
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14163
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909',
14164
            'conventional_rs' => null,
14165
            'frame_reference_epoch' => null,
14166
        ],
14167
        'urn:ogc:def:datum:EPSG::6806' => [
14168
            'name' => 'Monte Mario (Rome)',
14169
            'type' => 'geodetic',
14170
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14171
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8906',
14172
            'conventional_rs' => null,
14173
            'frame_reference_epoch' => null,
14174
        ],
14175
        'urn:ogc:def:datum:EPSG::6807' => [
14176
            'name' => 'Nouvelle Triangulation Francaise (Paris)',
14177
            'type' => 'geodetic',
14178
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
14179
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903',
14180
            'conventional_rs' => null,
14181
            'frame_reference_epoch' => null,
14182
        ],
14183
        'urn:ogc:def:datum:EPSG::6809' => [
14184
            'name' => 'Reseau National Belge 1950 (Brussels)',
14185
            'type' => 'geodetic',
14186
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14187
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8910',
14188
            'conventional_rs' => null,
14189
            'frame_reference_epoch' => null,
14190
        ],
14191
        'urn:ogc:def:datum:EPSG::6810' => [
14192
            'name' => 'Tananarive 1925 (Paris)',
14193
            'type' => 'geodetic',
14194
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14195
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903',
14196
            'conventional_rs' => null,
14197
            'frame_reference_epoch' => null,
14198
        ],
14199
        'urn:ogc:def:datum:EPSG::6811' => [
14200
            'name' => 'Voirol 1875 (Paris)',
14201
            'type' => 'geodetic',
14202
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
14203
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903',
14204
            'conventional_rs' => null,
14205
            'frame_reference_epoch' => null,
14206
        ],
14207
        'urn:ogc:def:datum:EPSG::6813' => [
14208
            'name' => 'Batavia (Jakarta)',
14209
            'type' => 'geodetic',
14210
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14211
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8908',
14212
            'conventional_rs' => null,
14213
            'frame_reference_epoch' => null,
14214
        ],
14215
        'urn:ogc:def:datum:EPSG::6814' => [
14216
            'name' => 'Stockholm 1938 (Stockholm)',
14217
            'type' => 'geodetic',
14218
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14219
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8911',
14220
            'conventional_rs' => null,
14221
            'frame_reference_epoch' => null,
14222
        ],
14223
        'urn:ogc:def:datum:EPSG::6815' => [
14224
            'name' => 'Greek (Athens)',
14225
            'type' => 'geodetic',
14226
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14227
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8912',
14228
            'conventional_rs' => null,
14229
            'frame_reference_epoch' => null,
14230
        ],
14231
        'urn:ogc:def:datum:EPSG::6816' => [
14232
            'name' => 'Carthage (Paris)',
14233
            'type' => 'geodetic',
14234
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
14235
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903',
14236
            'conventional_rs' => null,
14237
            'frame_reference_epoch' => null,
14238
        ],
14239
        'urn:ogc:def:datum:EPSG::6817' => [
14240
            'name' => 'NGO 1948 (Oslo)',
14241
            'type' => 'geodetic',
14242
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7005',
14243
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8913',
14244
            'conventional_rs' => null,
14245
            'frame_reference_epoch' => null,
14246
        ],
14247
        'urn:ogc:def:datum:EPSG::6818' => [
14248
            'name' => 'System of the Unified Trigonometrical Cadastral Network (Ferro)',
14249
            'type' => 'geodetic',
14250
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14251
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909',
14252
            'conventional_rs' => null,
14253
            'frame_reference_epoch' => null,
14254
        ],
14255
        'urn:ogc:def:datum:EPSG::6820' => [
14256
            'name' => 'Gunung Segara (Jakarta)',
14257
            'type' => 'geodetic',
14258
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14259
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8908',
14260
            'conventional_rs' => null,
14261
            'frame_reference_epoch' => null,
14262
        ],
14263
        'urn:ogc:def:datum:EPSG::6821' => [
14264
            'name' => 'Voirol 1879 (Paris)',
14265
            'type' => 'geodetic',
14266
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
14267
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903',
14268
            'conventional_rs' => null,
14269
            'frame_reference_epoch' => null,
14270
        ],
14271
        'urn:ogc:def:datum:EPSG::6896' => [
14272
            'name' => 'International Terrestrial Reference Frame 2005',
14273
            'type' => 'dynamic geodetic',
14274
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14275
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14276
            'conventional_rs' => null,
14277
            'frame_reference_epoch' => 2000.0,
14278
        ],
14279
        'urn:ogc:def:datum:EPSG::6901' => [
14280
            'name' => 'Ancienne Triangulation Francaise (Paris)',
14281
            'type' => 'geodetic',
14282
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7027',
14283
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8914',
14284
            'conventional_rs' => null,
14285
            'frame_reference_epoch' => null,
14286
        ],
14287
        'urn:ogc:def:datum:EPSG::6903' => [
14288
            'name' => 'Madrid 1870 (Madrid)',
14289
            'type' => 'geodetic',
14290
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7028',
14291
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8905',
14292
            'conventional_rs' => null,
14293
            'frame_reference_epoch' => null,
14294
        ],
14295
        'urn:ogc:def:datum:EPSG::6904' => [
14296
            'name' => 'Lisbon 1890 (Lisbon)',
14297
            'type' => 'geodetic',
14298
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14299
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8902',
14300
            'conventional_rs' => null,
14301
            'frame_reference_epoch' => null,
14302
        ],
14303
    ];
14304
14305
    public const DATUM_TYPE_GEODETIC = 'geodetic';
14306
14307
    public const DATUM_TYPE_VERTICAL = 'vertical';
14308
14309
    public const DATUM_TYPE_DYNAMIC_GEODETIC = 'dynamic_geodetic';
14310
14311
    public const DATUM_TYPE_DYNAMIC_VERTICAL = 'dynamic_vertical';
14312
14313
    public const DATUM_TYPE_ENGINEERING = 'engineering';
14314
14315
    public const DATUM_TYPE_ENSEMBLE = 'ensemble';
14316
14317
    private static array $cachedObjects = [];
14318
14319
    protected string $datumType;
14320
14321
    protected ?Ellipsoid $ellipsoid;
14322
14323
    protected ?PrimeMeridian $primeMeridian;
14324
14325
    protected ?DateTimeInterface $frameReferenceEpoch;
14326
14327
    protected string $name;
14328
14329
    protected string $srid;
14330
14331 3791
    public function __construct(
14332
        string $datumType,
14333
        ?Ellipsoid $ellipsoid,
14334
        ?PrimeMeridian $primeMeridian,
14335
        ?DateTimeInterface $frameReferenceEpoch,
14336
        string $name = '',
14337
        string $srid = ''
14338
    ) {
14339 3791
        $this->datumType = $datumType;
14340 3791
        $this->ellipsoid = $ellipsoid;
14341 3791
        $this->primeMeridian = $primeMeridian;
14342 3791
        $this->frameReferenceEpoch = $frameReferenceEpoch;
14343 3791
        $this->name = $name;
14344 3791
        $this->srid = $srid;
14345
    }
14346
14347 18
    public function getDatumType(): string
14348
    {
14349 18
        return $this->datumType;
14350
    }
14351
14352 9723
    public function getEllipsoid(): Ellipsoid
14353
    {
14354 9723
        return $this->ellipsoid;
0 ignored issues
show
Bug Best Practice introduced by
The expression return $this->ellipsoid could return the type null which is incompatible with the type-hinted return PHPCoord\Datum\Ellipsoid. Consider adding an additional type-check to rule them out.
Loading history...
14355
    }
14356
14357 6910
    public function getPrimeMeridian(): PrimeMeridian
14358
    {
14359 6910
        return $this->primeMeridian;
0 ignored issues
show
Bug Best Practice introduced by
The expression return $this->primeMeridian could return the type null which is incompatible with the type-hinted return PHPCoord\Datum\PrimeMeridian. Consider adding an additional type-check to rule them out.
Loading history...
14360
    }
14361
14362 9
    public function getFrameReferenceEpoch(): ?DateTimeInterface
14363
    {
14364 9
        return $this->frameReferenceEpoch;
14365
    }
14366
14367
    public function getName(): string
14368
    {
14369
        return $this->name;
14370
    }
14371
14372 8271
    public function getSRID(): string
14373
    {
14374 8271
        return $this->srid;
14375
    }
14376
14377 8668
    public static function fromSRID(string $srid): self
14378
    {
14379 8668
        if (!isset(static::$sridData[$srid])) {
14380 9
            throw new UnknownDatumException($srid);
14381
        }
14382
14383 8659
        if (!isset(self::$cachedObjects[$srid])) {
14384 3773
            $data = static::$sridData[$srid];
14385 3773
            $frameReferenceEpoch = null;
14386 3773
            if ($data['frame_reference_epoch'] instanceof DateTimeInterface) {
14387
                $frameReferenceEpoch = $data['frame_reference_epoch'];
14388 3773
            } elseif ($data['frame_reference_epoch']) {
14389 56
                $frameReferenceEpoch = (new Year($data['frame_reference_epoch']))->asDateTime();
14390
            }
14391
14392 3773
            if ($data['type'] === self::DATUM_TYPE_ENSEMBLE) { // if ensemble, use latest realisation for data
14393 18
                $latest = static::$sridData[end(static::$sridData[$srid]['ensemble'])];
14394 18
                self::$cachedObjects[$srid] = new static(
14395 18
                    $data['type'],
14396 18
                    $latest['ellipsoid'] ? Ellipsoid::fromSRID($latest['ellipsoid']) : null,
14397 18
                    $latest['prime_meridian'] ? PrimeMeridian::fromSRID($latest['prime_meridian']) : null,
14398
                    $frameReferenceEpoch,
14399 18
                    $data['name'],
14400
                    $srid,
14401
                );
14402 3772
            } elseif ($data['ellipsoid']) {
14403 3444
                self::$cachedObjects[$srid] = new static(
14404 3444
                    $data['type'],
14405 3444
                    Ellipsoid::fromSRID($data['ellipsoid']),
14406 3444
                    PrimeMeridian::fromSRID($data['prime_meridian']),
14407
                    $frameReferenceEpoch,
14408 3444
                    $data['name'],
14409
                    $srid,
14410
                );
14411
            } else {
14412 352
                self::$cachedObjects[$srid] = new static(
14413 352
                    $data['type'],
14414
                    null,
14415
                    null,
14416
                    $frameReferenceEpoch,
14417 352
                    $data['name'],
14418
                    $srid,
14419
                );
14420
            }
14421
        }
14422
14423 8659
        return self::$cachedObjects[$srid];
14424
    }
14425
14426 3429
    public static function getSupportedSRIDs(): array
14427
    {
14428 3429
        $supported = [];
14429 3429
        foreach (static::$sridData as $srid => $data) {
14430 3429
            $supported[$srid] = $data['name'];
14431
        }
14432
14433 3429
        return $supported;
14434
    }
14435
14436 306
    public static function registerCustomDatum(string $srid, string $name, string $type, ?string $ellipsoidSrid, ?string $primeMeridianSrid, ?DateTimeInterface $frameReferenceEpoch): void
14437
    {
14438 306
        self::$sridData[$srid] = ['name' => $name, 'type' => $type, 'ellipsoid' => $ellipsoidSrid, 'prime_meridian' => $primeMeridianSrid, 'frame_reference_epoch' => $frameReferenceEpoch];
14439
    }
14440
}
14441