Passed
Push — master ( 35f9c8...8bd5c3 )
by Doug
69:38 queued 11:29
created

Datum   B

Complexity

Total Complexity 19

Size/Duplication

Total Lines 14794
Duplicated Lines 0 %

Test Coverage

Coverage 95.31%

Importance

Changes 6
Bugs 0 Features 0
Metric Value
eloc 6741
dl 0
loc 14794
ccs 61
cts 64
cp 0.9531
rs 8.8
c 6
b 0
f 0
wmc 19

10 Methods

Rating   Name   Duplication   Size   Complexity  
A getEllipsoid() 0 3 1
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
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 into
152
     * 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
     * CNH22 Intermediate Reference Frame
651
     * Type: Geodetic
652
     * Extent: United Kingdom (UK) - on or related to the rail route from Crewe via Chester to Holyhead.
653
     * Defined through the application of the CNH22 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS.
654
     * Created in 2022 to support intermediate CRS CNH22-IRF in the emulation of the CNH22 Snake map projection.
655
     */
656
    public const EPSG_CNH22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1336';
657
658
    /**
659
     * CR-SIRGAS
660
     * Type: Geodetic
661
     * Extent: Costa Rica - onshore and offshore.
662
     * ITRF2008 (IGb08) at epoch 2014.59. Network of 42 GNSS stations of the passive and active reference system.
663
     * Replaces CR05 from April 2018.
664
     */
665
    public const EPSG_CR_SIRGAS = 'urn:ogc:def:datum:EPSG::1225';
666
667
    /**
668
     * CWS13 Intermediate Reference Frame
669
     * Type: Geodetic
670
     * Extent: United Kingdom (UK) - on or related to the rail route from from Chester via Wrexham to Shrewsbury.
671
     * Defined through the application of the CWS13 NTv2 transformation (code 10197) to ETRS89 as realized through
672
     * OSNet v2009 CORS.
673
     * Created in 2022 to support intermediate CRS CWS13-IRF in the emulation of the CWS13 Snake map projection.
674
     */
675
    public const EPSG_CWS13_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1338';
676
677
    /**
678
     * Cadastre 1997
679
     * Type: Geodetic
680
     * Extent: Mayotte - onshore.
681
     * Coordinates of 1 station of Combani 1950 adjustment held fixed.
682
     * Derived by adjustment of GPS-observed network which was constrained to Combani 1950 coordinates of one station.
683
     */
684
    public const EPSG_CADASTRE_1997 = 'urn:ogc:def:datum:EPSG::1037';
685
686
    /**
687
     * Cagliari 1956
688
     * Type: Vertical
689
     * Extent: Italy - Sardinia onshore.
690
     * Mean Sea Level at Cagliari 1955-1957.
691
     * Orthometric heights.
692
     */
693
    public const EPSG_CAGLIARI_1956 = 'urn:ogc:def:datum:EPSG::1307';
694
695
    /**
696
     * Cais da Figueirinha - Angra do Heroismo
697
     * Type: Vertical
698
     * Extent: Portugal - central Azores - Terceira island onshore.
699
     * Mean Sea Level during 1951 at Cais da Figueirinha - Angra do Heroísmo.
700
     * Orthometric heights.
701
     */
702
    public const EPSG_CAIS_DA_FIGUEIRINHA_ANGRA_DO_HEROISMO = 'urn:ogc:def:datum:EPSG::1107';
703
704
    /**
705
     * Cais da Madalena
706
     * Type: Vertical
707
     * Extent: Portugal - central Azores - Pico island onshore.
708
     * Mean Sea Level during 1937 at Cais da Madalena.
709
     * Orthometric heights.
710
     */
711
    public const EPSG_CAIS_DA_MADALENA = 'urn:ogc:def:datum:EPSG::1105';
712
713
    /**
714
     * Cais da Pontinha - Funchal
715
     * Type: Vertical
716
     * Extent: Portugal - Madeira and Desertas islands - onshore.
717
     * Mean Sea Level during 1913 at Cais da Pontinha, Funchal.
718
     * Orthometric heights.
719
     */
720
    public const EPSG_CAIS_DA_PONTINHA_FUNCHAL = 'urn:ogc:def:datum:EPSG::1101';
721
722
    /**
723
     * Cais da Vila - Porto Santo
724
     * Type: Vertical
725
     * Extent: Portugal - Porto Santo island (Madeira archipelago) onshore.
726
     * Mean Sea Level during 1936 at Cais da Vila, Porto Santo.
727
     * Orthometric heights.
728
     */
729
    public const EPSG_CAIS_DA_VILA_PORTO_SANTO = 'urn:ogc:def:datum:EPSG::1102';
730
731
    /**
732
     * Cais da Vila do Porto
733
     * Type: Vertical
734
     * Extent: Portugal - eastern Azores onshore - Santa Maria, Formigas.
735
     * Mean Sea Level during 1965 at Cais da Vila, Porto.
736
     * Orthometric heights.
737
     */
738
    public const EPSG_CAIS_DA_VILA_DO_PORTO = 'urn:ogc:def:datum:EPSG::1109';
739
740
    /**
741
     * Cais das Velas
742
     * Type: Vertical
743
     * Extent: Portugal - central Azores - Sao Jorge island onshore.
744
     * Mean Sea Level during 1937 at Cais das Velas.
745
     * Orthometric heights.
746
     */
747
    public const EPSG_CAIS_DAS_VELAS = 'urn:ogc:def:datum:EPSG::1103';
748
749
    /**
750
     * Camacupa 1948
751
     * Type: Geodetic
752
     * Extent: Angola - Angola proper - onshore and offshore.
753
     * Fundamental point: Campo de Aviaçao. Latitude: 12°01'09.070"S, Longitude = 17°27'19.800"E (of Greenwich).
754
     * Provisional adjustment, replaced in 2015 for onshore use by Camacupa 2015.
755
     */
756
    public const EPSG_CAMACUPA_1948 = 'urn:ogc:def:datum:EPSG::6220';
757
758
    /**
759
     * Camacupa 2015
760
     * Type: Geodetic
761
     * Extent: Angola - onshore and offshore.
762
     * Fundamental point: Campo de Aviaçao. Latitude: 12°01'08.702"S, Longitude = 17°27'19.515"E (of Greenwich).
763
     * Second adjustment. Not used for offshore oil and gas exploration and production.
764
     */
765
    public const EPSG_CAMACUPA_2015 = 'urn:ogc:def:datum:EPSG::1217';
766
767
    /**
768
     * Camp Area Astro
769
     * Type: Geodetic
770
     * Extent: Antarctica - McMurdo Sound, Camp McMurdo area.
771
     */
772
    public const EPSG_CAMP_AREA_ASTRO = 'urn:ogc:def:datum:EPSG::6715';
773
774
    /**
775
     * Campo Inchauspe
776
     * Type: Geodetic
777
     * Extent: Argentina - mainland onshore and Atlantic offshore Tierra del Fuego.
778
     * Fundamental point: Campo Inchauspe. Latitude: 35°58'16.56"S, longitude: 62°10'12.03"W (of Greenwich).
779
     */
780
    public const EPSG_CAMPO_INCHAUSPE = 'urn:ogc:def:datum:EPSG::6221';
781
782
    /**
783
     * Canadian Geodetic Vertical Datum of 1928
784
     * Type: Vertical
785
     * Extent: Canada - onshore - Alberta; British Columbia; Manitoba south of 57°N; New Brunswick; Northwest
786
     * Territories south west of a line between 60°N, 110°W and the coast at 132°W; Nova Scotia; Ontario south of
787
     * 52°N; Prince Edward Island; Quebec - mainland west of 66°W and south of 55°N; Saskatchewan south of 55°N;
788
     * Yukon.
789
     * Based on the mean sea level determined from several tidal gauges located in strategic areas of the country.
790
     * From November 2013 replaced by CGVD2013 (datum code 1127).
791
     */
792
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_1928 = 'urn:ogc:def:datum:EPSG::5114';
793
794
    /**
795
     * Canadian Geodetic Vertical Datum of 2013 (CGG2013)
796
     * Type: Vertical
797
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
798
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
799
     * Yukon.
800
     * Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean
801
     * sea level for North America, realized through the Canadian gravimetric geoid (CGG) 2013 at epoch 2010.0.
802
     * Replaces CGVD28 from November 2013. Replaced by CGVD2013(CGG2013a) epoch 2010 from December 2015, supplemented
803
     * from February 2021 by snapshots of CGVD2013(CGG2013a) at epochs 1997.0 and 2002.0 (aligned with NAD83(CSRS)
804
     * realization epochs).
805
     */
806
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013 = 'urn:ogc:def:datum:EPSG::1127';
807
808
    /**
809
     * Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 1997
810
     * Type: Vertical
811
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
812
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
813
     * Yukon.
814
     * Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean
815
     * sea level for North America, realized through the Canadian gravimetric geoid 2013a applied at epoch 1997.0.
816
     * CGVD2013(CGG2013a) is a static datum; however, heights referenced to it change with time, primarily due to
817
     * glacial isostasy. This datum supports CGVD2013(CGG2013a) heights at epoch 1997.0. Other snapshots are at epochs
818
     * 2002.0 and 2010.0.
819
     */
820
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A_EPOCH_1997 = 'urn:ogc:def:datum:EPSG::1326';
821
822
    /**
823
     * Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 2002
824
     * Type: Vertical
825
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
826
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
827
     * Yukon.
828
     * Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean
829
     * sea level for North America, realized through the Canadian gravimetric geoid 2013a applied at epoch 2002.
830
     * CGVD2013(CGG2013a) is a static datum; however, heights referenced to it change with time, primarily due to
831
     * glacial isostasy. This datum supports CGVD2013(CGG2013a) heights at epoch 2002.0. Other snapshots are at epochs
832
     * 1997.0 and 2010.0.
833
     */
834
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A_EPOCH_2002 = 'urn:ogc:def:datum:EPSG::1325';
835
836
    /**
837
     * Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 2010
838
     * Type: Vertical
839
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
840
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
841
     * Yukon.
842
     * Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean
843
     * sea level for North America, realized through CGG2013a at epoch 2010.0. Geoid velocity defined as zero with
844
     * respect to NAD83(CSRS).
845
     * Replaces CGVD2013(CGG2013). CGVD2013(CGG2013a) is a static datum. However heights referenced to it change with
846
     * time, primarily due to glacial isostasy. In practice static snapshots are used at epochs 2010.0 (this datum),
847
     * 2002.0 and 1997.0.
848
     */
849
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A_EPOCH_2010 = 'urn:ogc:def:datum:EPSG::1256';
850
851
    /**
852
     * Cape
853
     * Type: Geodetic
854
     * Extent: Botswana; Eswatini (Swaziland); Lesotho; South Africa - mainland.
855
     * Fundamental point: Buffelsfontein. Latitude: 33°59'32.000"S, longitude: 25°30'44.622"E (of Greenwich).
856
     */
857
    public const EPSG_CAPE = 'urn:ogc:def:datum:EPSG::6222';
858
859
    /**
860
     * Cape Canaveral
861
     * Type: Geodetic
862
     * Extent: North America - onshore - Bahamas and USA - Florida (east).
863
     * Fundamental point: Central 1950.  Latitude: 28°29'32.36555"N, longitude 80°34'38.77362"W (of Greenwich).
864
     */
865
    public const EPSG_CAPE_CANAVERAL = 'urn:ogc:def:datum:EPSG::6717';
866
867
    /**
868
     * Carthage
869
     * Type: Geodetic
870
     * Extent: Tunisia - onshore and offshore.
871
     * Fundamental point: Carthage. Latitude: 40.9464506g = 36°51'06.50"N, longitude: 8.8724368g E of Paris =
872
     * 10°19'20.72"E (of Greenwich).
873
     * Fundamental point astronomic coordinates determined in 1878.
874
     */
875
    public const EPSG_CARTHAGE = 'urn:ogc:def:datum:EPSG::6223';
876
877
    /**
878
     * Carthage (Paris)
879
     * Type: Geodetic
880
     * Extent: Tunisia - onshore.
881
     * Fundamental point: Carthage. Latitude: 40.9464506g N, longitude: 8.8724368g E (of Paris).
882
     * Fundamental point astronomic coordinates determined in 1878.
883
     */
884
    public const EPSG_CARTHAGE_PARIS = 'urn:ogc:def:datum:EPSG::6816';
885
886
    /**
887
     * Cascais
888
     * Type: Vertical
889
     * Extent: Portugal - mainland - onshore.
890
     * Mean Sea Level at Cascais 1938.
891
     * Orthometric heights.
892
     */
893
    public const EPSG_CASCAIS = 'urn:ogc:def:datum:EPSG::5178';
894
895
    /**
896
     * Caspian Sea
897
     * Type: Vertical
898
     * Extent: Azerbaijan - offshore; Kazakhstan - offshore; Russian Federation - Caspian Sea; Turkmenistan - offshore.
899
     * Defined as -28.0m Baltic datum.
900
     */
901
    public const EPSG_CASPIAN_SEA = 'urn:ogc:def:datum:EPSG::5106';
902
903
    /**
904
     * Catania 1965
905
     * Type: Vertical
906
     * Extent: Italy - Sicily onshore.
907
     * Mean Sea Level at Catania in 1965.
908
     * Orthometric heights.
909
     */
910
    public const EPSG_CATANIA_1965 = 'urn:ogc:def:datum:EPSG::1306';
911
912
    /**
913
     * Cayman Brac Vertical Datum 1961
914
     * Type: Vertical
915
     * Extent: Cayman Islands - Cayman Brac.
916
     */
917
    public const EPSG_CAYMAN_BRAC_VERTICAL_DATUM_1961 = 'urn:ogc:def:datum:EPSG::1099';
918
919
    /**
920
     * Cayman Islands Geodetic Datum 2011
921
     * Type: Geodetic
922
     * Extent: Cayman Islands - onshore and offshore. Includes Grand Cayman, Little Cayman and Cayman Brac.
923
     * ITRF2005 at epoch 2011.0
924
     * Replaces GCGD59 (datum code 6723) and SIGD61 (datum code 6726).
925
     */
926
    public const EPSG_CAYMAN_ISLANDS_GEODETIC_DATUM_2011 = 'urn:ogc:def:datum:EPSG::1100';
927
928
    /**
929
     * Centre Spatial Guyanais 1967
930
     * Type: Geodetic
931
     * Extent: French Guiana - coastal area.
932
     * Fundamental point: Kourou-Diane. Latitude: 5°15'53.699"N, longitude: 52°48'09.149"W (of Greenwich).
933
     * Replaced by RGFG95 (code 6624).
934
     */
935
    public const EPSG_CENTRE_SPATIAL_GUYANAIS_1967 = 'urn:ogc:def:datum:EPSG::6623';
936
937
    /**
938
     * Ceuta 2
939
     * Type: Vertical
940
     * Extent: Spain - Ceuta onshore.
941
     * Mean Sea Level at Ceuta harbour between March 1944 and December 2006.
942
     * Orthometric heights. Replaces an earlier vertical datum in Ceuta harbour measured between 1908 and 1927.
943
     */
944
    public const EPSG_CEUTA_2 = 'urn:ogc:def:datum:EPSG::1285';
945
946
    /**
947
     * Chart Datum UK & Ireland VORF08
948
     * Type: Vertical
949
     * Extent: Ireland and United Kingdom (UK) (including Isle of Man and Channel Islands) - inshore, nearshore and
950
     * offshore.
951
     * CD UK & Ireland VORF08 is defined by the Vertical Offshore Reference Frame v2.11 2008.
952
     * By international agreement, Chart Datum is defined as a level so low that the tide will not frequently fall
953
     * below it. In the United Kingdom and Ireland, this level is normally the level of approximate Lowest Astronomical
954
     * Tide.
955
     */
956
    public const EPSG_CHART_DATUM_UK_AND_IRELAND_VORF08 = 'urn:ogc:def:datum:EPSG::1331';
957
958
    /**
959
     * Chatham Islands Datum 1971
960
     * Type: Geodetic
961
     * Extent: New Zealand - Chatham Islands group - onshore.
962
     * Replaced by Chatham Islands Datum 1979 (code 6673).
963
     */
964
    public const EPSG_CHATHAM_ISLANDS_DATUM_1971 = 'urn:ogc:def:datum:EPSG::6672';
965
966
    /**
967
     * Chatham Islands Datum 1979
968
     * Type: Geodetic
969
     * Extent: New Zealand - Chatham Islands group - onshore.
970
     * Fundamental point: station Astro. Latitude: 43°57'23.60"S, longitude: 176°34'28.65"W (of Greenwich).
971
     * Replaces Chatham Islands Datum 1971 (code 6672). Replaced by New Zealand Geodetic Datum 2000 (code 6167) from
972
     * March 2000.
973
     */
974
    public const EPSG_CHATHAM_ISLANDS_DATUM_1979 = 'urn:ogc:def:datum:EPSG::6673';
975
976
    /**
977
     * China 2000
978
     * Type: Geodetic
979
     * Extent: China - onshore and offshore.
980
     * ITRF97 at epoch 2000.0
981
     * Combined adjustment of astro-geodetic observations as used for Xian 1980 and GPS control network observed
982
     * 2000-2003. Adopted July 2008.
983
     */
984
    public const EPSG_CHINA_2000 = 'urn:ogc:def:datum:EPSG::1043';
985
986
    /**
987
     * Chos Malal 1914
988
     * Type: Geodetic
989
     * Extent: Argentina - Mendoza province, Neuquen province, western La Pampa province and western Rio Negro
990
     * province.
991
     * Chos Malal police station.
992
     * Also known as Quini-Huao. Replaced by Campo Inchauspe (code 6221) for topographic mapping, use for oil
993
     * exploration and production continues.
994
     */
995
    public const EPSG_CHOS_MALAL_1914 = 'urn:ogc:def:datum:EPSG::6160';
996
997
    /**
998
     * Chua
999
     * Type: Geodetic
1000
     * Extent: Brazil - south of 18°S and west of 54°W, plus Distrito Federal. Paraguay - north.
1001
     * Fundamental point: Chua. Latitude: 19°45'41.160"S, longitude: 48°06'07.560"W (of Greenwich).
1002
     * The Chua origin and associated network is in Brazil with a connecting traverse through northern Paraguay. It was
1003
     * used in Brazil only as input into the Corrego Allegre adjustment and for government work in Distrito Federal.
1004
     */
1005
    public const EPSG_CHUA = 'urn:ogc:def:datum:EPSG::6224';
1006
1007
    /**
1008
     * Cocos Islands 1965
1009
     * Type: Geodetic
1010
     * Extent: Cocos (Keeling) Islands - onshore.
1011
     * Fundamental point: Anna 1.
1012
     */
1013
    public const EPSG_COCOS_ISLANDS_1965 = 'urn:ogc:def:datum:EPSG::6708';
1014
1015
    /**
1016
     * Combani 1950
1017
     * Type: Geodetic
1018
     * Extent: Mayotte - onshore.
1019
     * Combani South Base.
1020
     * Replaced by RGM04 and Cadastre 1997 (datum codes 1036-37).
1021
     */
1022
    public const EPSG_COMBANI_1950 = 'urn:ogc:def:datum:EPSG::6632';
1023
1024
    /**
1025
     * Conakry 1905
1026
     * Type: Geodetic
1027
     * Extent: Guinea - onshore.
1028
     * Fundamental point: Conakry. Latitude: 10.573766g N, longitude: 17.833682g W (of Paris).
1029
     */
1030
    public const EPSG_CONAKRY_1905 = 'urn:ogc:def:datum:EPSG::6315';
1031
1032
    /**
1033
     * Congo 1960 Pointe Noire
1034
     * Type: Geodetic
1035
     * Extent: Congo - onshore and offshore.
1036
     * Fundamental point: Point Noire Astro. Latitude: 4°47'00.10"S, longitude: 11°51'01.55"E (of Greenwich).
1037
     */
1038
    public const EPSG_CONGO_1960_POINTE_NOIRE = 'urn:ogc:def:datum:EPSG::6282';
1039
1040
    /**
1041
     * Constanta
1042
     * Type: Vertical
1043
     * Extent: Romania - onshore.
1044
     * Mean Sea Level at Constanta.
1045
     * Normal-orthometric heights.
1046
     */
1047
    public const EPSG_CONSTANTA = 'urn:ogc:def:datum:EPSG::5179';
1048
1049
    /**
1050
     * Corrego Alegre 1961
1051
     * Type: Geodetic
1052
     * Extent: Brazil - onshore - between 18°S and 27°30'S, also east of 54°W between 15°S and 18°S.
1053
     * Fundamental point: Corrego Alegre. Latitude: 19°50'14.91"S, longitude: 48°57'41.98"W (of Greenwich).
1054
     * Replaced by Corrego Alegre 1970-72 (datum code 6225). NIMA gives coordinates of origin as latitude:
1055
     * 19°50'15.14"S, longitude: 48°57'42.75"W.
1056
     */
1057
    public const EPSG_CORREGO_ALEGRE_1961 = 'urn:ogc:def:datum:EPSG::1074';
1058
1059
    /**
1060
     * Corrego Alegre 1970-72
1061
     * Type: Geodetic
1062
     * Extent: Brazil - onshore - west of 54°W and south of 18°S; also south of 15°S between 54°W and 42°W; also
1063
     * east of 42°W.
1064
     * Fundamental point: Corrego Alegre. Latitude: 19°50'14.91"S, longitude: 48°57'41.98"W (of Greenwich).
1065
     * Replaces 1961 adjustment (datum code 1074). Superseded by SAD69. NIMA gives coordinates of origin as latitude:
1066
     * 19°50'15.14"S, longitude: 48°57'42.75"W; these may refer to 1961 adjustment.
1067
     */
1068
    public const EPSG_CORREGO_ALEGRE_1970_72 = 'urn:ogc:def:datum:EPSG::6225';
1069
1070
    /**
1071
     * Costa Rica 2005
1072
     * Type: Geodetic
1073
     * Extent: Costa Rica - onshore and offshore.
1074
     * ITRF2000 at epoch 2005.83.  Network of 34 GPS stations throughout the country, five of which were connected to
1075
     * four Caribbean area ITRF stations.
1076
     * Replaces Ocotepeque (datum code 1070) in Costa Rica from March 2007.
1077
     */
1078
    public const EPSG_COSTA_RICA_2005 = 'urn:ogc:def:datum:EPSG::1065';
1079
1080
    /**
1081
     * Croatian Terrestrial Reference System
1082
     * Type: Geodetic
1083
     * Extent: Croatia - onshore and offshore.
1084
     * Densification of ETRS89 in Croatia at epoch 1995.55.
1085
     * Based on 78 control points with coordinates determined in ETRS89.
1086
     */
1087
    public const EPSG_CROATIAN_TERRESTRIAL_REFERENCE_SYSTEM = 'urn:ogc:def:datum:EPSG::6761';
1088
1089
    /**
1090
     * Croatian Vertical Reference Datum 1971
1091
     * Type: Vertical
1092
     * Extent: Croatia - onshore.
1093
     * Mean sea level at five tide gauges in Dubrovnik, Split, Bakar, Rovinj and Kopar at epoch 1971.5
1094
     * Replaces Trieste (datum code 1050).
1095
     */
1096
    public const EPSG_CROATIAN_VERTICAL_REFERENCE_DATUM_1971 = 'urn:ogc:def:datum:EPSG::5207';
1097
1098
    /**
1099
     * Cyprus Geodetic Reference System 1993
1100
     * Type: Geodetic
1101
     * Extent: Cyprus - onshore.
1102
     * Station Chionistra (Mount Troodos). Network scale and orientation determined by connection of six stations to
1103
     * ITRF91 in Europe at epoch 1993.1.
1104
     * Survey plans and maps produced by DLS after 1993.
1105
     */
1106
    public const EPSG_CYPRUS_GEODETIC_REFERENCE_SYSTEM_1993 = 'urn:ogc:def:datum:EPSG::1112';
1107
1108
    /**
1109
     * DIBA15 Intermediate Reference Frame
1110
     * Type: Geodetic
1111
     * Extent: United Kingdom (UK) - on or related to the rail route from Didcot to Banbury.
1112
     * Defined through the application of the DIBA15 NTv2 transformation (code 10205) to ETRS89 as realized through
1113
     * OSNet v2009 CORS.
1114
     * Created in 2022 to support intermediate CRS DIBA15-IRF in the emulation of the DIBA15 Snake map projection.
1115
     */
1116
    public const EPSG_DIBA15_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1339';
1117
1118
    /**
1119
     * Dabola 1981
1120
     * Type: Geodetic
1121
     * Extent: Guinea - onshore.
1122
     */
1123
    public const EPSG_DABOLA_1981 = 'urn:ogc:def:datum:EPSG::6155';
1124
1125
    /**
1126
     * Danger 1950
1127
     * Type: Vertical
1128
     * Extent: St Pierre and Miquelon - onshore.
1129
     * Marker near tide gauge at port of Saint Pierre. Height is 1.26 metres above zero of tide gauge.
1130
     */
1131
    public const EPSG_DANGER_1950 = 'urn:ogc:def:datum:EPSG::5190';
1132
1133
    /**
1134
     * Dansk Normal Nul
1135
     * Type: Vertical
1136
     * Extent: Denmark - onshore.
1137
     * Mean Sea Level at 10 gauges.
1138
     * Orthometric heights.
1139
     */
1140
    public const EPSG_DANSK_NORMAL_NUL = 'urn:ogc:def:datum:EPSG::5132';
1141
1142
    /**
1143
     * Dansk Vertikal Reference 1990
1144
     * Type: Vertical
1145
     * Extent: Denmark - onshore.
1146
     * Benchmark at Århus cathedral referenced to mean sea level determined during 1990 at 10 tide gauges: Esbjerg,
1147
     * Fredericia, Frederikshavn, Gedser, Hirtshals, Hornbæk, Korsør, København, Slipshavn and Århus.
1148
     * Normal Orthometric heights.
1149
     */
1150
    public const EPSG_DANSK_VERTIKAL_REFERENCE_1990 = 'urn:ogc:def:datum:EPSG::5206';
1151
1152
    /**
1153
     * Datum 73
1154
     * Type: Geodetic
1155
     * Extent: Portugal - mainland - onshore.
1156
     * Fundamental point:  TF4, Melrica. Latitude: 39°41'37.30"N, longitude: 8°07'53.31"W (of Greenwich).
1157
     */
1158
    public const EPSG_DATUM_73 = 'urn:ogc:def:datum:EPSG::6274';
1159
1160
    /**
1161
     * Datum Altimetrico de Costa Rica 1952
1162
     * Type: Vertical
1163
     * Extent: Costa Rica - onshore.
1164
     * Mean Sea Level 1941-1952 at Puntarenas.
1165
     * Orthometric heights.
1166
     */
1167
    public const EPSG_DATUM_ALTIMETRICO_DE_COSTA_RICA_1952 = 'urn:ogc:def:datum:EPSG::1226';
1168
1169
    /**
1170
     * Datum Geodesi Nasional 1995
1171
     * Type: Geodetic
1172
     * Extent: Indonesia - onshore and offshore.
1173
     * ITRF91at epoch 1992.0.
1174
     * Replaces ID74 and all older datums.
1175
     */
1176
    public const EPSG_DATUM_GEODESI_NASIONAL_1995 = 'urn:ogc:def:datum:EPSG::6755';
1177
1178
    /**
1179
     * Dealul Piscului 1930
1180
     * Type: Geodetic
1181
     * Extent: Romania - onshore.
1182
     * Fundamental point: latitude 44°24'33.9606"N, longitude 26°06'44.8772"E (of Greenwich).
1183
     * Replaced by Pulkovo 1942(58) (datum code 6179).
1184
     */
1185
    public const EPSG_DEALUL_PISCULUI_1930 = 'urn:ogc:def:datum:EPSG::6316';
1186
1187
    /**
1188
     * Deception Island
1189
     * Type: Geodetic
1190
     * Extent: Antarctica - South Shetland Islands - Deception Island.
1191
     */
1192
    public const EPSG_DECEPTION_ISLAND = 'urn:ogc:def:datum:EPSG::6736';
1193
1194
    /**
1195
     * Deir ez Zor
1196
     * Type: Geodetic
1197
     * Extent: Lebanon - onshore. Syrian Arab Republic - onshore.
1198
     * Fundamental point: Trig. 254 Deir. Latitude: 35°21'49.975"N, longitude: 40°05'46.770"E (of Greenwich).
1199
     */
1200
    public const EPSG_DEIR_EZ_ZOR = 'urn:ogc:def:datum:EPSG::6227';
1201
1202
    /**
1203
     * Deutsche Bahn Reference System
1204
     * Type: Geodetic
1205
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
1206
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
1207
     * Schleswig-Holstein, Thuringen.
1208
     * Defined by transformation from ETRS89 (transformation code 5826) to be an average of DHDN realizations across
1209
     * all German states.
1210
     */
1211
    public const EPSG_DEUTSCHE_BAHN_REFERENCE_SYSTEM = 'urn:ogc:def:datum:EPSG::1081';
1212
1213
    /**
1214
     * Deutsches Hauptdreiecksnetz
1215
     * Type: Geodetic
1216
     * Extent: Germany - states of former West Germany onshore - Baden-Wurtemberg, Bayern, Bremen, Hamburg, Hessen,
1217
     * Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Schleswig-Holstein.
1218
     * Fundamental point: Rauenberg. Latitude: 52°27'12.021"N, longitude: 13°22'04.928"E (of Greenwich).  This
1219
     * station was destroyed in 1910 and the station at Potsdam substituted as the fundamental point.
1220
     */
1221
    public const EPSG_DEUTSCHES_HAUPTDREIECKSNETZ = 'urn:ogc:def:datum:EPSG::6314';
1222
1223
    /**
1224
     * Deutsches Haupthoehennetz 1912
1225
     * Type: Vertical
1226
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
1227
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
1228
     * Schleswig-Holstein, Thuringen.
1229
     * Height of reference point "Normalnullpunkt" at Berlin Observatory defined as 37.000m above MSL in 1879
1230
     * (transferred to benchmarks near Hoppegarten in Müncheberg in 1912). Datum at Normaal Amsterdams Peil (NAP) is
1231
     * mean high tide in 1684.
1232
     * Uses Normal-orthometric heights.
1233
     */
1234
    public const EPSG_DEUTSCHES_HAUPTHOEHENNETZ_1912 = 'urn:ogc:def:datum:EPSG::1161';
1235
1236
    /**
1237
     * Deutsches Haupthoehennetz 1985
1238
     * Type: Vertical
1239
     * Extent: Germany - states of former West Germany onshore - Baden-Wurtemberg, Bayern, Bremen, Hamburg, Hessen,
1240
     * Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Schleswig-Holstein.
1241
     * Network adjusted in 1985. Height of reference point Wallenhorst defined as value from 1928 adjustment. Datum at
1242
     * Normaal Amsterdams Peil (NAP) is mean high tide in 1684.
1243
     * Replaced by DHHN92. Uses Normal-orthometric heights.
1244
     */
1245
    public const EPSG_DEUTSCHES_HAUPTHOEHENNETZ_1985 = 'urn:ogc:def:datum:EPSG::5182';
1246
1247
    /**
1248
     * Deutsches Haupthoehennetz 1992
1249
     * Type: Vertical
1250
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
1251
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
1252
     * Schleswig-Holstein, Thuringen.
1253
     * Network adjusted in 1992. Geopotential number at reference point Wallenhorst defined as value from the
1254
     * UELN-73/86 adjustment. Datum at Normaal Amsterdams Peil (NAP) is mean high tide in 1684.
1255
     * Replaces DHHN85 in West Germany and SNN76 in East Germany. Uses Normal heights.
1256
     */
1257
    public const EPSG_DEUTSCHES_HAUPTHOEHENNETZ_1992 = 'urn:ogc:def:datum:EPSG::5181';
1258
1259
    /**
1260
     * Deutsches Haupthoehennetz 2016
1261
     * Type: Vertical
1262
     * Extent: Germany - onshore and offshore.
1263
     * 2006-2012 levelling network adjusted to 72 points of the DHHN92. Datum at Normaal Amsterdams Peil (NAP) is mean
1264
     * high tide in 1684. Extension offshore defined by the GCG2016 quasi-geoid model (CT code 9925).
1265
     * Uses Normal heights in the mean tidal system.
1266
     */
1267
    public const EPSG_DEUTSCHES_HAUPTHOEHENNETZ_2016 = 'urn:ogc:def:datum:EPSG::1170';
1268
1269
    /**
1270
     * Diego Garcia 1969
1271
     * Type: Geodetic
1272
     * Extent: British Indian Ocean Territory - Chagos Archipelago - Diego Garcia.
1273
     * Fundamental point: ISTS 073.
1274
     */
1275
    public const EPSG_DIEGO_GARCIA_1969 = 'urn:ogc:def:datum:EPSG::6724';
1276
1277
    /**
1278
     * DoPw22 Intermediate Reference Frame
1279
     * Type: Geodetic
1280
     * Extent: United Kingdom (UK) - on or related to the rail route from Dovey Junction to Pwllheli.
1281
     * Defined through the application of the DoPw22 NTv2 transformation to ETRS89 as realized through OSNet v2009
1282
     * CORS.
1283
     * Created in 2022 to support intermediate CRS DoPw22-IRF in the emulation of the DoPw22 Snake map projection.
1284
     */
1285
    public const EPSG_DOPW22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1334';
1286
1287
    /**
1288
     * Dominica 1945
1289
     * Type: Geodetic
1290
     * Extent: Dominica - onshore.
1291
     * Fundamental point: station M12.
1292
     */
1293
    public const EPSG_DOMINICA_1945 = 'urn:ogc:def:datum:EPSG::6602';
1294
1295
    /**
1296
     * Douala 1948
1297
     * Type: Geodetic
1298
     * Extent: Cameroon - coastal area.
1299
     * South pillar of Douala base; 4°00'40.64"N, 9°42'30.41"E (of Greenwich).
1300
     * Replaced by Manoca 1962 datum (code 6193).
1301
     */
1302
    public const EPSG_DOUALA_1948 = 'urn:ogc:def:datum:EPSG::6192';
1303
1304
    /**
1305
     * Douglas
1306
     * Type: Vertical
1307
     * Extent: Isle of Man - onshore.
1308
     * Mean Sea Level at Douglas 1865. Initially realised through levelling network adjustment, from 2002 redefined to
1309
     * be realised through OSGM geoid model.
1310
     * Orthometric heights.
1311
     */
1312
    public const EPSG_DOUGLAS = 'urn:ogc:def:datum:EPSG::5148';
1313
1314
    /**
1315
     * Dunedin 1958
1316
     * Type: Vertical
1317
     * Extent: New Zealand - South Island - between approximately 44°S and 46°S - Dunedin vertical CRS area.
1318
     * MSL at Dunedin harbour 1918-1937.
1319
     */
1320
    public const EPSG_DUNEDIN_1958 = 'urn:ogc:def:datum:EPSG::5159';
1321
1322
    /**
1323
     * Dunedin-Bluff 1960
1324
     * Type: Vertical
1325
     * Extent: New Zealand - South Island - Dunedin-Bluff vertical CRS area.
1326
     * Common adjustment of Dunedin 1958 and Bluff 1955 networks.
1327
     */
1328
    public const EPSG_DUNEDIN_BLUFF_1960 = 'urn:ogc:def:datum:EPSG::1040';
1329
1330
    /**
1331
     * Durres
1332
     * Type: Vertical
1333
     * Extent: Albania - onshore.
1334
     * Mean Sea Level at Durres.
1335
     * Normal-orthometric heights.
1336
     */
1337
    public const EPSG_DURRES = 'urn:ogc:def:datum:EPSG::5175';
1338
1339
    /**
1340
     * EBBWV14 Intermediate Reference Frame
1341
     * Type: Geodetic
1342
     * Extent: United Kingdom (UK) - on or related to the rail route from Newport (Park Junction) to Ebbw Vale.
1343
     * Defined through the application of the EBBWV14 NTv2 transformation to ETRS89 as realized through OSNet v2009
1344
     * CORS.
1345
     * Created in 2022 to support intermediate CRS "EBBWV14-IRF" in the emulation of the EBBWV14 Snake map projection.
1346
     */
1347
    public const EPSG_EBBWV14_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1319';
1348
1349
    /**
1350
     * ECML14_NB Intermediate Reference Frame
1351
     * Type: Geodetic
1352
     * Extent: United Kingdom (UK) - on or related to rail routes from Newcastle Central to Ashington via Benton North
1353
     * Junction, and the section from Bedlington to Morpeth.
1354
     * Defined through the application of the ECML14_NB NTv2 transformation (code 9759) to ETRS89 as realized through
1355
     * OSNet v2009 CORS.
1356
     * Created in 2021 to support intermediate CRS "ECML14_NB-IRF" in the emulation of the ECML14_NB Snake map
1357
     * projection.
1358
     */
1359
    public const EPSG_ECML14_NB_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1310';
1360
1361
    /**
1362
     * EGM2008 geoid
1363
     * Type: Vertical
1364
     * Extent: World.
1365
     * Derived through EGM2008 geoid undulation model consisting of spherical harmonic coefficients to degree 2190 and
1366
     * order 2159 applied to the WGS 84 ellipsoid.
1367
     * Replaces EGM96 geoid (datum code 5171). See transformation codes 3858 and 3859 for 2.5x2.5 and 1x1 arc minute
1368
     * geoid undulation grid files derived from the spherical harmonic coefficients.
1369
     */
1370
    public const EPSG_EGM2008_GEOID = 'urn:ogc:def:datum:EPSG::1027';
1371
1372
    /**
1373
     * EGM84 geoid
1374
     * Type: Vertical
1375
     * Extent: World.
1376
     * Derived through EGM84 geoid undulation model consisting of spherical harmonic coefficients to degree and order
1377
     * 180 applied to the WGS 84 ellipsoid.
1378
     * Replaced by EGM96 geoid (datum code 5171).
1379
     */
1380
    public const EPSG_EGM84_GEOID = 'urn:ogc:def:datum:EPSG::5203';
1381
1382
    /**
1383
     * EGM96 geoid
1384
     * Type: Vertical
1385
     * Extent: World.
1386
     * Derived through EGM84 geoid undulation model consisting of spherical harmonic coefficients to degree and order
1387
     * 360 applied to the WGS 84 ellipsoid.
1388
     * Replaces EGM84 geoid (datum code 5203). Replaced by EGM2008 geoid (datum code 1027).
1389
     */
1390
    public const EPSG_EGM96_GEOID = 'urn:ogc:def:datum:EPSG::5171';
1391
1392
    /**
1393
     * EOS21 Intermediate Reference Frame
1394
     * Type: Geodetic
1395
     * Extent: United Kingdom (UK) - on or related to the complex of rail routes in the East of Scotland, incorporating
1396
     * the route from Tweedbank through the Borders to Edinburgh; the line from Edinburgh to Aberdeen; routes via
1397
     * Kirkaldy and Cowdenbeath; and routes via Leuchars and Perth to Dundee.
1398
     * Defined through the application of the EOS21 NTv2 transformation (code 9740) to ETRS89 as realized through OSNet
1399
     * v2009 CORS.
1400
     * Created in 2021 to support intermediate CRS "EOS21-IRF" in the emulation of the EOS21 Snake map projection.
1401
     */
1402
    public const EPSG_EOS21_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1308';
1403
1404
    /**
1405
     * ETRF2000 Poland
1406
     * Type: Geodetic
1407
     * Extent: Poland - onshore and offshore.
1408
     * Polish densification of ETRS89 realized through adjustment of ASG-EUPOS network constrained to 35 EPN stations
1409
     * in [email protected].
1410
     * Adopted as official Polish reference frame from 2012-12-01 through Ordinance of the Council of Ministers of 15th
1411
     * November 2012 on the state system of spatial reference system.
1412
     */
1413
    public const EPSG_ETRF2000_POLAND = 'urn:ogc:def:datum:EPSG::1305';
1414
1415
    /**
1416
     * ETRS89/DREF91 Realization 2016
1417
     * Type: Geodetic
1418
     * Extent: Germany - onshore and offshore.
1419
     * Realized by GNSS campaign 2008. Results were transformed from IGS05 epoch 2008.46 to ITRF2005 to ETRF2000,
1420
     * subsequently to ETRS89/DREF91 Realization 2002 (former German ETRS89 realization) by 3 rotation parameters.
1421
     * German national realization of ETRS89. Replaces ETRS89/DREF91 Realization 2002 from 2016-12-01.
1422
     */
1423
    public const EPSG_ETRS89_DREF91_REALIZATION_2016 = 'urn:ogc:def:datum:EPSG::1353';
1424
1425
    /**
1426
     * EWR2 Intermediate Reference Frame
1427
     * Type: Geodetic
1428
     * Extent: United Kingdom (UK) - on or related to East West Rail (Phase 2) routes from Oxford to Bicester,
1429
     * Bletchley and Bedford, and from Claydon Junction to Aylesbury and Princes Risborough.
1430
     * Defined through the application of the EWR2 NTv2 transformation (code 9763) to ETRS89 as realized through OSNet
1431
     * v2009 CORS.
1432
     * Created in 2021 to support intermediate CRS "EWR2-IRF" in the emulation of the EWR2 Snake map projection.
1433
     */
1434
    public const EPSG_EWR2_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1311';
1435
1436
    /**
1437
     * Easter Island 1967
1438
     * Type: Geodetic
1439
     * Extent: Chile - Easter Island onshore.
1440
     */
1441
    public const EPSG_EASTER_ISLAND_1967 = 'urn:ogc:def:datum:EPSG::6719';
1442
1443
    /**
1444
     * Egypt 1907
1445
     * Type: Geodetic
1446
     * Extent: Egypt - onshore and offshore.
1447
     * Fundamental point: Station F1 (Venus). Latitude: 30°01'42.86"N, longitude: 31°16'33.60"E (of Greenwich).
1448
     */
1449
    public const EPSG_EGYPT_1907 = 'urn:ogc:def:datum:EPSG::6229';
1450
1451
    /**
1452
     * Egypt 1930
1453
     * Type: Geodetic
1454
     * Extent: Egypt - onshore.
1455
     * Fundamental point: Station F1 (Venus). Latitude: 30°01'42.86"N, longitude: 31°16'37.05"E (of Greenwich).
1456
     * Note that Egypt 1930 uses the International 1924 ellipsoid, unlike the Egypt 1907 datum (code 6229) which uses
1457
     * the Helmert ellipsoid. Oil industry references to the Egypt 1930 datum name and the Helmert ellipsoid probably
1458
     * mean Egypt 1907 datum.
1459
     */
1460
    public const EPSG_EGYPT_1930 = 'urn:ogc:def:datum:EPSG::6199';
1461
1462
    /**
1463
     * Egypt Gulf of Suez S-650 TL
1464
     * Type: Geodetic
1465
     * Extent: Egypt - Gulf of Suez.
1466
     * Fundamental point: Station S-650 DMX. Adopted coordinates: latitude: 28°19'02.1907"N, longitude:
1467
     * 33°06'36.6344"E (of Greenwich). The proper Egypt 1907 coordinates for S-650 differ from these by about 20m.
1468
     * A coherent set of stations bordering the Gulf of Suez coordinated by Transit translocation ("TL") between 1980
1469
     * and 1984. Based on incorrect Egypt 1907 values for origin station S-650. Differs from true Egypt 1907 by
1470
     * approximately 20m.
1471
     */
1472
    public const EPSG_EGYPT_GULF_OF_SUEZ_S_650_TL = 'urn:ogc:def:datum:EPSG::6706';
1473
1474
    /**
1475
     * El Hierro
1476
     * Type: Vertical
1477
     * Extent: Spain - Canary Islands - El Hierro onshore.
1478
     * Mean Sea Level at La Estaca harbour in 2000.
1479
     * Orthometric heights.
1480
     */
1481
    public const EPSG_EL_HIERRO = 'urn:ogc:def:datum:EPSG::1284';
1482
1483
    /**
1484
     * Estonia 1992
1485
     * Type: Geodetic
1486
     * Extent: Estonia - onshore.
1487
     * Densification from 4 ETRS89 points.
1488
     * Based on ETRS89 as established during the 1992 Baltic campaign. Replaced by Estonia 1997 adjustment (code 6180).
1489
     */
1490
    public const EPSG_ESTONIA_1992 = 'urn:ogc:def:datum:EPSG::6133';
1491
1492
    /**
1493
     * Estonia 1997
1494
     * Type: Geodetic
1495
     * Extent: Estonia - onshore and offshore.
1496
     * Densification of ETRS89 during EUREF-ESTONIA97 campaign through transformation from ITRF96 at epoch 1997.56.
1497
     * Replaces Estonia 1992 adjustment (code 6133).
1498
     */
1499
    public const EPSG_ESTONIA_1997 = 'urn:ogc:def:datum:EPSG::6180';
1500
1501
    /**
1502
     * Estonian Height System 2000
1503
     * Type: Vertical
1504
     * Extent: Estonia - onshore.
1505
     * Estonian realisation of EVRF2007. Relevelling observed  2004-2013 and reduced to epoch 2000 using the NKG2005LU
1506
     * empirical land uplift model. EVRF2007 height of Poltsamaa fundamental bench mark (H=55.2114m) held fixed.
1507
     * Uses Normal heights.
1508
     */
1509
    public const EPSG_ESTONIAN_HEIGHT_SYSTEM_2000 = 'urn:ogc:def:datum:EPSG::1298';
1510
1511
    /**
1512
     * European Datum 1950
1513
     * Type: Geodetic
1514
     * Extent: Europe - west: Andorra; Cyprus; Denmark - onshore and offshore; Faroe Islands - onshore; France -
1515
     * offshore; Germany - offshore North Sea; Gibraltar; Greece - offshore; Israel - offshore; Italy including San
1516
     * Marino and Vatican City State; Ireland offshore; Malta; Netherlands - offshore; North Sea; Norway including
1517
     * Svalbard - onshore and offshore; Portugal - mainland - offshore; Spain - onshore; Türkiye (Turkey) - onshore
1518
     * and offshore; United Kingdom - UKCS offshore east of 6°W including Channel Islands (Guernsey and Jersey). Egypt
1519
     * - Western Desert; Iraq - onshore; Jordan.
1520
     * Fundamental point: Potsdam (Helmert Tower). Latitude: 52°22'51.4456"N, longitude: 13°03'58.9283"E (of
1521
     * Greenwich).
1522
     */
1523
    public const EPSG_EUROPEAN_DATUM_1950 = 'urn:ogc:def:datum:EPSG::6230';
1524
1525
    /**
1526
     * European Datum 1950(1977)
1527
     * Type: Geodetic
1528
     * Extent: Iran - onshore and offshore.
1529
     * Extension of ED50 over Iran.
1530
     * Sometimes referred to as ED50-ED77.
1531
     */
1532
    public const EPSG_EUROPEAN_DATUM_1950_1977 = 'urn:ogc:def:datum:EPSG::6154';
1533
1534
    /**
1535
     * European Datum 1979
1536
     * Type: Geodetic
1537
     * Extent: Europe - west.
1538
     * Fundamental point: Potsdam (Helmert Tower). Latitude: 52°22'51.4456"N, longitude: 13°03'58.9283"E (of
1539
     * Greenwich).
1540
     * Replaced by 1987 adjustment.
1541
     */
1542
    public const EPSG_EUROPEAN_DATUM_1979 = 'urn:ogc:def:datum:EPSG::6668';
1543
1544
    /**
1545
     * European Datum 1987
1546
     * Type: Geodetic
1547
     * Extent: Europe - west.
1548
     * Fundamental point: Potsdam (Helmert Tower). Latitude: 52°22'51.4456"N, longitude: 13°03'58.9283"E (of
1549
     * Greenwich).
1550
     */
1551
    public const EPSG_EUROPEAN_DATUM_1987 = 'urn:ogc:def:datum:EPSG::6231';
1552
1553
    /**
1554
     * European Libyan Datum 1979
1555
     * Type: Geodetic
1556
     * Extent: Libya - onshore and offshore.
1557
     * Extension of ED50 over Libya.
1558
     */
1559
    public const EPSG_EUROPEAN_LIBYAN_DATUM_1979 = 'urn:ogc:def:datum:EPSG::6159';
1560
1561
    /**
1562
     * European Terrestrial Reference Frame 1989
1563
     * Type: Geodetic
1564
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1565
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1566
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1567
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1568
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1569
     * of Man; Vatican City State.
1570
     * Coincides with ITRF89 at epoch 1989.0. Fixed to the stable part of the Eurasian tectonic plate through 3
1571
     * rotation rates derived from the AM02 geophysical model.
1572
     * Defined by transformation from ITRF89 (CT code 7932). Replaced by ETRF90 (datum code 1179).
1573
     */
1574
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1989 = 'urn:ogc:def:datum:EPSG::1178';
1575
1576
    /**
1577
     * European Terrestrial Reference Frame 1990
1578
     * Type: Geodetic
1579
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1580
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1581
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1582
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1583
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1584
     * of Man; Vatican City State.
1585
     * Coincides with ITRF90 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1586
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1587
     * AM02 geophysical model.
1588
     * Defined by transformation from ITRF90 (CT code 7933). Replaces ETRF89 (datum code 1178). Replaced by ETRF91
1589
     * (datum code 1180).
1590
     */
1591
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1990 = 'urn:ogc:def:datum:EPSG::1179';
1592
1593
    /**
1594
     * European Terrestrial Reference Frame 1991
1595
     * Type: Geodetic
1596
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1597
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1598
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1599
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1600
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1601
     * of Man; Vatican City State.
1602
     * Coincides with ITRF91 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1603
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1604
     * AM02 geophysical model.
1605
     * Defined by transformation from ITRF91 (CT code 7934). Replaces ETRF90 (datum code 1179). Replaced by ETRF92
1606
     * (datum code 1181).
1607
     */
1608
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1991 = 'urn:ogc:def:datum:EPSG::1180';
1609
1610
    /**
1611
     * European Terrestrial Reference Frame 1992
1612
     * Type: Geodetic
1613
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1614
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1615
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1616
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1617
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1618
     * of Man; Vatican City State.
1619
     * Coincides with ITRF92 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1620
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1621
     * NNR-NUVEL-1 geophysical model.
1622
     * Defined by transformation from ITRF92 (CT code 7935). Replaces ETRF91 (datum code 1180). Replaced by ETRF93
1623
     * (datum code 1182).
1624
     */
1625
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1992 = 'urn:ogc:def:datum:EPSG::1181';
1626
1627
    /**
1628
     * European Terrestrial Reference Frame 1993
1629
     * Type: Geodetic
1630
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1631
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1632
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1633
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1634
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1635
     * of Man; Vatican City State.
1636
     * Coincides with ITRF93 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1637
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1638
     * ITRF93 velocity field.
1639
     * Defined by transformation from ITRF93 (CT code 7936). Replaces ETRF92 (datum code 1181). Replaced by ETRF94
1640
     * (datum code 1183).
1641
     */
1642
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1993 = 'urn:ogc:def:datum:EPSG::1182';
1643
1644
    /**
1645
     * European Terrestrial Reference Frame 1994
1646
     * Type: Geodetic
1647
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1648
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1649
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1650
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1651
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1652
     * of Man; Vatican City State.
1653
     * Coincides with ITRF94 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1654
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1655
     * NNR-NUVEL-1A geophysical model.
1656
     * Defined by transformation from ITRF94 (CT code 7937). Replaces ETRF93 (datum code 1182). Replaced by ETRF96
1657
     * (datum code 1184).
1658
     */
1659
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1994 = 'urn:ogc:def:datum:EPSG::1183';
1660
1661
    /**
1662
     * European Terrestrial Reference Frame 1996
1663
     * Type: Geodetic
1664
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1665
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1666
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1667
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1668
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1669
     * of Man; Vatican City State.
1670
     * Coincides with ITRF96 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1671
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1672
     * NNR-NUVEL-1A geophysical model.
1673
     * Defined by transformation from ITRF96 (CT code 7938). Replaces ETRF94 (datum code 1183). Replaced by ETRF97
1674
     * (datum code 1185).
1675
     */
1676
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1996 = 'urn:ogc:def:datum:EPSG::1184';
1677
1678
    /**
1679
     * European Terrestrial Reference Frame 1997
1680
     * Type: Geodetic
1681
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1682
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1683
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1684
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1685
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1686
     * of Man; Vatican City State.
1687
     * Coincides with ITRF97 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1688
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1689
     * NNR-NUVEL-1A geophysical model.
1690
     * Defined by transformation from ITRF97 (CT code 7939). Replaces ETRF96 (datum code 1184). Replaced by ETRF2000
1691
     * (datum code 1186).
1692
     */
1693
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1997 = 'urn:ogc:def:datum:EPSG::1185';
1694
1695
    /**
1696
     * European Terrestrial Reference Frame 2000
1697
     * Type: Geodetic
1698
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1699
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1700
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1701
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1702
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1703
     * of Man; Vatican City State.
1704
     * Coincides with ITRF2000 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1705
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1706
     * ITRF2000 velocity field.
1707
     * Defined by transformation from ITRF2000 (CT 7940). Replaces ETRF97. On the publication of ETRF2005 the EUREF TWG
1708
     * recommended that ETRF2000 be the realization of ETRS89. ETRF2014 (code 1206) is technically superior to all
1709
     * earlier realizations of ETRS89.
1710
     */
1711
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_2000 = 'urn:ogc:def:datum:EPSG::1186';
1712
1713
    /**
1714
     * European Terrestrial Reference Frame 2005
1715
     * Type: Geodetic
1716
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1717
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1718
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1719
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1720
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1721
     * of Man; Vatican City State.
1722
     * Coincides with ITRF2005 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1723
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1724
     * ITRF2005 velocity field.
1725
     * Defined by transformation from ITRF2005 (CT 5900). On publication in 2007 of this reference frame, the EUREF TWG
1726
     * recommended that ETRF2000 rather than this reference frame remained as the preferred realization of ETRS89.
1727
     * Replaced by ETRF2014 (code 1206).
1728
     */
1729
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_2005 = 'urn:ogc:def:datum:EPSG::1204';
1730
1731
    /**
1732
     * European Terrestrial Reference Frame 2014
1733
     * Type: Geodetic
1734
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1735
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1736
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1737
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1738
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1739
     * of Man; Vatican City State.
1740
     * Coincides with ITRF2014 at epoch 1989.0. Fixed to the stable part of the Eurasian tectonic plate through 3
1741
     * rotation rates derived from the ITRF2014 velocity field.
1742
     * Defined by transformation from ITRF2014 (CT code 8366). Replaces ETRF2005 (datum code 1204). Technically
1743
     * superior to ETRF2000 (datum code 1186).
1744
     */
1745
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_2014 = 'urn:ogc:def:datum:EPSG::1206';
1746
1747
    /**
1748
     * European Terrestrial Reference System 1989 ensemble
1749
     * Type: Ensemble
1750
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1751
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1752
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1753
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1754
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1755
     * of Man; Vatican City State.
1756
     * Has been realized through ETRF89, ETRF90, ETRF91, ETRF92, ETRF93, ETRF94, ETRF96, ETRF97, ETRF2000, ETRF2005 and
1757
     * ETRF2014. This 'ensemble' covers any or all of these realizations without distinction.
1758
     */
1759
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_SYSTEM_1989_ENSEMBLE = 'urn:ogc:def:datum:EPSG::6258';
1760
1761
    /**
1762
     * European Vertical Reference Frame 2000
1763
     * Type: Vertical
1764
     * Extent: Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Croatia; Czechia; Denmark;
1765
     * Estonia; Finland; France - mainland; Germany; Gibraltar; Hungary; Italy - mainland and Sicily; Latvia;
1766
     * Liechtenstein; Lithuania; Luxembourg; Netherlands; Norway; Poland; Portugal - mainland; Romania; San Marino;
1767
     * Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great Britain mainland; Vatican
1768
     * City State.
1769
     * Height at Normaal Amsterdams Peil (NAP) is zero, defined through height at UELN bench mark 13600 (52°22'53"N
1770
     * 4°54'34"E) of 0.71599m. Datum at NAP is mean high tide in 1684.
1771
     * Realized by geopotential numbers and Normal heights of the United European Levelling Network. Replaced by
1772
     * EVRF2007 (datum code 5215).
1773
     */
1774
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2000 = 'urn:ogc:def:datum:EPSG::5129';
1775
1776
    /**
1777
     * European Vertical Reference Frame 2000 Austria
1778
     * Type: Vertical
1779
     * Extent: Austria.
1780
     * Geopotential numbers of the EVRF2000 (UELN95/98) node points in Austria converted to orthometric heights using a
1781
     * digital surface model.
1782
     * Geoid surface is smoother than the EVRF2000 quasigeoid.
1783
     */
1784
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2000_AUSTRIA = 'urn:ogc:def:datum:EPSG::1261';
1785
1786
    /**
1787
     * European Vertical Reference Frame 2007
1788
     * Type: Vertical
1789
     * Extent: Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Czechia;
1790
     * Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily; Latvia;
1791
     * Liechtenstein; Lithuania; Luxembourg; Netherlands; Norway; Poland; Portugal - mainland; Romania; San Marino;
1792
     * Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great Britain mainland; Vatican
1793
     * City State.
1794
     * Least squares fit to 13 stations of the EVRF2000 solution. Reduced to epoch 2000.0 for Nordic countries using
1795
     * the NKG2005LU uplift model.
1796
     * Realized by geopotential numbers and Normal heights of the United European Levelling Network. Replaces EVRF2000
1797
     * (datum code 5129). Replaced by EVRF2019 (datum code 1274).
1798
     */
1799
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2007 = 'urn:ogc:def:datum:EPSG::5215';
1800
1801
    /**
1802
     * European Vertical Reference Frame 2007 Poland
1803
     * Type: Vertical
1804
     * Extent: Poland - onshore.
1805
     * Origin: Mean North Sea Level at Amsterdam tide gauge. Normal heights obtained from adjustment of precise
1806
     * leveling campaigns conducted during 1998 - 2012 reduced to epoch 2008.00.
1807
     *
1808
     * Uses Normal heights.
1809
     */
1810
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2007_POLAND = 'urn:ogc:def:datum:EPSG::1297';
1811
1812
    /**
1813
     * European Vertical Reference Frame 2019
1814
     * Type: Vertical
1815
     * Extent: Europe - onshore - Andorra; Austria; Belarus; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia;
1816
     * Czechia; Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily;
1817
     * Latvia; Liechtenstein; Lithuania; Luxembourg; Netherlands; North Macedonia; Norway; Poland; Portugal - mainland;
1818
     * Romania; Russia – west of approximately 60°E; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden;
1819
     * Switzerland; United Kingdom (UK) - Great Britain mainland; Ukraine; Vatican City State.
1820
     * Fixed to geopotential values of 12 stable stations of the EVRF2007 solution. Re-adjusted in September 2020.
1821
     * Reduced to epoch 2000.0 for Nordic countries and Russia using the NKG2016LU_lev uplift model and for Switzerland
1822
     * using CHVRF15 velocities.
1823
     * Following EVRS conventions, EVRF2019 is a zero-tide surface. Replaces EVRF2007 (datum code 5215).
1824
     */
1825
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2019 = 'urn:ogc:def:datum:EPSG::1274';
1826
1827
    /**
1828
     * European Vertical Reference Frame 2019 mean tide
1829
     * Type: Vertical
1830
     * Extent: Europe - onshore - Andorra; Austria; Belarus; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia;
1831
     * Czechia; Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily;
1832
     * Latvia; Liechtenstein; Lithuania; Luxembourg; Netherlands; North Macedonia; Norway; Poland; Portugal - mainland;
1833
     * Romania; Russia – west of approximately 60°E; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden;
1834
     * Switzerland; United Kingdom (UK) - Great Britain mainland; Ukraine; Vatican City State.
1835
     * Derived from 2020-09 zero-tide EVRF2019 adjustment by Cmean = Czero + (0.28841*sin^2(phi)) +
1836
     * (0.00195*sin^4(phi)) - 0.09722 - 0.08432 kgal.m. The offset of 0.08432 forces the mean-tide height to the
1837
     * zero-tide height at the EVRF2000 origin in Amsterdam.
1838
     * Mean-tide surface, describing how water flows. See EVRF2019 (datum code 1274) for zero-tide surface which is
1839
     * consistent with ETRS conventions.
1840
     */
1841
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2019_MEAN_TIDE = 'urn:ogc:def:datum:EPSG::1287';
1842
1843
    /**
1844
     * FNL22 Intermediate Reference Frame
1845
     * Type: Geodetic
1846
     * Extent: United Kingdom (UK) - on or related to the rail route from Inverness to Thurso and Wick.
1847
     * Defined through the application of the FNL22 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS.
1848
     * Created in 2022 to support intermediate CRS "FNL22" in the emulation of the FNL22 Snake map projection.
1849
     */
1850
    public const EPSG_FNL22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1321';
1851
1852
    /**
1853
     * Fahud
1854
     * Type: Geodetic
1855
     * Extent: Oman - mainland onshore.
1856
     * Fundamental point: Station NO68-024 Fahud. Latitude: 22°17'31.182"N, longitude: 56°29'18.820"E (of Greenwich).
1857
     * Replaced by PSD93 (code 6134).
1858
     */
1859
    public const EPSG_FAHUD = 'urn:ogc:def:datum:EPSG::6232';
1860
1861
    /**
1862
     * Fahud Height Datum
1863
     * Type: Vertical
1864
     * Extent: Oman - mainland onshore.
1865
     * Single MSL determination at Mina Al Fahal.
1866
     * Based on reciprocal trigonometric heighting. Replaced by PHD93 Datum (code 5123) in 1993.
1867
     */
1868
    public const EPSG_FAHUD_HEIGHT_DATUM = 'urn:ogc:def:datum:EPSG::5124';
1869
1870
    /**
1871
     * Fair Isle
1872
     * Type: Vertical
1873
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Fair Isle onshore.
1874
     * Orthometric heights.
1875
     */
1876
    public const EPSG_FAIR_ISLE = 'urn:ogc:def:datum:EPSG::5139';
1877
1878
    /**
1879
     * Famagusta 1960
1880
     * Type: Vertical
1881
     * Extent: Cyprus - onshore.
1882
     * Mean sea level at Famagusta Harbour.
1883
     * Orthometric heights.
1884
     */
1885
    public const EPSG_FAMAGUSTA_1960 = 'urn:ogc:def:datum:EPSG::1148';
1886
1887
    /**
1888
     * Fao
1889
     * Type: Vertical
1890
     * Extent: Iraq - onshore southeast; Iran - onshore northern Gulf coast and west bordering southeast Iraq.
1891
     * Established by Hunting Surveys for IPC. In Iran replaced by Bandar Abbas (code 5150). At time of record creation
1892
     * NIOC data in Ahwaz area still usually referenced to Fao. In Iraq replaced by Fao 1979 (code 1028).
1893
     */
1894
    public const EPSG_FAO = 'urn:ogc:def:datum:EPSG::5149';
1895
1896
    /**
1897
     * Fao 1979
1898
     * Type: Vertical
1899
     * Extent: Iraq - onshore.
1900
     * Average sea level at Fao during two-year period in mid/late 1970s.
1901
     * Levelling network established by Polservice consortium. Replaces Fao (datum code 5149) in Iraq.
1902
     */
1903
    public const EPSG_FAO_1979 = 'urn:ogc:def:datum:EPSG::1028';
1904
1905
    /**
1906
     * Faroe Datum 1954
1907
     * Type: Geodetic
1908
     * Extent: Faroe Islands - onshore.
1909
     * Astronomical observations at 3 points.
1910
     * Replaced by ED50 in late 1970's for all purposes other than cadastre. Replaced by fk89 for cadastre.
1911
     */
1912
    public const EPSG_FAROE_DATUM_1954 = 'urn:ogc:def:datum:EPSG::6741';
1913
1914
    /**
1915
     * Faroe Islands Vertical Reference 2009
1916
     * Type: Vertical
1917
     * Extent: Faroe Islands - onshore.
1918
     * Mean Tidal Height System.
1919
     */
1920
    public const EPSG_FAROE_ISLANDS_VERTICAL_REFERENCE_2009 = 'urn:ogc:def:datum:EPSG::1059';
1921
1922
    /**
1923
     * Fatu Iva 72
1924
     * Type: Geodetic
1925
     * Extent: French Polynesia - Marquesas Islands - Fatu Hiva.
1926
     * Fundamental point: Latitude: 9°25'58.00"S, longitude: 138°55'06.25"W (of Greenwich).
1927
     * Recomputed by IGN in 1972 using origin and observations of 1953-1955 Mission Hydrographique des Establissements
1928
     * Francais d'Oceanie (MHEFO 55). Replaced by RGPF (datum code 6687).
1929
     */
1930
    public const EPSG_FATU_IVA_72 = 'urn:ogc:def:datum:EPSG::6688';
1931
1932
    /**
1933
     * Fehmarnbelt Datum 2010
1934
     * Type: Geodetic
1935
     * Extent: Fehmarnbelt area of Denmark and Germany.
1936
     * ITRF2005 at epoch 2010.14.
1937
     * Defined through coordinates of four permanant GNSS stations.
1938
     */
1939
    public const EPSG_FEHMARNBELT_DATUM_2010 = 'urn:ogc:def:datum:EPSG::1078';
1940
1941
    /**
1942
     * Fehmarnbelt Vertical Reference 2010
1943
     * Type: Vertical
1944
     * Extent: Fehmarnbelt area of Denmark and Germany.
1945
     * Realised by precise levelling between tide gauges at Marienleuchte (Germany), Rodbyhavn (Denmark) and four
1946
     * Fehmarnbelt project GNSS stations.
1947
     */
1948
    public const EPSG_FEHMARNBELT_VERTICAL_REFERENCE_2010 = 'urn:ogc:def:datum:EPSG::1079';
1949
1950
    /**
1951
     * Fiji 1956
1952
     * Type: Geodetic
1953
     * Extent: Fiji - onshore - Vanua Levu, Taveuni, Viti Levu and and immediately adjacent smaller islands of Yasawa
1954
     * and Kandavu groups.
1955
     * Latitude origin was obtained astronomically at station Rasusuva = 17°49'03.13"S,  longitude origin was obtained
1956
     * astronomically at station Suva = 178°25'35.835"E (of Greenwich).
1957
     * For topographic mapping replaces Viti Levu 1912 and Vanua Levu 1915. Replaced by Fiji Geodetic Datum 1986.
1958
     */
1959
    public const EPSG_FIJI_1956 = 'urn:ogc:def:datum:EPSG::6721';
1960
1961
    /**
1962
     * Fiji Geodetic Datum 1986
1963
     * Type: Geodetic
1964
     * Extent: Fiji - onshore. Includes Viti Levu, Vanua Levu, Taveuni, the Yasawa Group, the Kadavu Group, the Lau
1965
     * Islands and Rotuma Islands.
1966
     * NWL 9D coordinates of 6 stations on Vitu Levu and Vanua Levu.
1967
     * Replaces Viti Levu 1912, Vanua Levu 1915 and Fiji 1956.
1968
     */
1969
    public const EPSG_FIJI_GEODETIC_DATUM_1986 = 'urn:ogc:def:datum:EPSG::6720';
1970
1971
    /**
1972
     * Final Datum 1958
1973
     * Type: Geodetic
1974
     * Extent: Iran - Arwaz area and onshore Gulf coast west of 54°E, Lavan Island, offshore Balal field and South
1975
     * Pars blocks 2 and 3.
1976
     * Fundamental point: Maniyur.  Latitude: 31°23'59.19"N, longitude: 48°32'31.38"E (of Greenwich).
1977
     * Network included in Nahrwan 1967 adjustment.
1978
     */
1979
    public const EPSG_FINAL_DATUM_1958 = 'urn:ogc:def:datum:EPSG::6132';
1980
1981
    /**
1982
     * Flannan Isles
1983
     * Type: Vertical
1984
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Flannan Isles onshore.
1985
     * Orthometric heights.
1986
     */
1987
    public const EPSG_FLANNAN_ISLES = 'urn:ogc:def:datum:EPSG::5146';
1988
1989
    /**
1990
     * Fort Marigot
1991
     * Type: Geodetic
1992
     * Extent: Guadeloupe - onshore - St Martin and St Barthélemy islands.
1993
     * Replaced by RRAF 1991 (datum code 1047).
1994
     */
1995
    public const EPSG_FORT_MARIGOT = 'urn:ogc:def:datum:EPSG::6621';
1996
1997
    /**
1998
     * Foula
1999
     * Type: Vertical
2000
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Foula onshore.
2001
     * Orthometric heights.
2002
     */
2003
    public const EPSG_FOULA = 'urn:ogc:def:datum:EPSG::5141';
2004
2005
    /**
2006
     * Fuerteventura
2007
     * Type: Vertical
2008
     * Extent: Spain - Canary Islands - Fuerteventura onshore.
2009
     * Mean Sea Level at Puerto del Rosario harbour between 1999-09-08 and 2000-12-31.
2010
     * Orthometric heights.
2011
     */
2012
    public const EPSG_FUERTEVENTURA = 'urn:ogc:def:datum:EPSG::1279';
2013
2014
    /**
2015
     * GBK19 Intermediate Reference Frame
2016
     * Type: Geodetic
2017
     * Extent: United Kingdom (UK) - on or related to the rail route from Glasgow to Kilmarnock via Barrhead and the
2018
     * branch to East Kilbride.
2019
     * Defined through the application of the GBK19 NTv2 transformation (code 9454) to ETRS89 as realized through OSNet
2020
     * v2009 CORS.
2021
     * Created in 2020 to support intermediate CRS "GBK19-IRF" in the emulation of the combined GBK19 Snake map
2022
     * projection.
2023
     */
2024
    public const EPSG_GBK19_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1289';
2025
2026
    /**
2027
     * GNTRANS
2028
     * Type: Vertical
2029
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
2030
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
2031
     * Schleswig-Holstein, Thuringen.
2032
     * Surface defined by the EGG97 quasi-geoid model modified in GNTRANS to achieve absolute position optimised for
2033
     * use with DB_REF.
2034
     * Implemented in GNTRANS. The GNTRANS height surface is available only through the GNTRANS application. Replaced
2035
     * by the GNTRANS2016 height surface (datum code 1318).
2036
     */
2037
    public const EPSG_GNTRANS = 'urn:ogc:def:datum:EPSG::1316';
2038
2039
    /**
2040
     * GNTRANS2016
2041
     * Type: Vertical
2042
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
2043
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
2044
     * Schleswig-Holstein, Thuringen.
2045
     * Surface defined by the GCG2016 quasi-geoid model applied to ETRS89.
2046
     * Approximates the national DHHN2016 levelling surface to around 1cm in lowlands and 2cm in high mountains, but
2047
     * unlike DHHN2016 it is defined by the GCG2016 geoid model. Like DHHN2016, uses Normal heights in the mean tide
2048
     * system.
2049
     */
2050
    public const EPSG_GNTRANS2016 = 'urn:ogc:def:datum:EPSG::1318';
2051
2052
    /**
2053
     * GWPBS22 Intermediate Reference Frame
2054
     * Type: Geodetic
2055
     * Extent: United Kingdom (UK) - on or related to the rail route from London (Paddington) to Swansea.
2056
     * Defined through the application of the GWPBS22 NTv2 transformation to ETRS89 as realized through OSNet v2009
2057
     * CORS.
2058
     * Created in 2022 to support intermediate CRS GWPBS22-IRF in the emulation of the GWPBS22 Snake map projection.
2059
     */
2060
    public const EPSG_GWPBS22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1340';
2061
2062
    /**
2063
     * GWWAB22 Intermediate Reference Frame
2064
     * Type: Geodetic
2065
     * Extent: United Kingdom (UK) - on or related to the rail routes around Cardiff and the valleys.
2066
     * Defined through the application of the GWWAB22 NTv2 transformation to ETRS89 as realized through OSNet v2009
2067
     * CORS.
2068
     * Created in 2022 to support intermediate CRS GWWAB22-IRF in the emulation of the GWWAB22 Snake map projection.
2069
     */
2070
    public const EPSG_GWWAB22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1341';
2071
2072
    /**
2073
     * GWWWA22 Intermediate Reference Frame
2074
     * Type: Geodetic
2075
     * Extent: United Kingdom (UK) - on or related to the rail routes from Swansea to Pembroke Dock, Milford Haven and
2076
     * Fishguard.
2077
     * Defined through the application of the GWWWA22 NTv2 transformation to ETRS89 as realized through OSNet v2009
2078
     * CORS.
2079
     * Created in 2022 to support intermediate CRS GWWWA22-IRF in the emulation of the GWWWA22 Snake map projection.
2080
     */
2081
    public const EPSG_GWWWA22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1342';
2082
2083
    /**
2084
     * Gambia
2085
     * Type: Geodetic
2086
     * Extent: Gambia - onshore.
2087
     */
2088
    public const EPSG_GAMBIA = 'urn:ogc:def:datum:EPSG::1139';
2089
2090
    /**
2091
     * Gan 1970
2092
     * Type: Geodetic
2093
     * Extent: Maldives - onshore.
2094
     * In some references incorrectly named "Gandajika 1970". See datum code 6685.
2095
     */
2096
    public const EPSG_GAN_1970 = 'urn:ogc:def:datum:EPSG::6684';
2097
2098
    /**
2099
     * Garoua
2100
     * Type: Geodetic
2101
     * Extent: Cameroon - Garoua area.
2102
     * Fundamental point: IGN astronomical station and benchmark no. 16 at Tongo. Latitude 8°55'08.74"N, longitude
2103
     * 13°30'43.19"E (of Greenwich).
2104
     */
2105
    public const EPSG_GAROUA = 'urn:ogc:def:datum:EPSG::6197';
2106
2107
    /**
2108
     * Gebrauchshohen ADRIA
2109
     * Type: Vertical
2110
     * Extent: Austria.
2111
     * Reference point Hutbiegl defined relative to mean sea level at Trieste in 1875.
2112
     * Normal-orthometric heights.
2113
     */
2114
    public const EPSG_GEBRAUCHSHOHEN_ADRIA = 'urn:ogc:def:datum:EPSG::5176';
2115
2116
    /**
2117
     * Genoa 1942
2118
     * Type: Vertical
2119
     * Extent: Italy - mainland (including San Marino and Vatican City State) and Sicily.
2120
     * Mean Sea Level at Genoa (Ponte Morosini) 1937-1946.
2121
     * Orthometric heights.
2122
     */
2123
    public const EPSG_GENOA_1942 = 'urn:ogc:def:datum:EPSG::1051';
2124
2125
    /**
2126
     * Geocentric Datum Brunei Darussalam 2009
2127
     * Type: Geodetic
2128
     * Extent: Brunei Darussalam - onshore and offshore.
2129
     * ITRF2005 at epoch 2009.45
2130
     * Replaces use of Timbalai from July 2009.
2131
     */
2132
    public const EPSG_GEOCENTRIC_DATUM_BRUNEI_DARUSSALAM_2009 = 'urn:ogc:def:datum:EPSG::1056';
2133
2134
    /**
2135
     * Geocentric Datum of Australia 1994
2136
     * Type: Geodetic
2137
     * Extent: Australia including Lord Howe Island, Macquarie Island, Ashmore and Cartier Islands, Christmas Island,
2138
     * Cocos (Keeling) Islands, Norfolk Island. All onshore and offshore.
2139
     * ITRF92 at epoch 1994.0.
2140
     */
2141
    public const EPSG_GEOCENTRIC_DATUM_OF_AUSTRALIA_1994 = 'urn:ogc:def:datum:EPSG::6283';
2142
2143
    /**
2144
     * Geocentric Datum of Australia 2020
2145
     * Type: Geodetic
2146
     * Extent: Australia including Lord Howe Island, Macquarie Island, Ashmore and Cartier Islands, Christmas Island,
2147
     * Cocos (Keeling) Islands, Norfolk Island. All onshore and offshore.
2148
     * ITRF2014 at epoch 2020.0.
2149
     */
2150
    public const EPSG_GEOCENTRIC_DATUM_OF_AUSTRALIA_2020 = 'urn:ogc:def:datum:EPSG::1168';
2151
2152
    /**
2153
     * Geocentric datum of Korea
2154
     * Type: Geodetic
2155
     * Extent: Republic of Korea (South Korea) - onshore and offshore.
2156
     * ITRF2000 at epoch 2002.0.
2157
     */
2158
    public const EPSG_GEOCENTRIC_DATUM_OF_KOREA = 'urn:ogc:def:datum:EPSG::6737';
2159
2160
    /**
2161
     * Geodetic Datum of 1965
2162
     * Type: Geodetic
2163
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
2164
     * Adjusted to best mean fit 9 stations of the OSNI 1952 primary adjustment in Northern Ireland plus the 1965
2165
     * values of 3 stations in the Republic of Ireland.
2166
     * Differences from the 1965 adjustment (datum code 6299) are: average difference in Eastings 0.092m; average
2167
     * difference in Northings 0.108m; maximum vector difference 0.548m.
2168
     */
2169
    public const EPSG_GEODETIC_DATUM_OF_1965 = 'urn:ogc:def:datum:EPSG::6300';
2170
2171
    /**
2172
     * Geodetic Datum of Malaysia 2000
2173
     * Type: Geodetic
2174
     * Extent: Malaysia - onshore and offshore. Includes peninsular Malayasia, Sabah and Sarawak.
2175
     * ITRF2000, epoch 2000.0.
2176
     * Replaces all older Malaysian datums.
2177
     */
2178
    public const EPSG_GEODETIC_DATUM_OF_MALAYSIA_2000 = 'urn:ogc:def:datum:EPSG::6742';
2179
2180
    /**
2181
     * Geodezicheskaya Sistema Koordinat 2011
2182
     * Type: Geodetic
2183
     * Extent: Russian Federation - onshore and offshore.
2184
     * Coordinates of the Russian fundamental astronomic-geodetic network (about 50 stations) at epoch 2011.0.
2185
     */
2186
    public const EPSG_GEODEZICHESKAYA_SISTEMA_KOORDINAT_2011 = 'urn:ogc:def:datum:EPSG::1159';
2187
2188
    /**
2189
     * Gisborne 1926
2190
     * Type: Vertical
2191
     * Extent: New Zealand - North Island - Gisborne vertical CRS area.
2192
     * MSL at Gisborne harbour 1926.
2193
     */
2194
    public const EPSG_GISBORNE_1926 = 'urn:ogc:def:datum:EPSG::5160';
2195
2196
    /**
2197
     * Gran Canaria
2198
     * Type: Vertical
2199
     * Extent: Spain - Canary Islands - Gran Canaria onshore.
2200
     * Mean Sea Level at Las Palmas de Gran Canaria harbour between 1992 and 1997.
2201
     * Orthometric heights.
2202
     */
2203
    public const EPSG_GRAN_CANARIA = 'urn:ogc:def:datum:EPSG::1280';
2204
2205
    /**
2206
     * Grand Cayman Geodetic Datum 1959
2207
     * Type: Geodetic
2208
     * Extent: Cayman Islands - Grand Cayman.
2209
     * Fundamental point: GC1. Latitude: 19°17'54.43"N, longitude: 81°22'37.17"W (of Greenwich).
2210
     * Replaced by CIGD11 (datum code 1100).
2211
     */
2212
    public const EPSG_GRAND_CAYMAN_GEODETIC_DATUM_1959 = 'urn:ogc:def:datum:EPSG::6723';
2213
2214
    /**
2215
     * Grand Cayman Vertical Datum 1954
2216
     * Type: Vertical
2217
     * Extent: Cayman Islands - Grand Cayman.
2218
     */
2219
    public const EPSG_GRAND_CAYMAN_VERTICAL_DATUM_1954 = 'urn:ogc:def:datum:EPSG::1097';
2220
2221
    /**
2222
     * Grand Comoros
2223
     * Type: Geodetic
2224
     * Extent: Comoros - Njazidja (Grande Comore).
2225
     * Fundamental point: M'Tsaoueni.  Latitude: 11°28'32.200"S, longitude: 43°15'42.315"E (of Greenwich).
2226
     */
2227
    public const EPSG_GRAND_COMOROS = 'urn:ogc:def:datum:EPSG::6646';
2228
2229
    /**
2230
     * Greek
2231
     * Type: Geodetic
2232
     * Extent: Greece - onshore.
2233
     * Fundamental point: Athens Observatory. Latitude 37°58'20.132"N, longitude 23°42'58.815"E (of Greenwich)
2234
     * See geodetic datum alias 6404. Used as basis of topographic mapping based on Hatt projection. Replaced by GGRS87
2235
     * (code 6121).
2236
     */
2237
    public const EPSG_GREEK = 'urn:ogc:def:datum:EPSG::6120';
2238
2239
    /**
2240
     * Greek (Athens)
2241
     * Type: Geodetic
2242
     * Extent: Greece - onshore.
2243
     * Fundamental point: Athens Observatory. Latitude 37°58'20.132"N, longitude 0°E (of Athens).
2244
     * See geodetic datum alias 6404. Used as basis of topographic mapping based on Hatt projection.
2245
     */
2246
    public const EPSG_GREEK_ATHENS = 'urn:ogc:def:datum:EPSG::6815';
2247
2248
    /**
2249
     * Greek Geodetic Reference System 1987
2250
     * Type: Geodetic
2251
     * Extent: Greece - onshore.
2252
     * Fundamental point: Dionysos. Latitude 38°04'33.8"N, longitude 23°55'51.0"E of Greenwich; geoid height 7.0 m.
2253
     * Replaced (old) Greek datum. Oil industry work based on ED50.
2254
     */
2255
    public const EPSG_GREEK_GEODETIC_REFERENCE_SYSTEM_1987 = 'urn:ogc:def:datum:EPSG::6121';
2256
2257
    /**
2258
     * Greenland 1996
2259
     * Type: Geodetic
2260
     * Extent: Greenland - onshore and offshore.
2261
     * ITRF94 at epoch 1996.62
2262
     * Replaces Ammassalik 1958, Qornoq 1927 and Scoresbysund 1952.
2263
     */
2264
    public const EPSG_GREENLAND_1996 = 'urn:ogc:def:datum:EPSG::6747';
2265
2266
    /**
2267
     * Greenland Vertical Reference 2000
2268
     * Type: Vertical
2269
     * Extent: Greenland - onshore and offshore between 59°N and 84°N and west of 10°W.
2270
     * Defined through the gravimetric geoid 2000 model locally aligned with MSL at a number of sites.
2271
     * Orthometric heights. Replaced by GVR2016.
2272
     */
2273
    public const EPSG_GREENLAND_VERTICAL_REFERENCE_2000 = 'urn:ogc:def:datum:EPSG::1199';
2274
2275
    /**
2276
     * Greenland Vertical Reference 2016
2277
     * Type: Vertical
2278
     * Extent: Greenland - onshore and offshore between 58°N and 85°N and west of 7°W.
2279
     * Defined through the gravimetric geoid 2016 model locally aligned to MSL as measured at Nuuk during the 1960s.
2280
     * Orthometric heights. Replaces GVR2000.
2281
     */
2282
    public const EPSG_GREENLAND_VERTICAL_REFERENCE_2016 = 'urn:ogc:def:datum:EPSG::1200';
2283
2284
    /**
2285
     * Grenada 1953
2286
     * Type: Geodetic
2287
     * Extent: Grenada and southern Grenadine Islands - onshore.
2288
     * Fundamental point: station GS8, Sante Marie.
2289
     */
2290
    public const EPSG_GRENADA_1953 = 'urn:ogc:def:datum:EPSG::6603';
2291
2292
    /**
2293
     * Guadeloupe 1948
2294
     * Type: Geodetic
2295
     * Extent: Guadeloupe - onshore - Basse-Terre, Grande-Terre, La Desirade, Marie-Galante, Les Saintes.
2296
     * Replaced by RRAF 1991 (datum code 1047).
2297
     */
2298
    public const EPSG_GUADELOUPE_1948 = 'urn:ogc:def:datum:EPSG::6622';
2299
2300
    /**
2301
     * Guadeloupe 1951
2302
     * Type: Vertical
2303
     * Extent: Guadeloupe - onshore - Basse-Terre and Grande-Terre.
2304
     * Mean sea level July 1947 to June 1948 at Pointe-Fouillole (Pointe-à-Pitre harbour). Origin = marker AO'-12 with
2305
     * height of 1.917m above msl.
2306
     * Orthometric heights. Replaced by Guadeloupe 1988 (datum code 5155). Guadeloupe 1951 height 0.00m is 0.629m above
2307
     * 1947-48 sounding datum.
2308
     */
2309
    public const EPSG_GUADELOUPE_1951 = 'urn:ogc:def:datum:EPSG::5193';
2310
2311
    /**
2312
     * Guadeloupe 1988
2313
     * Type: Vertical
2314
     * Extent: Guadeloupe - onshore - Basse-Terre and Grande-Terre.
2315
     * Mean sea level July 1947 to June 1948 at Pointe-Fouillole (Pointe-à-Pitre harbour). Origin = marker GO-7
2316
     * (formerly AO'-5) with defined height of 2.67m above msl adopted from 1951 value. Guadeloupe 1988 height 0.00m is
2317
     * 0.46m above 1984 sounding datum.
2318
     * Orthometric heights. Replaces Guadeloupe 1951 (datum code 5193).
2319
     */
2320
    public const EPSG_GUADELOUPE_1988 = 'urn:ogc:def:datum:EPSG::5155';
2321
2322
    /**
2323
     * Guam 1963
2324
     * Type: Geodetic
2325
     * Extent: Guam - onshore. Northern Mariana Islands - onshore.
2326
     * Fundamental point: Tagcha. Latitude: 13°22'38.49"N, longitude: 144°45'51.56"E (of Greenwich).
2327
     * Replaced by NAD83(HARN).
2328
     */
2329
    public const EPSG_GUAM_1963 = 'urn:ogc:def:datum:EPSG::6675';
2330
2331
    /**
2332
     * Guam Vertical Datum of 1963
2333
     * Type: Vertical
2334
     * Extent: Guam - onshore.
2335
     * Mean sea level at Apra harbor, Guam, 1949-1962. Benchmark NO 5 1949 = 0.599m.
2336
     * Replaced by Guam vertical datum of 2004 (datum code 1126).
2337
     */
2338
    public const EPSG_GUAM_VERTICAL_DATUM_OF_1963 = 'urn:ogc:def:datum:EPSG::1122';
2339
2340
    /**
2341
     * Guam Vertical Datum of 2004
2342
     * Type: Vertical
2343
     * Extent: Guam - onshore.
2344
     * Mean sea level at Apra harbor, Guam. Benchmark 1630000 TIDAL 4 = 2.170m relative to US National Tidal Datum
2345
     * Epoch 1983-2001. MSL is 0.419m above MLLW and the BM is 2.589m above MLLW.
2346
     * Replaces Guam Vertical Datum of 1963 (datum code 1122).
2347
     */
2348
    public const EPSG_GUAM_VERTICAL_DATUM_OF_2004 = 'urn:ogc:def:datum:EPSG::1126';
2349
2350
    /**
2351
     * Gulshan 303
2352
     * Type: Geodetic
2353
     * Extent: Bangladesh - onshore and offshore.
2354
     * Gulshan garden, Dhaka.
2355
     * Network of more than 140 control points observed and adjusted in 1995 by Japan International Cooperation Agency
2356
     * (JICA).
2357
     */
2358
    public const EPSG_GULSHAN_303 = 'urn:ogc:def:datum:EPSG::6682';
2359
2360
    /**
2361
     * Gunung Segara
2362
     * Type: Geodetic
2363
     * Extent: Indonesia - Kalimantan - onshore east coastal area including Mahakam delta coastal and offshore shelf
2364
     * areas.
2365
     * Station P5 (Gunung Segara). Latitude 0°32'12.83"S, longitude 117°08'48.47"E (of Greenwich).
2366
     */
2367
    public const EPSG_GUNUNG_SEGARA = 'urn:ogc:def:datum:EPSG::6613';
2368
2369
    /**
2370
     * Gunung Segara (Jakarta)
2371
     * Type: Geodetic
2372
     * Extent: Indonesia - Kalimantan - onshore east coastal area including Mahakam delta coastal and offshore shelf
2373
     * areas.
2374
     * Station P5 (Gunung Segara) 0°32'12.83"S, 117°08'48.47"E (of Greenwich). Longitude 8°20'20.68"E (of Jakarta).
2375
     */
2376
    public const EPSG_GUNUNG_SEGARA_JAKARTA = 'urn:ogc:def:datum:EPSG::6820';
2377
2378
    /**
2379
     * Gusterberg (Ferro)
2380
     * Type: Geodetic
2381
     * Extent: Austria - Upper Austria and Salzburg provinces. Czechia - Bohemia.
2382
     * Fundamental point: Gusterberg. Latitude: 48°02'18.47"N, longitude: 31°48'15.05"E (of Ferro).
2383
     */
2384
    public const EPSG_GUSTERBERG_FERRO = 'urn:ogc:def:datum:EPSG::1188';
2385
2386
    /**
2387
     * HS2 Intermediate Reference Frame
2388
     * Type: Geodetic
2389
     * Extent: United Kingdom (UK) - HS2 phases 1 and 2a railway corridor from London to Birmingham, Lichfield and
2390
     * Crewe.
2391
     * Defined through application of the HS2TN02 transformation to ETRS89 as realized through OSNet v2001 CORS.
2392
     * Subsequently realized through application of the HS2TN15 transformation to ETRS89 as realized through OSNet
2393
     * v2009 CORS.
2394
     * Created to support intermediate CRS "HS2-IRF" in the emulation of the HS2P1+14 Snake map projection.
2395
     */
2396
    public const EPSG_HS2_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1264';
2397
2398
    /**
2399
     * HS2 Vertical Reference Frame
2400
     * Type: Vertical
2401
     * Extent: United Kingdom (UK) - HS2 phases 1 and 2a railway corridor from London to Birmingham, Lichfield and
2402
     * Crewe.
2403
     * Equivalent to Ordnance Datum Newlyn as realized through OSNet v2001 and OSGM02.
2404
     * After introduction of OSNet v2009 CORS, OSTN15 and the OSGM15 geoid model, the HS2 VRF is maintained equivalent
2405
     * to OSNet v2001 and OSGM02 through HS2GM15 (code 9304).
2406
     */
2407
    public const EPSG_HS2_VERTICAL_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1265';
2408
2409
    /**
2410
     * HULLEE13 Intermediate Reference Frame
2411
     * Type: Geodetic
2412
     * Extent: United Kingdom (UK) - on or related to the rail route from the Morley tunnel through Leeds to Hull.
2413
     * Defined through the application of the HULLEE13 NTv2 transformation to ETRS89 as realized through OSNet v2009
2414
     * CORS.
2415
     * Created in 2022 to support intermediate CRS "HULLEE13-IRF" in the emulation of the HULLEE13 Snake map
2416
     * projection.
2417
     */
2418
    public const EPSG_HULLEE13_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1317';
2419
2420
    /**
2421
     * Ha Tien 1960
2422
     * Type: Vertical
2423
     * Extent: Cambodia - mainland onshore; Vietnam - mainland onshore.
2424
     * In Vietnam replaced by Hon Dau in 1992.
2425
     */
2426
    public const EPSG_HA_TIEN_1960 = 'urn:ogc:def:datum:EPSG::5125';
2427
2428
    /**
2429
     * Hanoi 1972
2430
     * Type: Geodetic
2431
     * Extent: Vietnam - onshore.
2432
     */
2433
    public const EPSG_HANOI_1972 = 'urn:ogc:def:datum:EPSG::6147';
2434
2435
    /**
2436
     * Hartebeesthoek94
2437
     * Type: Geodetic
2438
     * Extent: Eswatini (Swaziland); Lesotho; South Africa - onshore and offshore.
2439
     * Coincident with ITRF91 at epoch 1994.0 at Hartebeesthoek astronomical observatory near Pretoria.
2440
     * Replaces Cape datum (code 6222).
2441
     */
2442
    public const EPSG_HARTEBEESTHOEK94 = 'urn:ogc:def:datum:EPSG::6148';
2443
2444
    /**
2445
     * Helle 1954
2446
     * Type: Geodetic
2447
     * Extent: Jan Mayen - onshore.
2448
     */
2449
    public const EPSG_HELLE_1954 = 'urn:ogc:def:datum:EPSG::6660';
2450
2451
    /**
2452
     * Helsinki 1943
2453
     * Type: Vertical
2454
     * Extent: Finland - onshore mainland south of approximately 66°N.
2455
     * MSL at Helsinki during 1943.
2456
     * Uses orthometric heights. Effect of the land uplift during the 2nd national levelling was not taken into
2457
     * account. Replaced by N60 (datum code 5116).
2458
     */
2459
    public const EPSG_HELSINKI_1943 = 'urn:ogc:def:datum:EPSG::1213';
2460
2461
    /**
2462
     * Helsinki 1960
2463
     * Type: Vertical
2464
     * Extent: Finland - onshore.
2465
     * MSL at Helsinki during 1960.
2466
     * Uses orthometric heights. Replaced by N2000 (datum code 1030).
2467
     */
2468
    public const EPSG_HELSINKI_1960 = 'urn:ogc:def:datum:EPSG::5116';
2469
2470
    /**
2471
     * Herat North
2472
     * Type: Geodetic
2473
     * Extent: Afghanistan.
2474
     * Fundamental point: Herat North. Latitude: 34°23'09.08"N, longitude: 64°10'58.94"E (of Greenwich).
2475
     */
2476
    public const EPSG_HERAT_NORTH = 'urn:ogc:def:datum:EPSG::6255';
2477
2478
    /**
2479
     * High Water
2480
     * Type: Vertical
2481
     * Extent: World.
2482
     * Not specific to any location or epoch.
2483
     * The highest water level reached at a place in one tidal cycle. When used on inland (non-tidal) waters it is
2484
     * generally defined as a level which the daily mean water level exceeds less than 5% of the time.
2485
     */
2486
    public const EPSG_HIGH_WATER = 'urn:ogc:def:datum:EPSG::1094';
2487
2488
    /**
2489
     * Higher High Water Large Tide
2490
     * Type: Vertical
2491
     * Extent: World.
2492
     * Not specific to any location or epoch.
2493
     * The average of the highest high waters, one from each of 19 years of observations.
2494
     */
2495
    public const EPSG_HIGHER_HIGH_WATER_LARGE_TIDE = 'urn:ogc:def:datum:EPSG::1084';
2496
2497
    /**
2498
     * Highest Astronomical Tide
2499
     * Type: Vertical
2500
     * Extent: World.
2501
     * Not specific to any location or epoch.
2502
     * The highest tide level which can be predicted to occur under average meteorological conditions and under any
2503
     * combination of astronomical conditions.
2504
     */
2505
    public const EPSG_HIGHEST_ASTRONOMICAL_TIDE = 'urn:ogc:def:datum:EPSG::1082';
2506
2507
    /**
2508
     * Hito XVIII 1963
2509
     * Type: Geodetic
2510
     * Extent: Chile - Tierra del Fuego, onshore; Argentina - Tierra del Fuego, onshore and offshore Atlantic west of
2511
     * 66°W.
2512
     * Chile-Argentina boundary survey.
2513
     * Used in Tierra del Fuego.
2514
     */
2515
    public const EPSG_HITO_XVIII_1963 = 'urn:ogc:def:datum:EPSG::6254';
2516
2517
    /**
2518
     * Hjorsey 1955
2519
     * Type: Geodetic
2520
     * Extent: Iceland - mainland.
2521
     * Fundamental point:  Latitude: 64°31'29.26"N, longitude: 22°22'05.84"W (of Greenwich).
2522
     */
2523
    public const EPSG_HJORSEY_1955 = 'urn:ogc:def:datum:EPSG::6658';
2524
2525
    /**
2526
     * Hon Dau 1992
2527
     * Type: Vertical
2528
     * Extent: Vietnam - mainland onshore.
2529
     * Replaces Ha Tien in Vietnam.
2530
     */
2531
    public const EPSG_HON_DAU_1992 = 'urn:ogc:def:datum:EPSG::5126';
2532
2533
    /**
2534
     * Hong Kong 1963
2535
     * Type: Geodetic
2536
     * Extent: China - Hong Kong - onshore and offshore.
2537
     * Fundamental point: Trig "Zero", 38.4 feet south along the transit circle of the Kowloon Observatory. Latitude
2538
     * 22°18'12.82"N, longitude 114°10'18.75"E (of Greenwich).
2539
     * Replaced by Hong Kong 1963(67) for military purposes only in 1967. Replaced by Hong Kong 1980.
2540
     */
2541
    public const EPSG_HONG_KONG_1963 = 'urn:ogc:def:datum:EPSG::6738';
2542
2543
    /**
2544
     * Hong Kong 1963(67)
2545
     * Type: Geodetic
2546
     * Extent: China - Hong Kong - onshore and offshore.
2547
     * Fundamental point: Trig "Zero", 38.4 feet south along the transit circle of the Kowloon Observatory. Latitude
2548
     * 22°18'12.82"N, longitude 114°10'18.75"E (of Greenwich).
2549
     * Replaces Hong Kong 1963 for military purposes only in 1967. Replaced by Hong Kong 1980.
2550
     */
2551
    public const EPSG_HONG_KONG_1963_67 = 'urn:ogc:def:datum:EPSG::6739';
2552
2553
    /**
2554
     * Hong Kong 1980
2555
     * Type: Geodetic
2556
     * Extent: China - Hong Kong - onshore and offshore.
2557
     * Fundamental point: Trig "Zero", 38.4 feet south along the transit circle of the Kowloon Observatory. Latitude
2558
     * 22°18'12.82"N, longitude 114°10'18.75"E (of Greenwich).
2559
     * Replaces Hong Kong 1963 and Hong Kong 1963(67).
2560
     */
2561
    public const EPSG_HONG_KONG_1980 = 'urn:ogc:def:datum:EPSG::6611';
2562
2563
    /**
2564
     * Hong Kong Chart Datum
2565
     * Type: Vertical
2566
     * Extent: China - Hong Kong - offshore.
2567
     * Approximates to Lowest Astronomic Tide level (LAT).
2568
     * Chart datum is 0.15 metres below Hong Kong Principal Datum (code 5135) and 1.38m below MSL at Quarry Bay.
2569
     */
2570
    public const EPSG_HONG_KONG_CHART_DATUM = 'urn:ogc:def:datum:EPSG::5136';
2571
2572
    /**
2573
     * Hong Kong Geodetic
2574
     * Type: Geodetic
2575
     * Extent: China - Hong Kong - onshore and offshore.
2576
     * ITRF96 at epoch 1998.121
2577
     * Locally sometimes referred to as ITRF96 or WGS 84, these are not strictly correct as it applies only at epoch
2578
     * 1998.121 and ignores subsequent tectonic plate motion.
2579
     */
2580
    public const EPSG_HONG_KONG_GEODETIC = 'urn:ogc:def:datum:EPSG::1209';
2581
2582
    /**
2583
     * Hong Kong Principal Datum
2584
     * Type: Vertical
2585
     * Extent: China - Hong Kong - onshore.
2586
     * 1.23m below the mean of 19 years (1965-83) observations of tide levels at North Point, Victoria Harbour.
2587
     */
2588
    public const EPSG_HONG_KONG_PRINCIPAL_DATUM = 'urn:ogc:def:datum:EPSG::5135';
2589
2590
    /**
2591
     * Horta
2592
     * Type: Vertical
2593
     * Extent: Portugal - central Azores - Faial island onshore.
2594
     * Mean Sea Level during 1935 at Horta.
2595
     * Orthometric heights.
2596
     */
2597
    public const EPSG_HORTA = 'urn:ogc:def:datum:EPSG::1104';
2598
2599
    /**
2600
     * Hu Tzu Shan 1950
2601
     * Type: Geodetic
2602
     * Extent: Taiwan, Republic of China - onshore - Taiwan Island, Penghu (Pescadores) Islands.
2603
     * Fundamental point: Hu Tzu Shan. Latitude: 23°58'32.34"N, longitude: 120°58'25.975"E (of Greenwich).
2604
     */
2605
    public const EPSG_HU_TZU_SHAN_1950 = 'urn:ogc:def:datum:EPSG::6236';
2606
2607
    /**
2608
     * Huahine SAU 2001
2609
     * Type: Vertical
2610
     * Extent: French Polynesia - Society Islands - Huahine.
2611
     * Fundamental benchmark: SHOM B3
2612
     * Included as part of NGPF - see datum code 5195.
2613
     */
2614
    public const EPSG_HUAHINE_SAU_2001 = 'urn:ogc:def:datum:EPSG::5200';
2615
2616
    /**
2617
     * Hungarian Datum 1909
2618
     * Type: Geodetic
2619
     * Extent: Hungary.
2620
     * Fundamental point not given in information source, but presumably Szolohegy which is origin of later HD72.
2621
     * Replaced earlier HD1863 adjustment also on Bessel ellipsoid. Both HD1863 and HD1909 were originally on Ferro
2622
     * Prime Meridian but subsequently converted to Greenwich. Replaced by HD72 (datum code 6237).
2623
     */
2624
    public const EPSG_HUNGARIAN_DATUM_1909 = 'urn:ogc:def:datum:EPSG::1024';
2625
2626
    /**
2627
     * Hungarian Datum 1972
2628
     * Type: Geodetic
2629
     * Extent: Hungary.
2630
     * Fundamental point: Szolohegy. Latitude: 47°17'32,6156"N, longitude 19°36'09.9865"E (of Greenwich); geoid
2631
     * height 6.56m.
2632
     * Replaced Hungarian Datum 1909 (EPSG datum code 1024).
2633
     */
2634
    public const EPSG_HUNGARIAN_DATUM_1972 = 'urn:ogc:def:datum:EPSG::6237';
2635
2636
    /**
2637
     * IG05 Intermediate Datum
2638
     * Type: Geodetic
2639
     * Extent: Israel - onshore; Palestine Territory - onshore.
2640
     * Defined by transformation from IGD05 at epoch 2004.75.
2641
     */
2642
    public const EPSG_IG05_INTERMEDIATE_DATUM = 'urn:ogc:def:datum:EPSG::1142';
2643
2644
    /**
2645
     * IG05/12 Intermediate Datum
2646
     * Type: Geodetic
2647
     * Extent: Israel - onshore; Palestine Territory - onshore.
2648
     * Defined by transformation from IGD05/12 at epoch 2012.00.
2649
     */
2650
    public const EPSG_IG05_12_INTERMEDIATE_DATUM = 'urn:ogc:def:datum:EPSG::1144';
2651
2652
    /**
2653
     * IGC 1962 Arc of the 6th Parallel South
2654
     * Type: Geodetic
2655
     * Extent: The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse.
2656
     * Coordinates of 3 stations determined with respect to Arc 1950: Mulungu 4°47'39.2325"S, 29°59'37.5864"E;
2657
     * 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.
2658
     * Greenwich).
2659
     */
2660
    public const EPSG_IGC_1962_ARC_OF_THE_6TH_PARALLEL_SOUTH = 'urn:ogc:def:datum:EPSG::6697';
2661
2662
    /**
2663
     * IGN 1962 Kerguelen
2664
     * Type: Geodetic
2665
     * Extent: French Southern Territories - Kerguelen onshore.
2666
     * K0 1949.
2667
     */
2668
    public const EPSG_IGN_1962_KERGUELEN = 'urn:ogc:def:datum:EPSG::6698';
2669
2670
    /**
2671
     * IGN 1966
2672
     * Type: Vertical
2673
     * Extent: French Polynesia - Society Islands - Tahiti.
2674
     * Fundamental benchmark: RN501
2675
     * Included as part of NGPF - see datum code 5195.
2676
     */
2677
    public const EPSG_IGN_1966 = 'urn:ogc:def:datum:EPSG::5196';
2678
2679
    /**
2680
     * IGN 1988 LS
2681
     * Type: Vertical
2682
     * Extent: Guadeloupe - onshore - Les Saintes.
2683
     * Mean sea level 1984 at Terre de Haut. Origin = marker O de -5 with defined height of 1.441m above msl. IGN 1988
2684
     * LS height 0.00m is 0.46m above 1987 sounding datum; this approximately corresponds with msl at Pointe-à-Pitre
2685
     * (see datum code 5155, CRS 5757).
2686
     * Orthometric heights.
2687
     */
2688
    public const EPSG_IGN_1988_LS = 'urn:ogc:def:datum:EPSG::5210';
2689
2690
    /**
2691
     * IGN 1988 MG
2692
     * Type: Vertical
2693
     * Extent: Guadeloupe - onshore - Marie-Galante.
2694
     * Mean sea level 1987 at Grand-Bourg. Origin = marker M0-I with defined height of 0.832m above msl. IGN 1988 MG
2695
     * height 0.00m is 0.46m above 1987 sounding datum; this approximately corresponds with msl at Pointe-à-Pitre (see
2696
     * datum code 5155, CRS code 5757).
2697
     * Orthometric heights.
2698
     */
2699
    public const EPSG_IGN_1988_MG = 'urn:ogc:def:datum:EPSG::5211';
2700
2701
    /**
2702
     * IGN 1988 SB
2703
     * Type: Vertical
2704
     * Extent: Guadeloupe - onshore - St Barthelemy island.
2705
     * Mean sea level 1988 at port of Gustavia. Origin = marker A.ef-2 with defined height of 0.621m above msl. IGN
2706
     * 1988 SB height 0.00m deduced to be 0.201m above mean sea level at Pointe-à-Pitre.
2707
     * Orthometric heights.
2708
     */
2709
    public const EPSG_IGN_1988_SB = 'urn:ogc:def:datum:EPSG::5213';
2710
2711
    /**
2712
     * IGN 1988 SM
2713
     * Type: Vertical
2714
     * Extent: Guadeloupe - onshore - St Martin island.
2715
     * Mean sea level 1949-1950 deduced at Fort Marigot. Origin = marker AS-13 with defined height of 6.990m above msl.
2716
     * IGN 1988 SM height 0.00m deduced to be 0.41m above sounding datum.
2717
     * Orthometric heights.
2718
     */
2719
    public const EPSG_IGN_1988_SM = 'urn:ogc:def:datum:EPSG::5214';
2720
2721
    /**
2722
     * IGN 1992 LD
2723
     * Type: Vertical
2724
     * Extent: Guadeloupe - onshore - La Desirade.
2725
     * Mean sea level at Pointe-à-Pitre. Origin = marker A with defined height of 0.792m above msl. IGN 1992 LD height
2726
     * 0.00m is 0.629m above sounding datum at Pointe-à-Pitre.
2727
     * Orthometric heights. Replaced by IGN 2008 LD (datum code 1250).
2728
     */
2729
    public const EPSG_IGN_1992_LD = 'urn:ogc:def:datum:EPSG::5212';
2730
2731
    /**
2732
     * IGN 2008 LD
2733
     * Type: Vertical
2734
     * Extent: Guadeloupe - onshore - La Desirade.
2735
     * Mean sea level at Pointe-à-Pitre. Origin = IGN Marker 20A with defined height of 0.50 m above msl of 1987.
2736
     * Orthometric heights. Replaces IGN 1992 LD (datum code 5212).
2737
     */
2738
    public const EPSG_IGN_2008_LD = 'urn:ogc:def:datum:EPSG::1250';
2739
2740
    /**
2741
     * IGN Astro 1960
2742
     * Type: Geodetic
2743
     * Extent: Mauritania - onshore.
2744
     * Realised through a set of independent astronomically-positioned points.
2745
     * Observed during 1959-1960. Independent points not connected through a network. Relative accuracy estimated at
2746
     * 50-100m. Replaced by Mauritania 1999 (datum code 6702).
2747
     */
2748
    public const EPSG_IGN_ASTRO_1960 = 'urn:ogc:def:datum:EPSG::6700';
2749
2750
    /**
2751
     * IGN53 Mare
2752
     * Type: Geodetic
2753
     * Extent: New Caledonia - Loyalty Islands - Mare.
2754
     * South-east end of the La Roche base.
2755
     */
2756
    public const EPSG_IGN53_MARE = 'urn:ogc:def:datum:EPSG::6641';
2757
2758
    /**
2759
     * IGN56 Lifou
2760
     * Type: Geodetic
2761
     * Extent: New Caledonia - Loyalty Islands - Lifou.
2762
     * South end of the Goume base.
2763
     */
2764
    public const EPSG_IGN56_LIFOU = 'urn:ogc:def:datum:EPSG::6633';
2765
2766
    /**
2767
     * IGN63 Hiva Oa
2768
     * Type: Geodetic
2769
     * Extent: French Polynesia - Marquesas Islands - Hiva Oa and Tahuata.
2770
     * Fundamental point: Atuona. Latitude: 9°48'27.20"S, longitude: 139°02'15.45"W (of Greenwich).
2771
     * Replaced by RGPF (datum code 6687).
2772
     */
2773
    public const EPSG_IGN63_HIVA_OA = 'urn:ogc:def:datum:EPSG::6689';
2774
2775
    /**
2776
     * IGN72 Grande Terre
2777
     * Type: Geodetic
2778
     * Extent: New Caledonia - Grande Terre.
2779
     * North end of Gomen base.
2780
     */
2781
    public const EPSG_IGN72_GRANDE_TERRE = 'urn:ogc:def:datum:EPSG::6634';
2782
2783
    /**
2784
     * IGN72 Nuku Hiva
2785
     * Type: Geodetic
2786
     * Extent: French Polynesia - Marquesas Islands - Nuku Hiva, Ua Huka and Ua Pou.
2787
     * Fundamental point: Taiohae. Latitude: 8°55'03.97"S, longitude: 140°05'36.24"W (of Greenwich).
2788
     * Replaced by RGPF (datum code 6687).
2789
     */
2790
    public const EPSG_IGN72_NUKU_HIVA = 'urn:ogc:def:datum:EPSG::6630';
2791
2792
    /**
2793
     * IGS00
2794
     * Type: Dynamic geodetic
2795
     * Extent: World.
2796
     * Derived from ITRF2000 at epoch 1998.00 through a subset of 54 stable IGS station coordinates. Preserves the ITRF
2797
     * origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques.
2798
     * Used for IGS products from GPS week 1143 through GPS week 1252 (2001-12-02 through 2004-01-10). Replaces IGS97,
2799
     * replaced by IGb00. For all practical purposes coincident with ITRF2000.
2800
     */
2801
    public const EPSG_IGS00 = 'urn:ogc:def:datum:EPSG::1245';
2802
2803
    /**
2804
     * IGS05
2805
     * Type: Dynamic geodetic
2806
     * Extent: World.
2807
     * Derived from ITRF2005 at epoch 2000.00 through a subset of 139 stable IGS station coordinates. Preserves the
2808
     * ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic
2809
     * techniques.
2810
     * Used for IGS products from GPS week 1400 through GPS week 1631 (2006-11-05 to 2011-04-16). Replaces IGb00,
2811
     * replaced by IGb08. For all practical purposes coincident with ITRF2005.
2812
     */
2813
    public const EPSG_IGS05 = 'urn:ogc:def:datum:EPSG::1247';
2814
2815
    /**
2816
     * IGS08
2817
     * Type: Dynamic geodetic
2818
     * Extent: World.
2819
     * Derived from ITRF2008 at epoch 2005.00 through a subset of 232 stable IGS station coordinates. Preserves the
2820
     * ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic
2821
     * techniques.
2822
     * Used for IGS products from GPS week 1632 through GPS week 1708 (2011-04-17 through 2012-10-06). Replaces IGS05.
2823
     * Replaced by IGb08. For all practical purposes coincident with ITRF2008.
2824
     */
2825
    public const EPSG_IGS08 = 'urn:ogc:def:datum:EPSG::1141';
2826
2827
    /**
2828
     * IGS14
2829
     * Type: Dynamic geodetic
2830
     * Extent: World.
2831
     * Derived from ITRF2014 at epoch 2010.00 through a subset of 252 stable IGS station coordinates. Preserves the
2832
     * ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic
2833
     * techniques.
2834
     * Used for IGS products from GPS week 1934 (2017-01-29) through GPS week 2105 (2020-05-16). Replaces IGb08,
2835
     * replaced by IGb14. For all practical purposes coincident with ITRF2014.
2836
     */
2837
    public const EPSG_IGS14 = 'urn:ogc:def:datum:EPSG::1191';
2838
2839
    /**
2840
     * IGS20
2841
     * Type: Dynamic geodetic
2842
     * Extent: World.
2843
     * A subset of 332 stable, well-performing IGS stations from ITRF2020.
2844
     * Used for IGS products from GPS week 2238 (2022-11-27). Replaces IGb14. Compared to IGb14, IGS20 contains 98 new
2845
     * stations, mostly in previously sparsely covered areas, but with 25 IGb14 sites removed. For all practical
2846
     * purposes coincident with ITRF2020.
2847
     */
2848
    public const EPSG_IGS20 = 'urn:ogc:def:datum:EPSG::1333';
2849
2850
    /**
2851
     * IGS97
2852
     * Type: Dynamic geodetic
2853
     * Extent: World.
2854
     * Derived from ITRF97 at epoch 1997.00 through a subset of stable IGS station coordinates. Preserves the ITRF
2855
     * origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques.
2856
     * Used for IGS products from GPS week 1065 through GPS week 1142 (2000-06-04 to 2001-12-01). Replaced by IGS00.
2857
     * For all practical purposes coincident with ITRF97.
2858
     */
2859
    public const EPSG_IGS97 = 'urn:ogc:def:datum:EPSG::1244';
2860
2861
    /**
2862
     * IGb00
2863
     * Type: Dynamic geodetic
2864
     * Extent: World.
2865
     * Derived from ITRF2000 at epoch 1998.00 through a subset of 99 stable IGS station coordinates. Preserves the ITRF
2866
     * origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques.
2867
     * Used for IGS products from GPS week 1253 through GPS week 1399 (2004-01-11 to 2006-11-04). Replaces IGS00,
2868
     * replaced by IGS05. For all practical purposes coincident with ITRF2000.
2869
     */
2870
    public const EPSG_IGB00 = 'urn:ogc:def:datum:EPSG::1246';
2871
2872
    /**
2873
     * IGb08
2874
     * Type: Dynamic geodetic
2875
     * Extent: World.
2876
     * Derived from ITRF2008 at epoch 2005.00 through a subset of 232 stable IGS station coordinates. Preserves the
2877
     * ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic
2878
     * techniques.
2879
     * Used for IGS products from GPS week 1709 through GPS week 1933 (2012-10-07 to 2017-01-28). Replaces IGS08,
2880
     * replaced by IGS14. For all practical purposes coincident with ITRF2008.
2881
     */
2882
    public const EPSG_IGB08 = 'urn:ogc:def:datum:EPSG::1248';
2883
2884
    /**
2885
     * IGb14
2886
     * Type: Dynamic geodetic
2887
     * Extent: World.
2888
     * Daily IGS combined operational solutions of GPS weeks 730 to 2092. IGb14 is aligned in origin, scale and
2889
     * orientation to IGS14 via a subset of 233 selected stations. As IGS14 is aligned to ITRF2014, IGb14 is also
2890
     * aligned to ITRF2014.
2891
     * Used for IGS products from GPS week 2106 (2020-05-17). Replaces IGS14. Compared to IGS14, IGb14 benefits from 5
2892
     * more years of input data, a revised discontinuity list and 9 additional stations. For all practical purposes
2893
     * coincident with ITRF2014.
2894
     */
2895
    public const EPSG_IGB14 = 'urn:ogc:def:datum:EPSG::1272';
2896
2897
    /**
2898
     * IRENET95
2899
     * Type: Geodetic
2900
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
2901
     * ETRS89 stations in Ireland
2902
     * Densification of ETRS89.
2903
     */
2904
    public const EPSG_IRENET95 = 'urn:ogc:def:datum:EPSG::6173';
2905
2906
    /**
2907
     * Ibiza
2908
     * Type: Vertical
2909
     * Extent: Spain - Balearic Islands - Ibiza and Formentera - onshore.
2910
     * Mean Sea Level at Ibiza harbour between January 2003 and December 2005.
2911
     * Orthometric heights.
2912
     */
2913
    public const EPSG_IBIZA = 'urn:ogc:def:datum:EPSG::1277';
2914
2915
    /**
2916
     * Incheon
2917
     * Type: Vertical
2918
     * Extent: Republic of Korea (South Korea) - mainland onshore.
2919
     * MSL 1913-1916 at Incheon Bay.
2920
     */
2921
    public const EPSG_INCHEON = 'urn:ogc:def:datum:EPSG::1049';
2922
2923
    /**
2924
     * Indian 1954
2925
     * Type: Geodetic
2926
     * Extent: Myanmar (Burma) - onshore; Thailand - onshore.
2927
     * Extension of Kalianpur 1937 over Myanmar and Thailand.
2928
     */
2929
    public const EPSG_INDIAN_1954 = 'urn:ogc:def:datum:EPSG::6239';
2930
2931
    /**
2932
     * Indian 1960
2933
     * Type: Geodetic
2934
     * Extent: Cambodia - onshore; Vietnam - onshore and offshore Cuu Long basin.
2935
     * DMA extension over IndoChina of the Indian 1954 network adjusted  to better fit local geoid.
2936
     * Also known as Indian (DMA Reduced).
2937
     */
2938
    public const EPSG_INDIAN_1960 = 'urn:ogc:def:datum:EPSG::6131';
2939
2940
    /**
2941
     * Indian 1975
2942
     * Type: Geodetic
2943
     * Extent: Thailand - onshore plus offshore Gulf of Thailand.
2944
     * Fundamental point: Khau Sakaerang.
2945
     */
2946
    public const EPSG_INDIAN_1975 = 'urn:ogc:def:datum:EPSG::6240';
2947
2948
    /**
2949
     * Indian Spring Low Water
2950
     * Type: Vertical
2951
     * Extent: World.
2952
     * Not specific to any location or epoch.
2953
     * The level below MSL equal to the sum of the amplitudes of the harmonic constituents M2, S2, K1 and O1. It
2954
     * approximates mean lower low water spring tides (MLLWS).
2955
     */
2956
    public const EPSG_INDIAN_SPRING_LOW_WATER = 'urn:ogc:def:datum:EPSG::1085';
2957
2958
    /**
2959
     * Indonesian Datum 1974
2960
     * Type: Geodetic
2961
     * Extent: Indonesia - onshore.
2962
     * Fundamental point: Padang. Latitude: 0°56'38.414"S, longitude: 100°22' 8.804"E (of Greenwich). Ellipsoidal
2963
     * height 3.190m, gravity-related height 14.0m above mean sea level.
2964
     * Replaced by DGN95.
2965
     */
2966
    public const EPSG_INDONESIAN_DATUM_1974 = 'urn:ogc:def:datum:EPSG::6238';
2967
2968
    /**
2969
     * Indonesian Geoid 2020 version 1
2970
     * Type: Vertical
2971
     * Extent: Indonesia - onshore and offshore.
2972
     * Defined by INAGeoid2020 gravimetric geoid model v1 applied to SRGI2013.
2973
     * Uses gravity data observed to 2019 fitted to control points on Java and Bali.
2974
     */
2975
    public const EPSG_INDONESIAN_GEOID_2020_VERSION_1 = 'urn:ogc:def:datum:EPSG::1294';
2976
2977
    /**
2978
     * Indonesian Geoid 2020 version 2
2979
     * Type: Vertical
2980
     * Extent: Indonesia - onshore and offshore.
2981
     * Defined by INAGeoid2020 gravimetric geoid model v2 applied to SRGI2013.
2982
     * Uses gravity data observed to 2021 fitted to tide gauge benchmarks across Indonesia.
2983
     */
2984
    public const EPSG_INDONESIAN_GEOID_2020_VERSION_2 = 'urn:ogc:def:datum:EPSG::1328';
2985
2986
    /**
2987
     * Instantaneous Water Level
2988
     * Type: Vertical
2989
     * Extent: World.
2990
     * Instantaneous water level uncorrected for tide.
2991
     * Not specific to any location or epoch.
2992
     */
2993
    public const EPSG_INSTANTANEOUS_WATER_LEVEL = 'urn:ogc:def:datum:EPSG::5113';
2994
2995
    /**
2996
     * Institut Geographique du Congo Belge 1955
2997
     * Type: Geodetic
2998
     * Extent: The Democratic Republic of the Congo (Zaire) - Lower Congo (Bas Congo)
2999
     * Fundamental point: Yella east base. Latitude: 6°00'53.139"S, longitude: 12°58'29.287"E (of Greenwich).
3000
     * Replaced by IGC 1962 Arc of the 6th Parallel South, except for oil industry activities.
3001
     */
3002
    public const EPSG_INSTITUT_GEOGRAPHIQUE_DU_CONGO_BELGE_1955 = 'urn:ogc:def:datum:EPSG::6701';
3003
3004
    /**
3005
     * International Great Lakes Datum 1955
3006
     * Type: Vertical
3007
     * Extent: Canada and United States (USA) - Great Lakes basin and St Lawrence Seaway.
3008
     * Mean water level 1941-1956 at Pointe-au-Père (Father's Point), Quebec. Benchmark 1248-G = 3.794m.
3009
     * Dynamic heights. Adopted in 1962. Replaced by IGLD 1985 in January 1992.
3010
     */
3011
    public const EPSG_INTERNATIONAL_GREAT_LAKES_DATUM_1955 = 'urn:ogc:def:datum:EPSG::5204';
3012
3013
    /**
3014
     * International Great Lakes Datum 1985
3015
     * Type: Vertical
3016
     * Extent: Canada and United States (USA) - Great Lakes basin and St Lawrence Seaway.
3017
     * Mean water level 1970-1983 at Pointe-au-Père (Father's Point) and 1984-1988 at Rimouski, Quebec. Benchmark
3018
     * 1250-G = 6.273m.
3019
     * Dynamic heights. Replaces IGLD 1955 from January 1992.
3020
     */
3021
    public const EPSG_INTERNATIONAL_GREAT_LAKES_DATUM_1985 = 'urn:ogc:def:datum:EPSG::5205';
3022
3023
    /**
3024
     * International Terrestrial Reference Frame 1988
3025
     * Type: Dynamic geodetic
3026
     * Extent: World.
3027
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
3028
     * 3-dimensional Cartesian station coordinates (SCS).
3029
     * Realization of the IERS Terrestrial Reference System (ITRS) at epoch 1988.0. Replaced by ITRF89 (code 6648).
3030
     */
3031
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1988 = 'urn:ogc:def:datum:EPSG::6647';
3032
3033
    /**
3034
     * International Terrestrial Reference Frame 1989
3035
     * Type: Dynamic geodetic
3036
     * Extent: World.
3037
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
3038
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0.
3039
     * Realization of the IERS Terrestrial Reference System (ITRS) from April 1991. Replaces ITRF88 (code 6647).
3040
     * Replaced by ITRF90 (code 6649).
3041
     */
3042
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1989 = 'urn:ogc:def:datum:EPSG::6648';
3043
3044
    /**
3045
     * International Terrestrial Reference Frame 1990
3046
     * Type: Dynamic geodetic
3047
     * Extent: World.
3048
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
3049
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0.
3050
     * Realization of the IERS Terrestrial Reference System (ITRS) from December 1991. Replaces ITRF89 (code 6648).
3051
     * Replaced by ITRF91 (code 6650).
3052
     */
3053
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1990 = 'urn:ogc:def:datum:EPSG::6649';
3054
3055
    /**
3056
     * International Terrestrial Reference Frame 1991
3057
     * Type: Dynamic geodetic
3058
     * Extent: World.
3059
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
3060
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0.
3061
     * Realization of the IERS Terrestrial Reference System (ITRS) from October 1992. Replaces ITRF90 (code 6649).
3062
     * Replaced by ITRF92 (code 6651).
3063
     */
3064
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1991 = 'urn:ogc:def:datum:EPSG::6650';
3065
3066
    /**
3067
     * International Terrestrial Reference Frame 1992
3068
     * Type: Dynamic geodetic
3069
     * Extent: World.
3070
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of 287
3071
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0.
3072
     * Realization of the IERS Terrestrial Reference System (ITRS) from October 1993. Replaces ITRF91 (code 6650).
3073
     * Replaced by ITRF93 (code 6652).
3074
     */
3075
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1992 = 'urn:ogc:def:datum:EPSG::6651';
3076
3077
    /**
3078
     * International Terrestrial Reference Frame 1993
3079
     * Type: Dynamic geodetic
3080
     * Extent: World.
3081
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
3082
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1993.0.
3083
     * Realization of the IERS Terrestrial Reference System (ITRS) from October 1994. Replaces ITRF92 (code 6651).
3084
     * Replaced by ITRF94 (code 6653).
3085
     */
3086
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1993 = 'urn:ogc:def:datum:EPSG::6652';
3087
3088
    /**
3089
     * International Terrestrial Reference Frame 1994
3090
     * Type: Dynamic geodetic
3091
     * Extent: World.
3092
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
3093
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1993.0.
3094
     * Realization of the IERS Terrestrial Reference System (ITRS) from March 1996. Replaces ITRF93 (code 6652).
3095
     * Replaced by ITRF96 (code 6654).
3096
     */
3097
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1994 = 'urn:ogc:def:datum:EPSG::6653';
3098
3099
    /**
3100
     * International Terrestrial Reference Frame 1996
3101
     * Type: Dynamic geodetic
3102
     * Extent: World.
3103
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
3104
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1997.0.
3105
     * Realization of the IERS Terrestrial Reference System (ITRS) from May 1998. Replaces ITRF94 (code 6653). Replaced
3106
     * by ITRF97 (code 6655).
3107
     */
3108
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1996 = 'urn:ogc:def:datum:EPSG::6654';
3109
3110
    /**
3111
     * International Terrestrial Reference Frame 1997
3112
     * Type: Dynamic geodetic
3113
     * Extent: World.
3114
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
3115
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1997.0.
3116
     * Realization of the IERS Terrestrial Reference System (ITRS) from May 1999. Replaces ITRF96 (code 6654). Replaced
3117
     * by ITRF2000 (code 6656).
3118
     */
3119
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1997 = 'urn:ogc:def:datum:EPSG::6655';
3120
3121
    /**
3122
     * International Terrestrial Reference Frame 2000
3123
     * Type: Dynamic geodetic
3124
     * Extent: World.
3125
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
3126
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1997.0.
3127
     * Realization of the IERS Terrestrial Reference System (ITRS) from 2004. Replaces ITRF97 (code 6655). Replaced by
3128
     * ITRF2005 (code 6896).
3129
     */
3130
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2000 = 'urn:ogc:def:datum:EPSG::6656';
3131
3132
    /**
3133
     * International Terrestrial Reference Frame 2005
3134
     * Type: Dynamic geodetic
3135
     * Extent: World.
3136
     * Origin at geocentre, originally orientated to the BIH Terrestrial System at epoch 1984.0 then adjusted to ensure
3137
     * zero net rotation to earth's overall tectonic motion. Defined by time series of Cartesian station coordinates
3138
     * for epoch 2000.0.
3139
     * Realization of the IERS Terrestrial Reference System (ITRS) from September 2007. Replaces ITRF2000 (code 6656).
3140
     * Replaced by ITRF2008 (datum code 1061).
3141
     */
3142
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2005 = 'urn:ogc:def:datum:EPSG::6896';
3143
3144
    /**
3145
     * International Terrestrial Reference Frame 2008
3146
     * Type: Dynamic geodetic
3147
     * Extent: World.
3148
     * Origin at geocentre. The ITRF2008 origin is defined in such a way that there are null translation parameters at
3149
     * epoch 2005.0 and null translation rates between the ITRF2008 and the ILRS SLR time series.
3150
     * Realization of the IERS Terrestrial Reference System (ITRS) from 2012. Replaces ITRF2005 (code 6896).
3151
     */
3152
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2008 = 'urn:ogc:def:datum:EPSG::1061';
3153
3154
    /**
3155
     * International Terrestrial Reference Frame 2014
3156
     * Type: Dynamic geodetic
3157
     * Extent: World.
3158
     * Origin at geocentre. Origin = ILRS SLR long-term solution at epoch 2010.0. Zero scale and scale rate between
3159
     * ITRF2014 and the average of VLBI and SLR scales/rates. Orientation = ITRF2008@ 2010.0 with zero rotation rates
3160
     * between the ITRF2014 and ITRF2008.
3161
     * Realization of the IERS Terrestrial Reference System (ITRS). Replaces ITRF2008 (datum code 1061) from January
3162
     * 2016. Replaced by ITRF2020 (datum code 1322) from April 2022.
3163
     */
3164
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2014 = 'urn:ogc:def:datum:EPSG::1165';
3165
3166
    /**
3167
     * International Terrestrial Reference Frame 2020
3168
     * Type: Dynamic geodetic
3169
     * Extent: World.
3170
     * Origin at geocentre. Origin = ILRS SLR long-term solution at epoch 2015.0. Zero scale and scale rate between
3171
     * ITRF2020 and the average of VLBI and SLR scales/rates. Orientation = ITRF2014@ 2015.0 with zero rotation rates
3172
     * between the ITRF2020 and ITRF2014.
3173
     * Realization of the IERS Terrestrial Reference System (ITRS). Replaces ITRF2014 (datum code 1165) from April
3174
     * 2022.
3175
     */
3176
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2020 = 'urn:ogc:def:datum:EPSG::1322';
3177
3178
    /**
3179
     * Iraq-Kuwait Boundary Datum 1992
3180
     * Type: Geodetic
3181
     * Extent: Iraq - Kuwait boundary.
3182
     * Four stations established between September and December 1991 determined by GPS and Doppler observations.
3183
     */
3184
    public const EPSG_IRAQ_KUWAIT_BOUNDARY_DATUM_1992 = 'urn:ogc:def:datum:EPSG::6667';
3185
3186
    /**
3187
     * Iraqi Geospatial Reference System
3188
     * Type: Geodetic
3189
     * Extent: Iraq - onshore and offshore.
3190
     * ITRF2000 at epoch 1997.0.
3191
     */
3192
    public const EPSG_IRAQI_GEOSPATIAL_REFERENCE_SYSTEM = 'urn:ogc:def:datum:EPSG::1029';
3193
3194
    /**
3195
     * Islands Net 1993
3196
     * Type: Geodetic
3197
     * Extent: Iceland - onshore and offshore.
3198
     * ITRF93 at epoch 1993.6.
3199
     * Replaced by ISN2004 (datum code 1060).
3200
     */
3201
    public const EPSG_ISLANDS_NET_1993 = 'urn:ogc:def:datum:EPSG::6659';
3202
3203
    /**
3204
     * Islands Net 2004
3205
     * Type: Geodetic
3206
     * Extent: Iceland - onshore and offshore.
3207
     * ITRF2000 at epoch 2004.6.
3208
     * Replaces ISN93 (datum code 6659). Replaced by ISN2016 (datum code 1087).
3209
     */
3210
    public const EPSG_ISLANDS_NET_2004 = 'urn:ogc:def:datum:EPSG::1060';
3211
3212
    /**
3213
     * Islands Net 2016
3214
     * Type: Geodetic
3215
     * Extent: Iceland - onshore and offshore.
3216
     * ITRF2014 at epoch 2016.5.
3217
     * Replaces ISN2004 from September 2017.
3218
     */
3219
    public const EPSG_ISLANDS_NET_2016 = 'urn:ogc:def:datum:EPSG::1187';
3220
3221
    /**
3222
     * Israel 1993
3223
     * Type: Geodetic
3224
     * Extent: Israel - onshore; Palestine Territory - onshore.
3225
     * Fundamental point:  Latitude: 31°44'03.817"N, longitude: 35°12'16.261"E (of Greenwich).
3226
     * Replaces Palestine 1923 (datum code 6281). Replaced by IGD05 (datum code 1143).
3227
     */
3228
    public const EPSG_ISRAEL_1993 = 'urn:ogc:def:datum:EPSG::6141';
3229
3230
    /**
3231
     * Israeli Geodetic Datum 2005
3232
     * Type: Geodetic
3233
     * Extent: Israel - onshore and offshore.
3234
     * Defined by coordinates of 13 Active Positioning Network (APN) stations in ITRF2000 at epoch 2004.75. A further
3235
     * five APN stations were added in 2006.
3236
     * Replaces Israel 1993 (datum code 6141). Replaced by IGD05/12 (datum code 1115).
3237
     */
3238
    public const EPSG_ISRAELI_GEODETIC_DATUM_2005 = 'urn:ogc:def:datum:EPSG::1114';
3239
3240
    /**
3241
     * Israeli Geodetic Datum 2005(2012)
3242
     * Type: Geodetic
3243
     * Extent: Israel - onshore and offshore.
3244
     * Datum updated in 2012 with four APN stations removed from definition. Coordinate epoch remains ITRF2000 at epoch
3245
     * 2004.75.
3246
     * Replaces IGD05 (datum code 1114).
3247
     */
3248
    public const EPSG_ISRAELI_GEODETIC_DATUM_2005_2012 = 'urn:ogc:def:datum:EPSG::1115';
3249
3250
    /**
3251
     * Istituto Geografico Militaire 1995
3252
     * Type: Geodetic
3253
     * Extent: Italy - onshore and offshore; San Marino, Vatican City State.
3254
     * Densification of ETRF89 in Italy. Network of 1296 points observed 1992-1995 adjusted in 1996 constrained to 9
3255
     * ETRF89 points at epoch 1989.0. By April 2021 the framework was composed of 3104 points of the fundamental
3256
     * network and 3819 densification points.
3257
     * Replaced by RDN2008 (datum code 1132) from 2011-11-10.
3258
     */
3259
    public const EPSG_ISTITUTO_GEOGRAFICO_MILITAIRE_1995 = 'urn:ogc:def:datum:EPSG::6670';
3260
3261
    /**
3262
     * Iwo Jima 1945
3263
     * Type: Geodetic
3264
     * Extent: Japan - Iwo Jima island.
3265
     * Fundamental point: Beacon "E".
3266
     */
3267
    public const EPSG_IWO_JIMA_1945 = 'urn:ogc:def:datum:EPSG::6709';
3268
3269
    /**
3270
     * Jamaica 1875
3271
     * Type: Geodetic
3272
     * Extent: Jamaica - onshore.
3273
     * Fundamental point: Fort Charles Flagstaff. Latitude: 17°55'55.800"N, longitude: 76°56'37.260"W (of Greenwich).
3274
     */
3275
    public const EPSG_JAMAICA_1875 = 'urn:ogc:def:datum:EPSG::6241';
3276
3277
    /**
3278
     * Jamaica 1969
3279
     * Type: Geodetic
3280
     * Extent: Jamaica - onshore.
3281
     * Fundamental point: Fort Charles Flagstaff. Latitude: 17°55'55.800"N, longitude: 76°56'37.260"W (of Greenwich).
3282
     */
3283
    public const EPSG_JAMAICA_1969 = 'urn:ogc:def:datum:EPSG::6242';
3284
3285
    /**
3286
     * Jamaica 2001
3287
     * Type: Geodetic
3288
     * Extent: Jamaica - onshore and offshore. Includes Morant Cays and Pedro Cays.
3289
     * Aligned to WGS 84.
3290
     */
3291
    public const EPSG_JAMAICA_2001 = 'urn:ogc:def:datum:EPSG::6758';
3292
3293
    /**
3294
     * Jamestown 1971
3295
     * Type: Vertical
3296
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
3297
     * MSL at Jamestown 1971 defined through elevation of triangulation station Astro DOS 71/4 Ladder Hill Fort being
3298
     * 267.858 metres above MSL.
3299
     */
3300
    public const EPSG_JAMESTOWN_1971 = 'urn:ogc:def:datum:EPSG::1175';
3301
3302
    /**
3303
     * Japanese Geodetic Datum 2000
3304
     * Type: Geodetic
3305
     * Extent: Japan - onshore and offshore.
3306
     * ITRF94 at epoch 1997.0. Fundamental point: Tokyo-Taisho, latitude: 35°39'29.1572"N, longitude:
3307
     * 139°44'28.8759"E (of Greenwich).
3308
     * Instigated under amendment to the Japanese Surveying Law with effect from April 2002. Replaces Tokyo datum (code
3309
     * 6301). Replaced by JGD2011 (datum code 1128) with effect from 21st October 2011.
3310
     */
3311
    public const EPSG_JAPANESE_GEODETIC_DATUM_2000 = 'urn:ogc:def:datum:EPSG::6612';
3312
3313
    /**
3314
     * Japanese Geodetic Datum 2000 (vertical)
3315
     * Type: Vertical
3316
     * Extent: Japan - onshore mainland - Hokkaido, Honshu, Shikoku, Kyushu.
3317
     * 24.4140 metres above mean sea level Tokyo Bay.
3318
     * Orthometric heights. Replaces JSLD69 and JSLD72 with effect from April 2002. Replaced by JGD2011 (vertical)
3319
     * (datum code 1131) with effect from 21st October 2011.
3320
     */
3321
    public const EPSG_JAPANESE_GEODETIC_DATUM_2000_VERTICAL = 'urn:ogc:def:datum:EPSG::1130';
3322
3323
    /**
3324
     * Japanese Geodetic Datum 2011
3325
     * Type: Geodetic
3326
     * Extent: Japan - onshore and offshore.
3327
     * ITRF94 at epoch 1997.0 except for northern Honshu area impacted by 2011 Tohoku earthquake which is ITRF2008 at
3328
     * epoch 2011.395. Fundamental point: Tokyo-Taisho, latitude: 35°39'29.1572"N, longitude: 139°44'28.8869"E (of
3329
     * Greenwich).
3330
     * Instigated under amendment to the Japanese Surveying Law with effect from 21st October 2011. Replaces JGD2000
3331
     * (datum code 6612).
3332
     */
3333
    public const EPSG_JAPANESE_GEODETIC_DATUM_2011 = 'urn:ogc:def:datum:EPSG::1128';
3334
3335
    /**
3336
     * Japanese Geodetic Datum 2011 (vertical)
3337
     * Type: Vertical
3338
     * Extent: Japan - onshore mainland - Hokkaido, Honshu, Shikoku, Kyushu.
3339
     * 24.3900 metres above mean sea level Tokyo Bay.
3340
     * Orthometric heights. Replaces JGD2000 (vertical) (datum code 1130) with effect from 21st October 2011.
3341
     */
3342
    public const EPSG_JAPANESE_GEODETIC_DATUM_2011_VERTICAL = 'urn:ogc:def:datum:EPSG::1131';
3343
3344
    /**
3345
     * Japanese Standard Levelling Datum 1969
3346
     * Type: Vertical
3347
     * Extent: Japan - onshore mainland - Honshu, Shikoku, Kyushu.
3348
     * 24.4140 metres above mean sea level Tokyo Bay.
3349
     * Normal-orthometric heights. Replaces JSLD49. Replaced by JGD2000 (vertical) (datum code 1130) from April 2002.
3350
     */
3351
    public const EPSG_JAPANESE_STANDARD_LEVELLING_DATUM_1969 = 'urn:ogc:def:datum:EPSG::5122';
3352
3353
    /**
3354
     * Japanese Standard Levelling Datum 1972
3355
     * Type: Vertical
3356
     * Extent: Japan - onshore mainland - Hokkaido.
3357
     * Mean sea level Oshoro 1963-72.
3358
     * Normal-orthometric heights. Replaced by JGD2000 (vertical) (datum code 1130) with effect from April 2002.
3359
     */
3360
    public const EPSG_JAPANESE_STANDARD_LEVELLING_DATUM_1972 = 'urn:ogc:def:datum:EPSG::1129';
3361
3362
    /**
3363
     * Johnston Island 1961
3364
     * Type: Geodetic
3365
     * Extent: United States Minor Outlying Islands - Johnston Island.
3366
     */
3367
    public const EPSG_JOHNSTON_ISLAND_1961 = 'urn:ogc:def:datum:EPSG::6725';
3368
3369
    /**
3370
     * Jouik 1961
3371
     * Type: Geodetic
3372
     * Extent: Mauritania - coastal area north of Cape Timiris.
3373
     * Replaced by Mauritania 1999 (datum code 6702).
3374
     */
3375
    public const EPSG_JOUIK_1961 = 'urn:ogc:def:datum:EPSG::6679';
3376
3377
    /**
3378
     * KOC Construction Datum
3379
     * Type: Vertical
3380
     * Extent: Kuwait - onshore.
3381
     * Approximately 1.52m below MSL. Created for the construction of the Mina al Ahmadi refinery.
3382
     */
3383
    public const EPSG_KOC_CONSTRUCTION_DATUM = 'urn:ogc:def:datum:EPSG::5188';
3384
3385
    /**
3386
     * KOC Well Datum
3387
     * Type: Vertical
3388
     * Extent: Kuwait - onshore.
3389
     * Approximately 3.22m above MSL.
3390
     */
3391
    public const EPSG_KOC_WELL_DATUM = 'urn:ogc:def:datum:EPSG::5187';
3392
3393
    /**
3394
     * Kalianpur 1880
3395
     * Type: Geodetic
3396
     * Extent: Bangladesh - onshore; India - mainland onshore; Myanmar (Burma) - onshore; Pakistan - onshore.
3397
     * Fundamental point: Kalianpur. Latitude: 24°07'11.260"N, longitude: 77°39'17.570"E (of Greenwich).
3398
     * Includes 1916 extension into Burma (Myanmar). Replaced by 1937 adjustment.
3399
     */
3400
    public const EPSG_KALIANPUR_1880 = 'urn:ogc:def:datum:EPSG::6243';
3401
3402
    /**
3403
     * Kalianpur 1937
3404
     * Type: Geodetic
3405
     * Extent: Bangladesh - onshore; India - mainland onshore; Myanmar - onshore and Moattama area offshore; Pakistan -
3406
     * onshore.
3407
     * Fundamental point: Kalianpur. Latitude: 24° 07'11.260"N, longitude: 77°39'17.570"E (of Greenwich).
3408
     * Replaces 1880 adjustment except for topographic mapping. Replaced in Bangladesh and Pakistan by 1962 metrication
3409
     * conversion and in India by 1975 metrication conversion.
3410
     */
3411
    public const EPSG_KALIANPUR_1937 = 'urn:ogc:def:datum:EPSG::6144';
3412
3413
    /**
3414
     * Kalianpur 1962
3415
     * Type: Geodetic
3416
     * Extent: Pakistan - onshore and offshore.
3417
     * Fundamental point: Kalianpur. Latitude: 24° 07'11.260"N, longitude: 77°39'17.570"E (of Greenwich).
3418
     * 1937 adjustment rescaled by ratio metric conversions of Indian foot (1937) to Indian foot (1962).
3419
     */
3420
    public const EPSG_KALIANPUR_1962 = 'urn:ogc:def:datum:EPSG::6145';
3421
3422
    /**
3423
     * Kalianpur 1975
3424
     * Type: Geodetic
3425
     * Extent: India - mainland onshore.
3426
     * Fundamental point: Kalianpur. Latitude: 24° 07'11.260"N, longitude: 77°39'17.570"E (of Greenwich).
3427
     * 1937 adjustment rescaled by ratio metric conversions of Indian foot (1937) to Indian foot (1975).
3428
     */
3429
    public const EPSG_KALIANPUR_1975 = 'urn:ogc:def:datum:EPSG::6146';
3430
3431
    /**
3432
     * Kandawala
3433
     * Type: Geodetic
3434
     * Extent: Sri Lanka - onshore.
3435
     * Fundamental point: Kandawala. Latitude: 7°14'06.838"N, longitude: 79°52'36.670"E.
3436
     */
3437
    public const EPSG_KANDAWALA = 'urn:ogc:def:datum:EPSG::6244';
3438
3439
    /**
3440
     * Karbala 1979
3441
     * Type: Geodetic
3442
     * Extent: Iraq - onshore.
3443
     * Fundamental point: Karbala. Latitude: 32°34'14.4941"N, longitude: 44°00'49.6379"E.
3444
     * National geodetic network established by Polservice consortium.
3445
     */
3446
    public const EPSG_KARBALA_1979 = 'urn:ogc:def:datum:EPSG::6743';
3447
3448
    /**
3449
     * Kartastokoordinaattijarjestelma (1966)
3450
     * Type: Geodetic
3451
     * Extent: Finland - onshore.
3452
     * Adjustment with fundamental point SF31 based on ED50 transformed to best fit the older VVJ adjustment.
3453
     * Adopted in 1970.
3454
     */
3455
    public const EPSG_KARTASTOKOORDINAATTIJARJESTELMA_1966 = 'urn:ogc:def:datum:EPSG::6123';
3456
3457
    /**
3458
     * Kasai 1953
3459
     * Type: Geodetic
3460
     * Extent: The Democratic Republic of the Congo (Zaire) - Kasai - south of 5°S and east of 21°30'E.
3461
     * Two stations of the Katanga triangulation with ellipsoid change applied: Kabila, latitude 6°58'34.023"S,
3462
     * longitude 23°50'24.028"E (of Greenwich); and Gandajika NW base, latitude 6°45'01.057"S, longitude
3463
     * 23°57'03.038"E (of Greenwich).
3464
     * Replaced by IGC 1962 Arc of the 6th Parallel South.
3465
     */
3466
    public const EPSG_KASAI_1953 = 'urn:ogc:def:datum:EPSG::6696';
3467
3468
    /**
3469
     * Katanga 1955
3470
     * Type: Geodetic
3471
     * Extent: The Democratic Republic of the Congo (Zaire) - Katanga.
3472
     * Fundamental point: Tshinsenda A. Latitude: 12°30'31.568"S, longitude: 28°01'02.971"E (of Greenwich).
3473
     * Replaces earlier adjustments.
3474
     */
3475
    public const EPSG_KATANGA_1955 = 'urn:ogc:def:datum:EPSG::6695';
3476
3477
    /**
3478
     * Kertau (RSO)
3479
     * Type: Geodetic
3480
     * Extent: Malaysia - West Malaysia; Singapore.
3481
     * Adopts metric conversion of 0.914398 metres per yard exactly. This is a truncation of the Sears 1922 ratio.
3482
     */
3483
    public const EPSG_KERTAU_RSO = 'urn:ogc:def:datum:EPSG::6751';
3484
3485
    /**
3486
     * Kertau 1968
3487
     * Type: Geodetic
3488
     * Extent: Malaysia - West Malaysia onshore and offshore east coast; Singapore - onshore and offshore.
3489
     * Fundamental point: Kertau. Latitude: 3°27'50.710"N, longitude: 102°37'24.550"E (of Greenwich).
3490
     * Replaces MRT48 and earlier adjustments. Adopts metric conversion of 39.370113 inches per metre. Not used for
3491
     * 1969 metrication of RSO grid - see Kertau (RSO) (code 6751).
3492
     */
3493
    public const EPSG_KERTAU_1968 = 'urn:ogc:def:datum:EPSG::6245';
3494
3495
    /**
3496
     * Kingdom of Saudi Arabia Geodetic Reference Frame 2017
3497
     * Type: Geodetic
3498
     * Extent: Saudi Arabia - onshore and offshore.
3499
     * ITRF2014 at epoch 2017.00.
3500
     * Realized by 333 GNSS stations in Saudi Arabia aligned to ITRF2014 through core network of 46 stations adjusted
3501
     * to 15 IGS stations.
3502
     */
3503
    public const EPSG_KINGDOM_OF_SAUDI_ARABIA_GEODETIC_REFERENCE_FRAME_2017 = 'urn:ogc:def:datum:EPSG::1268';
3504
3505
    /**
3506
     * Kingdom of Saudi Arabia Vertical Reference Frame Jeddah 2014
3507
     * Type: Vertical
3508
     * Extent: Saudi Arabia - onshore.
3509
     * Jeddah tide gauge bench mark TGBM-B height of 1.7446m at 2014.75.
3510
     */
3511
    public const EPSG_KINGDOM_OF_SAUDI_ARABIA_VERTICAL_REFERENCE_FRAME_JEDDAH_2014 = 'urn:ogc:def:datum:EPSG::1269';
3512
3513
    /**
3514
     * Kiunga
3515
     * Type: Vertical
3516
     * Extent: Papua New Guinea - onshore south of 5°S and west of 144°E.
3517
     * PSM 9465 at Kiunga Airport. Propagated through bilinear interpolation of EGM2008 geoid model (transformation
3518
     * code 3858) reduced to PSM 9465 by offset of -3.0m.
3519
     */
3520
    public const EPSG_KIUNGA = 'urn:ogc:def:datum:EPSG::1151';
3521
3522
    /**
3523
     * Korean Datum 1985
3524
     * Type: Geodetic
3525
     * Extent: Republic of Korea (South Korea) - onshore.
3526
     * Fundamental point: Suwon. Latitude 37°16'31.9034"N, longitude 127°03'05.1451"E of Greenwich. This is
3527
     * consistent with the Tokyo 1918 datum latitude and longitude.
3528
     * Replaces Tokyo 1918 (datum code 6301). Replaced by Korea 2000 (datum code 6737).
3529
     */
3530
    public const EPSG_KOREAN_DATUM_1985 = 'urn:ogc:def:datum:EPSG::6162';
3531
3532
    /**
3533
     * Korean Datum 1995
3534
     * Type: Geodetic
3535
     * Extent: Republic of Korea (South Korea) - onshore.
3536
     */
3537
    public const EPSG_KOREAN_DATUM_1995 = 'urn:ogc:def:datum:EPSG::6166';
3538
3539
    /**
3540
     * Kosovo Reference System 2001
3541
     * Type: Geodetic
3542
     * Extent: Kosovo.
3543
     * Densification of ETRF97 in Kosovo at epoch 2001.25.
3544
     * First order network of 32 stations connected to 8 EUREF Permanant Network (EPN) stations observed march-April
3545
     * 2001. Densified in 2012.
3546
     */
3547
    public const EPSG_KOSOVO_REFERENCE_SYSTEM_2001 = 'urn:ogc:def:datum:EPSG::1251';
3548
3549
    /**
3550
     * Kousseri
3551
     * Type: Geodetic
3552
     * Extent: Cameroon - N'Djamena area.
3553
     * IGN astronomical station Dabanga; 11°55'05.9"N  14°38'40.8"E (of Greenwich).
3554
     */
3555
    public const EPSG_KOUSSERI = 'urn:ogc:def:datum:EPSG::6198';
3556
3557
    /**
3558
     * Kumul 34
3559
     * Type: Vertical
3560
     * Extent: Papua New Guinea - Papuan fold and thrust belt.
3561
     * Kumul Platform Station 34. Propagated through bilinear interpolation of EGM96 geoid model (transformation code
3562
     * 10084) reduced to Kumul 34 by offset of -0.87m.
3563
     */
3564
    public const EPSG_KUMUL_34 = 'urn:ogc:def:datum:EPSG::1150';
3565
3566
    /**
3567
     * Kusaie 1951
3568
     * Type: Geodetic
3569
     * Extent: Federated States of Micronesia - Kosrae (Kusaie).
3570
     */
3571
    public const EPSG_KUSAIE_1951 = 'urn:ogc:def:datum:EPSG::6735';
3572
3573
    /**
3574
     * Kuwait Oil Company
3575
     * Type: Geodetic
3576
     * Extent: Kuwait - onshore.
3577
     * Fundamental point: K28.  Latitude: 29°03'42.348"N, longitude: 48°08'42.558"E (of Greenwich).
3578
     */
3579
    public const EPSG_KUWAIT_OIL_COMPANY = 'urn:ogc:def:datum:EPSG::6246';
3580
3581
    /**
3582
     * Kuwait PWD
3583
     * Type: Vertical
3584
     * Extent: Kuwait - onshore.
3585
     * Mean Low Low Water (MLLW) at Kuwait City.
3586
     * Approximately 1.03m below MSL.
3587
     */
3588
    public const EPSG_KUWAIT_PWD = 'urn:ogc:def:datum:EPSG::5186';
3589
3590
    /**
3591
     * Kuwait Utility
3592
     * Type: Geodetic
3593
     * Extent: Kuwait - Kuwait City.
3594
     */
3595
    public const EPSG_KUWAIT_UTILITY = 'urn:ogc:def:datum:EPSG::6319';
3596
3597
    /**
3598
     * Kyrgyzstan Geodetic Datum 2006
3599
     * Type: Geodetic
3600
     * Extent: Kyrgyzstan.
3601
     * 6 stations of the Kyrgyzstan zero-order network tied to ITRF2005 at epoch 2006.70.
3602
     * The accuracy in the connection to ITRF2005 is estimated to be 5 mm in horizontal and 10-20 mm in height (95%
3603
     * confidence).
3604
     */
3605
    public const EPSG_KYRGYZSTAN_GEODETIC_DATUM_2006 = 'urn:ogc:def:datum:EPSG::1160';
3606
3607
    /**
3608
     * La Canoa
3609
     * Type: Geodetic
3610
     * Extent: Venezuela - onshore.
3611
     * Fundamental point: La Canoa. Latitude: 8°34'17.170"N, longitude: 63°51'34.880"W (of Greenwich).
3612
     * Origin and network incorporated within PSAD56 (datum code 6248).
3613
     */
3614
    public const EPSG_LA_CANOA = 'urn:ogc:def:datum:EPSG::6247';
3615
3616
    /**
3617
     * La Gomera
3618
     * Type: Vertical
3619
     * Extent: Spain - Canary Islands - La Gomera onshore.
3620
     * Mean Sea Level at San Sebastian de la Gomera harbour.
3621
     * Orthometric heights.
3622
     */
3623
    public const EPSG_LA_GOMERA = 'urn:ogc:def:datum:EPSG::1282';
3624
3625
    /**
3626
     * La Palma
3627
     * Type: Vertical
3628
     * Extent: Spain - Canary Islands - La Palma onshore.
3629
     * Mean Sea Level at Santa Cruz de la Palma harbour in 1997.
3630
     * Orthometric heights.
3631
     */
3632
    public const EPSG_LA_PALMA = 'urn:ogc:def:datum:EPSG::1283';
3633
3634
    /**
3635
     * Lagos 1955
3636
     * Type: Vertical
3637
     * Extent: Nigeria - onshore.
3638
     * Mean sea level at Lagos, 1912-1928.
3639
     */
3640
    public const EPSG_LAGOS_1955 = 'urn:ogc:def:datum:EPSG::5194';
3641
3642
    /**
3643
     * Lake
3644
     * Type: Geodetic
3645
     * Extent: Venezuela - Lake Maracaibo area, onshore and offshore in lake.
3646
     * Fundamental point: Maracaibo Cathedral. Latitude: 10°38'34.678"N, longitude: 71°36'20.224"W (of Greenwich).
3647
     */
3648
    public const EPSG_LAKE = 'urn:ogc:def:datum:EPSG::6249';
3649
3650
    /**
3651
     * Landeshohennetz 1995
3652
     * Type: Vertical
3653
     * Extent: Liechtenstein; Switzerland.
3654
     * Origin at Repere Pierre du Niton (RPN) defined as 373.6 metres above msl. This value derived from msl at
3655
     * Marseille in 1897 through the French Lallemand network.
3656
     * Orthometric heights. For scientific purposes only, replaces LN02.
3657
     */
3658
    public const EPSG_LANDESHOHENNETZ_1995 = 'urn:ogc:def:datum:EPSG::5128';
3659
3660
    /**
3661
     * Landesnivellement 1902
3662
     * Type: Vertical
3663
     * Extent: Liechtenstein; Switzerland.
3664
     * Origin at Repere Pierre du Niton (RPN) defined as 373.6 metres above msl. This value derived from msl at
3665
     * Marseille in 1897 through the French Lallemand network.
3666
     * Levelling observations not corrected for gravity field. For scientific purposes, replaced by LHHN95.
3667
     */
3668
    public const EPSG_LANDESNIVELLEMENT_1902 = 'urn:ogc:def:datum:EPSG::5127';
3669
3670
    /**
3671
     * Landshaedarkerfi Islands 2004
3672
     * Type: Vertical
3673
     * Extent: Iceland - onshore.
3674
     * Adjustment is referenced to mean sea level at Reykjavík epoch 2004.6.
3675
     */
3676
    public const EPSG_LANDSHAEDARKERFI_ISLANDS_2004 = 'urn:ogc:def:datum:EPSG::1190';
3677
3678
    /**
3679
     * Lanzarote
3680
     * Type: Vertical
3681
     * Extent: Spain - Canary Islands - Lanzarote onshore.
3682
     * Mean Sea Level at Naos harbour, Arrecife, between 1994 and 1995.
3683
     * Orthometric heights.
3684
     */
3685
    public const EPSG_LANZAROTE = 'urn:ogc:def:datum:EPSG::1278';
3686
3687
    /**
3688
     * Lao 1993
3689
     * Type: Geodetic
3690
     * Extent: Laos.
3691
     * Fundamental point: Lao 1982 coordinates of Pakxa pillar. Latitude: 18°23'57.0056"N, longitude:
3692
     * 103°38'41.8020"E (of Greenwich). Orientation parallel with WGS 84.
3693
     * Replaces Vientiane 1982. Replaced by Lao 1997.
3694
     */
3695
    public const EPSG_LAO_1993 = 'urn:ogc:def:datum:EPSG::6677';
3696
3697
    /**
3698
     * Lao National Datum 1997
3699
     * Type: Geodetic
3700
     * Extent: Laos.
3701
     * Fundamental point: Vientiane (Nongteng) Astro Pillar. Latitude: 18°01'31.3480"N, longitude: 102°30'57.1376"E
3702
     * (of Greenwich).
3703
     * Replaces Lao 1993.
3704
     */
3705
    public const EPSG_LAO_NATIONAL_DATUM_1997 = 'urn:ogc:def:datum:EPSG::6678';
3706
3707
    /**
3708
     * Latvian Height System 2000
3709
     * Type: Vertical
3710
     * Extent: Latvia - onshore.
3711
     * Latvian realisation of EVRF2007. Observed from 2000-2010 and reduced to epoch 2000.5 using empirical land uplift
3712
     * model of Latvia. EVRF2007 heights of 16 points around Latvia held fixed.
3713
     * Uses Normal heights.
3714
     */
3715
    public const EPSG_LATVIAN_HEIGHT_SYSTEM_2000 = 'urn:ogc:def:datum:EPSG::1162';
3716
3717
    /**
3718
     * Latvian coordinate system 2020
3719
     * Type: Geodetic
3720
     * Extent: Latvia - onshore and offshore.
3721
     * Aligned with ETRF2014 at epoch 2020.28. Derived at 5 well-distributed base stations of the Latvian GNSS
3722
     * permanent network (LATREF) in IGb14, transformed to ETRF2014 using EUREF parameters (CT code 8366).
3723
     * LKS-2020 is the second national realization of ETRS89. Replaces LKS-92 (datum code 6661).
3724
     */
3725
    public const EPSG_LATVIAN_COORDINATE_SYSTEM_2020 = 'urn:ogc:def:datum:EPSG::1356';
3726
3727
    /**
3728
     * Latvian geodetic coordinate system 1992
3729
     * Type: Geodetic
3730
     * Extent: Latvia - onshore and offshore.
3731
     * Constrained to 4 ETRS89 points in Latvia from the EUREF Baltic 1992 campaign.
3732
     * Densification of ETRS89 during the 1992 Baltic campaign. Replaced by Latvian coordinate system 2020 (datum code
3733
     * 1356).
3734
     */
3735
    public const EPSG_LATVIAN_GEODETIC_COORDINATE_SYSTEM_1992 = 'urn:ogc:def:datum:EPSG::6661';
3736
3737
    /**
3738
     * Le Pouce 1934
3739
     * Type: Geodetic
3740
     * Extent: Mauritius - mainland onshore.
3741
     * Fundamental point: Le Pouce. Latitude: 20°11'42.25"S, longitude: 57°31'18.58"E (of Greenwich).
3742
     */
3743
    public const EPSG_LE_POUCE_1934 = 'urn:ogc:def:datum:EPSG::6699';
3744
3745
    /**
3746
     * Leigon
3747
     * Type: Geodetic
3748
     * Extent: Ghana - onshore and offshore.
3749
     * Fundamental point: GCS Station 121, Leigon. Latitude: 5°38'52.27"N, longitude: 0°11'46.08"W (of Greenwich).
3750
     * Replaced Accra datum (code 6168) from 1978. Coordinates at Leigon fundamental point defined as Accra datum
3751
     * values for that point.
3752
     */
3753
    public const EPSG_LEIGON = 'urn:ogc:def:datum:EPSG::6250';
3754
3755
    /**
3756
     * Lerwick
3757
     * Type: Vertical
3758
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Shetland Islands onshore.
3759
     * Mean Sea Level at Lerwick 1979 correlated to pre-1900. Initially realised through levelling network adjustment,
3760
     * from 2002 redefined to be realised through OSGM geoid model.
3761
     * Orthometric heights.
3762
     */
3763
    public const EPSG_LERWICK = 'urn:ogc:def:datum:EPSG::5140';
3764
3765
    /**
3766
     * Liberia 1964
3767
     * Type: Geodetic
3768
     * Extent: Liberia - onshore.
3769
     * Fundamental point: Robertsfield. Latitude: 6°13'53.02"N, longitude: 10°21'35.44"W (of Greenwich).
3770
     */
3771
    public const EPSG_LIBERIA_1964 = 'urn:ogc:def:datum:EPSG::6251';
3772
3773
    /**
3774
     * Libyan Geodetic Datum 2006
3775
     * Type: Geodetic
3776
     * Extent: Libya - onshore and offshore.
3777
     * 5 stations tied to ITRF2000 through 8 days of continuous observations in May 2006.
3778
     * Replaces ELD79.
3779
     */
3780
    public const EPSG_LIBYAN_GEODETIC_DATUM_2006 = 'urn:ogc:def:datum:EPSG::6754';
3781
3782
    /**
3783
     * Lisbon 1890
3784
     * Type: Geodetic
3785
     * Extent: Portugal - mainland - onshore.
3786
     * Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42'43.631"N, longitude: 9°07'54.862"W of Greenwich.
3787
     * Replaced by Lisbon 1937 adjustment (which uses International 1924 ellipsoid).
3788
     */
3789
    public const EPSG_LISBON_1890 = 'urn:ogc:def:datum:EPSG::6666';
3790
3791
    /**
3792
     * Lisbon 1890 (Lisbon)
3793
     * Type: Geodetic
3794
     * Extent: Portugal - mainland - onshore.
3795
     * Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42'43.631"N, longitude: 0°E (of Lisbon).
3796
     * Replaced by Lisbon 1937 adjustment (which uses International 1924 ellipsoid).
3797
     */
3798
    public const EPSG_LISBON_1890_LISBON = 'urn:ogc:def:datum:EPSG::6904';
3799
3800
    /**
3801
     * Lisbon 1937
3802
     * Type: Geodetic
3803
     * Extent: Portugal - mainland - onshore.
3804
     * Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42'43.631"N, longitude: 9°07'54.862"W (of
3805
     * Greenwich).
3806
     * Replaces Lisbon 1890 adjustment (which used Bessel 1841 ellipsoid).
3807
     */
3808
    public const EPSG_LISBON_1937 = 'urn:ogc:def:datum:EPSG::6207';
3809
3810
    /**
3811
     * Lisbon 1937 (Lisbon)
3812
     * Type: Geodetic
3813
     * Extent: Portugal - mainland - onshore.
3814
     * Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42'43.631"N, longitude: 0°E (of Lisbon).
3815
     * Replaces Lisbon 1890 adjustment (which used Bessel 1841 ellipsoid).
3816
     */
3817
    public const EPSG_LISBON_1937_LISBON = 'urn:ogc:def:datum:EPSG::6803';
3818
3819
    /**
3820
     * Lithuania 1994 (ETRS89)
3821
     * Type: Geodetic
3822
     * Extent: Lithuania - onshore and offshore.
3823
     * Constrained to 4 ETRS89 points in Lithuania from the EUREF Baltic 1992 campaign.
3824
     * Densification of ETRS89 during the 1992 Baltic campaign.
3825
     */
3826
    public const EPSG_LITHUANIA_1994_ETRS89 = 'urn:ogc:def:datum:EPSG::6126';
3827
3828
    /**
3829
     * Lithuanian Height System 2007
3830
     * Type: Vertical
3831
     * Extent: Lithuania - onshore.
3832
     * Lithuanian realisation of EVRF2007. EVRF2007 heights of 10 points in Lithuania held fixed.
3833
     * Uses Normal heights.
3834
     */
3835
    public const EPSG_LITHUANIAN_HEIGHT_SYSTEM_2007 = 'urn:ogc:def:datum:EPSG::1299';
3836
3837
    /**
3838
     * Little Cayman Vertical Datum 1961
3839
     * Type: Vertical
3840
     * Extent: Cayman Islands - Little Cayman.
3841
     */
3842
    public const EPSG_LITTLE_CAYMAN_VERTICAL_DATUM_1961 = 'urn:ogc:def:datum:EPSG::1098';
3843
3844
    /**
3845
     * Local Tidal Datum at Pago Pago 2020
3846
     * Type: Vertical
3847
     * Extent: American Samoa - Tutuila island.
3848
     * MSL at Pago Pago 2011–2016.
3849
     * Normal-orthometric heights. Replaces ASVD02 (datum code 1125) in March 2020 after the ASVD02 benchmarks were
3850
     * destroyed by earthquake activity.
3851
     */
3852
    public const EPSG_LOCAL_TIDAL_DATUM_AT_PAGO_PAGO_2020 = 'urn:ogc:def:datum:EPSG::1302';
3853
3854
    /**
3855
     * Locodjo 1965
3856
     * Type: Geodetic
3857
     * Extent: Côte d'Ivoire (Ivory Coast) - onshore and offshore.
3858
     * Fundamental point: T5 Banco. Latitude: 5°18'50.5"N, longitude: 4°02'05.1"W (of Greenwich).
3859
     */
3860
    public const EPSG_LOCODJO_1965 = 'urn:ogc:def:datum:EPSG::6142';
3861
3862
    /**
3863
     * Loma Quintana
3864
     * Type: Geodetic
3865
     * Extent: Venezuela - onshore north of approximately 7°45'N.
3866
     * Fundamental point: Loma Quintana.
3867
     * Replaced by La Canoa (code 6247).
3868
     */
3869
    public const EPSG_LOMA_QUINTANA = 'urn:ogc:def:datum:EPSG::6288';
3870
3871
    /**
3872
     * Lome
3873
     * Type: Geodetic
3874
     * Extent: Togo - onshore and offshore.
3875
     */
3876
    public const EPSG_LOME = 'urn:ogc:def:datum:EPSG::6252';
3877
3878
    /**
3879
     * Low Water
3880
     * Type: Vertical
3881
     * Extent: World.
3882
     * Not specific to any location or epoch.
3883
     * The lowest level reached by the water surface in one tidal cycle. When used in inland (non-tidal) waters it is
3884
     * generally defined as a level which the daily mean water level would fall below less than 5% of the time. On a
3885
     * river it is a sloping surface.
3886
     */
3887
    public const EPSG_LOW_WATER = 'urn:ogc:def:datum:EPSG::1093';
3888
3889
    /**
3890
     * Lower Low Water Large Tide
3891
     * Type: Vertical
3892
     * Extent: World.
3893
     * Not specific to any location or epoch.
3894
     * The average of the lowest low waters, one from each of 19 years of observations.
3895
     */
3896
    public const EPSG_LOWER_LOW_WATER_LARGE_TIDE = 'urn:ogc:def:datum:EPSG::1083';
3897
3898
    /**
3899
     * Lowest Astronomical Tide
3900
     * Type: Vertical
3901
     * Extent: World.
3902
     * Not specific to any location or epoch.
3903
     * The lowest tide level which can be predicted to occur under average meteorological conditions and under any
3904
     * combination of astronomical conditions.
3905
     */
3906
    public const EPSG_LOWEST_ASTRONOMICAL_TIDE = 'urn:ogc:def:datum:EPSG::1080';
3907
3908
    /**
3909
     * Lowest Astronomical Tide Netherlands
3910
     * Type: Vertical
3911
     * Extent: Netherlands - offshore North Sea.
3912
     * Surface defined through the nllat hydroid model applied to ETRS89.
3913
     * The lowest tide level which can be predicted to occur under average meteorological conditions and under any
3914
     * combination of astronomical conditions.
3915
     */
3916
    public const EPSG_LOWEST_ASTRONOMICAL_TIDE_NETHERLANDS = 'urn:ogc:def:datum:EPSG::1290';
3917
3918
    /**
3919
     * Luxembourg Reference Frame
3920
     * Type: Geodetic
3921
     * Extent: Luxembourg.
3922
     * Fundamental point of 1930 triangulation: northern station of Habay-la-Neuve baseline in Belgium. Latitude:
3923
     * 49°43'24.408"N, longitude: 5°38'22.470"E (of Greenwich). Since 2006 LUREF has been realized by GNSS station
3924
     * positions and transformation from ETRF.
3925
     * The transformation from ETRF 2000 first defining LUREF in 2006 has been recomputed in 2014 and 2020.
3926
     */
3927
    public const EPSG_LUXEMBOURG_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::6181';
3928
3929
    /**
3930
     * Luzon 1911
3931
     * Type: Geodetic
3932
     * Extent: Philippines - onshore.
3933
     * Fundamental point: Balacan. Latitude: 13°33'41.000"N, longitude: 121°52'03.000"E (of Greenwich).
3934
     * Replaced by Philippine Reference system of 1992 (datum code 6683).
3935
     */
3936
    public const EPSG_LUZON_1911 = 'urn:ogc:def:datum:EPSG::6253';
3937
3938
    /**
3939
     * Lyon Turin Ferroviaire 2004
3940
     * Type: Geodetic
3941
     * Extent: France and Italy - on or related to the rail route from Lyon to Turin.
3942
     * Densification of ETRS89 realised through network of 40 stations adjusted to 7 EUREF reference stations in
3943
     * [email protected].
3944
     */
3945
    public const EPSG_LYON_TURIN_FERROVIAIRE_2004 = 'urn:ogc:def:datum:EPSG::1295';
3946
3947
    /**
3948
     * Lyttelton 1937
3949
     * Type: Vertical
3950
     * Extent: New Zealand - South Island - between approximately 41°20'S and 45°S - Lyttleton vertical CRS area.
3951
     * MSL at Lyttelton harbour over 9 years between 1918 and 1933.
3952
     */
3953
    public const EPSG_LYTTELTON_1937 = 'urn:ogc:def:datum:EPSG::5161';
3954
3955
    /**
3956
     * M'poraloko
3957
     * Type: Geodetic
3958
     * Extent: Gabon - onshore and offshore.
3959
     */
3960
    public const EPSG_MPORALOKO = 'urn:ogc:def:datum:EPSG::6266';
3961
3962
    /**
3963
     * MALS09 Intermediate Reference Frame
3964
     * Type: Geodetic
3965
     * Extent: United Kingdom (UK) - on or related to the rail route from London (Marylebone) to Leamington Spa.
3966
     * Defined through the application of the MALS09 NTv2 transformation to ETRS89 as realized through OSNet v2009
3967
     * CORS.
3968
     * Created in 2022 to support intermediate CRS MALS09-IRF in the emulation of the MALS09 Snake map projection.
3969
     */
3970
    public const EPSG_MALS09_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1343';
3971
3972
    /**
3973
     * MGI 1901
3974
     * Type: Geodetic
3975
     * Extent: Bosnia and Herzegovina; Croatia - onshore; Kosovo; Montenegro - onshore; North Macedonia; Serbia;
3976
     * Slovenia - onshore.
3977
     * Fundamental point: Hermannskogel. Latitude: 48°16'15.29"N, longitude: 16°17'55.04"E (of Greenwich).
3978
     * The longitude of the datum origin equates to the Albrecht 1902 value for the Ferro meridian of 17°39'46.02"
3979
     * west of Greenwich. Densified in 1948.
3980
     */
3981
    public const EPSG_MGI_1901 = 'urn:ogc:def:datum:EPSG::1031';
3982
3983
    /**
3984
     * MML07 Intermediate Reference Frame
3985
     * Type: Geodetic
3986
     * Extent: United Kingdom (UK) - on or related to the Midland Mainline rail route from Sheffield to London.
3987
     * Defined through the application of the MML07 NTv2 transformation (code 9369) to ETRS89 as realized through OSNet
3988
     * v2009 CORS.
3989
     * Created in 2020 to support intermediate CRS "MML07-IRF" in the emulation of the MML07 Snake map projection.
3990
     */
3991
    public const EPSG_MML07_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1271';
3992
3993
    /**
3994
     * MOLDOR11 Intermediate Reference Frame
3995
     * Type: Geodetic
3996
     * Extent: United Kingdom (UK) - on or related to the rail route from Manchester via Ordsall Lane and the Hope
3997
     * Valley to Dore Junction.
3998
     * Defined through the application of the MOLDOR11 NTv2 transformation (code 9878) to ETRS89 as realized through
3999
     * OSNet v2009 CORS.
4000
     * Created in 2021 to support intermediate CRS "MOLDOR11-IRF" in the emulation of the MOLDOR11 Snake map
4001
     * projection.
4002
     */
4003
    public const EPSG_MOLDOR11_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1315';
4004
4005
    /**
4006
     * MOLDREF99
4007
     * Type: Geodetic
4008
     * Extent: Moldova.
4009
     * Densification of ETRS89.
4010
     */
4011
    public const EPSG_MOLDREF99 = 'urn:ogc:def:datum:EPSG::1032';
4012
4013
    /**
4014
     * MOMRA Terrestrial Reference Frame 2000
4015
     * Type: Geodetic
4016
     * Extent: Saudi Arabia - onshore and offshore.
4017
     * ITRF2000 at epoch 2004.00.
4018
     * 13 CORS Fiducial Stations linked to 7 IGS stations by 10-day long GPS survey.
4019
     */
4020
    public const EPSG_MOMRA_TERRESTRIAL_REFERENCE_FRAME_2000 = 'urn:ogc:def:datum:EPSG::1218';
4021
4022
    /**
4023
     * MOMRA Vertical Geodetic Control
4024
     * Type: Vertical
4025
     * Extent: Saudi Arabia - onshore.
4026
     * Mean sea level Jeddah 1969.
4027
     */
4028
    public const EPSG_MOMRA_VERTICAL_GEODETIC_CONTROL = 'urn:ogc:def:datum:EPSG::1219';
4029
4030
    /**
4031
     * MOP78
4032
     * Type: Geodetic
4033
     * Extent: Wallis and Futuna - Wallis.
4034
     */
4035
    public const EPSG_MOP78 = 'urn:ogc:def:datum:EPSG::6639';
4036
4037
    /**
4038
     * MRH21 Intermediate Reference Frame
4039
     * Type: Geodetic
4040
     * Extent: United Kingdom (UK) - on or related to Midland Rail Hub, covering routes through Cardiff, Bristol,
4041
     * Gloucester, Derby, Birmingham, Leicester, and Lincoln.
4042
     * Defined through the application of the MRH21 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS.
4043
     * Created in 2021 to support intermediate CRS "MRH21-IRF" in the emulation of the MRH21 Snake map projection.
4044
     */
4045
    public const EPSG_MRH21_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1314';
4046
4047
    /**
4048
     * MWC18 Intermediate Reference Frame
4049
     * Type: Geodetic
4050
     * Extent: United Kingdom (UK) - on or related to the rail route from Manchester via Wigan and Liverpool to
4051
     * Chester.
4052
     * Defined through the application of the MWC18 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS.
4053
     * Created in 2022 to support intermediate CRS MWC18-IRF in the emulation of the MWC18 Snake map projection.
4054
     */
4055
    public const EPSG_MWC18_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1324';
4056
4057
    /**
4058
     * Macao 1920
4059
     * Type: Geodetic
4060
     * Extent: China - Macao - onshore and offshore.
4061
     * Fundamental point: Avenida Conselheiro Borja base A, later transferred to Monte da Barra, latitude
4062
     * 22°11'03.139"N, longitude 113°31'43.625"E (of Greenwich).
4063
     * Replaces Macao 1907. In 1955 an adjustment made in 1940 was assessed to have unresolvable conflicts and the 1920
4064
     * adjustment was reinstated.
4065
     */
4066
    public const EPSG_MACAO_1920 = 'urn:ogc:def:datum:EPSG::1207';
4067
4068
    /**
4069
     * Macao Geodetic Datum 2008
4070
     * Type: Geodetic
4071
     * Extent: China - Macao - onshore and offshore.
4072
     * ITRF2005 at epoch 2008.38.
4073
     * Locally sometimes referred to as ITRF2005, this is not strictly correct as it applies only at epoch 2008.38 and
4074
     * ignores subsequent tectonic plate motion.
4075
     */
4076
    public const EPSG_MACAO_GEODETIC_DATUM_2008 = 'urn:ogc:def:datum:EPSG::1208';
4077
4078
    /**
4079
     * Macao Height Datum
4080
     * Type: Vertical
4081
     * Extent: China - Macao - onshore and offshore.
4082
     * Mean sea level Ma Kau Seak 1925-1964.
4083
     */
4084
    public const EPSG_MACAO_HEIGHT_DATUM = 'urn:ogc:def:datum:EPSG::1210';
4085
4086
    /**
4087
     * Madrid 1870 (Madrid)
4088
     * Type: Geodetic
4089
     * Extent: Spain - mainland onshore.
4090
     * Fundamental point: Retiro observatory, Madrid.
4091
     * Replaced by ED50.
4092
     */
4093
    public const EPSG_MADRID_1870_MADRID = 'urn:ogc:def:datum:EPSG::6903';
4094
4095
    /**
4096
     * Madzansua
4097
     * Type: Geodetic
4098
     * Extent: Mozambique - west - Tete province.
4099
     * Fundamental point: Madzansua.
4100
     * Replaced by transformation to Tete datum (datum code 6127).
4101
     */
4102
    public const EPSG_MADZANSUA = 'urn:ogc:def:datum:EPSG::6128';
4103
4104
    /**
4105
     * Mahe 1971
4106
     * Type: Geodetic
4107
     * Extent: Seychelles - Mahe Island.
4108
     * Fundamental point: Station SITE. Latitude: 4°40'14.644"S, longitude: 55°28'44.488"E (of Greenwich).
4109
     * South East Island 1943 (datum code 1138) used for topographic mapping, cadastral and hydrographic survey.
4110
     */
4111
    public const EPSG_MAHE_1971 = 'urn:ogc:def:datum:EPSG::6256';
4112
4113
    /**
4114
     * Makassar
4115
     * Type: Geodetic
4116
     * Extent: Indonesia - south west Sulawesi.
4117
     * Fundamental point: station P1, Moncongloe. Latitude: 5°08'41.42"S, long 119°24'14.94"E (of Greenwich).
4118
     */
4119
    public const EPSG_MAKASSAR = 'urn:ogc:def:datum:EPSG::6257';
4120
4121
    /**
4122
     * Makassar (Jakarta)
4123
     * Type: Geodetic
4124
     * Extent: Indonesia - south west Sulawesi.
4125
     * Fundamental point: station P1, Moncongloe. Latitude 5°08'41.42"S, longitude 12°35'47.15"E (of Jakarta).
4126
     */
4127
    public const EPSG_MAKASSAR_JAKARTA = 'urn:ogc:def:datum:EPSG::6804';
4128
4129
    /**
4130
     * Malin Head
4131
     * Type: Vertical
4132
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
4133
     * Mean sea level between January 1960 and December 1969. Initially realised through levelling network adjustment,
4134
     * from 2002 redefined to be realised through OSGM geoid model.
4135
     * Orthometric heights.
4136
     */
4137
    public const EPSG_MALIN_HEAD = 'urn:ogc:def:datum:EPSG::5130';
4138
4139
    /**
4140
     * Mallorca
4141
     * Type: Vertical
4142
     * Extent: Spain - Balearic Islands - Mallorca onshore.
4143
     * Mean Sea Level at Palma de Mallorca harbour between April 1997 and December 2006.
4144
     * Orthometric heights.
4145
     */
4146
    public const EPSG_MALLORCA = 'urn:ogc:def:datum:EPSG::1275';
4147
4148
    /**
4149
     * Malongo 1987
4150
     * Type: Geodetic
4151
     * Extent: Angola (Cabinda) - offshore; The Democratic Republic of the Congo (Zaire) - offshore.
4152
     * Fundamental point: Station Y at Malongo base camp. Latitude: 5°23'30.810"S, longitude: 12°12'01.590"E (of
4153
     * Greenwich).
4154
     * Replaced Mhast (offshore) (code 6705) in 1987. Origin coordinates constrained to those of Mhast (offshore) but
4155
     * other station coordinates differ. References to "Mhast" since 1987 often should have stated "Malongo 1987".
4156
     */
4157
    public const EPSG_MALONGO_1987 = 'urn:ogc:def:datum:EPSG::6259';
4158
4159
    /**
4160
     * Manoca 1962
4161
     * Type: Geodetic
4162
     * Extent: Cameroon - coastal area.
4163
     * Reservoir centre at the  Manoca tower ("tube Suel"), 3°51'49.896"N, 9°36'49.347"E (of Greenwich).
4164
     * The intent of the Bukavu 1953 conference was to adopt the Clarke 1880 (RGS) ellipsoid (code 7012) but in
4165
     * practice this datum has used the IGN version. Replaces Douala 1948 (code 6192).
4166
     */
4167
    public const EPSG_MANOCA_1962 = 'urn:ogc:def:datum:EPSG::6193';
4168
4169
    /**
4170
     * Maputo
4171
     * Type: Vertical
4172
     * Extent: Mozambique - onshore.
4173
     * Mean sea level at Maputo.
4174
     */
4175
    public const EPSG_MAPUTO = 'urn:ogc:def:datum:EPSG::5121';
4176
4177
    /**
4178
     * Marco Geocentrico Nacional de Referencia
4179
     * Type: Geodetic
4180
     * Extent: Colombia - onshore and offshore. Includes San Andres y Providencia, Malpelo Islands, Roncador Bank,
4181
     * Serrana Bank and Serranilla Bank.
4182
     * Densification of SIRGAS95 (ITRF94 at epoch 1995.4) in Colombia. Bogota observatory coordinates: Latitude:
4183
     * 4°35'46.3215"N, longitude: 74°04'39.0285"W (of Greenwich).
4184
     * Densification of SIRGAS 1995 within Colombia. Replaces Bogota 1975 (datum code 6218).
4185
     */
4186
    public const EPSG_MARCO_GEOCENTRICO_NACIONAL_DE_REFERENCIA = 'urn:ogc:def:datum:EPSG::6686';
4187
4188
    /**
4189
     * Marco Geocentrico Nacional de Referencia 2018
4190
     * Type: Geodetic
4191
     * Extent: Colombia - onshore and offshore. Includes San Andres y Providencia, Malpelo Islands, Roncador Bank,
4192
     * Serrana Bank and Serranilla Bank.
4193
     * Densification of ITRF2014 at epoch 2018.0 in Colombia. Bogota observatory coordinates: Latitude:
4194
     * 4°35'46.33160"N, longitude: 74°04'39.02797"W (of Greenwich).
4195
     * Active network referenced to [email protected] and passive network referenced to [email protected] updated to
4196
     * ITRF2014 using IERS transformations EPSG:7790 and EPSG:8075 respectively then VEMOS2009 velocity model applied
4197
     * to bring coordinates to epoch 2018.0.
4198
     */
4199
    public const EPSG_MARCO_GEOCENTRICO_NACIONAL_DE_REFERENCIA_2018 = 'urn:ogc:def:datum:EPSG::1329';
4200
4201
    /**
4202
     * Marco Geodesico Nacional de Bolivia
4203
     * Type: Geodetic
4204
     * Extent: Bolivia.
4205
     * IGS05 (ITRF2005) at epoch 2010.2.  Densification of SIRGAS95 network in Bolivia, consisting of 125 passive
4206
     * geodetic stations and 8 continuous recording GPS stations.
4207
     * Densification of SIRGAS 1995 within Bolivia. Replaces PSAD56 (datum code 6248) in Bolivia.
4208
     */
4209
    public const EPSG_MARCO_GEODESICO_NACIONAL_DE_BOLIVIA = 'urn:ogc:def:datum:EPSG::1063';
4210
4211
    /**
4212
     * Marcus Island 1952
4213
     * Type: Geodetic
4214
     * Extent: Japan - onshore - Tokyo-to south of 28°N and east of 143°E - Minamitori-shima (Marcus Island).
4215
     * Marcus Island Astronomic Station.
4216
     */
4217
    public const EPSG_MARCUS_ISLAND_1952 = 'urn:ogc:def:datum:EPSG::6711';
4218
4219
    /**
4220
     * Marshall Islands 1960
4221
     * Type: Geodetic
4222
     * Extent: Marshall Islands - onshore. Wake atoll onshore.
4223
     */
4224
    public const EPSG_MARSHALL_ISLANDS_1960 = 'urn:ogc:def:datum:EPSG::6732';
4225
4226
    /**
4227
     * Martinique 1938
4228
     * Type: Geodetic
4229
     * Extent: Martinique - onshore.
4230
     * Fundamental point: Fort Desaix. Latitude: 14°36'54.090"N, longitude: 61°04'04.030"W (of Greenwich).
4231
     * Replaced by RRAF 1991 (datum code 1047).
4232
     */
4233
    public const EPSG_MARTINIQUE_1938 = 'urn:ogc:def:datum:EPSG::6625';
4234
4235
    /**
4236
     * Martinique 1955
4237
     * Type: Vertical
4238
     * Extent: Martinique - onshore.
4239
     * Mean sea level at Fort de France 1939. Marker DO-4-II on quay wall with elevation of 1.38m above msl.
4240
     * Orthometric heights. Replaced by Martinique 1987 (datum code 5154).
4241
     */
4242
    public const EPSG_MARTINIQUE_1955 = 'urn:ogc:def:datum:EPSG::5192';
4243
4244
    /**
4245
     * Martinique 1987
4246
     * Type: Vertical
4247
     * Extent: Martinique - onshore.
4248
     * Mean sea level 1939 at Fort de France. Origin = marker Nbc2 on rebuilt quay wall with defined elevation of 1.38m
4249
     * above msl. Martinique 1987 height 0.00m is 0.56m above SHOM sounding datum.
4250
     * Orthometric heights. Replaces Martinique 1955 (datum code 5192).
4251
     */
4252
    public const EPSG_MARTINIQUE_1987 = 'urn:ogc:def:datum:EPSG::5154';
4253
4254
    /**
4255
     * Massawa
4256
     * Type: Geodetic
4257
     * Extent: Eritrea - onshore and offshore.
4258
     */
4259
    public const EPSG_MASSAWA = 'urn:ogc:def:datum:EPSG::6262';
4260
4261
    /**
4262
     * Maupiti 83
4263
     * Type: Geodetic
4264
     * Extent: French Polynesia - Society Islands - Maupiti.
4265
     * Fundamental point: Pitiahe South Base. Latitude: 16°28'28.942"S, longitude: 152°14'55.059"W (of Greenwich).
4266
     * Replaced by RGPF (datum code 6687).
4267
     */
4268
    public const EPSG_MAUPITI_83 = 'urn:ogc:def:datum:EPSG::6692';
4269
4270
    /**
4271
     * Maupiti SAU 2001
4272
     * Type: Vertical
4273
     * Extent: French Polynesia - Society Islands - Maupiti.
4274
     * Fundamental benchmark: RN11
4275
     * Included as part of NGPF - see datum code 5195.
4276
     */
4277
    public const EPSG_MAUPITI_SAU_2001 = 'urn:ogc:def:datum:EPSG::5199';
4278
4279
    /**
4280
     * Mauritania 1999
4281
     * Type: Geodetic
4282
     * Extent: Mauritania - onshore and offshore.
4283
     * ITRF96 at epoch 1997.0
4284
     * A network of 36 GPS stations tied to ITRF96, 8 of which are IGN 1962 astronomic points.
4285
     */
4286
    public const EPSG_MAURITANIA_1999 = 'urn:ogc:def:datum:EPSG::6702';
4287
4288
    /**
4289
     * Mayotte 1950
4290
     * Type: Vertical
4291
     * Extent: Mayotte - onshore.
4292
     * IGN 1950 marker (height 0.0m) on southwest jetty at Dzaoudzi (Petite-Terre) is 2.18m above zero of tide gauge.
4293
     * SHOM 1953 marker on east (Issoufali) jetty at Dzaoudzi (height 4.74m) is the base for Mayotte heights.
4294
     * Datum transferred to benchmark RN0 with height of 2.774m above tide gauge on eastern jetty at Mamoudzou
4295
     * (Grand-Terre) in 1979.
4296
     */
4297
    public const EPSG_MAYOTTE_1950 = 'urn:ogc:def:datum:EPSG::5191';
4298
4299
    /**
4300
     * Mean High Water
4301
     * Type: Vertical
4302
     * Extent: World.
4303
     * Not specific to any location or epoch.
4304
     * The average height of the high waters over a 19-year period.
4305
     */
4306
    public const EPSG_MEAN_HIGH_WATER = 'urn:ogc:def:datum:EPSG::1092';
4307
4308
    /**
4309
     * Mean High Water Spring Tides
4310
     * Type: Vertical
4311
     * Extent: World.
4312
     * Not specific to any location or epoch.
4313
     * The average height of the high waters of spring tides.
4314
     */
4315
    public const EPSG_MEAN_HIGH_WATER_SPRING_TIDES = 'urn:ogc:def:datum:EPSG::1088';
4316
4317
    /**
4318
     * Mean Higher High Water
4319
     * Type: Vertical
4320
     * Extent: World.
4321
     * Not specific to any location or epoch.
4322
     * The average height of the higher high waters over a 19-year period.
4323
     */
4324
    public const EPSG_MEAN_HIGHER_HIGH_WATER = 'urn:ogc:def:datum:EPSG::1090';
4325
4326
    /**
4327
     * Mean Low Water
4328
     * Type: Vertical
4329
     * Extent: World.
4330
     * Not specific to any location or epoch.
4331
     * The average height of all low waters over a 19-year period.
4332
     */
4333
    public const EPSG_MEAN_LOW_WATER = 'urn:ogc:def:datum:EPSG::1091';
4334
4335
    /**
4336
     * Mean Low Water Spring Tides
4337
     * Type: Vertical
4338
     * Extent: World.
4339
     * Not specific to any location or epoch.
4340
     * The average height of the low waters of spring tides.
4341
     */
4342
    public const EPSG_MEAN_LOW_WATER_SPRING_TIDES = 'urn:ogc:def:datum:EPSG::1087';
4343
4344
    /**
4345
     * Mean Lower Low Water
4346
     * Type: Vertical
4347
     * Extent: World.
4348
     * Not specific to any location or epoch.
4349
     * The average height of the lower low waters over a 19-year period.
4350
     */
4351
    public const EPSG_MEAN_LOWER_LOW_WATER = 'urn:ogc:def:datum:EPSG::1089';
4352
4353
    /**
4354
     * Mean Lower Low Water Spring Tides
4355
     * Type: Vertical
4356
     * Extent: World.
4357
     * Not specific to any location or epoch.
4358
     * The average height of the lower low water spring tides.
4359
     */
4360
    public const EPSG_MEAN_LOWER_LOW_WATER_SPRING_TIDES = 'urn:ogc:def:datum:EPSG::1086';
4361
4362
    /**
4363
     * Mean Sea Level
4364
     * Type: Vertical
4365
     * Extent: World.
4366
     * Not specific to any location or epoch.
4367
     * The average height of the surface of the sea at a tide station for all stages of the tide over a 19-year period,
4368
     * usually determined from hourly height readings measured from a fixed predetermined reference level. Approximates
4369
     * geoid.
4370
     */
4371
    public const EPSG_MEAN_SEA_LEVEL = 'urn:ogc:def:datum:EPSG::5100';
4372
4373
    /**
4374
     * Mean Sea Level Netherlands
4375
     * Type: Vertical
4376
     * Extent: Netherlands - offshore North Sea.
4377
     * Surface defined through the nlgeo geoid model applied to ETRS89.
4378
     * Coincides with NAP datum plane. Approximates physical mean sea surface to a few decimetres.
4379
     */
4380
    public const EPSG_MEAN_SEA_LEVEL_NETHERLANDS = 'urn:ogc:def:datum:EPSG::1270';
4381
4382
    /**
4383
     * Mean Sea Level UK & Ireland VORF08
4384
     * Type: Vertical
4385
     * Extent: Ireland and United Kingdom (UK) (including Isle of Man and Channel Islands) - inshore, nearshore and
4386
     * offshore.
4387
     * MSL UK & Ireland VORF08 is defined by the Vertical Offshore Reference Frame v2.11 2008. MSL UK & Ireland VORF08
4388
     * is reduced to epoch 2000.0.
4389
     * OSGM05 model used.
4390
     */
4391
    public const EPSG_MEAN_SEA_LEVEL_UK_AND_IRELAND_VORF08 = 'urn:ogc:def:datum:EPSG::1330';
4392
4393
    /**
4394
     * Menorca
4395
     * Type: Vertical
4396
     * Extent: Spain - Balearic Islands - Menorca onshore.
4397
     * Mean Sea Level at Ciutadella harbour between June 2007 and June 2008.
4398
     * Orthometric heights.
4399
     */
4400
    public const EPSG_MENORCA = 'urn:ogc:def:datum:EPSG::1276';
4401
4402
    /**
4403
     * Merchich
4404
     * Type: Geodetic
4405
     * Extent: Africa - Morocco and Western Sahara - onshore.
4406
     * Fundamental point: Merchich. Latitude: 33°26'59.672"N, longitude: 7°33'27.295"W (of Greenwich).
4407
     */
4408
    public const EPSG_MERCHICH = 'urn:ogc:def:datum:EPSG::6261';
4409
4410
    /**
4411
     * Mexico ITRF2008
4412
     * Type: Geodetic
4413
     * Extent: Mexico - onshore and offshore.
4414
     * ITRF2008 at epoch 2010.00.
4415
     * Realised by a frame of 15 active GPS stations observed and adjusted in the ITRF2008. Includes ties to tide
4416
     * gauges. Replaces Mexico ITRF92 (datum code 1042).
4417
     */
4418
    public const EPSG_MEXICO_ITRF2008 = 'urn:ogc:def:datum:EPSG::1120';
4419
4420
    /**
4421
     * Mexico ITRF92
4422
     * Type: Geodetic
4423
     * Extent: Mexico - onshore and offshore.
4424
     * ITRF1992 at epoch 1988.00.
4425
     * Realized by a frame of 15 active GPS stations observed and adjusted in the ITRF1992. Includes ties to tide
4426
     * gauges. Replaces NAD27 (datum code 6267). Replaced by Mexico ITRF2008 (datum code 1120) from December 2010.
4427
     */
4428
    public const EPSG_MEXICO_ITRF92 = 'urn:ogc:def:datum:EPSG::1042';
4429
4430
    /**
4431
     * Mhast (offshore)
4432
     * Type: Geodetic
4433
     * Extent: Angola (Cabinda) - offshore; The Democratic Republic of the Congo (Zaire) - offshore.
4434
     * Fundamental point: Station Y at Malongo base camp. Latitude: 5°23'30.810"S, longitude: 12°12'01.590"E (of
4435
     * Greenwich).
4436
     * Origin coordinates determined by Transit single point position using 32 passes and transformed from WGS72BE
4437
     * using transformation code 15790. Differs from Mhast (onshore) by approximately 10m. Replaced in 1987 by Malongo
4438
     * 1987 (code 6259).
4439
     */
4440
    public const EPSG_MHAST_OFFSHORE = 'urn:ogc:def:datum:EPSG::6705';
4441
4442
    /**
4443
     * Mhast (onshore)
4444
     * Type: Geodetic
4445
     * Extent: Angola (Cabinda) - onshore and offshore; The Democratic Republic of the Congo (Zaire) - onshore coastal
4446
     * area and offshore.
4447
     * Probably adopted a Mhast 1951 coordinate set but associated an incorrect ellipsoid with it.
4448
     * Adopted by oil industry with intention of being Mhast 1951 (code 6703) but incorrectly (for Mhast 1951) used the
4449
     * International 1924 ellipsoid. This datum differs by about 400 metres from the Portuguese Mhast 1951 and Camacupa
4450
     * datums.
4451
     */
4452
    public const EPSG_MHAST_ONSHORE = 'urn:ogc:def:datum:EPSG::6704';
4453
4454
    /**
4455
     * Midway 1961
4456
     * Type: Geodetic
4457
     * Extent: United States Minor Outlying Islands - Midway Islands - Sand Island and Eastern Island.
4458
     */
4459
    public const EPSG_MIDWAY_1961 = 'urn:ogc:def:datum:EPSG::6727';
4460
4461
    /**
4462
     * Militar-Geographische Institut
4463
     * Type: Geodetic
4464
     * Extent: Austria.
4465
     * Fundamental point: Hermannskogel. Latitude: 48°16'15.29"N, longitude: 16°17'41.06"E (of Greenwich).
4466
     * The longitude of the datum origin equates to a value for the Ferro meridian of 17°40' exactly west of
4467
     * Greenwich.
4468
     */
4469
    public const EPSG_MILITAR_GEOGRAPHISCHE_INSTITUT = 'urn:ogc:def:datum:EPSG::6312';
4470
4471
    /**
4472
     * Militar-Geographische Institut (Ferro)
4473
     * Type: Geodetic
4474
     * Extent: Austria. Bosnia and Herzegovina. Croatia - onshore. Kosovo. Montenegro - onshore. North Macedonia.
4475
     * Serbia. Slovenia - onshore.
4476
     * Fundamental point: Hermannskogel. Latitude: 48°16'15.29"N, longitude: 33°57'41.06"E (of Ferro).
4477
     * Replaced by MGI in Austria and MGI 1901 in former Yugoslavia.
4478
     */
4479
    public const EPSG_MILITAR_GEOGRAPHISCHE_INSTITUT_FERRO = 'urn:ogc:def:datum:EPSG::6805';
4480
4481
    /**
4482
     * Ministerio de Marina Norte
4483
     * Type: Geodetic
4484
     * Extent: Argentina - Tierra del Fuego onshore.
4485
     * Developed by the Servicio de Hidrografia Naval.
4486
     */
4487
    public const EPSG_MINISTERIO_DE_MARINA_NORTE = 'urn:ogc:def:datum:EPSG::1258';
4488
4489
    /**
4490
     * Ministerio de Marina Sur
4491
     * Type: Geodetic
4492
     * Extent: Argentina - Tierra del Fuego onshore.
4493
     * Developed by the Servicio de Hidrografia Naval.
4494
     */
4495
    public const EPSG_MINISTERIO_DE_MARINA_SUR = 'urn:ogc:def:datum:EPSG::1259';
4496
4497
    /**
4498
     * Minna
4499
     * Type: Geodetic
4500
     * Extent: Nigeria - onshore and offshore.
4501
     * Fundamental point: Minna base station L40. Latitude: 9°38'08.87"N, longitude: 6°30'58.76"E (of Greenwich).
4502
     */
4503
    public const EPSG_MINNA = 'urn:ogc:def:datum:EPSG::6263';
4504
4505
    /**
4506
     * Missao Hidrografico Angola y Sao Tome 1951
4507
     * Type: Geodetic
4508
     * Extent: Angola - Cabinda.
4509
     * Extension of Camacupa datum into Cabinda.
4510
     * A variation of this datum has been adopted by the oil industry but incorrectly using the International 1924
4511
     * ellipsoid and not tied to the official Portuguese triangulation - see Mhast (onshore) and Mhast (offshore)
4512
     * (codes 6704 and 6705).
4513
     */
4514
    public const EPSG_MISSAO_HIDROGRAFICO_ANGOLA_Y_SAO_TOME_1951 = 'urn:ogc:def:datum:EPSG::6703';
4515
4516
    /**
4517
     * Monte Mario
4518
     * Type: Geodetic
4519
     * Extent: Italy - onshore and offshore; San Marino, Vatican City State.
4520
     * Fundamental point: Monte Mario. Latitude: 41°55'25.51"N, longitude: 12°27'08.4"E (of Greenwich).
4521
     * Replaced Genova datum, Bessel 1841 ellipsoid, from 1940.
4522
     */
4523
    public const EPSG_MONTE_MARIO = 'urn:ogc:def:datum:EPSG::6265';
4524
4525
    /**
4526
     * Monte Mario (Rome)
4527
     * Type: Geodetic
4528
     * Extent: Italy - onshore and offshore; San Marino, Vatican City State.
4529
     * Fundamental point: Monte Mario. Latitude: 41°55'25.51"N, longitude: 0°00' 00.00"E (of Rome).
4530
     * Replaced Genova datum, Bessel 1841 ellipsoid, from 1940.
4531
     */
4532
    public const EPSG_MONTE_MARIO_ROME = 'urn:ogc:def:datum:EPSG::6806';
4533
4534
    /**
4535
     * Montserrat 1958
4536
     * Type: Geodetic
4537
     * Extent: Montserrat - onshore.
4538
     * Fundamental point: station M36.
4539
     */
4540
    public const EPSG_MONTSERRAT_1958 = 'urn:ogc:def:datum:EPSG::6604';
4541
4542
    /**
4543
     * Moorea 87
4544
     * Type: Geodetic
4545
     * Extent: French Polynesia - Society Islands - Moorea.
4546
     * Two stations on Tahiti whose coordinates from the Tahiti 1979 adjustment were held fixed.
4547
     * Replaces Tahiti 52 (datum code 6628) in Moorea. Replaced by RGPF (datum code 6687).
4548
     */
4549
    public const EPSG_MOOREA_87 = 'urn:ogc:def:datum:EPSG::6691';
4550
4551
    /**
4552
     * Moorea SAU 1981
4553
     * Type: Vertical
4554
     * Extent: French Polynesia - Society Islands - Moorea.
4555
     * Fundamental benchmark: RN225
4556
     * Included as part of NGPF - see datum code 5195.
4557
     */
4558
    public const EPSG_MOOREA_SAU_1981 = 'urn:ogc:def:datum:EPSG::5197';
4559
4560
    /**
4561
     * Moturiki 1953
4562
     * Type: Vertical
4563
     * Extent: New Zealand - North Island - Moturiki vertical CRS area.
4564
     * MSL at Moturiki Island February 1949 to December 1952.
4565
     */
4566
    public const EPSG_MOTURIKI_1953 = 'urn:ogc:def:datum:EPSG::5162';
4567
4568
    /**
4569
     * Mount Dillon
4570
     * Type: Geodetic
4571
     * Extent: Trinidad and Tobago - Tobago - onshore.
4572
     * Fundamental point: Mount Dillon triangulation station. Latitude: 11°15'07.843"N, longitude: 60°41'09.632"W (of
4573
     * Greenwich).
4574
     */
4575
    public const EPSG_MOUNT_DILLON = 'urn:ogc:def:datum:EPSG::6157';
4576
4577
    /**
4578
     * Moznet (ITRF94)
4579
     * Type: Geodetic
4580
     * Extent: Mozambique - onshore and offshore.
4581
     * ITRF94 at epoch 1996.9.
4582
     */
4583
    public const EPSG_MOZNET_ITRF94 = 'urn:ogc:def:datum:EPSG::6130';
4584
4585
    /**
4586
     * N2000
4587
     * Type: Vertical
4588
     * Extent: Finland - onshore.
4589
     * Height at Metsaahovi (latitude 60.21762°N, longitude 24.39517°E) of 54.4233m related to EVRF2000 origin
4590
     * through Baltic Levelling Ring adjustment at epoch 2000.0.
4591
     * Realized through the third precise levelling network. Uses normal heights. Replaces N43 and N60 (datum codes
4592
     * 1213 and 5116). To account for isostatic land uplift use NKG2005 model.
4593
     */
4594
    public const EPSG_N2000 = 'urn:ogc:def:datum:EPSG::1030';
4595
4596
    /**
4597
     * NAD83 (Continuously Operating Reference Station 1996)
4598
     * Type: Geodetic
4599
     * Extent: Puerto Rico - onshore and offshore. United States (USA) onshore and offshore - Alabama; Alaska; Arizona;
4600
     * Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas;
4601
     * Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana;
4602
     * Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma;
4603
     * Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia;
4604
     * Washington; West Virginia; Wisconsin; Wyoming. US Virgin Islands - onshore and offshore.
4605
     * Defined by time-dependent transformations from ITRF (see CT codes 6864-6866). The ITRF realization used has been
4606
     * changed periodically; ITRF96 in years 1997 through 1999, ITRF97 in 2000 and 2001 and ITRF2000 from 2002.
4607
     * Replaced by NAD83(2011) from 2011-09-06.
4608
     */
4609
    public const EPSG_NAD83_CONTINUOUSLY_OPERATING_REFERENCE_STATION_1996 = 'urn:ogc:def:datum:EPSG::1133';
4610
4611
    /**
4612
     * NAD83 (Federal Base Network)
4613
     * Type: Geodetic
4614
     * Extent: American Samoa - Tutuila, Aunu'u, Ofu, Olesega, Ta'u and Rose islands - onshore. Guam - onshore.
4615
     * Northern Mariana Islands - onshore. Puerto Rico - onshore. United States (USA) - CONUS - Alabama; Arizona;
4616
     * Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas;
4617
     * Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana;
4618
     * Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma;
4619
     * Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia;
4620
     * Washington; West Virginia; Wisconsin; Wyoming - onshore plus Gulf of Mexico offshore continental shelf (GoM
4621
     * OCS). US Virgin Islands - onshore.
4622
     * A collection of individual state-wide adjustments including GPS observations made between 1997 and 2004.
4623
     * 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
4624
     * rest of CONUS the difference between the HARN and FBN adjustments was under 5cm and the original HARN
4625
     * adjustments were adopted as NAD83(FBN).
4626
     */
4627
    public const EPSG_NAD83_FEDERAL_BASE_NETWORK = 'urn:ogc:def:datum:EPSG::1211';
4628
4629
    /**
4630
     * NAD83 (High Accuracy Reference Network - Corrected)
4631
     * Type: Geodetic
4632
     * Extent: Puerto Rico and US Virgin Islands - onshore.
4633
     * In PRVI replaces NAD83(HARN) to correct errors. Replaced by NAD83(FBN).
4634
     */
4635
    public const EPSG_NAD83_HIGH_ACCURACY_REFERENCE_NETWORK_CORRECTED = 'urn:ogc:def:datum:EPSG::1212';
4636
4637
    /**
4638
     * NAD83 (High Accuracy Reference Network)
4639
     * Type: Geodetic
4640
     * Extent: American Samoa - onshore - Tutuila, Aunu'u, Ofu, Olesega, Ta'u and Rose islands. Guam - onshore.
4641
     * Northern Mariana Islands - onshore. Puerto Rico - onshore. United States (USA) - onshore Alabama, Alaska,
4642
     * Arizona, Arkansas, California, Colorado, Connecticut, Delaware, Florida, Georgia, Hawaii, Idaho, Illinois,
4643
     * Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Maryland, Massachusetts, Michigan, Minnesota, Mississippi,
4644
     * Missouri, Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York, North Carolina, North
4645
     * Dakota, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, South Dakota, Tennessee, Texas,
4646
     * Utah, Vermont, Virginia, Washington, West Virginia, Wisconsin and Wyoming; offshore Gulf of Mexico continental
4647
     * shelf (GoM OCS). US Virgin Islands - onshore.
4648
     * A collection of individual state-wide adjustments including GPS observations made between 1991 and 1996.
4649
     * In CONUS, American Samoa and Guam replaced by NAD83(FBN). In Alaska replaced by NAD83(NSRS2007). In Hawaii
4650
     * replaced by NAD83(PA11). In Puerto Rico and US Virgin Islands replaced by NAD83(HARN Corrected).
4651
     */
4652
    public const EPSG_NAD83_HIGH_ACCURACY_REFERENCE_NETWORK = 'urn:ogc:def:datum:EPSG::6152';
4653
4654
    /**
4655
     * NAD83 (National Spatial Reference System 2007)
4656
     * Type: Geodetic
4657
     * Extent: Puerto Rico - onshore and offshore. United States (USA) onshore and offshore - Alabama; Alaska; Arizona;
4658
     * Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas;
4659
     * Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana;
4660
     * Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma;
4661
     * Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia;
4662
     * Washington; West Virginia; Wisconsin; Wyoming. US Virgin Islands - onshore and offshore.
4663
     * Coordinates of 486 national continually operating reference system (CORS) and 195 collaborative GPS (CGPS) sites
4664
     * constrained to their CORS96 values, ITRF2000 at epoch 2002.0.
4665
     * Replaced by NAD83 (National Spatial Reference System 2011), datum code 1116.
4666
     */
4667
    public const EPSG_NAD83_NATIONAL_SPATIAL_REFERENCE_SYSTEM_2007 = 'urn:ogc:def:datum:EPSG::6759';
4668
4669
    /**
4670
     * NAD83 (National Spatial Reference System 2011)
4671
     * Type: Geodetic
4672
     * Extent: Puerto Rico - onshore and offshore. United States (USA) onshore and offshore - Alabama; Alaska; Arizona;
4673
     * Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas;
4674
     * Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana;
4675
     * Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma;
4676
     * Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia;
4677
     * Washington; West Virginia; Wisconsin; Wyoming. US Virgin Islands - onshore and offshore.
4678
     * Coordinates of a nationwide adjustment of 79,546 NGS "passive" control stations in CONUS and Alaska, constrained
4679
     * to 1,171 current CORS station coordinates at epoch 2010.0.
4680
     * Replaces NAD83(NSRS2007). Transformaton code 7807 from ITRF2008 is understood to underlay the CORS station
4681
     * coordinates.
4682
     */
4683
    public const EPSG_NAD83_NATIONAL_SPATIAL_REFERENCE_SYSTEM_2011 = 'urn:ogc:def:datum:EPSG::1116';
4684
4685
    /**
4686
     * NAD83 (National Spatial Reference System MA11)
4687
     * Type: Geodetic
4688
     * Extent: Guam, Northern Mariana Islands and Palau; onshore and offshore.
4689
     * Coordinates of a nationwide adjustment including 171 NGS "passive" control stations constrained to 24 current
4690
     * Pacific CORS station coordinates at epoch 2010.0.
4691
     * Replaces NAD83(HARN) (GGN93) and NAD83(FBN) in Guam. ITRF2008 is understood to underlay the latest CORS station
4692
     * coordinates.
4693
     */
4694
    public const EPSG_NAD83_NATIONAL_SPATIAL_REFERENCE_SYSTEM_MA11 = 'urn:ogc:def:datum:EPSG::1118';
4695
4696
    /**
4697
     * NAD83 (National Spatial Reference System PA11)
4698
     * Type: Geodetic
4699
     * Extent: American Samoa, Marshall Islands, United States (USA) - Hawaii, United States minor outlying islands;
4700
     * onshore and offshore.
4701
     * Coordinates of a nationwide adjustment including 345 NGS "passive" control stations constrained to 24 current
4702
     * Pacific CORS station coordinates at epoch 2010.0.
4703
     * Replaces NAD83(HARN) and NAD83(FBN) in Hawaii and American Samoa. ITRF2008 is understood to underlay the latest
4704
     * CORS station coordinates.
4705
     */
4706
    public const EPSG_NAD83_NATIONAL_SPATIAL_REFERENCE_SYSTEM_PA11 = 'urn:ogc:def:datum:EPSG::1117';
4707
4708
    /**
4709
     * NAD83 Canadian Spatial Reference System
4710
     * Type: Geodetic
4711
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
4712
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
4713
     * Yukon.
4714
     * Includes all versions of NAD83(CSRS) from v2 [CSRS98] onwards without specific identification. As such it has an
4715
     * accuracy of approximately 1m.
4716
     */
4717
    public const EPSG_NAD83_CANADIAN_SPATIAL_REFERENCE_SYSTEM = 'urn:ogc:def:datum:EPSG::6140';
4718
4719
    /**
4720
     * NEA74 Noumea
4721
     * Type: Geodetic
4722
     * Extent: New Caledonia - Grande Terre - Noumea district.
4723
     * Noumea old signal station.
4724
     */
4725
    public const EPSG_NEA74_NOUMEA = 'urn:ogc:def:datum:EPSG::6644';
4726
4727
    /**
4728
     * NGO 1948
4729
     * Type: Geodetic
4730
     * Extent: Norway - onshore.
4731
     * Fundamental point: Oslo observatory. Latitude: 59°54'43.7"N, longitude: 10°43'22.5"E (of Greenwich).
4732
     */
4733
    public const EPSG_NGO_1948 = 'urn:ogc:def:datum:EPSG::6273';
4734
4735
    /**
4736
     * NGO 1948 (Oslo)
4737
     * Type: Geodetic
4738
     * Extent: Norway - onshore.
4739
     * Fundamental point: Oslo observatory. Latitude: 59°54'43.7"N, longitude: 0°00'00.0"E (of Oslo).
4740
     */
4741
    public const EPSG_NGO_1948_OSLO = 'urn:ogc:def:datum:EPSG::6817';
4742
4743
    /**
4744
     * NSWC 9Z-2
4745
     * Type: Geodetic
4746
     * Extent: World.
4747
     * Transit precise ephemeris before 1991.
4748
     */
4749
    public const EPSG_NSWC_9Z_2 = 'urn:ogc:def:datum:EPSG::6276';
4750
4751
    /**
4752
     * Nahrwan 1934
4753
     * Type: Geodetic
4754
     * Extent: Iraq - onshore; Iran - onshore northern Gulf coast and west bordering southeast Iraq.
4755
     * Fundamental point: Nahrwan south base.  Latitude: 33°19'10.87"N, longitude: 44°43'25.54"E (of Greenwich).
4756
     * This adjustment later discovered to have a significant orientation error. In Iran replaced by FD58. In Iraq,
4757
     * replaced by Karbala 1979.
4758
     */
4759
    public const EPSG_NAHRWAN_1934 = 'urn:ogc:def:datum:EPSG::6744';
4760
4761
    /**
4762
     * Nahrwan 1967
4763
     * Type: Geodetic
4764
     * Extent: Arabian Gulf; Qatar - offshore; United Arab Emirates (UAE) - Abu Dhabi; Dubai; Sharjah; Ajman; Fujairah;
4765
     * Ras Al Kaimah; Umm Al Qaiwain - onshore and offshore.
4766
     * Fundamental point: Nahrwan south base.  Latitude: 33°19'10.87"N, longitude: 44°43'25.54"E (of Greenwich).
4767
     */
4768
    public const EPSG_NAHRWAN_1967 = 'urn:ogc:def:datum:EPSG::6270';
4769
4770
    /**
4771
     * Nakhl-e Ghanem
4772
     * Type: Geodetic
4773
     * Extent: Iran - Kangan district.
4774
     * Coordinates of two stations determined with respect to ITRF 2000 at epoch 2005.2: BMT1 latitude
4775
     * 27°42'09.8417"N, longitude 52°12'11.0362"E (of Greenwich); Total1 latitude 27°31'03.8896"N, longitude
4776
     * 52°36'13.1312"E (of Greenwich).
4777
     */
4778
    public const EPSG_NAKHL_E_GHANEM = 'urn:ogc:def:datum:EPSG::6693';
4779
4780
    /**
4781
     * Naparima 1955
4782
     * Type: Geodetic
4783
     * Extent: Trinidad and Tobago - Trinidad - onshore.
4784
     * Fundamental point: Naparima. Latitude: 10°16'44.860"N, longitude: 61°27'34.620"W (of Greenwich).
4785
     * Extended to Tobago as Naparima 1972. (Note: Naparima 1972 is not used in Trinidad).
4786
     */
4787
    public const EPSG_NAPARIMA_1955 = 'urn:ogc:def:datum:EPSG::6158';
4788
4789
    /**
4790
     * Naparima 1972
4791
     * Type: Geodetic
4792
     * Extent: Trinidad and Tobago - Tobago - onshore.
4793
     * Fundamental point: Naparima. Latitude: 10°16'44.860"N, longitude: 61°27'34.620"W (of Greenwich).
4794
     * Naparima 1972 is an extension to Tobago of the Naparima 1955 network of Trinidad.
4795
     */
4796
    public const EPSG_NAPARIMA_1972 = 'urn:ogc:def:datum:EPSG::6271';
4797
4798
    /**
4799
     * Napier 1962
4800
     * Type: Vertical
4801
     * Extent: New Zealand - North Island - Hawkes Bay meridional circuit and Napier vertical crs area.
4802
     * MSL at Napier harbour. Period of derivation unknown.
4803
     */
4804
    public const EPSG_NAPIER_1962 = 'urn:ogc:def:datum:EPSG::5163';
4805
4806
    /**
4807
     * National Geodetic Network
4808
     * Type: Geodetic
4809
     * Extent: Kuwait - onshore.
4810
     * Replaces 1984 adjustment which used the WGS72 ellipsoid.
4811
     */
4812
    public const EPSG_NATIONAL_GEODETIC_NETWORK = 'urn:ogc:def:datum:EPSG::6318';
4813
4814
    /**
4815
     * National Geodetic Vertical Datum 1929
4816
     * Type: Vertical
4817
     * Extent: United States (USA) - CONUS onshore - Alabama; Arizona; Arkansas; California; Colorado; Connecticut;
4818
     * Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland;
4819
     * Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey;
4820
     * New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South
4821
     * Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin;
4822
     * Wyoming.
4823
     * 26 tide gauges in the US and Canada.
4824
     * Normal orthometric heights.
4825
     */
4826
    public const EPSG_NATIONAL_GEODETIC_VERTICAL_DATUM_1929 = 'urn:ogc:def:datum:EPSG::5102';
4827
4828
    /**
4829
     * National Vertical Datum 1992
4830
     * Type: Vertical
4831
     * Extent: Bangladesh - onshore.
4832
     * Mean Sea Level 1992-1994 at tidal station at Rangadia, Chittagong.
4833
     */
4834
    public const EPSG_NATIONAL_VERTICAL_DATUM_1992 = 'urn:ogc:def:datum:EPSG::1303';
4835
4836
    /**
4837
     * Nelson 1955
4838
     * Type: Vertical
4839
     * Extent: New Zealand - South Island - north of approximately 42°20'S - Nelson vertical CRS area.
4840
     * MSL at Nelson harbour 1939-1942.
4841
     */
4842
    public const EPSG_NELSON_1955 = 'urn:ogc:def:datum:EPSG::5164';
4843
4844
    /**
4845
     * Nepal 1981
4846
     * Type: Geodetic
4847
     * Extent: Nepal.
4848
     * Fundamental point: Station 12/157 Nagarkot. Latitude: 27°41'31.04"N, longitude: 85°31'20.23"E (of Greenwich).
4849
     */
4850
    public const EPSG_NEPAL_1981 = 'urn:ogc:def:datum:EPSG::1111';
4851
4852
    /**
4853
     * New Beijing
4854
     * Type: Geodetic
4855
     * Extent: China - onshore.
4856
     * Derived by conformal transformation of Xian 1980 adjustment onto Krassowsky ellipsoid.
4857
     * From 1982 replaces Beijing 1954.
4858
     */
4859
    public const EPSG_NEW_BEIJING = 'urn:ogc:def:datum:EPSG::1045';
4860
4861
    /**
4862
     * New Zealand Geodetic Datum 1949
4863
     * Type: Geodetic
4864
     * Extent: New Zealand - North Island, South Island, Stewart Island - onshore and nearshore.
4865
     * Fundamental point: Papatahi. Latitude: 41°19' 8.900"S, longitude: 175°02'51.000"E (of Greenwich).
4866
     * Replaced by New Zealand Geodetic Datum 2000 (code 6167) from March 2000.
4867
     */
4868
    public const EPSG_NEW_ZEALAND_GEODETIC_DATUM_1949 = 'urn:ogc:def:datum:EPSG::6272';
4869
4870
    /**
4871
     * New Zealand Geodetic Datum 2000
4872
     * Type: Geodetic
4873
     * Extent: New Zealand - onshore and offshore. Includes Antipodes Islands, Auckland Islands, Bounty Islands,
4874
     * Chatham Islands, Cambell Island, Kermadec Islands, Raoul Island and Snares Islands.
4875
     * Based on ITRF96 at epoch 2000.0
4876
     * Replaces New Zealand Geodetic Datum 1949 (code 6272) and Chatham Islands Datum 1979 (code 6673) from March 2000.
4877
     */
4878
    public const EPSG_NEW_ZEALAND_GEODETIC_DATUM_2000 = 'urn:ogc:def:datum:EPSG::6167';
4879
4880
    /**
4881
     * New Zealand Vertical Datum 2009
4882
     * Type: Vertical
4883
     * Extent: New Zealand - onshore and offshore. Includes Antipodes Islands, Auckland Islands, Bounty Islands,
4884
     * Chatham Islands, Cambell Island, Kermadec Islands, Raoul Island and Snares Islands.
4885
     * New Zealand Quasigeoid 2009 which is defined by the application of the NZ geoid 2009 grid to NZGD2000
4886
     * ellipsoidal heights. See transformation code 4459.
4887
     */
4888
    public const EPSG_NEW_ZEALAND_VERTICAL_DATUM_2009 = 'urn:ogc:def:datum:EPSG::1039';
4889
4890
    /**
4891
     * New Zealand Vertical Datum 2016
4892
     * Type: Vertical
4893
     * Extent: New Zealand - onshore and offshore. Includes Antipodes Islands, Auckland Islands, Bounty Islands,
4894
     * Chatham Islands, Cambell Island, Kermadec Islands, Raoul Island and Snares Islands.
4895
     * New Zealand quasigeoid 2016 which is defined by the application of the NZ geoid 2016 grid to NZGD2000
4896
     * ellipsoidal heights. See transformation code 7840.
4897
     */
4898
    public const EPSG_NEW_ZEALAND_VERTICAL_DATUM_2016 = 'urn:ogc:def:datum:EPSG::1169';
4899
4900
    /**
4901
     * Nivellement General Guyanais 1977
4902
     * Type: Vertical
4903
     * Extent: French Guiana - onshore.
4904
     * Mean sea level 1936 at Cayenne. Origin = marker BM35 on stone on St Francois battery, Cayenne, with defined
4905
     * elevation of 1.64m above msl. NGG1977 height 0.00m is 1.96m above sounding datum defined at Cayenne in 1936 by
4906
     * SHM.
4907
     * Orthometric heights.
4908
     */
4909
    public const EPSG_NIVELLEMENT_GENERAL_GUYANAIS_1977 = 'urn:ogc:def:datum:EPSG::5153';
4910
4911
    /**
4912
     * Nivellement General de Nouvelle Caledonie
4913
     * Type: Vertical
4914
     * Extent: New Caledonia - Grande Terre.
4915
     * Rivet AB01 established by SHOM (Service Hydrographique de la Marine)  in 1937 on the Quai des Volontaires in
4916
     * Noumea. Height i: 1.885 metre above mean sea level.
4917
     * Orthometric heights.
4918
     */
4919
    public const EPSG_NIVELLEMENT_GENERAL_DE_NOUVELLE_CALEDONIE = 'urn:ogc:def:datum:EPSG::5151';
4920
4921
    /**
4922
     * Nivellement General de Nouvelle Caledonie 2008
4923
     * Type: Vertical
4924
     * Extent: New Caledonia - Belep, Grande Terre, Ile des Pins, Loyalty Islands (Lifou, Mare, Ouvea).
4925
     * Normal heights.
4926
     */
4927
    public const EPSG_NIVELLEMENT_GENERAL_DE_NOUVELLE_CALEDONIE_2008 = 'urn:ogc:def:datum:EPSG::1255';
4928
4929
    /**
4930
     * Nivellement General de Polynesie Francaise
4931
     * Type: Vertical
4932
     * Extent: French Polynesia - Society Islands - Bora Bora, Huahine, Maupiti, Moorea, Raiatea, Tahaa and Tahiti.
4933
     * The collection of heterogeneous levelling networks throughout the Society Islands of French Polynesia.
4934
     */
4935
    public const EPSG_NIVELLEMENT_GENERAL_DE_POLYNESIE_FRANCAISE = 'urn:ogc:def:datum:EPSG::5195';
4936
4937
    /**
4938
     * Nivellement General de l'Algerie 2022
4939
     * Type: Vertical
4940
     * Extent: Algeria - onshore.
4941
     * Fundamental benchmark attached to the tide gauge at basin of Algiers old port with defined height of 1.1168m.
4942
     * Orthometric heights.
4943
     */
4944
    public const EPSG_NIVELLEMENT_GENERAL_DE_LALGERIE_2022 = 'urn:ogc:def:datum:EPSG::1354';
4945
4946
    /**
4947
     * Nivellement General de la Corse 1948
4948
     * Type: Vertical
4949
     * Extent: France - Corsica onshore.
4950
     * Mean sea level at Ajaccio between 1912 and 1937.
4951
     * Replaced by IGN78 Corsica (datum 5120).
4952
     */
4953
    public const EPSG_NIVELLEMENT_GENERAL_DE_LA_CORSE_1948 = 'urn:ogc:def:datum:EPSG::5189';
4954
4955
    /**
4956
     * Nivellement General de la France - IGN69
4957
     * Type: Vertical
4958
     * Extent: France - mainland onshore.
4959
     * Rivet number M.ac O-VIII on the Marseille tide gauge site, with the height fixed in 1897 at 1.661 metre above
4960
     * mean sea level between February 2nd 1885 and January 1st 1897.
4961
     * Uses Normal heights.
4962
     */
4963
    public const EPSG_NIVELLEMENT_GENERAL_DE_LA_FRANCE_IGN69 = 'urn:ogc:def:datum:EPSG::5119';
4964
4965
    /**
4966
     * Nivellement General de la France - IGN78
4967
     * Type: Vertical
4968
     * Extent: France - Corsica onshore.
4969
     * Marker MM3 situated on the tide gauge site of Ajaccio. Height is 3.640 metre above mean sea level.
4970
     * Uses Normal heights. Replaces NGC (datum code 5189).
4971
     */
4972
    public const EPSG_NIVELLEMENT_GENERAL_DE_LA_FRANCE_IGN78 = 'urn:ogc:def:datum:EPSG::5120';
4973
4974
    /**
4975
     * Nivellement General de la France - Lallemand
4976
     * Type: Vertical
4977
     * Extent: France - mainland onshore.
4978
     * Rivet number M.ac O-VIII on the Marseille tide gauge site, with the height fixed in 1897 at 1.661 metre above
4979
     * mean sea level between February 2nd 1885 and January 1st 1897.
4980
     * Orthometric heights.
4981
     */
4982
    public const EPSG_NIVELLEMENT_GENERAL_DE_LA_FRANCE_LALLEMAND = 'urn:ogc:def:datum:EPSG::5118';
4983
4984
    /**
4985
     * Nivellement General du Luxembourg 1995
4986
     * Type: Vertical
4987
     * Extent: Luxembourg.
4988
     * Reference point Wemperhardt defined as 528.030m above Normaal Amsterdams Peil (NAP). Datum at NAP is mean high
4989
     * tide in 1684. Network adjusted in 1995.
4990
     * Pseudo-orthometric heights.
4991
     */
4992
    public const EPSG_NIVELLEMENT_GENERAL_DU_LUXEMBOURG_1995 = 'urn:ogc:def:datum:EPSG::5172';
4993
4994
    /**
4995
     * Nord Sahara 1959
4996
     * Type: Geodetic
4997
     * Extent: Algeria - onshore and offshore.
4998
     * Coordinates of primary network readjusted on ED50 datum and then transformed conformally to Clarke 1880 (RGS)
4999
     * ellipsoid.
5000
     * Adjustment includes Morocco and Tunisia but use only in Algeria. Within Algeria the adjustment is north of 32°N
5001
     * but use has been extended southwards in many disconnected projects, some based on independent astro stations
5002
     * rather than the geodetic network.
5003
     */
5004
    public const EPSG_NORD_SAHARA_1959 = 'urn:ogc:def:datum:EPSG::6307';
5005
5006
    /**
5007
     * Normaal Amsterdams Peil
5008
     * Type: Vertical
5009
     * Extent: Netherlands - onshore and offshore.
5010
     * Mean high tide at Amsterdam in 1684. Onshore NAP is defined by the published heights of benchmarks and since
5011
     * 2018 extended offshore defined by the application of the official transformation from ETRS89, RDNAPTRANS(TM).
5012
     * Orthometric heights. From 2018, use has been extended from Netherlands onshore to Netherlands onshore and
5013
     * offshore.
5014
     */
5015
    public const EPSG_NORMAAL_AMSTERDAMS_PEIL = 'urn:ogc:def:datum:EPSG::5109';
5016
5017
    /**
5018
     * North American Datum 1927
5019
     * Type: Geodetic
5020
     * Extent: North and central America: Antigua and Barbuda - onshore. Bahamas - onshore plus offshore over internal
5021
     * continental shelf only. Belize - onshore. British Virgin Islands - onshore. Canada onshore - Alberta, British
5022
     * Columbia, Manitoba, New Brunswick, Newfoundland and Labrador, Northwest Territories, Nova Scotia, Nunavut,
5023
     * Ontario, Prince Edward Island, Quebec, Saskatchewan and Yukon - plus offshore east coast. Cuba - onshore and
5024
     * offshore. El Salvador - onshore. Guatemala - onshore. Honduras - onshore. Panama - onshore. Puerto Rico -
5025
     * onshore. Mexico - onshore plus offshore east coast. Nicaragua - onshore. United States (USA) onshore and
5026
     * offshore - Alabama, Alaska, Arizona, Arkansas, California, Colorado, Connecticut, Delaware, Florida, Georgia,
5027
     * Idaho, Illinois, Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Maryland, Massachusetts, Michigan,
5028
     * Minnesota, Mississippi, Missouri, Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York,
5029
     * North Carolina, North Dakota, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, South Dakota,
5030
     * Tennessee, Texas, Utah, Vermont, Virginia, Washington, West Virginia, Wisconsin and Wyoming - plus offshore . US
5031
     * Virgin Islands - onshore.
5032
     * Fundamental point: Meade's Ranch. Latitude: 39°13'26.686"N, longitude: 98°32'30.506"W (of Greenwich).
5033
     * In United States (USA) and Canada, replaced by North American Datum 1983 (NAD83) (code 6269) ; in Mexico,
5034
     * replaced by Mexican Datum of 1993 (code 1042).
5035
     */
5036
    public const EPSG_NORTH_AMERICAN_DATUM_1927 = 'urn:ogc:def:datum:EPSG::6267';
5037
5038
    /**
5039
     * North American Datum 1927 (1976)
5040
     * Type: Geodetic
5041
     * Extent: Canada - Ontario.
5042
     * Fundamental point: Meade's Ranch. Latitude: 39°13'26.686"N, longitude: 98°32'30.506"W (of Greenwich).
5043
     * NAD27(76) used in Ontario for all maps at scale 1/20 000 and larger; elsewhere in Canada for selected purposes.
5044
     */
5045
    public const EPSG_NORTH_AMERICAN_DATUM_1927_1976 = 'urn:ogc:def:datum:EPSG::6608';
5046
5047
    /**
5048
     * North American Datum 1927 (CGQ77)
5049
     * Type: Geodetic
5050
     * Extent: Canada - Quebec.
5051
     * Fundamental point: Meade's Ranch. Latitude: 39°13'26.686"N, longitude: 98°32'30.506"W (of Greenwich).
5052
     * NAD27 (CGQ77) used in Quebec for all maps at scale 1/20 000 and larger; generally for maps issued by the Quebec
5053
     * cartography office whose reference system is CGQ77.
5054
     */
5055
    public const EPSG_NORTH_AMERICAN_DATUM_1927_CGQ77 = 'urn:ogc:def:datum:EPSG::6609';
5056
5057
    /**
5058
     * North American Datum 1983
5059
     * Type: Geodetic
5060
     * Extent: North America - onshore and offshore: Canada - Alberta; British Columbia; Manitoba; New Brunswick;
5061
     * Newfoundland and Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec;
5062
     * Saskatchewan; Yukon. Puerto Rico. United States (USA) - Alabama; Alaska; Arizona; Arkansas; California;
5063
     * Colorado; Connecticut; Delaware; Florida; Georgia; Hawaii; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky;
5064
     * Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska;
5065
     * Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon;
5066
     * Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington;
5067
     * West Virginia; Wisconsin; Wyoming. US Virgin Islands. British Virgin Islands.
5068
     * NAD83 Doppler Transit stations in NWL 9D were aligned with the BIH Conventional Terrestrial Reference Frame
5069
     * (BTS) at epoch 1984.0 using an internationally adopted transformation. NAD83 is now known to be non-geocentric
5070
     * by about 2.2 meters.
5071
     * Although the 1986 adjustment included connections to Greenland and Mexico, it has not been adopted there. In
5072
     * Canada and US, replaced NAD27.
5073
     */
5074
    public const EPSG_NORTH_AMERICAN_DATUM_1983 = 'urn:ogc:def:datum:EPSG::6269';
5075
5076
    /**
5077
     * North American Datum of 1983 (CSRS) version 2
5078
     * Type: Geodetic
5079
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
5080
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
5081
     * Yukon.
5082
     * Defined at reference epoch 1997.0 by a transformation from ITRF96 (see transformation code 8259). The frame is
5083
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
5084
     * Published 1998-01-01; adopted by the Canadian federal government and the provincial governments of Alberta,
5085
     * Saskatchewan, Manitoba, Quebec, New Brunswick and Prince Edward Island. Replaces NAD83(CSRS96). Replaced by
5086
     * NAD83(CSRS)v3.
5087
     */
5088
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_2 = 'urn:ogc:def:datum:EPSG::1193';
5089
5090
    /**
5091
     * North American Datum of 1983 (CSRS) version 3
5092
     * Type: Geodetic
5093
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
5094
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
5095
     * Yukon.
5096
     * Defined at reference epoch 1997.0 by a transformation from ITRF97 (see transformation code 8260). The frame is
5097
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
5098
     * Published 1999-01-01; adopted by the Canadian federal government (2000) and the provincial governments of
5099
     * British Columbia (CRD in 2000, all Victoria Island 2005), Ontario (2008) and Nova Scotia (2000). Replaces
5100
     * NAD83(CSRS)v2. Replaced by NAD83(CSRS)v4.
5101
     */
5102
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_3 = 'urn:ogc:def:datum:EPSG::1194';
5103
5104
    /**
5105
     * North American Datum of 1983 (CSRS) version 4
5106
     * Type: Geodetic
5107
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
5108
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
5109
     * Yukon.
5110
     * Defined at reference epoch 2002.0 by a transformation from ITRF2000 (see transformation code 8261). The frame is
5111
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
5112
     * Published 2002-01-01; adopted by the Canadian federal government (2002) and the provincial governments of
5113
     * British Columbia (for mainland only, not Victoria Island) (2005) and Alberta (2004). Replaces NAD83(CSRS)v3.
5114
     * Replaced by NAD83(CSRS)v5.
5115
     */
5116
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_4 = 'urn:ogc:def:datum:EPSG::1195';
5117
5118
    /**
5119
     * North American Datum of 1983 (CSRS) version 5
5120
     * Type: Geodetic
5121
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
5122
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
5123
     * Yukon.
5124
     * Defined at reference epoch 2006.0 by a transformation from ITRF2005 (see transformation code 9227). The frame is
5125
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
5126
     * Published 2007-01-01; adopted by the Canadian federal government in 2007. Replaces NAD83(CSRS)v4. Replaced by
5127
     * NAD83(CSRS)v6.
5128
     */
5129
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_5 = 'urn:ogc:def:datum:EPSG::1196';
5130
5131
    /**
5132
     * North American Datum of 1983 (CSRS) version 6
5133
     * Type: Geodetic
5134
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
5135
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
5136
     * Yukon.
5137
     * Defined at reference epoch 2010.0 by a transformation from ITRF2008 (see transformation code 8264). The frame is
5138
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
5139
     * Published 2010-01-01; adopted by the Canadian government (2012) and the provincial governments of Manitoba
5140
     * (2014), Ontario (2013), Prince Edward Island (2014), Nova Scotia (2014) and Newfoundland (2012). Replaces
5141
     * NAD83(CSRSv5). Replaced by NAD83(CSRS)v7.
5142
     */
5143
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_6 = 'urn:ogc:def:datum:EPSG::1197';
5144
5145
    /**
5146
     * North American Datum of 1983 (CSRS) version 7
5147
     * Type: Geodetic
5148
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
5149
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
5150
     * Yukon.
5151
     * Defined at reference epoch 2010.0 by a transformation from ITRF2014 (see transformation code 8265). The frame is
5152
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
5153
     * Published 2017-05-01; adopted by the Canadian federal government (2017) and the provincial governments of
5154
     * Alberta (2021) and Prince Edward Island (2020). Replaces NAD83(CSRS)v6.
5155
     */
5156
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_7 = 'urn:ogc:def:datum:EPSG::1198';
5157
5158
    /**
5159
     * North American Datum of 1983 (CSRS96)
5160
     * Type: Geodetic
5161
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
5162
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
5163
     * Yukon.
5164
     * Defined at epoch 1988.0 by a transformation from ITRF92, the definition superseded by a transformation from
5165
     * ITRF93 and then by a transformation from ITRF94. (See transformation codes 8256-58).
5166
     * Adopted by the Canadian federal government from 1996-01-01. Replaces NAD83 [sometimes called NAD83(Original)].
5167
     * Replaced by NAD83(CSRS)v2.
5168
     */
5169
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS96 = 'urn:ogc:def:datum:EPSG::1192';
5170
5171
    /**
5172
     * North American Datum of 1983 (MARP00)
5173
     * Type: Geodetic
5174
     * Extent: Guam, Northern Mariana Islands and Palau; onshore and offshore.
5175
     * Defined by a time-dependent seven parameter transformation of ITRF2000 3D geocentric Cartesian coordinates and
5176
     * velocities at reference epoch 1993.62, aligned to the Mariana plate at other epochs based on an Euler pole
5177
     * rotation.
5178
     * Replaces NAD83(HARN) (GGN93) and NAD83(FBN) in Guam. Replaced by NAD83(MA11).
5179
     */
5180
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_MARP00 = 'urn:ogc:def:datum:EPSG::1221';
5181
5182
    /**
5183
     * North American Datum of 1983 (PACP00)
5184
     * Type: Geodetic
5185
     * Extent: American Samoa, Marshall Islands, United States (USA) - Hawaii, United States minor outlying islands;
5186
     * onshore and offshore.
5187
     * Defined by a time-dependent seven parameter transformation of ITRF2000 3D geocentric Cartesian coordinates and
5188
     * velocities at reference epoch 1993.62, aligned to the Pacific plate at other epochs based on an Euler pole
5189
     * rotation.
5190
     * Replaces NAD83(HARN) and NAD83(FBN) in Hawaii and American Samoa. Replaced by NAD83(PA11).
5191
     */
5192
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_PACP00 = 'urn:ogc:def:datum:EPSG::1249';
5193
5194
    /**
5195
     * North American Vertical Datum 1988
5196
     * Type: Vertical
5197
     * Extent: Mexico - onshore. United States (USA) - CONUS and Alaska - onshore - Alabama; Alaska; Arizona; Arkansas;
5198
     * California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky;
5199
     * Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska;
5200
     * Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon;
5201
     * Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington;
5202
     * West Virginia; Wisconsin; Wyoming.
5203
     * Mean water level 1970-1983 at Pointe-au-Père (Father's Point) and 1984-1988 at Rimouski, Quebec. Benchmark
5204
     * 1250-G = 6.273m.
5205
     * Helmert orthometric heights.
5206
     */
5207
    public const EPSG_NORTH_AMERICAN_VERTICAL_DATUM_1988 = 'urn:ogc:def:datum:EPSG::5103';
5208
5209
    /**
5210
     * North Rona
5211
     * Type: Vertical
5212
     * Extent: United Kingdom (UK) - Great Britain - Scotland - North Rona onshore.
5213
     * Orthometric heights.
5214
     */
5215
    public const EPSG_NORTH_RONA = 'urn:ogc:def:datum:EPSG::5143';
5216
5217
    /**
5218
     * Northern Marianas Vertical Datum of 2003
5219
     * Type: Vertical
5220
     * Extent: Northern Mariana Islands - onshore - Rota, Saipan and Tinian.
5221
     * Mean sea level at Tanapag harbor, Saipan. Benchmark 1633227 TIDAL UH-2C = 1.657m relative to National Tidal
5222
     * Datum Epoch 1983-2001. Transferred to Rota (East Harbor, BM TIDAL 3 = 1.482m) and Tinian (Harbor BM TIDAL 1 =
5223
     * 2.361m).
5224
     * Replaces all earlier vertical datums on these islands.
5225
     */
5226
    public const EPSG_NORTHERN_MARIANAS_VERTICAL_DATUM_OF_2003 = 'urn:ogc:def:datum:EPSG::1119';
5227
5228
    /**
5229
     * Norway Normal Null 1954
5230
     * Type: Vertical
5231
     * Extent: Norway - onshore.
5232
     * MSL defined by regression at 7 gauges with between 17 and 67 years observations.
5233
     * Includes initial NN1954 system and NNN1957 system. Former name retained. Normal-orthometric heights. Replaced by
5234
     * NN2000.
5235
     */
5236
    public const EPSG_NORWAY_NORMAL_NULL_1954 = 'urn:ogc:def:datum:EPSG::5174';
5237
5238
    /**
5239
     * Norway Normal Null 2000
5240
     * Type: Vertical
5241
     * Extent: Norway - onshore.
5242
     * Adjustment is referenced to mean high tide at Amsterdams Peil in 1684. To account for land level movements
5243
     * caused by isostatic rebound, heights are reduced to epoch 2000.0 using values computed from the NKG2005LU uplift
5244
     * model.
5245
     * Replaces NN54. Uses Normal heights.
5246
     */
5247
    public const EPSG_NORWAY_NORMAL_NULL_2000 = 'urn:ogc:def:datum:EPSG::1096';
5248
5249
    /**
5250
     * Norwegian Chart Datum
5251
     * Type: Vertical
5252
     * Extent: Norway (offshore) and Svalbard and Jan Mayen (offshore).
5253
     * LAT (sum of all harmonic constituents) with an added safety margin in areas where low water levels frequently
5254
     * deviate from LAT. The safety margin is 20 cm from Utsira to the Swedish border and 30 cm in the inner part of
5255
     * the Oslofjord (north of Drøbak).
5256
     * Prior to 2000-01-01 the definition of chart datum was Z0 = M2 + S2 + N2 + K2 + K1 + ½Sa plus safety margins (10
5257
     * cm north of Hordaland, 20 cm in Hordaland, 30 cm from Rogaland to the Swedish border and 40 cm in the inner
5258
     * parts of the Oslofjord).
5259
     */
5260
    public const EPSG_NORWEGIAN_CHART_DATUM = 'urn:ogc:def:datum:EPSG::1301';
5261
5262
    /**
5263
     * Not specified (based on Airy 1830 ellipsoid)
5264
     * Type: Geodetic
5265
     * Extent: World.
5266
     * Included for coordinate reference systems where datum is unknown.
5267
     */
5268
    public const EPSG_NOT_SPECIFIED_BASED_ON_AIRY_1830_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6001';
5269
5270
    /**
5271
     * Not specified (based on Airy Modified 1849 ellipsoid)
5272
     * Type: Geodetic
5273
     * Extent: World.
5274
     * Included for coordinate reference systems where datum is unknown.
5275
     */
5276
    public const EPSG_NOT_SPECIFIED_BASED_ON_AIRY_MODIFIED_1849_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6002';
5277
5278
    /**
5279
     * Not specified (based on Australian National Spheroid)
5280
     * Type: Geodetic
5281
     * Extent: World.
5282
     * Included for coordinate reference systems where datum is unknown.
5283
     */
5284
    public const EPSG_NOT_SPECIFIED_BASED_ON_AUSTRALIAN_NATIONAL_SPHEROID = 'urn:ogc:def:datum:EPSG::6003';
5285
5286
    /**
5287
     * Not specified (based on Average Terrestrial System 1977 ellipsoid)
5288
     * Type: Geodetic
5289
     * Extent: World.
5290
     * Included for coordinate reference systems where datum is unknown.
5291
     */
5292
    public const EPSG_NOT_SPECIFIED_BASED_ON_AVERAGE_TERRESTRIAL_SYSTEM_1977_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6041';
5293
5294
    /**
5295
     * Not specified (based on Bessel 1841 ellipsoid)
5296
     * Type: Geodetic
5297
     * Extent: World.
5298
     * Included for coordinate reference systems where datum is unknown.
5299
     */
5300
    public const EPSG_NOT_SPECIFIED_BASED_ON_BESSEL_1841_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6004';
5301
5302
    /**
5303
     * Not specified (based on Bessel Modified ellipsoid)
5304
     * Type: Geodetic
5305
     * Extent: World.
5306
     * Included for coordinate reference systems where datum is unknown.
5307
     */
5308
    public const EPSG_NOT_SPECIFIED_BASED_ON_BESSEL_MODIFIED_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6005';
5309
5310
    /**
5311
     * Not specified (based on Bessel Namibia ellipsoid)
5312
     * Type: Geodetic
5313
     * Extent: World.
5314
     * Included for coordinate reference systems where datum is unknown.
5315
     */
5316
    public const EPSG_NOT_SPECIFIED_BASED_ON_BESSEL_NAMIBIA_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6006';
5317
5318
    /**
5319
     * Not specified (based on Clarke 1858 ellipsoid)
5320
     * Type: Geodetic
5321
     * Extent: World.
5322
     * Included for coordinate reference systems where datum is unknown.
5323
     */
5324
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1858_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6007';
5325
5326
    /**
5327
     * Not specified (based on Clarke 1866 Authalic Sphere)
5328
     * Type: Geodetic
5329
     * Extent: World.
5330
     * Included for coordinate reference systems where datum is unknown.
5331
     */
5332
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1866_AUTHALIC_SPHERE = 'urn:ogc:def:datum:EPSG::6052';
5333
5334
    /**
5335
     * Not specified (based on Clarke 1866 ellipsoid)
5336
     * Type: Geodetic
5337
     * Extent: World.
5338
     * Included for coordinate reference systems where datum is unknown.
5339
     */
5340
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1866_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6008';
5341
5342
    /**
5343
     * Not specified (based on Clarke 1880 (Arc) ellipsoid)
5344
     * Type: Geodetic
5345
     * Extent: World.
5346
     * Included for coordinate reference systems where datum is unknown.
5347
     */
5348
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_ARC_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6013';
5349
5350
    /**
5351
     * Not specified (based on Clarke 1880 (Benoit) ellipsoid)
5352
     * Type: Geodetic
5353
     * Extent: World.
5354
     * Included for coordinate reference systems where datum is unknown.
5355
     */
5356
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_BENOIT_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6010';
5357
5358
    /**
5359
     * Not specified (based on Clarke 1880 (IGN) ellipsoid)
5360
     * Type: Geodetic
5361
     * Extent: World.
5362
     * Included for coordinate reference systems where datum is unknown.
5363
     */
5364
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_IGN_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6011';
5365
5366
    /**
5367
     * Not specified (based on Clarke 1880 (RGS) ellipsoid)
5368
     * Type: Geodetic
5369
     * Extent: World.
5370
     * Included for coordinate reference systems where datum is unknown.
5371
     */
5372
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_RGS_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6012';
5373
5374
    /**
5375
     * Not specified (based on Clarke 1880 (SGA 1922) ellipsoid)
5376
     * Type: Geodetic
5377
     * Extent: World.
5378
     * Included for coordinate reference systems where datum is unknown.
5379
     */
5380
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_SGA_1922_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6014';
5381
5382
    /**
5383
     * Not specified (based on Clarke 1880 ellipsoid)
5384
     * Type: Geodetic
5385
     * Extent: World.
5386
     * Included for coordinate reference systems where datum is unknown.
5387
     */
5388
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6034';
5389
5390
    /**
5391
     * Not specified (based on Everest (1830 Definition) ellipsoid)
5392
     * Type: Geodetic
5393
     * Extent: World.
5394
     * Included for coordinate reference systems where datum is unknown.
5395
     */
5396
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_DEFINITION_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6042';
5397
5398
    /**
5399
     * Not specified (based on Everest 1830 (1937 Adjustment) ellipsoid)
5400
     * Type: Geodetic
5401
     * Extent: World.
5402
     * Included for coordinate reference systems where datum is unknown.
5403
     */
5404
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_1937_ADJUSTMENT_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6015';
5405
5406
    /**
5407
     * Not specified (based on Everest 1830 (1962 Definition) ellipsoid)
5408
     * Type: Geodetic
5409
     * Extent: World.
5410
     * Included for coordinate reference systems where datum is unknown.
5411
     */
5412
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_1962_DEFINITION_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6044';
5413
5414
    /**
5415
     * Not specified (based on Everest 1830 (1967 Definition) ellipsoid)
5416
     * Type: Geodetic
5417
     * Extent: World.
5418
     * Included for coordinate reference systems where datum is unknown.
5419
     */
5420
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_1967_DEFINITION_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6016';
5421
5422
    /**
5423
     * Not specified (based on Everest 1830 (1975 Definition) ellipsoid)
5424
     * Type: Geodetic
5425
     * Extent: World.
5426
     * Included for coordinate reference systems where datum is unknown.
5427
     */
5428
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_1975_DEFINITION_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6045';
5429
5430
    /**
5431
     * Not specified (based on Everest 1830 Modified ellipsoid)
5432
     * Type: Geodetic
5433
     * Extent: World.
5434
     * Included for coordinate reference systems where datum is unknown.
5435
     */
5436
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_MODIFIED_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6018';
5437
5438
    /**
5439
     * Not specified (based on GEM 10C ellipsoid)
5440
     * Type: Geodetic
5441
     * Extent: World.
5442
     * Included for coordinate reference systems where datum is unknown.
5443
     */
5444
    public const EPSG_NOT_SPECIFIED_BASED_ON_GEM_10C_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6031';
5445
5446
    /**
5447
     * Not specified (based on GRS 1967 ellipsoid)
5448
     * Type: Geodetic
5449
     * Extent: World.
5450
     * Included for coordinate reference systems where datum is unknown.
5451
     */
5452
    public const EPSG_NOT_SPECIFIED_BASED_ON_GRS_1967_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6036';
5453
5454
    /**
5455
     * Not specified (based on GRS 1980 Authalic Sphere)
5456
     * Type: Geodetic
5457
     * Extent: World.
5458
     * Included for coordinate reference systems where datum is unknown.
5459
     */
5460
    public const EPSG_NOT_SPECIFIED_BASED_ON_GRS_1980_AUTHALIC_SPHERE = 'urn:ogc:def:datum:EPSG::6047';
5461
5462
    /**
5463
     * Not specified (based on GRS 1980 ellipsoid)
5464
     * Type: Geodetic
5465
     * Extent: World.
5466
     * Included for coordinate reference systems where datum is unknown.
5467
     */
5468
    public const EPSG_NOT_SPECIFIED_BASED_ON_GRS_1980_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6019';
5469
5470
    /**
5471
     * Not specified (based on Helmert 1906 ellipsoid)
5472
     * Type: Geodetic
5473
     * Extent: World.
5474
     * Included for coordinate reference systems where datum is unknown.
5475
     */
5476
    public const EPSG_NOT_SPECIFIED_BASED_ON_HELMERT_1906_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6020';
5477
5478
    /**
5479
     * Not specified (based on Hughes 1980 ellipsoid)
5480
     * Type: Geodetic
5481
     * Extent: World.
5482
     * Included for coordinate reference systems where datum is unknown.
5483
     */
5484
    public const EPSG_NOT_SPECIFIED_BASED_ON_HUGHES_1980_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6054';
5485
5486
    /**
5487
     * Not specified (based on Indonesian National Spheroid)
5488
     * Type: Geodetic
5489
     * Extent: World.
5490
     * Included for coordinate reference systems where datum is unknown.
5491
     */
5492
    public const EPSG_NOT_SPECIFIED_BASED_ON_INDONESIAN_NATIONAL_SPHEROID = 'urn:ogc:def:datum:EPSG::6021';
5493
5494
    /**
5495
     * Not specified (based on International 1924 Authalic Sphere)
5496
     * Type: Geodetic
5497
     * Extent: World.
5498
     * Included for coordinate reference systems where datum is unknown.
5499
     */
5500
    public const EPSG_NOT_SPECIFIED_BASED_ON_INTERNATIONAL_1924_AUTHALIC_SPHERE = 'urn:ogc:def:datum:EPSG::6053';
5501
5502
    /**
5503
     * Not specified (based on International 1924 ellipsoid)
5504
     * Type: Geodetic
5505
     * Extent: World.
5506
     * Included for coordinate reference systems where datum is unknown.
5507
     */
5508
    public const EPSG_NOT_SPECIFIED_BASED_ON_INTERNATIONAL_1924_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6022';
5509
5510
    /**
5511
     * Not specified (based on Krassowsky 1940 ellipsoid)
5512
     * Type: Geodetic
5513
     * Extent: World.
5514
     * Included for coordinate reference systems where datum is unknown.
5515
     */
5516
    public const EPSG_NOT_SPECIFIED_BASED_ON_KRASSOWSKY_1940_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6024';
5517
5518
    /**
5519
     * Not specified (based on NWL 9D ellipsoid)
5520
     * Type: Geodetic
5521
     * Extent: World.
5522
     * Included for coordinate reference systems where datum is unknown.
5523
     */
5524
    public const EPSG_NOT_SPECIFIED_BASED_ON_NWL_9D_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6025';
5525
5526
    /**
5527
     * Not specified (based on OSU86F ellipsoid)
5528
     * Type: Geodetic
5529
     * Extent: World.
5530
     * Included for coordinate reference systems where datum is unknown.
5531
     */
5532
    public const EPSG_NOT_SPECIFIED_BASED_ON_OSU86F_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6032';
5533
5534
    /**
5535
     * Not specified (based on OSU91A ellipsoid)
5536
     * Type: Geodetic
5537
     * Extent: World.
5538
     * Included for coordinate reference systems where datum is unknown.
5539
     */
5540
    public const EPSG_NOT_SPECIFIED_BASED_ON_OSU91A_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6033';
5541
5542
    /**
5543
     * Not specified (based on Plessis 1817 ellipsoid)
5544
     * Type: Geodetic
5545
     * Extent: World.
5546
     * Included for coordinate reference systems where datum is unknown.
5547
     */
5548
    public const EPSG_NOT_SPECIFIED_BASED_ON_PLESSIS_1817_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6027';
5549
5550
    /**
5551
     * Not specified (based on Struve 1860 ellipsoid)
5552
     * Type: Geodetic
5553
     * Extent: World.
5554
     * Included for coordinate reference systems where datum is unknown.
5555
     */
5556
    public const EPSG_NOT_SPECIFIED_BASED_ON_STRUVE_1860_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6028';
5557
5558
    /**
5559
     * Not specified (based on WGS 72 ellipsoid)
5560
     * Type: Geodetic
5561
     * Extent: World.
5562
     * Included for coordinate reference systems where datum is unknown.
5563
     */
5564
    public const EPSG_NOT_SPECIFIED_BASED_ON_WGS_72_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6043';
5565
5566
    /**
5567
     * Not specified (based on WGS 84 ellipsoid)
5568
     * Type: Geodetic
5569
     * Extent: World.
5570
     * Included for coordinate reference systems where datum is unknown.
5571
     */
5572
    public const EPSG_NOT_SPECIFIED_BASED_ON_WGS_84_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6030';
5573
5574
    /**
5575
     * Not specified (based on War Office ellipsoid)
5576
     * Type: Geodetic
5577
     * Extent: World.
5578
     * Included for coordinate reference systems where datum is unknown.
5579
     */
5580
    public const EPSG_NOT_SPECIFIED_BASED_ON_WAR_OFFICE_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6029';
5581
5582
    /**
5583
     * Nouakchott 1965
5584
     * Type: Geodetic
5585
     * Extent: Mauritania - coastal area south of Cape Timiris.
5586
     * Nouakchott astronomical point.
5587
     * Triangulation limited to environs of Nouakchott. Extended in 1982 by satellite translocation from a single
5588
     * station "Ruines" to support Syledis chain for offshore operations. Replaced by Mauritania 1999 (datum code
5589
     * 6602).
5590
     */
5591
    public const EPSG_NOUAKCHOTT_1965 = 'urn:ogc:def:datum:EPSG::6680';
5592
5593
    /**
5594
     * Nouvelle Triangulation Francaise
5595
     * Type: Geodetic
5596
     * Extent: France - onshore - mainland and Corsica.
5597
     * Fundamental point: Pantheon. Latitude: 48°50'46.522"N, longitude: 2°20'48.667"E (of Greenwich).
5598
     */
5599
    public const EPSG_NOUVELLE_TRIANGULATION_FRANCAISE = 'urn:ogc:def:datum:EPSG::6275';
5600
5601
    /**
5602
     * Nouvelle Triangulation Francaise (Paris)
5603
     * Type: Geodetic
5604
     * Extent: France - onshore - mainland and Corsica.
5605
     * Fundamental point: Pantheon. Latitude: 54.273618g N, longitude: 0.0106921g E (of Paris).
5606
     */
5607
    public const EPSG_NOUVELLE_TRIANGULATION_FRANCAISE_PARIS = 'urn:ogc:def:datum:EPSG::6807';
5608
5609
    /**
5610
     * OS (SN) 1980
5611
     * Type: Geodetic
5612
     * Extent: Ireland - onshore. United Kingdom (UK) - onshore - England; Scotland; Wales; Northern Ireland. Isle of
5613
     * Man.
5614
     * Fundamental point: Herstmonceux. Latitude: 50°51'55.271"N, longitude: 0°20'45.882"E (of Greenwich).
5615
     */
5616
    public const EPSG_OS_SN_1980 = 'urn:ogc:def:datum:EPSG::6279';
5617
5618
    /**
5619
     * OSGB 1970 (SN)
5620
     * Type: Geodetic
5621
     * Extent: United Kingdom (UK) - Great Britain - England and Wales onshore, Scotland onshore and Western Isles
5622
     * nearshore including Sea of the Hebrides and The Minch; Isle of Man onshore.
5623
     * Fundamental point: Herstmonceux. Latitude: 50°51'55.271"N, longitude: 0°20'45.882"E (of Greenwich).
5624
     */
5625
    public const EPSG_OSGB_1970_SN = 'urn:ogc:def:datum:EPSG::6278';
5626
5627
    /**
5628
     * OSNI 1952
5629
     * Type: Geodetic
5630
     * Extent: United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
5631
     * Position fixed to the coordinates from the 19th century Principle Triangulation of station Divis. Scale and
5632
     * orientation controlled by position of Principle Triangulation stations Knocklayd and Trostan.
5633
     * Replaced by Geodetic Datum of 1965 alias 1975 Mapping Adjustment or TM75 (datum code 6300).
5634
     */
5635
    public const EPSG_OSNI_1952 = 'urn:ogc:def:datum:EPSG::6188';
5636
5637
    /**
5638
     * Observatario
5639
     * Type: Geodetic
5640
     * Extent: Mozambique - south.
5641
     * Fundamental point: Campos Rodrigues observatory, Maputo.
5642
     * Replaced by transformation to Tete datum (datum code 6127).
5643
     */
5644
    public const EPSG_OBSERVATARIO = 'urn:ogc:def:datum:EPSG::6129';
5645
5646
    /**
5647
     * Ocotepeque 1935
5648
     * Type: Geodetic
5649
     * Extent: Costa Rica; El Salvador; Guatemala; Honduras; Nicaragua.
5650
     * Fundamental point: Base Norte. Latitude: 14°26'20.168"N, longitude: 89°11'33.964"W.
5651
     * Replaced in Costa Rica by Costa Rica 2005 (CR05) from March 2007 and replaced in El Salvador by SIRGAS_ES2007
5652
     * from August 2007.
5653
     */
5654
    public const EPSG_OCOTEPEQUE_1935 = 'urn:ogc:def:datum:EPSG::1070';
5655
5656
    /**
5657
     * Old Hawaiian
5658
     * Type: Geodetic
5659
     * Extent: United States (USA) - Hawaii - main islands onshore.
5660
     * Fundamental point: Oahu West Base Astro.  Latitude: 21°18'13.89"N, longitude 157°50'55.79"W (of Greenwich)
5661
     * Hawaiian Islands were never on NAD27 but rather on Old Hawaiian Datum. NADCON conversion program provides
5662
     * transformation from Old Hawaiian Datum to NAD83 (original 1986 realization) but making the transformation appear
5663
     * to user as if from NAD27.
5664
     */
5665
    public const EPSG_OLD_HAWAIIAN = 'urn:ogc:def:datum:EPSG::6135';
5666
5667
    /**
5668
     * Oman National Geodetic Datum 2014
5669
     * Type: Geodetic
5670
     * Extent: Oman - onshore and offshore.
5671
     * 20 stations of the Oman primary network tied to ITRF2008 at epoch 2013.15.
5672
     * Replaces WGS 84 (G873). Replaced by ONGD17.
5673
     */
5674
    public const EPSG_OMAN_NATIONAL_GEODETIC_DATUM_2014 = 'urn:ogc:def:datum:EPSG::1147';
5675
5676
    /**
5677
     * Oman National Geodetic Datum 2017
5678
     * Type: Geodetic
5679
     * Extent: Oman - onshore and offshore.
5680
     * Oman primary network of 39 stations tied to ITRF2014 at epoch 2017.24.
5681
     * Replaces ONGD14 from March 2019.
5682
     */
5683
    public const EPSG_OMAN_NATIONAL_GEODETIC_DATUM_2017 = 'urn:ogc:def:datum:EPSG::1263';
5684
5685
    /**
5686
     * One Tree Point 1964
5687
     * Type: Vertical
5688
     * Extent: New Zealand - North Island - One Tree Point vertical CRS area.
5689
     * MSL at Whangarei harbour 1960-1963.
5690
     */
5691
    public const EPSG_ONE_TREE_POINT_1964 = 'urn:ogc:def:datum:EPSG::5165';
5692
5693
    /**
5694
     * Ordnance Datum Newlyn
5695
     * Type: Vertical
5696
     * Extent: United Kingdom (UK) - Great Britain onshore - England and Wales - mainland; Scotland - mainland and
5697
     * Inner Hebrides.
5698
     * Mean Sea Level at Newlyn between 1915 and 1921. Initially realised through 1921 and then 1956 levelling network
5699
     * adjustments. From 2002 redefined to be realised through OSGM geoid models.
5700
     * Orthometric heights.
5701
     */
5702
    public const EPSG_ORDNANCE_DATUM_NEWLYN = 'urn:ogc:def:datum:EPSG::5101';
5703
5704
    /**
5705
     * Ordnance Datum Newlyn (Offshore)
5706
     * Type: Vertical
5707
     * Extent: United Kingdom (UK) - offshore between 2km from shore and boundary of UKCS within 49°45'N to 61°N and
5708
     * 9°W to 2°E.
5709
     * Defined by OSGM geoid model.
5710
     * Extension of Ordnance Datum Newlyn offshore through geoid model. Orthometric heights.
5711
     */
5712
    public const EPSG_ORDNANCE_DATUM_NEWLYN_OFFSHORE = 'urn:ogc:def:datum:EPSG::1164';
5713
5714
    /**
5715
     * Ordnance Datum Newlyn (Orkney Isles)
5716
     * Type: Vertical
5717
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Orkney Islands onshore.
5718
     * Connected to Newlyn datum by triangulation from the British mainland. Initially realised through levelling
5719
     * network adjustment, from 2002 redefined to be realised through OSGM geoid model.
5720
     * Considered as separate from Newlyn because the accuracy of the trigonometric connection across the Pentland
5721
     * Firth does not meet geodetic levelling specifications. Orthometric heights.
5722
     */
5723
    public const EPSG_ORDNANCE_DATUM_NEWLYN_ORKNEY_ISLES = 'urn:ogc:def:datum:EPSG::5138';
5724
5725
    /**
5726
     * Ordnance Survey of Great Britain 1936
5727
     * Type: Geodetic
5728
     * Extent: United Kingdom (UK) - offshore to boundary of UKCS within 49°45'N to 61°N and 9°W to 2°E; onshore
5729
     * Great Britain (England, Wales and Scotland). Isle of Man onshore.
5730
     * Prior to 2002 fundamental point: Herstmonceux, Latitude: 50°51'55.271"N, longitude: 0°20'45.882"E,
5731
     * triangulation adjustment started 1936, completed 1962. From April 2002 the datum is defined through the
5732
     * application of the OSTN transformation from ETRS89.
5733
     * The average accuracy of OSTN compared to the old triangulation network (down to 3rd order) is 0.1m. With the
5734
     * introduction of OSTN15, the area for OGSB36 has effectively been extended from Britain to cover the adjacent UK
5735
     * Continental Shelf.
5736
     */
5737
    public const EPSG_ORDNANCE_SURVEY_OF_GREAT_BRITAIN_1936 = 'urn:ogc:def:datum:EPSG::6277';
5738
5739
    /**
5740
     * Ostend
5741
     * Type: Vertical
5742
     * Extent: Belgium - onshore.
5743
     * Mean low water at Ostend 1855-78 transferred to benchmark GIKMN at Uccle.
5744
     * Realized through the second general levelling (DNG or TAW) 1981-1999.
5745
     */
5746
    public const EPSG_OSTEND = 'urn:ogc:def:datum:EPSG::5110';
5747
5748
    /**
5749
     * OxWo08 Intermediate Reference Frame
5750
     * Type: Geodetic
5751
     * Extent: United Kingdom (UK) - on or related to the rail route from Oxford to Worcester.
5752
     * Defined through the application of the OxWo08 NTv2 transformation to ETRS89 as realized through OSNet v2009
5753
     * CORS.
5754
     * Created in 2022 to support intermediate CRS OxWo08-IRF in the emulation of the OxWo08 Snake map projection.
5755
     */
5756
    public const EPSG_OXWO08_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1344';
5757
5758
    /**
5759
     * PDO Height Datum 1993
5760
     * Type: Vertical
5761
     * Extent: Oman - onshore. Includes Musandam and the Kuria Muria (Al Hallaniyah) islands.
5762
     * Misclosure between Muscat and Salalah less than .5 meters with differences from of up to 5 meters from old Fahud
5763
     * Datum. The PHD93 adjustment was initially known as the Spine. Replaces Fahud Vertical Datum (code 5124) from
5764
     * 1993.
5765
     */
5766
    public const EPSG_PDO_HEIGHT_DATUM_1993 = 'urn:ogc:def:datum:EPSG::5123';
5767
5768
    /**
5769
     * PDO Survey Datum 1993
5770
     * Type: Geodetic
5771
     * Extent: Oman - onshore. Includes Musandam and the Kuria Muria (Al Hallaniyah) islands.
5772
     * Adjustment best fitted to Fahud network.
5773
     * Replaces Fahud datum (code 6232). Maximum differences to Fahud adjustment are 20 metres.
5774
     */
5775
    public const EPSG_PDO_SURVEY_DATUM_1993 = 'urn:ogc:def:datum:EPSG::6134';
5776
5777
    /**
5778
     * PNG08
5779
     * Type: Vertical
5780
     * Extent: Papua New Guinea - between 0°N and 12°S and 140°E and 158°E - onshore and offshore.
5781
     * Mean sea level at 8 tide gauges around PNG, defined through application of PNG08 geoid model (transformation
5782
     * code 7655) to PNG94 (CRS code 5545).
5783
     */
5784
    public const EPSG_PNG08 = 'urn:ogc:def:datum:EPSG::1149';
5785
5786
    /**
5787
     * Palestine 1923
5788
     * Type: Geodetic
5789
     * Extent: Israel - onshore; Jordan; Palestine Territory - onshore.
5790
     * Fundamental point: Point 82'M  Jerusalem. Latitude: 31°44' 2.749"N, longitude: 35°12'43.490"E (of Greenwich).
5791
     */
5792
    public const EPSG_PALESTINE_1923 = 'urn:ogc:def:datum:EPSG::6281';
5793
5794
    /**
5795
     * Pampa del Castillo
5796
     * Type: Geodetic
5797
     * Extent: Argentina - Chibut province south of approximately 42°30'S and Santa Cruz province north of
5798
     * approximately 50°20'S.
5799
     * Replaced by Campo Inchauspe (code 6221) for topographic mapping, use for oil exploration and production in Golfo
5800
     * San Jorge basin (44°S to 47.5°S) continues.
5801
     */
5802
    public const EPSG_PAMPA_DEL_CASTILLO = 'urn:ogc:def:datum:EPSG::6161';
5803
5804
    /**
5805
     * Panama-Colon 1911
5806
     * Type: Geodetic
5807
     * Extent: Panama - onshore.
5808
     * Fundamental point: Balboa Hill. Latitude: 09°04'57.637"N, longtitude: 79°43'50.313"W.
5809
     * Reports of the existence of an Ancon datum are probably erroneous, considering that the origin of the
5810
     * Panamá-Colón Datum of 1911 is at Balboa Hill and the access road up the hill is from the town of Ancon, Canal
5811
     * Zone.
5812
     */
5813
    public const EPSG_PANAMA_COLON_1911 = 'urn:ogc:def:datum:EPSG::1072';
5814
5815
    /**
5816
     * Papua New Guinea Geodetic Datum 1994
5817
     * Type: Geodetic
5818
     * Extent: Papua New Guinea - onshore and offshore. Includes Bismark archipelago, Louisade archipelago, Admiralty
5819
     * Islands, d'Entrecasteaux Islands, northern Solomon Islands, Trobriand Islands, New Britain, New Ireland,
5820
     * Woodlark, and associated islands.
5821
     * ITRF92 at epoch 1994.0.
5822
     * Adopted 1996. Coincident with WGS 84 in 1994 but rapidly divergent due to significant tectonic motion in PNG.
5823
     */
5824
    public const EPSG_PAPUA_NEW_GUINEA_GEODETIC_DATUM_1994 = 'urn:ogc:def:datum:EPSG::1076';
5825
5826
    /**
5827
     * Parametry Zemli 1990
5828
     * Type: Dynamic geodetic
5829
     * Extent: World.
5830
     * Defined through coordinates of stations of the satellite geodetic network (SGN) in Russia at epoch 1990.0.
5831
     * Replaced by PZ-90.02 from 2007-09-20.
5832
     */
5833
    public const EPSG_PARAMETRY_ZEMLI_1990 = 'urn:ogc:def:datum:EPSG::6740';
5834
5835
    /**
5836
     * Parametry Zemli 1990.02
5837
     * Type: Dynamic geodetic
5838
     * Extent: World.
5839
     * Defined through coordinates of 33 stations of the satellite geodetic network (SGN) in Russia and Antarctica
5840
     * adjusted to a subset of 14 IGS stations in Russia at epoch 2002.0. The IGS station coordinates are considered to
5841
     * be equivalent to ITRF2000.
5842
     * Replaces PZ-90 from 2007-09-20. Replaced by PZ-90.11 from 2014-01-15.
5843
     */
5844
    public const EPSG_PARAMETRY_ZEMLI_1990_02 = 'urn:ogc:def:datum:EPSG::1157';
5845
5846
    /**
5847
     * Parametry Zemli 1990.11
5848
     * Type: Dynamic geodetic
5849
     * Extent: World.
5850
     * Defined through coordinates of 33 stations of the satellite geodetic network (SGN) in Russia and Antarctica
5851
     * adjusted to a subset of 14 IGS stations in Russia at epoch 2010.0. The IGS station coordinates are considered to
5852
     * be equivalent to ITRF2008.
5853
     * Replaces PZ-90.02 from 2014-01-15.
5854
     */
5855
    public const EPSG_PARAMETRY_ZEMLI_1990_11 = 'urn:ogc:def:datum:EPSG::1158';
5856
5857
    /**
5858
     * Peru96
5859
     * Type: Geodetic
5860
     * Extent: Peru - onshore and offshore.
5861
     * Densification of SIRGAS95 network (ITRF94 at epoch 1995.4) in Peru, consisting of 47 passive geodetic stations
5862
     * and 3 continuous recording GPS stations.
5863
     * Densification of SIRGAS 1995 within Peru. Replaces PSAD56 (datum code 6248) in Peru.
5864
     */
5865
    public const EPSG_PERU96 = 'urn:ogc:def:datum:EPSG::1067';
5866
5867
    /**
5868
     * Petrels 1972
5869
     * Type: Geodetic
5870
     * Extent: Antarctica - Adelie Land - Petrels island.
5871
     * Fundamental point: Astro station DZ on Ile de Petrels. Latitude: 66°40'00"S, longitude: 140°00'46"E (of
5872
     * Greenwich).
5873
     */
5874
    public const EPSG_PETRELS_1972 = 'urn:ogc:def:datum:EPSG::6636';
5875
5876
    /**
5877
     * Philippine Reference System 1992
5878
     * Type: Geodetic
5879
     * Extent: Philippines - onshore and offshore.
5880
     * Fundamental point: Balacan. Latitude: 13°33'41.000"N, longitude: 121°52'03.000"E (of Greenwich),
5881
     * geoid-ellipsoid separation 0.34m.
5882
     * Replaces Luzon 1911 datum (code 6253).
5883
     */
5884
    public const EPSG_PHILIPPINE_REFERENCE_SYSTEM_1992 = 'urn:ogc:def:datum:EPSG::6683';
5885
5886
    /**
5887
     * Phoenix Islands 1966
5888
     * Type: Geodetic
5889
     * Extent: Kiribati - Phoenix Islands: Kanton, Orona, McKean Atoll, Birnie Atoll, Phoenix Seamounts.
5890
     */
5891
    public const EPSG_PHOENIX_ISLANDS_1966 = 'urn:ogc:def:datum:EPSG::6716';
5892
5893
    /**
5894
     * Pico de las Nieves 1968
5895
     * Type: Geodetic
5896
     * Extent: Spain - Canary Islands onshore.
5897
     * Pico de las Nieves mountain, Gran Canaria. The fundamental point is a different station to that for PN84.
5898
     * Replaced by PN84 only on western islands (El Hierro, La Gomera, La Palma and Tenerife). Both PN68 and PN84
5899
     * replaced by REGCAN95.
5900
     */
5901
    public const EPSG_PICO_DE_LAS_NIEVES_1968 = 'urn:ogc:def:datum:EPSG::1286';
5902
5903
    /**
5904
     * Pico de las Nieves 1984
5905
     * Type: Geodetic
5906
     * Extent: Spain - Canary Islands - El Hierro, La Gomera, La Palma and Tenerife - onshore.
5907
     * Pico de las Nieves mountain, Gran Canaria. The fundamental point is a different station to that for PN68.
5908
     * Replaces Pico de las Nieves 1968 (PN68) only on western islands (El Hierro, La Gomera, La Palma and Tenerife).
5909
     * Replaced by REGCAN95.
5910
     */
5911
    public const EPSG_PICO_DE_LAS_NIEVES_1984 = 'urn:ogc:def:datum:EPSG::6728';
5912
5913
    /**
5914
     * Piraeus Harbour 1986
5915
     * Type: Vertical
5916
     * Extent: Greece - onshore.
5917
     * MSL determined during 1986.
5918
     */
5919
    public const EPSG_PIRAEUS_HARBOUR_1986 = 'urn:ogc:def:datum:EPSG::5115';
5920
5921
    /**
5922
     * Pitcairn 1967
5923
     * Type: Geodetic
5924
     * Extent: Pitcairn - Pitcairn Island.
5925
     * Fundamental point: Pitcairn Astro. Latitude: 25°04'06.87"S, longitude: 130°06'47.83"W (of Greenwich).
5926
     * Replaced by Pitcairn 2006.
5927
     */
5928
    public const EPSG_PITCAIRN_1967 = 'urn:ogc:def:datum:EPSG::6729';
5929
5930
    /**
5931
     * Pitcairn 2006
5932
     * Type: Geodetic
5933
     * Extent: Pitcairn - Pitcairn Island.
5934
     * Fundamental point: Pitcairn Astro. Latitude: 25°04'06.7894"S, longitude: 130°06'46.6816"W (of Greenwich),
5935
     * derived by single point GPS oberservations.
5936
     * Replaces Pitcairn 1967.
5937
     */
5938
    public const EPSG_PITCAIRN_2006 = 'urn:ogc:def:datum:EPSG::6763';
5939
5940
    /**
5941
     * Point 58
5942
     * Type: Geodetic
5943
     * Extent: Senegal - central, Mali - southwest, Burkina Faso - central, Niger - southwest, Nigeria - north, Chad -
5944
     * central. All in proximity to the parallel of latitude of 12°N.
5945
     * Fundamental point: Point 58. Latitude: 12°52'44.045"N, longitude: 3°58'37.040"E (of Greenwich).
5946
     * Used as the basis for computation of the 12th Parallel traverse conducted 1966-70 from Senegal to Chad and
5947
     * connecting to the Blue Nile 1958 (Adindan) triangulation in Sudan.
5948
     */
5949
    public const EPSG_POINT_58 = 'urn:ogc:def:datum:EPSG::6620';
5950
5951
    /**
5952
     * Pointe Geologie Perroud 1950
5953
     * Type: Geodetic
5954
     * Extent: Antarctica - Adelie Land - coastal area between 136°E and 142°E.
5955
     * Fundamental point: Astro station G.0 on Pointe Geologie. Latitude: 66°39'30"S, longitude: 140°01'00"E (of
5956
     * Greenwich).
5957
     */
5958
    public const EPSG_POINTE_GEOLOGIE_PERROUD_1950 = 'urn:ogc:def:datum:EPSG::6637';
5959
5960
    /**
5961
     * Ponta Delgada
5962
     * Type: Vertical
5963
     * Extent: Portugal - eastern Azores - Sao Miguel island onshore.
5964
     * Mean Sea Level during 1991 at Ponta Delgada.
5965
     * Orthometric heights.
5966
     */
5967
    public const EPSG_PONTA_DELGADA = 'urn:ogc:def:datum:EPSG::1110';
5968
5969
    /**
5970
     * Poolbeg
5971
     * Type: Vertical
5972
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
5973
     * Low water mark of the spring tide on the 8 April 1837 at Poolbeg Lighthouse, Dublin.
5974
     * Topographic mapping before 1956 in Northern Ireland and 1970 in the Republic of Ireland. Replaced by Belfast
5975
     * Lough and Malin Head (datum codes 5130-31).
5976
     */
5977
    public const EPSG_POOLBEG = 'urn:ogc:def:datum:EPSG::5152';
5978
5979
    /**
5980
     * Port Moresby 1996
5981
     * Type: Vertical
5982
     * Extent: Papua New Guinea - onshore - Gulf province east of 144°24'E, Central province and National Capital
5983
     * District.
5984
     * BM198 (adjacent to the Port Moresby tide gauge) height of 3.02 above MSL as determined by CSIRO in 1990.
5985
     * Propagated through bilinear interpolation of EGM96 geoid model (transformation code 10084) reduced by offset of
5986
     * -1.58m.
5987
     * Offset has been determined by static GNSS estimation of ellipsoid height of BM198.
5988
     */
5989
    public const EPSG_PORT_MORESBY_1996 = 'urn:ogc:def:datum:EPSG::1171';
5990
5991
    /**
5992
     * Port Moresby 2008
5993
     * Type: Vertical
5994
     * Extent: Papua New Guinea - onshore - Gulf province east of 144°24'E, Central province and National Capital
5995
     * District.
5996
     * BM198 (adjacent to the Port Moresby tide gauge) height of 3.02 above MSL as determined by CSIRO in 1990.
5997
     * Propagated through bilinear interpolation of EGM2008 geoid model (transformation code 3858 or 3859) reduced by
5998
     * offset of -0.93m.
5999
     * Offset has been determined by static GNSS estimation of ellipsoid height of BM198 validated to a precision of 10
6000
     * cm by short period tidal observations at Kerema wharf in 2010.
6001
     */
6002
    public const EPSG_PORT_MORESBY_2008 = 'urn:ogc:def:datum:EPSG::1172';
6003
6004
    /**
6005
     * Porto Santo 1936
6006
     * Type: Geodetic
6007
     * Extent: Portugal - Madeira, Porto Santo and Desertas islands - onshore.
6008
     * SE Base on Porto Santo island.
6009
     * Replaced by 1995 adjustment (datum code 6663). For Selvagens see Selvagem Grande (code 6616).
6010
     */
6011
    public const EPSG_PORTO_SANTO_1936 = 'urn:ogc:def:datum:EPSG::6615';
6012
6013
    /**
6014
     * Porto Santo 1995
6015
     * Type: Geodetic
6016
     * Extent: Portugal - Madeira, Porto Santo and Desertas islands - onshore.
6017
     * SE Base on Porto Santo island. Origin and orientation constrained to those of the 1936 adjustment.
6018
     * Classical and GPS observations. Replaces 1936 adjustment (datum code 6615).
6019
     * For Selvagens see Selvagem Grande (datum code 6616).
6020
     */
6021
    public const EPSG_PORTO_SANTO_1995 = 'urn:ogc:def:datum:EPSG::6663';
6022
6023
    /**
6024
     * Posiciones Geodesicas Argentinas 1994
6025
     * Type: Geodetic
6026
     * Extent: Argentina - onshore and offshore.
6027
     * WGS 84 coordinates at time of survey of a geodetic network of 127 points defining the National Geodetic System
6028
     * (Sistema Geodésico Nacional). Surveyed between February and April 1993 and between March and May 1994.
6029
     * Adopted as defining the National Geodetic Reference Network from 9th May 1997. Technically, but not legally,
6030
     * replaced by POSGAR 98 (datum code 6190) until 15th May 2009 when legally replaced by POSGAR 2007 (datum code
6031
     * 1062).
6032
     */
6033
    public const EPSG_POSICIONES_GEODESICAS_ARGENTINAS_1994 = 'urn:ogc:def:datum:EPSG::6694';
6034
6035
    /**
6036
     * Posiciones Geodesicas Argentinas 1998
6037
     * Type: Geodetic
6038
     * Extent: Argentina - onshore and offshore.
6039
     * A geodetic network of 136 high accuracy surveyed points. Densification of SIRGAS 1995; ITRF94 at epoch 1995.4.
6040
     * Replaced POSGAR 1994 (datum code 6694) for technical, but not legal, purposes. Replaced by POSGAR 2007 (datum
6041
     * code 1062) from May 2009.
6042
     */
6043
    public const EPSG_POSICIONES_GEODESICAS_ARGENTINAS_1998 = 'urn:ogc:def:datum:EPSG::6190';
6044
6045
    /**
6046
     * Posiciones Geodesicas Argentinas 2007
6047
     * Type: Geodetic
6048
     * Extent: Argentina - onshore and offshore.
6049
     * Coordinates of the geodetic network of 211 high accuracy surveyed points (178 passive and 33 continuously
6050
     * operating) defining the National Geodetic System (Sistema Geodésico Nacional) based on ITRF2005 at epoch
6051
     * 2006.632.
6052
     * Adopted by order of the Director of the National Geographic Institute on 15th May 2009 as the new National
6053
     * Geodetic Reference Frame. Replaces POSGAR 94.
6054
     */
6055
    public const EPSG_POSICIONES_GEODESICAS_ARGENTINAS_2007 = 'urn:ogc:def:datum:EPSG::1062';
6056
6057
    /**
6058
     * Potsdam Datum/83
6059
     * Type: Geodetic
6060
     * Extent: Germany - Thuringen.
6061
     * Fundamental point: Rauenberg. Latitude: 52°27'12.021"N, longitude: 13°22'04.928"E (of Greenwich). This station
6062
     * was destroyed in 1910 and the station at Potsdam substituted as the fundamental point.
6063
     * PD/83 is the realization of DHDN in Thuringen. It is the resultant of applying a transformation derived at 13
6064
     * points on the border between East and West Germany to Pulkovo 1942/83 points in Thuringen.
6065
     */
6066
    public const EPSG_POTSDAM_DATUM_83 = 'urn:ogc:def:datum:EPSG::6746';
6067
6068
    /**
6069
     * Principe
6070
     * Type: Geodetic
6071
     * Extent: Sao Tome and Principe - onshore - Principe.
6072
     * Fundamental point: Morro do Papagaio. Latitude: 1°36'46.87"N, longitude: 7°23'39.65"E (of Greenwich).
6073
     */
6074
    public const EPSG_PRINCIPE = 'urn:ogc:def:datum:EPSG::1046';
6075
6076
    /**
6077
     * Provisional South American Datum 1956
6078
     * Type: Geodetic
6079
     * Extent: Aruba - onshore; Bolivia; Bonaire - onshore; Brazil - offshore - Amazon Cone shelf; Chile - onshore
6080
     * north of 43°30'S; Curacao - onshore; Ecuador - mainland onshore; Guyana - onshore; Peru - onshore; Venezuela -
6081
     * onshore.
6082
     * Fundamental point: La Canoa. Latitude: 8°34'17.170"N, longitude: 63°51'34.880"W (of Greenwich).
6083
     * Same origin as La Canoa datum.
6084
     */
6085
    public const EPSG_PROVISIONAL_SOUTH_AMERICAN_DATUM_1956 = 'urn:ogc:def:datum:EPSG::6248';
6086
6087
    /**
6088
     * Puerto Rico
6089
     * Type: Geodetic
6090
     * Extent: Puerto Rico, US Virgin Islands and British Virgin Islands - onshore.
6091
     * Fundamental point: Cardona Island Lighthouse. Latitude:17°57'31.40"N, longitude: 66°38'07.53"W (of Greenwich).
6092
     * NADCON conversion program provides transformation from Puerto Rico Datum to NAD83 (original 1986 realization)
6093
     * but making the transformation appear to user as if from NAD27.
6094
     */
6095
    public const EPSG_PUERTO_RICO = 'urn:ogc:def:datum:EPSG::6139';
6096
6097
    /**
6098
     * Puerto Rico Vertical Datum of 2002
6099
     * Type: Vertical
6100
     * Extent: Puerto Rico - onshore.
6101
     * Mean sea level at San Juan. Benchmark 9756371 A TIDAL = 1.334m relative to National Tidal Datum Epoch 1960-1978.
6102
     * Replaces all earlier vertical datums for Puerto Rico.
6103
     */
6104
    public const EPSG_PUERTO_RICO_VERTICAL_DATUM_OF_2002 = 'urn:ogc:def:datum:EPSG::1123';
6105
6106
    /**
6107
     * Pulkovo 1942
6108
     * Type: Geodetic
6109
     * Extent: Armenia; Azerbaijan; Belarus; Estonia - onshore; Georgia - onshore; Kazakhstan; Kyrgyzstan; Latvia -
6110
     * onshore; Lithuania - onshore; Moldova; Russian Federation - onshore; Tajikistan; Turkmenistan; Ukraine -
6111
     * onshore; Uzbekistan.
6112
     * Fundamental point: Pulkovo observatory. Latitude: 59°46'18.550"N, longitude: 30°19'42.090"E (of Greenwich).
6113
     */
6114
    public const EPSG_PULKOVO_1942 = 'urn:ogc:def:datum:EPSG::6284';
6115
6116
    /**
6117
     * Pulkovo 1942(58)
6118
     * Type: Geodetic
6119
     * Extent: Onshore: Bulgaria, Czechia, Germany (former DDR), Hungary, Poland and Slovakia. Onshore and offshore:
6120
     * Albania and Romania.
6121
     * Fundamental point: Pulkovo observatory. Latitude: 59°46'18.550"N, longitude: 30°19'42.090"E (of Greenwich).
6122
     * 1956 international adjustment of Uniform Astro-Geodetic Network of countries of central and eastern Europe.
6123
     * Locally densified during 1957 and 1958.
6124
     */
6125
    public const EPSG_PULKOVO_1942_58 = 'urn:ogc:def:datum:EPSG::6179';
6126
6127
    /**
6128
     * Pulkovo 1942(83)
6129
     * Type: Geodetic
6130
     * Extent: Onshore Bulgaria, Czechia, Germany (former DDR), Hungary and Slovakia.
6131
     * Fundamental point: Pulkovo observatory. Latitude: 59°46'18.550"N, longitude: 30°19'42.090"E (of Greenwich).
6132
     * 1983 international adjustment of Uniform Astro-Geodetic Network of countries of central and eastern Europe.
6133
     */
6134
    public const EPSG_PULKOVO_1942_83 = 'urn:ogc:def:datum:EPSG::6178';
6135
6136
    /**
6137
     * Pulkovo 1995
6138
     * Type: Geodetic
6139
     * Extent: Russian Federation - onshore and offshore.
6140
     * Fundamental point: Pulkovo observatory. Latitude: 59°46'15.359"N, longitude: 30°19'28.318"E (of Greenwich).
6141
     */
6142
    public const EPSG_PULKOVO_1995 = 'urn:ogc:def:datum:EPSG::6200';
6143
6144
    /**
6145
     * Qatar 1948
6146
     * Type: Geodetic
6147
     * Extent: Qatar - onshore.
6148
     * Fundamental point: Sokey 0 M. Latitude: 25°22'56.500"N, longitude: 50°45'41.000"E (of Greenwich).
6149
     */
6150
    public const EPSG_QATAR_1948 = 'urn:ogc:def:datum:EPSG::6286';
6151
6152
    /**
6153
     * Qatar 1974
6154
     * Type: Geodetic
6155
     * Extent: Qatar - onshore and offshore.
6156
     * Fundamental point: Station G3.
6157
     */
6158
    public const EPSG_QATAR_1974 = 'urn:ogc:def:datum:EPSG::6285';
6159
6160
    /**
6161
     * Qatar National Datum 1995
6162
     * Type: Geodetic
6163
     * Extent: Qatar - onshore.
6164
     * Defined by transformation from WGS 84 - see coordinate operation code 1840.
6165
     */
6166
    public const EPSG_QATAR_NATIONAL_DATUM_1995 = 'urn:ogc:def:datum:EPSG::6614';
6167
6168
    /**
6169
     * Qornoq 1927
6170
     * Type: Geodetic
6171
     * Extent: Greenland - west coast onshore.
6172
     * Fundamental point: Station 7008. Latitude: 64°31'06.27"N, longitude: 51°12'24.86"W (of Greenwich).
6173
     */
6174
    public const EPSG_QORNOQ_1927 = 'urn:ogc:def:datum:EPSG::6194';
6175
6176
    /**
6177
     * RBEPP12 Intermediate Reference Frame
6178
     * Type: Geodetic
6179
     * Extent: United Kingdom (UK) - on or related to the rail route from Reading via Newbury to Penzance.
6180
     * Defined through the application of the RBEPP12 NTv2 transformation to ETRS89 as realized through OSNet v2009
6181
     * CORS.
6182
     * Created in 2022 to support intermediate CRS RBEPP12-IRF in the emulation of the RBEPP12 Snake map projection.
6183
     */
6184
    public const EPSG_RBEPP12_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1352';
6185
6186
    /**
6187
     * Raiatea SAU 2001
6188
     * Type: Vertical
6189
     * Extent: French Polynesia - Society Islands - Raiatea.
6190
     * Fundamental benchmark: RN1
6191
     * Included as part of NGPF - see datum code 5195.
6192
     */
6193
    public const EPSG_RAIATEA_SAU_2001 = 'urn:ogc:def:datum:EPSG::5198';
6194
6195
    /**
6196
     * Ras Ghumays
6197
     * Type: Vertical
6198
     * Extent: United Arab Emirates (UAE) - Abu Dhabi onshore.
6199
     * Mean Sea Level at Ras Ghumays 1978 and 1979.
6200
     * Orthometric heights.
6201
     */
6202
    public const EPSG_RAS_GHUMAYS = 'urn:ogc:def:datum:EPSG::1146';
6203
6204
    /**
6205
     * Rassadiran
6206
     * Type: Geodetic
6207
     * Extent: Iran - Taheri refinery site.
6208
     * Fundamental point: Total1. Latitude: 27°31'07.784"N, longitude: 52°36'12.741"E (of Greenwich).
6209
     */
6210
    public const EPSG_RASSADIRAN = 'urn:ogc:def:datum:EPSG::6153';
6211
6212
    /**
6213
     * Rauenberg Datum/83
6214
     * Type: Geodetic
6215
     * Extent: Germany - Sachsen.
6216
     * Fundamental point: Rauenberg. Latitude: 52°27'12.021"N, longitude: 13°22'04.928"E (of Greenwich). This station
6217
     * was destroyed in 1910 and the station at Potsdam substituted as the fundamental point.
6218
     * RD/83 is the realization of DHDN in Saxony. It is the resultant of applying a transformation derived at 106
6219
     * points throughout former East Germany to Pulkovo 1942/83 points in Saxony.
6220
     */
6221
    public const EPSG_RAUENBERG_DATUM_83 = 'urn:ogc:def:datum:EPSG::6745';
6222
6223
    /**
6224
     * Red Geodesica Para Mineria en Chile
6225
     * Type: Dynamic geodetic
6226
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6227
     * Gomez.
6228
     * Realized through 26 stations in the IGS (SIRGAS-CON) active reference station network in Chile.
6229
     */
6230
    public const EPSG_RED_GEODESICA_PARA_MINERIA_EN_CHILE = 'urn:ogc:def:datum:EPSG::1304';
6231
6232
    /**
6233
     * Red Geodesica Venezolana
6234
     * Type: Geodetic
6235
     * Extent: Venezuela - onshore and offshore.
6236
     * Realised by a frame of 67 stations observed in 1995 as a densification of the SIRGAS campaign and adjusted in
6237
     * the ITRF94 at epoch 1995.4.
6238
     */
6239
    public const EPSG_RED_GEODESICA_VENEZOLANA = 'urn:ogc:def:datum:EPSG::6189';
6240
6241
    /**
6242
     * Red Geodesica de Canarias 1995
6243
     * Type: Geodetic
6244
     * Extent: Spain - Canary Islands onshore and offshore.
6245
     * ITRF93 at epoch 1994.9 at VLBI station INTA at the Canary Spatial Centre (CEC) at Maspalomas on Grand Canary.
6246
     * Replaces Pico de las Nieves 1968 (PN68) and Pico de las Nieves 1984 (PN84).
6247
     */
6248
    public const EPSG_RED_GEODESICA_DE_CANARIAS_1995 = 'urn:ogc:def:datum:EPSG::1035';
6249
6250
    /**
6251
     * Reference System de Angola 2013
6252
     * Type: Geodetic
6253
     * Extent: Angola - onshore and offshore.
6254
     * Network of 18 stations throughout Angola referenced to ITRF2008 @ 2010.90.
6255
     * Established through daily PPP solutions in GPS week G1610.
6256
     */
6257
    public const EPSG_REFERENCE_SYSTEM_DE_ANGOLA_2013 = 'urn:ogc:def:datum:EPSG::1220';
6258
6259
    /**
6260
     * Reseau Geodesique Francais 1993 v1
6261
     * Type: Geodetic
6262
     * Extent: France - onshore and offshore, mainland and Corsica (France métropolitaine including Corsica).
6263
     * Coincident with ETRS89 at epoch 1993.0. Derived from long-term GNSS observations at 23 points aligned to ETRF93.
6264
     * @ 1993.0 through fundamental points at Grasse, Toulouse and Brest. Network supplemented in 1994 and 1995 by
6265
     * approx. 1000 additional stations.
6266
     * RGF93 v1 is a realization of ETRS89. Replaced by RGF93 v2 (datum code 1312) from 2010-06-18.
6267
     */
6268
    public const EPSG_RESEAU_GEODESIQUE_FRANCAIS_1993_V1 = 'urn:ogc:def:datum:EPSG::6171';
6269
6270
    /**
6271
     * Reseau Geodesique Francais 1993 v2
6272
     * Type: Geodetic
6273
     * Extent: France - onshore and offshore, mainland and Corsica (France métropolitaine including Corsica).
6274
     * Aligned with ETRF2000 at epoch 2009.0. Based on the French GNSS permanent network (RGP) from 1998 to 2009, and
6275
     * the re-observation of the geodetic points of the French Reference Network (RRF) and French Base Network
6276
     * (RBF) from 2000 to 2011.
6277
     * RGF93 v2 is a realization of ETRS89. Replaces RGF93 v1 (datum code 6171) from 2010-06-18. Replaced by RGF93 v2b
6278
     * (datum code 1313) from 2021-01-05.
6279
     */
6280
    public const EPSG_RESEAU_GEODESIQUE_FRANCAIS_1993_V2 = 'urn:ogc:def:datum:EPSG::1312';
6281
6282
    /**
6283
     * Reseau Geodesique Francais 1993 v2b
6284
     * Type: Geodetic
6285
     * Extent: France - onshore and offshore, mainland and Corsica (France métropolitaine including Corsica).
6286
     * Aligned with ETRF2000 at epoch 2019.0. Derived through reprocessing of the French GNSS permanent network (RGP)
6287
     * in IGS14.
6288
     * RGF93 v2b is a realization of ETRS89. Third realization of RGF93. Replaces RGF93 v2 (datum code 1312) from
6289
     * 2021-01-05.
6290
     */
6291
    public const EPSG_RESEAU_GEODESIQUE_FRANCAIS_1993_V2B = 'urn:ogc:def:datum:EPSG::1313';
6292
6293
    /**
6294
     * Reseau Geodesique Francais Guyane 1995
6295
     * Type: Geodetic
6296
     * Extent: French Guiana - onshore and offshore.
6297
     * ITRF93 at epoch 1995.0
6298
     * Replaces CSG67 (datum code 6623).
6299
     */
6300
    public const EPSG_RESEAU_GEODESIQUE_FRANCAIS_GUYANE_1995 = 'urn:ogc:def:datum:EPSG::6624';
6301
6302
    /**
6303
     * Reseau Geodesique de Mayotte 2004
6304
     * Type: Geodetic
6305
     * Extent: Mayotte - onshore and offshore.
6306
     * ITRF2000 at epoch 2004.0
6307
     * Replaces Combani 1950 (datum code 6632) except for cadastral purposes. (Cadastre 1997 (datum code 1037) used for
6308
     * cadastral purposes).
6309
     */
6310
    public const EPSG_RESEAU_GEODESIQUE_DE_MAYOTTE_2004 = 'urn:ogc:def:datum:EPSG::1036';
6311
6312
    /**
6313
     * Reseau Geodesique de Nouvelle Caledonie 91-93
6314
     * Type: Geodetic
6315
     * Extent: New Caledonia - onshore and offshore. Isle de Pins, Loyalty Islands, Huon Islands, Belep archipelago,
6316
     * Chesterfield Islands, and Walpole.
6317
     * ITRF90 at epoch 1989.0.
6318
     */
6319
    public const EPSG_RESEAU_GEODESIQUE_DE_NOUVELLE_CALEDONIE_91_93 = 'urn:ogc:def:datum:EPSG::6749';
6320
6321
    /**
6322
     * Reseau Geodesique de Saint Pierre et Miquelon 2006
6323
     * Type: Geodetic
6324
     * Extent: St Pierre and Miquelon - onshore and offshore.
6325
     * ITRF2000 at epoch 2006.0
6326
     * Replaces Saint Pierre et Miquelon 1950 (datum code 6638).
6327
     */
6328
    public const EPSG_RESEAU_GEODESIQUE_DE_SAINT_PIERRE_ET_MIQUELON_2006 = 'urn:ogc:def:datum:EPSG::1038';
6329
6330
    /**
6331
     * Reseau Geodesique de Wallis et Futuna 1996
6332
     * Type: Geodetic
6333
     * Extent: Wallis and Futuna - onshore and offshore - Uvea, Futuna, and Alofi.
6334
     * Coincident with ITRF94 at epoch 1993.00.
6335
     */
6336
    public const EPSG_RESEAU_GEODESIQUE_DE_WALLIS_ET_FUTUNA_1996 = 'urn:ogc:def:datum:EPSG::1223';
6337
6338
    /**
6339
     * Reseau Geodesique de la Polynesie Francaise
6340
     * Type: Geodetic
6341
     * Extent: French Polynesia - onshore and offshore. Includes Society archipelago, Tuamotu archipelago, Marquesas
6342
     * Islands, Gambier Islands and Austral Islands.
6343
     * ITRF92 at epoch 1993.0. Densification by GPS of the Reference Network of French Polynesia, a coordinate set of
6344
     * 13 stations determined through DORIS observations.
6345
     * Replaces Tahaa 54 (datum code 6629), IGN 63 Hiva Oa (6689), IGN 72 Nuku Hiva (6630), Maupiti 83 (6692), MHEFO 55
6346
     * (6688), Moorea 87 (6691) and Tahiti 79 (6690).
6347
     */
6348
    public const EPSG_RESEAU_GEODESIQUE_DE_LA_POLYNESIE_FRANCAISE = 'urn:ogc:def:datum:EPSG::6687';
6349
6350
    /**
6351
     * Reseau Geodesique de la RDC 2005
6352
     * Type: Geodetic
6353
     * Extent: The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto -
6354
     * onshore and offshore.
6355
     * ITRF2000 at epoch 2005.4.
6356
     */
6357
    public const EPSG_RESEAU_GEODESIQUE_DE_LA_RDC_2005 = 'urn:ogc:def:datum:EPSG::1033';
6358
6359
    /**
6360
     * Reseau Geodesique de la Reunion 1992
6361
     * Type: Geodetic
6362
     * Extent: Reunion - onshore and offshore.
6363
     * ITRF91 at epoch 1993.0
6364
     * Replaces Piton des Neiges (code 6626).
6365
     */
6366
    public const EPSG_RESEAU_GEODESIQUE_DE_LA_REUNION_1992 = 'urn:ogc:def:datum:EPSG::6627';
6367
6368
    /**
6369
     * Reseau Geodesique des Antilles Francaises 2009
6370
     * Type: Geodetic
6371
     * Extent: French Antilles onshore and offshore - Guadeloupe (including Grande Terre, Basse Terre, Marie Galante,
6372
     * Les Saintes, Iles de la Petite Terre, La Desirade); Martinique; St Barthélemy; St Martin.
6373
     * ITRF2005 at epoch 2009.0
6374
     * Replaces RRAF91 in Martinique and Guadeloupe.
6375
     */
6376
    public const EPSG_RESEAU_GEODESIQUE_DES_ANTILLES_FRANCAISES_2009 = 'urn:ogc:def:datum:EPSG::1073';
6377
6378
    /**
6379
     * Reseau Geodesique des Terres Australes et Antarctiques Francaises 2007
6380
     * Type: Geodetic
6381
     * Extent: French Southern Territories - onshore and offshore: Amsterdam and St Paul, Crozet, Europa and Kerguelen.
6382
     * Antarctica - Adelie Land coastal area.
6383
     * ITRF2005 at epoch 2007.274
6384
     * Replaces IGN 1963-64 on Amsterdam, Saint-Paul 1969 on St Paul, IGN64 on Crozet, MHM 1954 on Europa, IGN 1962 on
6385
     * Kerguelen, and Petrels 1972 and Perroud 1950 in Adelie Land.
6386
     */
6387
    public const EPSG_RESEAU_GEODESIQUE_DES_TERRES_AUSTRALES_ET_ANTARCTIQUES_FRANCAISES_2007 = 'urn:ogc:def:datum:EPSG::1113';
6388
6389
    /**
6390
     * Reseau National Belge 1950
6391
     * Type: Geodetic
6392
     * Extent: Belgium - onshore.
6393
     * Fundamental point: Lommel (tower). Latitude: 51°13'47.334"N, longitude: 5°18'49.483"E (of Greenwich).
6394
     */
6395
    public const EPSG_RESEAU_NATIONAL_BELGE_1950 = 'urn:ogc:def:datum:EPSG::6215';
6396
6397
    /**
6398
     * Reseau National Belge 1950 (Brussels)
6399
     * Type: Geodetic
6400
     * Extent: Belgium - onshore.
6401
     * Fundamental point: Lommel (tower). Latitude: 51°13'47.334"N, longitude: 0°56'44.773"E (of Brussels).
6402
     */
6403
    public const EPSG_RESEAU_NATIONAL_BELGE_1950_BRUSSELS = 'urn:ogc:def:datum:EPSG::6809';
6404
6405
    /**
6406
     * Reseau National Belge 1972
6407
     * Type: Geodetic
6408
     * Extent: Belgium - onshore.
6409
     * Fundamental point: Uccle observatory. Latitude: 50°47'57.704"N, longitude: 4°21'24.983"E (of Greenwich).
6410
     */
6411
    public const EPSG_RESEAU_NATIONAL_BELGE_1972 = 'urn:ogc:def:datum:EPSG::6313';
6412
6413
    /**
6414
     * Reseau de Reference des Antilles Francaises 1991
6415
     * Type: Geodetic
6416
     * Extent: French Antilles onshore and offshore - Guadeloupe (including Grande Terre, Basse Terre, Marie Galante,
6417
     * Les Saintes, Iles de la Petite Terre, La Desirade); Martinique; St Barthélemy; St Martin.
6418
     * WGS 84 coordinates of a single station determined during the 1988 Tango mission.
6419
     * Replaces Fort Marigot and Sainte Anne (datum codes 6621-22) in Guadeloupe and Fort Desaix (datum code 6625) in
6420
     * Martinique. Replaced by Reseau Geodesique des Antilles Francaises 2009 (datum code 1073).
6421
     */
6422
    public const EPSG_RESEAU_DE_REFERENCE_DES_ANTILLES_FRANCAISES_1991 = 'urn:ogc:def:datum:EPSG::1047';
6423
6424
    /**
6425
     * Rete Dinamica Nazionale 2008
6426
     * Type: Geodetic
6427
     * Extent: Italy - onshore and offshore; San Marino, Vatican City State.
6428
     * Italian densification of ETRS89 realised through network of 99 permanent reference stations in [email protected].
6429
     * Adopted as official Italian reference datum 10/11/2011. Replaces IGM95 (datum code 6670).
6430
     */
6431
    public const EPSG_RETE_DINAMICA_NAZIONALE_2008 = 'urn:ogc:def:datum:EPSG::1132';
6432
6433
    /**
6434
     * Reunion 1947
6435
     * Type: Geodetic
6436
     * Extent: Reunion - onshore.
6437
     * Fundamental point: Piton des Neiges (Borne). Latitude: 21°05'13.119"S, longitude: 55°29'09.193"E (of
6438
     * Greenwich).
6439
     * Replaced by RGR92 (datum code 6627).
6440
     */
6441
    public const EPSG_REUNION_1947 = 'urn:ogc:def:datum:EPSG::6626';
6442
6443
    /**
6444
     * Reunion 1989
6445
     * Type: Vertical
6446
     * Extent: Reunion - onshore.
6447
     * Mean sea level during part of November 1949 at port of Saint-Pierre. Origin = marker AB-100 with defined
6448
     * elevation of 13.808m above msl.
6449
     * Orthometric heights. Replaces Reunion IGN58. Value of marker AB-100 retains height from 1958 adjustment.
6450
     */
6451
    public const EPSG_REUNION_1989 = 'urn:ogc:def:datum:EPSG::5156';
6452
6453
    /**
6454
     * Reykjavik 1900
6455
     * Type: Geodetic
6456
     * Extent: Iceland - mainland.
6457
     * Fundamental point:  Latitude: 64°08'31.88"N, longitude: 21°55'51.15"W (of Greenwich).
6458
     */
6459
    public const EPSG_REYKJAVIK_1900 = 'urn:ogc:def:datum:EPSG::6657';
6460
6461
    /**
6462
     * Rikets hojdsystem 1900
6463
     * Type: Vertical
6464
     * Extent: Sweden - onshore.
6465
     * Adjustment is referenced to mean sea level at Slussen, Stockholm.
6466
     * Realized through the first precise levelling network of 1886-1905. Replaced by RH70.
6467
     */
6468
    public const EPSG_RIKETS_HOJDSYSTEM_1900 = 'urn:ogc:def:datum:EPSG::5209';
6469
6470
    /**
6471
     * Rikets hojdsystem 1970
6472
     * Type: Vertical
6473
     * Extent: Sweden - onshore.
6474
     * Adjustment is referenced to mean high tide at Amsterdams Peil in 1684. To account for land level movements
6475
     * caused by isostatic rebound, heights are reduced to epoch 1970.0 using uplift values computed from repeated
6476
     * levelling observations.
6477
     * Realized through the second precise levelling network of 1951-1967. Uses Normal heights. Replaces RH00. Replaced
6478
     * in 2005 by RH2000.
6479
     */
6480
    public const EPSG_RIKETS_HOJDSYSTEM_1970 = 'urn:ogc:def:datum:EPSG::5117';
6481
6482
    /**
6483
     * Rikets hojdsystem 2000
6484
     * Type: Vertical
6485
     * Extent: Sweden - onshore.
6486
     * Adjustment is referenced to mean high tide at Amsterdams Peil in 1684. To account for land level movements
6487
     * caused by isostatic rebound, heights are reduced to epoch 2000.0 using values computed from the RH 2000 LU
6488
     * (=NKG2005LU) uplift model.
6489
     * Realized through the third precise levelling network of 1979-2003. Adopted in 2005, replacing RH70. Uses Normal
6490
     * heights.
6491
     */
6492
    public const EPSG_RIKETS_HOJDSYSTEM_2000 = 'urn:ogc:def:datum:EPSG::5208';
6493
6494
    /**
6495
     * Rikets koordinatsystem 1990
6496
     * Type: Geodetic
6497
     * Extent: Sweden - onshore and offshore.
6498
     * Replaces RT38 adjustment (datum code 6308).
6499
     */
6500
    public const EPSG_RIKETS_KOORDINATSYSTEM_1990 = 'urn:ogc:def:datum:EPSG::6124';
6501
6502
    /**
6503
     * Ross Sea Region Geodetic Datum 2000
6504
     * Type: Geodetic
6505
     * Extent: Antarctica - Ross Sea Region - nominally between 160°E and 150°W but includes buffer on eastern
6506
     * hemisphere margin to include Transantarctic Mountains
6507
     * Based on ITRF96 at epoch 2000.0.
6508
     */
6509
    public const EPSG_ROSS_SEA_REGION_GEODETIC_DATUM_2000 = 'urn:ogc:def:datum:EPSG::6764';
6510
6511
    /**
6512
     * SCM22 Intermediate Reference Frame
6513
     * Type: Geodetic
6514
     * Extent: United Kingdom (UK) - on or related to the Scottish central mainline rail route from Motherwell through
6515
     * Perth and Pitlochry to Inverness.
6516
     * Defined through the application of the SCM22 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS.
6517
     * Created in 2022 to support intermediate CRS "SCM22-IRF" in the emulation of the SCM22 Snake map projection.
6518
     */
6519
    public const EPSG_SCM22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1320';
6520
6521
    /**
6522
     * SIRGAS Continuously Operating Network DGF00P01
6523
     * Type: Dynamic geodetic
6524
     * Extent: Latin America - Central America and South America, onshore and offshore.
6525
     * Aligned to ITRF97 at epoch 2000.40. Realized by a frame of 31 continuously operating stations using GPS
6526
     * observations from June 1996 to February 2000. Velocity model VEMOS2003 used to propagate coordinates to the
6527
     * frame reference epoch.
6528
     * DGF00P01 is included in ITRF2000 as a regional densification for South America. Replaced by DGF01P01 (datum code
6529
     * 1228).
6530
     */
6531
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF00P01 = 'urn:ogc:def:datum:EPSG::1227';
6532
6533
    /**
6534
     * SIRGAS Continuously Operating Network DGF01P01
6535
     * Type: Dynamic geodetic
6536
     * Extent: Latin America - Central America and South America, onshore and offshore.
6537
     * Aligned to ITRF2000 at epoch 2000.00. Realized by a frame of 48 continuously operating stations using GPS
6538
     * observations from June 1996 to April 2001. Velocity model VEMOS2003 used to propagate coordinates to the frame
6539
     * reference epoch.
6540
     * Replaces DGF00P01 (datum code 1227). Replaced by DGF01P02 (datum code 1229).
6541
     */
6542
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF01P01 = 'urn:ogc:def:datum:EPSG::1228';
6543
6544
    /**
6545
     * SIRGAS Continuously Operating Network DGF01P02
6546
     * Type: Dynamic geodetic
6547
     * Extent: Latin America - Central America and South America, onshore and offshore.
6548
     * Aligned to ITRF2000 at epoch 1998.40. Realized by a frame of 49 continuously operating stations using GPS
6549
     * observations from June 1996 to October 2001. Velocity model VEMOS2003 used to propagate coordinates to the frame
6550
     * reference epoch.
6551
     * Replaces DGF01P01 (datum code 1228). Replaced by DGF02P01 (datum code 1230).
6552
     */
6553
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF01P02 = 'urn:ogc:def:datum:EPSG::1229';
6554
6555
    /**
6556
     * SIRGAS Continuously Operating Network DGF02P01
6557
     * Type: Dynamic geodetic
6558
     * Extent: Latin America - Central America and South America, onshore and offshore.
6559
     * Aligned to ITRF2000 at epoch 2000.00. Realized by a frame of 53 continuously operating stations using GPS
6560
     * observations from June 1996 to July 2002. Velocity model VEMOS2003 used to propagate coordinates to the frame
6561
     * reference epoch.
6562
     * Replaces DGF01P02 (datum code 1229). Replaced by DGF04P01 (datum code 1331).
6563
     */
6564
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF02P01 = 'urn:ogc:def:datum:EPSG::1230';
6565
6566
    /**
6567
     * SIRGAS Continuously Operating Network DGF04P01
6568
     * Type: Dynamic geodetic
6569
     * Extent: Latin America - Central America and South America, onshore and offshore.
6570
     * Aligned to ITRF2000 at epoch 2003.00. Realized by a frame of 69 continuously operating stations using GPS
6571
     * observations from June 1996 to July 2004. Velocity model VEMOS2003 used to propagate coordinates to the frame
6572
     * reference epoch.
6573
     * Replaces DGF02P01 (datum code 1230). Replaced by DGF05P01 (datum code 1232).
6574
     */
6575
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF04P01 = 'urn:ogc:def:datum:EPSG::1231';
6576
6577
    /**
6578
     * SIRGAS Continuously Operating Network DGF05P01
6579
     * Type: Dynamic geodetic
6580
     * Extent: Latin America - Central America and South America, onshore and offshore.
6581
     * Aligned to ITRF2000 at epoch 2004.00. Realized by a frame of 95 continuously operating stations using GPS
6582
     * observations from June 1996 to September 2005. Velocity model VEMOS2003 used to propagate coordinates to the
6583
     * frame reference epoch.
6584
     * Replaces DGF04P01 (datum code 1231). Replaced by DGF06P01 (datum code 1233).
6585
     */
6586
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF05P01 = 'urn:ogc:def:datum:EPSG::1232';
6587
6588
    /**
6589
     * SIRGAS Continuously Operating Network DGF06P01
6590
     * Type: Dynamic geodetic
6591
     * Extent: Latin America - Central America and South America, onshore and offshore.
6592
     * Aligned to ITRF2000 at epoch 2004.00. Realized by a frame of 94 continuously operating stations using GPS
6593
     * observations from June 1996 to June 2006. Velocity model VEMOS2003 used to propagate coordinates to the frame
6594
     * reference epoch.
6595
     * Replaces DGF05P01 (datum code 1232). Replaced by DGF07P01 (datum code 1234).
6596
     */
6597
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF06P01 = 'urn:ogc:def:datum:EPSG::1233';
6598
6599
    /**
6600
     * SIRGAS Continuously Operating Network DGF07P01
6601
     * Type: Dynamic geodetic
6602
     * Extent: Latin America - Central America and South America, onshore and offshore.
6603
     * Aligned to IGS05 at epoch 2004.50. Realized by a frame of 106 continuously operating stations using GPS
6604
     * observations in 3 periods between December 2001 and October 2007. Velocity model VEMOS2003 used to propagate
6605
     * coordinates to the frame reference epoch.
6606
     * Replaces DGF06P01 (datum code 1233). Replaced by DGF08P01 (datum code 1235).
6607
     */
6608
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF07P01 = 'urn:ogc:def:datum:EPSG::1234';
6609
6610
    /**
6611
     * SIRGAS Continuously Operating Network DGF08P01
6612
     * Type: Dynamic geodetic
6613
     * Extent: Latin America - Central America and South America, onshore and offshore.
6614
     * Aligned to IGS05 at epoch 2004.50. Realized by a frame of 126 continuously operating stations using GPS
6615
     * observations from December 2002 to March 2008. Velocity model VEMOS2003 used to propagate coordinates to the
6616
     * frame reference epoch.
6617
     * Replaces DGF07P01 (datum code 1234). Replaced by SIR09P01 (datum code 1236).
6618
     */
6619
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF08P01 = 'urn:ogc:def:datum:EPSG::1235';
6620
6621
    /**
6622
     * SIRGAS Continuously Operating Network SIR09P01
6623
     * Type: Dynamic geodetic
6624
     * Extent: Latin America - Central America and South America, onshore and offshore.
6625
     * Aligned to IGS05 at epoch 2005.00. Realized by a frame of 128 continuously operating stations using GPS
6626
     * observations from January 2000 to January 2009. Velocity model VEMOS2009 used to propagate coordinates to the
6627
     * frame reference epoch.
6628
     * Replaces DGF08P01 (datum code 1235). Replaced by SIR10P01 (datum code 1237).
6629
     */
6630
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR09P01 = 'urn:ogc:def:datum:EPSG::1236';
6631
6632
    /**
6633
     * SIRGAS Continuously Operating Network SIR10P01
6634
     * Type: Dynamic geodetic
6635
     * Extent: Latin America - Central America and South America, onshore and offshore.
6636
     * Aligned to ITRF08 at epoch 2005.00. Realized by a frame of 183 continuously operating stations using GPS
6637
     * observations from January 2000 to June 2010. Velocity model VEMOS2009 used to propagate coordinates to the frame
6638
     * reference epoch.
6639
     * Replaces SIR09P01 (datum code 1236). Replaced by SIR11P01 (datum code 1238).
6640
     */
6641
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR10P01 = 'urn:ogc:def:datum:EPSG::1237';
6642
6643
    /**
6644
     * SIRGAS Continuously Operating Network SIR11P01
6645
     * Type: Dynamic geodetic
6646
     * Extent: Latin America - Central America and South America, onshore and offshore.
6647
     * Aligned to ITRF08 at epoch 2005.00. Realized by a frame of 230 continuously operating stations using GPS
6648
     * observations from January 2000 to April 2011. Velocity model VEMOS2009 used to propagate coordinates to the
6649
     * frame reference epoch.
6650
     * Replaces SIR10P01 (datum code 1237). Replaced by SIR13P01 (datum code 1239). Last multi-year solution without
6651
     * the effects of the El Maule earthquake in February 2010.
6652
     */
6653
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR11P01 = 'urn:ogc:def:datum:EPSG::1238';
6654
6655
    /**
6656
     * SIRGAS Continuously Operating Network SIR13P01
6657
     * Type: Dynamic geodetic
6658
     * Extent: Latin America - Central America and South America, onshore and offshore.
6659
     * Aligned to IGb08 at epoch 2012.00. Realized by a frame of 108 continuously operating stations using GPS
6660
     * observations from April 2010 to June 2013. Velocity model VEMOS2009 used to propagate coordinates to the frame
6661
     * reference epoch.
6662
     * Replaces SIR11P01 (datum code 1238). Replaced by SIR14P01 (datum code 1240). First multi-year solution after the
6663
     * El Maule earthquake of February 2010.
6664
     */
6665
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR13P01 = 'urn:ogc:def:datum:EPSG::1239';
6666
6667
    /**
6668
     * SIRGAS Continuously Operating Network SIR14P01
6669
     * Type: Dynamic geodetic
6670
     * Extent: Latin America - Central America and South America, onshore and offshore.
6671
     * Aligned to IGb08 at epoch 2013.00. Realized by a frame of 242 continuously operating stations using GNSS
6672
     * observations from April 2010 to July 2014. Velocity model VEMOS2009 used to propagate coordinates to the frame
6673
     * reference epoch.
6674
     * Replaces SIR13P01 (datum code 1239). Replaced by SIR15P01 (datum code 1241).
6675
     */
6676
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR14P01 = 'urn:ogc:def:datum:EPSG::1240';
6677
6678
    /**
6679
     * SIRGAS Continuously Operating Network SIR15P01
6680
     * Type: Dynamic geodetic
6681
     * Extent: Latin America - Central America and South America, onshore and offshore.
6682
     * Aligned to IGb08 at epoch 2013.00. Realized by a frame of 303 continuously operating stations using GNSS
6683
     * observations from March 2010 to April 2015. Velocity model VEMOS2015 used to propagate coordinates to the frame
6684
     * reference epoch.
6685
     * Replaces SIR14P01 (datum code 1240). Replaced by SIR17P01 (datum code 1242).
6686
     */
6687
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR15P01 = 'urn:ogc:def:datum:EPSG::1241';
6688
6689
    /**
6690
     * SIRGAS Continuously Operating Network SIR17P01
6691
     * Type: Dynamic geodetic
6692
     * Extent: Latin America - Central America and South America, onshore and offshore.
6693
     * Aligned to IGS14 at epoch 2015.00. Realized by a frame of 345 continuously operating stations using GNSS
6694
     * observations from April 2011 to January 2017. Velocity model VEMOS2017 used to propagate coordinates to the
6695
     * frame reference epoch.
6696
     * Replaces SIR15P01 (datum code 1241).
6697
     */
6698
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR17P01 = 'urn:ogc:def:datum:EPSG::1242';
6699
6700
    /**
6701
     * SIRGAS-Chile realization 1 epoch 2002
6702
     * Type: Geodetic
6703
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6704
     * Gomez.
6705
     * ITRF2000 at epoch 2002.0.  Densification of SIRGAS 2000 network in Chile, consisting of 650 monumented stations.
6706
     * Densification of SIRGAS 2000 within Chile. Replaces PSAD56 (datum code 6248) in Chile, HITO XVIII (datum code
6707
     * 6254) in Chilean Tierra del Fuego and Easter Island 1967 (datum code 6719) in Easter Island. Replaced by
6708
     * SIRGAS-Chile 2010 (datum code 1243).
6709
     */
6710
    public const EPSG_SIRGAS_CHILE_REALIZATION_1_EPOCH_2002 = 'urn:ogc:def:datum:EPSG::1064';
6711
6712
    /**
6713
     * SIRGAS-Chile realization 2 epoch 2010
6714
     * Type: Geodetic
6715
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6716
     * Gomez.
6717
     * IGS08 at epoch 2010.00. Densification of SIRGAS-CON network in Chile, consisting of 120 monumented stations.
6718
     * Replaces SIRGAS-Chile realization 1 epoch 2002, following significant tectonic deformation. Replaced by
6719
     * SIRGAS-Chile realization 3 epoch 2013.
6720
     */
6721
    public const EPSG_SIRGAS_CHILE_REALIZATION_2_EPOCH_2010 = 'urn:ogc:def:datum:EPSG::1243';
6722
6723
    /**
6724
     * SIRGAS-Chile realization 3 epoch 2013
6725
     * Type: Geodetic
6726
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6727
     * Gomez.
6728
     * IGb08 at epoch 2013.00. Densification of SIRGAS-CON network in Chile, consisting of 130 monumented stations.
6729
     * Replaces SIRGAS-Chile realization 2 epoch 2010, following significant tectonic deformation. Replaced by
6730
     * SIRGAS-Chile realization 4 epoch 2016.
6731
     */
6732
    public const EPSG_SIRGAS_CHILE_REALIZATION_3_EPOCH_2013 = 'urn:ogc:def:datum:EPSG::1252';
6733
6734
    /**
6735
     * SIRGAS-Chile realization 4 epoch 2016
6736
     * Type: Geodetic
6737
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6738
     * Gomez.
6739
     * IGb08 at epoch 2016.00. Densification of SIRGAS-CON network in Chile, consisting of 200 monumented stations.
6740
     * Replaces SIRGAS-Chile realization 3 epoch 2013. Replaced by SIRGAS-Chile realization 5 epoch 2021 due to
6741
     * significant tectonic deformation.
6742
     */
6743
    public const EPSG_SIRGAS_CHILE_REALIZATION_4_EPOCH_2016 = 'urn:ogc:def:datum:EPSG::1253';
6744
6745
    /**
6746
     * SIRGAS-Chile realization 5 epoch 2021
6747
     * Type: Geodetic
6748
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6749
     * Gomez.
6750
     * Densification of SIRGAS-CON network in Chile, consisting of 97 stations forming the active CORS network (RGN)
6751
     * referenced to IGb2014 (ITRF2014) at epoch 2021.00. Passive stations used in previous realizations have been
6752
     * removed from this solution.
6753
     * Replaces SIRGAS-Chile realization 4 epoch 2016 from August 2021 due to significant tectonic deformation. 24
6754
     * additional active CORS used in this realization compared to that of 2016.
6755
     */
6756
    public const EPSG_SIRGAS_CHILE_REALIZATION_5_EPOCH_2021 = 'urn:ogc:def:datum:EPSG::1327';
6757
6758
    /**
6759
     * SIRGAS-ROU98
6760
     * Type: Geodetic
6761
     * Extent: Uruguay - onshore and offshore.
6762
     * Densification of SIRGAS95 network in Uruguay, consisting of 17 passive geodetic stations and 3 continuous
6763
     * recording GPS stations. ITRF94 at epoch 1995.4.
6764
     * Densification of SIRGAS 1995 within Uruguay. Replaces Yacare (datum code 6309) in Uruguay. Uruguay documentation
6765
     * clearly states use of WGS 84 reference ellipsoid.
6766
     */
6767
    public const EPSG_SIRGAS_ROU98 = 'urn:ogc:def:datum:EPSG::1068';
6768
6769
    /**
6770
     * SIRGAS_ES2007.8
6771
     * Type: Geodetic
6772
     * Extent: El Salvador - onshore and offshore.
6773
     * ITRF2005 at epoch 2007.85.  Densification of SIRGAS-CON network in El Salvador, consisting of 38 monumented
6774
     * stations.
6775
     * SIRGAS-ES2007.8 is the national SIRGAS densification.
6776
     */
6777
    public const EPSG_SIRGAS_ES2007_8 = 'urn:ogc:def:datum:EPSG::1069';
6778
6779
    /**
6780
     * SMITB20 Intermediate Reference Frame
6781
     * Type: Geodetic
6782
     * Extent: United Kingdom (UK) - on or related to the rail route from Okehampton to Penstone.
6783
     * Defined through the application of the SMITB20 NTv2 transformation to ETRS89 as realized through OSNet v2009
6784
     * CORS.
6785
     * Created in 2022 to support intermediate CRS SMITB20-IRF in the emulation of the SMITB20 Snake map projection.
6786
     */
6787
    public const EPSG_SMITB20_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1351';
6788
6789
    /**
6790
     * ST71 Belep
6791
     * Type: Geodetic
6792
     * Extent: New Caledonia - Belep.
6793
     */
6794
    public const EPSG_ST71_BELEP = 'urn:ogc:def:datum:EPSG::6643';
6795
6796
    /**
6797
     * ST84 Ile des Pins
6798
     * Type: Geodetic
6799
     * Extent: New Caledonia - Ile des Pins.
6800
     * Fundamental point: Pic Nga.
6801
     */
6802
    public const EPSG_ST84_ILE_DES_PINS = 'urn:ogc:def:datum:EPSG::6642';
6803
6804
    /**
6805
     * ST87 Ouvea
6806
     * Type: Geodetic
6807
     * Extent: New Caledonia - Loyalty Islands - Ouvea.
6808
     * Ouloup.
6809
     */
6810
    public const EPSG_ST87_OUVEA = 'urn:ogc:def:datum:EPSG::6750';
6811
6812
    /**
6813
     * SVY21
6814
     * Type: Geodetic
6815
     * Extent: Singapore - onshore and offshore.
6816
     * Fundamental point: Base 7 at Pierce Reservoir. Latitude: 1°22'02.9154"N, longitude: 103°49'31.9752"E (of
6817
     * Greenwich).
6818
     * Replaces Kertau 1968 for cadastral purposes from August 2004.
6819
     */
6820
    public const EPSG_SVY21 = 'urn:ogc:def:datum:EPSG::6757';
6821
6822
    /**
6823
     * SWEREF99
6824
     * Type: Geodetic
6825
     * Extent: Sweden - onshore and offshore.
6826
     * Densification of ETRS89.
6827
     * The solution was calculated in ITRF97 epoch 1999.5, and has subsequently been corrected to ETRS89 in accordance
6828
     * with guidelines given by EUREF.
6829
     */
6830
    public const EPSG_SWEREF99 = 'urn:ogc:def:datum:EPSG::6619';
6831
6832
    /**
6833
     * SYC20 Intermediate Reference Frame
6834
     * Type: Geodetic
6835
     * Extent: United Kingdom (UK) - on or related to the rail route from Shrewsbury to Crewe.
6836
     * Defined through the application of the SYC20 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS.
6837
     * Created in 2022 to support intermediate CRS SYC20-IRF in the emulation of the SYC20 Snake map projection.
6838
     */
6839
    public const EPSG_SYC20_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1345';
6840
6841
    /**
6842
     * Saint Pierre et Miquelon 1950
6843
     * Type: Geodetic
6844
     * Extent: St Pierre and Miquelon - onshore.
6845
     * Replaced by RGSPM06 (datum code 1038).
6846
     */
6847
    public const EPSG_SAINT_PIERRE_ET_MIQUELON_1950 = 'urn:ogc:def:datum:EPSG::6638';
6848
6849
    /**
6850
     * Santa Cruz da Graciosa
6851
     * Type: Vertical
6852
     * Extent: Portugal - central Azores - Graciosa island onshore.
6853
     * Mean Sea Level during 1938 at Santa Cruz da Graciosa.
6854
     * Orthometric heights.
6855
     */
6856
    public const EPSG_SANTA_CRUZ_DA_GRACIOSA = 'urn:ogc:def:datum:EPSG::1106';
6857
6858
    /**
6859
     * Santa Cruz das Flores
6860
     * Type: Vertical
6861
     * Extent: Portugal - western Azores onshore - Flores, Corvo.
6862
     * Mean Sea Level during 1965 at Santa Cruz das Flores.
6863
     * Orthometric heights.
6864
     */
6865
    public const EPSG_SANTA_CRUZ_DAS_FLORES = 'urn:ogc:def:datum:EPSG::1108';
6866
6867
    /**
6868
     * Santo 1965
6869
     * Type: Geodetic
6870
     * Extent: Vanuatu - northern islands - Aese, Ambrym, Aoba, Epi, Espiritu Santo, Maewo, Malo, Malkula, Paama,
6871
     * Pentecost, Shepherd and Tutuba.
6872
     * Datum covers all the major islands of Vanuatu in two different adjustment blocks, but practical usage is as
6873
     * given in the area of use.
6874
     */
6875
    public const EPSG_SANTO_1965 = 'urn:ogc:def:datum:EPSG::6730';
6876
6877
    /**
6878
     * Sao Tome
6879
     * Type: Geodetic
6880
     * Extent: Sao Tome and Principe - onshore - Sao Tome.
6881
     * Fundamental point: Fortaleza. Latitude: 0°20'49.02"N, longitude: 6°44'41.85"E (of Greenwich).
6882
     */
6883
    public const EPSG_SAO_TOME = 'urn:ogc:def:datum:EPSG::1044';
6884
6885
    /**
6886
     * Sapper Hill 1943
6887
     * Type: Geodetic
6888
     * Extent: Falkland Islands (Malvinas) - onshore.
6889
     */
6890
    public const EPSG_SAPPER_HILL_1943 = 'urn:ogc:def:datum:EPSG::6292';
6891
6892
    /**
6893
     * Schwarzeck
6894
     * Type: Geodetic
6895
     * Extent: Namibia - onshore and offshore.
6896
     * Fundamental point: Schwarzeck. Latitude: 22°45'35.820"S, longitude: 18°40'34.549"E (of Greenwich). Fixed
6897
     * during German South West Africa-British Bechuanaland boundary survey of 1898-1903.
6898
     */
6899
    public const EPSG_SCHWARZECK = 'urn:ogc:def:datum:EPSG::6293';
6900
6901
    /**
6902
     * Scoresbysund 1952
6903
     * Type: Geodetic
6904
     * Extent: Greenland - Scoresbysund area onshore.
6905
     */
6906
    public const EPSG_SCORESBYSUND_1952 = 'urn:ogc:def:datum:EPSG::6195';
6907
6908
    /**
6909
     * Selvagem Grande
6910
     * Type: Geodetic
6911
     * Extent: Portugal - Selvagens islands (Madeira province) - onshore.
6912
     */
6913
    public const EPSG_SELVAGEM_GRANDE = 'urn:ogc:def:datum:EPSG::6616';
6914
6915
    /**
6916
     * Serbian Reference Network 1998
6917
     * Type: Geodetic
6918
     * Extent: Serbia including Vojvodina.
6919
     * Densification of ETRS89 in Serbia at epoch 1998.7 based on coordinates of 6 stations in Serbia of Yugoslav
6920
     * Reference Frame (YUREF) 1998 campaign.
6921
     * Observed 1998-2003.
6922
     */
6923
    public const EPSG_SERBIAN_REFERENCE_NETWORK_1998 = 'urn:ogc:def:datum:EPSG::1034';
6924
6925
    /**
6926
     * Serbian Spatial Reference System 2000
6927
     * Type: Geodetic
6928
     * Extent: Serbia including Vojvodina.
6929
     * Densification of ETRF2000 in Serbia at epoch 2010.63.
6930
     * Replaces SREF98.
6931
     */
6932
    public const EPSG_SERBIAN_SPATIAL_REFERENCE_SYSTEM_2000 = 'urn:ogc:def:datum:EPSG::1214';
6933
6934
    /**
6935
     * Serbian Vertical Reference System 2012
6936
     * Type: Vertical
6937
     * Extent: Serbia including Vojvodina.
6938
     * Mean sea level of Adriatic Sea in 1971.
6939
     * Normal heights above quasi-geoid. In Serbia replaces Trieste (datum code 1050).
6940
     */
6941
    public const EPSG_SERBIAN_VERTICAL_REFERENCE_SYSTEM_2012 = 'urn:ogc:def:datum:EPSG::1216';
6942
6943
    /**
6944
     * Serindung
6945
     * Type: Geodetic
6946
     * Extent: Indonesia - west Kalimantan - onshore coastal area.
6947
     * Fundamental point: Ep A. Latitude: 1°06'10.60"N, longitude: 105°00'59.82"E (of Greenwich).
6948
     */
6949
    public const EPSG_SERINDUNG = 'urn:ogc:def:datum:EPSG::6295';
6950
6951
    /**
6952
     * ShAb07 Intermediate Reference Frame
6953
     * Type: Geodetic
6954
     * Extent: United Kingdom (UK) - on or related to the rail route from Shrewsbury to Aberystwyth.
6955
     * Defined through the application of the ShAb07 NTv2 transformation (code 10186) to ETRS89 as realized through
6956
     * OSNet v2009 CORS.
6957
     * Created in 2022 to support intermediate CRS ShAb07-IRF in the emulation of the ShAb07 Snake map projection.
6958
     */
6959
    public const EPSG_SHAB07_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1335';
6960
6961
    /**
6962
     * Sibun Gorge 1922
6963
     * Type: Geodetic
6964
     * Extent: Belize - onshore.
6965
     * Latitude: 17º03'40.471"N, longitude: 88º37'54.687"W.
6966
     */
6967
    public const EPSG_SIBUN_GORGE_1922 = 'urn:ogc:def:datum:EPSG::1071';
6968
6969
    /**
6970
     * Sierra Leone 1968
6971
     * Type: Geodetic
6972
     * Extent: Sierra Leone - onshore.
6973
     * Fundamental point: SLX2 Astro. Latitude: 8°27'17.567"N, longitude: 12°49'40.186"W (of Greenwich).
6974
     * Extension and readjustment with additional observations of 1960 network. Coordinates of 1960 stations change by
6975
     * less than 3 metres.
6976
     */
6977
    public const EPSG_SIERRA_LEONE_1968 = 'urn:ogc:def:datum:EPSG::6175';
6978
6979
    /**
6980
     * Sierra Leone Colony 1924
6981
     * Type: Geodetic
6982
     * Extent: Sierra Leone - Freetown Peninsula.
6983
     * Fundamental point: Kortright. Latitude: 8°28'44.4"N, longitude: 13°13'03.81"W (of Greenwich).
6984
     */
6985
    public const EPSG_SIERRA_LEONE_COLONY_1924 = 'urn:ogc:def:datum:EPSG::6174';
6986
6987
    /**
6988
     * Singapore Height Datum
6989
     * Type: Vertical
6990
     * Extent: Singapore - onshore and offshore.
6991
     * Mean sea level determined at Victoria Dock tide gauge 1935-1937.
6992
     * Orthometric heights. Network readjusted in 2009.
6993
     */
6994
    public const EPSG_SINGAPORE_HEIGHT_DATUM = 'urn:ogc:def:datum:EPSG::1140';
6995
6996
    /**
6997
     * Sistem Referensi Geospasial Indonesia 2013
6998
     * Type: Dynamic geodetic
6999
     * Extent: Indonesia - onshore and offshore.
7000
     * ITRF2008 at epoch 2012.0.
7001
     * Semi-dynamic datum. Geometric element of geodetic control network (JKG). Replaces DGN95 and all older datums.
7002
     */
7003
    public const EPSG_SISTEM_REFERENSI_GEOSPASIAL_INDONESIA_2013 = 'urn:ogc:def:datum:EPSG::1293';
7004
7005
    /**
7006
     * Sistema Geodesico Nacional de Panama MACARIO SOLIS
7007
     * Type: Geodetic
7008
     * Extent: Panama - onshore and offshore.
7009
     * ITRF2000 at epoch 2000.0. Densification of SIRGAS 2000 network in Panama, consisting of 20 GPS stations
7010
     * throughout the country.
7011
     */
7012
    public const EPSG_SISTEMA_GEODESICO_NACIONAL_DE_PANAMA_MACARIO_SOLIS = 'urn:ogc:def:datum:EPSG::1066';
7013
7014
    /**
7015
     * Sistema de Referencia Geocentrico para America del Sur 1995
7016
     * Type: Geodetic
7017
     * Extent: South America - onshore and offshore. Ecuador (mainland and Galapagos) - onshore and offshore.
7018
     * ITRF94 at epoch 1995.4.
7019
     * Realized by a frame of 58 stations observed in 1995 and adjusted in ITRF94. Provisional NIMA adjustment
7020
     * reference epoch was 1995.42 but final report accepted value is 1995.40. Replaced by SIRGAS 2000.
7021
     */
7022
    public const EPSG_SISTEMA_DE_REFERENCIA_GEOCENTRICO_PARA_AMERICA_DEL_SUR_1995 = 'urn:ogc:def:datum:EPSG::6170';
7023
7024
    /**
7025
     * Sistema de Referencia Geocentrico para las AmericaS 2000
7026
     * Type: Geodetic
7027
     * Extent: Latin America - Central America and South America - onshore and offshore. Brazil - onshore and offshore.
7028
     * ITRF2000 at epoch 2000.40.
7029
     * Realized by a frame of 184 stations observed in 2000 and adjusted in the ITRF2000. Includes ties to tide gauges.
7030
     * Replaces SIRGAS 1995 system for South America; expands SIRGAS to Central America. Name changed in 2001 for use
7031
     * in all of Latin America.
7032
     */
7033
    public const EPSG_SISTEMA_DE_REFERENCIA_GEOCENTRICO_PARA_LAS_AMERICAS_2000 = 'urn:ogc:def:datum:EPSG::6674';
7034
7035
    /**
7036
     * Sistema de Referencia Vertical Nacional 2016
7037
     * Type: Vertical
7038
     * Extent: Argentina - onshore.
7039
     * Mean Sea Level 1923 at Mar del Plata defined at station 71 (C = 121.64978 m^2s^-2) = 12.43m for mainland,
7040
     * Ushuaia station PF1N(383) (C = 38.427 m^2s^-2) =  3.915m for Tierra del Fuego. These geopotential numbers
7041
     * correspond with historic values.
7042
     * Replaces SRVN71.
7043
     */
7044
    public const EPSG_SISTEMA_DE_REFERENCIA_VERTICAL_NACIONAL_2016 = 'urn:ogc:def:datum:EPSG::1260';
7045
7046
    /**
7047
     * Sister Islands Geodetic Datum 1961
7048
     * Type: Geodetic
7049
     * Extent: Cayman Islands - Little Cayman and Cayman Brac.
7050
     * Fundamental point: LC5. Latitude: 19°39'46.324"N, longitude: 80°03'47.910"W (of Greenwich).
7051
     * Replaced by CIGD11 (datum code 1100).
7052
     */
7053
    public const EPSG_SISTER_ISLANDS_GEODETIC_DATUM_1961 = 'urn:ogc:def:datum:EPSG::6726';
7054
7055
    /**
7056
     * Slovenia Geodetic Datum 1996
7057
     * Type: Geodetic
7058
     * Extent: Slovenia - onshore and offshore.
7059
     * Densification of ETRS89, based on ITRS89 at epoch 1995.55.
7060
     */
7061
    public const EPSG_SLOVENIA_GEODETIC_DATUM_1996 = 'urn:ogc:def:datum:EPSG::6765';
7062
7063
    /**
7064
     * Slovenian Vertical System 2000
7065
     * Type: Vertical
7066
     * Extent: Slovenia - onshore.
7067
     * Reference point Ruse defined relative to mean sea level at Trieste in 1875.
7068
     * Normal-orthometric heights. Promulgated through the National Vertical Network adjustment of 1999.
7069
     */
7070
    public const EPSG_SLOVENIAN_VERTICAL_SYSTEM_2000 = 'urn:ogc:def:datum:EPSG::5177';
7071
7072
    /**
7073
     * Slovenian Vertical System 2010
7074
     * Type: Vertical
7075
     * Extent: Slovenia - onshore.
7076
     * Mean sea level at Koper over 18.6 years, selected epoch is 2010-10-10.
7077
     * Normal heights. Replaces SVS2000 from 2019-01.
7078
     */
7079
    public const EPSG_SLOVENIAN_VERTICAL_SYSTEM_2010 = 'urn:ogc:def:datum:EPSG::1215';
7080
7081
    /**
7082
     * Solomon 1968
7083
     * Type: Geodetic
7084
     * Extent: Solomon Islands - onshore southern Solomon Islands, primarily Guadalcanal, Malaita, San Cristobel, Santa
7085
     * Isobel, Choiseul, Makira-Ulawa.
7086
     * Fundamental point: GUX 1.
7087
     */
7088
    public const EPSG_SOLOMON_1968 = 'urn:ogc:def:datum:EPSG::6718';
7089
7090
    /**
7091
     * Sonatrach Reference Frame 2020
7092
     * Type: Geodetic
7093
     * Extent: Algeria - onshore and offshore.
7094
     * Aligned with IGS14 at epoch 2020.15.  RGSH2020 primary network of 22 stations throughout Algeria connected to 15
7095
     * IGS stations.
7096
     * Internal accuracy of network is 6-8mm.
7097
     */
7098
    public const EPSG_SONATRACH_REFERENCE_FRAME_2020 = 'urn:ogc:def:datum:EPSG::1355';
7099
7100
    /**
7101
     * South Africa Land Levelling Datum
7102
     * Type: Vertical
7103
     * Extent: South Africa - mainland onshore.
7104
     * Mean Sea Level at Cape Town harbour 1900 and 1907, referred to Datum Benchmark BM1.
7105
     * Orthometric heights.
7106
     */
7107
    public const EPSG_SOUTH_AFRICA_LAND_LEVELLING_DATUM = 'urn:ogc:def:datum:EPSG::1262';
7108
7109
    /**
7110
     * South American Datum 1969
7111
     * Type: Geodetic
7112
     * Extent: Brazil - onshore and offshore. In rest of South America - onshore north of approximately 45°S and
7113
     * Tierra del Fuego.
7114
     * Fundamental point: Chua. Geodetic latitude: 19°45'41.6527"S; geodetic longitude: 48°06'04.0639"W (of
7115
     * Greenwich). (Astronomic coordinates: Latitude 19°45'41.34"S +/- 0.05", longitude 48°06'07.80"W +/- 0.08").
7116
     * SAD69 uses GRS 1967 ellipsoid but with 1/f to exactly 2 decimal places. In Brazil only, replaced by SAD69(96)
7117
     * (datum code 1075).
7118
     */
7119
    public const EPSG_SOUTH_AMERICAN_DATUM_1969 = 'urn:ogc:def:datum:EPSG::6618';
7120
7121
    /**
7122
     * South American Datum 1969(96)
7123
     * Type: Geodetic
7124
     * Extent: Brazil - onshore and offshore. Includes Rocas, Fernando de Noronha archipelago, Trindade, Ihlas Martim
7125
     * Vaz and Sao Pedro e Sao Paulo.
7126
     * Fundamental point: Chua. Geodetic latitude: 19°45'41.6527"S; geodetic longitude: 48°06'04.0639"W (of
7127
     * Greenwich). (Astronomic coordinates: Latitude 19°45'41.34"S +/- 0.05", longitude 48°06'07.80"W +/- 0.08").
7128
     * SAD69 uses GRS 1967 ellipsoid but with 1/f to exactly 2 decimal places. Replaces original 1969 adjustment (datum
7129
     * code 6618) in Brazil.
7130
     */
7131
    public const EPSG_SOUTH_AMERICAN_DATUM_1969_96 = 'urn:ogc:def:datum:EPSG::1075';
7132
7133
    /**
7134
     * South East Island 1943
7135
     * Type: Geodetic
7136
     * Extent: Seychelles - Mahe, Silhouette, North, Aride Island, Praslin, La Digue and Frigate islands including
7137
     * adjacent smaller granitic islands on the Seychelles Bank, Bird Island and Denis Island.
7138
     * Fundamental point: Challenger Astro near Port Victoria lighthouse. Latitude: 4°40'39.460"S, longitude:
7139
     * 55°32'00.166"E (of Greenwich).
7140
     * Network readjusted in 1958-59 and extended to Bird and Denis islands in 1975.
7141
     */
7142
    public const EPSG_SOUTH_EAST_ISLAND_1943 = 'urn:ogc:def:datum:EPSG::1138';
7143
7144
    /**
7145
     * South Georgia 1968
7146
     * Type: Geodetic
7147
     * Extent: South Georgia and the South Sandwich Islands - South Georgia onshore.
7148
     * Fundamental point: ISTS 061.
7149
     */
7150
    public const EPSG_SOUTH_GEORGIA_1968 = 'urn:ogc:def:datum:EPSG::6722';
7151
7152
    /**
7153
     * South Yemen
7154
     * Type: Geodetic
7155
     * Extent: Yemen - South Yemen onshore mainland.
7156
     */
7157
    public const EPSG_SOUTH_YEMEN = 'urn:ogc:def:datum:EPSG::6164';
7158
7159
    /**
7160
     * Sri Lanka Datum 1999
7161
     * Type: Geodetic
7162
     * Extent: Sri Lanka - onshore.
7163
     * Fundamental point: ISM Diyatalawa. Latitude: 6°49'02.687"N, longitude: 80°57'40.880"E.
7164
     * Introduced in 2000.
7165
     */
7166
    public const EPSG_SRI_LANKA_DATUM_1999 = 'urn:ogc:def:datum:EPSG::1053';
7167
7168
    /**
7169
     * Sri Lanka Vertical Datum
7170
     * Type: Vertical
7171
     * Extent: Sri Lanka - onshore.
7172
     * MSL at Colombo 1884-1889.
7173
     * Normal-orthometric heights, but often referred to as "orthometric".
7174
     */
7175
    public const EPSG_SRI_LANKA_VERTICAL_DATUM = 'urn:ogc:def:datum:EPSG::1054';
7176
7177
    /**
7178
     * St. George Island
7179
     * Type: Geodetic
7180
     * Extent: United States (USA) - Alaska - Pribilof Islands - St George Island.
7181
     * Fundamental point latitude: 56°36'11.31"N, longitude: 169°32'36.00"W (of Greenwich).
7182
     * Many Alaskan islands were never on NAD27 but rather on independent datums. NADCON conversion program provides
7183
     * transformation from St. George Island Datum to NAD83 (original 1986 realization) - making the transformation
7184
     * appear to user as if from NAD27.
7185
     */
7186
    public const EPSG_ST_GEORGE_ISLAND = 'urn:ogc:def:datum:EPSG::6138';
7187
7188
    /**
7189
     * St. Helena Geodetic Datum 2015
7190
     * Type: Geodetic
7191
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
7192
     * ITRF2008 at epoch 2015.0. ITRF2008 coordinates (15°56'33.1198"S, 5°40'02.4412"W, 453.183m ellipsoid height) of
7193
     * Longwood IGS CORS station STHL on 1st January 2015.
7194
     * Developed by Richard Stanaway, Quickclose Pty Ltd, superseding Astro DOS 71 from 1st January 2016.
7195
     */
7196
    public const EPSG_ST_HELENA_GEODETIC_DATUM_2015 = 'urn:ogc:def:datum:EPSG::1174';
7197
7198
    /**
7199
     * St. Helena Tritan
7200
     * Type: Geodetic
7201
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
7202
     * WGS 84(G1150) at epoch 2011.773. WGS 84 coordinates (15°56'33.1217"S, 5°40'02.4436"W, 453.288m ellipsoid
7203
     * height) of Longwood IGS CORS station STHL on 9th October 2011.
7204
     */
7205
    public const EPSG_ST_HELENA_TRITAN = 'urn:ogc:def:datum:EPSG::1173';
7206
7207
    /**
7208
     * St. Helena Tritan Vertical Datum 2011
7209
     * Type: Vertical
7210
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
7211
     * MSL defined by Longwood IGS station STHL reference level of 436.215m.
7212
     * Defined by offset of -17.073m applied to St. Helena Tritan ellipsiodal height (CRS code 7880).
7213
     */
7214
    public const EPSG_ST_HELENA_TRITAN_VERTICAL_DATUM_2011 = 'urn:ogc:def:datum:EPSG::1176';
7215
7216
    /**
7217
     * St. Helena Vertical Datum 2015
7218
     * Type: Vertical
7219
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
7220
     * Longwood IGS station STHL reference level of 436.312m.
7221
     * Defined by SHGEOID15 geoid model (transformation code 7891) applied to SHGD2015 (CRS code 7885).
7222
     */
7223
    public const EPSG_ST_HELENA_VERTICAL_DATUM_2015 = 'urn:ogc:def:datum:EPSG::1177';
7224
7225
    /**
7226
     * St. Kilda
7227
     * Type: Vertical
7228
     * Extent: United Kingdom (UK) - Great Britain - Scotland - St Kilda onshore.
7229
     * Orthometric heights.
7230
     */
7231
    public const EPSG_ST_KILDA = 'urn:ogc:def:datum:EPSG::5145';
7232
7233
    /**
7234
     * St. Kitts 1955
7235
     * Type: Geodetic
7236
     * Extent: St Kitts and Nevis - onshore.
7237
     * Fundamental point: station K12.
7238
     */
7239
    public const EPSG_ST_KITTS_1955 = 'urn:ogc:def:datum:EPSG::6605';
7240
7241
    /**
7242
     * St. Lawrence Island
7243
     * Type: Geodetic
7244
     * Extent: United States (USA) - Alaska - St Lawrence Island.
7245
     * Many Alaskan islands were never on NAD27 but rather on independent datums. NADCON conversion program provides
7246
     * transformation from St. Lawrence Island Datum to NAD83 (original 1986 realization) - making the transformation
7247
     * appear to user as if from NAD27.
7248
     */
7249
    public const EPSG_ST_LAWRENCE_ISLAND = 'urn:ogc:def:datum:EPSG::6136';
7250
7251
    /**
7252
     * St. Lucia 1955
7253
     * Type: Geodetic
7254
     * Extent: St Lucia - onshore.
7255
     * Fundamental point: station DCS3.
7256
     */
7257
    public const EPSG_ST_LUCIA_1955 = 'urn:ogc:def:datum:EPSG::6606';
7258
7259
    /**
7260
     * St. Marys
7261
     * Type: Vertical
7262
     * Extent: United Kingdom (UK) - Great Britain - England - Isles of Scilly onshore.
7263
     * Mean Sea Level at St. Marys 1887. Initially realised through levelling network adjustment, from 2002 redefined
7264
     * to be realised through OSGM geoid model.
7265
     * Orthometric heights.
7266
     */
7267
    public const EPSG_ST_MARYS = 'urn:ogc:def:datum:EPSG::5147';
7268
7269
    /**
7270
     * St. Paul Island
7271
     * Type: Geodetic
7272
     * Extent: United States (USA) - Alaska - Pribilof Islands - St Paul Island.
7273
     * Fundamental point latitude: 57°07'16.86"N, longitude: 170°16'24.00"W (of Greenwich).
7274
     * Many Alaskan islands were never on NAD27 but rather on independent datums. NADCON conversion program provides
7275
     * transformation from St. Paul Island Datum to NAD83 (original 1986 realization) - making the transformation
7276
     * appear to user as if from NAD27.
7277
     */
7278
    public const EPSG_ST_PAUL_ISLAND = 'urn:ogc:def:datum:EPSG::6137';
7279
7280
    /**
7281
     * St. Stephen (Ferro)
7282
     * Type: Geodetic
7283
     * Extent: Austria - Lower Austria. Czechia - Moravia and Czech Silesia.
7284
     * Fundamental point: St. Stephen's cathedral, Vienna. Latitude: 48°12'31.54"N, longitude: 34°02'27.32"E (of
7285
     * Ferro).
7286
     */
7287
    public const EPSG_ST_STEPHEN_FERRO = 'urn:ogc:def:datum:EPSG::1189';
7288
7289
    /**
7290
     * St. Vincent 1945
7291
     * Type: Geodetic
7292
     * Extent: St Vincent and the northern Grenadine Islands - onshore.
7293
     * Fundamental point: station V1, Fort Charlotte.
7294
     */
7295
    public const EPSG_ST_VINCENT_1945 = 'urn:ogc:def:datum:EPSG::6607';
7296
7297
    /**
7298
     * Staatlichen Nivellementnetzes 1976
7299
     * Type: Vertical
7300
     * Extent: Germany - states of former East Germany - Berlin, Brandenburg; Mecklenburg-Vorpommern; Sachsen;
7301
     * Sachsen-Anhalt; Thuringen.
7302
     * Network adjusted in 1976. Height at reference point Hoppegarten defined as 1957 value from the UPLN adjustment.
7303
     * Datum at Kronstadt is mean sea level of Baltic in 1833.
7304
     * Introduced in 1979. Uses Normal heights. Replaced by DHHN92.
7305
     */
7306
    public const EPSG_STAATLICHEN_NIVELLEMENTNETZES_1976 = 'urn:ogc:def:datum:EPSG::5183';
7307
7308
    /**
7309
     * Stewart Island 1977
7310
     * Type: Vertical
7311
     * Extent: New Zealand - Stewart Island.
7312
     * MSL at 3-5 high and low tides at two different locations.
7313
     */
7314
    public const EPSG_STEWART_ISLAND_1977 = 'urn:ogc:def:datum:EPSG::5170';
7315
7316
    /**
7317
     * Stockholm 1938
7318
     * Type: Geodetic
7319
     * Extent: Sweden - onshore.
7320
     * Fundamental point: Stockholm observatory.
7321
     * Replaced by RT90 adjustment (datum code 6124).
7322
     */
7323
    public const EPSG_STOCKHOLM_1938 = 'urn:ogc:def:datum:EPSG::6308';
7324
7325
    /**
7326
     * Stockholm 1938 (Stockholm)
7327
     * Type: Geodetic
7328
     * Extent: Sweden - onshore.
7329
     * Fundamental point: Stockholm observatory
7330
     * Replaced by RT90 adjustment (datum code 6124).
7331
     */
7332
    public const EPSG_STOCKHOLM_1938_STOCKHOLM = 'urn:ogc:def:datum:EPSG::6814';
7333
7334
    /**
7335
     * Stornoway
7336
     * Type: Vertical
7337
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Outer Hebrides onshore.
7338
     * Mean Sea Level at Stornoway 1977 correlated to pre-1900. Initially realised through levelling network
7339
     * adjustment, from 2002 redefined to be realised through OSGM geoid model.
7340
     * Orthometric heights.
7341
     */
7342
    public const EPSG_STORNOWAY = 'urn:ogc:def:datum:EPSG::5144';
7343
7344
    /**
7345
     * Sule Skerry
7346
     * Type: Vertical
7347
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Sule Skerry onshore.
7348
     * Orthometric heights.
7349
     */
7350
    public const EPSG_SULE_SKERRY = 'urn:ogc:def:datum:EPSG::5142';
7351
7352
    /**
7353
     * Svalbard vertical datum 2006
7354
     * Type: Vertical
7355
     * Extent: Arctic (Norway (Svalbard) onshore and offshore) - between 81°10'N and 76°10'N.
7356
     * Mean Sea Level (MSL) at Ny-Ålesund. The SVD2006 surface (arcgp-2006-sk) is the Arctic Gravity Project 2006
7357
     * (arcgp-2006) surface adjusted to two benchmarks tied to the Ny-Ålesund tide gauge. arcgp-2006-sk=arcgp-2006 -
7358
     * 0.8986m.
7359
     */
7360
    public const EPSG_SVALBARD_VERTICAL_DATUM_2006 = 'urn:ogc:def:datum:EPSG::1323';
7361
7362
    /**
7363
     * Swiss Terrestrial Reference System 1995
7364
     * Type: Geodetic
7365
     * Extent: Liechtenstein; Switzerland.
7366
     * ETRF89 at epoch 1993.0.
7367
     * First realized through CHTRF95 and subsequently CHTRF98, 2004, 2010 and 2016 with an aim to re-measure every 6
7368
     * years.
7369
     */
7370
    public const EPSG_SWISS_TERRESTRIAL_REFERENCE_SYSTEM_1995 = 'urn:ogc:def:datum:EPSG::6151';
7371
7372
    /**
7373
     * System of the Unified Trigonometrical Cadastral Network
7374
     * Type: Geodetic
7375
     * Extent: Czechia; Slovakia.
7376
     * Modification of Austrian MGI datum, code 6312.
7377
     */
7378
    public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK = 'urn:ogc:def:datum:EPSG::6156';
7379
7380
    /**
7381
     * System of the Unified Trigonometrical Cadastral Network (Ferro)
7382
     * Type: Geodetic
7383
     * Extent: Czechia; Slovakia.
7384
     * Modification of Austrian MGI (Ferro) datum.
7385
     */
7386
    public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK_FERRO = 'urn:ogc:def:datum:EPSG::6818';
7387
7388
    /**
7389
     * System of the Unified Trigonometrical Cadastral Network [JTSK03]
7390
     * Type: Geodetic
7391
     * Extent: Slovakia.
7392
     */
7393
    public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK_JTSK03 = 'urn:ogc:def:datum:EPSG::1201';
7394
7395
    /**
7396
     * System of the Unified Trigonometrical Cadastral Network/05
7397
     * Type: Geodetic
7398
     * Extent: Czechia.
7399
     * Constrained to S-JTSK but realised through readjustment in projected CRS domain. Related to ETRS89 R05
7400
     * realisation through transformation code 5226.
7401
     */
7402
    public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK_05 = 'urn:ogc:def:datum:EPSG::1052';
7403
7404
    /**
7405
     * System of the Unified Trigonometrical Cadastral Network/05 (Ferro)
7406
     * Type: Geodetic
7407
     * Extent: Czechia.
7408
     * Constrained to S-JTSK but realised through readjustment in projected CRS domain.
7409
     */
7410
    public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK_05_FERRO = 'urn:ogc:def:datum:EPSG::1055';
7411
7412
    /**
7413
     * TM65
7414
     * Type: Geodetic
7415
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
7416
     * Adjusted to best mean fit 12 stations of the OSNI 1952 primary adjustment.
7417
     * Differences between OSNI 1952 and TM65 at these stations are RMS 0.25m east, 0.23m north, maximum vector 0.57m.
7418
     * TM65 replaced by and not to be confused with Geodetic Datum of 1965 alias 1975 Mapping Adjustment or TM75 (datum
7419
     * code 6300).
7420
     */
7421
    public const EPSG_TM65 = 'urn:ogc:def:datum:EPSG::6299';
7422
7423
    /**
7424
     * TPEN11 Intermediate Reference Frame
7425
     * Type: Geodetic
7426
     * Extent: United Kingdom (UK) - on or related to the Trans-Pennine rail route from Liverpool via Manchester to
7427
     * Bradford and Leeds.
7428
     * Defined through the application of the TPEN11 NTv2 transformation (code 9365) to ETRS89 as realized through
7429
     * OSNet v2009 CORS.
7430
     * Created in 2020 to support intermediate CRS "TPEN11-IRF" in the emulation of the combined TPEN11 Snake and
7431
     * TPEN11ext Snake map projections.
7432
     */
7433
    public const EPSG_TPEN11_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1266';
7434
7435
    /**
7436
     * Tahaa 54
7437
     * Type: Geodetic
7438
     * Extent: French Polynesia - Society Islands - Bora Bora, Huahine, Raiatea and Tahaa.
7439
     * Fundamental point: Tahaa East Base. Latitude: 16°33'20.97"S, longitude: 151°29'06.25"W (of Greenwich).
7440
     * Replaced by RGPF (datum code 6687).
7441
     */
7442
    public const EPSG_TAHAA_54 = 'urn:ogc:def:datum:EPSG::6629';
7443
7444
    /**
7445
     * Tahaa SAU 2001
7446
     * Type: Vertical
7447
     * Extent: French Polynesia - Society Islands - Tahaa.
7448
     * Fundamental benchmark: RN16
7449
     * Included as part of NGPF - see datum code 5195.
7450
     */
7451
    public const EPSG_TAHAA_SAU_2001 = 'urn:ogc:def:datum:EPSG::5201';
7452
7453
    /**
7454
     * Tahiti 52
7455
     * Type: Geodetic
7456
     * Extent: French Polynesia - Society Islands - Moorea and Tahiti.
7457
     * Fundamental point: Tahiti North Base. Latitude: 17°38'10.0"S, longitude: 149°36'57.8"W (of Greenwich).
7458
     * Replaced by Tahiti 79 (datum code 6690) in Tahiti and Moorea 87 (code 6691) in Moorea.
7459
     */
7460
    public const EPSG_TAHITI_52 = 'urn:ogc:def:datum:EPSG::6628';
7461
7462
    /**
7463
     * Tahiti 79
7464
     * Type: Geodetic
7465
     * Extent: French Polynesia - Society Islands - Tahiti.
7466
     * Fundamental point: Tahiti North Base. Latitude: 17°38'10.0"S, longitude: 149°36'57.8"W (of Greenwich).
7467
     * Replaces Tahiti 52 (datum code 6628) in Tahiti. Replaced by RGPF (datum code 6687).
7468
     */
7469
    public const EPSG_TAHITI_79 = 'urn:ogc:def:datum:EPSG::6690';
7470
7471
    /**
7472
     * Taiwan Datum 1967
7473
     * Type: Geodetic
7474
     * Extent: Taiwan, Republic of China - onshore - Taiwan Island, Penghu (Pescadores) Islands.
7475
     * Fundamental point: Hu Tzu Shan. Latitude: 23°58'32.34"N, longitude: 120°58'25.975"E (of Greenwich).
7476
     * Adopted in 1980. TWD67 uses the GRS 1967 ellipsoid but with 1/f to exactly 2 decimal places.
7477
     */
7478
    public const EPSG_TAIWAN_DATUM_1967 = 'urn:ogc:def:datum:EPSG::1025';
7479
7480
    /**
7481
     * Taiwan Datum 1997
7482
     * Type: Geodetic
7483
     * Extent: Taiwan, Republic of China - onshore and offshore - Taiwan Island, Penghu (Pescadores) Islands.
7484
     * ITRF94 at epoch 1997.0
7485
     * Adopted in 1998.
7486
     */
7487
    public const EPSG_TAIWAN_DATUM_1997 = 'urn:ogc:def:datum:EPSG::1026';
7488
7489
    /**
7490
     * Taiwan Vertical Datum 2001
7491
     * Type: Vertical
7492
     * Extent: Taiwan, Republic of China - onshore - Taiwan Island.
7493
     * Mean Sea Level at Keelung between 1957 and 1991.
7494
     * Orthometric heights.
7495
     */
7496
    public const EPSG_TAIWAN_VERTICAL_DATUM_2001 = 'urn:ogc:def:datum:EPSG::1224';
7497
7498
    /**
7499
     * Tananarive 1925
7500
     * Type: Geodetic
7501
     * Extent: Madagascar - onshore and nearshore.
7502
     * Fundamental point: Tananarive observatory. Latitude: 18°55'02.10"S, longitude: 47°33'06.75"E (of Greenwich).
7503
     */
7504
    public const EPSG_TANANARIVE_1925 = 'urn:ogc:def:datum:EPSG::6297';
7505
7506
    /**
7507
     * Tananarive 1925 (Paris)
7508
     * Type: Geodetic
7509
     * Extent: Madagascar - onshore.
7510
     * Fundamental point: Tananarive observatory. Latitude: 21.0191667g S, longitude: 50.23849537g E (of Paris).
7511
     */
7512
    public const EPSG_TANANARIVE_1925_PARIS = 'urn:ogc:def:datum:EPSG::6810';
7513
7514
    /**
7515
     * Tapi Aike
7516
     * Type: Geodetic
7517
     * Extent: Argentina - Santa Cruz province south of approximately 50°20'S.
7518
     * Replaced by Campo Inchauspe (code 6221) for topographic mapping, use for oil exploration and production
7519
     * continues.
7520
     */
7521
    public const EPSG_TAPI_AIKE = 'urn:ogc:def:datum:EPSG::1257';
7522
7523
    /**
7524
     * Taranaki 1970
7525
     * Type: Vertical
7526
     * Extent: New Zealand - North Island - Taranaki vertical CRS area.
7527
     * MSL at Taranaki harbour 1918-1921.
7528
     */
7529
    public const EPSG_TARANAKI_1970 = 'urn:ogc:def:datum:EPSG::5167';
7530
7531
    /**
7532
     * Tararu 1952
7533
     * Type: Vertical
7534
     * Extent: New Zealand - North Island - Tararu vertical CRS area.
7535
     * MSL at Tararu Point 1922-1923.
7536
     */
7537
    public const EPSG_TARARU_1952 = 'urn:ogc:def:datum:EPSG::5166';
7538
7539
    /**
7540
     * Tenerife
7541
     * Type: Vertical
7542
     * Extent: Spain - Canary Islands - Tenerife onshore.
7543
     * Mean Sea Level at Santa Cruz de Tenerife harbour between 1960 and 1970.
7544
     * Orthometric heights.
7545
     */
7546
    public const EPSG_TENERIFE = 'urn:ogc:def:datum:EPSG::1281';
7547
7548
    /**
7549
     * Tern Island 1961
7550
     * Type: Geodetic
7551
     * Extent: United States (USA) - Hawaii - Tern Island and Sorel Atoll.
7552
     * Fundamental point: station FRIG on tern island, station B4 on Sorol Atoll.
7553
     * Two independent astronomic determinations considered to be consistent through adoption of common transformation
7554
     * to WGS 84 (see tfm code 15795).
7555
     */
7556
    public const EPSG_TERN_ISLAND_1961 = 'urn:ogc:def:datum:EPSG::6707';
7557
7558
    /**
7559
     * Tete
7560
     * Type: Geodetic
7561
     * Extent: Mozambique - onshore.
7562
     * Fundamental point: Tete.
7563
     */
7564
    public const EPSG_TETE = 'urn:ogc:def:datum:EPSG::6127';
7565
7566
    /**
7567
     * Timbalai 1948
7568
     * Type: Geodetic
7569
     * Extent: Brunei - onshore and offshore; Malaysia - East Malaysia (Sabah; Sarawak) - onshore and offshore.
7570
     * Fundamental point: Station P85 at Timbalai. Latitude: 5°17' 3.548"N, longitude: 115°10'56.409"E (of
7571
     * Greenwich).
7572
     * In 1968, the original adjustment was densified in Sarawak and extended to Sabah.
7573
     */
7574
    public const EPSG_TIMBALAI_1948 = 'urn:ogc:def:datum:EPSG::6298';
7575
7576
    /**
7577
     * Tokyo
7578
     * Type: Geodetic
7579
     * Extent: Japan - onshore; North Korea - onshore; South Korea - onshore.
7580
     * Fundamental point: Nikon-Keido-Genten. Latitude: 35°39'17.5148"N, longitude: 139°44'40.5020"E (of Greenwich).
7581
     * Longitude derived in 1918.
7582
     * In Japan, replaces Tokyo 1892 (code 1048) and replaced by Japanese Geodetic Datum 2000 (code 6611). In Korea
7583
     * used only for geodetic applications before being replaced by Korean 1985 (code 6162).
7584
     */
7585
    public const EPSG_TOKYO = 'urn:ogc:def:datum:EPSG::6301';
7586
7587
    /**
7588
     * Tokyo 1892
7589
     * Type: Geodetic
7590
     * Extent: Japan - onshore; North Korea - onshore; South Korea - onshore.
7591
     * Fundamental point: Nikon-Keido-Genten. Latitude: 35°39'17.5148"N, longitude: 139°44'30.0970"E (of Greenwich).
7592
     * Longitude derived in 1892.
7593
     * Extended from Japan to Korea in 1898. In Japan replaced by Tokyo 1918 (datum code 6301). In South Korea replaced
7594
     * by Tokyo 1918 (code 6301) only for geodetic purposes; for all other purposes replaced by Korean 1985 (code
7595
     * 6162).
7596
     */
7597
    public const EPSG_TOKYO_1892 = 'urn:ogc:def:datum:EPSG::1048';
7598
7599
    /**
7600
     * Tonga Geodetic Datum 2005
7601
     * Type: Geodetic
7602
     * Extent: Tonga - onshore and offshore.
7603
     * Based on ITRF2000 at epoch 2005.0.
7604
     */
7605
    public const EPSG_TONGA_GEODETIC_DATUM_2005 = 'urn:ogc:def:datum:EPSG::1095';
7606
7607
    /**
7608
     * Trieste
7609
     * Type: Vertical
7610
     * Extent: Bosnia and Herzegovina; Croatia - onshore; Kosovo; Montenegro - onshore; North Macedonia; Serbia;
7611
     * Slovenia - onshore.
7612
     * Reference point HM1(BV1)-Trieste defined relative to mean sea level at Trieste in 1875.
7613
     * Normal-orthometric heights. In Croatia replaced by HVRS71 (datum code 5207).
7614
     */
7615
    public const EPSG_TRIESTE = 'urn:ogc:def:datum:EPSG::1050';
7616
7617
    /**
7618
     * Trinidad 1903
7619
     * Type: Geodetic
7620
     * Extent: Trinidad and Tobago - Trinidad - onshore and offshore.
7621
     * Station 00, Harbour Master's Flagstaff, Port of Spain.
7622
     * Trinidad 1903 / Trinidad Grid coordinates (Clarke's links): 333604.30 E, 436366.91 N (Latitude: 10°38'39.01"N,
7623
     * Longitude: 61°30'38.00"W of Greenwich).
7624
     */
7625
    public const EPSG_TRINIDAD_1903 = 'urn:ogc:def:datum:EPSG::6302';
7626
7627
    /**
7628
     * Tristan 1968
7629
     * Type: Geodetic
7630
     * Extent: St Helena, Ascension and Tristan da Cunha - Tristan da Cunha island group including Tristan,
7631
     * Inaccessible, Nightingale, Middle and Stoltenhoff Islands.
7632
     */
7633
    public const EPSG_TRISTAN_1968 = 'urn:ogc:def:datum:EPSG::6734';
7634
7635
    /**
7636
     * Trucial Coast 1948
7637
     * Type: Geodetic
7638
     * Extent: United Arab Emirates (UAE) - Abu Dhabi onshore and Dubai onshore.
7639
     * Fundamental point: TC1. Latitude: 25°23'50.190"N, longitude: 55°26'43.950"E (of Greenwich).
7640
     */
7641
    public const EPSG_TRUCIAL_COAST_1948 = 'urn:ogc:def:datum:EPSG::6303';
7642
7643
    /**
7644
     * Turkish National Reference Frame
7645
     * Type: Geodetic
7646
     * Extent: Türkiye (Turkey) - onshore and offshore.
7647
     * ITRF96 at epoch 2005.0.
7648
     */
7649
    public const EPSG_TURKISH_NATIONAL_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1057';
7650
7651
    /**
7652
     * Tutuila Vertical Datum of 1962
7653
     * Type: Vertical
7654
     * Extent: American Samoa - Tutuila island.
7655
     * Mean sea level at Pago Pago harbor, Tutuila, over 10 years 1949-1955 and 1957-1959. Benchmark NO 2 1948 =
7656
     * 7.67ftUS.
7657
     * Replaced by American Samoa Vertical Datum of 2002 (datum code 1125).
7658
     */
7659
    public const EPSG_TUTUILA_VERTICAL_DATUM_OF_1962 = 'urn:ogc:def:datum:EPSG::1121';
7660
7661
    /**
7662
     * Ukraine 2000
7663
     * Type: Geodetic
7664
     * Extent: Ukraine - onshore and offshore.
7665
     * Orientation and scale constrained to be same as ITRF2000 at epoch 2005.0. Position is minimised deviation
7666
     * between reference ellipsoid and quasigeoid in territory of Ukraine.
7667
     */
7668
    public const EPSG_UKRAINE_2000 = 'urn:ogc:def:datum:EPSG::1077';
7669
7670
    /**
7671
     * Vanua Levu 1915
7672
     * Type: Geodetic
7673
     * Extent: Fiji - Vanua Levu and Taveuni.
7674
     * Latitude origin was obtained astronomically at station Numuiloa = 16°23'38.36"S, longitude origin was obtained
7675
     * astronomically at station Suva = 178°25'35.835"E.
7676
     * For topographic mapping, replaced by Fiji 1956. For other purposes, replaced by Fiji 1986.
7677
     */
7678
    public const EPSG_VANUA_LEVU_1915 = 'urn:ogc:def:datum:EPSG::6748';
7679
7680
    /**
7681
     * Vientiane 1982
7682
     * Type: Geodetic
7683
     * Extent: Laos.
7684
     * Fundamental point: Vientiane (Nongteng) Astro Pillar. Latitude: 18°01'31.6301"N, longitude: 102°30'56.6999"E
7685
     * (of Greenwich).
7686
     * Replaced by Lao 1993.
7687
     */
7688
    public const EPSG_VIENTIANE_1982 = 'urn:ogc:def:datum:EPSG::6676';
7689
7690
    /**
7691
     * Vietnam 2000
7692
     * Type: Geodetic
7693
     * Extent: Vietnam - onshore.
7694
     * Point N00, located in the premises of the Land Administration Research Institute, Hoang Quoc Viet Street, Hanoi.
7695
     * Replaces Hanoi 1972.
7696
     */
7697
    public const EPSG_VIETNAM_2000 = 'urn:ogc:def:datum:EPSG::6756';
7698
7699
    /**
7700
     * Virgin Islands Vertical Datum of 2009
7701
     * Type: Vertical
7702
     * Extent: US Virgin Islands - onshore - St Croix, St John, and St Thomas.
7703
     * Mean sea level for National Tidal Datum Epoch 1983–2001 at (i) Lime Tree Bay, St. Croix (BM 9751401 M =
7704
     * 3.111m) , (ii) Lameshur Bay, St. John (BM 9751381 TIDAL A = 1.077m) , and (iii) Charlotte Amalie, St. Thomas (BM
7705
     * 9751639 F = 1.552m).
7706
     * Replaces all earlier vertical datums on these islands.
7707
     */
7708
    public const EPSG_VIRGIN_ISLANDS_VERTICAL_DATUM_OF_2009 = 'urn:ogc:def:datum:EPSG::1124';
7709
7710
    /**
7711
     * Viti Levu 1912
7712
     * Type: Geodetic
7713
     * Extent: Fiji - Viti Levu island.
7714
     * Latitude origin was obtained astronomically at station Monavatu = 17°53'28.285"S, longitude origin was obtained
7715
     * astronomically at station Suva = 178°25'35.835"E.
7716
     * For topographic mapping, replaced by Fiji 1956. For other purposes, replaced by Fiji 1986.
7717
     */
7718
    public const EPSG_VITI_LEVU_1912 = 'urn:ogc:def:datum:EPSG::6752';
7719
7720
    /**
7721
     * Voirol 1875
7722
     * Type: Geodetic
7723
     * Extent: Algeria - onshore north of 32°N.
7724
     * Fundamental point: Voirol. Latitude: 36°45'07.927"N, longitude: 3°02'49.435"E of Greenwich. Uses RGS (and old
7725
     * IGN) value of 2°20'13.95"for Greenwich-Paris meridian difference.
7726
     * Replaced by Voirol 1879 (code 6671).
7727
     */
7728
    public const EPSG_VOIROL_1875 = 'urn:ogc:def:datum:EPSG::6304';
7729
7730
    /**
7731
     * Voirol 1875 (Paris)
7732
     * Type: Geodetic
7733
     * Extent: Algeria - onshore north of 32°N.
7734
     * Fundamental point: Voirol. Latitude: 40.83578 grads N, longitude: 0.78873 grads E (of Paris).
7735
     */
7736
    public const EPSG_VOIROL_1875_PARIS = 'urn:ogc:def:datum:EPSG::6811';
7737
7738
    /**
7739
     * Voirol 1879
7740
     * Type: Geodetic
7741
     * Extent: Algeria - onshore north of 32°N.
7742
     * Fundamental point: Voirol. Latitude: 36°45'08.199"N, longitude: 3°02'49.435"E (of Greenwich). Uses RGS (and
7743
     * old IGN) value of 2°20'13.95"for Greenwich-Paris meridian difference.
7744
     * Replaces Voirol 1875 (code 6304).
7745
     */
7746
    public const EPSG_VOIROL_1879 = 'urn:ogc:def:datum:EPSG::6671';
7747
7748
    /**
7749
     * Voirol 1879 (Paris)
7750
     * Type: Geodetic
7751
     * Extent: Algeria - onshore north of 32°N.
7752
     * Fundamental point: Voirol. Latitude: 40.835864 grads N, longitude: 0.788735 grads E (of Paris).
7753
     * Replaces Voirol 1875 (Paris) (code 6811).
7754
     */
7755
    public const EPSG_VOIROL_1879_PARIS = 'urn:ogc:def:datum:EPSG::6821';
7756
7757
    /**
7758
     * WGS 72 Transit Broadcast Ephemeris
7759
     * Type: Dynamic geodetic
7760
     * Extent: World.
7761
     * Alleged datum for use with Transit broadcast ephemeris prior to 1989. Relationship to WGS 72 has changed over
7762
     * time.
7763
     */
7764
    public const EPSG_WGS_72_TRANSIT_BROADCAST_EPHEMERIS = 'urn:ogc:def:datum:EPSG::6324';
7765
7766
    /**
7767
     * Waitangi (Chatham Island) 1959
7768
     * Type: Vertical
7769
     * Extent: New Zealand - Chatham Island - onshore.
7770
     * MSL at Waitangi harbour collected in 1959.
7771
     */
7772
    public const EPSG_WAITANGI_CHATHAM_ISLAND_1959 = 'urn:ogc:def:datum:EPSG::5169';
7773
7774
    /**
7775
     * Wake Island 1952
7776
     * Type: Geodetic
7777
     * Extent: Wake atoll - onshore.
7778
     */
7779
    public const EPSG_WAKE_ISLAND_1952 = 'urn:ogc:def:datum:EPSG::6733';
7780
7781
    /**
7782
     * Wellington 1953
7783
     * Type: Vertical
7784
     * Extent: New Zealand - North Island - Wellington vertical CRS area.
7785
     * MSL at Wellington harbour 1909-1946.
7786
     */
7787
    public const EPSG_WELLINGTON_1953 = 'urn:ogc:def:datum:EPSG::5168';
7788
7789
    /**
7790
     * Wiener Null
7791
     * Type: Vertical
7792
     * Extent: Austria - Vienna city state.
7793
     * Historic benchmark on the Schwedenbrücke over an artificial channel of River Danube (Donaukanal) with GHA
7794
     * height of 156.680m.
7795
     */
7796
    public const EPSG_WIENER_NULL = 'urn:ogc:def:datum:EPSG::1267';
7797
7798
    /**
7799
     * World Geodetic System 1966
7800
     * Type: Dynamic geodetic
7801
     * Extent: World.
7802
     * Developed from a worldwide distribution of terrestrial and geodetic satellite observations and defined through a
7803
     * set of station coordinates.
7804
     * A worldwide 5° × 5° mean free air gravity anomaly field provided the basic data for producing the WGS 66
7805
     * gravimetric geoid. Replaced by WGS 72.
7806
     */
7807
    public const EPSG_WORLD_GEODETIC_SYSTEM_1966 = 'urn:ogc:def:datum:EPSG::6760';
7808
7809
    /**
7810
     * World Geodetic System 1972
7811
     * Type: Dynamic geodetic
7812
     * Extent: World.
7813
     * Developed from a worldwide distribution of terrestrial and geodetic satellite observations and defined through a
7814
     * set of station coordinates.
7815
     * Used by GPS before 1987. For Transit satellite positioning see also WGS 72BE.
7816
     */
7817
    public const EPSG_WORLD_GEODETIC_SYSTEM_1972 = 'urn:ogc:def:datum:EPSG::6322';
7818
7819
    /**
7820
     * World Geodetic System 1984 (G1150)
7821
     * Type: Dynamic geodetic
7822
     * Extent: World.
7823
     * Defined through coordinates of 17 GPS tracking stations adjusted to a subset of 49 IGS stations. Observations
7824
     * made in February 2001. The reference epoch for ITRF2000 is 1997.0; station coordinates were transformed to
7825
     * 2001.0 using IERS station velocities.
7826
     * Replaces World Geodetic System 1984 (G873) from 2002-01-20. Replaced by World Geodetic System 1984 (G1674) from
7827
     * 2012-02-08.
7828
     */
7829
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G1150 = 'urn:ogc:def:datum:EPSG::1154';
7830
7831
    /**
7832
     * World Geodetic System 1984 (G1674)
7833
     * Type: Dynamic geodetic
7834
     * Extent: World.
7835
     * Defined through coordinates of 15 GPS tracking stations adjusted to a subset of IGS stations at epoch 2005.0.
7836
     * The IGS station coordinates are considered to be equivalent to ITRF2008.
7837
     * Replaces World Geodetic System 1984 (G1150) from 2012-02-08. Replaced by World Geodetic System 1984 (G1762) from
7838
     * 2013-10-16.
7839
     */
7840
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G1674 = 'urn:ogc:def:datum:EPSG::1155';
7841
7842
    /**
7843
     * World Geodetic System 1984 (G1762)
7844
     * Type: Dynamic geodetic
7845
     * Extent: World.
7846
     * Defined through coordinates of 19 GPS tracking stations adjusted to a subset of IGb08 stations at epoch 2005.0
7847
     * using observations made in May 2013. The IGb08 coordinates are considered to be equivalent to ITRF2008.
7848
     * Replaces WGS 84 (G1674) from 2013-10-16. Frame was redesignated WGS 84 (G1762') after coordinates of 7 NGA
7849
     * tracking stations were changed following station moves and antenna updates 2014-08 to 2015-06. Replaced by WGS
7850
     * 84 (G2139) from 2021-01-03.
7851
     */
7852
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G1762 = 'urn:ogc:def:datum:EPSG::1156';
7853
7854
    /**
7855
     * World Geodetic System 1984 (G2139)
7856
     * Type: Dynamic geodetic
7857
     * Extent: World.
7858
     * Defined through coordinates of 19 GPS tracking stations aligned with a subset of IGb14 stations at epoch 2016.0.
7859
     * The IGb14 station coordinates are considered to be equivalent to ITRF2014.
7860
     * Replaces World Geodetic System 1984 (G1762) from 2021-01-03. Tracking station coordinate changes on 2021-03-28
7861
     * when NGA implemented IGS definition of antenna phase centre offset.
7862
     */
7863
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G2139 = 'urn:ogc:def:datum:EPSG::1309';
7864
7865
    /**
7866
     * World Geodetic System 1984 (G730)
7867
     * Type: Dynamic geodetic
7868
     * Extent: World.
7869
     * Defined through coordinates of 10 GPS tracking stations adjusted to a subset of ITRF92 stations at epoch 1994.0.
7870
     * The reference epoch for ITRF92 is 1988.0; the ITRF92 station coordinates were transformed to 1994.0 using the
7871
     * NNR-NUVEL1 plate motion model.
7872
     * Replaces the original Transit-derived World Geodetic System 1984 from 1994-06-29. Replaced by World Geodetic
7873
     * System 1984 (G873) from 1997-01-29.
7874
     */
7875
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G730 = 'urn:ogc:def:datum:EPSG::1152';
7876
7877
    /**
7878
     * World Geodetic System 1984 (G873)
7879
     * Type: Dynamic geodetic
7880
     * Extent: World.
7881
     * Defined through coordinates of 13 GPS tracking stations adjusted to a subset of ITRF94 stations at epoch 1997.0.
7882
     * The reference epoch for the adjustment was 1994.0 and the coordinates were propagated to 1997.0 using the
7883
     * NNR-NUVEL-1A plate motion model.
7884
     * Replaces World Geodetic System 1984 (G730) from 1997-01-29. Replaced by World Geodetic System 1984 (G1150) from
7885
     * 2002-01-20.
7886
     */
7887
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G873 = 'urn:ogc:def:datum:EPSG::1153';
7888
7889
    /**
7890
     * World Geodetic System 1984 (Transit)
7891
     * Type: Dynamic geodetic
7892
     * Extent: World.
7893
     * Defined through coordinates of 5 GPS tracking stations in the Transit doppler positioning NSWC 9Z-2 reference
7894
     * frame transformed to be aligned to the BIH Conventional Terrestrial Reference Frame (BTS) at epoch 1984.0.
7895
     * 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
7896
     * meridian rotated westward by 0.814" to be aligned to the BTS at epoch 1984.0. Replaced by World Geodetic System
7897
     * 1984 (G730) from 1994-06-29.
7898
     */
7899
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_TRANSIT = 'urn:ogc:def:datum:EPSG::1166';
7900
7901
    /**
7902
     * World Geodetic System 1984 ensemble
7903
     * Type: Ensemble
7904
     * Extent: World.
7905
     * EPSG::6326 has been the then current realization. No distinction is made between the original and subsequent
7906
     * (G730, G873, G1150, G1674, G1762 and G2139) WGS 84 frames. Since 1997, WGS 84 has been maintained within 10cm of
7907
     * the then current ITRF.
7908
     */
7909
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_ENSEMBLE = 'urn:ogc:def:datum:EPSG::6326';
7910
7911
    /**
7912
     * Xian 1980
7913
     * Type: Geodetic
7914
     * Extent: China - onshore.
7915
     * Xian observatory.
7916
     */
7917
    public const EPSG_XIAN_1980 = 'urn:ogc:def:datum:EPSG::6610';
7918
7919
    /**
7920
     * Yacare
7921
     * Type: Geodetic
7922
     * Extent: Uruguay - onshore.
7923
     * Fundamental point: Yacare. Latitude: 30°35'53.68"S, longitude: 57°25'01.30"W (of Greenwich).
7924
     */
7925
    public const EPSG_YACARE = 'urn:ogc:def:datum:EPSG::6309';
7926
7927
    /**
7928
     * Yellow Sea 1956
7929
     * Type: Vertical
7930
     * Extent: China - onshore.
7931
     * 2 years tide readings at Qingdao.
7932
     * Replaced by Yellow Sea 1985 datum.
7933
     */
7934
    public const EPSG_YELLOW_SEA_1956 = 'urn:ogc:def:datum:EPSG::5104';
7935
7936
    /**
7937
     * Yellow Sea 1985
7938
     * Type: Vertical
7939
     * Extent: China - onshore.
7940
     * 20 years tide readings at Qingdao.
7941
     * Replaces Yellow Sea 1956 datum.
7942
     */
7943
    public const EPSG_YELLOW_SEA_1985 = 'urn:ogc:def:datum:EPSG::5137';
7944
7945
    /**
7946
     * Yemen National Geodetic Network 1996
7947
     * Type: Geodetic
7948
     * Extent: Yemen - onshore and offshore.
7949
     * Sana'a IGN reference marker.
7950
     */
7951
    public const EPSG_YEMEN_NATIONAL_GEODETIC_NETWORK_1996 = 'urn:ogc:def:datum:EPSG::6163';
7952
7953
    /**
7954
     * Yoff
7955
     * Type: Geodetic
7956
     * Extent: Senegal - onshore and offshore.
7957
     * Fundamental point: Yoff. Latitude: 14°44'41.62"N, longitude: 17°29'07.02"W (of Greenwich).
7958
     */
7959
    public const EPSG_YOFF = 'urn:ogc:def:datum:EPSG::6310';
7960
7961
    /**
7962
     * Zanderij
7963
     * Type: Geodetic
7964
     * Extent: Suriname - onshore and offshore.
7965
     */
7966
    public const EPSG_ZANDERIJ = 'urn:ogc:def:datum:EPSG::6311';
7967
7968
    /**
7969
     * Fk89
7970
     * Type: Geodetic
7971
     * Extent: Faroe Islands - onshore.
7972
     * Replaces FD54 for cadastre.
7973
     */
7974
    public const EPSG_FK89 = 'urn:ogc:def:datum:EPSG::6753';
7975
7976
    /**
7977
     * @deprecated use EPSG_LUXEMBOURG_REFERENCE_FRAME instead
7978
     */
7979
    public const EPSG_LUXEMBOURG_1930 = 'urn:ogc:def:datum:EPSG::6181';
7980
7981
    /**
7982
     * @deprecated use EPSG_NIVELLEMENT_GENERAL_DU_LUXEMBOURG_1995 instead
7983
     */
7984
    public const EPSG_NIVELLEMENT_GENERAL_DU_LUXEMBOURG = 'urn:ogc:def:datum:EPSG::5172';
7985
7986
    /**
7987
     * @deprecated use EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A_EPOCH_2010 instead
7988
     */
7989
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A = 'urn:ogc:def:datum:EPSG::1256';
7990
7991
    /**
7992
     * @deprecated use EPSG_INDONESIAN_GEOID_2020_VERSION_1 instead
7993
     */
7994
    public const EPSG_INDONESIAN_GEOID_2020 = 'urn:ogc:def:datum:EPSG::1294';
7995
7996
    /**
7997
     * @deprecated use EPSG_LATVIAN_GEODETIC_COORDINATE_SYSTEM_1992 instead
7998
     */
7999
    public const EPSG_LATVIA_1992 = 'urn:ogc:def:datum:EPSG::6661';
8000
8001
    protected static array $sridData = [
8002
        'urn:ogc:def:datum:EPSG::1024' => [
8003
            'name' => 'Hungarian Datum 1909',
8004
            'type' => 'geodetic',
8005
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
8006
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8007
            'conventional_rs' => null,
8008
            'frame_reference_epoch' => null,
8009
        ],
8010
        'urn:ogc:def:datum:EPSG::1025' => [
8011
            'name' => 'Taiwan Datum 1967',
8012
            'type' => 'geodetic',
8013
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7050',
8014
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8015
            'conventional_rs' => null,
8016
            'frame_reference_epoch' => null,
8017
        ],
8018
        'urn:ogc:def:datum:EPSG::1026' => [
8019
            'name' => 'Taiwan Datum 1997',
8020
            'type' => 'geodetic',
8021
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8022
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8023
            'conventional_rs' => null,
8024
            'frame_reference_epoch' => null,
8025
        ],
8026
        'urn:ogc:def:datum:EPSG::1027' => [
8027
            'name' => 'EGM2008 geoid',
8028
            'type' => 'vertical',
8029
            'ellipsoid' => null,
8030
            'prime_meridian' => null,
8031
            'conventional_rs' => null,
8032
            'frame_reference_epoch' => null,
8033
        ],
8034
        'urn:ogc:def:datum:EPSG::1028' => [
8035
            'name' => 'Fao 1979',
8036
            'type' => 'vertical',
8037
            'ellipsoid' => null,
8038
            'prime_meridian' => null,
8039
            'conventional_rs' => null,
8040
            'frame_reference_epoch' => null,
8041
        ],
8042
        'urn:ogc:def:datum:EPSG::1029' => [
8043
            'name' => 'Iraqi Geospatial Reference System',
8044
            'type' => 'geodetic',
8045
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8046
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8047
            'conventional_rs' => null,
8048
            'frame_reference_epoch' => null,
8049
        ],
8050
        'urn:ogc:def:datum:EPSG::1030' => [
8051
            'name' => 'N2000',
8052
            'type' => 'vertical',
8053
            'ellipsoid' => null,
8054
            'prime_meridian' => null,
8055
            'conventional_rs' => null,
8056
            'frame_reference_epoch' => null,
8057
        ],
8058
        'urn:ogc:def:datum:EPSG::1031' => [
8059
            'name' => 'MGI 1901',
8060
            'type' => 'geodetic',
8061
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
8062
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8063
            'conventional_rs' => null,
8064
            'frame_reference_epoch' => null,
8065
        ],
8066
        'urn:ogc:def:datum:EPSG::1032' => [
8067
            'name' => 'MOLDREF99',
8068
            'type' => 'geodetic',
8069
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8070
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8071
            'conventional_rs' => null,
8072
            'frame_reference_epoch' => null,
8073
        ],
8074
        'urn:ogc:def:datum:EPSG::1033' => [
8075
            'name' => 'Reseau Geodesique de la RDC 2005',
8076
            'type' => 'geodetic',
8077
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8078
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8079
            'conventional_rs' => null,
8080
            'frame_reference_epoch' => null,
8081
        ],
8082
        'urn:ogc:def:datum:EPSG::1034' => [
8083
            'name' => 'Serbian Reference Network 1998',
8084
            'type' => 'geodetic',
8085
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8086
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8087
            'conventional_rs' => null,
8088
            'frame_reference_epoch' => null,
8089
        ],
8090
        'urn:ogc:def:datum:EPSG::1035' => [
8091
            'name' => 'Red Geodesica de Canarias 1995',
8092
            'type' => 'geodetic',
8093
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8094
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8095
            'conventional_rs' => null,
8096
            'frame_reference_epoch' => null,
8097
        ],
8098
        'urn:ogc:def:datum:EPSG::1036' => [
8099
            'name' => 'Reseau Geodesique de Mayotte 2004',
8100
            'type' => 'geodetic',
8101
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8102
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8103
            'conventional_rs' => null,
8104
            'frame_reference_epoch' => null,
8105
        ],
8106
        'urn:ogc:def:datum:EPSG::1037' => [
8107
            'name' => 'Cadastre 1997',
8108
            'type' => 'geodetic',
8109
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
8110
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8111
            'conventional_rs' => null,
8112
            'frame_reference_epoch' => null,
8113
        ],
8114
        'urn:ogc:def:datum:EPSG::1038' => [
8115
            'name' => 'Reseau Geodesique de Saint Pierre et Miquelon 2006',
8116
            'type' => 'geodetic',
8117
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8118
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8119
            'conventional_rs' => null,
8120
            'frame_reference_epoch' => null,
8121
        ],
8122
        'urn:ogc:def:datum:EPSG::1039' => [
8123
            'name' => 'New Zealand Vertical Datum 2009',
8124
            'type' => 'vertical',
8125
            'ellipsoid' => null,
8126
            'prime_meridian' => null,
8127
            'conventional_rs' => null,
8128
            'frame_reference_epoch' => null,
8129
        ],
8130
        'urn:ogc:def:datum:EPSG::1040' => [
8131
            'name' => 'Dunedin-Bluff 1960',
8132
            'type' => 'vertical',
8133
            'ellipsoid' => null,
8134
            'prime_meridian' => null,
8135
            'conventional_rs' => null,
8136
            'frame_reference_epoch' => null,
8137
        ],
8138
        'urn:ogc:def:datum:EPSG::1041' => [
8139
            'name' => 'Autonomous Regions of Portugal 2008',
8140
            'type' => 'geodetic',
8141
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8142
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8143
            'conventional_rs' => null,
8144
            'frame_reference_epoch' => null,
8145
        ],
8146
        'urn:ogc:def:datum:EPSG::1042' => [
8147
            'name' => 'Mexico ITRF92',
8148
            'type' => 'geodetic',
8149
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8150
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8151
            'conventional_rs' => null,
8152
            'frame_reference_epoch' => null,
8153
        ],
8154
        'urn:ogc:def:datum:EPSG::1043' => [
8155
            'name' => 'China 2000',
8156
            'type' => 'geodetic',
8157
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::1024',
8158
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8159
            'conventional_rs' => null,
8160
            'frame_reference_epoch' => null,
8161
        ],
8162
        'urn:ogc:def:datum:EPSG::1044' => [
8163
            'name' => 'Sao Tome',
8164
            'type' => 'geodetic',
8165
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
8166
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8167
            'conventional_rs' => null,
8168
            'frame_reference_epoch' => null,
8169
        ],
8170
        'urn:ogc:def:datum:EPSG::1045' => [
8171
            'name' => 'New Beijing',
8172
            'type' => 'geodetic',
8173
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
8174
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8175
            'conventional_rs' => null,
8176
            'frame_reference_epoch' => null,
8177
        ],
8178
        'urn:ogc:def:datum:EPSG::1046' => [
8179
            'name' => 'Principe',
8180
            'type' => 'geodetic',
8181
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
8182
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8183
            'conventional_rs' => null,
8184
            'frame_reference_epoch' => null,
8185
        ],
8186
        'urn:ogc:def:datum:EPSG::1047' => [
8187
            'name' => 'Reseau de Reference des Antilles Francaises 1991',
8188
            'type' => 'geodetic',
8189
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8190
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8191
            'conventional_rs' => null,
8192
            'frame_reference_epoch' => null,
8193
        ],
8194
        'urn:ogc:def:datum:EPSG::1048' => [
8195
            'name' => 'Tokyo 1892',
8196
            'type' => 'geodetic',
8197
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
8198
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8199
            'conventional_rs' => null,
8200
            'frame_reference_epoch' => null,
8201
        ],
8202
        'urn:ogc:def:datum:EPSG::1049' => [
8203
            'name' => 'Incheon',
8204
            'type' => 'vertical',
8205
            'ellipsoid' => null,
8206
            'prime_meridian' => null,
8207
            'conventional_rs' => null,
8208
            'frame_reference_epoch' => null,
8209
        ],
8210
        'urn:ogc:def:datum:EPSG::1050' => [
8211
            'name' => 'Trieste',
8212
            'type' => 'vertical',
8213
            'ellipsoid' => null,
8214
            'prime_meridian' => null,
8215
            'conventional_rs' => null,
8216
            'frame_reference_epoch' => null,
8217
        ],
8218
        'urn:ogc:def:datum:EPSG::1051' => [
8219
            'name' => 'Genoa 1942',
8220
            'type' => 'vertical',
8221
            'ellipsoid' => null,
8222
            'prime_meridian' => null,
8223
            'conventional_rs' => null,
8224
            'frame_reference_epoch' => null,
8225
        ],
8226
        'urn:ogc:def:datum:EPSG::1052' => [
8227
            'name' => 'System of the Unified Trigonometrical Cadastral Network/05',
8228
            'type' => 'geodetic',
8229
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
8230
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8231
            'conventional_rs' => null,
8232
            'frame_reference_epoch' => null,
8233
        ],
8234
        'urn:ogc:def:datum:EPSG::1053' => [
8235
            'name' => 'Sri Lanka Datum 1999',
8236
            'type' => 'geodetic',
8237
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
8238
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8239
            'conventional_rs' => null,
8240
            'frame_reference_epoch' => null,
8241
        ],
8242
        'urn:ogc:def:datum:EPSG::1054' => [
8243
            'name' => 'Sri Lanka Vertical Datum',
8244
            'type' => 'vertical',
8245
            'ellipsoid' => null,
8246
            'prime_meridian' => null,
8247
            'conventional_rs' => null,
8248
            'frame_reference_epoch' => null,
8249
        ],
8250
        'urn:ogc:def:datum:EPSG::1055' => [
8251
            'name' => 'System of the Unified Trigonometrical Cadastral Network/05 (Ferro)',
8252
            'type' => 'geodetic',
8253
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
8254
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909',
8255
            'conventional_rs' => null,
8256
            'frame_reference_epoch' => null,
8257
        ],
8258
        'urn:ogc:def:datum:EPSG::1056' => [
8259
            'name' => 'Geocentric Datum Brunei Darussalam 2009',
8260
            'type' => 'geodetic',
8261
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8262
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8263
            'conventional_rs' => null,
8264
            'frame_reference_epoch' => null,
8265
        ],
8266
        'urn:ogc:def:datum:EPSG::1057' => [
8267
            'name' => 'Turkish National Reference Frame',
8268
            'type' => 'geodetic',
8269
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8270
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8271
            'conventional_rs' => null,
8272
            'frame_reference_epoch' => null,
8273
        ],
8274
        'urn:ogc:def:datum:EPSG::1058' => [
8275
            'name' => 'Bhutan National Geodetic Datum',
8276
            'type' => 'geodetic',
8277
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8278
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8279
            'conventional_rs' => null,
8280
            'frame_reference_epoch' => null,
8281
        ],
8282
        'urn:ogc:def:datum:EPSG::1059' => [
8283
            'name' => 'Faroe Islands Vertical Reference 2009',
8284
            'type' => 'vertical',
8285
            'ellipsoid' => null,
8286
            'prime_meridian' => null,
8287
            'conventional_rs' => null,
8288
            'frame_reference_epoch' => null,
8289
        ],
8290
        'urn:ogc:def:datum:EPSG::1060' => [
8291
            'name' => 'Islands Net 2004',
8292
            'type' => 'geodetic',
8293
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8294
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8295
            'conventional_rs' => null,
8296
            'frame_reference_epoch' => null,
8297
        ],
8298
        'urn:ogc:def:datum:EPSG::1061' => [
8299
            'name' => 'International Terrestrial Reference Frame 2008',
8300
            'type' => 'dynamic geodetic',
8301
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8302
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8303
            'conventional_rs' => null,
8304
            'frame_reference_epoch' => 2005.0,
8305
        ],
8306
        'urn:ogc:def:datum:EPSG::1062' => [
8307
            'name' => 'Posiciones Geodesicas Argentinas 2007',
8308
            'type' => 'geodetic',
8309
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8310
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8311
            'conventional_rs' => null,
8312
            'frame_reference_epoch' => null,
8313
        ],
8314
        'urn:ogc:def:datum:EPSG::1063' => [
8315
            'name' => 'Marco Geodesico Nacional de Bolivia',
8316
            'type' => 'geodetic',
8317
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8318
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8319
            'conventional_rs' => null,
8320
            'frame_reference_epoch' => null,
8321
        ],
8322
        'urn:ogc:def:datum:EPSG::1064' => [
8323
            'name' => 'SIRGAS-Chile realization 1 epoch 2002',
8324
            'type' => 'geodetic',
8325
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8326
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8327
            'conventional_rs' => null,
8328
            'frame_reference_epoch' => null,
8329
        ],
8330
        'urn:ogc:def:datum:EPSG::1065' => [
8331
            'name' => 'Costa Rica 2005',
8332
            'type' => 'geodetic',
8333
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8334
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8335
            'conventional_rs' => null,
8336
            'frame_reference_epoch' => null,
8337
        ],
8338
        'urn:ogc:def:datum:EPSG::1066' => [
8339
            'name' => 'Sistema Geodesico Nacional de Panama MACARIO SOLIS',
8340
            'type' => 'geodetic',
8341
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8342
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8343
            'conventional_rs' => null,
8344
            'frame_reference_epoch' => null,
8345
        ],
8346
        'urn:ogc:def:datum:EPSG::1067' => [
8347
            'name' => 'Peru96',
8348
            'type' => 'geodetic',
8349
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8350
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8351
            'conventional_rs' => null,
8352
            'frame_reference_epoch' => null,
8353
        ],
8354
        'urn:ogc:def:datum:EPSG::1068' => [
8355
            'name' => 'SIRGAS-ROU98',
8356
            'type' => 'geodetic',
8357
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8358
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8359
            'conventional_rs' => null,
8360
            'frame_reference_epoch' => null,
8361
        ],
8362
        'urn:ogc:def:datum:EPSG::1069' => [
8363
            'name' => 'SIRGAS_ES2007.8',
8364
            'type' => 'geodetic',
8365
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8366
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8367
            'conventional_rs' => null,
8368
            'frame_reference_epoch' => null,
8369
        ],
8370
        'urn:ogc:def:datum:EPSG::1070' => [
8371
            'name' => 'Ocotepeque 1935',
8372
            'type' => 'geodetic',
8373
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
8374
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8375
            'conventional_rs' => null,
8376
            'frame_reference_epoch' => null,
8377
        ],
8378
        'urn:ogc:def:datum:EPSG::1071' => [
8379
            'name' => 'Sibun Gorge 1922',
8380
            'type' => 'geodetic',
8381
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007',
8382
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8383
            'conventional_rs' => null,
8384
            'frame_reference_epoch' => null,
8385
        ],
8386
        'urn:ogc:def:datum:EPSG::1072' => [
8387
            'name' => 'Panama-Colon 1911',
8388
            'type' => 'geodetic',
8389
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
8390
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8391
            'conventional_rs' => null,
8392
            'frame_reference_epoch' => null,
8393
        ],
8394
        'urn:ogc:def:datum:EPSG::1073' => [
8395
            'name' => 'Reseau Geodesique des Antilles Francaises 2009',
8396
            'type' => 'geodetic',
8397
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8398
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8399
            'conventional_rs' => null,
8400
            'frame_reference_epoch' => null,
8401
        ],
8402
        'urn:ogc:def:datum:EPSG::1074' => [
8403
            'name' => 'Corrego Alegre 1961',
8404
            'type' => 'geodetic',
8405
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
8406
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8407
            'conventional_rs' => null,
8408
            'frame_reference_epoch' => null,
8409
        ],
8410
        'urn:ogc:def:datum:EPSG::1075' => [
8411
            'name' => 'South American Datum 1969(96)',
8412
            'type' => 'geodetic',
8413
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7050',
8414
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8415
            'conventional_rs' => null,
8416
            'frame_reference_epoch' => null,
8417
        ],
8418
        'urn:ogc:def:datum:EPSG::1076' => [
8419
            'name' => 'Papua New Guinea Geodetic Datum 1994',
8420
            'type' => 'geodetic',
8421
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8422
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8423
            'conventional_rs' => null,
8424
            'frame_reference_epoch' => null,
8425
        ],
8426
        'urn:ogc:def:datum:EPSG::1077' => [
8427
            'name' => 'Ukraine 2000',
8428
            'type' => 'geodetic',
8429
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
8430
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8431
            'conventional_rs' => null,
8432
            'frame_reference_epoch' => null,
8433
        ],
8434
        'urn:ogc:def:datum:EPSG::1078' => [
8435
            'name' => 'Fehmarnbelt Datum 2010',
8436
            'type' => 'geodetic',
8437
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8438
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8439
            'conventional_rs' => null,
8440
            'frame_reference_epoch' => null,
8441
        ],
8442
        'urn:ogc:def:datum:EPSG::1079' => [
8443
            'name' => 'Fehmarnbelt Vertical Reference 2010',
8444
            'type' => 'vertical',
8445
            'ellipsoid' => null,
8446
            'prime_meridian' => null,
8447
            'conventional_rs' => null,
8448
            'frame_reference_epoch' => null,
8449
        ],
8450
        'urn:ogc:def:datum:EPSG::1080' => [
8451
            'name' => 'Lowest Astronomical Tide',
8452
            'type' => 'vertical',
8453
            'ellipsoid' => null,
8454
            'prime_meridian' => null,
8455
            'conventional_rs' => null,
8456
            'frame_reference_epoch' => null,
8457
        ],
8458
        'urn:ogc:def:datum:EPSG::1081' => [
8459
            'name' => 'Deutsche Bahn Reference System',
8460
            'type' => 'geodetic',
8461
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
8462
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8463
            'conventional_rs' => null,
8464
            'frame_reference_epoch' => null,
8465
        ],
8466
        'urn:ogc:def:datum:EPSG::1082' => [
8467
            'name' => 'Highest Astronomical Tide',
8468
            'type' => 'vertical',
8469
            'ellipsoid' => null,
8470
            'prime_meridian' => null,
8471
            'conventional_rs' => null,
8472
            'frame_reference_epoch' => null,
8473
        ],
8474
        'urn:ogc:def:datum:EPSG::1083' => [
8475
            'name' => 'Lower Low Water Large Tide',
8476
            'type' => 'vertical',
8477
            'ellipsoid' => null,
8478
            'prime_meridian' => null,
8479
            'conventional_rs' => null,
8480
            'frame_reference_epoch' => null,
8481
        ],
8482
        'urn:ogc:def:datum:EPSG::1084' => [
8483
            'name' => 'Higher High Water Large Tide',
8484
            'type' => 'vertical',
8485
            'ellipsoid' => null,
8486
            'prime_meridian' => null,
8487
            'conventional_rs' => null,
8488
            'frame_reference_epoch' => null,
8489
        ],
8490
        'urn:ogc:def:datum:EPSG::1085' => [
8491
            'name' => 'Indian Spring Low Water',
8492
            'type' => 'vertical',
8493
            'ellipsoid' => null,
8494
            'prime_meridian' => null,
8495
            'conventional_rs' => null,
8496
            'frame_reference_epoch' => null,
8497
        ],
8498
        'urn:ogc:def:datum:EPSG::1086' => [
8499
            'name' => 'Mean Lower Low Water Spring Tides',
8500
            'type' => 'vertical',
8501
            'ellipsoid' => null,
8502
            'prime_meridian' => null,
8503
            'conventional_rs' => null,
8504
            'frame_reference_epoch' => null,
8505
        ],
8506
        'urn:ogc:def:datum:EPSG::1087' => [
8507
            'name' => 'Mean Low Water Spring Tides',
8508
            'type' => 'vertical',
8509
            'ellipsoid' => null,
8510
            'prime_meridian' => null,
8511
            'conventional_rs' => null,
8512
            'frame_reference_epoch' => null,
8513
        ],
8514
        'urn:ogc:def:datum:EPSG::1088' => [
8515
            'name' => 'Mean High Water Spring Tides',
8516
            'type' => 'vertical',
8517
            'ellipsoid' => null,
8518
            'prime_meridian' => null,
8519
            'conventional_rs' => null,
8520
            'frame_reference_epoch' => null,
8521
        ],
8522
        'urn:ogc:def:datum:EPSG::1089' => [
8523
            'name' => 'Mean Lower Low Water',
8524
            'type' => 'vertical',
8525
            'ellipsoid' => null,
8526
            'prime_meridian' => null,
8527
            'conventional_rs' => null,
8528
            'frame_reference_epoch' => null,
8529
        ],
8530
        'urn:ogc:def:datum:EPSG::1090' => [
8531
            'name' => 'Mean Higher High Water',
8532
            'type' => 'vertical',
8533
            'ellipsoid' => null,
8534
            'prime_meridian' => null,
8535
            'conventional_rs' => null,
8536
            'frame_reference_epoch' => null,
8537
        ],
8538
        'urn:ogc:def:datum:EPSG::1091' => [
8539
            'name' => 'Mean Low Water',
8540
            'type' => 'vertical',
8541
            'ellipsoid' => null,
8542
            'prime_meridian' => null,
8543
            'conventional_rs' => null,
8544
            'frame_reference_epoch' => null,
8545
        ],
8546
        'urn:ogc:def:datum:EPSG::1092' => [
8547
            'name' => 'Mean High Water',
8548
            'type' => 'vertical',
8549
            'ellipsoid' => null,
8550
            'prime_meridian' => null,
8551
            'conventional_rs' => null,
8552
            'frame_reference_epoch' => null,
8553
        ],
8554
        'urn:ogc:def:datum:EPSG::1093' => [
8555
            'name' => 'Low Water',
8556
            'type' => 'vertical',
8557
            'ellipsoid' => null,
8558
            'prime_meridian' => null,
8559
            'conventional_rs' => null,
8560
            'frame_reference_epoch' => null,
8561
        ],
8562
        'urn:ogc:def:datum:EPSG::1094' => [
8563
            'name' => 'High Water',
8564
            'type' => 'vertical',
8565
            'ellipsoid' => null,
8566
            'prime_meridian' => null,
8567
            'conventional_rs' => null,
8568
            'frame_reference_epoch' => null,
8569
        ],
8570
        'urn:ogc:def:datum:EPSG::1095' => [
8571
            'name' => 'Tonga Geodetic Datum 2005',
8572
            'type' => 'geodetic',
8573
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8574
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8575
            'conventional_rs' => null,
8576
            'frame_reference_epoch' => null,
8577
        ],
8578
        'urn:ogc:def:datum:EPSG::1096' => [
8579
            'name' => 'Norway Normal Null 2000',
8580
            'type' => 'vertical',
8581
            'ellipsoid' => null,
8582
            'prime_meridian' => null,
8583
            'conventional_rs' => null,
8584
            'frame_reference_epoch' => 2000.0,
8585
        ],
8586
        'urn:ogc:def:datum:EPSG::1097' => [
8587
            'name' => 'Grand Cayman Vertical Datum 1954',
8588
            'type' => 'vertical',
8589
            'ellipsoid' => null,
8590
            'prime_meridian' => null,
8591
            'conventional_rs' => null,
8592
            'frame_reference_epoch' => null,
8593
        ],
8594
        'urn:ogc:def:datum:EPSG::1098' => [
8595
            'name' => 'Little Cayman Vertical Datum 1961',
8596
            'type' => 'vertical',
8597
            'ellipsoid' => null,
8598
            'prime_meridian' => null,
8599
            'conventional_rs' => null,
8600
            'frame_reference_epoch' => null,
8601
        ],
8602
        'urn:ogc:def:datum:EPSG::1099' => [
8603
            'name' => 'Cayman Brac Vertical Datum 1961',
8604
            'type' => 'vertical',
8605
            'ellipsoid' => null,
8606
            'prime_meridian' => null,
8607
            'conventional_rs' => null,
8608
            'frame_reference_epoch' => null,
8609
        ],
8610
        'urn:ogc:def:datum:EPSG::1100' => [
8611
            'name' => 'Cayman Islands Geodetic Datum 2011',
8612
            'type' => 'geodetic',
8613
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8614
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8615
            'conventional_rs' => null,
8616
            'frame_reference_epoch' => null,
8617
        ],
8618
        'urn:ogc:def:datum:EPSG::1101' => [
8619
            'name' => 'Cais da Pontinha - Funchal',
8620
            'type' => 'vertical',
8621
            'ellipsoid' => null,
8622
            'prime_meridian' => null,
8623
            'conventional_rs' => null,
8624
            'frame_reference_epoch' => null,
8625
        ],
8626
        'urn:ogc:def:datum:EPSG::1102' => [
8627
            'name' => 'Cais da Vila - Porto Santo',
8628
            'type' => 'vertical',
8629
            'ellipsoid' => null,
8630
            'prime_meridian' => null,
8631
            'conventional_rs' => null,
8632
            'frame_reference_epoch' => null,
8633
        ],
8634
        'urn:ogc:def:datum:EPSG::1103' => [
8635
            'name' => 'Cais das Velas',
8636
            'type' => 'vertical',
8637
            'ellipsoid' => null,
8638
            'prime_meridian' => null,
8639
            'conventional_rs' => null,
8640
            'frame_reference_epoch' => null,
8641
        ],
8642
        'urn:ogc:def:datum:EPSG::1104' => [
8643
            'name' => 'Horta',
8644
            'type' => 'vertical',
8645
            'ellipsoid' => null,
8646
            'prime_meridian' => null,
8647
            'conventional_rs' => null,
8648
            'frame_reference_epoch' => null,
8649
        ],
8650
        'urn:ogc:def:datum:EPSG::1105' => [
8651
            'name' => 'Cais da Madalena',
8652
            'type' => 'vertical',
8653
            'ellipsoid' => null,
8654
            'prime_meridian' => null,
8655
            'conventional_rs' => null,
8656
            'frame_reference_epoch' => null,
8657
        ],
8658
        'urn:ogc:def:datum:EPSG::1106' => [
8659
            'name' => 'Santa Cruz da Graciosa',
8660
            'type' => 'vertical',
8661
            'ellipsoid' => null,
8662
            'prime_meridian' => null,
8663
            'conventional_rs' => null,
8664
            'frame_reference_epoch' => null,
8665
        ],
8666
        'urn:ogc:def:datum:EPSG::1107' => [
8667
            'name' => 'Cais da Figueirinha - Angra do Heroismo',
8668
            'type' => 'vertical',
8669
            'ellipsoid' => null,
8670
            'prime_meridian' => null,
8671
            'conventional_rs' => null,
8672
            'frame_reference_epoch' => null,
8673
        ],
8674
        'urn:ogc:def:datum:EPSG::1108' => [
8675
            'name' => 'Santa Cruz das Flores',
8676
            'type' => 'vertical',
8677
            'ellipsoid' => null,
8678
            'prime_meridian' => null,
8679
            'conventional_rs' => null,
8680
            'frame_reference_epoch' => null,
8681
        ],
8682
        'urn:ogc:def:datum:EPSG::1109' => [
8683
            'name' => 'Cais da Vila do Porto',
8684
            'type' => 'vertical',
8685
            'ellipsoid' => null,
8686
            'prime_meridian' => null,
8687
            'conventional_rs' => null,
8688
            'frame_reference_epoch' => null,
8689
        ],
8690
        'urn:ogc:def:datum:EPSG::1110' => [
8691
            'name' => 'Ponta Delgada',
8692
            'type' => 'vertical',
8693
            'ellipsoid' => null,
8694
            'prime_meridian' => null,
8695
            'conventional_rs' => null,
8696
            'frame_reference_epoch' => null,
8697
        ],
8698
        'urn:ogc:def:datum:EPSG::1111' => [
8699
            'name' => 'Nepal 1981',
8700
            'type' => 'geodetic',
8701
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
8702
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8703
            'conventional_rs' => null,
8704
            'frame_reference_epoch' => null,
8705
        ],
8706
        'urn:ogc:def:datum:EPSG::1112' => [
8707
            'name' => 'Cyprus Geodetic Reference System 1993',
8708
            'type' => 'geodetic',
8709
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8710
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8711
            'conventional_rs' => null,
8712
            'frame_reference_epoch' => null,
8713
        ],
8714
        'urn:ogc:def:datum:EPSG::1113' => [
8715
            'name' => 'Reseau Geodesique des Terres Australes et Antarctiques Francaises 2007',
8716
            'type' => 'geodetic',
8717
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8718
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8719
            'conventional_rs' => null,
8720
            'frame_reference_epoch' => null,
8721
        ],
8722
        'urn:ogc:def:datum:EPSG::1114' => [
8723
            'name' => 'Israeli Geodetic Datum 2005',
8724
            'type' => 'geodetic',
8725
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8726
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8727
            'conventional_rs' => null,
8728
            'frame_reference_epoch' => null,
8729
        ],
8730
        'urn:ogc:def:datum:EPSG::1115' => [
8731
            'name' => 'Israeli Geodetic Datum 2005(2012)',
8732
            'type' => 'geodetic',
8733
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8734
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8735
            'conventional_rs' => null,
8736
            'frame_reference_epoch' => null,
8737
        ],
8738
        'urn:ogc:def:datum:EPSG::1116' => [
8739
            'name' => 'NAD83 (National Spatial Reference System 2011)',
8740
            'type' => 'geodetic',
8741
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8742
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8743
            'conventional_rs' => null,
8744
            'frame_reference_epoch' => null,
8745
        ],
8746
        'urn:ogc:def:datum:EPSG::1117' => [
8747
            'name' => 'NAD83 (National Spatial Reference System PA11)',
8748
            'type' => 'geodetic',
8749
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8750
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8751
            'conventional_rs' => null,
8752
            'frame_reference_epoch' => null,
8753
        ],
8754
        'urn:ogc:def:datum:EPSG::1118' => [
8755
            'name' => 'NAD83 (National Spatial Reference System MA11)',
8756
            'type' => 'geodetic',
8757
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8758
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8759
            'conventional_rs' => null,
8760
            'frame_reference_epoch' => null,
8761
        ],
8762
        'urn:ogc:def:datum:EPSG::1119' => [
8763
            'name' => 'Northern Marianas Vertical Datum of 2003',
8764
            'type' => 'vertical',
8765
            'ellipsoid' => null,
8766
            'prime_meridian' => null,
8767
            'conventional_rs' => null,
8768
            'frame_reference_epoch' => null,
8769
        ],
8770
        'urn:ogc:def:datum:EPSG::1120' => [
8771
            'name' => 'Mexico ITRF2008',
8772
            'type' => 'geodetic',
8773
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8774
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8775
            'conventional_rs' => null,
8776
            'frame_reference_epoch' => null,
8777
        ],
8778
        'urn:ogc:def:datum:EPSG::1121' => [
8779
            'name' => 'Tutuila Vertical Datum of 1962',
8780
            'type' => 'vertical',
8781
            'ellipsoid' => null,
8782
            'prime_meridian' => null,
8783
            'conventional_rs' => null,
8784
            'frame_reference_epoch' => null,
8785
        ],
8786
        'urn:ogc:def:datum:EPSG::1122' => [
8787
            'name' => 'Guam Vertical Datum of 1963',
8788
            'type' => 'vertical',
8789
            'ellipsoid' => null,
8790
            'prime_meridian' => null,
8791
            'conventional_rs' => null,
8792
            'frame_reference_epoch' => null,
8793
        ],
8794
        'urn:ogc:def:datum:EPSG::1123' => [
8795
            'name' => 'Puerto Rico Vertical Datum of 2002',
8796
            'type' => 'vertical',
8797
            'ellipsoid' => null,
8798
            'prime_meridian' => null,
8799
            'conventional_rs' => null,
8800
            'frame_reference_epoch' => null,
8801
        ],
8802
        'urn:ogc:def:datum:EPSG::1124' => [
8803
            'name' => 'Virgin Islands Vertical Datum of 2009',
8804
            'type' => 'vertical',
8805
            'ellipsoid' => null,
8806
            'prime_meridian' => null,
8807
            'conventional_rs' => null,
8808
            'frame_reference_epoch' => null,
8809
        ],
8810
        'urn:ogc:def:datum:EPSG::1125' => [
8811
            'name' => 'American Samoa Vertical Datum of 2002',
8812
            'type' => 'vertical',
8813
            'ellipsoid' => null,
8814
            'prime_meridian' => null,
8815
            'conventional_rs' => null,
8816
            'frame_reference_epoch' => null,
8817
        ],
8818
        'urn:ogc:def:datum:EPSG::1126' => [
8819
            'name' => 'Guam Vertical Datum of 2004',
8820
            'type' => 'vertical',
8821
            'ellipsoid' => null,
8822
            'prime_meridian' => null,
8823
            'conventional_rs' => null,
8824
            'frame_reference_epoch' => null,
8825
        ],
8826
        'urn:ogc:def:datum:EPSG::1127' => [
8827
            'name' => 'Canadian Geodetic Vertical Datum of 2013 (CGG2013)',
8828
            'type' => 'vertical',
8829
            'ellipsoid' => null,
8830
            'prime_meridian' => null,
8831
            'conventional_rs' => null,
8832
            'frame_reference_epoch' => null,
8833
        ],
8834
        'urn:ogc:def:datum:EPSG::1128' => [
8835
            'name' => 'Japanese Geodetic Datum 2011',
8836
            'type' => 'geodetic',
8837
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8838
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8839
            'conventional_rs' => null,
8840
            'frame_reference_epoch' => null,
8841
        ],
8842
        'urn:ogc:def:datum:EPSG::1129' => [
8843
            'name' => 'Japanese Standard Levelling Datum 1972',
8844
            'type' => 'vertical',
8845
            'ellipsoid' => null,
8846
            'prime_meridian' => null,
8847
            'conventional_rs' => null,
8848
            'frame_reference_epoch' => null,
8849
        ],
8850
        'urn:ogc:def:datum:EPSG::1130' => [
8851
            'name' => 'Japanese Geodetic Datum 2000 (vertical)',
8852
            'type' => 'vertical',
8853
            'ellipsoid' => null,
8854
            'prime_meridian' => null,
8855
            'conventional_rs' => null,
8856
            'frame_reference_epoch' => null,
8857
        ],
8858
        'urn:ogc:def:datum:EPSG::1131' => [
8859
            'name' => 'Japanese Geodetic Datum 2011 (vertical)',
8860
            'type' => 'vertical',
8861
            'ellipsoid' => null,
8862
            'prime_meridian' => null,
8863
            'conventional_rs' => null,
8864
            'frame_reference_epoch' => null,
8865
        ],
8866
        'urn:ogc:def:datum:EPSG::1132' => [
8867
            'name' => 'Rete Dinamica Nazionale 2008',
8868
            'type' => 'geodetic',
8869
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8870
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8871
            'conventional_rs' => null,
8872
            'frame_reference_epoch' => null,
8873
        ],
8874
        'urn:ogc:def:datum:EPSG::1133' => [
8875
            'name' => 'NAD83 (Continuously Operating Reference Station 1996)',
8876
            'type' => 'geodetic',
8877
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8878
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8879
            'conventional_rs' => null,
8880
            'frame_reference_epoch' => null,
8881
        ],
8882
        'urn:ogc:def:datum:EPSG::1135' => [
8883
            'name' => 'Aden 1925',
8884
            'type' => 'geodetic',
8885
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
8886
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8887
            'conventional_rs' => null,
8888
            'frame_reference_epoch' => null,
8889
        ],
8890
        'urn:ogc:def:datum:EPSG::1136' => [
8891
            'name' => 'Bioko',
8892
            'type' => 'geodetic',
8893
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
8894
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8895
            'conventional_rs' => null,
8896
            'frame_reference_epoch' => null,
8897
        ],
8898
        'urn:ogc:def:datum:EPSG::1137' => [
8899
            'name' => 'Bekaa Valley 1920',
8900
            'type' => 'geodetic',
8901
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
8902
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8903
            'conventional_rs' => null,
8904
            'frame_reference_epoch' => null,
8905
        ],
8906
        'urn:ogc:def:datum:EPSG::1138' => [
8907
            'name' => 'South East Island 1943',
8908
            'type' => 'geodetic',
8909
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
8910
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8911
            'conventional_rs' => null,
8912
            'frame_reference_epoch' => null,
8913
        ],
8914
        'urn:ogc:def:datum:EPSG::1139' => [
8915
            'name' => 'Gambia',
8916
            'type' => 'geodetic',
8917
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
8918
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8919
            'conventional_rs' => null,
8920
            'frame_reference_epoch' => null,
8921
        ],
8922
        'urn:ogc:def:datum:EPSG::1140' => [
8923
            'name' => 'Singapore Height Datum',
8924
            'type' => 'vertical',
8925
            'ellipsoid' => null,
8926
            'prime_meridian' => null,
8927
            'conventional_rs' => null,
8928
            'frame_reference_epoch' => null,
8929
        ],
8930
        'urn:ogc:def:datum:EPSG::1141' => [
8931
            'name' => 'IGS08',
8932
            'type' => 'dynamic geodetic',
8933
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8934
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8935
            'conventional_rs' => null,
8936
            'frame_reference_epoch' => 2005.0,
8937
        ],
8938
        'urn:ogc:def:datum:EPSG::1142' => [
8939
            'name' => 'IG05 Intermediate Datum',
8940
            'type' => 'geodetic',
8941
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8942
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8943
            'conventional_rs' => null,
8944
            'frame_reference_epoch' => null,
8945
        ],
8946
        'urn:ogc:def:datum:EPSG::1144' => [
8947
            'name' => 'IG05/12 Intermediate Datum',
8948
            'type' => 'geodetic',
8949
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8950
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8951
            'conventional_rs' => null,
8952
            'frame_reference_epoch' => null,
8953
        ],
8954
        'urn:ogc:def:datum:EPSG::1146' => [
8955
            'name' => 'Ras Ghumays',
8956
            'type' => 'vertical',
8957
            'ellipsoid' => null,
8958
            'prime_meridian' => null,
8959
            'conventional_rs' => null,
8960
            'frame_reference_epoch' => null,
8961
        ],
8962
        'urn:ogc:def:datum:EPSG::1147' => [
8963
            'name' => 'Oman National Geodetic Datum 2014',
8964
            'type' => 'geodetic',
8965
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8966
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8967
            'conventional_rs' => null,
8968
            'frame_reference_epoch' => null,
8969
        ],
8970
        'urn:ogc:def:datum:EPSG::1148' => [
8971
            'name' => 'Famagusta 1960',
8972
            'type' => 'vertical',
8973
            'ellipsoid' => null,
8974
            'prime_meridian' => null,
8975
            'conventional_rs' => null,
8976
            'frame_reference_epoch' => null,
8977
        ],
8978
        'urn:ogc:def:datum:EPSG::1149' => [
8979
            'name' => 'PNG08',
8980
            'type' => 'vertical',
8981
            'ellipsoid' => null,
8982
            'prime_meridian' => null,
8983
            'conventional_rs' => null,
8984
            'frame_reference_epoch' => null,
8985
        ],
8986
        'urn:ogc:def:datum:EPSG::1150' => [
8987
            'name' => 'Kumul 34',
8988
            'type' => 'vertical',
8989
            'ellipsoid' => null,
8990
            'prime_meridian' => null,
8991
            'conventional_rs' => null,
8992
            'frame_reference_epoch' => null,
8993
        ],
8994
        'urn:ogc:def:datum:EPSG::1151' => [
8995
            'name' => 'Kiunga',
8996
            'type' => 'vertical',
8997
            'ellipsoid' => null,
8998
            'prime_meridian' => null,
8999
            'conventional_rs' => null,
9000
            'frame_reference_epoch' => null,
9001
        ],
9002
        'urn:ogc:def:datum:EPSG::1152' => [
9003
            'name' => 'World Geodetic System 1984 (G730)',
9004
            'type' => 'dynamic geodetic',
9005
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
9006
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9007
            'conventional_rs' => 1024,
9008
            'frame_reference_epoch' => 1994.0,
9009
        ],
9010
        'urn:ogc:def:datum:EPSG::1153' => [
9011
            'name' => 'World Geodetic System 1984 (G873)',
9012
            'type' => 'dynamic geodetic',
9013
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
9014
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9015
            'conventional_rs' => 1024,
9016
            'frame_reference_epoch' => 1997.0,
9017
        ],
9018
        'urn:ogc:def:datum:EPSG::1154' => [
9019
            'name' => 'World Geodetic System 1984 (G1150)',
9020
            'type' => 'dynamic geodetic',
9021
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
9022
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9023
            'conventional_rs' => 1024,
9024
            'frame_reference_epoch' => 2001.0,
9025
        ],
9026
        'urn:ogc:def:datum:EPSG::1155' => [
9027
            'name' => 'World Geodetic System 1984 (G1674)',
9028
            'type' => 'dynamic geodetic',
9029
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
9030
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9031
            'conventional_rs' => 1024,
9032
            'frame_reference_epoch' => 2005.0,
9033
        ],
9034
        'urn:ogc:def:datum:EPSG::1156' => [
9035
            'name' => 'World Geodetic System 1984 (G1762)',
9036
            'type' => 'dynamic geodetic',
9037
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
9038
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9039
            'conventional_rs' => 1024,
9040
            'frame_reference_epoch' => 2005.0,
9041
        ],
9042
        'urn:ogc:def:datum:EPSG::1157' => [
9043
            'name' => 'Parametry Zemli 1990.02',
9044
            'type' => 'dynamic geodetic',
9045
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7054',
9046
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9047
            'conventional_rs' => null,
9048
            'frame_reference_epoch' => 2002.0,
9049
        ],
9050
        'urn:ogc:def:datum:EPSG::1158' => [
9051
            'name' => 'Parametry Zemli 1990.11',
9052
            'type' => 'dynamic geodetic',
9053
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7054',
9054
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9055
            'conventional_rs' => null,
9056
            'frame_reference_epoch' => 2010.0,
9057
        ],
9058
        'urn:ogc:def:datum:EPSG::1159' => [
9059
            'name' => 'Geodezicheskaya Sistema Koordinat 2011',
9060
            'type' => 'geodetic',
9061
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::1025',
9062
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9063
            'conventional_rs' => null,
9064
            'frame_reference_epoch' => null,
9065
        ],
9066
        'urn:ogc:def:datum:EPSG::1160' => [
9067
            'name' => 'Kyrgyzstan Geodetic Datum 2006',
9068
            'type' => 'geodetic',
9069
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9070
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9071
            'conventional_rs' => null,
9072
            'frame_reference_epoch' => null,
9073
        ],
9074
        'urn:ogc:def:datum:EPSG::1161' => [
9075
            'name' => 'Deutsches Haupthoehennetz 1912',
9076
            'type' => 'vertical',
9077
            'ellipsoid' => null,
9078
            'prime_meridian' => null,
9079
            'conventional_rs' => null,
9080
            'frame_reference_epoch' => null,
9081
        ],
9082
        'urn:ogc:def:datum:EPSG::1162' => [
9083
            'name' => 'Latvian Height System 2000',
9084
            'type' => 'vertical',
9085
            'ellipsoid' => null,
9086
            'prime_meridian' => null,
9087
            'conventional_rs' => null,
9088
            'frame_reference_epoch' => null,
9089
        ],
9090
        'urn:ogc:def:datum:EPSG::1164' => [
9091
            'name' => 'Ordnance Datum Newlyn (Offshore)',
9092
            'type' => 'vertical',
9093
            'ellipsoid' => null,
9094
            'prime_meridian' => null,
9095
            'conventional_rs' => 1026,
9096
            'frame_reference_epoch' => null,
9097
        ],
9098
        'urn:ogc:def:datum:EPSG::1165' => [
9099
            'name' => 'International Terrestrial Reference Frame 2014',
9100
            'type' => 'dynamic geodetic',
9101
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9102
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9103
            'conventional_rs' => null,
9104
            'frame_reference_epoch' => 2010.0,
9105
        ],
9106
        'urn:ogc:def:datum:EPSG::1166' => [
9107
            'name' => 'World Geodetic System 1984 (Transit)',
9108
            'type' => 'dynamic geodetic',
9109
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
9110
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9111
            'conventional_rs' => 1024,
9112
            'frame_reference_epoch' => 1984.0,
9113
        ],
9114
        'urn:ogc:def:datum:EPSG::1167' => [
9115
            'name' => 'Bulgaria Geodetic System 2005',
9116
            'type' => 'geodetic',
9117
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9118
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9119
            'conventional_rs' => null,
9120
            'frame_reference_epoch' => null,
9121
        ],
9122
        'urn:ogc:def:datum:EPSG::1168' => [
9123
            'name' => 'Geocentric Datum of Australia 2020',
9124
            'type' => 'geodetic',
9125
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9126
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9127
            'conventional_rs' => null,
9128
            'frame_reference_epoch' => null,
9129
        ],
9130
        'urn:ogc:def:datum:EPSG::1169' => [
9131
            'name' => 'New Zealand Vertical Datum 2016',
9132
            'type' => 'vertical',
9133
            'ellipsoid' => null,
9134
            'prime_meridian' => null,
9135
            'conventional_rs' => null,
9136
            'frame_reference_epoch' => null,
9137
        ],
9138
        'urn:ogc:def:datum:EPSG::1170' => [
9139
            'name' => 'Deutsches Haupthoehennetz 2016',
9140
            'type' => 'vertical',
9141
            'ellipsoid' => null,
9142
            'prime_meridian' => null,
9143
            'conventional_rs' => null,
9144
            'frame_reference_epoch' => null,
9145
        ],
9146
        'urn:ogc:def:datum:EPSG::1171' => [
9147
            'name' => 'Port Moresby 1996',
9148
            'type' => 'vertical',
9149
            'ellipsoid' => null,
9150
            'prime_meridian' => null,
9151
            'conventional_rs' => null,
9152
            'frame_reference_epoch' => null,
9153
        ],
9154
        'urn:ogc:def:datum:EPSG::1172' => [
9155
            'name' => 'Port Moresby 2008',
9156
            'type' => 'vertical',
9157
            'ellipsoid' => null,
9158
            'prime_meridian' => null,
9159
            'conventional_rs' => null,
9160
            'frame_reference_epoch' => null,
9161
        ],
9162
        'urn:ogc:def:datum:EPSG::1173' => [
9163
            'name' => 'St. Helena Tritan',
9164
            'type' => 'geodetic',
9165
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
9166
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9167
            'conventional_rs' => null,
9168
            'frame_reference_epoch' => null,
9169
        ],
9170
        'urn:ogc:def:datum:EPSG::1174' => [
9171
            'name' => 'St. Helena Geodetic Datum 2015',
9172
            'type' => 'geodetic',
9173
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9174
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9175
            'conventional_rs' => null,
9176
            'frame_reference_epoch' => null,
9177
        ],
9178
        'urn:ogc:def:datum:EPSG::1175' => [
9179
            'name' => 'Jamestown 1971',
9180
            'type' => 'vertical',
9181
            'ellipsoid' => null,
9182
            'prime_meridian' => null,
9183
            'conventional_rs' => null,
9184
            'frame_reference_epoch' => null,
9185
        ],
9186
        'urn:ogc:def:datum:EPSG::1176' => [
9187
            'name' => 'St. Helena Tritan Vertical Datum 2011',
9188
            'type' => 'vertical',
9189
            'ellipsoid' => null,
9190
            'prime_meridian' => null,
9191
            'conventional_rs' => null,
9192
            'frame_reference_epoch' => null,
9193
        ],
9194
        'urn:ogc:def:datum:EPSG::1177' => [
9195
            'name' => 'St. Helena Vertical Datum 2015',
9196
            'type' => 'vertical',
9197
            'ellipsoid' => null,
9198
            'prime_meridian' => null,
9199
            'conventional_rs' => null,
9200
            'frame_reference_epoch' => null,
9201
        ],
9202
        'urn:ogc:def:datum:EPSG::1178' => [
9203
            'name' => 'European Terrestrial Reference Frame 1989',
9204
            'type' => 'geodetic',
9205
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9206
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9207
            'conventional_rs' => 1025,
9208
            'frame_reference_epoch' => null,
9209
        ],
9210
        'urn:ogc:def:datum:EPSG::1179' => [
9211
            'name' => 'European Terrestrial Reference Frame 1990',
9212
            'type' => 'geodetic',
9213
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9214
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9215
            'conventional_rs' => 1025,
9216
            'frame_reference_epoch' => null,
9217
        ],
9218
        'urn:ogc:def:datum:EPSG::1180' => [
9219
            'name' => 'European Terrestrial Reference Frame 1991',
9220
            'type' => 'geodetic',
9221
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9222
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9223
            'conventional_rs' => 1025,
9224
            'frame_reference_epoch' => null,
9225
        ],
9226
        'urn:ogc:def:datum:EPSG::1181' => [
9227
            'name' => 'European Terrestrial Reference Frame 1992',
9228
            'type' => 'geodetic',
9229
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9230
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9231
            'conventional_rs' => 1025,
9232
            'frame_reference_epoch' => null,
9233
        ],
9234
        'urn:ogc:def:datum:EPSG::1182' => [
9235
            'name' => 'European Terrestrial Reference Frame 1993',
9236
            'type' => 'geodetic',
9237
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9238
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9239
            'conventional_rs' => 1025,
9240
            'frame_reference_epoch' => null,
9241
        ],
9242
        'urn:ogc:def:datum:EPSG::1183' => [
9243
            'name' => 'European Terrestrial Reference Frame 1994',
9244
            'type' => 'geodetic',
9245
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9246
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9247
            'conventional_rs' => 1025,
9248
            'frame_reference_epoch' => null,
9249
        ],
9250
        'urn:ogc:def:datum:EPSG::1184' => [
9251
            'name' => 'European Terrestrial Reference Frame 1996',
9252
            'type' => 'geodetic',
9253
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9254
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9255
            'conventional_rs' => 1025,
9256
            'frame_reference_epoch' => null,
9257
        ],
9258
        'urn:ogc:def:datum:EPSG::1185' => [
9259
            'name' => 'European Terrestrial Reference Frame 1997',
9260
            'type' => 'geodetic',
9261
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9262
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9263
            'conventional_rs' => 1025,
9264
            'frame_reference_epoch' => null,
9265
        ],
9266
        'urn:ogc:def:datum:EPSG::1186' => [
9267
            'name' => 'European Terrestrial Reference Frame 2000',
9268
            'type' => 'geodetic',
9269
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9270
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9271
            'conventional_rs' => 1025,
9272
            'frame_reference_epoch' => null,
9273
        ],
9274
        'urn:ogc:def:datum:EPSG::1187' => [
9275
            'name' => 'Islands Net 2016',
9276
            'type' => 'geodetic',
9277
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9278
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9279
            'conventional_rs' => null,
9280
            'frame_reference_epoch' => null,
9281
        ],
9282
        'urn:ogc:def:datum:EPSG::1188' => [
9283
            'name' => 'Gusterberg (Ferro)',
9284
            'type' => 'geodetic',
9285
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::1026',
9286
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909',
9287
            'conventional_rs' => null,
9288
            'frame_reference_epoch' => null,
9289
        ],
9290
        'urn:ogc:def:datum:EPSG::1189' => [
9291
            'name' => 'St. Stephen (Ferro)',
9292
            'type' => 'geodetic',
9293
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::1026',
9294
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909',
9295
            'conventional_rs' => null,
9296
            'frame_reference_epoch' => null,
9297
        ],
9298
        'urn:ogc:def:datum:EPSG::1190' => [
9299
            'name' => 'Landshaedarkerfi Islands 2004',
9300
            'type' => 'vertical',
9301
            'ellipsoid' => null,
9302
            'prime_meridian' => null,
9303
            'conventional_rs' => null,
9304
            'frame_reference_epoch' => null,
9305
        ],
9306
        'urn:ogc:def:datum:EPSG::1191' => [
9307
            'name' => 'IGS14',
9308
            'type' => 'dynamic geodetic',
9309
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9310
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9311
            'conventional_rs' => null,
9312
            'frame_reference_epoch' => 2010.0,
9313
        ],
9314
        'urn:ogc:def:datum:EPSG::1192' => [
9315
            'name' => 'North American Datum of 1983 (CSRS96)',
9316
            'type' => 'geodetic',
9317
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9318
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9319
            'conventional_rs' => null,
9320
            'frame_reference_epoch' => null,
9321
        ],
9322
        'urn:ogc:def:datum:EPSG::1193' => [
9323
            'name' => 'North American Datum of 1983 (CSRS) version 2',
9324
            'type' => 'geodetic',
9325
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9326
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9327
            'conventional_rs' => null,
9328
            'frame_reference_epoch' => null,
9329
        ],
9330
        'urn:ogc:def:datum:EPSG::1194' => [
9331
            'name' => 'North American Datum of 1983 (CSRS) version 3',
9332
            'type' => 'geodetic',
9333
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9334
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9335
            'conventional_rs' => null,
9336
            'frame_reference_epoch' => null,
9337
        ],
9338
        'urn:ogc:def:datum:EPSG::1195' => [
9339
            'name' => 'North American Datum of 1983 (CSRS) version 4',
9340
            'type' => 'geodetic',
9341
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9342
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9343
            'conventional_rs' => null,
9344
            'frame_reference_epoch' => null,
9345
        ],
9346
        'urn:ogc:def:datum:EPSG::1196' => [
9347
            'name' => 'North American Datum of 1983 (CSRS) version 5',
9348
            'type' => 'geodetic',
9349
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9350
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9351
            'conventional_rs' => null,
9352
            'frame_reference_epoch' => null,
9353
        ],
9354
        'urn:ogc:def:datum:EPSG::1197' => [
9355
            'name' => 'North American Datum of 1983 (CSRS) version 6',
9356
            'type' => 'geodetic',
9357
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9358
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9359
            'conventional_rs' => null,
9360
            'frame_reference_epoch' => null,
9361
        ],
9362
        'urn:ogc:def:datum:EPSG::1198' => [
9363
            'name' => 'North American Datum of 1983 (CSRS) version 7',
9364
            'type' => 'geodetic',
9365
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9366
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9367
            'conventional_rs' => null,
9368
            'frame_reference_epoch' => null,
9369
        ],
9370
        'urn:ogc:def:datum:EPSG::1199' => [
9371
            'name' => 'Greenland Vertical Reference 2000',
9372
            'type' => 'vertical',
9373
            'ellipsoid' => null,
9374
            'prime_meridian' => null,
9375
            'conventional_rs' => null,
9376
            'frame_reference_epoch' => null,
9377
        ],
9378
        'urn:ogc:def:datum:EPSG::1200' => [
9379
            'name' => 'Greenland Vertical Reference 2016',
9380
            'type' => 'vertical',
9381
            'ellipsoid' => null,
9382
            'prime_meridian' => null,
9383
            'conventional_rs' => null,
9384
            'frame_reference_epoch' => null,
9385
        ],
9386
        'urn:ogc:def:datum:EPSG::1201' => [
9387
            'name' => 'System of the Unified Trigonometrical Cadastral Network [JTSK03]',
9388
            'type' => 'geodetic',
9389
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
9390
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9391
            'conventional_rs' => null,
9392
            'frame_reference_epoch' => null,
9393
        ],
9394
        'urn:ogc:def:datum:EPSG::1202' => [
9395
            'name' => 'Baltic 1957',
9396
            'type' => 'vertical',
9397
            'ellipsoid' => null,
9398
            'prime_meridian' => null,
9399
            'conventional_rs' => null,
9400
            'frame_reference_epoch' => null,
9401
        ],
9402
        'urn:ogc:def:datum:EPSG::1204' => [
9403
            'name' => 'European Terrestrial Reference Frame 2005',
9404
            'type' => 'geodetic',
9405
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9406
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9407
            'conventional_rs' => 1025,
9408
            'frame_reference_epoch' => null,
9409
        ],
9410
        'urn:ogc:def:datum:EPSG::1206' => [
9411
            'name' => 'European Terrestrial Reference Frame 2014',
9412
            'type' => 'geodetic',
9413
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9414
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9415
            'conventional_rs' => 1025,
9416
            'frame_reference_epoch' => null,
9417
        ],
9418
        'urn:ogc:def:datum:EPSG::1207' => [
9419
            'name' => 'Macao 1920',
9420
            'type' => 'geodetic',
9421
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
9422
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9423
            'conventional_rs' => null,
9424
            'frame_reference_epoch' => null,
9425
        ],
9426
        'urn:ogc:def:datum:EPSG::1208' => [
9427
            'name' => 'Macao Geodetic Datum 2008',
9428
            'type' => 'geodetic',
9429
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9430
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9431
            'conventional_rs' => null,
9432
            'frame_reference_epoch' => null,
9433
        ],
9434
        'urn:ogc:def:datum:EPSG::1209' => [
9435
            'name' => 'Hong Kong Geodetic',
9436
            'type' => 'geodetic',
9437
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9438
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9439
            'conventional_rs' => null,
9440
            'frame_reference_epoch' => null,
9441
        ],
9442
        'urn:ogc:def:datum:EPSG::1210' => [
9443
            'name' => 'Macao Height Datum',
9444
            'type' => 'vertical',
9445
            'ellipsoid' => null,
9446
            'prime_meridian' => null,
9447
            'conventional_rs' => null,
9448
            'frame_reference_epoch' => null,
9449
        ],
9450
        'urn:ogc:def:datum:EPSG::1211' => [
9451
            'name' => 'NAD83 (Federal Base Network)',
9452
            'type' => 'geodetic',
9453
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9454
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9455
            'conventional_rs' => null,
9456
            'frame_reference_epoch' => null,
9457
        ],
9458
        'urn:ogc:def:datum:EPSG::1212' => [
9459
            'name' => 'NAD83 (High Accuracy Reference Network - Corrected)',
9460
            'type' => 'geodetic',
9461
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9462
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9463
            'conventional_rs' => null,
9464
            'frame_reference_epoch' => null,
9465
        ],
9466
        'urn:ogc:def:datum:EPSG::1213' => [
9467
            'name' => 'Helsinki 1943',
9468
            'type' => 'vertical',
9469
            'ellipsoid' => null,
9470
            'prime_meridian' => null,
9471
            'conventional_rs' => null,
9472
            'frame_reference_epoch' => null,
9473
        ],
9474
        'urn:ogc:def:datum:EPSG::1214' => [
9475
            'name' => 'Serbian Spatial Reference System 2000',
9476
            'type' => 'geodetic',
9477
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9478
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9479
            'conventional_rs' => null,
9480
            'frame_reference_epoch' => null,
9481
        ],
9482
        'urn:ogc:def:datum:EPSG::1215' => [
9483
            'name' => 'Slovenian Vertical System 2010',
9484
            'type' => 'vertical',
9485
            'ellipsoid' => null,
9486
            'prime_meridian' => null,
9487
            'conventional_rs' => null,
9488
            'frame_reference_epoch' => null,
9489
        ],
9490
        'urn:ogc:def:datum:EPSG::1216' => [
9491
            'name' => 'Serbian Vertical Reference System 2012',
9492
            'type' => 'vertical',
9493
            'ellipsoid' => null,
9494
            'prime_meridian' => null,
9495
            'conventional_rs' => null,
9496
            'frame_reference_epoch' => null,
9497
        ],
9498
        'urn:ogc:def:datum:EPSG::1217' => [
9499
            'name' => 'Camacupa 2015',
9500
            'type' => 'geodetic',
9501
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
9502
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9503
            'conventional_rs' => null,
9504
            'frame_reference_epoch' => null,
9505
        ],
9506
        'urn:ogc:def:datum:EPSG::1218' => [
9507
            'name' => 'MOMRA Terrestrial Reference Frame 2000',
9508
            'type' => 'geodetic',
9509
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9510
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9511
            'conventional_rs' => null,
9512
            'frame_reference_epoch' => null,
9513
        ],
9514
        'urn:ogc:def:datum:EPSG::1219' => [
9515
            'name' => 'MOMRA Vertical Geodetic Control',
9516
            'type' => 'vertical',
9517
            'ellipsoid' => null,
9518
            'prime_meridian' => null,
9519
            'conventional_rs' => null,
9520
            'frame_reference_epoch' => null,
9521
        ],
9522
        'urn:ogc:def:datum:EPSG::1220' => [
9523
            'name' => 'Reference System de Angola 2013',
9524
            'type' => 'geodetic',
9525
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9526
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9527
            'conventional_rs' => null,
9528
            'frame_reference_epoch' => null,
9529
        ],
9530
        'urn:ogc:def:datum:EPSG::1221' => [
9531
            'name' => 'North American Datum of 1983 (MARP00)',
9532
            'type' => 'geodetic',
9533
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9534
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9535
            'conventional_rs' => null,
9536
            'frame_reference_epoch' => null,
9537
        ],
9538
        'urn:ogc:def:datum:EPSG::1223' => [
9539
            'name' => 'Reseau Geodesique de Wallis et Futuna 1996',
9540
            'type' => 'geodetic',
9541
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9542
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9543
            'conventional_rs' => null,
9544
            'frame_reference_epoch' => null,
9545
        ],
9546
        'urn:ogc:def:datum:EPSG::1224' => [
9547
            'name' => 'Taiwan Vertical Datum 2001',
9548
            'type' => 'vertical',
9549
            'ellipsoid' => null,
9550
            'prime_meridian' => null,
9551
            'conventional_rs' => null,
9552
            'frame_reference_epoch' => null,
9553
        ],
9554
        'urn:ogc:def:datum:EPSG::1225' => [
9555
            'name' => 'CR-SIRGAS',
9556
            'type' => 'geodetic',
9557
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9558
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9559
            'conventional_rs' => null,
9560
            'frame_reference_epoch' => null,
9561
        ],
9562
        'urn:ogc:def:datum:EPSG::1226' => [
9563
            'name' => 'Datum Altimetrico de Costa Rica 1952',
9564
            'type' => 'vertical',
9565
            'ellipsoid' => null,
9566
            'prime_meridian' => null,
9567
            'conventional_rs' => null,
9568
            'frame_reference_epoch' => null,
9569
        ],
9570
        'urn:ogc:def:datum:EPSG::1227' => [
9571
            'name' => 'SIRGAS Continuously Operating Network DGF00P01',
9572
            'type' => 'dynamic geodetic',
9573
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9574
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9575
            'conventional_rs' => null,
9576
            'frame_reference_epoch' => 2000.4,
9577
        ],
9578
        'urn:ogc:def:datum:EPSG::1228' => [
9579
            'name' => 'SIRGAS Continuously Operating Network DGF01P01',
9580
            'type' => 'dynamic geodetic',
9581
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9582
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9583
            'conventional_rs' => null,
9584
            'frame_reference_epoch' => 2000.0,
9585
        ],
9586
        'urn:ogc:def:datum:EPSG::1229' => [
9587
            'name' => 'SIRGAS Continuously Operating Network DGF01P02',
9588
            'type' => 'dynamic geodetic',
9589
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9590
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9591
            'conventional_rs' => null,
9592
            'frame_reference_epoch' => 1998.4,
9593
        ],
9594
        'urn:ogc:def:datum:EPSG::1230' => [
9595
            'name' => 'SIRGAS Continuously Operating Network DGF02P01',
9596
            'type' => 'dynamic geodetic',
9597
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9598
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9599
            'conventional_rs' => null,
9600
            'frame_reference_epoch' => 2000.0,
9601
        ],
9602
        'urn:ogc:def:datum:EPSG::1231' => [
9603
            'name' => 'SIRGAS Continuously Operating Network DGF04P01',
9604
            'type' => 'dynamic geodetic',
9605
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9606
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9607
            'conventional_rs' => null,
9608
            'frame_reference_epoch' => 2003.0,
9609
        ],
9610
        'urn:ogc:def:datum:EPSG::1232' => [
9611
            'name' => 'SIRGAS Continuously Operating Network DGF05P01',
9612
            'type' => 'dynamic geodetic',
9613
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9614
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9615
            'conventional_rs' => null,
9616
            'frame_reference_epoch' => 2004.0,
9617
        ],
9618
        'urn:ogc:def:datum:EPSG::1233' => [
9619
            'name' => 'SIRGAS Continuously Operating Network DGF06P01',
9620
            'type' => 'dynamic geodetic',
9621
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9622
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9623
            'conventional_rs' => null,
9624
            'frame_reference_epoch' => 2004.0,
9625
        ],
9626
        'urn:ogc:def:datum:EPSG::1234' => [
9627
            'name' => 'SIRGAS Continuously Operating Network DGF07P01',
9628
            'type' => 'dynamic geodetic',
9629
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9630
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9631
            'conventional_rs' => null,
9632
            'frame_reference_epoch' => 2004.5,
9633
        ],
9634
        'urn:ogc:def:datum:EPSG::1235' => [
9635
            'name' => 'SIRGAS Continuously Operating Network DGF08P01',
9636
            'type' => 'dynamic geodetic',
9637
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9638
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9639
            'conventional_rs' => null,
9640
            'frame_reference_epoch' => 2004.5,
9641
        ],
9642
        'urn:ogc:def:datum:EPSG::1236' => [
9643
            'name' => 'SIRGAS Continuously Operating Network SIR09P01',
9644
            'type' => 'dynamic geodetic',
9645
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9646
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9647
            'conventional_rs' => null,
9648
            'frame_reference_epoch' => 2005.0,
9649
        ],
9650
        'urn:ogc:def:datum:EPSG::1237' => [
9651
            'name' => 'SIRGAS Continuously Operating Network SIR10P01',
9652
            'type' => 'dynamic geodetic',
9653
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9654
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9655
            'conventional_rs' => null,
9656
            'frame_reference_epoch' => 2005.0,
9657
        ],
9658
        'urn:ogc:def:datum:EPSG::1238' => [
9659
            'name' => 'SIRGAS Continuously Operating Network SIR11P01',
9660
            'type' => 'dynamic geodetic',
9661
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9662
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9663
            'conventional_rs' => null,
9664
            'frame_reference_epoch' => 2005.0,
9665
        ],
9666
        'urn:ogc:def:datum:EPSG::1239' => [
9667
            'name' => 'SIRGAS Continuously Operating Network SIR13P01',
9668
            'type' => 'dynamic geodetic',
9669
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9670
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9671
            'conventional_rs' => null,
9672
            'frame_reference_epoch' => 2012.0,
9673
        ],
9674
        'urn:ogc:def:datum:EPSG::1240' => [
9675
            'name' => 'SIRGAS Continuously Operating Network SIR14P01',
9676
            'type' => 'dynamic geodetic',
9677
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9678
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9679
            'conventional_rs' => null,
9680
            'frame_reference_epoch' => 2013.0,
9681
        ],
9682
        'urn:ogc:def:datum:EPSG::1241' => [
9683
            'name' => 'SIRGAS Continuously Operating Network SIR15P01',
9684
            'type' => 'dynamic geodetic',
9685
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9686
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9687
            'conventional_rs' => null,
9688
            'frame_reference_epoch' => 2013.0,
9689
        ],
9690
        'urn:ogc:def:datum:EPSG::1242' => [
9691
            'name' => 'SIRGAS Continuously Operating Network SIR17P01',
9692
            'type' => 'dynamic geodetic',
9693
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9694
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9695
            'conventional_rs' => null,
9696
            'frame_reference_epoch' => 2015.0,
9697
        ],
9698
        'urn:ogc:def:datum:EPSG::1243' => [
9699
            'name' => 'SIRGAS-Chile realization 2 epoch 2010',
9700
            'type' => 'geodetic',
9701
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9702
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9703
            'conventional_rs' => null,
9704
            'frame_reference_epoch' => null,
9705
        ],
9706
        'urn:ogc:def:datum:EPSG::1244' => [
9707
            'name' => 'IGS97',
9708
            'type' => 'dynamic geodetic',
9709
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9710
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9711
            'conventional_rs' => null,
9712
            'frame_reference_epoch' => 1997.0,
9713
        ],
9714
        'urn:ogc:def:datum:EPSG::1245' => [
9715
            'name' => 'IGS00',
9716
            'type' => 'dynamic geodetic',
9717
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9718
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9719
            'conventional_rs' => null,
9720
            'frame_reference_epoch' => 1998.0,
9721
        ],
9722
        'urn:ogc:def:datum:EPSG::1246' => [
9723
            'name' => 'IGb00',
9724
            'type' => 'dynamic geodetic',
9725
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9726
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9727
            'conventional_rs' => null,
9728
            'frame_reference_epoch' => 1998.0,
9729
        ],
9730
        'urn:ogc:def:datum:EPSG::1247' => [
9731
            'name' => 'IGS05',
9732
            'type' => 'dynamic geodetic',
9733
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9734
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9735
            'conventional_rs' => null,
9736
            'frame_reference_epoch' => 2000.0,
9737
        ],
9738
        'urn:ogc:def:datum:EPSG::1248' => [
9739
            'name' => 'IGb08',
9740
            'type' => 'dynamic geodetic',
9741
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9742
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9743
            'conventional_rs' => null,
9744
            'frame_reference_epoch' => 2005.0,
9745
        ],
9746
        'urn:ogc:def:datum:EPSG::1249' => [
9747
            'name' => 'North American Datum of 1983 (PACP00)',
9748
            'type' => 'geodetic',
9749
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9750
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9751
            'conventional_rs' => null,
9752
            'frame_reference_epoch' => null,
9753
        ],
9754
        'urn:ogc:def:datum:EPSG::1250' => [
9755
            'name' => 'IGN 2008 LD',
9756
            'type' => 'vertical',
9757
            'ellipsoid' => null,
9758
            'prime_meridian' => null,
9759
            'conventional_rs' => null,
9760
            'frame_reference_epoch' => null,
9761
        ],
9762
        'urn:ogc:def:datum:EPSG::1251' => [
9763
            'name' => 'Kosovo Reference System 2001',
9764
            'type' => 'geodetic',
9765
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9766
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9767
            'conventional_rs' => null,
9768
            'frame_reference_epoch' => null,
9769
        ],
9770
        'urn:ogc:def:datum:EPSG::1252' => [
9771
            'name' => 'SIRGAS-Chile realization 3 epoch 2013',
9772
            'type' => 'geodetic',
9773
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9774
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9775
            'conventional_rs' => null,
9776
            'frame_reference_epoch' => null,
9777
        ],
9778
        'urn:ogc:def:datum:EPSG::1253' => [
9779
            'name' => 'SIRGAS-Chile realization 4 epoch 2016',
9780
            'type' => 'geodetic',
9781
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9782
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9783
            'conventional_rs' => null,
9784
            'frame_reference_epoch' => null,
9785
        ],
9786
        'urn:ogc:def:datum:EPSG::1255' => [
9787
            'name' => 'Nivellement General de Nouvelle Caledonie 2008',
9788
            'type' => 'vertical',
9789
            'ellipsoid' => null,
9790
            'prime_meridian' => null,
9791
            'conventional_rs' => null,
9792
            'frame_reference_epoch' => null,
9793
        ],
9794
        'urn:ogc:def:datum:EPSG::1256' => [
9795
            'name' => 'Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 2010',
9796
            'type' => 'vertical',
9797
            'ellipsoid' => null,
9798
            'prime_meridian' => null,
9799
            'conventional_rs' => null,
9800
            'frame_reference_epoch' => null,
9801
        ],
9802
        'urn:ogc:def:datum:EPSG::1257' => [
9803
            'name' => 'Tapi Aike',
9804
            'type' => 'geodetic',
9805
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
9806
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9807
            'conventional_rs' => null,
9808
            'frame_reference_epoch' => null,
9809
        ],
9810
        'urn:ogc:def:datum:EPSG::1258' => [
9811
            'name' => 'Ministerio de Marina Norte',
9812
            'type' => 'geodetic',
9813
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
9814
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9815
            'conventional_rs' => null,
9816
            'frame_reference_epoch' => null,
9817
        ],
9818
        'urn:ogc:def:datum:EPSG::1259' => [
9819
            'name' => 'Ministerio de Marina Sur',
9820
            'type' => 'geodetic',
9821
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
9822
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9823
            'conventional_rs' => null,
9824
            'frame_reference_epoch' => null,
9825
        ],
9826
        'urn:ogc:def:datum:EPSG::1260' => [
9827
            'name' => 'Sistema de Referencia Vertical Nacional 2016',
9828
            'type' => 'vertical',
9829
            'ellipsoid' => null,
9830
            'prime_meridian' => null,
9831
            'conventional_rs' => null,
9832
            'frame_reference_epoch' => null,
9833
        ],
9834
        'urn:ogc:def:datum:EPSG::1261' => [
9835
            'name' => 'European Vertical Reference Frame 2000 Austria',
9836
            'type' => 'vertical',
9837
            'ellipsoid' => null,
9838
            'prime_meridian' => null,
9839
            'conventional_rs' => null,
9840
            'frame_reference_epoch' => null,
9841
        ],
9842
        'urn:ogc:def:datum:EPSG::1262' => [
9843
            'name' => 'South Africa Land Levelling Datum',
9844
            'type' => 'vertical',
9845
            'ellipsoid' => null,
9846
            'prime_meridian' => null,
9847
            'conventional_rs' => null,
9848
            'frame_reference_epoch' => null,
9849
        ],
9850
        'urn:ogc:def:datum:EPSG::1263' => [
9851
            'name' => 'Oman National Geodetic Datum 2017',
9852
            'type' => 'geodetic',
9853
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9854
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9855
            'conventional_rs' => null,
9856
            'frame_reference_epoch' => null,
9857
        ],
9858
        'urn:ogc:def:datum:EPSG::1264' => [
9859
            'name' => 'HS2 Intermediate Reference Frame',
9860
            'type' => 'geodetic',
9861
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9862
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9863
            'conventional_rs' => null,
9864
            'frame_reference_epoch' => null,
9865
        ],
9866
        'urn:ogc:def:datum:EPSG::1265' => [
9867
            'name' => 'HS2 Vertical Reference Frame',
9868
            'type' => 'vertical',
9869
            'ellipsoid' => null,
9870
            'prime_meridian' => null,
9871
            'conventional_rs' => null,
9872
            'frame_reference_epoch' => null,
9873
        ],
9874
        'urn:ogc:def:datum:EPSG::1266' => [
9875
            'name' => 'TPEN11 Intermediate Reference Frame',
9876
            'type' => 'geodetic',
9877
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9878
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9879
            'conventional_rs' => null,
9880
            'frame_reference_epoch' => null,
9881
        ],
9882
        'urn:ogc:def:datum:EPSG::1267' => [
9883
            'name' => 'Wiener Null',
9884
            'type' => 'vertical',
9885
            'ellipsoid' => null,
9886
            'prime_meridian' => null,
9887
            'conventional_rs' => null,
9888
            'frame_reference_epoch' => null,
9889
        ],
9890
        'urn:ogc:def:datum:EPSG::1268' => [
9891
            'name' => 'Kingdom of Saudi Arabia Geodetic Reference Frame 2017',
9892
            'type' => 'geodetic',
9893
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9894
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9895
            'conventional_rs' => null,
9896
            'frame_reference_epoch' => null,
9897
        ],
9898
        'urn:ogc:def:datum:EPSG::1269' => [
9899
            'name' => 'Kingdom of Saudi Arabia Vertical Reference Frame Jeddah 2014',
9900
            'type' => 'vertical',
9901
            'ellipsoid' => null,
9902
            'prime_meridian' => null,
9903
            'conventional_rs' => null,
9904
            'frame_reference_epoch' => null,
9905
        ],
9906
        'urn:ogc:def:datum:EPSG::1270' => [
9907
            'name' => 'Mean Sea Level Netherlands',
9908
            'type' => 'vertical',
9909
            'ellipsoid' => null,
9910
            'prime_meridian' => null,
9911
            'conventional_rs' => null,
9912
            'frame_reference_epoch' => null,
9913
        ],
9914
        'urn:ogc:def:datum:EPSG::1271' => [
9915
            'name' => 'MML07 Intermediate Reference Frame',
9916
            'type' => 'geodetic',
9917
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9918
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9919
            'conventional_rs' => null,
9920
            'frame_reference_epoch' => null,
9921
        ],
9922
        'urn:ogc:def:datum:EPSG::1272' => [
9923
            'name' => 'IGb14',
9924
            'type' => 'dynamic geodetic',
9925
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9926
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9927
            'conventional_rs' => null,
9928
            'frame_reference_epoch' => 2010.0,
9929
        ],
9930
        'urn:ogc:def:datum:EPSG::1273' => [
9931
            'name' => 'AbInvA96_2020 Intermediate Reference Frame',
9932
            'type' => 'geodetic',
9933
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9934
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9935
            'conventional_rs' => null,
9936
            'frame_reference_epoch' => null,
9937
        ],
9938
        'urn:ogc:def:datum:EPSG::1274' => [
9939
            'name' => 'European Vertical Reference Frame 2019',
9940
            'type' => 'vertical',
9941
            'ellipsoid' => null,
9942
            'prime_meridian' => null,
9943
            'conventional_rs' => null,
9944
            'frame_reference_epoch' => null,
9945
        ],
9946
        'urn:ogc:def:datum:EPSG::1275' => [
9947
            'name' => 'Mallorca',
9948
            'type' => 'vertical',
9949
            'ellipsoid' => null,
9950
            'prime_meridian' => null,
9951
            'conventional_rs' => null,
9952
            'frame_reference_epoch' => null,
9953
        ],
9954
        'urn:ogc:def:datum:EPSG::1276' => [
9955
            'name' => 'Menorca',
9956
            'type' => 'vertical',
9957
            'ellipsoid' => null,
9958
            'prime_meridian' => null,
9959
            'conventional_rs' => null,
9960
            'frame_reference_epoch' => null,
9961
        ],
9962
        'urn:ogc:def:datum:EPSG::1277' => [
9963
            'name' => 'Ibiza',
9964
            'type' => 'vertical',
9965
            'ellipsoid' => null,
9966
            'prime_meridian' => null,
9967
            'conventional_rs' => null,
9968
            'frame_reference_epoch' => null,
9969
        ],
9970
        'urn:ogc:def:datum:EPSG::1278' => [
9971
            'name' => 'Lanzarote',
9972
            'type' => 'vertical',
9973
            'ellipsoid' => null,
9974
            'prime_meridian' => null,
9975
            'conventional_rs' => null,
9976
            'frame_reference_epoch' => null,
9977
        ],
9978
        'urn:ogc:def:datum:EPSG::1279' => [
9979
            'name' => 'Fuerteventura',
9980
            'type' => 'vertical',
9981
            'ellipsoid' => null,
9982
            'prime_meridian' => null,
9983
            'conventional_rs' => null,
9984
            'frame_reference_epoch' => null,
9985
        ],
9986
        'urn:ogc:def:datum:EPSG::1280' => [
9987
            'name' => 'Gran Canaria',
9988
            'type' => 'vertical',
9989
            'ellipsoid' => null,
9990
            'prime_meridian' => null,
9991
            'conventional_rs' => null,
9992
            'frame_reference_epoch' => null,
9993
        ],
9994
        'urn:ogc:def:datum:EPSG::1281' => [
9995
            'name' => 'Tenerife',
9996
            'type' => 'vertical',
9997
            'ellipsoid' => null,
9998
            'prime_meridian' => null,
9999
            'conventional_rs' => null,
10000
            'frame_reference_epoch' => null,
10001
        ],
10002
        'urn:ogc:def:datum:EPSG::1282' => [
10003
            'name' => 'La Gomera',
10004
            'type' => 'vertical',
10005
            'ellipsoid' => null,
10006
            'prime_meridian' => null,
10007
            'conventional_rs' => null,
10008
            'frame_reference_epoch' => null,
10009
        ],
10010
        'urn:ogc:def:datum:EPSG::1283' => [
10011
            'name' => 'La Palma',
10012
            'type' => 'vertical',
10013
            'ellipsoid' => null,
10014
            'prime_meridian' => null,
10015
            'conventional_rs' => null,
10016
            'frame_reference_epoch' => null,
10017
        ],
10018
        'urn:ogc:def:datum:EPSG::1284' => [
10019
            'name' => 'El Hierro',
10020
            'type' => 'vertical',
10021
            'ellipsoid' => null,
10022
            'prime_meridian' => null,
10023
            'conventional_rs' => null,
10024
            'frame_reference_epoch' => null,
10025
        ],
10026
        'urn:ogc:def:datum:EPSG::1285' => [
10027
            'name' => 'Ceuta 2',
10028
            'type' => 'vertical',
10029
            'ellipsoid' => null,
10030
            'prime_meridian' => null,
10031
            'conventional_rs' => null,
10032
            'frame_reference_epoch' => null,
10033
        ],
10034
        'urn:ogc:def:datum:EPSG::1286' => [
10035
            'name' => 'Pico de las Nieves 1968',
10036
            'type' => 'geodetic',
10037
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
10038
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10039
            'conventional_rs' => null,
10040
            'frame_reference_epoch' => null,
10041
        ],
10042
        'urn:ogc:def:datum:EPSG::1287' => [
10043
            'name' => 'European Vertical Reference Frame 2019 mean tide',
10044
            'type' => 'vertical',
10045
            'ellipsoid' => null,
10046
            'prime_meridian' => null,
10047
            'conventional_rs' => null,
10048
            'frame_reference_epoch' => null,
10049
        ],
10050
        'urn:ogc:def:datum:EPSG::1288' => [
10051
            'name' => 'British Isles height ensemble',
10052
            'type' => 'ensemble',
10053
            'ellipsoid' => null,
10054
            'prime_meridian' => null,
10055
            'conventional_rs' => null,
10056
            'frame_reference_epoch' => null,
10057
            'ensemble' => [
10058
                'urn:ogc:def:datum:EPSG::5130',
10059
                'urn:ogc:def:datum:EPSG::5131',
10060
                'urn:ogc:def:datum:EPSG::5101',
10061
                'urn:ogc:def:datum:EPSG::1164',
10062
                'urn:ogc:def:datum:EPSG::5138',
10063
                'urn:ogc:def:datum:EPSG::5140',
10064
                'urn:ogc:def:datum:EPSG::5144',
10065
                'urn:ogc:def:datum:EPSG::5148',
10066
                'urn:ogc:def:datum:EPSG::5147',
10067
            ],
10068
        ],
10069
        'urn:ogc:def:datum:EPSG::1289' => [
10070
            'name' => 'GBK19 Intermediate Reference Frame',
10071
            'type' => 'geodetic',
10072
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10073
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10074
            'conventional_rs' => null,
10075
            'frame_reference_epoch' => null,
10076
        ],
10077
        'urn:ogc:def:datum:EPSG::1290' => [
10078
            'name' => 'Lowest Astronomical Tide Netherlands',
10079
            'type' => 'vertical',
10080
            'ellipsoid' => null,
10081
            'prime_meridian' => null,
10082
            'conventional_rs' => null,
10083
            'frame_reference_epoch' => null,
10084
        ],
10085
        'urn:ogc:def:datum:EPSG::1291' => [
10086
            'name' => 'Australian Terrestrial Reference Frame 2014',
10087
            'type' => 'dynamic geodetic',
10088
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10089
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10090
            'conventional_rs' => null,
10091
            'frame_reference_epoch' => 2020.0,
10092
        ],
10093
        'urn:ogc:def:datum:EPSG::1292' => [
10094
            'name' => 'Australian Vertical Working Surface',
10095
            'type' => 'vertical',
10096
            'ellipsoid' => null,
10097
            'prime_meridian' => null,
10098
            'conventional_rs' => null,
10099
            'frame_reference_epoch' => null,
10100
        ],
10101
        'urn:ogc:def:datum:EPSG::1293' => [
10102
            'name' => 'Sistem Referensi Geospasial Indonesia 2013',
10103
            'type' => 'dynamic geodetic',
10104
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
10105
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10106
            'conventional_rs' => null,
10107
            'frame_reference_epoch' => 2012.0,
10108
        ],
10109
        'urn:ogc:def:datum:EPSG::1294' => [
10110
            'name' => 'Indonesian Geoid 2020 version 1',
10111
            'type' => 'vertical',
10112
            'ellipsoid' => null,
10113
            'prime_meridian' => null,
10114
            'conventional_rs' => null,
10115
            'frame_reference_epoch' => null,
10116
        ],
10117
        'urn:ogc:def:datum:EPSG::1295' => [
10118
            'name' => 'Lyon Turin Ferroviaire 2004',
10119
            'type' => 'geodetic',
10120
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10121
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10122
            'conventional_rs' => null,
10123
            'frame_reference_epoch' => null,
10124
        ],
10125
        'urn:ogc:def:datum:EPSG::1296' => [
10126
            'name' => 'Baltic 1986',
10127
            'type' => 'vertical',
10128
            'ellipsoid' => null,
10129
            'prime_meridian' => null,
10130
            'conventional_rs' => null,
10131
            'frame_reference_epoch' => null,
10132
        ],
10133
        'urn:ogc:def:datum:EPSG::1297' => [
10134
            'name' => 'European Vertical Reference Frame 2007 Poland',
10135
            'type' => 'vertical',
10136
            'ellipsoid' => null,
10137
            'prime_meridian' => null,
10138
            'conventional_rs' => null,
10139
            'frame_reference_epoch' => null,
10140
        ],
10141
        'urn:ogc:def:datum:EPSG::1298' => [
10142
            'name' => 'Estonian Height System 2000',
10143
            'type' => 'vertical',
10144
            'ellipsoid' => null,
10145
            'prime_meridian' => null,
10146
            'conventional_rs' => null,
10147
            'frame_reference_epoch' => null,
10148
        ],
10149
        'urn:ogc:def:datum:EPSG::1299' => [
10150
            'name' => 'Lithuanian Height System 2007',
10151
            'type' => 'vertical',
10152
            'ellipsoid' => null,
10153
            'prime_meridian' => null,
10154
            'conventional_rs' => null,
10155
            'frame_reference_epoch' => null,
10156
        ],
10157
        'urn:ogc:def:datum:EPSG::1300' => [
10158
            'name' => 'Bulgarian Height System 2005',
10159
            'type' => 'vertical',
10160
            'ellipsoid' => null,
10161
            'prime_meridian' => null,
10162
            'conventional_rs' => null,
10163
            'frame_reference_epoch' => null,
10164
        ],
10165
        'urn:ogc:def:datum:EPSG::1301' => [
10166
            'name' => 'Norwegian Chart Datum',
10167
            'type' => 'vertical',
10168
            'ellipsoid' => null,
10169
            'prime_meridian' => null,
10170
            'conventional_rs' => null,
10171
            'frame_reference_epoch' => null,
10172
        ],
10173
        'urn:ogc:def:datum:EPSG::1302' => [
10174
            'name' => 'Local Tidal Datum at Pago Pago 2020',
10175
            'type' => 'vertical',
10176
            'ellipsoid' => null,
10177
            'prime_meridian' => null,
10178
            'conventional_rs' => null,
10179
            'frame_reference_epoch' => null,
10180
        ],
10181
        'urn:ogc:def:datum:EPSG::1303' => [
10182
            'name' => 'National Vertical Datum 1992',
10183
            'type' => 'vertical',
10184
            'ellipsoid' => null,
10185
            'prime_meridian' => null,
10186
            'conventional_rs' => null,
10187
            'frame_reference_epoch' => null,
10188
        ],
10189
        'urn:ogc:def:datum:EPSG::1304' => [
10190
            'name' => 'Red Geodesica Para Mineria en Chile',
10191
            'type' => 'dynamic geodetic',
10192
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10193
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10194
            'conventional_rs' => null,
10195
            'frame_reference_epoch' => 2019.0,
10196
        ],
10197
        'urn:ogc:def:datum:EPSG::1305' => [
10198
            'name' => 'ETRF2000 Poland',
10199
            'type' => 'geodetic',
10200
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10201
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10202
            'conventional_rs' => null,
10203
            'frame_reference_epoch' => null,
10204
        ],
10205
        'urn:ogc:def:datum:EPSG::1306' => [
10206
            'name' => 'Catania 1965',
10207
            'type' => 'vertical',
10208
            'ellipsoid' => null,
10209
            'prime_meridian' => null,
10210
            'conventional_rs' => null,
10211
            'frame_reference_epoch' => null,
10212
        ],
10213
        'urn:ogc:def:datum:EPSG::1307' => [
10214
            'name' => 'Cagliari 1956',
10215
            'type' => 'vertical',
10216
            'ellipsoid' => null,
10217
            'prime_meridian' => null,
10218
            'conventional_rs' => null,
10219
            'frame_reference_epoch' => null,
10220
        ],
10221
        'urn:ogc:def:datum:EPSG::1308' => [
10222
            'name' => 'EOS21 Intermediate Reference Frame',
10223
            'type' => 'geodetic',
10224
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10225
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10226
            'conventional_rs' => null,
10227
            'frame_reference_epoch' => null,
10228
        ],
10229
        'urn:ogc:def:datum:EPSG::1309' => [
10230
            'name' => 'World Geodetic System 1984 (G2139)',
10231
            'type' => 'dynamic geodetic',
10232
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
10233
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10234
            'conventional_rs' => 1024,
10235
            'frame_reference_epoch' => 2016.0,
10236
        ],
10237
        'urn:ogc:def:datum:EPSG::1310' => [
10238
            'name' => 'ECML14_NB Intermediate Reference Frame',
10239
            'type' => 'geodetic',
10240
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10241
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10242
            'conventional_rs' => null,
10243
            'frame_reference_epoch' => null,
10244
        ],
10245
        'urn:ogc:def:datum:EPSG::1311' => [
10246
            'name' => 'EWR2 Intermediate Reference Frame',
10247
            'type' => 'geodetic',
10248
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10249
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10250
            'conventional_rs' => null,
10251
            'frame_reference_epoch' => null,
10252
        ],
10253
        'urn:ogc:def:datum:EPSG::1312' => [
10254
            'name' => 'Reseau Geodesique Francais 1993 v2',
10255
            'type' => 'geodetic',
10256
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10257
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10258
            'conventional_rs' => null,
10259
            'frame_reference_epoch' => null,
10260
        ],
10261
        'urn:ogc:def:datum:EPSG::1313' => [
10262
            'name' => 'Reseau Geodesique Francais 1993 v2b',
10263
            'type' => 'geodetic',
10264
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10265
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10266
            'conventional_rs' => null,
10267
            'frame_reference_epoch' => null,
10268
        ],
10269
        'urn:ogc:def:datum:EPSG::1314' => [
10270
            'name' => 'MRH21 Intermediate Reference Frame',
10271
            'type' => 'geodetic',
10272
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10273
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10274
            'conventional_rs' => null,
10275
            'frame_reference_epoch' => null,
10276
        ],
10277
        'urn:ogc:def:datum:EPSG::1315' => [
10278
            'name' => 'MOLDOR11 Intermediate Reference Frame',
10279
            'type' => 'geodetic',
10280
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10281
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10282
            'conventional_rs' => null,
10283
            'frame_reference_epoch' => null,
10284
        ],
10285
        'urn:ogc:def:datum:EPSG::1316' => [
10286
            'name' => 'GNTRANS',
10287
            'type' => 'vertical',
10288
            'ellipsoid' => null,
10289
            'prime_meridian' => null,
10290
            'conventional_rs' => null,
10291
            'frame_reference_epoch' => null,
10292
        ],
10293
        'urn:ogc:def:datum:EPSG::1317' => [
10294
            'name' => 'HULLEE13 Intermediate Reference Frame',
10295
            'type' => 'geodetic',
10296
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10297
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10298
            'conventional_rs' => null,
10299
            'frame_reference_epoch' => null,
10300
        ],
10301
        'urn:ogc:def:datum:EPSG::1318' => [
10302
            'name' => 'GNTRANS2016',
10303
            'type' => 'vertical',
10304
            'ellipsoid' => null,
10305
            'prime_meridian' => null,
10306
            'conventional_rs' => null,
10307
            'frame_reference_epoch' => null,
10308
        ],
10309
        'urn:ogc:def:datum:EPSG::1319' => [
10310
            'name' => 'EBBWV14 Intermediate Reference Frame',
10311
            'type' => 'geodetic',
10312
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10313
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10314
            'conventional_rs' => null,
10315
            'frame_reference_epoch' => null,
10316
        ],
10317
        'urn:ogc:def:datum:EPSG::1320' => [
10318
            'name' => 'SCM22 Intermediate Reference Frame',
10319
            'type' => 'geodetic',
10320
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10321
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10322
            'conventional_rs' => null,
10323
            'frame_reference_epoch' => null,
10324
        ],
10325
        'urn:ogc:def:datum:EPSG::1321' => [
10326
            'name' => 'FNL22 Intermediate Reference Frame',
10327
            'type' => 'geodetic',
10328
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10329
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10330
            'conventional_rs' => null,
10331
            'frame_reference_epoch' => null,
10332
        ],
10333
        'urn:ogc:def:datum:EPSG::1322' => [
10334
            'name' => 'International Terrestrial Reference Frame 2020',
10335
            'type' => 'dynamic geodetic',
10336
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10337
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10338
            'conventional_rs' => null,
10339
            'frame_reference_epoch' => 2015.0,
10340
        ],
10341
        'urn:ogc:def:datum:EPSG::1323' => [
10342
            'name' => 'Svalbard vertical datum 2006',
10343
            'type' => 'vertical',
10344
            'ellipsoid' => null,
10345
            'prime_meridian' => null,
10346
            'conventional_rs' => null,
10347
            'frame_reference_epoch' => null,
10348
        ],
10349
        'urn:ogc:def:datum:EPSG::1324' => [
10350
            'name' => 'MWC18 Intermediate Reference Frame',
10351
            'type' => 'geodetic',
10352
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10353
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10354
            'conventional_rs' => null,
10355
            'frame_reference_epoch' => null,
10356
        ],
10357
        'urn:ogc:def:datum:EPSG::1325' => [
10358
            'name' => 'Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 2002',
10359
            'type' => 'vertical',
10360
            'ellipsoid' => null,
10361
            'prime_meridian' => null,
10362
            'conventional_rs' => null,
10363
            'frame_reference_epoch' => null,
10364
        ],
10365
        'urn:ogc:def:datum:EPSG::1326' => [
10366
            'name' => 'Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 1997',
10367
            'type' => 'vertical',
10368
            'ellipsoid' => null,
10369
            'prime_meridian' => null,
10370
            'conventional_rs' => null,
10371
            'frame_reference_epoch' => null,
10372
        ],
10373
        'urn:ogc:def:datum:EPSG::1327' => [
10374
            'name' => 'SIRGAS-Chile realization 5 epoch 2021',
10375
            'type' => 'geodetic',
10376
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10377
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10378
            'conventional_rs' => null,
10379
            'frame_reference_epoch' => null,
10380
        ],
10381
        'urn:ogc:def:datum:EPSG::1328' => [
10382
            'name' => 'Indonesian Geoid 2020 version 2',
10383
            'type' => 'vertical',
10384
            'ellipsoid' => null,
10385
            'prime_meridian' => null,
10386
            'conventional_rs' => null,
10387
            'frame_reference_epoch' => null,
10388
        ],
10389
        'urn:ogc:def:datum:EPSG::1329' => [
10390
            'name' => 'Marco Geocentrico Nacional de Referencia 2018',
10391
            'type' => 'geodetic',
10392
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10393
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10394
            'conventional_rs' => null,
10395
            'frame_reference_epoch' => null,
10396
        ],
10397
        'urn:ogc:def:datum:EPSG::1330' => [
10398
            'name' => 'Mean Sea Level UK & Ireland VORF08',
10399
            'type' => 'vertical',
10400
            'ellipsoid' => null,
10401
            'prime_meridian' => null,
10402
            'conventional_rs' => null,
10403
            'frame_reference_epoch' => null,
10404
        ],
10405
        'urn:ogc:def:datum:EPSG::1331' => [
10406
            'name' => 'Chart Datum UK & Ireland VORF08',
10407
            'type' => 'vertical',
10408
            'ellipsoid' => null,
10409
            'prime_meridian' => null,
10410
            'conventional_rs' => null,
10411
            'frame_reference_epoch' => null,
10412
        ],
10413
        'urn:ogc:def:datum:EPSG::1333' => [
10414
            'name' => 'IGS20',
10415
            'type' => 'dynamic geodetic',
10416
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10417
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10418
            'conventional_rs' => null,
10419
            'frame_reference_epoch' => 2015.0,
10420
        ],
10421
        'urn:ogc:def:datum:EPSG::1334' => [
10422
            'name' => 'DoPw22 Intermediate Reference Frame',
10423
            'type' => 'geodetic',
10424
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10425
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10426
            'conventional_rs' => null,
10427
            'frame_reference_epoch' => null,
10428
        ],
10429
        'urn:ogc:def:datum:EPSG::1335' => [
10430
            'name' => 'ShAb07 Intermediate Reference Frame',
10431
            'type' => 'geodetic',
10432
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10433
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10434
            'conventional_rs' => null,
10435
            'frame_reference_epoch' => null,
10436
        ],
10437
        'urn:ogc:def:datum:EPSG::1336' => [
10438
            'name' => 'CNH22 Intermediate Reference Frame',
10439
            'type' => 'geodetic',
10440
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10441
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10442
            'conventional_rs' => null,
10443
            'frame_reference_epoch' => null,
10444
        ],
10445
        'urn:ogc:def:datum:EPSG::1338' => [
10446
            'name' => 'CWS13 Intermediate Reference Frame',
10447
            'type' => 'geodetic',
10448
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10449
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10450
            'conventional_rs' => null,
10451
            'frame_reference_epoch' => null,
10452
        ],
10453
        'urn:ogc:def:datum:EPSG::1339' => [
10454
            'name' => 'DIBA15 Intermediate Reference Frame',
10455
            'type' => 'geodetic',
10456
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10457
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10458
            'conventional_rs' => null,
10459
            'frame_reference_epoch' => null,
10460
        ],
10461
        'urn:ogc:def:datum:EPSG::1340' => [
10462
            'name' => 'GWPBS22 Intermediate Reference Frame',
10463
            'type' => 'geodetic',
10464
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10465
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10466
            'conventional_rs' => null,
10467
            'frame_reference_epoch' => null,
10468
        ],
10469
        'urn:ogc:def:datum:EPSG::1341' => [
10470
            'name' => 'GWWAB22 Intermediate Reference Frame',
10471
            'type' => 'geodetic',
10472
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10473
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10474
            'conventional_rs' => null,
10475
            'frame_reference_epoch' => null,
10476
        ],
10477
        'urn:ogc:def:datum:EPSG::1342' => [
10478
            'name' => 'GWWWA22 Intermediate Reference Frame',
10479
            'type' => 'geodetic',
10480
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10481
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10482
            'conventional_rs' => null,
10483
            'frame_reference_epoch' => null,
10484
        ],
10485
        'urn:ogc:def:datum:EPSG::1343' => [
10486
            'name' => 'MALS09 Intermediate Reference Frame',
10487
            'type' => 'geodetic',
10488
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10489
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10490
            'conventional_rs' => null,
10491
            'frame_reference_epoch' => null,
10492
        ],
10493
        'urn:ogc:def:datum:EPSG::1344' => [
10494
            'name' => 'OxWo08 Intermediate Reference Frame',
10495
            'type' => 'geodetic',
10496
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10497
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10498
            'conventional_rs' => null,
10499
            'frame_reference_epoch' => null,
10500
        ],
10501
        'urn:ogc:def:datum:EPSG::1345' => [
10502
            'name' => 'SYC20 Intermediate Reference Frame',
10503
            'type' => 'geodetic',
10504
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10505
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10506
            'conventional_rs' => null,
10507
            'frame_reference_epoch' => null,
10508
        ],
10509
        'urn:ogc:def:datum:EPSG::1351' => [
10510
            'name' => 'SMITB20 Intermediate Reference Frame',
10511
            'type' => 'geodetic',
10512
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10513
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10514
            'conventional_rs' => null,
10515
            'frame_reference_epoch' => null,
10516
        ],
10517
        'urn:ogc:def:datum:EPSG::1352' => [
10518
            'name' => 'RBEPP12 Intermediate Reference Frame',
10519
            'type' => 'geodetic',
10520
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10521
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10522
            'conventional_rs' => null,
10523
            'frame_reference_epoch' => null,
10524
        ],
10525
        'urn:ogc:def:datum:EPSG::1353' => [
10526
            'name' => 'ETRS89/DREF91 Realization 2016',
10527
            'type' => 'geodetic',
10528
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10529
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10530
            'conventional_rs' => null,
10531
            'frame_reference_epoch' => null,
10532
        ],
10533
        'urn:ogc:def:datum:EPSG::1354' => [
10534
            'name' => 'Nivellement General de l\'Algerie 2022',
10535
            'type' => 'vertical',
10536
            'ellipsoid' => null,
10537
            'prime_meridian' => null,
10538
            'conventional_rs' => null,
10539
            'frame_reference_epoch' => null,
10540
        ],
10541
        'urn:ogc:def:datum:EPSG::1355' => [
10542
            'name' => 'Sonatrach Reference Frame 2020',
10543
            'type' => 'geodetic',
10544
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10545
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10546
            'conventional_rs' => null,
10547
            'frame_reference_epoch' => null,
10548
        ],
10549
        'urn:ogc:def:datum:EPSG::1356' => [
10550
            'name' => 'Latvian coordinate system 2020',
10551
            'type' => 'geodetic',
10552
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10553
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10554
            'conventional_rs' => null,
10555
            'frame_reference_epoch' => null,
10556
        ],
10557
        'urn:ogc:def:datum:EPSG::5100' => [
10558
            'name' => 'Mean Sea Level',
10559
            'type' => 'vertical',
10560
            'ellipsoid' => null,
10561
            'prime_meridian' => null,
10562
            'conventional_rs' => null,
10563
            'frame_reference_epoch' => null,
10564
        ],
10565
        'urn:ogc:def:datum:EPSG::5101' => [
10566
            'name' => 'Ordnance Datum Newlyn',
10567
            'type' => 'vertical',
10568
            'ellipsoid' => null,
10569
            'prime_meridian' => null,
10570
            'conventional_rs' => 1026,
10571
            'frame_reference_epoch' => null,
10572
        ],
10573
        'urn:ogc:def:datum:EPSG::5102' => [
10574
            'name' => 'National Geodetic Vertical Datum 1929',
10575
            'type' => 'vertical',
10576
            'ellipsoid' => null,
10577
            'prime_meridian' => null,
10578
            'conventional_rs' => null,
10579
            'frame_reference_epoch' => null,
10580
        ],
10581
        'urn:ogc:def:datum:EPSG::5103' => [
10582
            'name' => 'North American Vertical Datum 1988',
10583
            'type' => 'vertical',
10584
            'ellipsoid' => null,
10585
            'prime_meridian' => null,
10586
            'conventional_rs' => null,
10587
            'frame_reference_epoch' => null,
10588
        ],
10589
        'urn:ogc:def:datum:EPSG::5104' => [
10590
            'name' => 'Yellow Sea 1956',
10591
            'type' => 'vertical',
10592
            'ellipsoid' => null,
10593
            'prime_meridian' => null,
10594
            'conventional_rs' => null,
10595
            'frame_reference_epoch' => null,
10596
        ],
10597
        'urn:ogc:def:datum:EPSG::5105' => [
10598
            'name' => 'Baltic 1977',
10599
            'type' => 'vertical',
10600
            'ellipsoid' => null,
10601
            'prime_meridian' => null,
10602
            'conventional_rs' => null,
10603
            'frame_reference_epoch' => null,
10604
        ],
10605
        'urn:ogc:def:datum:EPSG::5106' => [
10606
            'name' => 'Caspian Sea',
10607
            'type' => 'vertical',
10608
            'ellipsoid' => null,
10609
            'prime_meridian' => null,
10610
            'conventional_rs' => null,
10611
            'frame_reference_epoch' => null,
10612
        ],
10613
        'urn:ogc:def:datum:EPSG::5109' => [
10614
            'name' => 'Normaal Amsterdams Peil',
10615
            'type' => 'vertical',
10616
            'ellipsoid' => null,
10617
            'prime_meridian' => null,
10618
            'conventional_rs' => null,
10619
            'frame_reference_epoch' => null,
10620
        ],
10621
        'urn:ogc:def:datum:EPSG::5110' => [
10622
            'name' => 'Ostend',
10623
            'type' => 'vertical',
10624
            'ellipsoid' => null,
10625
            'prime_meridian' => null,
10626
            'conventional_rs' => null,
10627
            'frame_reference_epoch' => null,
10628
        ],
10629
        'urn:ogc:def:datum:EPSG::5111' => [
10630
            'name' => 'Australian Height Datum',
10631
            'type' => 'vertical',
10632
            'ellipsoid' => null,
10633
            'prime_meridian' => null,
10634
            'conventional_rs' => null,
10635
            'frame_reference_epoch' => null,
10636
        ],
10637
        'urn:ogc:def:datum:EPSG::5112' => [
10638
            'name' => 'Australian Height Datum (Tasmania)',
10639
            'type' => 'vertical',
10640
            'ellipsoid' => null,
10641
            'prime_meridian' => null,
10642
            'conventional_rs' => null,
10643
            'frame_reference_epoch' => null,
10644
        ],
10645
        'urn:ogc:def:datum:EPSG::5113' => [
10646
            'name' => 'Instantaneous Water Level',
10647
            'type' => 'vertical',
10648
            'ellipsoid' => null,
10649
            'prime_meridian' => null,
10650
            'conventional_rs' => null,
10651
            'frame_reference_epoch' => null,
10652
        ],
10653
        'urn:ogc:def:datum:EPSG::5114' => [
10654
            'name' => 'Canadian Geodetic Vertical Datum of 1928',
10655
            'type' => 'vertical',
10656
            'ellipsoid' => null,
10657
            'prime_meridian' => null,
10658
            'conventional_rs' => null,
10659
            'frame_reference_epoch' => null,
10660
        ],
10661
        'urn:ogc:def:datum:EPSG::5115' => [
10662
            'name' => 'Piraeus Harbour 1986',
10663
            'type' => 'vertical',
10664
            'ellipsoid' => null,
10665
            'prime_meridian' => null,
10666
            'conventional_rs' => null,
10667
            'frame_reference_epoch' => null,
10668
        ],
10669
        'urn:ogc:def:datum:EPSG::5116' => [
10670
            'name' => 'Helsinki 1960',
10671
            'type' => 'vertical',
10672
            'ellipsoid' => null,
10673
            'prime_meridian' => null,
10674
            'conventional_rs' => null,
10675
            'frame_reference_epoch' => null,
10676
        ],
10677
        'urn:ogc:def:datum:EPSG::5117' => [
10678
            'name' => 'Rikets hojdsystem 1970',
10679
            'type' => 'vertical',
10680
            'ellipsoid' => null,
10681
            'prime_meridian' => null,
10682
            'conventional_rs' => null,
10683
            'frame_reference_epoch' => null,
10684
        ],
10685
        'urn:ogc:def:datum:EPSG::5118' => [
10686
            'name' => 'Nivellement General de la France - Lallemand',
10687
            'type' => 'vertical',
10688
            'ellipsoid' => null,
10689
            'prime_meridian' => null,
10690
            'conventional_rs' => null,
10691
            'frame_reference_epoch' => null,
10692
        ],
10693
        'urn:ogc:def:datum:EPSG::5119' => [
10694
            'name' => 'Nivellement General de la France - IGN69',
10695
            'type' => 'vertical',
10696
            'ellipsoid' => null,
10697
            'prime_meridian' => null,
10698
            'conventional_rs' => null,
10699
            'frame_reference_epoch' => null,
10700
        ],
10701
        'urn:ogc:def:datum:EPSG::5120' => [
10702
            'name' => 'Nivellement General de la France - IGN78',
10703
            'type' => 'vertical',
10704
            'ellipsoid' => null,
10705
            'prime_meridian' => null,
10706
            'conventional_rs' => null,
10707
            'frame_reference_epoch' => null,
10708
        ],
10709
        'urn:ogc:def:datum:EPSG::5121' => [
10710
            'name' => 'Maputo',
10711
            'type' => 'vertical',
10712
            'ellipsoid' => null,
10713
            'prime_meridian' => null,
10714
            'conventional_rs' => null,
10715
            'frame_reference_epoch' => null,
10716
        ],
10717
        'urn:ogc:def:datum:EPSG::5122' => [
10718
            'name' => 'Japanese Standard Levelling Datum 1969',
10719
            'type' => 'vertical',
10720
            'ellipsoid' => null,
10721
            'prime_meridian' => null,
10722
            'conventional_rs' => null,
10723
            'frame_reference_epoch' => null,
10724
        ],
10725
        'urn:ogc:def:datum:EPSG::5123' => [
10726
            'name' => 'PDO Height Datum 1993',
10727
            'type' => 'vertical',
10728
            'ellipsoid' => null,
10729
            'prime_meridian' => null,
10730
            'conventional_rs' => null,
10731
            'frame_reference_epoch' => null,
10732
        ],
10733
        'urn:ogc:def:datum:EPSG::5124' => [
10734
            'name' => 'Fahud Height Datum',
10735
            'type' => 'vertical',
10736
            'ellipsoid' => null,
10737
            'prime_meridian' => null,
10738
            'conventional_rs' => null,
10739
            'frame_reference_epoch' => null,
10740
        ],
10741
        'urn:ogc:def:datum:EPSG::5125' => [
10742
            'name' => 'Ha Tien 1960',
10743
            'type' => 'vertical',
10744
            'ellipsoid' => null,
10745
            'prime_meridian' => null,
10746
            'conventional_rs' => null,
10747
            'frame_reference_epoch' => null,
10748
        ],
10749
        'urn:ogc:def:datum:EPSG::5126' => [
10750
            'name' => 'Hon Dau 1992',
10751
            'type' => 'vertical',
10752
            'ellipsoid' => null,
10753
            'prime_meridian' => null,
10754
            'conventional_rs' => null,
10755
            'frame_reference_epoch' => null,
10756
        ],
10757
        'urn:ogc:def:datum:EPSG::5127' => [
10758
            'name' => 'Landesnivellement 1902',
10759
            'type' => 'vertical',
10760
            'ellipsoid' => null,
10761
            'prime_meridian' => null,
10762
            'conventional_rs' => null,
10763
            'frame_reference_epoch' => null,
10764
        ],
10765
        'urn:ogc:def:datum:EPSG::5128' => [
10766
            'name' => 'Landeshohennetz 1995',
10767
            'type' => 'vertical',
10768
            'ellipsoid' => null,
10769
            'prime_meridian' => null,
10770
            'conventional_rs' => null,
10771
            'frame_reference_epoch' => null,
10772
        ],
10773
        'urn:ogc:def:datum:EPSG::5129' => [
10774
            'name' => 'European Vertical Reference Frame 2000',
10775
            'type' => 'vertical',
10776
            'ellipsoid' => null,
10777
            'prime_meridian' => null,
10778
            'conventional_rs' => null,
10779
            'frame_reference_epoch' => null,
10780
        ],
10781
        'urn:ogc:def:datum:EPSG::5130' => [
10782
            'name' => 'Malin Head',
10783
            'type' => 'vertical',
10784
            'ellipsoid' => null,
10785
            'prime_meridian' => null,
10786
            'conventional_rs' => 1026,
10787
            'frame_reference_epoch' => null,
10788
        ],
10789
        'urn:ogc:def:datum:EPSG::5131' => [
10790
            'name' => 'Belfast Lough',
10791
            'type' => 'vertical',
10792
            'ellipsoid' => null,
10793
            'prime_meridian' => null,
10794
            'conventional_rs' => 1026,
10795
            'frame_reference_epoch' => null,
10796
        ],
10797
        'urn:ogc:def:datum:EPSG::5132' => [
10798
            'name' => 'Dansk Normal Nul',
10799
            'type' => 'vertical',
10800
            'ellipsoid' => null,
10801
            'prime_meridian' => null,
10802
            'conventional_rs' => null,
10803
            'frame_reference_epoch' => null,
10804
        ],
10805
        'urn:ogc:def:datum:EPSG::5133' => [
10806
            'name' => 'AIOC 1995',
10807
            'type' => 'vertical',
10808
            'ellipsoid' => null,
10809
            'prime_meridian' => null,
10810
            'conventional_rs' => null,
10811
            'frame_reference_epoch' => null,
10812
        ],
10813
        'urn:ogc:def:datum:EPSG::5134' => [
10814
            'name' => 'Black Sea',
10815
            'type' => 'vertical',
10816
            'ellipsoid' => null,
10817
            'prime_meridian' => null,
10818
            'conventional_rs' => null,
10819
            'frame_reference_epoch' => null,
10820
        ],
10821
        'urn:ogc:def:datum:EPSG::5135' => [
10822
            'name' => 'Hong Kong Principal Datum',
10823
            'type' => 'vertical',
10824
            'ellipsoid' => null,
10825
            'prime_meridian' => null,
10826
            'conventional_rs' => null,
10827
            'frame_reference_epoch' => null,
10828
        ],
10829
        'urn:ogc:def:datum:EPSG::5136' => [
10830
            'name' => 'Hong Kong Chart Datum',
10831
            'type' => 'vertical',
10832
            'ellipsoid' => null,
10833
            'prime_meridian' => null,
10834
            'conventional_rs' => null,
10835
            'frame_reference_epoch' => null,
10836
        ],
10837
        'urn:ogc:def:datum:EPSG::5137' => [
10838
            'name' => 'Yellow Sea 1985',
10839
            'type' => 'vertical',
10840
            'ellipsoid' => null,
10841
            'prime_meridian' => null,
10842
            'conventional_rs' => null,
10843
            'frame_reference_epoch' => null,
10844
        ],
10845
        'urn:ogc:def:datum:EPSG::5138' => [
10846
            'name' => 'Ordnance Datum Newlyn (Orkney Isles)',
10847
            'type' => 'vertical',
10848
            'ellipsoid' => null,
10849
            'prime_meridian' => null,
10850
            'conventional_rs' => 1026,
10851
            'frame_reference_epoch' => null,
10852
        ],
10853
        'urn:ogc:def:datum:EPSG::5139' => [
10854
            'name' => 'Fair Isle',
10855
            'type' => 'vertical',
10856
            'ellipsoid' => null,
10857
            'prime_meridian' => null,
10858
            'conventional_rs' => null,
10859
            'frame_reference_epoch' => null,
10860
        ],
10861
        'urn:ogc:def:datum:EPSG::5140' => [
10862
            'name' => 'Lerwick',
10863
            'type' => 'vertical',
10864
            'ellipsoid' => null,
10865
            'prime_meridian' => null,
10866
            'conventional_rs' => 1026,
10867
            'frame_reference_epoch' => null,
10868
        ],
10869
        'urn:ogc:def:datum:EPSG::5141' => [
10870
            'name' => 'Foula',
10871
            'type' => 'vertical',
10872
            'ellipsoid' => null,
10873
            'prime_meridian' => null,
10874
            'conventional_rs' => null,
10875
            'frame_reference_epoch' => null,
10876
        ],
10877
        'urn:ogc:def:datum:EPSG::5142' => [
10878
            'name' => 'Sule Skerry',
10879
            'type' => 'vertical',
10880
            'ellipsoid' => null,
10881
            'prime_meridian' => null,
10882
            'conventional_rs' => null,
10883
            'frame_reference_epoch' => null,
10884
        ],
10885
        'urn:ogc:def:datum:EPSG::5143' => [
10886
            'name' => 'North Rona',
10887
            'type' => 'vertical',
10888
            'ellipsoid' => null,
10889
            'prime_meridian' => null,
10890
            'conventional_rs' => null,
10891
            'frame_reference_epoch' => null,
10892
        ],
10893
        'urn:ogc:def:datum:EPSG::5144' => [
10894
            'name' => 'Stornoway',
10895
            'type' => 'vertical',
10896
            'ellipsoid' => null,
10897
            'prime_meridian' => null,
10898
            'conventional_rs' => 1026,
10899
            'frame_reference_epoch' => null,
10900
        ],
10901
        'urn:ogc:def:datum:EPSG::5145' => [
10902
            'name' => 'St. Kilda',
10903
            'type' => 'vertical',
10904
            'ellipsoid' => null,
10905
            'prime_meridian' => null,
10906
            'conventional_rs' => null,
10907
            'frame_reference_epoch' => null,
10908
        ],
10909
        'urn:ogc:def:datum:EPSG::5146' => [
10910
            'name' => 'Flannan Isles',
10911
            'type' => 'vertical',
10912
            'ellipsoid' => null,
10913
            'prime_meridian' => null,
10914
            'conventional_rs' => null,
10915
            'frame_reference_epoch' => null,
10916
        ],
10917
        'urn:ogc:def:datum:EPSG::5147' => [
10918
            'name' => 'St. Marys',
10919
            'type' => 'vertical',
10920
            'ellipsoid' => null,
10921
            'prime_meridian' => null,
10922
            'conventional_rs' => 1026,
10923
            'frame_reference_epoch' => null,
10924
        ],
10925
        'urn:ogc:def:datum:EPSG::5148' => [
10926
            'name' => 'Douglas',
10927
            'type' => 'vertical',
10928
            'ellipsoid' => null,
10929
            'prime_meridian' => null,
10930
            'conventional_rs' => 1026,
10931
            'frame_reference_epoch' => null,
10932
        ],
10933
        'urn:ogc:def:datum:EPSG::5149' => [
10934
            'name' => 'Fao',
10935
            'type' => 'vertical',
10936
            'ellipsoid' => null,
10937
            'prime_meridian' => null,
10938
            'conventional_rs' => null,
10939
            'frame_reference_epoch' => null,
10940
        ],
10941
        'urn:ogc:def:datum:EPSG::5150' => [
10942
            'name' => 'Bandar Abbas',
10943
            'type' => 'vertical',
10944
            'ellipsoid' => null,
10945
            'prime_meridian' => null,
10946
            'conventional_rs' => null,
10947
            'frame_reference_epoch' => null,
10948
        ],
10949
        'urn:ogc:def:datum:EPSG::5151' => [
10950
            'name' => 'Nivellement General de Nouvelle Caledonie',
10951
            'type' => 'vertical',
10952
            'ellipsoid' => null,
10953
            'prime_meridian' => null,
10954
            'conventional_rs' => null,
10955
            'frame_reference_epoch' => null,
10956
        ],
10957
        'urn:ogc:def:datum:EPSG::5152' => [
10958
            'name' => 'Poolbeg',
10959
            'type' => 'vertical',
10960
            'ellipsoid' => null,
10961
            'prime_meridian' => null,
10962
            'conventional_rs' => null,
10963
            'frame_reference_epoch' => null,
10964
        ],
10965
        'urn:ogc:def:datum:EPSG::5153' => [
10966
            'name' => 'Nivellement General Guyanais 1977',
10967
            'type' => 'vertical',
10968
            'ellipsoid' => null,
10969
            'prime_meridian' => null,
10970
            'conventional_rs' => null,
10971
            'frame_reference_epoch' => null,
10972
        ],
10973
        'urn:ogc:def:datum:EPSG::5154' => [
10974
            'name' => 'Martinique 1987',
10975
            'type' => 'vertical',
10976
            'ellipsoid' => null,
10977
            'prime_meridian' => null,
10978
            'conventional_rs' => null,
10979
            'frame_reference_epoch' => null,
10980
        ],
10981
        'urn:ogc:def:datum:EPSG::5155' => [
10982
            'name' => 'Guadeloupe 1988',
10983
            'type' => 'vertical',
10984
            'ellipsoid' => null,
10985
            'prime_meridian' => null,
10986
            'conventional_rs' => null,
10987
            'frame_reference_epoch' => null,
10988
        ],
10989
        'urn:ogc:def:datum:EPSG::5156' => [
10990
            'name' => 'Reunion 1989',
10991
            'type' => 'vertical',
10992
            'ellipsoid' => null,
10993
            'prime_meridian' => null,
10994
            'conventional_rs' => null,
10995
            'frame_reference_epoch' => null,
10996
        ],
10997
        'urn:ogc:def:datum:EPSG::5157' => [
10998
            'name' => 'Auckland 1946',
10999
            'type' => 'vertical',
11000
            'ellipsoid' => null,
11001
            'prime_meridian' => null,
11002
            'conventional_rs' => null,
11003
            'frame_reference_epoch' => null,
11004
        ],
11005
        'urn:ogc:def:datum:EPSG::5158' => [
11006
            'name' => 'Bluff 1955',
11007
            'type' => 'vertical',
11008
            'ellipsoid' => null,
11009
            'prime_meridian' => null,
11010
            'conventional_rs' => null,
11011
            'frame_reference_epoch' => null,
11012
        ],
11013
        'urn:ogc:def:datum:EPSG::5159' => [
11014
            'name' => 'Dunedin 1958',
11015
            'type' => 'vertical',
11016
            'ellipsoid' => null,
11017
            'prime_meridian' => null,
11018
            'conventional_rs' => null,
11019
            'frame_reference_epoch' => null,
11020
        ],
11021
        'urn:ogc:def:datum:EPSG::5160' => [
11022
            'name' => 'Gisborne 1926',
11023
            'type' => 'vertical',
11024
            'ellipsoid' => null,
11025
            'prime_meridian' => null,
11026
            'conventional_rs' => null,
11027
            'frame_reference_epoch' => null,
11028
        ],
11029
        'urn:ogc:def:datum:EPSG::5161' => [
11030
            'name' => 'Lyttelton 1937',
11031
            'type' => 'vertical',
11032
            'ellipsoid' => null,
11033
            'prime_meridian' => null,
11034
            'conventional_rs' => null,
11035
            'frame_reference_epoch' => null,
11036
        ],
11037
        'urn:ogc:def:datum:EPSG::5162' => [
11038
            'name' => 'Moturiki 1953',
11039
            'type' => 'vertical',
11040
            'ellipsoid' => null,
11041
            'prime_meridian' => null,
11042
            'conventional_rs' => null,
11043
            'frame_reference_epoch' => null,
11044
        ],
11045
        'urn:ogc:def:datum:EPSG::5163' => [
11046
            'name' => 'Napier 1962',
11047
            'type' => 'vertical',
11048
            'ellipsoid' => null,
11049
            'prime_meridian' => null,
11050
            'conventional_rs' => null,
11051
            'frame_reference_epoch' => null,
11052
        ],
11053
        'urn:ogc:def:datum:EPSG::5164' => [
11054
            'name' => 'Nelson 1955',
11055
            'type' => 'vertical',
11056
            'ellipsoid' => null,
11057
            'prime_meridian' => null,
11058
            'conventional_rs' => null,
11059
            'frame_reference_epoch' => null,
11060
        ],
11061
        'urn:ogc:def:datum:EPSG::5165' => [
11062
            'name' => 'One Tree Point 1964',
11063
            'type' => 'vertical',
11064
            'ellipsoid' => null,
11065
            'prime_meridian' => null,
11066
            'conventional_rs' => null,
11067
            'frame_reference_epoch' => null,
11068
        ],
11069
        'urn:ogc:def:datum:EPSG::5166' => [
11070
            'name' => 'Tararu 1952',
11071
            'type' => 'vertical',
11072
            'ellipsoid' => null,
11073
            'prime_meridian' => null,
11074
            'conventional_rs' => null,
11075
            'frame_reference_epoch' => null,
11076
        ],
11077
        'urn:ogc:def:datum:EPSG::5167' => [
11078
            'name' => 'Taranaki 1970',
11079
            'type' => 'vertical',
11080
            'ellipsoid' => null,
11081
            'prime_meridian' => null,
11082
            'conventional_rs' => null,
11083
            'frame_reference_epoch' => null,
11084
        ],
11085
        'urn:ogc:def:datum:EPSG::5168' => [
11086
            'name' => 'Wellington 1953',
11087
            'type' => 'vertical',
11088
            'ellipsoid' => null,
11089
            'prime_meridian' => null,
11090
            'conventional_rs' => null,
11091
            'frame_reference_epoch' => null,
11092
        ],
11093
        'urn:ogc:def:datum:EPSG::5169' => [
11094
            'name' => 'Waitangi (Chatham Island) 1959',
11095
            'type' => 'vertical',
11096
            'ellipsoid' => null,
11097
            'prime_meridian' => null,
11098
            'conventional_rs' => null,
11099
            'frame_reference_epoch' => null,
11100
        ],
11101
        'urn:ogc:def:datum:EPSG::5170' => [
11102
            'name' => 'Stewart Island 1977',
11103
            'type' => 'vertical',
11104
            'ellipsoid' => null,
11105
            'prime_meridian' => null,
11106
            'conventional_rs' => null,
11107
            'frame_reference_epoch' => null,
11108
        ],
11109
        'urn:ogc:def:datum:EPSG::5171' => [
11110
            'name' => 'EGM96 geoid',
11111
            'type' => 'vertical',
11112
            'ellipsoid' => null,
11113
            'prime_meridian' => null,
11114
            'conventional_rs' => null,
11115
            'frame_reference_epoch' => null,
11116
        ],
11117
        'urn:ogc:def:datum:EPSG::5172' => [
11118
            'name' => 'Nivellement General du Luxembourg 1995',
11119
            'type' => 'vertical',
11120
            'ellipsoid' => null,
11121
            'prime_meridian' => null,
11122
            'conventional_rs' => null,
11123
            'frame_reference_epoch' => null,
11124
        ],
11125
        'urn:ogc:def:datum:EPSG::5173' => [
11126
            'name' => 'Antalya',
11127
            'type' => 'vertical',
11128
            'ellipsoid' => null,
11129
            'prime_meridian' => null,
11130
            'conventional_rs' => null,
11131
            'frame_reference_epoch' => null,
11132
        ],
11133
        'urn:ogc:def:datum:EPSG::5174' => [
11134
            'name' => 'Norway Normal Null 1954',
11135
            'type' => 'vertical',
11136
            'ellipsoid' => null,
11137
            'prime_meridian' => null,
11138
            'conventional_rs' => null,
11139
            'frame_reference_epoch' => null,
11140
        ],
11141
        'urn:ogc:def:datum:EPSG::5175' => [
11142
            'name' => 'Durres',
11143
            'type' => 'vertical',
11144
            'ellipsoid' => null,
11145
            'prime_meridian' => null,
11146
            'conventional_rs' => null,
11147
            'frame_reference_epoch' => null,
11148
        ],
11149
        'urn:ogc:def:datum:EPSG::5176' => [
11150
            'name' => 'Gebrauchshohen ADRIA',
11151
            'type' => 'vertical',
11152
            'ellipsoid' => null,
11153
            'prime_meridian' => null,
11154
            'conventional_rs' => null,
11155
            'frame_reference_epoch' => null,
11156
        ],
11157
        'urn:ogc:def:datum:EPSG::5177' => [
11158
            'name' => 'Slovenian Vertical System 2000',
11159
            'type' => 'vertical',
11160
            'ellipsoid' => null,
11161
            'prime_meridian' => null,
11162
            'conventional_rs' => null,
11163
            'frame_reference_epoch' => null,
11164
        ],
11165
        'urn:ogc:def:datum:EPSG::5178' => [
11166
            'name' => 'Cascais',
11167
            'type' => 'vertical',
11168
            'ellipsoid' => null,
11169
            'prime_meridian' => null,
11170
            'conventional_rs' => null,
11171
            'frame_reference_epoch' => null,
11172
        ],
11173
        'urn:ogc:def:datum:EPSG::5179' => [
11174
            'name' => 'Constanta',
11175
            'type' => 'vertical',
11176
            'ellipsoid' => null,
11177
            'prime_meridian' => null,
11178
            'conventional_rs' => null,
11179
            'frame_reference_epoch' => null,
11180
        ],
11181
        'urn:ogc:def:datum:EPSG::5180' => [
11182
            'name' => 'Alicante',
11183
            'type' => 'vertical',
11184
            'ellipsoid' => null,
11185
            'prime_meridian' => null,
11186
            'conventional_rs' => null,
11187
            'frame_reference_epoch' => null,
11188
        ],
11189
        'urn:ogc:def:datum:EPSG::5181' => [
11190
            'name' => 'Deutsches Haupthoehennetz 1992',
11191
            'type' => 'vertical',
11192
            'ellipsoid' => null,
11193
            'prime_meridian' => null,
11194
            'conventional_rs' => null,
11195
            'frame_reference_epoch' => null,
11196
        ],
11197
        'urn:ogc:def:datum:EPSG::5182' => [
11198
            'name' => 'Deutsches Haupthoehennetz 1985',
11199
            'type' => 'vertical',
11200
            'ellipsoid' => null,
11201
            'prime_meridian' => null,
11202
            'conventional_rs' => null,
11203
            'frame_reference_epoch' => null,
11204
        ],
11205
        'urn:ogc:def:datum:EPSG::5183' => [
11206
            'name' => 'Staatlichen Nivellementnetzes 1976',
11207
            'type' => 'vertical',
11208
            'ellipsoid' => null,
11209
            'prime_meridian' => null,
11210
            'conventional_rs' => null,
11211
            'frame_reference_epoch' => null,
11212
        ],
11213
        'urn:ogc:def:datum:EPSG::5184' => [
11214
            'name' => 'Baltic 1982',
11215
            'type' => 'vertical',
11216
            'ellipsoid' => null,
11217
            'prime_meridian' => null,
11218
            'conventional_rs' => null,
11219
            'frame_reference_epoch' => null,
11220
        ],
11221
        'urn:ogc:def:datum:EPSG::5185' => [
11222
            'name' => 'Baltic 1980',
11223
            'type' => 'vertical',
11224
            'ellipsoid' => null,
11225
            'prime_meridian' => null,
11226
            'conventional_rs' => null,
11227
            'frame_reference_epoch' => null,
11228
        ],
11229
        'urn:ogc:def:datum:EPSG::5186' => [
11230
            'name' => 'Kuwait PWD',
11231
            'type' => 'vertical',
11232
            'ellipsoid' => null,
11233
            'prime_meridian' => null,
11234
            'conventional_rs' => null,
11235
            'frame_reference_epoch' => null,
11236
        ],
11237
        'urn:ogc:def:datum:EPSG::5187' => [
11238
            'name' => 'KOC Well Datum',
11239
            'type' => 'vertical',
11240
            'ellipsoid' => null,
11241
            'prime_meridian' => null,
11242
            'conventional_rs' => null,
11243
            'frame_reference_epoch' => null,
11244
        ],
11245
        'urn:ogc:def:datum:EPSG::5188' => [
11246
            'name' => 'KOC Construction Datum',
11247
            'type' => 'vertical',
11248
            'ellipsoid' => null,
11249
            'prime_meridian' => null,
11250
            'conventional_rs' => null,
11251
            'frame_reference_epoch' => null,
11252
        ],
11253
        'urn:ogc:def:datum:EPSG::5189' => [
11254
            'name' => 'Nivellement General de la Corse 1948',
11255
            'type' => 'vertical',
11256
            'ellipsoid' => null,
11257
            'prime_meridian' => null,
11258
            'conventional_rs' => null,
11259
            'frame_reference_epoch' => null,
11260
        ],
11261
        'urn:ogc:def:datum:EPSG::5190' => [
11262
            'name' => 'Danger 1950',
11263
            'type' => 'vertical',
11264
            'ellipsoid' => null,
11265
            'prime_meridian' => null,
11266
            'conventional_rs' => null,
11267
            'frame_reference_epoch' => null,
11268
        ],
11269
        'urn:ogc:def:datum:EPSG::5191' => [
11270
            'name' => 'Mayotte 1950',
11271
            'type' => 'vertical',
11272
            'ellipsoid' => null,
11273
            'prime_meridian' => null,
11274
            'conventional_rs' => null,
11275
            'frame_reference_epoch' => null,
11276
        ],
11277
        'urn:ogc:def:datum:EPSG::5192' => [
11278
            'name' => 'Martinique 1955',
11279
            'type' => 'vertical',
11280
            'ellipsoid' => null,
11281
            'prime_meridian' => null,
11282
            'conventional_rs' => null,
11283
            'frame_reference_epoch' => null,
11284
        ],
11285
        'urn:ogc:def:datum:EPSG::5193' => [
11286
            'name' => 'Guadeloupe 1951',
11287
            'type' => 'vertical',
11288
            'ellipsoid' => null,
11289
            'prime_meridian' => null,
11290
            'conventional_rs' => null,
11291
            'frame_reference_epoch' => null,
11292
        ],
11293
        'urn:ogc:def:datum:EPSG::5194' => [
11294
            'name' => 'Lagos 1955',
11295
            'type' => 'vertical',
11296
            'ellipsoid' => null,
11297
            'prime_meridian' => null,
11298
            'conventional_rs' => null,
11299
            'frame_reference_epoch' => null,
11300
        ],
11301
        'urn:ogc:def:datum:EPSG::5195' => [
11302
            'name' => 'Nivellement General de Polynesie Francaise',
11303
            'type' => 'vertical',
11304
            'ellipsoid' => null,
11305
            'prime_meridian' => null,
11306
            'conventional_rs' => null,
11307
            'frame_reference_epoch' => null,
11308
        ],
11309
        'urn:ogc:def:datum:EPSG::5196' => [
11310
            'name' => 'IGN 1966',
11311
            'type' => 'vertical',
11312
            'ellipsoid' => null,
11313
            'prime_meridian' => null,
11314
            'conventional_rs' => null,
11315
            'frame_reference_epoch' => null,
11316
        ],
11317
        'urn:ogc:def:datum:EPSG::5197' => [
11318
            'name' => 'Moorea SAU 1981',
11319
            'type' => 'vertical',
11320
            'ellipsoid' => null,
11321
            'prime_meridian' => null,
11322
            'conventional_rs' => null,
11323
            'frame_reference_epoch' => null,
11324
        ],
11325
        'urn:ogc:def:datum:EPSG::5198' => [
11326
            'name' => 'Raiatea SAU 2001',
11327
            'type' => 'vertical',
11328
            'ellipsoid' => null,
11329
            'prime_meridian' => null,
11330
            'conventional_rs' => null,
11331
            'frame_reference_epoch' => null,
11332
        ],
11333
        'urn:ogc:def:datum:EPSG::5199' => [
11334
            'name' => 'Maupiti SAU 2001',
11335
            'type' => 'vertical',
11336
            'ellipsoid' => null,
11337
            'prime_meridian' => null,
11338
            'conventional_rs' => null,
11339
            'frame_reference_epoch' => null,
11340
        ],
11341
        'urn:ogc:def:datum:EPSG::5200' => [
11342
            'name' => 'Huahine SAU 2001',
11343
            'type' => 'vertical',
11344
            'ellipsoid' => null,
11345
            'prime_meridian' => null,
11346
            'conventional_rs' => null,
11347
            'frame_reference_epoch' => null,
11348
        ],
11349
        'urn:ogc:def:datum:EPSG::5201' => [
11350
            'name' => 'Tahaa SAU 2001',
11351
            'type' => 'vertical',
11352
            'ellipsoid' => null,
11353
            'prime_meridian' => null,
11354
            'conventional_rs' => null,
11355
            'frame_reference_epoch' => null,
11356
        ],
11357
        'urn:ogc:def:datum:EPSG::5202' => [
11358
            'name' => 'Bora Bora SAU 2001',
11359
            'type' => 'vertical',
11360
            'ellipsoid' => null,
11361
            'prime_meridian' => null,
11362
            'conventional_rs' => null,
11363
            'frame_reference_epoch' => null,
11364
        ],
11365
        'urn:ogc:def:datum:EPSG::5203' => [
11366
            'name' => 'EGM84 geoid',
11367
            'type' => 'vertical',
11368
            'ellipsoid' => null,
11369
            'prime_meridian' => null,
11370
            'conventional_rs' => null,
11371
            'frame_reference_epoch' => null,
11372
        ],
11373
        'urn:ogc:def:datum:EPSG::5204' => [
11374
            'name' => 'International Great Lakes Datum 1955',
11375
            'type' => 'vertical',
11376
            'ellipsoid' => null,
11377
            'prime_meridian' => null,
11378
            'conventional_rs' => null,
11379
            'frame_reference_epoch' => null,
11380
        ],
11381
        'urn:ogc:def:datum:EPSG::5205' => [
11382
            'name' => 'International Great Lakes Datum 1985',
11383
            'type' => 'vertical',
11384
            'ellipsoid' => null,
11385
            'prime_meridian' => null,
11386
            'conventional_rs' => null,
11387
            'frame_reference_epoch' => null,
11388
        ],
11389
        'urn:ogc:def:datum:EPSG::5206' => [
11390
            'name' => 'Dansk Vertikal Reference 1990',
11391
            'type' => 'vertical',
11392
            'ellipsoid' => null,
11393
            'prime_meridian' => null,
11394
            'conventional_rs' => null,
11395
            'frame_reference_epoch' => null,
11396
        ],
11397
        'urn:ogc:def:datum:EPSG::5207' => [
11398
            'name' => 'Croatian Vertical Reference Datum 1971',
11399
            'type' => 'vertical',
11400
            'ellipsoid' => null,
11401
            'prime_meridian' => null,
11402
            'conventional_rs' => null,
11403
            'frame_reference_epoch' => null,
11404
        ],
11405
        'urn:ogc:def:datum:EPSG::5208' => [
11406
            'name' => 'Rikets hojdsystem 2000',
11407
            'type' => 'vertical',
11408
            'ellipsoid' => null,
11409
            'prime_meridian' => null,
11410
            'conventional_rs' => null,
11411
            'frame_reference_epoch' => 2000.0,
11412
        ],
11413
        'urn:ogc:def:datum:EPSG::5209' => [
11414
            'name' => 'Rikets hojdsystem 1900',
11415
            'type' => 'vertical',
11416
            'ellipsoid' => null,
11417
            'prime_meridian' => null,
11418
            'conventional_rs' => null,
11419
            'frame_reference_epoch' => null,
11420
        ],
11421
        'urn:ogc:def:datum:EPSG::5210' => [
11422
            'name' => 'IGN 1988 LS',
11423
            'type' => 'vertical',
11424
            'ellipsoid' => null,
11425
            'prime_meridian' => null,
11426
            'conventional_rs' => null,
11427
            'frame_reference_epoch' => null,
11428
        ],
11429
        'urn:ogc:def:datum:EPSG::5211' => [
11430
            'name' => 'IGN 1988 MG',
11431
            'type' => 'vertical',
11432
            'ellipsoid' => null,
11433
            'prime_meridian' => null,
11434
            'conventional_rs' => null,
11435
            'frame_reference_epoch' => null,
11436
        ],
11437
        'urn:ogc:def:datum:EPSG::5212' => [
11438
            'name' => 'IGN 1992 LD',
11439
            'type' => 'vertical',
11440
            'ellipsoid' => null,
11441
            'prime_meridian' => null,
11442
            'conventional_rs' => null,
11443
            'frame_reference_epoch' => null,
11444
        ],
11445
        'urn:ogc:def:datum:EPSG::5213' => [
11446
            'name' => 'IGN 1988 SB',
11447
            'type' => 'vertical',
11448
            'ellipsoid' => null,
11449
            'prime_meridian' => null,
11450
            'conventional_rs' => null,
11451
            'frame_reference_epoch' => null,
11452
        ],
11453
        'urn:ogc:def:datum:EPSG::5214' => [
11454
            'name' => 'IGN 1988 SM',
11455
            'type' => 'vertical',
11456
            'ellipsoid' => null,
11457
            'prime_meridian' => null,
11458
            'conventional_rs' => null,
11459
            'frame_reference_epoch' => null,
11460
        ],
11461
        'urn:ogc:def:datum:EPSG::5215' => [
11462
            'name' => 'European Vertical Reference Frame 2007',
11463
            'type' => 'vertical',
11464
            'ellipsoid' => null,
11465
            'prime_meridian' => null,
11466
            'conventional_rs' => null,
11467
            'frame_reference_epoch' => null,
11468
        ],
11469
        'urn:ogc:def:datum:EPSG::6001' => [
11470
            'name' => 'Not specified (based on Airy 1830 ellipsoid)',
11471
            'type' => 'geodetic',
11472
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001',
11473
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11474
            'conventional_rs' => null,
11475
            'frame_reference_epoch' => null,
11476
        ],
11477
        'urn:ogc:def:datum:EPSG::6002' => [
11478
            'name' => 'Not specified (based on Airy Modified 1849 ellipsoid)',
11479
            'type' => 'geodetic',
11480
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7002',
11481
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11482
            'conventional_rs' => null,
11483
            'frame_reference_epoch' => null,
11484
        ],
11485
        'urn:ogc:def:datum:EPSG::6003' => [
11486
            'name' => 'Not specified (based on Australian National Spheroid)',
11487
            'type' => 'geodetic',
11488
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7003',
11489
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11490
            'conventional_rs' => null,
11491
            'frame_reference_epoch' => null,
11492
        ],
11493
        'urn:ogc:def:datum:EPSG::6004' => [
11494
            'name' => 'Not specified (based on Bessel 1841 ellipsoid)',
11495
            'type' => 'geodetic',
11496
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
11497
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11498
            'conventional_rs' => null,
11499
            'frame_reference_epoch' => null,
11500
        ],
11501
        'urn:ogc:def:datum:EPSG::6005' => [
11502
            'name' => 'Not specified (based on Bessel Modified ellipsoid)',
11503
            'type' => 'geodetic',
11504
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7005',
11505
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11506
            'conventional_rs' => null,
11507
            'frame_reference_epoch' => null,
11508
        ],
11509
        'urn:ogc:def:datum:EPSG::6006' => [
11510
            'name' => 'Not specified (based on Bessel Namibia ellipsoid)',
11511
            'type' => 'geodetic',
11512
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7046',
11513
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11514
            'conventional_rs' => null,
11515
            'frame_reference_epoch' => null,
11516
        ],
11517
        'urn:ogc:def:datum:EPSG::6007' => [
11518
            'name' => 'Not specified (based on Clarke 1858 ellipsoid)',
11519
            'type' => 'geodetic',
11520
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007',
11521
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11522
            'conventional_rs' => null,
11523
            'frame_reference_epoch' => null,
11524
        ],
11525
        'urn:ogc:def:datum:EPSG::6008' => [
11526
            'name' => 'Not specified (based on Clarke 1866 ellipsoid)',
11527
            'type' => 'geodetic',
11528
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11529
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11530
            'conventional_rs' => null,
11531
            'frame_reference_epoch' => null,
11532
        ],
11533
        'urn:ogc:def:datum:EPSG::6010' => [
11534
            'name' => 'Not specified (based on Clarke 1880 (Benoit) ellipsoid)',
11535
            'type' => 'geodetic',
11536
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7010',
11537
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11538
            'conventional_rs' => null,
11539
            'frame_reference_epoch' => null,
11540
        ],
11541
        'urn:ogc:def:datum:EPSG::6011' => [
11542
            'name' => 'Not specified (based on Clarke 1880 (IGN) ellipsoid)',
11543
            'type' => 'geodetic',
11544
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
11545
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11546
            'conventional_rs' => null,
11547
            'frame_reference_epoch' => null,
11548
        ],
11549
        'urn:ogc:def:datum:EPSG::6012' => [
11550
            'name' => 'Not specified (based on Clarke 1880 (RGS) ellipsoid)',
11551
            'type' => 'geodetic',
11552
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11553
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11554
            'conventional_rs' => null,
11555
            'frame_reference_epoch' => null,
11556
        ],
11557
        'urn:ogc:def:datum:EPSG::6013' => [
11558
            'name' => 'Not specified (based on Clarke 1880 (Arc) ellipsoid)',
11559
            'type' => 'geodetic',
11560
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7013',
11561
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11562
            'conventional_rs' => null,
11563
            'frame_reference_epoch' => null,
11564
        ],
11565
        'urn:ogc:def:datum:EPSG::6014' => [
11566
            'name' => 'Not specified (based on Clarke 1880 (SGA 1922) ellipsoid)',
11567
            'type' => 'geodetic',
11568
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7014',
11569
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11570
            'conventional_rs' => null,
11571
            'frame_reference_epoch' => null,
11572
        ],
11573
        'urn:ogc:def:datum:EPSG::6015' => [
11574
            'name' => 'Not specified (based on Everest 1830 (1937 Adjustment) ellipsoid)',
11575
            'type' => 'geodetic',
11576
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
11577
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11578
            'conventional_rs' => null,
11579
            'frame_reference_epoch' => null,
11580
        ],
11581
        'urn:ogc:def:datum:EPSG::6016' => [
11582
            'name' => 'Not specified (based on Everest 1830 (1967 Definition) ellipsoid)',
11583
            'type' => 'geodetic',
11584
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7016',
11585
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11586
            'conventional_rs' => null,
11587
            'frame_reference_epoch' => null,
11588
        ],
11589
        'urn:ogc:def:datum:EPSG::6018' => [
11590
            'name' => 'Not specified (based on Everest 1830 Modified ellipsoid)',
11591
            'type' => 'geodetic',
11592
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7018',
11593
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11594
            'conventional_rs' => null,
11595
            'frame_reference_epoch' => null,
11596
        ],
11597
        'urn:ogc:def:datum:EPSG::6019' => [
11598
            'name' => 'Not specified (based on GRS 1980 ellipsoid)',
11599
            'type' => 'geodetic',
11600
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11601
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11602
            'conventional_rs' => null,
11603
            'frame_reference_epoch' => null,
11604
        ],
11605
        'urn:ogc:def:datum:EPSG::6020' => [
11606
            'name' => 'Not specified (based on Helmert 1906 ellipsoid)',
11607
            'type' => 'geodetic',
11608
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020',
11609
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11610
            'conventional_rs' => null,
11611
            'frame_reference_epoch' => null,
11612
        ],
11613
        'urn:ogc:def:datum:EPSG::6021' => [
11614
            'name' => 'Not specified (based on Indonesian National Spheroid)',
11615
            'type' => 'geodetic',
11616
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7021',
11617
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11618
            'conventional_rs' => null,
11619
            'frame_reference_epoch' => null,
11620
        ],
11621
        'urn:ogc:def:datum:EPSG::6022' => [
11622
            'name' => 'Not specified (based on International 1924 ellipsoid)',
11623
            'type' => 'geodetic',
11624
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11625
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11626
            'conventional_rs' => null,
11627
            'frame_reference_epoch' => null,
11628
        ],
11629
        'urn:ogc:def:datum:EPSG::6024' => [
11630
            'name' => 'Not specified (based on Krassowsky 1940 ellipsoid)',
11631
            'type' => 'geodetic',
11632
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
11633
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11634
            'conventional_rs' => null,
11635
            'frame_reference_epoch' => null,
11636
        ],
11637
        'urn:ogc:def:datum:EPSG::6025' => [
11638
            'name' => 'Not specified (based on NWL 9D ellipsoid)',
11639
            'type' => 'geodetic',
11640
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7025',
11641
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11642
            'conventional_rs' => null,
11643
            'frame_reference_epoch' => null,
11644
        ],
11645
        'urn:ogc:def:datum:EPSG::6027' => [
11646
            'name' => 'Not specified (based on Plessis 1817 ellipsoid)',
11647
            'type' => 'geodetic',
11648
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7027',
11649
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11650
            'conventional_rs' => null,
11651
            'frame_reference_epoch' => null,
11652
        ],
11653
        'urn:ogc:def:datum:EPSG::6028' => [
11654
            'name' => 'Not specified (based on Struve 1860 ellipsoid)',
11655
            'type' => 'geodetic',
11656
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7028',
11657
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11658
            'conventional_rs' => null,
11659
            'frame_reference_epoch' => null,
11660
        ],
11661
        'urn:ogc:def:datum:EPSG::6029' => [
11662
            'name' => 'Not specified (based on War Office ellipsoid)',
11663
            'type' => 'geodetic',
11664
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7029',
11665
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11666
            'conventional_rs' => null,
11667
            'frame_reference_epoch' => null,
11668
        ],
11669
        'urn:ogc:def:datum:EPSG::6030' => [
11670
            'name' => 'Not specified (based on WGS 84 ellipsoid)',
11671
            'type' => 'geodetic',
11672
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
11673
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11674
            'conventional_rs' => null,
11675
            'frame_reference_epoch' => null,
11676
        ],
11677
        'urn:ogc:def:datum:EPSG::6031' => [
11678
            'name' => 'Not specified (based on GEM 10C ellipsoid)',
11679
            'type' => 'geodetic',
11680
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7031',
11681
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11682
            'conventional_rs' => null,
11683
            'frame_reference_epoch' => null,
11684
        ],
11685
        'urn:ogc:def:datum:EPSG::6032' => [
11686
            'name' => 'Not specified (based on OSU86F ellipsoid)',
11687
            'type' => 'geodetic',
11688
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7032',
11689
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11690
            'conventional_rs' => null,
11691
            'frame_reference_epoch' => null,
11692
        ],
11693
        'urn:ogc:def:datum:EPSG::6033' => [
11694
            'name' => 'Not specified (based on OSU91A ellipsoid)',
11695
            'type' => 'geodetic',
11696
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7033',
11697
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11698
            'conventional_rs' => null,
11699
            'frame_reference_epoch' => null,
11700
        ],
11701
        'urn:ogc:def:datum:EPSG::6034' => [
11702
            'name' => 'Not specified (based on Clarke 1880 ellipsoid)',
11703
            'type' => 'geodetic',
11704
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7034',
11705
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11706
            'conventional_rs' => null,
11707
            'frame_reference_epoch' => null,
11708
        ],
11709
        'urn:ogc:def:datum:EPSG::6036' => [
11710
            'name' => 'Not specified (based on GRS 1967 ellipsoid)',
11711
            'type' => 'geodetic',
11712
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7036',
11713
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11714
            'conventional_rs' => null,
11715
            'frame_reference_epoch' => null,
11716
        ],
11717
        'urn:ogc:def:datum:EPSG::6041' => [
11718
            'name' => 'Not specified (based on Average Terrestrial System 1977 ellipsoid)',
11719
            'type' => 'geodetic',
11720
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7041',
11721
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11722
            'conventional_rs' => null,
11723
            'frame_reference_epoch' => null,
11724
        ],
11725
        'urn:ogc:def:datum:EPSG::6042' => [
11726
            'name' => 'Not specified (based on Everest (1830 Definition) ellipsoid)',
11727
            'type' => 'geodetic',
11728
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7042',
11729
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11730
            'conventional_rs' => null,
11731
            'frame_reference_epoch' => null,
11732
        ],
11733
        'urn:ogc:def:datum:EPSG::6043' => [
11734
            'name' => 'Not specified (based on WGS 72 ellipsoid)',
11735
            'type' => 'geodetic',
11736
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7043',
11737
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11738
            'conventional_rs' => null,
11739
            'frame_reference_epoch' => null,
11740
        ],
11741
        'urn:ogc:def:datum:EPSG::6044' => [
11742
            'name' => 'Not specified (based on Everest 1830 (1962 Definition) ellipsoid)',
11743
            'type' => 'geodetic',
11744
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7044',
11745
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11746
            'conventional_rs' => null,
11747
            'frame_reference_epoch' => null,
11748
        ],
11749
        'urn:ogc:def:datum:EPSG::6045' => [
11750
            'name' => 'Not specified (based on Everest 1830 (1975 Definition) ellipsoid)',
11751
            'type' => 'geodetic',
11752
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7045',
11753
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11754
            'conventional_rs' => null,
11755
            'frame_reference_epoch' => null,
11756
        ],
11757
        'urn:ogc:def:datum:EPSG::6047' => [
11758
            'name' => 'Not specified (based on GRS 1980 Authalic Sphere)',
11759
            'type' => 'geodetic',
11760
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7048',
11761
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11762
            'conventional_rs' => null,
11763
            'frame_reference_epoch' => null,
11764
        ],
11765
        'urn:ogc:def:datum:EPSG::6052' => [
11766
            'name' => 'Not specified (based on Clarke 1866 Authalic Sphere)',
11767
            'type' => 'geodetic',
11768
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7052',
11769
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11770
            'conventional_rs' => null,
11771
            'frame_reference_epoch' => null,
11772
        ],
11773
        'urn:ogc:def:datum:EPSG::6053' => [
11774
            'name' => 'Not specified (based on International 1924 Authalic Sphere)',
11775
            'type' => 'geodetic',
11776
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7057',
11777
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11778
            'conventional_rs' => null,
11779
            'frame_reference_epoch' => null,
11780
        ],
11781
        'urn:ogc:def:datum:EPSG::6054' => [
11782
            'name' => 'Not specified (based on Hughes 1980 ellipsoid)',
11783
            'type' => 'geodetic',
11784
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7058',
11785
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11786
            'conventional_rs' => null,
11787
            'frame_reference_epoch' => null,
11788
        ],
11789
        'urn:ogc:def:datum:EPSG::6120' => [
11790
            'name' => 'Greek',
11791
            'type' => 'geodetic',
11792
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
11793
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11794
            'conventional_rs' => null,
11795
            'frame_reference_epoch' => null,
11796
        ],
11797
        'urn:ogc:def:datum:EPSG::6121' => [
11798
            'name' => 'Greek Geodetic Reference System 1987',
11799
            'type' => 'geodetic',
11800
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11801
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11802
            'conventional_rs' => null,
11803
            'frame_reference_epoch' => null,
11804
        ],
11805
        'urn:ogc:def:datum:EPSG::6122' => [
11806
            'name' => 'Average Terrestrial System 1977',
11807
            'type' => 'geodetic',
11808
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7041',
11809
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11810
            'conventional_rs' => null,
11811
            'frame_reference_epoch' => null,
11812
        ],
11813
        'urn:ogc:def:datum:EPSG::6123' => [
11814
            'name' => 'Kartastokoordinaattijarjestelma (1966)',
11815
            'type' => 'geodetic',
11816
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11817
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11818
            'conventional_rs' => null,
11819
            'frame_reference_epoch' => null,
11820
        ],
11821
        'urn:ogc:def:datum:EPSG::6124' => [
11822
            'name' => 'Rikets koordinatsystem 1990',
11823
            'type' => 'geodetic',
11824
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
11825
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11826
            'conventional_rs' => null,
11827
            'frame_reference_epoch' => null,
11828
        ],
11829
        'urn:ogc:def:datum:EPSG::6126' => [
11830
            'name' => 'Lithuania 1994 (ETRS89)',
11831
            'type' => 'geodetic',
11832
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11833
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11834
            'conventional_rs' => null,
11835
            'frame_reference_epoch' => null,
11836
        ],
11837
        'urn:ogc:def:datum:EPSG::6127' => [
11838
            'name' => 'Tete',
11839
            'type' => 'geodetic',
11840
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11841
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11842
            'conventional_rs' => null,
11843
            'frame_reference_epoch' => null,
11844
        ],
11845
        'urn:ogc:def:datum:EPSG::6128' => [
11846
            'name' => 'Madzansua',
11847
            'type' => 'geodetic',
11848
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11849
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11850
            'conventional_rs' => null,
11851
            'frame_reference_epoch' => null,
11852
        ],
11853
        'urn:ogc:def:datum:EPSG::6129' => [
11854
            'name' => 'Observatario',
11855
            'type' => 'geodetic',
11856
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11857
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11858
            'conventional_rs' => null,
11859
            'frame_reference_epoch' => null,
11860
        ],
11861
        'urn:ogc:def:datum:EPSG::6130' => [
11862
            'name' => 'Moznet (ITRF94)',
11863
            'type' => 'geodetic',
11864
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
11865
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11866
            'conventional_rs' => null,
11867
            'frame_reference_epoch' => null,
11868
        ],
11869
        'urn:ogc:def:datum:EPSG::6131' => [
11870
            'name' => 'Indian 1960',
11871
            'type' => 'geodetic',
11872
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
11873
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11874
            'conventional_rs' => null,
11875
            'frame_reference_epoch' => null,
11876
        ],
11877
        'urn:ogc:def:datum:EPSG::6132' => [
11878
            'name' => 'Final Datum 1958',
11879
            'type' => 'geodetic',
11880
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11881
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11882
            'conventional_rs' => null,
11883
            'frame_reference_epoch' => null,
11884
        ],
11885
        'urn:ogc:def:datum:EPSG::6133' => [
11886
            'name' => 'Estonia 1992',
11887
            'type' => 'geodetic',
11888
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11889
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11890
            'conventional_rs' => null,
11891
            'frame_reference_epoch' => null,
11892
        ],
11893
        'urn:ogc:def:datum:EPSG::6134' => [
11894
            'name' => 'PDO Survey Datum 1993',
11895
            'type' => 'geodetic',
11896
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11897
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11898
            'conventional_rs' => null,
11899
            'frame_reference_epoch' => null,
11900
        ],
11901
        'urn:ogc:def:datum:EPSG::6135' => [
11902
            'name' => 'Old Hawaiian',
11903
            'type' => 'geodetic',
11904
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11905
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11906
            'conventional_rs' => null,
11907
            'frame_reference_epoch' => null,
11908
        ],
11909
        'urn:ogc:def:datum:EPSG::6136' => [
11910
            'name' => 'St. Lawrence Island',
11911
            'type' => 'geodetic',
11912
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11913
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11914
            'conventional_rs' => null,
11915
            'frame_reference_epoch' => null,
11916
        ],
11917
        'urn:ogc:def:datum:EPSG::6137' => [
11918
            'name' => 'St. Paul Island',
11919
            'type' => 'geodetic',
11920
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11921
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11922
            'conventional_rs' => null,
11923
            'frame_reference_epoch' => null,
11924
        ],
11925
        'urn:ogc:def:datum:EPSG::6138' => [
11926
            'name' => 'St. George Island',
11927
            'type' => 'geodetic',
11928
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11929
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11930
            'conventional_rs' => null,
11931
            'frame_reference_epoch' => null,
11932
        ],
11933
        'urn:ogc:def:datum:EPSG::6139' => [
11934
            'name' => 'Puerto Rico',
11935
            'type' => 'geodetic',
11936
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11937
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11938
            'conventional_rs' => null,
11939
            'frame_reference_epoch' => null,
11940
        ],
11941
        'urn:ogc:def:datum:EPSG::6140' => [
11942
            'name' => 'NAD83 Canadian Spatial Reference System',
11943
            'type' => 'geodetic',
11944
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11945
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11946
            'conventional_rs' => null,
11947
            'frame_reference_epoch' => null,
11948
        ],
11949
        'urn:ogc:def:datum:EPSG::6141' => [
11950
            'name' => 'Israel 1993',
11951
            'type' => 'geodetic',
11952
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11953
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11954
            'conventional_rs' => null,
11955
            'frame_reference_epoch' => null,
11956
        ],
11957
        'urn:ogc:def:datum:EPSG::6142' => [
11958
            'name' => 'Locodjo 1965',
11959
            'type' => 'geodetic',
11960
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11961
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11962
            'conventional_rs' => null,
11963
            'frame_reference_epoch' => null,
11964
        ],
11965
        'urn:ogc:def:datum:EPSG::6143' => [
11966
            'name' => 'Abidjan 1987',
11967
            'type' => 'geodetic',
11968
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11969
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11970
            'conventional_rs' => null,
11971
            'frame_reference_epoch' => null,
11972
        ],
11973
        'urn:ogc:def:datum:EPSG::6144' => [
11974
            'name' => 'Kalianpur 1937',
11975
            'type' => 'geodetic',
11976
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
11977
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11978
            'conventional_rs' => null,
11979
            'frame_reference_epoch' => null,
11980
        ],
11981
        'urn:ogc:def:datum:EPSG::6145' => [
11982
            'name' => 'Kalianpur 1962',
11983
            'type' => 'geodetic',
11984
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7044',
11985
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11986
            'conventional_rs' => null,
11987
            'frame_reference_epoch' => null,
11988
        ],
11989
        'urn:ogc:def:datum:EPSG::6146' => [
11990
            'name' => 'Kalianpur 1975',
11991
            'type' => 'geodetic',
11992
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7045',
11993
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11994
            'conventional_rs' => null,
11995
            'frame_reference_epoch' => null,
11996
        ],
11997
        'urn:ogc:def:datum:EPSG::6147' => [
11998
            'name' => 'Hanoi 1972',
11999
            'type' => 'geodetic',
12000
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
12001
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12002
            'conventional_rs' => null,
12003
            'frame_reference_epoch' => null,
12004
        ],
12005
        'urn:ogc:def:datum:EPSG::6148' => [
12006
            'name' => 'Hartebeesthoek94',
12007
            'type' => 'geodetic',
12008
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
12009
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12010
            'conventional_rs' => null,
12011
            'frame_reference_epoch' => null,
12012
        ],
12013
        'urn:ogc:def:datum:EPSG::6149' => [
12014
            'name' => 'CH1903',
12015
            'type' => 'geodetic',
12016
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12017
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12018
            'conventional_rs' => null,
12019
            'frame_reference_epoch' => null,
12020
        ],
12021
        'urn:ogc:def:datum:EPSG::6150' => [
12022
            'name' => 'CH1903+',
12023
            'type' => 'geodetic',
12024
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12025
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12026
            'conventional_rs' => null,
12027
            'frame_reference_epoch' => null,
12028
        ],
12029
        'urn:ogc:def:datum:EPSG::6151' => [
12030
            'name' => 'Swiss Terrestrial Reference System 1995',
12031
            'type' => 'geodetic',
12032
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12033
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12034
            'conventional_rs' => null,
12035
            'frame_reference_epoch' => null,
12036
        ],
12037
        'urn:ogc:def:datum:EPSG::6152' => [
12038
            'name' => 'NAD83 (High Accuracy Reference Network)',
12039
            'type' => 'geodetic',
12040
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12041
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12042
            'conventional_rs' => null,
12043
            'frame_reference_epoch' => null,
12044
        ],
12045
        'urn:ogc:def:datum:EPSG::6153' => [
12046
            'name' => 'Rassadiran',
12047
            'type' => 'geodetic',
12048
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12049
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12050
            'conventional_rs' => null,
12051
            'frame_reference_epoch' => null,
12052
        ],
12053
        'urn:ogc:def:datum:EPSG::6154' => [
12054
            'name' => 'European Datum 1950(1977)',
12055
            'type' => 'geodetic',
12056
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12057
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12058
            'conventional_rs' => null,
12059
            'frame_reference_epoch' => null,
12060
        ],
12061
        'urn:ogc:def:datum:EPSG::6155' => [
12062
            'name' => 'Dabola 1981',
12063
            'type' => 'geodetic',
12064
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12065
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12066
            'conventional_rs' => null,
12067
            'frame_reference_epoch' => null,
12068
        ],
12069
        'urn:ogc:def:datum:EPSG::6156' => [
12070
            'name' => 'System of the Unified Trigonometrical Cadastral Network',
12071
            'type' => 'geodetic',
12072
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12073
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12074
            'conventional_rs' => null,
12075
            'frame_reference_epoch' => null,
12076
        ],
12077
        'urn:ogc:def:datum:EPSG::6157' => [
12078
            'name' => 'Mount Dillon',
12079
            'type' => 'geodetic',
12080
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007',
12081
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12082
            'conventional_rs' => null,
12083
            'frame_reference_epoch' => null,
12084
        ],
12085
        'urn:ogc:def:datum:EPSG::6158' => [
12086
            'name' => 'Naparima 1955',
12087
            'type' => 'geodetic',
12088
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12089
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12090
            'conventional_rs' => null,
12091
            'frame_reference_epoch' => null,
12092
        ],
12093
        'urn:ogc:def:datum:EPSG::6159' => [
12094
            'name' => 'European Libyan Datum 1979',
12095
            'type' => 'geodetic',
12096
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12097
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12098
            'conventional_rs' => null,
12099
            'frame_reference_epoch' => null,
12100
        ],
12101
        'urn:ogc:def:datum:EPSG::6160' => [
12102
            'name' => 'Chos Malal 1914',
12103
            'type' => 'geodetic',
12104
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12105
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12106
            'conventional_rs' => null,
12107
            'frame_reference_epoch' => null,
12108
        ],
12109
        'urn:ogc:def:datum:EPSG::6161' => [
12110
            'name' => 'Pampa del Castillo',
12111
            'type' => 'geodetic',
12112
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12113
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12114
            'conventional_rs' => null,
12115
            'frame_reference_epoch' => null,
12116
        ],
12117
        'urn:ogc:def:datum:EPSG::6162' => [
12118
            'name' => 'Korean Datum 1985',
12119
            'type' => 'geodetic',
12120
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12121
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12122
            'conventional_rs' => null,
12123
            'frame_reference_epoch' => null,
12124
        ],
12125
        'urn:ogc:def:datum:EPSG::6163' => [
12126
            'name' => 'Yemen National Geodetic Network 1996',
12127
            'type' => 'geodetic',
12128
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
12129
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12130
            'conventional_rs' => null,
12131
            'frame_reference_epoch' => null,
12132
        ],
12133
        'urn:ogc:def:datum:EPSG::6164' => [
12134
            'name' => 'South Yemen',
12135
            'type' => 'geodetic',
12136
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
12137
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12138
            'conventional_rs' => null,
12139
            'frame_reference_epoch' => null,
12140
        ],
12141
        'urn:ogc:def:datum:EPSG::6165' => [
12142
            'name' => 'Bissau',
12143
            'type' => 'geodetic',
12144
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12145
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12146
            'conventional_rs' => null,
12147
            'frame_reference_epoch' => null,
12148
        ],
12149
        'urn:ogc:def:datum:EPSG::6166' => [
12150
            'name' => 'Korean Datum 1995',
12151
            'type' => 'geodetic',
12152
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
12153
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12154
            'conventional_rs' => null,
12155
            'frame_reference_epoch' => null,
12156
        ],
12157
        'urn:ogc:def:datum:EPSG::6167' => [
12158
            'name' => 'New Zealand Geodetic Datum 2000',
12159
            'type' => 'geodetic',
12160
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12161
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12162
            'conventional_rs' => null,
12163
            'frame_reference_epoch' => null,
12164
        ],
12165
        'urn:ogc:def:datum:EPSG::6168' => [
12166
            'name' => 'Accra',
12167
            'type' => 'geodetic',
12168
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7029',
12169
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12170
            'conventional_rs' => null,
12171
            'frame_reference_epoch' => null,
12172
        ],
12173
        'urn:ogc:def:datum:EPSG::6169' => [
12174
            'name' => 'American Samoa 1962',
12175
            'type' => 'geodetic',
12176
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
12177
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12178
            'conventional_rs' => null,
12179
            'frame_reference_epoch' => null,
12180
        ],
12181
        'urn:ogc:def:datum:EPSG::6170' => [
12182
            'name' => 'Sistema de Referencia Geocentrico para America del Sur 1995',
12183
            'type' => 'geodetic',
12184
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12185
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12186
            'conventional_rs' => null,
12187
            'frame_reference_epoch' => null,
12188
        ],
12189
        'urn:ogc:def:datum:EPSG::6171' => [
12190
            'name' => 'Reseau Geodesique Francais 1993 v1',
12191
            'type' => 'geodetic',
12192
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12193
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12194
            'conventional_rs' => null,
12195
            'frame_reference_epoch' => null,
12196
        ],
12197
        'urn:ogc:def:datum:EPSG::6173' => [
12198
            'name' => 'IRENET95',
12199
            'type' => 'geodetic',
12200
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12201
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12202
            'conventional_rs' => null,
12203
            'frame_reference_epoch' => null,
12204
        ],
12205
        'urn:ogc:def:datum:EPSG::6174' => [
12206
            'name' => 'Sierra Leone Colony 1924',
12207
            'type' => 'geodetic',
12208
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7029',
12209
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12210
            'conventional_rs' => null,
12211
            'frame_reference_epoch' => null,
12212
        ],
12213
        'urn:ogc:def:datum:EPSG::6175' => [
12214
            'name' => 'Sierra Leone 1968',
12215
            'type' => 'geodetic',
12216
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12217
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12218
            'conventional_rs' => null,
12219
            'frame_reference_epoch' => null,
12220
        ],
12221
        'urn:ogc:def:datum:EPSG::6176' => [
12222
            'name' => 'Australian Antarctic Datum 1998',
12223
            'type' => 'geodetic',
12224
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12225
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12226
            'conventional_rs' => null,
12227
            'frame_reference_epoch' => null,
12228
        ],
12229
        'urn:ogc:def:datum:EPSG::6178' => [
12230
            'name' => 'Pulkovo 1942(83)',
12231
            'type' => 'geodetic',
12232
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
12233
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12234
            'conventional_rs' => null,
12235
            'frame_reference_epoch' => null,
12236
        ],
12237
        'urn:ogc:def:datum:EPSG::6179' => [
12238
            'name' => 'Pulkovo 1942(58)',
12239
            'type' => 'geodetic',
12240
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
12241
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12242
            'conventional_rs' => null,
12243
            'frame_reference_epoch' => null,
12244
        ],
12245
        'urn:ogc:def:datum:EPSG::6180' => [
12246
            'name' => 'Estonia 1997',
12247
            'type' => 'geodetic',
12248
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12249
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12250
            'conventional_rs' => null,
12251
            'frame_reference_epoch' => null,
12252
        ],
12253
        'urn:ogc:def:datum:EPSG::6181' => [
12254
            'name' => 'Luxembourg Reference Frame',
12255
            'type' => 'geodetic',
12256
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12257
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12258
            'conventional_rs' => null,
12259
            'frame_reference_epoch' => null,
12260
        ],
12261
        'urn:ogc:def:datum:EPSG::6182' => [
12262
            'name' => 'Azores Occidental Islands 1939',
12263
            'type' => 'geodetic',
12264
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12265
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12266
            'conventional_rs' => null,
12267
            'frame_reference_epoch' => null,
12268
        ],
12269
        'urn:ogc:def:datum:EPSG::6183' => [
12270
            'name' => 'Azores Central Islands 1948',
12271
            'type' => 'geodetic',
12272
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12273
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12274
            'conventional_rs' => null,
12275
            'frame_reference_epoch' => null,
12276
        ],
12277
        'urn:ogc:def:datum:EPSG::6184' => [
12278
            'name' => 'Azores Oriental Islands 1940',
12279
            'type' => 'geodetic',
12280
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12281
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12282
            'conventional_rs' => null,
12283
            'frame_reference_epoch' => null,
12284
        ],
12285
        'urn:ogc:def:datum:EPSG::6188' => [
12286
            'name' => 'OSNI 1952',
12287
            'type' => 'geodetic',
12288
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001',
12289
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12290
            'conventional_rs' => null,
12291
            'frame_reference_epoch' => null,
12292
        ],
12293
        'urn:ogc:def:datum:EPSG::6189' => [
12294
            'name' => 'Red Geodesica Venezolana',
12295
            'type' => 'geodetic',
12296
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12297
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12298
            'conventional_rs' => null,
12299
            'frame_reference_epoch' => null,
12300
        ],
12301
        'urn:ogc:def:datum:EPSG::6190' => [
12302
            'name' => 'Posiciones Geodesicas Argentinas 1998',
12303
            'type' => 'geodetic',
12304
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12305
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12306
            'conventional_rs' => null,
12307
            'frame_reference_epoch' => null,
12308
        ],
12309
        'urn:ogc:def:datum:EPSG::6191' => [
12310
            'name' => 'Albanian 1987',
12311
            'type' => 'geodetic',
12312
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
12313
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12314
            'conventional_rs' => null,
12315
            'frame_reference_epoch' => null,
12316
        ],
12317
        'urn:ogc:def:datum:EPSG::6192' => [
12318
            'name' => 'Douala 1948',
12319
            'type' => 'geodetic',
12320
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12321
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12322
            'conventional_rs' => null,
12323
            'frame_reference_epoch' => null,
12324
        ],
12325
        'urn:ogc:def:datum:EPSG::6193' => [
12326
            'name' => 'Manoca 1962',
12327
            'type' => 'geodetic',
12328
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12329
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12330
            'conventional_rs' => null,
12331
            'frame_reference_epoch' => null,
12332
        ],
12333
        'urn:ogc:def:datum:EPSG::6194' => [
12334
            'name' => 'Qornoq 1927',
12335
            'type' => 'geodetic',
12336
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12337
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12338
            'conventional_rs' => null,
12339
            'frame_reference_epoch' => null,
12340
        ],
12341
        'urn:ogc:def:datum:EPSG::6195' => [
12342
            'name' => 'Scoresbysund 1952',
12343
            'type' => 'geodetic',
12344
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12345
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12346
            'conventional_rs' => null,
12347
            'frame_reference_epoch' => null,
12348
        ],
12349
        'urn:ogc:def:datum:EPSG::6196' => [
12350
            'name' => 'Ammassalik 1958',
12351
            'type' => 'geodetic',
12352
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12353
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12354
            'conventional_rs' => null,
12355
            'frame_reference_epoch' => null,
12356
        ],
12357
        'urn:ogc:def:datum:EPSG::6197' => [
12358
            'name' => 'Garoua',
12359
            'type' => 'geodetic',
12360
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12361
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12362
            'conventional_rs' => null,
12363
            'frame_reference_epoch' => null,
12364
        ],
12365
        'urn:ogc:def:datum:EPSG::6198' => [
12366
            'name' => 'Kousseri',
12367
            'type' => 'geodetic',
12368
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12369
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12370
            'conventional_rs' => null,
12371
            'frame_reference_epoch' => null,
12372
        ],
12373
        'urn:ogc:def:datum:EPSG::6199' => [
12374
            'name' => 'Egypt 1930',
12375
            'type' => 'geodetic',
12376
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12377
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12378
            'conventional_rs' => null,
12379
            'frame_reference_epoch' => null,
12380
        ],
12381
        'urn:ogc:def:datum:EPSG::6200' => [
12382
            'name' => 'Pulkovo 1995',
12383
            'type' => 'geodetic',
12384
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
12385
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12386
            'conventional_rs' => null,
12387
            'frame_reference_epoch' => null,
12388
        ],
12389
        'urn:ogc:def:datum:EPSG::6201' => [
12390
            'name' => 'Adindan',
12391
            'type' => 'geodetic',
12392
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12393
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12394
            'conventional_rs' => null,
12395
            'frame_reference_epoch' => null,
12396
        ],
12397
        'urn:ogc:def:datum:EPSG::6202' => [
12398
            'name' => 'Australian Geodetic Datum 1966',
12399
            'type' => 'geodetic',
12400
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7003',
12401
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12402
            'conventional_rs' => null,
12403
            'frame_reference_epoch' => null,
12404
        ],
12405
        'urn:ogc:def:datum:EPSG::6203' => [
12406
            'name' => 'Australian Geodetic Datum 1984',
12407
            'type' => 'geodetic',
12408
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7003',
12409
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12410
            'conventional_rs' => null,
12411
            'frame_reference_epoch' => null,
12412
        ],
12413
        'urn:ogc:def:datum:EPSG::6204' => [
12414
            'name' => 'Ain el Abd 1970',
12415
            'type' => 'geodetic',
12416
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12417
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12418
            'conventional_rs' => null,
12419
            'frame_reference_epoch' => null,
12420
        ],
12421
        'urn:ogc:def:datum:EPSG::6205' => [
12422
            'name' => 'Afgooye',
12423
            'type' => 'geodetic',
12424
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
12425
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12426
            'conventional_rs' => null,
12427
            'frame_reference_epoch' => null,
12428
        ],
12429
        'urn:ogc:def:datum:EPSG::6206' => [
12430
            'name' => 'Agadez',
12431
            'type' => 'geodetic',
12432
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12433
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12434
            'conventional_rs' => null,
12435
            'frame_reference_epoch' => null,
12436
        ],
12437
        'urn:ogc:def:datum:EPSG::6207' => [
12438
            'name' => 'Lisbon 1937',
12439
            'type' => 'geodetic',
12440
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12441
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12442
            'conventional_rs' => null,
12443
            'frame_reference_epoch' => null,
12444
        ],
12445
        'urn:ogc:def:datum:EPSG::6208' => [
12446
            'name' => 'Aratu',
12447
            'type' => 'geodetic',
12448
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12449
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12450
            'conventional_rs' => null,
12451
            'frame_reference_epoch' => null,
12452
        ],
12453
        'urn:ogc:def:datum:EPSG::6209' => [
12454
            'name' => 'Arc 1950',
12455
            'type' => 'geodetic',
12456
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7013',
12457
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12458
            'conventional_rs' => null,
12459
            'frame_reference_epoch' => null,
12460
        ],
12461
        'urn:ogc:def:datum:EPSG::6210' => [
12462
            'name' => 'Arc 1960',
12463
            'type' => 'geodetic',
12464
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12465
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12466
            'conventional_rs' => null,
12467
            'frame_reference_epoch' => null,
12468
        ],
12469
        'urn:ogc:def:datum:EPSG::6211' => [
12470
            'name' => 'Batavia',
12471
            'type' => 'geodetic',
12472
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12473
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12474
            'conventional_rs' => null,
12475
            'frame_reference_epoch' => null,
12476
        ],
12477
        'urn:ogc:def:datum:EPSG::6212' => [
12478
            'name' => 'Barbados 1938',
12479
            'type' => 'geodetic',
12480
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12481
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12482
            'conventional_rs' => null,
12483
            'frame_reference_epoch' => null,
12484
        ],
12485
        'urn:ogc:def:datum:EPSG::6213' => [
12486
            'name' => 'Beduaram',
12487
            'type' => 'geodetic',
12488
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12489
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12490
            'conventional_rs' => null,
12491
            'frame_reference_epoch' => null,
12492
        ],
12493
        'urn:ogc:def:datum:EPSG::6214' => [
12494
            'name' => 'Beijing 1954',
12495
            'type' => 'geodetic',
12496
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
12497
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12498
            'conventional_rs' => null,
12499
            'frame_reference_epoch' => null,
12500
        ],
12501
        'urn:ogc:def:datum:EPSG::6215' => [
12502
            'name' => 'Reseau National Belge 1950',
12503
            'type' => 'geodetic',
12504
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12505
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12506
            'conventional_rs' => null,
12507
            'frame_reference_epoch' => null,
12508
        ],
12509
        'urn:ogc:def:datum:EPSG::6216' => [
12510
            'name' => 'Bermuda 1957',
12511
            'type' => 'geodetic',
12512
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
12513
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12514
            'conventional_rs' => null,
12515
            'frame_reference_epoch' => null,
12516
        ],
12517
        'urn:ogc:def:datum:EPSG::6218' => [
12518
            'name' => 'Bogota 1975',
12519
            'type' => 'geodetic',
12520
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12521
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12522
            'conventional_rs' => null,
12523
            'frame_reference_epoch' => null,
12524
        ],
12525
        'urn:ogc:def:datum:EPSG::6219' => [
12526
            'name' => 'Bukit Rimpah',
12527
            'type' => 'geodetic',
12528
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12529
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12530
            'conventional_rs' => null,
12531
            'frame_reference_epoch' => null,
12532
        ],
12533
        'urn:ogc:def:datum:EPSG::6220' => [
12534
            'name' => 'Camacupa 1948',
12535
            'type' => 'geodetic',
12536
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12537
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12538
            'conventional_rs' => null,
12539
            'frame_reference_epoch' => null,
12540
        ],
12541
        'urn:ogc:def:datum:EPSG::6221' => [
12542
            'name' => 'Campo Inchauspe',
12543
            'type' => 'geodetic',
12544
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12545
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12546
            'conventional_rs' => null,
12547
            'frame_reference_epoch' => null,
12548
        ],
12549
        'urn:ogc:def:datum:EPSG::6222' => [
12550
            'name' => 'Cape',
12551
            'type' => 'geodetic',
12552
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7013',
12553
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12554
            'conventional_rs' => null,
12555
            'frame_reference_epoch' => null,
12556
        ],
12557
        'urn:ogc:def:datum:EPSG::6223' => [
12558
            'name' => 'Carthage',
12559
            'type' => 'geodetic',
12560
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12561
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12562
            'conventional_rs' => null,
12563
            'frame_reference_epoch' => null,
12564
        ],
12565
        'urn:ogc:def:datum:EPSG::6224' => [
12566
            'name' => 'Chua',
12567
            'type' => 'geodetic',
12568
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12569
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12570
            'conventional_rs' => null,
12571
            'frame_reference_epoch' => null,
12572
        ],
12573
        'urn:ogc:def:datum:EPSG::6225' => [
12574
            'name' => 'Corrego Alegre 1970-72',
12575
            'type' => 'geodetic',
12576
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12577
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12578
            'conventional_rs' => null,
12579
            'frame_reference_epoch' => null,
12580
        ],
12581
        'urn:ogc:def:datum:EPSG::6227' => [
12582
            'name' => 'Deir ez Zor',
12583
            'type' => 'geodetic',
12584
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12585
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12586
            'conventional_rs' => null,
12587
            'frame_reference_epoch' => null,
12588
        ],
12589
        'urn:ogc:def:datum:EPSG::6229' => [
12590
            'name' => 'Egypt 1907',
12591
            'type' => 'geodetic',
12592
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020',
12593
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12594
            'conventional_rs' => null,
12595
            'frame_reference_epoch' => null,
12596
        ],
12597
        'urn:ogc:def:datum:EPSG::6230' => [
12598
            'name' => 'European Datum 1950',
12599
            'type' => 'geodetic',
12600
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12601
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12602
            'conventional_rs' => null,
12603
            'frame_reference_epoch' => null,
12604
        ],
12605
        'urn:ogc:def:datum:EPSG::6231' => [
12606
            'name' => 'European Datum 1987',
12607
            'type' => 'geodetic',
12608
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12609
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12610
            'conventional_rs' => null,
12611
            'frame_reference_epoch' => null,
12612
        ],
12613
        'urn:ogc:def:datum:EPSG::6232' => [
12614
            'name' => 'Fahud',
12615
            'type' => 'geodetic',
12616
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12617
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12618
            'conventional_rs' => null,
12619
            'frame_reference_epoch' => null,
12620
        ],
12621
        'urn:ogc:def:datum:EPSG::6236' => [
12622
            'name' => 'Hu Tzu Shan 1950',
12623
            'type' => 'geodetic',
12624
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12625
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12626
            'conventional_rs' => null,
12627
            'frame_reference_epoch' => null,
12628
        ],
12629
        'urn:ogc:def:datum:EPSG::6237' => [
12630
            'name' => 'Hungarian Datum 1972',
12631
            'type' => 'geodetic',
12632
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7036',
12633
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12634
            'conventional_rs' => null,
12635
            'frame_reference_epoch' => null,
12636
        ],
12637
        'urn:ogc:def:datum:EPSG::6238' => [
12638
            'name' => 'Indonesian Datum 1974',
12639
            'type' => 'geodetic',
12640
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7021',
12641
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12642
            'conventional_rs' => null,
12643
            'frame_reference_epoch' => null,
12644
        ],
12645
        'urn:ogc:def:datum:EPSG::6239' => [
12646
            'name' => 'Indian 1954',
12647
            'type' => 'geodetic',
12648
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
12649
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12650
            'conventional_rs' => null,
12651
            'frame_reference_epoch' => null,
12652
        ],
12653
        'urn:ogc:def:datum:EPSG::6240' => [
12654
            'name' => 'Indian 1975',
12655
            'type' => 'geodetic',
12656
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
12657
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12658
            'conventional_rs' => null,
12659
            'frame_reference_epoch' => null,
12660
        ],
12661
        'urn:ogc:def:datum:EPSG::6241' => [
12662
            'name' => 'Jamaica 1875',
12663
            'type' => 'geodetic',
12664
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7034',
12665
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12666
            'conventional_rs' => null,
12667
            'frame_reference_epoch' => null,
12668
        ],
12669
        'urn:ogc:def:datum:EPSG::6242' => [
12670
            'name' => 'Jamaica 1969',
12671
            'type' => 'geodetic',
12672
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
12673
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12674
            'conventional_rs' => null,
12675
            'frame_reference_epoch' => null,
12676
        ],
12677
        'urn:ogc:def:datum:EPSG::6243' => [
12678
            'name' => 'Kalianpur 1880',
12679
            'type' => 'geodetic',
12680
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7042',
12681
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12682
            'conventional_rs' => null,
12683
            'frame_reference_epoch' => null,
12684
        ],
12685
        'urn:ogc:def:datum:EPSG::6244' => [
12686
            'name' => 'Kandawala',
12687
            'type' => 'geodetic',
12688
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
12689
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12690
            'conventional_rs' => null,
12691
            'frame_reference_epoch' => null,
12692
        ],
12693
        'urn:ogc:def:datum:EPSG::6245' => [
12694
            'name' => 'Kertau 1968',
12695
            'type' => 'geodetic',
12696
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7018',
12697
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12698
            'conventional_rs' => null,
12699
            'frame_reference_epoch' => null,
12700
        ],
12701
        'urn:ogc:def:datum:EPSG::6246' => [
12702
            'name' => 'Kuwait Oil Company',
12703
            'type' => 'geodetic',
12704
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12705
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12706
            'conventional_rs' => null,
12707
            'frame_reference_epoch' => null,
12708
        ],
12709
        'urn:ogc:def:datum:EPSG::6247' => [
12710
            'name' => 'La Canoa',
12711
            'type' => 'geodetic',
12712
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12713
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12714
            'conventional_rs' => null,
12715
            'frame_reference_epoch' => null,
12716
        ],
12717
        'urn:ogc:def:datum:EPSG::6248' => [
12718
            'name' => 'Provisional South American Datum 1956',
12719
            'type' => 'geodetic',
12720
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12721
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12722
            'conventional_rs' => null,
12723
            'frame_reference_epoch' => null,
12724
        ],
12725
        'urn:ogc:def:datum:EPSG::6249' => [
12726
            'name' => 'Lake',
12727
            'type' => 'geodetic',
12728
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12729
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12730
            'conventional_rs' => null,
12731
            'frame_reference_epoch' => null,
12732
        ],
12733
        'urn:ogc:def:datum:EPSG::6250' => [
12734
            'name' => 'Leigon',
12735
            'type' => 'geodetic',
12736
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12737
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12738
            'conventional_rs' => null,
12739
            'frame_reference_epoch' => null,
12740
        ],
12741
        'urn:ogc:def:datum:EPSG::6251' => [
12742
            'name' => 'Liberia 1964',
12743
            'type' => 'geodetic',
12744
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12745
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12746
            'conventional_rs' => null,
12747
            'frame_reference_epoch' => null,
12748
        ],
12749
        'urn:ogc:def:datum:EPSG::6252' => [
12750
            'name' => 'Lome',
12751
            'type' => 'geodetic',
12752
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12753
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12754
            'conventional_rs' => null,
12755
            'frame_reference_epoch' => null,
12756
        ],
12757
        'urn:ogc:def:datum:EPSG::6253' => [
12758
            'name' => 'Luzon 1911',
12759
            'type' => 'geodetic',
12760
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
12761
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12762
            'conventional_rs' => null,
12763
            'frame_reference_epoch' => null,
12764
        ],
12765
        'urn:ogc:def:datum:EPSG::6254' => [
12766
            'name' => 'Hito XVIII 1963',
12767
            'type' => 'geodetic',
12768
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12769
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12770
            'conventional_rs' => null,
12771
            'frame_reference_epoch' => null,
12772
        ],
12773
        'urn:ogc:def:datum:EPSG::6255' => [
12774
            'name' => 'Herat North',
12775
            'type' => 'geodetic',
12776
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12777
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12778
            'conventional_rs' => null,
12779
            'frame_reference_epoch' => null,
12780
        ],
12781
        'urn:ogc:def:datum:EPSG::6256' => [
12782
            'name' => 'Mahe 1971',
12783
            'type' => 'geodetic',
12784
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12785
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12786
            'conventional_rs' => null,
12787
            'frame_reference_epoch' => null,
12788
        ],
12789
        'urn:ogc:def:datum:EPSG::6257' => [
12790
            'name' => 'Makassar',
12791
            'type' => 'geodetic',
12792
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12793
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12794
            'conventional_rs' => null,
12795
            'frame_reference_epoch' => null,
12796
        ],
12797
        'urn:ogc:def:datum:EPSG::6258' => [
12798
            'name' => 'European Terrestrial Reference System 1989 ensemble',
12799
            'type' => 'ensemble',
12800
            'ellipsoid' => null,
12801
            'prime_meridian' => null,
12802
            'conventional_rs' => null,
12803
            'frame_reference_epoch' => null,
12804
            'ensemble' => [
12805
                'urn:ogc:def:datum:EPSG::1178',
12806
                'urn:ogc:def:datum:EPSG::1179',
12807
                'urn:ogc:def:datum:EPSG::1180',
12808
                'urn:ogc:def:datum:EPSG::1181',
12809
                'urn:ogc:def:datum:EPSG::1182',
12810
                'urn:ogc:def:datum:EPSG::1183',
12811
                'urn:ogc:def:datum:EPSG::1184',
12812
                'urn:ogc:def:datum:EPSG::1185',
12813
                'urn:ogc:def:datum:EPSG::1186',
12814
                'urn:ogc:def:datum:EPSG::1204',
12815
                'urn:ogc:def:datum:EPSG::1206',
12816
            ],
12817
        ],
12818
        'urn:ogc:def:datum:EPSG::6259' => [
12819
            'name' => 'Malongo 1987',
12820
            'type' => 'geodetic',
12821
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12822
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12823
            'conventional_rs' => null,
12824
            'frame_reference_epoch' => null,
12825
        ],
12826
        'urn:ogc:def:datum:EPSG::6261' => [
12827
            'name' => 'Merchich',
12828
            'type' => 'geodetic',
12829
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12830
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12831
            'conventional_rs' => null,
12832
            'frame_reference_epoch' => null,
12833
        ],
12834
        'urn:ogc:def:datum:EPSG::6262' => [
12835
            'name' => 'Massawa',
12836
            'type' => 'geodetic',
12837
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12838
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12839
            'conventional_rs' => null,
12840
            'frame_reference_epoch' => null,
12841
        ],
12842
        'urn:ogc:def:datum:EPSG::6263' => [
12843
            'name' => 'Minna',
12844
            'type' => 'geodetic',
12845
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12846
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12847
            'conventional_rs' => null,
12848
            'frame_reference_epoch' => null,
12849
        ],
12850
        'urn:ogc:def:datum:EPSG::6265' => [
12851
            'name' => 'Monte Mario',
12852
            'type' => 'geodetic',
12853
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12854
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12855
            'conventional_rs' => null,
12856
            'frame_reference_epoch' => null,
12857
        ],
12858
        'urn:ogc:def:datum:EPSG::6266' => [
12859
            'name' => 'M\'poraloko',
12860
            'type' => 'geodetic',
12861
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12862
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12863
            'conventional_rs' => null,
12864
            'frame_reference_epoch' => null,
12865
        ],
12866
        'urn:ogc:def:datum:EPSG::6267' => [
12867
            'name' => 'North American Datum 1927',
12868
            'type' => 'geodetic',
12869
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
12870
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12871
            'conventional_rs' => null,
12872
            'frame_reference_epoch' => null,
12873
        ],
12874
        'urn:ogc:def:datum:EPSG::6269' => [
12875
            'name' => 'North American Datum 1983',
12876
            'type' => 'geodetic',
12877
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12878
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12879
            'conventional_rs' => null,
12880
            'frame_reference_epoch' => null,
12881
        ],
12882
        'urn:ogc:def:datum:EPSG::6270' => [
12883
            'name' => 'Nahrwan 1967',
12884
            'type' => 'geodetic',
12885
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12886
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12887
            'conventional_rs' => null,
12888
            'frame_reference_epoch' => null,
12889
        ],
12890
        'urn:ogc:def:datum:EPSG::6271' => [
12891
            'name' => 'Naparima 1972',
12892
            'type' => 'geodetic',
12893
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12894
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12895
            'conventional_rs' => null,
12896
            'frame_reference_epoch' => null,
12897
        ],
12898
        'urn:ogc:def:datum:EPSG::6272' => [
12899
            'name' => 'New Zealand Geodetic Datum 1949',
12900
            'type' => 'geodetic',
12901
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12902
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12903
            'conventional_rs' => null,
12904
            'frame_reference_epoch' => null,
12905
        ],
12906
        'urn:ogc:def:datum:EPSG::6273' => [
12907
            'name' => 'NGO 1948',
12908
            'type' => 'geodetic',
12909
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7005',
12910
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12911
            'conventional_rs' => null,
12912
            'frame_reference_epoch' => null,
12913
        ],
12914
        'urn:ogc:def:datum:EPSG::6274' => [
12915
            'name' => 'Datum 73',
12916
            'type' => 'geodetic',
12917
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12918
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12919
            'conventional_rs' => null,
12920
            'frame_reference_epoch' => null,
12921
        ],
12922
        'urn:ogc:def:datum:EPSG::6275' => [
12923
            'name' => 'Nouvelle Triangulation Francaise',
12924
            'type' => 'geodetic',
12925
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12926
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12927
            'conventional_rs' => null,
12928
            'frame_reference_epoch' => null,
12929
        ],
12930
        'urn:ogc:def:datum:EPSG::6276' => [
12931
            'name' => 'NSWC 9Z-2',
12932
            'type' => 'geodetic',
12933
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7025',
12934
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12935
            'conventional_rs' => null,
12936
            'frame_reference_epoch' => null,
12937
        ],
12938
        'urn:ogc:def:datum:EPSG::6277' => [
12939
            'name' => 'Ordnance Survey of Great Britain 1936',
12940
            'type' => 'geodetic',
12941
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001',
12942
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12943
            'conventional_rs' => null,
12944
            'frame_reference_epoch' => null,
12945
        ],
12946
        'urn:ogc:def:datum:EPSG::6278' => [
12947
            'name' => 'OSGB 1970 (SN)',
12948
            'type' => 'geodetic',
12949
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001',
12950
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12951
            'conventional_rs' => null,
12952
            'frame_reference_epoch' => null,
12953
        ],
12954
        'urn:ogc:def:datum:EPSG::6279' => [
12955
            'name' => 'OS (SN) 1980',
12956
            'type' => 'geodetic',
12957
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001',
12958
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12959
            'conventional_rs' => null,
12960
            'frame_reference_epoch' => null,
12961
        ],
12962
        'urn:ogc:def:datum:EPSG::6281' => [
12963
            'name' => 'Palestine 1923',
12964
            'type' => 'geodetic',
12965
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7010',
12966
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12967
            'conventional_rs' => null,
12968
            'frame_reference_epoch' => null,
12969
        ],
12970
        'urn:ogc:def:datum:EPSG::6282' => [
12971
            'name' => 'Congo 1960 Pointe Noire',
12972
            'type' => 'geodetic',
12973
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12974
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12975
            'conventional_rs' => null,
12976
            'frame_reference_epoch' => null,
12977
        ],
12978
        'urn:ogc:def:datum:EPSG::6283' => [
12979
            'name' => 'Geocentric Datum of Australia 1994',
12980
            'type' => 'geodetic',
12981
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12982
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12983
            'conventional_rs' => null,
12984
            'frame_reference_epoch' => null,
12985
        ],
12986
        'urn:ogc:def:datum:EPSG::6284' => [
12987
            'name' => 'Pulkovo 1942',
12988
            'type' => 'geodetic',
12989
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
12990
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12991
            'conventional_rs' => null,
12992
            'frame_reference_epoch' => null,
12993
        ],
12994
        'urn:ogc:def:datum:EPSG::6285' => [
12995
            'name' => 'Qatar 1974',
12996
            'type' => 'geodetic',
12997
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12998
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12999
            'conventional_rs' => null,
13000
            'frame_reference_epoch' => null,
13001
        ],
13002
        'urn:ogc:def:datum:EPSG::6286' => [
13003
            'name' => 'Qatar 1948',
13004
            'type' => 'geodetic',
13005
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020',
13006
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13007
            'conventional_rs' => null,
13008
            'frame_reference_epoch' => null,
13009
        ],
13010
        'urn:ogc:def:datum:EPSG::6288' => [
13011
            'name' => 'Loma Quintana',
13012
            'type' => 'geodetic',
13013
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13014
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13015
            'conventional_rs' => null,
13016
            'frame_reference_epoch' => null,
13017
        ],
13018
        'urn:ogc:def:datum:EPSG::6289' => [
13019
            'name' => 'Amersfoort',
13020
            'type' => 'geodetic',
13021
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
13022
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13023
            'conventional_rs' => null,
13024
            'frame_reference_epoch' => null,
13025
        ],
13026
        'urn:ogc:def:datum:EPSG::6292' => [
13027
            'name' => 'Sapper Hill 1943',
13028
            'type' => 'geodetic',
13029
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13030
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13031
            'conventional_rs' => null,
13032
            'frame_reference_epoch' => null,
13033
        ],
13034
        'urn:ogc:def:datum:EPSG::6293' => [
13035
            'name' => 'Schwarzeck',
13036
            'type' => 'geodetic',
13037
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7046',
13038
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13039
            'conventional_rs' => null,
13040
            'frame_reference_epoch' => null,
13041
        ],
13042
        'urn:ogc:def:datum:EPSG::6295' => [
13043
            'name' => 'Serindung',
13044
            'type' => 'geodetic',
13045
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
13046
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13047
            'conventional_rs' => null,
13048
            'frame_reference_epoch' => null,
13049
        ],
13050
        'urn:ogc:def:datum:EPSG::6297' => [
13051
            'name' => 'Tananarive 1925',
13052
            'type' => 'geodetic',
13053
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13054
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13055
            'conventional_rs' => null,
13056
            'frame_reference_epoch' => null,
13057
        ],
13058
        'urn:ogc:def:datum:EPSG::6298' => [
13059
            'name' => 'Timbalai 1948',
13060
            'type' => 'geodetic',
13061
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7016',
13062
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13063
            'conventional_rs' => null,
13064
            'frame_reference_epoch' => null,
13065
        ],
13066
        'urn:ogc:def:datum:EPSG::6299' => [
13067
            'name' => 'TM65',
13068
            'type' => 'geodetic',
13069
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7002',
13070
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13071
            'conventional_rs' => null,
13072
            'frame_reference_epoch' => null,
13073
        ],
13074
        'urn:ogc:def:datum:EPSG::6300' => [
13075
            'name' => 'Geodetic Datum of 1965',
13076
            'type' => 'geodetic',
13077
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7002',
13078
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13079
            'conventional_rs' => null,
13080
            'frame_reference_epoch' => null,
13081
        ],
13082
        'urn:ogc:def:datum:EPSG::6301' => [
13083
            'name' => 'Tokyo',
13084
            'type' => 'geodetic',
13085
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
13086
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13087
            'conventional_rs' => null,
13088
            'frame_reference_epoch' => null,
13089
        ],
13090
        'urn:ogc:def:datum:EPSG::6302' => [
13091
            'name' => 'Trinidad 1903',
13092
            'type' => 'geodetic',
13093
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007',
13094
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13095
            'conventional_rs' => null,
13096
            'frame_reference_epoch' => null,
13097
        ],
13098
        'urn:ogc:def:datum:EPSG::6303' => [
13099
            'name' => 'Trucial Coast 1948',
13100
            'type' => 'geodetic',
13101
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020',
13102
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13103
            'conventional_rs' => null,
13104
            'frame_reference_epoch' => null,
13105
        ],
13106
        'urn:ogc:def:datum:EPSG::6304' => [
13107
            'name' => 'Voirol 1875',
13108
            'type' => 'geodetic',
13109
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
13110
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13111
            'conventional_rs' => null,
13112
            'frame_reference_epoch' => null,
13113
        ],
13114
        'urn:ogc:def:datum:EPSG::6306' => [
13115
            'name' => 'Bern 1938',
13116
            'type' => 'geodetic',
13117
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
13118
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13119
            'conventional_rs' => null,
13120
            'frame_reference_epoch' => null,
13121
        ],
13122
        'urn:ogc:def:datum:EPSG::6307' => [
13123
            'name' => 'Nord Sahara 1959',
13124
            'type' => 'geodetic',
13125
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13126
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13127
            'conventional_rs' => null,
13128
            'frame_reference_epoch' => null,
13129
        ],
13130
        'urn:ogc:def:datum:EPSG::6308' => [
13131
            'name' => 'Stockholm 1938',
13132
            'type' => 'geodetic',
13133
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
13134
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13135
            'conventional_rs' => null,
13136
            'frame_reference_epoch' => null,
13137
        ],
13138
        'urn:ogc:def:datum:EPSG::6309' => [
13139
            'name' => 'Yacare',
13140
            'type' => 'geodetic',
13141
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13142
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13143
            'conventional_rs' => null,
13144
            'frame_reference_epoch' => null,
13145
        ],
13146
        'urn:ogc:def:datum:EPSG::6310' => [
13147
            'name' => 'Yoff',
13148
            'type' => 'geodetic',
13149
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
13150
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13151
            'conventional_rs' => null,
13152
            'frame_reference_epoch' => null,
13153
        ],
13154
        'urn:ogc:def:datum:EPSG::6311' => [
13155
            'name' => 'Zanderij',
13156
            'type' => 'geodetic',
13157
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13158
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13159
            'conventional_rs' => null,
13160
            'frame_reference_epoch' => null,
13161
        ],
13162
        'urn:ogc:def:datum:EPSG::6312' => [
13163
            'name' => 'Militar-Geographische Institut',
13164
            'type' => 'geodetic',
13165
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
13166
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13167
            'conventional_rs' => null,
13168
            'frame_reference_epoch' => null,
13169
        ],
13170
        'urn:ogc:def:datum:EPSG::6313' => [
13171
            'name' => 'Reseau National Belge 1972',
13172
            'type' => 'geodetic',
13173
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13174
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13175
            'conventional_rs' => null,
13176
            'frame_reference_epoch' => null,
13177
        ],
13178
        'urn:ogc:def:datum:EPSG::6314' => [
13179
            'name' => 'Deutsches Hauptdreiecksnetz',
13180
            'type' => 'geodetic',
13181
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
13182
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13183
            'conventional_rs' => null,
13184
            'frame_reference_epoch' => null,
13185
        ],
13186
        'urn:ogc:def:datum:EPSG::6315' => [
13187
            'name' => 'Conakry 1905',
13188
            'type' => 'geodetic',
13189
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
13190
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13191
            'conventional_rs' => null,
13192
            'frame_reference_epoch' => null,
13193
        ],
13194
        'urn:ogc:def:datum:EPSG::6316' => [
13195
            'name' => 'Dealul Piscului 1930',
13196
            'type' => 'geodetic',
13197
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13198
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13199
            'conventional_rs' => null,
13200
            'frame_reference_epoch' => null,
13201
        ],
13202
        'urn:ogc:def:datum:EPSG::6318' => [
13203
            'name' => 'National Geodetic Network',
13204
            'type' => 'geodetic',
13205
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
13206
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13207
            'conventional_rs' => null,
13208
            'frame_reference_epoch' => null,
13209
        ],
13210
        'urn:ogc:def:datum:EPSG::6319' => [
13211
            'name' => 'Kuwait Utility',
13212
            'type' => 'geodetic',
13213
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13214
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13215
            'conventional_rs' => null,
13216
            'frame_reference_epoch' => null,
13217
        ],
13218
        'urn:ogc:def:datum:EPSG::6322' => [
13219
            'name' => 'World Geodetic System 1972',
13220
            'type' => 'dynamic geodetic',
13221
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7043',
13222
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13223
            'conventional_rs' => null,
13224
            'frame_reference_epoch' => 1972.0,
13225
        ],
13226
        'urn:ogc:def:datum:EPSG::6324' => [
13227
            'name' => 'WGS 72 Transit Broadcast Ephemeris',
13228
            'type' => 'dynamic geodetic',
13229
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7043',
13230
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13231
            'conventional_rs' => null,
13232
            'frame_reference_epoch' => 1972.0,
13233
        ],
13234
        'urn:ogc:def:datum:EPSG::6326' => [
13235
            'name' => 'World Geodetic System 1984 ensemble',
13236
            'type' => 'ensemble',
13237
            'ellipsoid' => null,
13238
            'prime_meridian' => null,
13239
            'conventional_rs' => null,
13240
            'frame_reference_epoch' => null,
13241
            'ensemble' => [
13242
                'urn:ogc:def:datum:EPSG::1166',
13243
                'urn:ogc:def:datum:EPSG::1152',
13244
                'urn:ogc:def:datum:EPSG::1153',
13245
                'urn:ogc:def:datum:EPSG::1154',
13246
                'urn:ogc:def:datum:EPSG::1155',
13247
                'urn:ogc:def:datum:EPSG::1156',
13248
                'urn:ogc:def:datum:EPSG::1309',
13249
            ],
13250
        ],
13251
        'urn:ogc:def:datum:EPSG::6600' => [
13252
            'name' => 'Anguilla 1957',
13253
            'type' => 'geodetic',
13254
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13255
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13256
            'conventional_rs' => null,
13257
            'frame_reference_epoch' => null,
13258
        ],
13259
        'urn:ogc:def:datum:EPSG::6601' => [
13260
            'name' => 'Antigua 1943',
13261
            'type' => 'geodetic',
13262
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13263
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13264
            'conventional_rs' => null,
13265
            'frame_reference_epoch' => null,
13266
        ],
13267
        'urn:ogc:def:datum:EPSG::6602' => [
13268
            'name' => 'Dominica 1945',
13269
            'type' => 'geodetic',
13270
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13271
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13272
            'conventional_rs' => null,
13273
            'frame_reference_epoch' => null,
13274
        ],
13275
        'urn:ogc:def:datum:EPSG::6603' => [
13276
            'name' => 'Grenada 1953',
13277
            'type' => 'geodetic',
13278
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13279
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13280
            'conventional_rs' => null,
13281
            'frame_reference_epoch' => null,
13282
        ],
13283
        'urn:ogc:def:datum:EPSG::6604' => [
13284
            'name' => 'Montserrat 1958',
13285
            'type' => 'geodetic',
13286
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13287
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13288
            'conventional_rs' => null,
13289
            'frame_reference_epoch' => null,
13290
        ],
13291
        'urn:ogc:def:datum:EPSG::6605' => [
13292
            'name' => 'St. Kitts 1955',
13293
            'type' => 'geodetic',
13294
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13295
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13296
            'conventional_rs' => null,
13297
            'frame_reference_epoch' => null,
13298
        ],
13299
        'urn:ogc:def:datum:EPSG::6606' => [
13300
            'name' => 'St. Lucia 1955',
13301
            'type' => 'geodetic',
13302
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13303
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13304
            'conventional_rs' => null,
13305
            'frame_reference_epoch' => null,
13306
        ],
13307
        'urn:ogc:def:datum:EPSG::6607' => [
13308
            'name' => 'St. Vincent 1945',
13309
            'type' => 'geodetic',
13310
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13311
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13312
            'conventional_rs' => null,
13313
            'frame_reference_epoch' => null,
13314
        ],
13315
        'urn:ogc:def:datum:EPSG::6608' => [
13316
            'name' => 'North American Datum 1927 (1976)',
13317
            'type' => 'geodetic',
13318
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13319
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13320
            'conventional_rs' => null,
13321
            'frame_reference_epoch' => null,
13322
        ],
13323
        'urn:ogc:def:datum:EPSG::6609' => [
13324
            'name' => 'North American Datum 1927 (CGQ77)',
13325
            'type' => 'geodetic',
13326
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13327
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13328
            'conventional_rs' => null,
13329
            'frame_reference_epoch' => null,
13330
        ],
13331
        'urn:ogc:def:datum:EPSG::6610' => [
13332
            'name' => 'Xian 1980',
13333
            'type' => 'geodetic',
13334
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7049',
13335
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13336
            'conventional_rs' => null,
13337
            'frame_reference_epoch' => null,
13338
        ],
13339
        'urn:ogc:def:datum:EPSG::6611' => [
13340
            'name' => 'Hong Kong 1980',
13341
            'type' => 'geodetic',
13342
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13343
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13344
            'conventional_rs' => null,
13345
            'frame_reference_epoch' => null,
13346
        ],
13347
        'urn:ogc:def:datum:EPSG::6612' => [
13348
            'name' => 'Japanese Geodetic Datum 2000',
13349
            'type' => 'geodetic',
13350
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13351
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13352
            'conventional_rs' => null,
13353
            'frame_reference_epoch' => null,
13354
        ],
13355
        'urn:ogc:def:datum:EPSG::6613' => [
13356
            'name' => 'Gunung Segara',
13357
            'type' => 'geodetic',
13358
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
13359
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13360
            'conventional_rs' => null,
13361
            'frame_reference_epoch' => null,
13362
        ],
13363
        'urn:ogc:def:datum:EPSG::6614' => [
13364
            'name' => 'Qatar National Datum 1995',
13365
            'type' => 'geodetic',
13366
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13367
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13368
            'conventional_rs' => null,
13369
            'frame_reference_epoch' => null,
13370
        ],
13371
        'urn:ogc:def:datum:EPSG::6615' => [
13372
            'name' => 'Porto Santo 1936',
13373
            'type' => 'geodetic',
13374
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13375
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13376
            'conventional_rs' => null,
13377
            'frame_reference_epoch' => null,
13378
        ],
13379
        'urn:ogc:def:datum:EPSG::6616' => [
13380
            'name' => 'Selvagem Grande',
13381
            'type' => 'geodetic',
13382
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13383
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13384
            'conventional_rs' => null,
13385
            'frame_reference_epoch' => null,
13386
        ],
13387
        'urn:ogc:def:datum:EPSG::6618' => [
13388
            'name' => 'South American Datum 1969',
13389
            'type' => 'geodetic',
13390
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7050',
13391
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13392
            'conventional_rs' => null,
13393
            'frame_reference_epoch' => null,
13394
        ],
13395
        'urn:ogc:def:datum:EPSG::6619' => [
13396
            'name' => 'SWEREF99',
13397
            'type' => 'geodetic',
13398
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13399
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13400
            'conventional_rs' => null,
13401
            'frame_reference_epoch' => null,
13402
        ],
13403
        'urn:ogc:def:datum:EPSG::6620' => [
13404
            'name' => 'Point 58',
13405
            'type' => 'geodetic',
13406
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13407
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13408
            'conventional_rs' => null,
13409
            'frame_reference_epoch' => null,
13410
        ],
13411
        'urn:ogc:def:datum:EPSG::6621' => [
13412
            'name' => 'Fort Marigot',
13413
            'type' => 'geodetic',
13414
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13415
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13416
            'conventional_rs' => null,
13417
            'frame_reference_epoch' => null,
13418
        ],
13419
        'urn:ogc:def:datum:EPSG::6622' => [
13420
            'name' => 'Guadeloupe 1948',
13421
            'type' => 'geodetic',
13422
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13423
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13424
            'conventional_rs' => null,
13425
            'frame_reference_epoch' => null,
13426
        ],
13427
        'urn:ogc:def:datum:EPSG::6623' => [
13428
            'name' => 'Centre Spatial Guyanais 1967',
13429
            'type' => 'geodetic',
13430
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13431
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13432
            'conventional_rs' => null,
13433
            'frame_reference_epoch' => null,
13434
        ],
13435
        'urn:ogc:def:datum:EPSG::6624' => [
13436
            'name' => 'Reseau Geodesique Francais Guyane 1995',
13437
            'type' => 'geodetic',
13438
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13439
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13440
            'conventional_rs' => null,
13441
            'frame_reference_epoch' => null,
13442
        ],
13443
        'urn:ogc:def:datum:EPSG::6625' => [
13444
            'name' => 'Martinique 1938',
13445
            'type' => 'geodetic',
13446
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13447
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13448
            'conventional_rs' => null,
13449
            'frame_reference_epoch' => null,
13450
        ],
13451
        'urn:ogc:def:datum:EPSG::6626' => [
13452
            'name' => 'Reunion 1947',
13453
            'type' => 'geodetic',
13454
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13455
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13456
            'conventional_rs' => null,
13457
            'frame_reference_epoch' => null,
13458
        ],
13459
        'urn:ogc:def:datum:EPSG::6627' => [
13460
            'name' => 'Reseau Geodesique de la Reunion 1992',
13461
            'type' => 'geodetic',
13462
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13463
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13464
            'conventional_rs' => null,
13465
            'frame_reference_epoch' => null,
13466
        ],
13467
        'urn:ogc:def:datum:EPSG::6628' => [
13468
            'name' => 'Tahiti 52',
13469
            'type' => 'geodetic',
13470
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13471
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13472
            'conventional_rs' => null,
13473
            'frame_reference_epoch' => null,
13474
        ],
13475
        'urn:ogc:def:datum:EPSG::6629' => [
13476
            'name' => 'Tahaa 54',
13477
            'type' => 'geodetic',
13478
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13479
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13480
            'conventional_rs' => null,
13481
            'frame_reference_epoch' => null,
13482
        ],
13483
        'urn:ogc:def:datum:EPSG::6630' => [
13484
            'name' => 'IGN72 Nuku Hiva',
13485
            'type' => 'geodetic',
13486
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13487
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13488
            'conventional_rs' => null,
13489
            'frame_reference_epoch' => null,
13490
        ],
13491
        'urn:ogc:def:datum:EPSG::6632' => [
13492
            'name' => 'Combani 1950',
13493
            'type' => 'geodetic',
13494
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13495
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13496
            'conventional_rs' => null,
13497
            'frame_reference_epoch' => null,
13498
        ],
13499
        'urn:ogc:def:datum:EPSG::6633' => [
13500
            'name' => 'IGN56 Lifou',
13501
            'type' => 'geodetic',
13502
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13503
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13504
            'conventional_rs' => null,
13505
            'frame_reference_epoch' => null,
13506
        ],
13507
        'urn:ogc:def:datum:EPSG::6634' => [
13508
            'name' => 'IGN72 Grande Terre',
13509
            'type' => 'geodetic',
13510
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13511
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13512
            'conventional_rs' => null,
13513
            'frame_reference_epoch' => null,
13514
        ],
13515
        'urn:ogc:def:datum:EPSG::6636' => [
13516
            'name' => 'Petrels 1972',
13517
            'type' => 'geodetic',
13518
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13519
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13520
            'conventional_rs' => null,
13521
            'frame_reference_epoch' => null,
13522
        ],
13523
        'urn:ogc:def:datum:EPSG::6637' => [
13524
            'name' => 'Pointe Geologie Perroud 1950',
13525
            'type' => 'geodetic',
13526
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13527
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13528
            'conventional_rs' => null,
13529
            'frame_reference_epoch' => null,
13530
        ],
13531
        'urn:ogc:def:datum:EPSG::6638' => [
13532
            'name' => 'Saint Pierre et Miquelon 1950',
13533
            'type' => 'geodetic',
13534
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13535
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13536
            'conventional_rs' => null,
13537
            'frame_reference_epoch' => null,
13538
        ],
13539
        'urn:ogc:def:datum:EPSG::6639' => [
13540
            'name' => 'MOP78',
13541
            'type' => 'geodetic',
13542
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13543
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13544
            'conventional_rs' => null,
13545
            'frame_reference_epoch' => null,
13546
        ],
13547
        'urn:ogc:def:datum:EPSG::6641' => [
13548
            'name' => 'IGN53 Mare',
13549
            'type' => 'geodetic',
13550
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13551
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13552
            'conventional_rs' => null,
13553
            'frame_reference_epoch' => null,
13554
        ],
13555
        'urn:ogc:def:datum:EPSG::6642' => [
13556
            'name' => 'ST84 Ile des Pins',
13557
            'type' => 'geodetic',
13558
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13559
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13560
            'conventional_rs' => null,
13561
            'frame_reference_epoch' => null,
13562
        ],
13563
        'urn:ogc:def:datum:EPSG::6643' => [
13564
            'name' => 'ST71 Belep',
13565
            'type' => 'geodetic',
13566
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13567
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13568
            'conventional_rs' => null,
13569
            'frame_reference_epoch' => null,
13570
        ],
13571
        'urn:ogc:def:datum:EPSG::6644' => [
13572
            'name' => 'NEA74 Noumea',
13573
            'type' => 'geodetic',
13574
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13575
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13576
            'conventional_rs' => null,
13577
            'frame_reference_epoch' => null,
13578
        ],
13579
        'urn:ogc:def:datum:EPSG::6646' => [
13580
            'name' => 'Grand Comoros',
13581
            'type' => 'geodetic',
13582
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13583
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13584
            'conventional_rs' => null,
13585
            'frame_reference_epoch' => null,
13586
        ],
13587
        'urn:ogc:def:datum:EPSG::6647' => [
13588
            'name' => 'International Terrestrial Reference Frame 1988',
13589
            'type' => 'dynamic geodetic',
13590
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13591
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13592
            'conventional_rs' => null,
13593
            'frame_reference_epoch' => 1988.0,
13594
        ],
13595
        'urn:ogc:def:datum:EPSG::6648' => [
13596
            'name' => 'International Terrestrial Reference Frame 1989',
13597
            'type' => 'dynamic geodetic',
13598
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13599
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13600
            'conventional_rs' => null,
13601
            'frame_reference_epoch' => 1988.0,
13602
        ],
13603
        'urn:ogc:def:datum:EPSG::6649' => [
13604
            'name' => 'International Terrestrial Reference Frame 1990',
13605
            'type' => 'dynamic geodetic',
13606
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13607
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13608
            'conventional_rs' => null,
13609
            'frame_reference_epoch' => 1988.0,
13610
        ],
13611
        'urn:ogc:def:datum:EPSG::6650' => [
13612
            'name' => 'International Terrestrial Reference Frame 1991',
13613
            'type' => 'dynamic geodetic',
13614
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13615
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13616
            'conventional_rs' => null,
13617
            'frame_reference_epoch' => 1988.0,
13618
        ],
13619
        'urn:ogc:def:datum:EPSG::6651' => [
13620
            'name' => 'International Terrestrial Reference Frame 1992',
13621
            'type' => 'dynamic geodetic',
13622
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13623
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13624
            'conventional_rs' => null,
13625
            'frame_reference_epoch' => 1988.0,
13626
        ],
13627
        'urn:ogc:def:datum:EPSG::6652' => [
13628
            'name' => 'International Terrestrial Reference Frame 1993',
13629
            'type' => 'dynamic geodetic',
13630
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13631
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13632
            'conventional_rs' => null,
13633
            'frame_reference_epoch' => 1993.0,
13634
        ],
13635
        'urn:ogc:def:datum:EPSG::6653' => [
13636
            'name' => 'International Terrestrial Reference Frame 1994',
13637
            'type' => 'dynamic geodetic',
13638
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13639
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13640
            'conventional_rs' => null,
13641
            'frame_reference_epoch' => 1993.0,
13642
        ],
13643
        'urn:ogc:def:datum:EPSG::6654' => [
13644
            'name' => 'International Terrestrial Reference Frame 1996',
13645
            'type' => 'dynamic geodetic',
13646
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13647
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13648
            'conventional_rs' => null,
13649
            'frame_reference_epoch' => 1997.0,
13650
        ],
13651
        'urn:ogc:def:datum:EPSG::6655' => [
13652
            'name' => 'International Terrestrial Reference Frame 1997',
13653
            'type' => 'dynamic geodetic',
13654
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13655
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13656
            'conventional_rs' => null,
13657
            'frame_reference_epoch' => 1997.0,
13658
        ],
13659
        'urn:ogc:def:datum:EPSG::6656' => [
13660
            'name' => 'International Terrestrial Reference Frame 2000',
13661
            'type' => 'dynamic geodetic',
13662
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13663
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13664
            'conventional_rs' => null,
13665
            'frame_reference_epoch' => 1997.0,
13666
        ],
13667
        'urn:ogc:def:datum:EPSG::6657' => [
13668
            'name' => 'Reykjavik 1900',
13669
            'type' => 'geodetic',
13670
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7051',
13671
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13672
            'conventional_rs' => null,
13673
            'frame_reference_epoch' => null,
13674
        ],
13675
        'urn:ogc:def:datum:EPSG::6658' => [
13676
            'name' => 'Hjorsey 1955',
13677
            'type' => 'geodetic',
13678
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13679
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13680
            'conventional_rs' => null,
13681
            'frame_reference_epoch' => null,
13682
        ],
13683
        'urn:ogc:def:datum:EPSG::6659' => [
13684
            'name' => 'Islands Net 1993',
13685
            'type' => 'geodetic',
13686
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13687
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13688
            'conventional_rs' => null,
13689
            'frame_reference_epoch' => null,
13690
        ],
13691
        'urn:ogc:def:datum:EPSG::6660' => [
13692
            'name' => 'Helle 1954',
13693
            'type' => 'geodetic',
13694
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13695
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13696
            'conventional_rs' => null,
13697
            'frame_reference_epoch' => null,
13698
        ],
13699
        'urn:ogc:def:datum:EPSG::6661' => [
13700
            'name' => 'Latvian geodetic coordinate system 1992',
13701
            'type' => 'geodetic',
13702
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13703
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13704
            'conventional_rs' => null,
13705
            'frame_reference_epoch' => null,
13706
        ],
13707
        'urn:ogc:def:datum:EPSG::6663' => [
13708
            'name' => 'Porto Santo 1995',
13709
            'type' => 'geodetic',
13710
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13711
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13712
            'conventional_rs' => null,
13713
            'frame_reference_epoch' => null,
13714
        ],
13715
        'urn:ogc:def:datum:EPSG::6664' => [
13716
            'name' => 'Azores Oriental Islands 1995',
13717
            'type' => 'geodetic',
13718
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13719
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13720
            'conventional_rs' => null,
13721
            'frame_reference_epoch' => null,
13722
        ],
13723
        'urn:ogc:def:datum:EPSG::6665' => [
13724
            'name' => 'Azores Central Islands 1995',
13725
            'type' => 'geodetic',
13726
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13727
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13728
            'conventional_rs' => null,
13729
            'frame_reference_epoch' => null,
13730
        ],
13731
        'urn:ogc:def:datum:EPSG::6666' => [
13732
            'name' => 'Lisbon 1890',
13733
            'type' => 'geodetic',
13734
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
13735
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13736
            'conventional_rs' => null,
13737
            'frame_reference_epoch' => null,
13738
        ],
13739
        'urn:ogc:def:datum:EPSG::6667' => [
13740
            'name' => 'Iraq-Kuwait Boundary Datum 1992',
13741
            'type' => 'geodetic',
13742
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
13743
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13744
            'conventional_rs' => null,
13745
            'frame_reference_epoch' => null,
13746
        ],
13747
        'urn:ogc:def:datum:EPSG::6668' => [
13748
            'name' => 'European Datum 1979',
13749
            'type' => 'geodetic',
13750
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13751
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13752
            'conventional_rs' => null,
13753
            'frame_reference_epoch' => null,
13754
        ],
13755
        'urn:ogc:def:datum:EPSG::6670' => [
13756
            'name' => 'Istituto Geografico Militaire 1995',
13757
            'type' => 'geodetic',
13758
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13759
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13760
            'conventional_rs' => null,
13761
            'frame_reference_epoch' => null,
13762
        ],
13763
        'urn:ogc:def:datum:EPSG::6671' => [
13764
            'name' => 'Voirol 1879',
13765
            'type' => 'geodetic',
13766
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
13767
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13768
            'conventional_rs' => null,
13769
            'frame_reference_epoch' => null,
13770
        ],
13771
        'urn:ogc:def:datum:EPSG::6672' => [
13772
            'name' => 'Chatham Islands Datum 1971',
13773
            'type' => 'geodetic',
13774
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13775
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13776
            'conventional_rs' => null,
13777
            'frame_reference_epoch' => null,
13778
        ],
13779
        'urn:ogc:def:datum:EPSG::6673' => [
13780
            'name' => 'Chatham Islands Datum 1979',
13781
            'type' => 'geodetic',
13782
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13783
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13784
            'conventional_rs' => null,
13785
            'frame_reference_epoch' => null,
13786
        ],
13787
        'urn:ogc:def:datum:EPSG::6674' => [
13788
            'name' => 'Sistema de Referencia Geocentrico para las AmericaS 2000',
13789
            'type' => 'geodetic',
13790
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13791
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13792
            'conventional_rs' => null,
13793
            'frame_reference_epoch' => null,
13794
        ],
13795
        'urn:ogc:def:datum:EPSG::6675' => [
13796
            'name' => 'Guam 1963',
13797
            'type' => 'geodetic',
13798
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13799
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13800
            'conventional_rs' => null,
13801
            'frame_reference_epoch' => null,
13802
        ],
13803
        'urn:ogc:def:datum:EPSG::6676' => [
13804
            'name' => 'Vientiane 1982',
13805
            'type' => 'geodetic',
13806
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
13807
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13808
            'conventional_rs' => null,
13809
            'frame_reference_epoch' => null,
13810
        ],
13811
        'urn:ogc:def:datum:EPSG::6677' => [
13812
            'name' => 'Lao 1993',
13813
            'type' => 'geodetic',
13814
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
13815
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13816
            'conventional_rs' => null,
13817
            'frame_reference_epoch' => null,
13818
        ],
13819
        'urn:ogc:def:datum:EPSG::6678' => [
13820
            'name' => 'Lao National Datum 1997',
13821
            'type' => 'geodetic',
13822
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
13823
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13824
            'conventional_rs' => null,
13825
            'frame_reference_epoch' => null,
13826
        ],
13827
        'urn:ogc:def:datum:EPSG::6679' => [
13828
            'name' => 'Jouik 1961',
13829
            'type' => 'geodetic',
13830
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13831
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13832
            'conventional_rs' => null,
13833
            'frame_reference_epoch' => null,
13834
        ],
13835
        'urn:ogc:def:datum:EPSG::6680' => [
13836
            'name' => 'Nouakchott 1965',
13837
            'type' => 'geodetic',
13838
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13839
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13840
            'conventional_rs' => null,
13841
            'frame_reference_epoch' => null,
13842
        ],
13843
        'urn:ogc:def:datum:EPSG::6682' => [
13844
            'name' => 'Gulshan 303',
13845
            'type' => 'geodetic',
13846
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
13847
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13848
            'conventional_rs' => null,
13849
            'frame_reference_epoch' => null,
13850
        ],
13851
        'urn:ogc:def:datum:EPSG::6683' => [
13852
            'name' => 'Philippine Reference System 1992',
13853
            'type' => 'geodetic',
13854
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13855
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13856
            'conventional_rs' => null,
13857
            'frame_reference_epoch' => null,
13858
        ],
13859
        'urn:ogc:def:datum:EPSG::6684' => [
13860
            'name' => 'Gan 1970',
13861
            'type' => 'geodetic',
13862
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13863
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13864
            'conventional_rs' => null,
13865
            'frame_reference_epoch' => null,
13866
        ],
13867
        'urn:ogc:def:datum:EPSG::6686' => [
13868
            'name' => 'Marco Geocentrico Nacional de Referencia',
13869
            'type' => 'geodetic',
13870
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13871
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13872
            'conventional_rs' => null,
13873
            'frame_reference_epoch' => null,
13874
        ],
13875
        'urn:ogc:def:datum:EPSG::6687' => [
13876
            'name' => 'Reseau Geodesique de la Polynesie Francaise',
13877
            'type' => 'geodetic',
13878
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13879
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13880
            'conventional_rs' => null,
13881
            'frame_reference_epoch' => null,
13882
        ],
13883
        'urn:ogc:def:datum:EPSG::6688' => [
13884
            'name' => 'Fatu Iva 72',
13885
            'type' => 'geodetic',
13886
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13887
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13888
            'conventional_rs' => null,
13889
            'frame_reference_epoch' => null,
13890
        ],
13891
        'urn:ogc:def:datum:EPSG::6689' => [
13892
            'name' => 'IGN63 Hiva Oa',
13893
            'type' => 'geodetic',
13894
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13895
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13896
            'conventional_rs' => null,
13897
            'frame_reference_epoch' => null,
13898
        ],
13899
        'urn:ogc:def:datum:EPSG::6690' => [
13900
            'name' => 'Tahiti 79',
13901
            'type' => 'geodetic',
13902
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13903
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13904
            'conventional_rs' => null,
13905
            'frame_reference_epoch' => null,
13906
        ],
13907
        'urn:ogc:def:datum:EPSG::6691' => [
13908
            'name' => 'Moorea 87',
13909
            'type' => 'geodetic',
13910
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13911
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13912
            'conventional_rs' => null,
13913
            'frame_reference_epoch' => null,
13914
        ],
13915
        'urn:ogc:def:datum:EPSG::6692' => [
13916
            'name' => 'Maupiti 83',
13917
            'type' => 'geodetic',
13918
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13919
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13920
            'conventional_rs' => null,
13921
            'frame_reference_epoch' => null,
13922
        ],
13923
        'urn:ogc:def:datum:EPSG::6693' => [
13924
            'name' => 'Nakhl-e Ghanem',
13925
            'type' => 'geodetic',
13926
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
13927
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13928
            'conventional_rs' => null,
13929
            'frame_reference_epoch' => null,
13930
        ],
13931
        'urn:ogc:def:datum:EPSG::6694' => [
13932
            'name' => 'Posiciones Geodesicas Argentinas 1994',
13933
            'type' => 'geodetic',
13934
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
13935
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13936
            'conventional_rs' => null,
13937
            'frame_reference_epoch' => null,
13938
        ],
13939
        'urn:ogc:def:datum:EPSG::6695' => [
13940
            'name' => 'Katanga 1955',
13941
            'type' => 'geodetic',
13942
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13943
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13944
            'conventional_rs' => null,
13945
            'frame_reference_epoch' => null,
13946
        ],
13947
        'urn:ogc:def:datum:EPSG::6696' => [
13948
            'name' => 'Kasai 1953',
13949
            'type' => 'geodetic',
13950
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13951
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13952
            'conventional_rs' => null,
13953
            'frame_reference_epoch' => null,
13954
        ],
13955
        'urn:ogc:def:datum:EPSG::6697' => [
13956
            'name' => 'IGC 1962 Arc of the 6th Parallel South',
13957
            'type' => 'geodetic',
13958
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13959
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13960
            'conventional_rs' => null,
13961
            'frame_reference_epoch' => null,
13962
        ],
13963
        'urn:ogc:def:datum:EPSG::6698' => [
13964
            'name' => 'IGN 1962 Kerguelen',
13965
            'type' => 'geodetic',
13966
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13967
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13968
            'conventional_rs' => null,
13969
            'frame_reference_epoch' => null,
13970
        ],
13971
        'urn:ogc:def:datum:EPSG::6699' => [
13972
            'name' => 'Le Pouce 1934',
13973
            'type' => 'geodetic',
13974
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13975
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13976
            'conventional_rs' => null,
13977
            'frame_reference_epoch' => null,
13978
        ],
13979
        'urn:ogc:def:datum:EPSG::6700' => [
13980
            'name' => 'IGN Astro 1960',
13981
            'type' => 'geodetic',
13982
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13983
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13984
            'conventional_rs' => null,
13985
            'frame_reference_epoch' => null,
13986
        ],
13987
        'urn:ogc:def:datum:EPSG::6701' => [
13988
            'name' => 'Institut Geographique du Congo Belge 1955',
13989
            'type' => 'geodetic',
13990
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13991
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13992
            'conventional_rs' => null,
13993
            'frame_reference_epoch' => null,
13994
        ],
13995
        'urn:ogc:def:datum:EPSG::6702' => [
13996
            'name' => 'Mauritania 1999',
13997
            'type' => 'geodetic',
13998
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13999
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14000
            'conventional_rs' => null,
14001
            'frame_reference_epoch' => null,
14002
        ],
14003
        'urn:ogc:def:datum:EPSG::6703' => [
14004
            'name' => 'Missao Hidrografico Angola y Sao Tome 1951',
14005
            'type' => 'geodetic',
14006
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
14007
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14008
            'conventional_rs' => null,
14009
            'frame_reference_epoch' => null,
14010
        ],
14011
        'urn:ogc:def:datum:EPSG::6704' => [
14012
            'name' => 'Mhast (onshore)',
14013
            'type' => 'geodetic',
14014
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14015
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14016
            'conventional_rs' => null,
14017
            'frame_reference_epoch' => null,
14018
        ],
14019
        'urn:ogc:def:datum:EPSG::6705' => [
14020
            'name' => 'Mhast (offshore)',
14021
            'type' => 'geodetic',
14022
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14023
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14024
            'conventional_rs' => null,
14025
            'frame_reference_epoch' => null,
14026
        ],
14027
        'urn:ogc:def:datum:EPSG::6706' => [
14028
            'name' => 'Egypt Gulf of Suez S-650 TL',
14029
            'type' => 'geodetic',
14030
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020',
14031
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14032
            'conventional_rs' => null,
14033
            'frame_reference_epoch' => null,
14034
        ],
14035
        'urn:ogc:def:datum:EPSG::6707' => [
14036
            'name' => 'Tern Island 1961',
14037
            'type' => 'geodetic',
14038
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14039
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14040
            'conventional_rs' => null,
14041
            'frame_reference_epoch' => null,
14042
        ],
14043
        'urn:ogc:def:datum:EPSG::6708' => [
14044
            'name' => 'Cocos Islands 1965',
14045
            'type' => 'geodetic',
14046
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7003',
14047
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14048
            'conventional_rs' => null,
14049
            'frame_reference_epoch' => null,
14050
        ],
14051
        'urn:ogc:def:datum:EPSG::6709' => [
14052
            'name' => 'Iwo Jima 1945',
14053
            'type' => 'geodetic',
14054
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14055
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14056
            'conventional_rs' => null,
14057
            'frame_reference_epoch' => null,
14058
        ],
14059
        'urn:ogc:def:datum:EPSG::6710' => [
14060
            'name' => 'Astro DOS 71',
14061
            'type' => 'geodetic',
14062
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14063
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14064
            'conventional_rs' => null,
14065
            'frame_reference_epoch' => null,
14066
        ],
14067
        'urn:ogc:def:datum:EPSG::6711' => [
14068
            'name' => 'Marcus Island 1952',
14069
            'type' => 'geodetic',
14070
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14071
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14072
            'conventional_rs' => null,
14073
            'frame_reference_epoch' => null,
14074
        ],
14075
        'urn:ogc:def:datum:EPSG::6712' => [
14076
            'name' => 'Ascension Island 1958',
14077
            'type' => 'geodetic',
14078
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14079
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14080
            'conventional_rs' => null,
14081
            'frame_reference_epoch' => null,
14082
        ],
14083
        'urn:ogc:def:datum:EPSG::6713' => [
14084
            'name' => 'Ayabelle Lighthouse',
14085
            'type' => 'geodetic',
14086
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
14087
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14088
            'conventional_rs' => null,
14089
            'frame_reference_epoch' => null,
14090
        ],
14091
        'urn:ogc:def:datum:EPSG::6714' => [
14092
            'name' => 'Bellevue',
14093
            'type' => 'geodetic',
14094
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14095
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14096
            'conventional_rs' => null,
14097
            'frame_reference_epoch' => null,
14098
        ],
14099
        'urn:ogc:def:datum:EPSG::6715' => [
14100
            'name' => 'Camp Area Astro',
14101
            'type' => 'geodetic',
14102
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14103
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14104
            'conventional_rs' => null,
14105
            'frame_reference_epoch' => null,
14106
        ],
14107
        'urn:ogc:def:datum:EPSG::6716' => [
14108
            'name' => 'Phoenix Islands 1966',
14109
            'type' => 'geodetic',
14110
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14111
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14112
            'conventional_rs' => null,
14113
            'frame_reference_epoch' => null,
14114
        ],
14115
        'urn:ogc:def:datum:EPSG::6717' => [
14116
            'name' => 'Cape Canaveral',
14117
            'type' => 'geodetic',
14118
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
14119
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14120
            'conventional_rs' => null,
14121
            'frame_reference_epoch' => null,
14122
        ],
14123
        'urn:ogc:def:datum:EPSG::6718' => [
14124
            'name' => 'Solomon 1968',
14125
            'type' => 'geodetic',
14126
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14127
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14128
            'conventional_rs' => null,
14129
            'frame_reference_epoch' => null,
14130
        ],
14131
        'urn:ogc:def:datum:EPSG::6719' => [
14132
            'name' => 'Easter Island 1967',
14133
            'type' => 'geodetic',
14134
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14135
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14136
            'conventional_rs' => null,
14137
            'frame_reference_epoch' => null,
14138
        ],
14139
        'urn:ogc:def:datum:EPSG::6720' => [
14140
            'name' => 'Fiji Geodetic Datum 1986',
14141
            'type' => 'geodetic',
14142
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7043',
14143
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14144
            'conventional_rs' => null,
14145
            'frame_reference_epoch' => null,
14146
        ],
14147
        'urn:ogc:def:datum:EPSG::6721' => [
14148
            'name' => 'Fiji 1956',
14149
            'type' => 'geodetic',
14150
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14151
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14152
            'conventional_rs' => null,
14153
            'frame_reference_epoch' => null,
14154
        ],
14155
        'urn:ogc:def:datum:EPSG::6722' => [
14156
            'name' => 'South Georgia 1968',
14157
            'type' => 'geodetic',
14158
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14159
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14160
            'conventional_rs' => null,
14161
            'frame_reference_epoch' => null,
14162
        ],
14163
        'urn:ogc:def:datum:EPSG::6723' => [
14164
            'name' => 'Grand Cayman Geodetic Datum 1959',
14165
            'type' => 'geodetic',
14166
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
14167
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14168
            'conventional_rs' => null,
14169
            'frame_reference_epoch' => null,
14170
        ],
14171
        'urn:ogc:def:datum:EPSG::6724' => [
14172
            'name' => 'Diego Garcia 1969',
14173
            'type' => 'geodetic',
14174
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14175
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14176
            'conventional_rs' => null,
14177
            'frame_reference_epoch' => null,
14178
        ],
14179
        'urn:ogc:def:datum:EPSG::6725' => [
14180
            'name' => 'Johnston Island 1961',
14181
            'type' => 'geodetic',
14182
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14183
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14184
            'conventional_rs' => null,
14185
            'frame_reference_epoch' => null,
14186
        ],
14187
        'urn:ogc:def:datum:EPSG::6726' => [
14188
            'name' => 'Sister Islands Geodetic Datum 1961',
14189
            'type' => 'geodetic',
14190
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
14191
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14192
            'conventional_rs' => null,
14193
            'frame_reference_epoch' => null,
14194
        ],
14195
        'urn:ogc:def:datum:EPSG::6727' => [
14196
            'name' => 'Midway 1961',
14197
            'type' => 'geodetic',
14198
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14199
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14200
            'conventional_rs' => null,
14201
            'frame_reference_epoch' => null,
14202
        ],
14203
        'urn:ogc:def:datum:EPSG::6728' => [
14204
            'name' => 'Pico de las Nieves 1984',
14205
            'type' => 'geodetic',
14206
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14207
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14208
            'conventional_rs' => null,
14209
            'frame_reference_epoch' => null,
14210
        ],
14211
        'urn:ogc:def:datum:EPSG::6729' => [
14212
            'name' => 'Pitcairn 1967',
14213
            'type' => 'geodetic',
14214
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14215
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14216
            'conventional_rs' => null,
14217
            'frame_reference_epoch' => null,
14218
        ],
14219
        'urn:ogc:def:datum:EPSG::6730' => [
14220
            'name' => 'Santo 1965',
14221
            'type' => 'geodetic',
14222
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14223
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14224
            'conventional_rs' => null,
14225
            'frame_reference_epoch' => null,
14226
        ],
14227
        'urn:ogc:def:datum:EPSG::6732' => [
14228
            'name' => 'Marshall Islands 1960',
14229
            'type' => 'geodetic',
14230
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7053',
14231
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14232
            'conventional_rs' => null,
14233
            'frame_reference_epoch' => null,
14234
        ],
14235
        'urn:ogc:def:datum:EPSG::6733' => [
14236
            'name' => 'Wake Island 1952',
14237
            'type' => 'geodetic',
14238
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14239
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14240
            'conventional_rs' => null,
14241
            'frame_reference_epoch' => null,
14242
        ],
14243
        'urn:ogc:def:datum:EPSG::6734' => [
14244
            'name' => 'Tristan 1968',
14245
            'type' => 'geodetic',
14246
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14247
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14248
            'conventional_rs' => null,
14249
            'frame_reference_epoch' => null,
14250
        ],
14251
        'urn:ogc:def:datum:EPSG::6735' => [
14252
            'name' => 'Kusaie 1951',
14253
            'type' => 'geodetic',
14254
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14255
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14256
            'conventional_rs' => null,
14257
            'frame_reference_epoch' => null,
14258
        ],
14259
        'urn:ogc:def:datum:EPSG::6736' => [
14260
            'name' => 'Deception Island',
14261
            'type' => 'geodetic',
14262
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
14263
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14264
            'conventional_rs' => null,
14265
            'frame_reference_epoch' => null,
14266
        ],
14267
        'urn:ogc:def:datum:EPSG::6737' => [
14268
            'name' => 'Geocentric datum of Korea',
14269
            'type' => 'geodetic',
14270
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14271
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14272
            'conventional_rs' => null,
14273
            'frame_reference_epoch' => null,
14274
        ],
14275
        'urn:ogc:def:datum:EPSG::6738' => [
14276
            'name' => 'Hong Kong 1963',
14277
            'type' => 'geodetic',
14278
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007',
14279
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14280
            'conventional_rs' => null,
14281
            'frame_reference_epoch' => null,
14282
        ],
14283
        'urn:ogc:def:datum:EPSG::6739' => [
14284
            'name' => 'Hong Kong 1963(67)',
14285
            'type' => 'geodetic',
14286
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14287
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14288
            'conventional_rs' => null,
14289
            'frame_reference_epoch' => null,
14290
        ],
14291
        'urn:ogc:def:datum:EPSG::6740' => [
14292
            'name' => 'Parametry Zemli 1990',
14293
            'type' => 'dynamic geodetic',
14294
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7054',
14295
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14296
            'conventional_rs' => null,
14297
            'frame_reference_epoch' => 1990.0,
14298
        ],
14299
        'urn:ogc:def:datum:EPSG::6741' => [
14300
            'name' => 'Faroe Datum 1954',
14301
            'type' => 'geodetic',
14302
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14303
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14304
            'conventional_rs' => null,
14305
            'frame_reference_epoch' => null,
14306
        ],
14307
        'urn:ogc:def:datum:EPSG::6742' => [
14308
            'name' => 'Geodetic Datum of Malaysia 2000',
14309
            'type' => 'geodetic',
14310
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14311
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14312
            'conventional_rs' => null,
14313
            'frame_reference_epoch' => null,
14314
        ],
14315
        'urn:ogc:def:datum:EPSG::6743' => [
14316
            'name' => 'Karbala 1979',
14317
            'type' => 'geodetic',
14318
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
14319
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14320
            'conventional_rs' => null,
14321
            'frame_reference_epoch' => null,
14322
        ],
14323
        'urn:ogc:def:datum:EPSG::6744' => [
14324
            'name' => 'Nahrwan 1934',
14325
            'type' => 'geodetic',
14326
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
14327
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14328
            'conventional_rs' => null,
14329
            'frame_reference_epoch' => null,
14330
        ],
14331
        'urn:ogc:def:datum:EPSG::6745' => [
14332
            'name' => 'Rauenberg Datum/83',
14333
            'type' => 'geodetic',
14334
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14335
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14336
            'conventional_rs' => null,
14337
            'frame_reference_epoch' => null,
14338
        ],
14339
        'urn:ogc:def:datum:EPSG::6746' => [
14340
            'name' => 'Potsdam Datum/83',
14341
            'type' => 'geodetic',
14342
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14343
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14344
            'conventional_rs' => null,
14345
            'frame_reference_epoch' => null,
14346
        ],
14347
        'urn:ogc:def:datum:EPSG::6747' => [
14348
            'name' => 'Greenland 1996',
14349
            'type' => 'geodetic',
14350
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14351
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14352
            'conventional_rs' => null,
14353
            'frame_reference_epoch' => null,
14354
        ],
14355
        'urn:ogc:def:datum:EPSG::6748' => [
14356
            'name' => 'Vanua Levu 1915',
14357
            'type' => 'geodetic',
14358
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7055',
14359
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14360
            'conventional_rs' => null,
14361
            'frame_reference_epoch' => null,
14362
        ],
14363
        'urn:ogc:def:datum:EPSG::6749' => [
14364
            'name' => 'Reseau Geodesique de Nouvelle Caledonie 91-93',
14365
            'type' => 'geodetic',
14366
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14367
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14368
            'conventional_rs' => null,
14369
            'frame_reference_epoch' => null,
14370
        ],
14371
        'urn:ogc:def:datum:EPSG::6750' => [
14372
            'name' => 'ST87 Ouvea',
14373
            'type' => 'geodetic',
14374
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14375
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14376
            'conventional_rs' => null,
14377
            'frame_reference_epoch' => null,
14378
        ],
14379
        'urn:ogc:def:datum:EPSG::6751' => [
14380
            'name' => 'Kertau (RSO)',
14381
            'type' => 'geodetic',
14382
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7056',
14383
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14384
            'conventional_rs' => null,
14385
            'frame_reference_epoch' => null,
14386
        ],
14387
        'urn:ogc:def:datum:EPSG::6752' => [
14388
            'name' => 'Viti Levu 1912',
14389
            'type' => 'geodetic',
14390
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7055',
14391
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14392
            'conventional_rs' => null,
14393
            'frame_reference_epoch' => null,
14394
        ],
14395
        'urn:ogc:def:datum:EPSG::6753' => [
14396
            'name' => 'fk89',
14397
            'type' => 'geodetic',
14398
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14399
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14400
            'conventional_rs' => null,
14401
            'frame_reference_epoch' => null,
14402
        ],
14403
        'urn:ogc:def:datum:EPSG::6754' => [
14404
            'name' => 'Libyan Geodetic Datum 2006',
14405
            'type' => 'geodetic',
14406
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14407
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14408
            'conventional_rs' => null,
14409
            'frame_reference_epoch' => null,
14410
        ],
14411
        'urn:ogc:def:datum:EPSG::6755' => [
14412
            'name' => 'Datum Geodesi Nasional 1995',
14413
            'type' => 'geodetic',
14414
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14415
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14416
            'conventional_rs' => null,
14417
            'frame_reference_epoch' => null,
14418
        ],
14419
        'urn:ogc:def:datum:EPSG::6756' => [
14420
            'name' => 'Vietnam 2000',
14421
            'type' => 'geodetic',
14422
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14423
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14424
            'conventional_rs' => null,
14425
            'frame_reference_epoch' => null,
14426
        ],
14427
        'urn:ogc:def:datum:EPSG::6757' => [
14428
            'name' => 'SVY21',
14429
            'type' => 'geodetic',
14430
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14431
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14432
            'conventional_rs' => null,
14433
            'frame_reference_epoch' => null,
14434
        ],
14435
        'urn:ogc:def:datum:EPSG::6758' => [
14436
            'name' => 'Jamaica 2001',
14437
            'type' => 'geodetic',
14438
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14439
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14440
            'conventional_rs' => null,
14441
            'frame_reference_epoch' => null,
14442
        ],
14443
        'urn:ogc:def:datum:EPSG::6759' => [
14444
            'name' => 'NAD83 (National Spatial Reference System 2007)',
14445
            'type' => 'geodetic',
14446
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14447
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14448
            'conventional_rs' => null,
14449
            'frame_reference_epoch' => null,
14450
        ],
14451
        'urn:ogc:def:datum:EPSG::6760' => [
14452
            'name' => 'World Geodetic System 1966',
14453
            'type' => 'dynamic geodetic',
14454
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7025',
14455
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14456
            'conventional_rs' => null,
14457
            'frame_reference_epoch' => 1966.0,
14458
        ],
14459
        'urn:ogc:def:datum:EPSG::6761' => [
14460
            'name' => 'Croatian Terrestrial Reference System',
14461
            'type' => 'geodetic',
14462
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14463
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14464
            'conventional_rs' => null,
14465
            'frame_reference_epoch' => null,
14466
        ],
14467
        'urn:ogc:def:datum:EPSG::6762' => [
14468
            'name' => 'Bermuda 2000',
14469
            'type' => 'geodetic',
14470
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14471
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14472
            'conventional_rs' => null,
14473
            'frame_reference_epoch' => null,
14474
        ],
14475
        'urn:ogc:def:datum:EPSG::6763' => [
14476
            'name' => 'Pitcairn 2006',
14477
            'type' => 'geodetic',
14478
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14479
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14480
            'conventional_rs' => null,
14481
            'frame_reference_epoch' => null,
14482
        ],
14483
        'urn:ogc:def:datum:EPSG::6764' => [
14484
            'name' => 'Ross Sea Region Geodetic Datum 2000',
14485
            'type' => 'geodetic',
14486
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14487
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14488
            'conventional_rs' => null,
14489
            'frame_reference_epoch' => null,
14490
        ],
14491
        'urn:ogc:def:datum:EPSG::6765' => [
14492
            'name' => 'Slovenia Geodetic Datum 1996',
14493
            'type' => 'geodetic',
14494
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14495
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14496
            'conventional_rs' => null,
14497
            'frame_reference_epoch' => null,
14498
        ],
14499
        'urn:ogc:def:datum:EPSG::6801' => [
14500
            'name' => 'CH1903 (Bern)',
14501
            'type' => 'geodetic',
14502
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14503
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8907',
14504
            'conventional_rs' => null,
14505
            'frame_reference_epoch' => null,
14506
        ],
14507
        'urn:ogc:def:datum:EPSG::6802' => [
14508
            'name' => 'Bogota 1975 (Bogota)',
14509
            'type' => 'geodetic',
14510
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14511
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8904',
14512
            'conventional_rs' => null,
14513
            'frame_reference_epoch' => null,
14514
        ],
14515
        'urn:ogc:def:datum:EPSG::6803' => [
14516
            'name' => 'Lisbon 1937 (Lisbon)',
14517
            'type' => 'geodetic',
14518
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14519
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8902',
14520
            'conventional_rs' => null,
14521
            'frame_reference_epoch' => null,
14522
        ],
14523
        'urn:ogc:def:datum:EPSG::6804' => [
14524
            'name' => 'Makassar (Jakarta)',
14525
            'type' => 'geodetic',
14526
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14527
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8908',
14528
            'conventional_rs' => null,
14529
            'frame_reference_epoch' => null,
14530
        ],
14531
        'urn:ogc:def:datum:EPSG::6805' => [
14532
            'name' => 'Militar-Geographische Institut (Ferro)',
14533
            'type' => 'geodetic',
14534
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14535
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909',
14536
            'conventional_rs' => null,
14537
            'frame_reference_epoch' => null,
14538
        ],
14539
        'urn:ogc:def:datum:EPSG::6806' => [
14540
            'name' => 'Monte Mario (Rome)',
14541
            'type' => 'geodetic',
14542
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14543
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8906',
14544
            'conventional_rs' => null,
14545
            'frame_reference_epoch' => null,
14546
        ],
14547
        'urn:ogc:def:datum:EPSG::6807' => [
14548
            'name' => 'Nouvelle Triangulation Francaise (Paris)',
14549
            'type' => 'geodetic',
14550
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
14551
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903',
14552
            'conventional_rs' => null,
14553
            'frame_reference_epoch' => null,
14554
        ],
14555
        'urn:ogc:def:datum:EPSG::6809' => [
14556
            'name' => 'Reseau National Belge 1950 (Brussels)',
14557
            'type' => 'geodetic',
14558
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14559
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8910',
14560
            'conventional_rs' => null,
14561
            'frame_reference_epoch' => null,
14562
        ],
14563
        'urn:ogc:def:datum:EPSG::6810' => [
14564
            'name' => 'Tananarive 1925 (Paris)',
14565
            'type' => 'geodetic',
14566
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14567
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903',
14568
            'conventional_rs' => null,
14569
            'frame_reference_epoch' => null,
14570
        ],
14571
        'urn:ogc:def:datum:EPSG::6811' => [
14572
            'name' => 'Voirol 1875 (Paris)',
14573
            'type' => 'geodetic',
14574
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
14575
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903',
14576
            'conventional_rs' => null,
14577
            'frame_reference_epoch' => null,
14578
        ],
14579
        'urn:ogc:def:datum:EPSG::6813' => [
14580
            'name' => 'Batavia (Jakarta)',
14581
            'type' => 'geodetic',
14582
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14583
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8908',
14584
            'conventional_rs' => null,
14585
            'frame_reference_epoch' => null,
14586
        ],
14587
        'urn:ogc:def:datum:EPSG::6814' => [
14588
            'name' => 'Stockholm 1938 (Stockholm)',
14589
            'type' => 'geodetic',
14590
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14591
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8911',
14592
            'conventional_rs' => null,
14593
            'frame_reference_epoch' => null,
14594
        ],
14595
        'urn:ogc:def:datum:EPSG::6815' => [
14596
            'name' => 'Greek (Athens)',
14597
            'type' => 'geodetic',
14598
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14599
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8912',
14600
            'conventional_rs' => null,
14601
            'frame_reference_epoch' => null,
14602
        ],
14603
        'urn:ogc:def:datum:EPSG::6816' => [
14604
            'name' => 'Carthage (Paris)',
14605
            'type' => 'geodetic',
14606
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
14607
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903',
14608
            'conventional_rs' => null,
14609
            'frame_reference_epoch' => null,
14610
        ],
14611
        'urn:ogc:def:datum:EPSG::6817' => [
14612
            'name' => 'NGO 1948 (Oslo)',
14613
            'type' => 'geodetic',
14614
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7005',
14615
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8913',
14616
            'conventional_rs' => null,
14617
            'frame_reference_epoch' => null,
14618
        ],
14619
        'urn:ogc:def:datum:EPSG::6818' => [
14620
            'name' => 'System of the Unified Trigonometrical Cadastral Network (Ferro)',
14621
            'type' => 'geodetic',
14622
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14623
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909',
14624
            'conventional_rs' => null,
14625
            'frame_reference_epoch' => null,
14626
        ],
14627
        'urn:ogc:def:datum:EPSG::6820' => [
14628
            'name' => 'Gunung Segara (Jakarta)',
14629
            'type' => 'geodetic',
14630
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14631
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8908',
14632
            'conventional_rs' => null,
14633
            'frame_reference_epoch' => null,
14634
        ],
14635
        'urn:ogc:def:datum:EPSG::6821' => [
14636
            'name' => 'Voirol 1879 (Paris)',
14637
            'type' => 'geodetic',
14638
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
14639
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903',
14640
            'conventional_rs' => null,
14641
            'frame_reference_epoch' => null,
14642
        ],
14643
        'urn:ogc:def:datum:EPSG::6896' => [
14644
            'name' => 'International Terrestrial Reference Frame 2005',
14645
            'type' => 'dynamic geodetic',
14646
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14647
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14648
            'conventional_rs' => null,
14649
            'frame_reference_epoch' => 2000.0,
14650
        ],
14651
        'urn:ogc:def:datum:EPSG::6901' => [
14652
            'name' => 'Ancienne Triangulation Francaise (Paris)',
14653
            'type' => 'geodetic',
14654
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7027',
14655
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8914',
14656
            'conventional_rs' => null,
14657
            'frame_reference_epoch' => null,
14658
        ],
14659
        'urn:ogc:def:datum:EPSG::6903' => [
14660
            'name' => 'Madrid 1870 (Madrid)',
14661
            'type' => 'geodetic',
14662
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7028',
14663
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8905',
14664
            'conventional_rs' => null,
14665
            'frame_reference_epoch' => null,
14666
        ],
14667
        'urn:ogc:def:datum:EPSG::6904' => [
14668
            'name' => 'Lisbon 1890 (Lisbon)',
14669
            'type' => 'geodetic',
14670
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14671
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8902',
14672
            'conventional_rs' => null,
14673
            'frame_reference_epoch' => null,
14674
        ],
14675
    ];
14676
14677
    public const DATUM_TYPE_GEODETIC = 'geodetic';
14678
14679
    public const DATUM_TYPE_VERTICAL = 'vertical';
14680
14681
    public const DATUM_TYPE_DYNAMIC_GEODETIC = 'dynamic_geodetic';
14682
14683
    public const DATUM_TYPE_DYNAMIC_VERTICAL = 'dynamic_vertical';
14684
14685
    public const DATUM_TYPE_ENGINEERING = 'engineering';
14686
14687
    public const DATUM_TYPE_ENSEMBLE = 'ensemble';
14688
14689
    private static array $cachedObjects = [];
14690
14691
    protected string $datumType;
14692
14693
    protected ?Ellipsoid $ellipsoid;
14694
14695
    protected ?PrimeMeridian $primeMeridian;
14696
14697
    protected ?DateTimeInterface $frameReferenceEpoch;
14698
14699
    protected string $name;
14700
14701
    protected string $srid;
14702
14703 3801
    public function __construct(
14704
        string $datumType,
14705
        ?Ellipsoid $ellipsoid,
14706
        ?PrimeMeridian $primeMeridian,
14707
        ?DateTimeInterface $frameReferenceEpoch,
14708
        string $name = '',
14709
        string $srid = ''
14710
    ) {
14711 3801
        $this->datumType = $datumType;
14712 3801
        $this->ellipsoid = $ellipsoid;
14713 3801
        $this->primeMeridian = $primeMeridian;
14714 3801
        $this->frameReferenceEpoch = $frameReferenceEpoch;
14715 3801
        $this->name = $name;
14716 3801
        $this->srid = $srid;
14717
    }
14718
14719 18
    public function getDatumType(): string
14720
    {
14721 18
        return $this->datumType;
14722
    }
14723
14724 9727
    public function getEllipsoid(): Ellipsoid
14725
    {
14726 9727
        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...
14727
    }
14728
14729 6914
    public function getPrimeMeridian(): PrimeMeridian
14730
    {
14731 6914
        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...
14732
    }
14733
14734 9
    public function getFrameReferenceEpoch(): ?DateTimeInterface
14735
    {
14736 9
        return $this->frameReferenceEpoch;
14737
    }
14738
14739
    public function getName(): string
14740
    {
14741
        return $this->name;
14742
    }
14743
14744 8271
    public function getSRID(): string
14745
    {
14746 8271
        return $this->srid;
14747
    }
14748
14749 7781
    public static function fromSRID(string $srid): self
14750
    {
14751 7781
        if (!isset(static::$sridData[$srid])) {
14752 9
            throw new UnknownDatumException($srid);
14753
        }
14754
14755 7772
        if (!isset(self::$cachedObjects[$srid])) {
14756 3783
            $data = static::$sridData[$srid];
14757 3783
            $frameReferenceEpoch = null;
14758 3783
            if ($data['frame_reference_epoch'] instanceof DateTimeInterface) {
14759
                $frameReferenceEpoch = $data['frame_reference_epoch'];
14760 3783
            } elseif ($data['frame_reference_epoch']) {
14761 66
                $frameReferenceEpoch = (new Year($data['frame_reference_epoch']))->asDateTime();
14762
            }
14763
14764 3783
            if ($data['type'] === self::DATUM_TYPE_ENSEMBLE) { // if ensemble, use latest realisation for data
14765 18
                $latest = static::$sridData[end(static::$sridData[$srid]['ensemble'])];
14766 18
                self::$cachedObjects[$srid] = new static(
14767 18
                    $data['type'],
14768 18
                    $latest['ellipsoid'] ? Ellipsoid::fromSRID($latest['ellipsoid']) : null,
14769 18
                    $latest['prime_meridian'] ? PrimeMeridian::fromSRID($latest['prime_meridian']) : null,
14770 18
                    $frameReferenceEpoch,
14771 18
                    $data['name'],
14772 18
                    $srid,
14773 18
                );
14774 3782
            } elseif ($data['ellipsoid']) {
14775 3454
                self::$cachedObjects[$srid] = new static(
14776 3454
                    $data['type'],
14777 3454
                    Ellipsoid::fromSRID($data['ellipsoid']),
14778 3454
                    PrimeMeridian::fromSRID($data['prime_meridian']),
14779 3454
                    $frameReferenceEpoch,
14780 3454
                    $data['name'],
14781 3454
                    $srid,
14782 3454
                );
14783
            } else {
14784 352
                self::$cachedObjects[$srid] = new static(
14785 352
                    $data['type'],
14786 352
                    null,
14787 352
                    null,
14788 352
                    $frameReferenceEpoch,
14789 352
                    $data['name'],
14790 352
                    $srid,
14791 352
                );
14792
            }
14793
        }
14794
14795 7772
        return self::$cachedObjects[$srid];
14796
    }
14797
14798 3429
    public static function getSupportedSRIDs(): array
14799
    {
14800 3429
        $supported = [];
14801 3429
        foreach (static::$sridData as $srid => $data) {
14802 3429
            $supported[$srid] = $data['name'];
14803
        }
14804
14805 3429
        return $supported;
14806
    }
14807
14808 306
    public static function registerCustomDatum(string $srid, string $name, string $type, ?string $ellipsoidSrid, ?string $primeMeridianSrid, ?DateTimeInterface $frameReferenceEpoch): void
14809
    {
14810 306
        self::$sridData[$srid] = ['name' => $name, 'type' => $type, 'ellipsoid' => $ellipsoidSrid, 'prime_meridian' => $primeMeridianSrid, 'frame_reference_epoch' => $frameReferenceEpoch];
14811
    }
14812
}
14813