Passed
Push — master ( 344e29...cbaf3e )
by Doug
38:02
created

Datum   B

Complexity

Total Complexity 19

Size/Duplication

Total Lines 14465
Duplicated Lines 0 %

Test Coverage

Coverage 95.31%

Importance

Changes 6
Bugs 0 Features 0
Metric Value
eloc 6596
dl 0
loc 14465
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 getDatumType() 0 3 1
A getFrameReferenceEpoch() 0 3 1
B fromSRID() 0 47 9
A getSRID() 0 3 1
A getPrimeMeridian() 0 3 1
A getSupportedSRIDs() 0 8 2
A getName() 0 3 1
A registerCustomDatum() 0 3 1
A __construct() 0 14 1
A getEllipsoid() 0 3 1
1
<?php
2
/**
3
 * PHPCoord.
4
 *
5
 * @author Doug Wright
6
 */
7
declare(strict_types=1);
8
9
namespace PHPCoord\Datum;
10
11
use DateTimeInterface;
12
use PHPCoord\Exception\UnknownDatumException;
13
use PHPCoord\UnitOfMeasure\Time\Year;
14
15
use function end;
16
17
class Datum
18
{
19
    /**
20
     * AIOC 1995
21
     * Type: Vertical
22
     * Extent: Azerbaijan - Caspian offshore and onshore Sangachal terminal.
23
     * Average level of Caspian Sea at the Oil Rocks tide gauge June-September 1995.
24
     * AIOC 1995 datum is 1.7m above Caspian datum and 26.3m below Baltic datum.
25
     */
26
    public const EPSG_AIOC_1995 = 'urn:ogc:def:datum:EPSG::5133';
27
28
    /**
29
     * AbInvA96_2020 Intermediate Reference Frame
30
     * Type: Geodetic
31
     * Extent: United Kingdom (UK) - on or related to the A96 highway from Aberdeen to Inverness.
32
     * Defined through the application of the AbInvA96_2000 NTv2 transformation (code 9386) to ETRS89 as realized
33
     * through OSNet v2009 CORS.
34
     * Created in 2020 to support intermediate CRS "AbInvA96_2020-IRF" in the emulation of the AbInvA96_2020 Snake map
35
     * projection.
36
     */
37
    public const EPSG_ABINVA96_2020_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1273';
38
39
    /**
40
     * Abidjan 1987
41
     * Type: Geodetic
42
     * Extent: Côte d'Ivoire (Ivory Coast) - onshore and offshore.
43
     * Fundamental point: Abidjan I. Latitude: 5°18'51.01"N, longitude: 4°02'06.04"W (of Greenwich).
44
     */
45
    public const EPSG_ABIDJAN_1987 = 'urn:ogc:def:datum:EPSG::6143';
46
47
    /**
48
     * Accra
49
     * Type: Geodetic
50
     * Extent: Ghana - onshore and offshore.
51
     * Fundamental point: GCS Station 547. Latitude: 5°23'43.3"N, longitude: 0°11'52.3"W (of Greenwich).
52
     * Replaced in 1978 by Leigon datum (code 6250).
53
     */
54
    public const EPSG_ACCRA = 'urn:ogc:def:datum:EPSG::6168';
55
56
    /**
57
     * Aden 1925
58
     * Type: Geodetic
59
     * Extent: Yemen - South Yemen onshore mainland.
60
     */
61
    public const EPSG_ADEN_1925 = 'urn:ogc:def:datum:EPSG::1135';
62
63
    /**
64
     * Adindan
65
     * Type: Geodetic
66
     * Extent: Eritrea; Ethiopia; South Sudan; Sudan.
67
     * Fundamental point: Station 15; Adindan. Latitude: 22°10'07.110"N, longitude: 31°29'21.608"E (of Greenwich).
68
     * The 12th parallel traverse of 1966-70 (Point 58 datum, code 6620) is connected to the Blue Nile 1958 network in
69
     * western Sudan. This has given rise to misconceptions that the Blue Nile network is used in west Africa.
70
     */
71
    public const EPSG_ADINDAN = 'urn:ogc:def:datum:EPSG::6201';
72
73
    /**
74
     * Afgooye
75
     * Type: Geodetic
76
     * Extent: Somalia - onshore.
77
     */
78
    public const EPSG_AFGOOYE = 'urn:ogc:def:datum:EPSG::6205';
79
80
    /**
81
     * Agadez
82
     * Type: Geodetic
83
     * Extent: Niger.
84
     */
85
    public const EPSG_AGADEZ = 'urn:ogc:def:datum:EPSG::6206';
86
87
    /**
88
     * Ain el Abd 1970
89
     * Type: Geodetic
90
     * Extent: Bahrain, Kuwait and Saudi Arabia - onshore.
91
     * Fundamental point: Ain El Abd.  Latitude: 28°14'06.171"N, longitude: 48°16'20.906"E (of Greenwich).
92
     */
93
    public const EPSG_AIN_EL_ABD_1970 = 'urn:ogc:def:datum:EPSG::6204';
94
95
    /**
96
     * Albanian 1987
97
     * Type: Geodetic
98
     * Extent: Albania - onshore.
99
     */
100
    public const EPSG_ALBANIAN_1987 = 'urn:ogc:def:datum:EPSG::6191';
101
102
    /**
103
     * Alicante
104
     * Type: Vertical
105
     * Extent: Gibraltar - onshore; Spain - mainland onshore.
106
     * Mean Sea Level at Alicante between 1870 and 1872.
107
     * Orthometric heights.
108
     */
109
    public const EPSG_ALICANTE = 'urn:ogc:def:datum:EPSG::5180';
110
111
    /**
112
     * American Samoa 1962
113
     * Type: Geodetic
114
     * Extent: American Samoa - Tutuila, Aunu'u, Ofu, Olesega and Ta'u islands.
115
     * Fundamental point: Betty 13 eccentric. Latitude: 14°20'08.34"S, longitude: 170°42'52.25"W (of Greenwich).
116
     */
117
    public const EPSG_AMERICAN_SAMOA_1962 = 'urn:ogc:def:datum:EPSG::6169';
118
119
    /**
120
     * American Samoa Vertical Datum of 2002
121
     * Type: Vertical
122
     * Extent: American Samoa - Tutuila island.
123
     * Mean sea level at Pago Pago harbor, Tutuila. Benchmark 1770000 S TIDAL = 1.364m relative to National Tidal Datum
124
     * Epoch 1983-2001.
125
     * Replaces Tutuila vertical datum of 1962 (datum code 1121). Replaced by Pago Pago local tidal datum (datum code
126
     * 1302) in March 2020 after ASVD02 benchmarks destroyed by earthquake activity.
127
     */
128
    public const EPSG_AMERICAN_SAMOA_VERTICAL_DATUM_OF_2002 = 'urn:ogc:def:datum:EPSG::1125';
129
130
    /**
131
     * Amersfoort
132
     * Type: Geodetic
133
     * Extent: Netherlands - onshore, including Waddenzee, Dutch Wadden Islands and 12-mile offshore coastal zone.
134
     * Originally defined through fundamental point Amersfoort, latitude 52°09'22.178"N, longitude 5°23'15.478"E (of
135
     * Greenwich). Since 2000-10-01 has been redefined as derived from ETRS89 by application of the official
136
     * transformation RDNAPTRANS(TM).
137
     */
138
    public const EPSG_AMERSFOORT = 'urn:ogc:def:datum:EPSG::6289';
139
140
    /**
141
     * Ammassalik 1958
142
     * Type: Geodetic
143
     * Extent: Greenland - Ammassalik area onshore.
144
     */
145
    public const EPSG_AMMASSALIK_1958 = 'urn:ogc:def:datum:EPSG::6196';
146
147
    /**
148
     * Ancienne Triangulation Francaise (Paris)
149
     * Type: Geodetic
150
     * Extent: France - mainland onshore.
151
     * Uses the RGS value for the Paris meridian. In Alsace, data suspected to be transformation of German network 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
     * CR-SIRGAS
651
     * Type: Geodetic
652
     * Extent: Costa Rica - onshore and offshore.
653
     * ITRF2008 (IGb08) at epoch 2014.59. Network of 42 GNSS stations of the passive and active reference system.
654
     * Replaces CR05 from April 2018.
655
     */
656
    public const EPSG_CR_SIRGAS = 'urn:ogc:def:datum:EPSG::1225';
657
658
    /**
659
     * Cadastre 1997
660
     * Type: Geodetic
661
     * Extent: Mayotte - onshore.
662
     * Coordinates of 1 station of Combani 1950 adjustment held fixed.
663
     * Derived by adjustment of GPS-observed network which was constrained to Combani 1950 coordinates of one station.
664
     */
665
    public const EPSG_CADASTRE_1997 = 'urn:ogc:def:datum:EPSG::1037';
666
667
    /**
668
     * Cagliari 1956
669
     * Type: Vertical
670
     * Extent: Italy - Sardinia onshore.
671
     * Mean Sea Level at Cagliari 1955-1957.
672
     * Orthometric heights.
673
     */
674
    public const EPSG_CAGLIARI_1956 = 'urn:ogc:def:datum:EPSG::1307';
675
676
    /**
677
     * Cais da Figueirinha - Angra do Heroismo
678
     * Type: Vertical
679
     * Extent: Portugal - central Azores - Terceira island onshore.
680
     * Mean Sea Level during 1951 at Cais da Figueirinha - Angra do Heroísmo.
681
     * Orthometric heights.
682
     */
683
    public const EPSG_CAIS_DA_FIGUEIRINHA_ANGRA_DO_HEROISMO = 'urn:ogc:def:datum:EPSG::1107';
684
685
    /**
686
     * Cais da Madalena
687
     * Type: Vertical
688
     * Extent: Portugal - central Azores - Pico island onshore.
689
     * Mean Sea Level during 1937 at Cais da Madalena.
690
     * Orthometric heights.
691
     */
692
    public const EPSG_CAIS_DA_MADALENA = 'urn:ogc:def:datum:EPSG::1105';
693
694
    /**
695
     * Cais da Pontinha - Funchal
696
     * Type: Vertical
697
     * Extent: Portugal - Madeira and Desertas islands - onshore.
698
     * Mean Sea Level during 1913 at Cais da Pontinha, Funchal.
699
     * Orthometric heights.
700
     */
701
    public const EPSG_CAIS_DA_PONTINHA_FUNCHAL = 'urn:ogc:def:datum:EPSG::1101';
702
703
    /**
704
     * Cais da Vila - Porto Santo
705
     * Type: Vertical
706
     * Extent: Portugal - Porto Santo island (Madeira archipelago) onshore.
707
     * Mean Sea Level during 1936 at Cais da Vila, Porto Santo.
708
     * Orthometric heights.
709
     */
710
    public const EPSG_CAIS_DA_VILA_PORTO_SANTO = 'urn:ogc:def:datum:EPSG::1102';
711
712
    /**
713
     * Cais da Vila do Porto
714
     * Type: Vertical
715
     * Extent: Portugal - eastern Azores onshore - Santa Maria, Formigas.
716
     * Mean Sea Level during 1965 at Cais da Vila, Porto.
717
     * Orthometric heights.
718
     */
719
    public const EPSG_CAIS_DA_VILA_DO_PORTO = 'urn:ogc:def:datum:EPSG::1109';
720
721
    /**
722
     * Cais das Velas
723
     * Type: Vertical
724
     * Extent: Portugal - central Azores - Sao Jorge island onshore.
725
     * Mean Sea Level during 1937 at Cais das Velas.
726
     * Orthometric heights.
727
     */
728
    public const EPSG_CAIS_DAS_VELAS = 'urn:ogc:def:datum:EPSG::1103';
729
730
    /**
731
     * Camacupa 1948
732
     * Type: Geodetic
733
     * Extent: Angola - Angola proper - onshore and offshore.
734
     * Fundamental point: Campo de Aviaçao. Latitude: 12°01'09.070"S, Longitude = 17°27'19.800"E (of Greenwich).
735
     * Provisional adjustment, replaced in 2015 for onshore use by Camacupa 2015.
736
     */
737
    public const EPSG_CAMACUPA_1948 = 'urn:ogc:def:datum:EPSG::6220';
738
739
    /**
740
     * Camacupa 2015
741
     * Type: Geodetic
742
     * Extent: Angola - onshore and offshore.
743
     * Fundamental point: Campo de Aviaçao. Latitude: 12°01'08.702"S, Longitude = 17°27'19.515"E (of Greenwich).
744
     * Second adjustment. Not used for offshore oil and gas exploration and production.
745
     */
746
    public const EPSG_CAMACUPA_2015 = 'urn:ogc:def:datum:EPSG::1217';
747
748
    /**
749
     * Camp Area Astro
750
     * Type: Geodetic
751
     * Extent: Antarctica - McMurdo Sound, Camp McMurdo area.
752
     */
753
    public const EPSG_CAMP_AREA_ASTRO = 'urn:ogc:def:datum:EPSG::6715';
754
755
    /**
756
     * Campo Inchauspe
757
     * Type: Geodetic
758
     * Extent: Argentina - mainland onshore and Atlantic offshore Tierra del Fuego.
759
     * Fundamental point: Campo Inchauspe. Latitude: 35°58'16.56"S, longitude: 62°10'12.03"W (of Greenwich).
760
     */
761
    public const EPSG_CAMPO_INCHAUSPE = 'urn:ogc:def:datum:EPSG::6221';
762
763
    /**
764
     * Canadian Geodetic Vertical Datum of 1928
765
     * Type: Vertical
766
     * Extent: Canada - onshore - Alberta; British Columbia; Manitoba south of 57°N; New Brunswick; Northwest
767
     * Territories south west of a line between 60°N, 110°W and the coast at 132°W; Nova Scotia; Ontario south of
768
     * 52°N; Prince Edward Island; Quebec - mainland west of 66°W and south of 55°N; Saskatchewan south of 55°N;
769
     * Yukon.
770
     * Based on the mean sea level determined from several tidal gauges located in strategic areas of the country.
771
     * From November 2013 replaced by CGVD2013 (datum code 1127).
772
     */
773
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_1928 = 'urn:ogc:def:datum:EPSG::5114';
774
775
    /**
776
     * Canadian Geodetic Vertical Datum of 2013 (CGG2013)
777
     * Type: Vertical
778
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
779
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
780
     * Yukon.
781
     * Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean
782
     * sea level for North America, realized through the Canadian gravimetric geoid (CGG) 2013 at epoch 2010.0.
783
     * Replaces CGVD28 from November 2013. Replaced by CGVD2013(CGG2013a) epoch 2010 from December 2015, supplemented
784
     * from February 2021 by snapshots of CGVD2013(CGG2013a) at epochs 1997.0 and 2002.0 (aligned with NAD83(CSRS)
785
     * realization epochs).
786
     */
787
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013 = 'urn:ogc:def:datum:EPSG::1127';
788
789
    /**
790
     * Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 1997
791
     * Type: Vertical
792
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
793
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
794
     * Yukon.
795
     * Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean
796
     * sea level for North America, realized through the Canadian gravimetric geoid 2013a applied at epoch 1997.0.
797
     * CGVD2013(CGG2013a) is a static datum; however, heights referenced to it change with time, primarily due to
798
     * glacial isostasy. This datum supports CGVD2013(CGG2013a) heights at epoch 1997.0. Other snapshots are at epochs
799
     * 2002.0 and 2010.0.
800
     */
801
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A_EPOCH_1997 = 'urn:ogc:def:datum:EPSG::1326';
802
803
    /**
804
     * Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 2002
805
     * Type: Vertical
806
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
807
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
808
     * Yukon.
809
     * Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean
810
     * sea level for North America, realized through the Canadian gravimetric geoid 2013a applied at epoch 2002.
811
     * CGVD2013(CGG2013a) is a static datum; however, heights referenced to it change with time, primarily due to
812
     * glacial isostasy. This datum supports CGVD2013(CGG2013a) heights at epoch 2002.0. Other snapshots are at epochs
813
     * 1997.0 and 2010.0.
814
     */
815
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A_EPOCH_2002 = 'urn:ogc:def:datum:EPSG::1325';
816
817
    /**
818
     * Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 2010
819
     * Type: Vertical
820
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
821
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
822
     * Yukon.
823
     * Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean
824
     * sea level for North America, realized through CGG2013a at epoch 2010.0. Geoid velocity defined as zero with
825
     * respect to NAD83(CSRS).
826
     * Replaces CGVD2013(CGG2013). CGVD2013(CGG2013a) is a static datum. However heights referenced to it change with
827
     * time, primarily due to glacial isostasy. In practice static snapshots are used at epochs 2010.0 (this datum),
828
     * 2002.0 and 1997.0.
829
     */
830
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A_EPOCH_2010 = 'urn:ogc:def:datum:EPSG::1256';
831
832
    /**
833
     * Cape
834
     * Type: Geodetic
835
     * Extent: Botswana; Eswatini (Swaziland); Lesotho; South Africa - mainland.
836
     * Fundamental point: Buffelsfontein. Latitude: 33°59'32.000"S, longitude: 25°30'44.622"E (of Greenwich).
837
     */
838
    public const EPSG_CAPE = 'urn:ogc:def:datum:EPSG::6222';
839
840
    /**
841
     * Cape Canaveral
842
     * Type: Geodetic
843
     * Extent: North America - onshore - Bahamas and USA - Florida (east).
844
     * Fundamental point: Central 1950.  Latitude: 28°29'32.36555"N, longitude 80°34'38.77362"W (of Greenwich).
845
     */
846
    public const EPSG_CAPE_CANAVERAL = 'urn:ogc:def:datum:EPSG::6717';
847
848
    /**
849
     * Carthage
850
     * Type: Geodetic
851
     * Extent: Tunisia - onshore and offshore.
852
     * Fundamental point: Carthage. Latitude: 40.9464506g = 36°51'06.50"N, longitude: 8.8724368g E of Paris =
853
     * 10°19'20.72"E (of Greenwich).
854
     * Fundamental point astronomic coordinates determined in 1878.
855
     */
856
    public const EPSG_CARTHAGE = 'urn:ogc:def:datum:EPSG::6223';
857
858
    /**
859
     * Carthage (Paris)
860
     * Type: Geodetic
861
     * Extent: Tunisia - onshore.
862
     * Fundamental point: Carthage. Latitude: 40.9464506g N, longitude: 8.8724368g E (of Paris).
863
     * Fundamental point astronomic coordinates determined in 1878.
864
     */
865
    public const EPSG_CARTHAGE_PARIS = 'urn:ogc:def:datum:EPSG::6816';
866
867
    /**
868
     * Cascais
869
     * Type: Vertical
870
     * Extent: Portugal - mainland - onshore.
871
     * Mean Sea Level at Cascais 1938.
872
     * Orthometric heights.
873
     */
874
    public const EPSG_CASCAIS = 'urn:ogc:def:datum:EPSG::5178';
875
876
    /**
877
     * Caspian Sea
878
     * Type: Vertical
879
     * Extent: Azerbaijan - offshore; Kazakhstan - offshore; Russian Federation - Caspian Sea; Turkmenistan - offshore.
880
     * Defined as -28.0m Baltic datum.
881
     */
882
    public const EPSG_CASPIAN_SEA = 'urn:ogc:def:datum:EPSG::5106';
883
884
    /**
885
     * Catania 1965
886
     * Type: Vertical
887
     * Extent: Italy - Sicily onshore.
888
     * Mean Sea Level at Catania in 1965.
889
     * Orthometric heights.
890
     */
891
    public const EPSG_CATANIA_1965 = 'urn:ogc:def:datum:EPSG::1306';
892
893
    /**
894
     * Cayman Brac Vertical Datum 1961
895
     * Type: Vertical
896
     * Extent: Cayman Islands - Cayman Brac.
897
     */
898
    public const EPSG_CAYMAN_BRAC_VERTICAL_DATUM_1961 = 'urn:ogc:def:datum:EPSG::1099';
899
900
    /**
901
     * Cayman Islands Geodetic Datum 2011
902
     * Type: Geodetic
903
     * Extent: Cayman Islands - onshore and offshore. Includes Grand Cayman, Little Cayman and Cayman Brac.
904
     * ITRF2005 at epoch 2011.0
905
     * Replaces GCGD59 (datum code 6723) and SIGD61 (datum code 6726).
906
     */
907
    public const EPSG_CAYMAN_ISLANDS_GEODETIC_DATUM_2011 = 'urn:ogc:def:datum:EPSG::1100';
908
909
    /**
910
     * Centre Spatial Guyanais 1967
911
     * Type: Geodetic
912
     * Extent: French Guiana - coastal area.
913
     * Fundamental point: Kourou-Diane. Latitude: 5°15'53.699"N, longitude: 52°48'09.149"W (of Greenwich).
914
     * Replaced by RGFG95 (code 6624).
915
     */
916
    public const EPSG_CENTRE_SPATIAL_GUYANAIS_1967 = 'urn:ogc:def:datum:EPSG::6623';
917
918
    /**
919
     * Ceuta 2
920
     * Type: Vertical
921
     * Extent: Spain - Ceuta onshore.
922
     * Mean Sea Level at Ceuta harbour between March 1944 and December 2006.
923
     * Orthometric heights. Replaces an earlier vertical datum in Ceuta harbour measured between 1908 and 1927.
924
     */
925
    public const EPSG_CEUTA_2 = 'urn:ogc:def:datum:EPSG::1285';
926
927
    /**
928
     * Chart Datum UK & Ireland VORF08
929
     * Type: Vertical
930
     * Extent: Ireland and United Kingdom (UK) (including Isle of Man and Channel Islands) - inshore, nearshore and
931
     * offshore.
932
     * CD UK & Ireland VORF08 is defined by the Vertical Offshore Reference Frame v2.11 2008.
933
     * By international agreement, Chart Datum is defined as a level so low that the tide will not frequently fall
934
     * below it. In the United Kingdom and Ireland, this level is normally the level of approximate Lowest Astronomical
935
     * Tide.
936
     */
937
    public const EPSG_CHART_DATUM_UK_AND_IRELAND_VORF08 = 'urn:ogc:def:datum:EPSG::1331';
938
939
    /**
940
     * Chatham Islands Datum 1971
941
     * Type: Geodetic
942
     * Extent: New Zealand - Chatham Islands group - onshore.
943
     * Replaced by Chatham Islands Datum 1979 (code 6673).
944
     */
945
    public const EPSG_CHATHAM_ISLANDS_DATUM_1971 = 'urn:ogc:def:datum:EPSG::6672';
946
947
    /**
948
     * Chatham Islands Datum 1979
949
     * Type: Geodetic
950
     * Extent: New Zealand - Chatham Islands group - onshore.
951
     * Fundamental point: station Astro. Latitude: 43°57'23.60"S, longitude: 176°34'28.65"W (of Greenwich).
952
     * Replaces Chatham Islands Datum 1971 (code 6672). Replaced by New Zealand Geodetic Datum 2000 (code 6167) from
953
     * March 2000.
954
     */
955
    public const EPSG_CHATHAM_ISLANDS_DATUM_1979 = 'urn:ogc:def:datum:EPSG::6673';
956
957
    /**
958
     * China 2000
959
     * Type: Geodetic
960
     * Extent: China - onshore and offshore.
961
     * ITRF97 at epoch 2000.0
962
     * Combined adjustment of astro-geodetic observations as used for Xian 1980 and GPS control network observed
963
     * 2000-2003. Adopted July 2008.
964
     */
965
    public const EPSG_CHINA_2000 = 'urn:ogc:def:datum:EPSG::1043';
966
967
    /**
968
     * Chos Malal 1914
969
     * Type: Geodetic
970
     * Extent: Argentina - Mendoza province, Neuquen province, western La Pampa province and western Rio Negro
971
     * province.
972
     * Chos Malal police station.
973
     * Also known as Quini-Huao. Replaced by Campo Inchauspe (code 6221) for topographic mapping, use for oil
974
     * exploration and production continues.
975
     */
976
    public const EPSG_CHOS_MALAL_1914 = 'urn:ogc:def:datum:EPSG::6160';
977
978
    /**
979
     * Chua
980
     * Type: Geodetic
981
     * Extent: Brazil - south of 18°S and west of 54°W, plus Distrito Federal. Paraguay - north.
982
     * Fundamental point: Chua. Latitude: 19°45'41.160"S, longitude: 48°06'07.560"W (of Greenwich).
983
     * The Chua origin and associated network is in Brazil with a connecting traverse through northern Paraguay. It was
984
     * used in Brazil only as input into the Corrego Allegre adjustment and for government work in Distrito Federal.
985
     */
986
    public const EPSG_CHUA = 'urn:ogc:def:datum:EPSG::6224';
987
988
    /**
989
     * Cocos Islands 1965
990
     * Type: Geodetic
991
     * Extent: Cocos (Keeling) Islands - onshore.
992
     * Fundamental point: Anna 1.
993
     */
994
    public const EPSG_COCOS_ISLANDS_1965 = 'urn:ogc:def:datum:EPSG::6708';
995
996
    /**
997
     * Combani 1950
998
     * Type: Geodetic
999
     * Extent: Mayotte - onshore.
1000
     * Combani South Base.
1001
     * Replaced by RGM04 and Cadastre 1997 (datum codes 1036-37).
1002
     */
1003
    public const EPSG_COMBANI_1950 = 'urn:ogc:def:datum:EPSG::6632';
1004
1005
    /**
1006
     * Conakry 1905
1007
     * Type: Geodetic
1008
     * Extent: Guinea - onshore.
1009
     * Fundamental point: Conakry. Latitude: 10.573766g N, longitude: 17.833682g W (of Paris).
1010
     */
1011
    public const EPSG_CONAKRY_1905 = 'urn:ogc:def:datum:EPSG::6315';
1012
1013
    /**
1014
     * Congo 1960 Pointe Noire
1015
     * Type: Geodetic
1016
     * Extent: Congo - onshore and offshore.
1017
     * Fundamental point: Point Noire Astro. Latitude: 4°47'00.10"S, longitude: 11°51'01.55"E (of Greenwich).
1018
     */
1019
    public const EPSG_CONGO_1960_POINTE_NOIRE = 'urn:ogc:def:datum:EPSG::6282';
1020
1021
    /**
1022
     * Constanta
1023
     * Type: Vertical
1024
     * Extent: Romania - onshore.
1025
     * Mean Sea Level at Constanta.
1026
     * Normal-orthometric heights.
1027
     */
1028
    public const EPSG_CONSTANTA = 'urn:ogc:def:datum:EPSG::5179';
1029
1030
    /**
1031
     * Corrego Alegre 1961
1032
     * Type: Geodetic
1033
     * Extent: Brazil - onshore - between 18°S and 27°30'S, also east of 54°W between 15°S and 18°S.
1034
     * Fundamental point: Corrego Alegre. Latitude: 19°50'14.91"S, longitude: 48°57'41.98"W (of Greenwich).
1035
     * Replaced by Corrego Alegre 1970-72 (datum code 6225). NIMA gives coordinates of origin as latitude:
1036
     * 19°50'15.14"S, longitude: 48°57'42.75"W.
1037
     */
1038
    public const EPSG_CORREGO_ALEGRE_1961 = 'urn:ogc:def:datum:EPSG::1074';
1039
1040
    /**
1041
     * Corrego Alegre 1970-72
1042
     * Type: Geodetic
1043
     * Extent: Brazil - onshore - west of 54°W and south of 18°S; also south of 15°S between 54°W and 42°W; also
1044
     * east of 42°W.
1045
     * Fundamental point: Corrego Alegre. Latitude: 19°50'14.91"S, longitude: 48°57'41.98"W (of Greenwich).
1046
     * Replaces 1961 adjustment (datum code 1074). Superseded by SAD69. NIMA gives coordinates of origin as latitude:
1047
     * 19°50'15.14"S, longitude: 48°57'42.75"W; these may refer to 1961 adjustment.
1048
     */
1049
    public const EPSG_CORREGO_ALEGRE_1970_72 = 'urn:ogc:def:datum:EPSG::6225';
1050
1051
    /**
1052
     * Costa Rica 2005
1053
     * Type: Geodetic
1054
     * Extent: Costa Rica - onshore and offshore.
1055
     * ITRF2000 at epoch 2005.83.  Network of 34 GPS stations throughout the country, five of which were connected to
1056
     * four Caribbean area ITRF stations.
1057
     * Replaces Ocotepeque (datum code 1070) in Costa Rica from March 2007.
1058
     */
1059
    public const EPSG_COSTA_RICA_2005 = 'urn:ogc:def:datum:EPSG::1065';
1060
1061
    /**
1062
     * Croatian Terrestrial Reference System
1063
     * Type: Geodetic
1064
     * Extent: Croatia - onshore and offshore.
1065
     * Densification of ETRS89 in Croatia at epoch 1995.55.
1066
     * Based on 78 control points with coordinates determined in ETRS89.
1067
     */
1068
    public const EPSG_CROATIAN_TERRESTRIAL_REFERENCE_SYSTEM = 'urn:ogc:def:datum:EPSG::6761';
1069
1070
    /**
1071
     * Croatian Vertical Reference Datum 1971
1072
     * Type: Vertical
1073
     * Extent: Croatia - onshore.
1074
     * Mean sea level at five tide gauges in Dubrovnik, Split, Bakar, Rovinj and Kopar at epoch 1971.5
1075
     * Replaces Trieste (datum code 1050).
1076
     */
1077
    public const EPSG_CROATIAN_VERTICAL_REFERENCE_DATUM_1971 = 'urn:ogc:def:datum:EPSG::5207';
1078
1079
    /**
1080
     * Cyprus Geodetic Reference System 1993
1081
     * Type: Geodetic
1082
     * Extent: Cyprus - onshore.
1083
     * Station Chionistra (Mount Troodos). Network scale and orientation determined by connection of six stations to
1084
     * ITRF91 in Europe at epoch 1993.1.
1085
     * Survey plans and maps produced by DLS after 1993.
1086
     */
1087
    public const EPSG_CYPRUS_GEODETIC_REFERENCE_SYSTEM_1993 = 'urn:ogc:def:datum:EPSG::1112';
1088
1089
    /**
1090
     * Dabola 1981
1091
     * Type: Geodetic
1092
     * Extent: Guinea - onshore.
1093
     */
1094
    public const EPSG_DABOLA_1981 = 'urn:ogc:def:datum:EPSG::6155';
1095
1096
    /**
1097
     * Danger 1950
1098
     * Type: Vertical
1099
     * Extent: St Pierre and Miquelon - onshore.
1100
     * Marker near tide gauge at port of Saint Pierre. Height is 1.26 metres above zero of tide gauge.
1101
     */
1102
    public const EPSG_DANGER_1950 = 'urn:ogc:def:datum:EPSG::5190';
1103
1104
    /**
1105
     * Dansk Normal Nul
1106
     * Type: Vertical
1107
     * Extent: Denmark - onshore.
1108
     * Mean Sea Level at 10 gauges.
1109
     * Orthometric heights.
1110
     */
1111
    public const EPSG_DANSK_NORMAL_NUL = 'urn:ogc:def:datum:EPSG::5132';
1112
1113
    /**
1114
     * Dansk Vertikal Reference 1990
1115
     * Type: Vertical
1116
     * Extent: Denmark - onshore.
1117
     * Benchmark at Århus cathedral referenced to mean sea level determined during 1990 at 10 tide gauges: Esbjerg,
1118
     * Fredericia, Frederikshavn, Gedser, Hirtshals, Hornbæk, Korsør, København, Slipshavn and Århus.
1119
     * Normal Orthometric heights.
1120
     */
1121
    public const EPSG_DANSK_VERTIKAL_REFERENCE_1990 = 'urn:ogc:def:datum:EPSG::5206';
1122
1123
    /**
1124
     * Datum 73
1125
     * Type: Geodetic
1126
     * Extent: Portugal - mainland - onshore.
1127
     * Fundamental point:  TF4, Melrica. Latitude: 39°41'37.30"N, longitude: 8°07'53.31"W (of Greenwich).
1128
     */
1129
    public const EPSG_DATUM_73 = 'urn:ogc:def:datum:EPSG::6274';
1130
1131
    /**
1132
     * Datum Altimetrico de Costa Rica 1952
1133
     * Type: Vertical
1134
     * Extent: Costa Rica - onshore.
1135
     * Mean Sea Level 1941-1952 at Puntarenas.
1136
     * Orthometric heights.
1137
     */
1138
    public const EPSG_DATUM_ALTIMETRICO_DE_COSTA_RICA_1952 = 'urn:ogc:def:datum:EPSG::1226';
1139
1140
    /**
1141
     * Datum Geodesi Nasional 1995
1142
     * Type: Geodetic
1143
     * Extent: Indonesia - onshore and offshore.
1144
     * ITRF91at epoch 1992.0.
1145
     * Replaces ID74 and all older datums.
1146
     */
1147
    public const EPSG_DATUM_GEODESI_NASIONAL_1995 = 'urn:ogc:def:datum:EPSG::6755';
1148
1149
    /**
1150
     * Dealul Piscului 1930
1151
     * Type: Geodetic
1152
     * Extent: Romania - onshore.
1153
     * Fundamental point: latitude 44°24'33.9606"N, longitude 26°06'44.8772"E (of Greenwich).
1154
     * Replaced by Pulkovo 1942(58) (datum code 6179).
1155
     */
1156
    public const EPSG_DEALUL_PISCULUI_1930 = 'urn:ogc:def:datum:EPSG::6316';
1157
1158
    /**
1159
     * Deception Island
1160
     * Type: Geodetic
1161
     * Extent: Antarctica - South Shetland Islands - Deception Island.
1162
     */
1163
    public const EPSG_DECEPTION_ISLAND = 'urn:ogc:def:datum:EPSG::6736';
1164
1165
    /**
1166
     * Deir ez Zor
1167
     * Type: Geodetic
1168
     * Extent: Lebanon - onshore. Syrian Arab Republic - onshore.
1169
     * Fundamental point: Trig. 254 Deir. Latitude: 35°21'49.975"N, longitude: 40°05'46.770"E (of Greenwich).
1170
     */
1171
    public const EPSG_DEIR_EZ_ZOR = 'urn:ogc:def:datum:EPSG::6227';
1172
1173
    /**
1174
     * Deutsche Bahn Reference System
1175
     * Type: Geodetic
1176
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
1177
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
1178
     * Schleswig-Holstein, Thuringen.
1179
     * Defined by transformation from ETRS89 (transformation code 5826) to be an average of DHDN realizations across
1180
     * all German states.
1181
     */
1182
    public const EPSG_DEUTSCHE_BAHN_REFERENCE_SYSTEM = 'urn:ogc:def:datum:EPSG::1081';
1183
1184
    /**
1185
     * Deutsches Hauptdreiecksnetz
1186
     * Type: Geodetic
1187
     * Extent: Germany - states of former West Germany onshore - Baden-Wurtemberg, Bayern, Bremen, Hamburg, Hessen,
1188
     * Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Schleswig-Holstein.
1189
     * Fundamental point: Rauenberg. Latitude: 52°27'12.021"N, longitude: 13°22'04.928"E (of Greenwich).  This
1190
     * station was destroyed in 1910 and the station at Potsdam substituted as the fundamental point.
1191
     */
1192
    public const EPSG_DEUTSCHES_HAUPTDREIECKSNETZ = 'urn:ogc:def:datum:EPSG::6314';
1193
1194
    /**
1195
     * Deutsches Haupthoehennetz 1912
1196
     * Type: Vertical
1197
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
1198
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
1199
     * Schleswig-Holstein, Thuringen.
1200
     * Height of reference point "Normalnullpunkt" at Berlin Observatory defined as 37.000m above MSL in 1879
1201
     * (transferred to benchmarks near Hoppegarten in Müncheberg in 1912). Datum at Normaal Amsterdams Peil (NAP) is
1202
     * mean high tide in 1684.
1203
     * Uses Normal-orthometric heights.
1204
     */
1205
    public const EPSG_DEUTSCHES_HAUPTHOEHENNETZ_1912 = 'urn:ogc:def:datum:EPSG::1161';
1206
1207
    /**
1208
     * Deutsches Haupthoehennetz 1985
1209
     * Type: Vertical
1210
     * Extent: Germany - states of former West Germany onshore - Baden-Wurtemberg, Bayern, Bremen, Hamburg, Hessen,
1211
     * Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Schleswig-Holstein.
1212
     * Network adjusted in 1985. Height of reference point Wallenhorst defined as value from 1928 adjustment. Datum at
1213
     * Normaal Amsterdams Peil (NAP) is mean high tide in 1684.
1214
     * Replaced by DHHN92. Uses Normal-orthometric heights.
1215
     */
1216
    public const EPSG_DEUTSCHES_HAUPTHOEHENNETZ_1985 = 'urn:ogc:def:datum:EPSG::5182';
1217
1218
    /**
1219
     * Deutsches Haupthoehennetz 1992
1220
     * Type: Vertical
1221
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
1222
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
1223
     * Schleswig-Holstein, Thuringen.
1224
     * Network adjusted in 1992. Geopotential number at reference point Wallenhorst defined as value from the
1225
     * UELN-73/86 adjustment. Datum at Normaal Amsterdams Peil (NAP) is mean high tide in 1684.
1226
     * Replaces DHHN85 in West Germany and SNN76 in East Germany. Uses Normal heights.
1227
     */
1228
    public const EPSG_DEUTSCHES_HAUPTHOEHENNETZ_1992 = 'urn:ogc:def:datum:EPSG::5181';
1229
1230
    /**
1231
     * Deutsches Haupthoehennetz 2016
1232
     * Type: Vertical
1233
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
1234
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
1235
     * Schleswig-Holstein, Thuringen.
1236
     * 2006-2012 levelling network adjusted to 72 points of the DHHN92. Datum at Normaal Amsterdams Peil (NAP) is mean
1237
     * high tide in 1684.
1238
     * Uses Normal heights in the mean tidal system.
1239
     */
1240
    public const EPSG_DEUTSCHES_HAUPTHOEHENNETZ_2016 = 'urn:ogc:def:datum:EPSG::1170';
1241
1242
    /**
1243
     * Diego Garcia 1969
1244
     * Type: Geodetic
1245
     * Extent: British Indian Ocean Territory - Chagos Archipelago - Diego Garcia.
1246
     * Fundamental point: ISTS 073.
1247
     */
1248
    public const EPSG_DIEGO_GARCIA_1969 = 'urn:ogc:def:datum:EPSG::6724';
1249
1250
    /**
1251
     * Dominica 1945
1252
     * Type: Geodetic
1253
     * Extent: Dominica - onshore.
1254
     * Fundamental point: station M12.
1255
     */
1256
    public const EPSG_DOMINICA_1945 = 'urn:ogc:def:datum:EPSG::6602';
1257
1258
    /**
1259
     * Douala 1948
1260
     * Type: Geodetic
1261
     * Extent: Cameroon - coastal area.
1262
     * South pillar of Douala base; 4°00'40.64"N, 9°42'30.41"E (of Greenwich).
1263
     * Replaced by Manoca 1962 datum (code 6193).
1264
     */
1265
    public const EPSG_DOUALA_1948 = 'urn:ogc:def:datum:EPSG::6192';
1266
1267
    /**
1268
     * Douglas
1269
     * Type: Vertical
1270
     * Extent: Isle of Man - onshore.
1271
     * Mean Sea Level at Douglas 1865. Initially realised through levelling network adjustment, from 2002 redefined to
1272
     * be realised through OSGM geoid model.
1273
     * Orthometric heights.
1274
     */
1275
    public const EPSG_DOUGLAS = 'urn:ogc:def:datum:EPSG::5148';
1276
1277
    /**
1278
     * Dunedin 1958
1279
     * Type: Vertical
1280
     * Extent: New Zealand - South Island - between approximately 44°S and 46°S - Dunedin vertical CRS area.
1281
     * MSL at Dunedin harbour 1918-1937.
1282
     */
1283
    public const EPSG_DUNEDIN_1958 = 'urn:ogc:def:datum:EPSG::5159';
1284
1285
    /**
1286
     * Dunedin-Bluff 1960
1287
     * Type: Vertical
1288
     * Extent: New Zealand - South Island - Dunedin-Bluff vertical CRS area.
1289
     * Common adjustment of Dunedin 1958 and Bluff 1955 networks.
1290
     */
1291
    public const EPSG_DUNEDIN_BLUFF_1960 = 'urn:ogc:def:datum:EPSG::1040';
1292
1293
    /**
1294
     * Durres
1295
     * Type: Vertical
1296
     * Extent: Albania - onshore.
1297
     * Mean Sea Level at Durres.
1298
     * Normal-orthometric heights.
1299
     */
1300
    public const EPSG_DURRES = 'urn:ogc:def:datum:EPSG::5175';
1301
1302
    /**
1303
     * EBBWV14 Intermediate Reference Frame
1304
     * Type: Geodetic
1305
     * Extent: United Kingdom (UK) - on or related to the rail route from Newport (Park Junction) to Ebbw Vale.
1306
     * Defined through the application of the EBBWV14 NTv2 transformation to ETRS89 as realized through OSNet v2009
1307
     * CORS.
1308
     * Created in 2022 to support intermediate CRS "EBBWV14-IRF" in the emulation of the EBBWV14 Snake map projection.
1309
     */
1310
    public const EPSG_EBBWV14_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1319';
1311
1312
    /**
1313
     * ECML14_NB Intermediate Reference Frame
1314
     * Type: Geodetic
1315
     * Extent: United Kingdom (UK) - on or related to rail routes from Newcastle Central to Ashington via Benton North
1316
     * Junction, and the section from Bedlington to Morpeth.
1317
     * Defined through the application of the ECML14_NB NTv2 transformation (code 9759) to ETRS89 as realized through
1318
     * OSNet v2009 CORS.
1319
     * Created in 2021 to support intermediate CRS "ECML14_NB-IRF" in the emulation of the ECML14_NB Snake map
1320
     * projection.
1321
     */
1322
    public const EPSG_ECML14_NB_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1310';
1323
1324
    /**
1325
     * EGM2008 geoid
1326
     * Type: Vertical
1327
     * Extent: World.
1328
     * Derived through EGM2008 geoid undulation model consisting of spherical harmonic coefficients to degree 2190 and
1329
     * order 2159 applied to the WGS 84 ellipsoid.
1330
     * Replaces EGM96 geoid (datum code 5171). See transformation codes 3858 and 3859 for 2.5x2.5 and 1x1 arc minute
1331
     * geoid undulation grid files derived from the spherical harmonic coefficients.
1332
     */
1333
    public const EPSG_EGM2008_GEOID = 'urn:ogc:def:datum:EPSG::1027';
1334
1335
    /**
1336
     * EGM84 geoid
1337
     * Type: Vertical
1338
     * Extent: World.
1339
     * Derived through EGM84 geoid undulation model consisting of spherical harmonic coefficients to degree and order
1340
     * 180 applied to the WGS 84 ellipsoid.
1341
     * Replaced by EGM96 geoid (datum code 5171).
1342
     */
1343
    public const EPSG_EGM84_GEOID = 'urn:ogc:def:datum:EPSG::5203';
1344
1345
    /**
1346
     * EGM96 geoid
1347
     * Type: Vertical
1348
     * Extent: World.
1349
     * Derived through EGM84 geoid undulation model consisting of spherical harmonic coefficients to degree and order
1350
     * 360 applied to the WGS 84 ellipsoid.
1351
     * Replaces EGM84 geoid (datum code 5203). Replaced by EGM2008 geoid (datum code 1027).
1352
     */
1353
    public const EPSG_EGM96_GEOID = 'urn:ogc:def:datum:EPSG::5171';
1354
1355
    /**
1356
     * EOS21 Intermediate Reference Frame
1357
     * Type: Geodetic
1358
     * Extent: United Kingdom (UK) - on or related to the complex of rail routes in the East of Scotland, incorporating
1359
     * the route from Tweedbank through the Borders to Edinburgh; the line from Edinburgh to Aberdeen; routes via
1360
     * Kirkaldy and Cowdenbeath; and routes via Leuchars and Perth to Dundee.
1361
     * Defined through the application of the EOS21 NTv2 transformation (code 9740) to ETRS89 as realized through OSNet
1362
     * v2009 CORS.
1363
     * Created in 2021 to support intermediate CRS "EOS21-IRF" in the emulation of the EOS21 Snake map projection.
1364
     */
1365
    public const EPSG_EOS21_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1308';
1366
1367
    /**
1368
     * ETRF2000 Poland
1369
     * Type: Geodetic
1370
     * Extent: Poland - onshore and offshore.
1371
     * Polish densification of ETRS89 realized through adjustment of ASG-EUPOS network constrained to 35 EPN stations
1372
     * in [email protected].
1373
     * Adopted as official Polish reference frame from 2012-12-01 through Ordinance of the Council of Ministers of 15th
1374
     * November 2012 on the state system of spatial reference system.
1375
     */
1376
    public const EPSG_ETRF2000_POLAND = 'urn:ogc:def:datum:EPSG::1305';
1377
1378
    /**
1379
     * EWR2 Intermediate Reference Frame
1380
     * Type: Geodetic
1381
     * Extent: United Kingdom (UK) - on or related to East West Rail (Phase 2) routes from Oxford to Bicester,
1382
     * Bletchley and Bedford, and from Claydon Junction to Aylesbury and Princes Risborough.
1383
     * Defined through the application of the EWR2 NTv2 transformation (code 9763) to ETRS89 as realized through OSNet
1384
     * v2009 CORS.
1385
     * Created in 2021 to support intermediate CRS "EWR2-IRF" in the emulation of the EWR2 Snake map projection.
1386
     */
1387
    public const EPSG_EWR2_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1311';
1388
1389
    /**
1390
     * Easter Island 1967
1391
     * Type: Geodetic
1392
     * Extent: Chile - Easter Island onshore.
1393
     */
1394
    public const EPSG_EASTER_ISLAND_1967 = 'urn:ogc:def:datum:EPSG::6719';
1395
1396
    /**
1397
     * Egypt 1907
1398
     * Type: Geodetic
1399
     * Extent: Egypt - onshore and offshore.
1400
     * Fundamental point: Station F1 (Venus). Latitude: 30°01'42.86"N, longitude: 31°16'33.60"E (of Greenwich).
1401
     */
1402
    public const EPSG_EGYPT_1907 = 'urn:ogc:def:datum:EPSG::6229';
1403
1404
    /**
1405
     * Egypt 1930
1406
     * Type: Geodetic
1407
     * Extent: Egypt - onshore.
1408
     * Fundamental point: Station F1 (Venus). Latitude: 30°01'42.86"N, longitude: 31°16'37.05"E (of Greenwich).
1409
     * Note that Egypt 1930 uses the International 1924 ellipsoid, unlike the Egypt 1907 datum (code 6229) which uses
1410
     * the Helmert ellipsoid. Oil industry references to the Egypt 1930 datum name and the Helmert ellipsoid probably
1411
     * mean Egypt 1907 datum.
1412
     */
1413
    public const EPSG_EGYPT_1930 = 'urn:ogc:def:datum:EPSG::6199';
1414
1415
    /**
1416
     * Egypt Gulf of Suez S-650 TL
1417
     * Type: Geodetic
1418
     * Extent: Egypt - Gulf of Suez.
1419
     * Fundamental point: Station S-650 DMX. Adopted coordinates: latitude: 28°19'02.1907"N, longitude:
1420
     * 33°06'36.6344"E (of Greenwich). The proper Egypt 1907 coordinates for S-650 differ from these by about 20m.
1421
     * A coherent set of stations bordering the Gulf of Suez coordinated by Transit translocation ("TL") between 1980
1422
     * and 1984. Based on incorrect Egypt 1907 values for origin station S-650. Differs from true Egypt 1907 by
1423
     * approximately 20m.
1424
     */
1425
    public const EPSG_EGYPT_GULF_OF_SUEZ_S_650_TL = 'urn:ogc:def:datum:EPSG::6706';
1426
1427
    /**
1428
     * El Hierro
1429
     * Type: Vertical
1430
     * Extent: Spain - Canary Islands - El Hierro onshore.
1431
     * Mean Sea Level at La Estaca harbour in 2000.
1432
     * Orthometric heights.
1433
     */
1434
    public const EPSG_EL_HIERRO = 'urn:ogc:def:datum:EPSG::1284';
1435
1436
    /**
1437
     * Estonia 1992
1438
     * Type: Geodetic
1439
     * Extent: Estonia - onshore.
1440
     * Densification from 4 ETRS89 points.
1441
     * Based on ETRS89 as established during the 1992 Baltic campaign. Replaced by Estonia 1997 adjustment (code 6180).
1442
     */
1443
    public const EPSG_ESTONIA_1992 = 'urn:ogc:def:datum:EPSG::6133';
1444
1445
    /**
1446
     * Estonia 1997
1447
     * Type: Geodetic
1448
     * Extent: Estonia - onshore and offshore.
1449
     * Densification of ETRS89 during EUREF-ESTONIA97 campaign through transformation from ITRF96 at epoch 1997.56.
1450
     * Replaces Estonia 1992 adjustment (code 6133).
1451
     */
1452
    public const EPSG_ESTONIA_1997 = 'urn:ogc:def:datum:EPSG::6180';
1453
1454
    /**
1455
     * Estonian Height System 2000
1456
     * Type: Vertical
1457
     * Extent: Estonia - onshore.
1458
     * Estonian realisation of EVRF2007. Relevelling observed  2004-2013 and reduced to epoch 2000 using the NKG2005LU
1459
     * empirical land uplift model. EVRF2007 height of Poltsamaa fundamental bench mark (H=55.2114m) held fixed.
1460
     * Uses Normal heights.
1461
     */
1462
    public const EPSG_ESTONIAN_HEIGHT_SYSTEM_2000 = 'urn:ogc:def:datum:EPSG::1298';
1463
1464
    /**
1465
     * European Datum 1950
1466
     * Type: Geodetic
1467
     * Extent: Europe - west: Andorra; Cyprus; Denmark - onshore and offshore; Faroe Islands - onshore; France -
1468
     * offshore; Germany - offshore North Sea; Gibraltar; Greece - offshore; Israel - offshore; Italy including San
1469
     * Marino and Vatican City State; Ireland offshore; Malta; Netherlands - offshore; North Sea; Norway including
1470
     * Svalbard - onshore and offshore; Portugal - mainland - offshore; Spain - onshore; Türkiye (Turkey) - onshore
1471
     * and offshore; United Kingdom - UKCS offshore east of 6°W including Channel Islands (Guernsey and Jersey). Egypt
1472
     * - Western Desert; Iraq - onshore; Jordan.
1473
     * Fundamental point: Potsdam (Helmert Tower). Latitude: 52°22'51.4456"N, longitude: 13°03'58.9283"E (of
1474
     * Greenwich).
1475
     */
1476
    public const EPSG_EUROPEAN_DATUM_1950 = 'urn:ogc:def:datum:EPSG::6230';
1477
1478
    /**
1479
     * European Datum 1950(1977)
1480
     * Type: Geodetic
1481
     * Extent: Iran - onshore and offshore.
1482
     * Extension of ED50 over Iran.
1483
     * Sometimes referred to as ED50-ED77.
1484
     */
1485
    public const EPSG_EUROPEAN_DATUM_1950_1977 = 'urn:ogc:def:datum:EPSG::6154';
1486
1487
    /**
1488
     * European Datum 1979
1489
     * Type: Geodetic
1490
     * Extent: Europe - west.
1491
     * Fundamental point: Potsdam (Helmert Tower). Latitude: 52°22'51.4456"N, longitude: 13°03'58.9283"E (of
1492
     * Greenwich).
1493
     * Replaced by 1987 adjustment.
1494
     */
1495
    public const EPSG_EUROPEAN_DATUM_1979 = 'urn:ogc:def:datum:EPSG::6668';
1496
1497
    /**
1498
     * European Datum 1987
1499
     * Type: Geodetic
1500
     * Extent: Europe - west.
1501
     * Fundamental point: Potsdam (Helmert Tower). Latitude: 52°22'51.4456"N, longitude: 13°03'58.9283"E (of
1502
     * Greenwich).
1503
     */
1504
    public const EPSG_EUROPEAN_DATUM_1987 = 'urn:ogc:def:datum:EPSG::6231';
1505
1506
    /**
1507
     * European Libyan Datum 1979
1508
     * Type: Geodetic
1509
     * Extent: Libya - onshore and offshore.
1510
     * Extension of ED50 over Libya.
1511
     */
1512
    public const EPSG_EUROPEAN_LIBYAN_DATUM_1979 = 'urn:ogc:def:datum:EPSG::6159';
1513
1514
    /**
1515
     * European Terrestrial Reference Frame 1989
1516
     * Type: Geodetic
1517
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1518
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1519
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1520
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1521
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1522
     * of Man; Vatican City State.
1523
     * Coincides with ITRF89 at epoch 1989.0. Fixed to the stable part of the Eurasian tectonic plate through 3
1524
     * rotation rates derived from the AM02 geophysical model.
1525
     * Defined by transformation from ITRF89 (CT code 7932). Replaced by ETRF90 (datum code 1179).
1526
     */
1527
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1989 = 'urn:ogc:def:datum:EPSG::1178';
1528
1529
    /**
1530
     * European Terrestrial Reference Frame 1990
1531
     * Type: Geodetic
1532
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1533
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1534
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1535
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1536
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1537
     * of Man; Vatican City State.
1538
     * Coincides with ITRF90 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1539
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1540
     * AM02 geophysical model.
1541
     * Defined by transformation from ITRF90 (CT code 7933). Replaces ETRF89 (datum code 1178). Replaced by ETRF91
1542
     * (datum code 1180).
1543
     */
1544
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1990 = 'urn:ogc:def:datum:EPSG::1179';
1545
1546
    /**
1547
     * European Terrestrial Reference Frame 1991
1548
     * Type: Geodetic
1549
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1550
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1551
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1552
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1553
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1554
     * of Man; Vatican City State.
1555
     * Coincides with ITRF91 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1556
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1557
     * AM02 geophysical model.
1558
     * Defined by transformation from ITRF91 (CT code 7934). Replaces ETRF90 (datum code 1179). Replaced by ETRF92
1559
     * (datum code 1181).
1560
     */
1561
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1991 = 'urn:ogc:def:datum:EPSG::1180';
1562
1563
    /**
1564
     * European Terrestrial Reference Frame 1992
1565
     * Type: Geodetic
1566
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1567
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1568
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1569
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1570
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1571
     * of Man; Vatican City State.
1572
     * Coincides with ITRF92 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1573
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1574
     * NNR-NUVEL-1 geophysical model.
1575
     * Defined by transformation from ITRF92 (CT code 7935). Replaces ETRF91 (datum code 1180). Replaced by ETRF93
1576
     * (datum code 1182).
1577
     */
1578
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1992 = 'urn:ogc:def:datum:EPSG::1181';
1579
1580
    /**
1581
     * European Terrestrial Reference Frame 1993
1582
     * Type: Geodetic
1583
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1584
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1585
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1586
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1587
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1588
     * of Man; Vatican City State.
1589
     * Coincides with ITRF93 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1590
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1591
     * ITRF93 velocity field.
1592
     * Defined by transformation from ITRF93 (CT code 7936). Replaces ETRF92 (datum code 1181). Replaced by ETRF94
1593
     * (datum code 1183).
1594
     */
1595
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1993 = 'urn:ogc:def:datum:EPSG::1182';
1596
1597
    /**
1598
     * European Terrestrial Reference Frame 1994
1599
     * Type: Geodetic
1600
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1601
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1602
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1603
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1604
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1605
     * of Man; Vatican City State.
1606
     * Coincides with ITRF94 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1607
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1608
     * NNR-NUVEL-1A geophysical model.
1609
     * Defined by transformation from ITRF94 (CT code 7937). Replaces ETRF93 (datum code 1182). Replaced by ETRF96
1610
     * (datum code 1184).
1611
     */
1612
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1994 = 'urn:ogc:def:datum:EPSG::1183';
1613
1614
    /**
1615
     * European Terrestrial Reference Frame 1996
1616
     * Type: Geodetic
1617
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1618
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1619
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1620
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1621
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1622
     * of Man; Vatican City State.
1623
     * Coincides with ITRF96 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1624
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1625
     * NNR-NUVEL-1A geophysical model.
1626
     * Defined by transformation from ITRF96 (CT code 7938). Replaces ETRF94 (datum code 1183). Replaced by ETRF97
1627
     * (datum code 1185).
1628
     */
1629
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1996 = 'urn:ogc:def:datum:EPSG::1184';
1630
1631
    /**
1632
     * European Terrestrial Reference Frame 1997
1633
     * Type: Geodetic
1634
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1635
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1636
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1637
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1638
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1639
     * of Man; Vatican City State.
1640
     * Coincides with ITRF97 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1641
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1642
     * NNR-NUVEL-1A geophysical model.
1643
     * Defined by transformation from ITRF97 (CT code 7939). Replaces ETRF96 (datum code 1184). Replaced by ETRF2000
1644
     * (datum code 1186).
1645
     */
1646
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1997 = 'urn:ogc:def:datum:EPSG::1185';
1647
1648
    /**
1649
     * European Terrestrial Reference Frame 2000
1650
     * Type: Geodetic
1651
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1652
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1653
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1654
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1655
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1656
     * of Man; Vatican City State.
1657
     * Coincides with ITRF2000 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1658
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1659
     * ITRF2000 velocity field.
1660
     * Defined by transformation from ITRF2000 (CT 7940). Replaces ETRF97. On the publication of ETRF2005 the EUREF TWG
1661
     * recommended that ETRF2000 be the realization of ETRS89. ETRF2014 (code 1206) is technically superior to all
1662
     * earlier realizations of ETRS89.
1663
     */
1664
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_2000 = 'urn:ogc:def:datum:EPSG::1186';
1665
1666
    /**
1667
     * European Terrestrial Reference Frame 2005
1668
     * Type: Geodetic
1669
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1670
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1671
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1672
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1673
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1674
     * of Man; Vatican City State.
1675
     * Coincides with ITRF2005 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3
1676
     * translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the
1677
     * ITRF2005 velocity field.
1678
     * Defined by transformation from ITRF2005 (CT 5900). On publication in 2007 of this reference frame, the EUREF TWG
1679
     * recommended that ETRF2000 rather than this reference frame remained as the preferred realization of ETRS89.
1680
     * Replaced by ETRF2014 (code 1206).
1681
     */
1682
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_2005 = 'urn:ogc:def:datum:EPSG::1204';
1683
1684
    /**
1685
     * European Terrestrial Reference Frame 2014
1686
     * Type: Geodetic
1687
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1688
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1689
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1690
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1691
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1692
     * of Man; Vatican City State.
1693
     * Coincides with ITRF2014 at epoch 1989.0. Fixed to the stable part of the Eurasian tectonic plate through 3
1694
     * rotation rates derived from the ITRF2014 velocity field.
1695
     * Defined by transformation from ITRF2014 (CT code 8366). Replaces ETRF2005 (datum code 1204). Technically
1696
     * superior to ETRF2000 (datum code 1186).
1697
     */
1698
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_2014 = 'urn:ogc:def:datum:EPSG::1206';
1699
1700
    /**
1701
     * European Terrestrial Reference System 1989 ensemble
1702
     * Type: Ensemble
1703
     * Extent: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria;
1704
     * Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary;
1705
     * Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro;
1706
     * Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino;
1707
     * Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle
1708
     * of Man; Vatican City State.
1709
     * Has been realized through ETRF89, ETRF90, ETRF91, ETRF92, ETRF93, ETRF94, ETRF96, ETRF97, ETRF2000, ETRF2005 and
1710
     * ETRF2014. This 'ensemble' covers any or all of these realizations without distinction.
1711
     */
1712
    public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_SYSTEM_1989_ENSEMBLE = 'urn:ogc:def:datum:EPSG::6258';
1713
1714
    /**
1715
     * European Vertical Reference Frame 2000
1716
     * Type: Vertical
1717
     * Extent: Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Croatia; Czechia; Denmark;
1718
     * Estonia; Finland; France - mainland; Germany; Gibraltar; Hungary; Italy - mainland and Sicily; Latvia;
1719
     * Liechtenstein; Lithuania; Luxembourg; Netherlands; Norway; Poland; Portugal - mainland; Romania; San Marino;
1720
     * Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great Britain mainland; Vatican
1721
     * City State.
1722
     * Height at Normaal Amsterdams Peil (NAP) is zero, defined through height at UELN bench mark 13600 (52°22'53"N
1723
     * 4°54'34"E) of 0.71599m. Datum at NAP is mean high tide in 1684.
1724
     * Realized by geopotential numbers and Normal heights of the United European Levelling Network. Replaced by
1725
     * EVRF2007 (datum code 5215).
1726
     */
1727
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2000 = 'urn:ogc:def:datum:EPSG::5129';
1728
1729
    /**
1730
     * European Vertical Reference Frame 2000 Austria
1731
     * Type: Vertical
1732
     * Extent: Austria.
1733
     * Geopotential numbers of the EVRF2000 (UELN95/98) node points in Austria converted to orthometric heights using a
1734
     * digital surface model.
1735
     * Geoid surface is smoother than the EVRF2000 quasigeoid.
1736
     */
1737
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2000_AUSTRIA = 'urn:ogc:def:datum:EPSG::1261';
1738
1739
    /**
1740
     * European Vertical Reference Frame 2007
1741
     * Type: Vertical
1742
     * Extent: Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Czechia;
1743
     * Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily; Latvia;
1744
     * Liechtenstein; Lithuania; Luxembourg; Netherlands; Norway; Poland; Portugal - mainland; Romania; San Marino;
1745
     * Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great Britain mainland; Vatican
1746
     * City State.
1747
     * Least squares fit to 13 stations of the EVRF2000 solution. Reduced to epoch 2000.0 for Nordic countries using
1748
     * the NKG2005LU uplift model.
1749
     * Realized by geopotential numbers and Normal heights of the United European Levelling Network. Replaces EVRF2000
1750
     * (datum code 5129). Replaced by EVRF2019 (datum code 1274).
1751
     */
1752
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2007 = 'urn:ogc:def:datum:EPSG::5215';
1753
1754
    /**
1755
     * European Vertical Reference Frame 2007 Poland
1756
     * Type: Vertical
1757
     * Extent: Poland - onshore.
1758
     * Origin: Mean North Sea Level at Amsterdam tide gauge. Normal heights obtained from adjustment of precise
1759
     * leveling campaigns conducted during 1998 - 2012 reduced to epoch 2008.00.
1760
     *
1761
     * Uses Normal heights.
1762
     */
1763
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2007_POLAND = 'urn:ogc:def:datum:EPSG::1297';
1764
1765
    /**
1766
     * European Vertical Reference Frame 2019
1767
     * Type: Vertical
1768
     * Extent: Europe - onshore - Andorra; Austria; Belarus; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia;
1769
     * Czechia; Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily;
1770
     * Latvia; Liechtenstein; Lithuania; Luxembourg; Netherlands; North Macedonia; Norway; Poland; Portugal - mainland;
1771
     * Romania; Russia – west of approximately 60°E; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden;
1772
     * Switzerland; United Kingdom (UK) - Great Britain mainland; Ukraine; Vatican City State.
1773
     * Fixed to geopotential values of 12 stable stations of the EVRF2007 solution. Re-adjusted in September 2020.
1774
     * Reduced to epoch 2000.0 for Nordic countries and Russia using the NKG2016LU_lev uplift model and for Switzerland
1775
     * using CHVRF15 velocities.
1776
     * Following EVRS conventions, EVRF2019 is a zero-tide surface. Replaces EVRF2007 (datum code 5215).
1777
     */
1778
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2019 = 'urn:ogc:def:datum:EPSG::1274';
1779
1780
    /**
1781
     * European Vertical Reference Frame 2019 mean tide
1782
     * Type: Vertical
1783
     * Extent: Europe - onshore - Andorra; Austria; Belarus; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia;
1784
     * Czechia; Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily;
1785
     * Latvia; Liechtenstein; Lithuania; Luxembourg; Netherlands; North Macedonia; Norway; Poland; Portugal - mainland;
1786
     * Romania; Russia – west of approximately 60°E; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden;
1787
     * Switzerland; United Kingdom (UK) - Great Britain mainland; Ukraine; Vatican City State.
1788
     * Derived from 2020-09 zero-tide EVRF2019 adjustment by Cmean = Czero + (0.28841*sin^2(phi)) +
1789
     * (0.00195*sin^4(phi)) - 0.09722 - 0.08432 kgal.m. The offset of 0.08432 forces the mean-tide height to the
1790
     * zero-tide height at the EVRF2000 origin in Amsterdam.
1791
     * Mean-tide surface, describing how water flows. See EVRF2019 (datum code 1274) for zero-tide surface which is
1792
     * consistent with ETRS conventions.
1793
     */
1794
    public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2019_MEAN_TIDE = 'urn:ogc:def:datum:EPSG::1287';
1795
1796
    /**
1797
     * FNL22 Intermediate Reference Frame
1798
     * Type: Geodetic
1799
     * Extent: United Kingdom (UK) - on or related to the rail route from Inverness to Thurso and Wick.
1800
     * Defined through the application of the FNL22 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS.
1801
     * Created in 2022 to support intermediate CRS "FNL22" in the emulation of the FNL22 Snake map projection.
1802
     */
1803
    public const EPSG_FNL22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1321';
1804
1805
    /**
1806
     * Fahud
1807
     * Type: Geodetic
1808
     * Extent: Oman - mainland onshore.
1809
     * Fundamental point: Station NO68-024 Fahud. Latitude: 22°17'31.182"N, longitude: 56°29'18.820"E (of Greenwich).
1810
     * Replaced by PSD93 (code 6134).
1811
     */
1812
    public const EPSG_FAHUD = 'urn:ogc:def:datum:EPSG::6232';
1813
1814
    /**
1815
     * Fahud Height Datum
1816
     * Type: Vertical
1817
     * Extent: Oman - mainland onshore.
1818
     * Single MSL determination at Mina Al Fahal.
1819
     * Based on reciprocal trigonometric heighting. Replaced by PHD93 Datum (code 5123) in 1993.
1820
     */
1821
    public const EPSG_FAHUD_HEIGHT_DATUM = 'urn:ogc:def:datum:EPSG::5124';
1822
1823
    /**
1824
     * Fair Isle
1825
     * Type: Vertical
1826
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Fair Isle onshore.
1827
     * Orthometric heights.
1828
     */
1829
    public const EPSG_FAIR_ISLE = 'urn:ogc:def:datum:EPSG::5139';
1830
1831
    /**
1832
     * Famagusta 1960
1833
     * Type: Vertical
1834
     * Extent: Cyprus - onshore.
1835
     * Mean sea level at Famagusta Harbour.
1836
     * Orthometric heights.
1837
     */
1838
    public const EPSG_FAMAGUSTA_1960 = 'urn:ogc:def:datum:EPSG::1148';
1839
1840
    /**
1841
     * Fao
1842
     * Type: Vertical
1843
     * Extent: Iraq - onshore southeast; Iran - onshore northern Gulf coast and west bordering southeast Iraq.
1844
     * Established by Hunting Surveys for IPC. In Iran replaced by Bandar Abbas (code 5150). At time of record creation
1845
     * NIOC data in Ahwaz area still usually referenced to Fao. In Iraq replaced by Fao 1979 (code 1028).
1846
     */
1847
    public const EPSG_FAO = 'urn:ogc:def:datum:EPSG::5149';
1848
1849
    /**
1850
     * Fao 1979
1851
     * Type: Vertical
1852
     * Extent: Iraq - onshore.
1853
     * Average sea level at Fao during two-year period in mid/late 1970s.
1854
     * Levelling network established by Polservice consortium. Replaces Fao (datum code 5149) in Iraq.
1855
     */
1856
    public const EPSG_FAO_1979 = 'urn:ogc:def:datum:EPSG::1028';
1857
1858
    /**
1859
     * Faroe Datum 1954
1860
     * Type: Geodetic
1861
     * Extent: Faroe Islands - onshore.
1862
     * Astronomical observations at 3 points.
1863
     * Replaced by ED50 in late 1970's for all purposes other than cadastre. Replaced by fk89 for cadastre.
1864
     */
1865
    public const EPSG_FAROE_DATUM_1954 = 'urn:ogc:def:datum:EPSG::6741';
1866
1867
    /**
1868
     * Faroe Islands Vertical Reference 2009
1869
     * Type: Vertical
1870
     * Extent: Faroe Islands - onshore.
1871
     * Mean Tidal Height System.
1872
     */
1873
    public const EPSG_FAROE_ISLANDS_VERTICAL_REFERENCE_2009 = 'urn:ogc:def:datum:EPSG::1059';
1874
1875
    /**
1876
     * Fatu Iva 72
1877
     * Type: Geodetic
1878
     * Extent: French Polynesia - Marquesas Islands - Fatu Hiva.
1879
     * Fundamental point: Latitude: 9°25'58.00"S, longitude: 138°55'06.25"W (of Greenwich).
1880
     * Recomputed by IGN in 1972 using origin and observations of 1953-1955 Mission Hydrographique des Establissements
1881
     * Francais d'Oceanie (MHEFO 55). Replaced by RGPF (datum code 6687).
1882
     */
1883
    public const EPSG_FATU_IVA_72 = 'urn:ogc:def:datum:EPSG::6688';
1884
1885
    /**
1886
     * Fehmarnbelt Datum 2010
1887
     * Type: Geodetic
1888
     * Extent: Fehmarnbelt area of Denmark and Germany.
1889
     * ITRF2005 at epoch 2010.14.
1890
     * Defined through coordinates of four permanant GNSS stations.
1891
     */
1892
    public const EPSG_FEHMARNBELT_DATUM_2010 = 'urn:ogc:def:datum:EPSG::1078';
1893
1894
    /**
1895
     * Fehmarnbelt Vertical Reference 2010
1896
     * Type: Vertical
1897
     * Extent: Fehmarnbelt area of Denmark and Germany.
1898
     * Realised by precise levelling between tide gauges at Marienleuchte (Germany), Rodbyhavn (Denmark) and four
1899
     * Fehmarnbelt project GNSS stations.
1900
     */
1901
    public const EPSG_FEHMARNBELT_VERTICAL_REFERENCE_2010 = 'urn:ogc:def:datum:EPSG::1079';
1902
1903
    /**
1904
     * Fiji 1956
1905
     * Type: Geodetic
1906
     * Extent: Fiji - onshore - Vanua Levu, Taveuni, Viti Levu and and immediately adjacent smaller islands of Yasawa
1907
     * and Kandavu groups.
1908
     * Latitude origin was obtained astronomically at station Rasusuva = 17°49'03.13"S,  longitude origin was obtained
1909
     * astronomically at station Suva = 178°25'35.835"E (of Greenwich).
1910
     * For topographic mapping replaces Viti Levu 1912 and Vanua Levu 1915. Replaced by Fiji Geodetic Datum 1986.
1911
     */
1912
    public const EPSG_FIJI_1956 = 'urn:ogc:def:datum:EPSG::6721';
1913
1914
    /**
1915
     * Fiji Geodetic Datum 1986
1916
     * Type: Geodetic
1917
     * Extent: Fiji - onshore. Includes Viti Levu, Vanua Levu, Taveuni, the Yasawa Group, the Kadavu Group, the Lau
1918
     * Islands and Rotuma Islands.
1919
     * NWL 9D coordinates of 6 stations on Vitu Levu and Vanua Levu.
1920
     * Replaces Viti Levu 1912, Vanua Levu 1915 and Fiji 1956.
1921
     */
1922
    public const EPSG_FIJI_GEODETIC_DATUM_1986 = 'urn:ogc:def:datum:EPSG::6720';
1923
1924
    /**
1925
     * Final Datum 1958
1926
     * Type: Geodetic
1927
     * Extent: Iran - Arwaz area and onshore Gulf coast west of 54°E, Lavan Island, offshore Balal field and South
1928
     * Pars blocks 2 and 3.
1929
     * Fundamental point: Maniyur.  Latitude: 31°23'59.19"N, longitude: 48°32'31.38"E (of Greenwich).
1930
     * Network included in Nahrwan 1967 adjustment.
1931
     */
1932
    public const EPSG_FINAL_DATUM_1958 = 'urn:ogc:def:datum:EPSG::6132';
1933
1934
    /**
1935
     * Flannan Isles
1936
     * Type: Vertical
1937
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Flannan Isles onshore.
1938
     * Orthometric heights.
1939
     */
1940
    public const EPSG_FLANNAN_ISLES = 'urn:ogc:def:datum:EPSG::5146';
1941
1942
    /**
1943
     * Fort Marigot
1944
     * Type: Geodetic
1945
     * Extent: Guadeloupe - onshore - St Martin and St Barthélemy islands.
1946
     * Replaced by RRAF 1991 (datum code 1047).
1947
     */
1948
    public const EPSG_FORT_MARIGOT = 'urn:ogc:def:datum:EPSG::6621';
1949
1950
    /**
1951
     * Foula
1952
     * Type: Vertical
1953
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Foula onshore.
1954
     * Orthometric heights.
1955
     */
1956
    public const EPSG_FOULA = 'urn:ogc:def:datum:EPSG::5141';
1957
1958
    /**
1959
     * Fuerteventura
1960
     * Type: Vertical
1961
     * Extent: Spain - Canary Islands - Fuerteventura onshore.
1962
     * Mean Sea Level at Puerto del Rosario harbour between 1999-09-08 and 2000-12-31.
1963
     * Orthometric heights.
1964
     */
1965
    public const EPSG_FUERTEVENTURA = 'urn:ogc:def:datum:EPSG::1279';
1966
1967
    /**
1968
     * GBK19 Intermediate Reference Frame
1969
     * Type: Geodetic
1970
     * Extent: United Kingdom (UK) - on or related to the rail route from Glasgow to Kilmarnock via Barrhead and the
1971
     * branch to East Kilbride.
1972
     * Defined through the application of the GBK19 NTv2 transformation (code 9454) to ETRS89 as realized through OSNet
1973
     * v2009 CORS.
1974
     * Created in 2020 to support intermediate CRS "GBK19-IRF" in the emulation of the combined GBK19 Snake map
1975
     * projection.
1976
     */
1977
    public const EPSG_GBK19_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1289';
1978
1979
    /**
1980
     * GNTRANS
1981
     * Type: Vertical
1982
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
1983
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
1984
     * Schleswig-Holstein, Thuringen.
1985
     * Surface defined by the EGG97 quasi-geoid model modified in GNTRANS to achieve absolute position optimised for
1986
     * use with DB_REF.
1987
     * Implemented in GNTRANS. The GNTRANS height surface is available only through the GNTRANS application. Replaced
1988
     * by the GNTRANS2016 height surface (datum code 1318).
1989
     */
1990
    public const EPSG_GNTRANS = 'urn:ogc:def:datum:EPSG::1316';
1991
1992
    /**
1993
     * GNTRANS2016
1994
     * Type: Vertical
1995
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
1996
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
1997
     * Schleswig-Holstein, Thuringen.
1998
     * Surface defined by the GCG2016 quasi-geoid model applied to ETRS89.
1999
     * Approximates the national DHHN2016 levelling surface to around 1cm in lowlands and 2cm in high mountains, but
2000
     * unlike DHHN2016 it is defined by the GCG2016 geoid model. Like DHHN2016, uses Normal heights in the mean tide
2001
     * system.
2002
     */
2003
    public const EPSG_GNTRANS2016 = 'urn:ogc:def:datum:EPSG::1318';
2004
2005
    /**
2006
     * Gambia
2007
     * Type: Geodetic
2008
     * Extent: Gambia - onshore.
2009
     */
2010
    public const EPSG_GAMBIA = 'urn:ogc:def:datum:EPSG::1139';
2011
2012
    /**
2013
     * Gan 1970
2014
     * Type: Geodetic
2015
     * Extent: Maldives - onshore.
2016
     * In some references incorrectly named "Gandajika 1970". See datum code 6685.
2017
     */
2018
    public const EPSG_GAN_1970 = 'urn:ogc:def:datum:EPSG::6684';
2019
2020
    /**
2021
     * Garoua
2022
     * Type: Geodetic
2023
     * Extent: Cameroon - Garoua area.
2024
     * Fundamental point: IGN astronomical station and benchmark no. 16 at Tongo. Latitude 8°55'08.74"N, longitude
2025
     * 13°30'43.19"E (of Greenwich).
2026
     */
2027
    public const EPSG_GAROUA = 'urn:ogc:def:datum:EPSG::6197';
2028
2029
    /**
2030
     * Gebrauchshohen ADRIA
2031
     * Type: Vertical
2032
     * Extent: Austria.
2033
     * Reference point Hutbiegl defined relative to mean sea level at Trieste in 1875.
2034
     * Normal-orthometric heights.
2035
     */
2036
    public const EPSG_GEBRAUCHSHOHEN_ADRIA = 'urn:ogc:def:datum:EPSG::5176';
2037
2038
    /**
2039
     * Genoa 1942
2040
     * Type: Vertical
2041
     * Extent: Italy - mainland (including San Marino and Vatican City State) and Sicily.
2042
     * Mean Sea Level at Genoa (Ponte Morosini) 1937-1946.
2043
     * Orthometric heights.
2044
     */
2045
    public const EPSG_GENOA_1942 = 'urn:ogc:def:datum:EPSG::1051';
2046
2047
    /**
2048
     * Geocentric Datum Brunei Darussalam 2009
2049
     * Type: Geodetic
2050
     * Extent: Brunei Darussalam - onshore and offshore.
2051
     * ITRF2005 at epoch 2009.45
2052
     * Replaces use of Timbalai from July 2009.
2053
     */
2054
    public const EPSG_GEOCENTRIC_DATUM_BRUNEI_DARUSSALAM_2009 = 'urn:ogc:def:datum:EPSG::1056';
2055
2056
    /**
2057
     * Geocentric Datum of Australia 1994
2058
     * Type: Geodetic
2059
     * Extent: Australia including Lord Howe Island, Macquarie Island, Ashmore and Cartier Islands, Christmas Island,
2060
     * Cocos (Keeling) Islands, Norfolk Island. All onshore and offshore.
2061
     * ITRF92 at epoch 1994.0.
2062
     */
2063
    public const EPSG_GEOCENTRIC_DATUM_OF_AUSTRALIA_1994 = 'urn:ogc:def:datum:EPSG::6283';
2064
2065
    /**
2066
     * Geocentric Datum of Australia 2020
2067
     * Type: Geodetic
2068
     * Extent: Australia including Lord Howe Island, Macquarie Island, Ashmore and Cartier Islands, Christmas Island,
2069
     * Cocos (Keeling) Islands, Norfolk Island. All onshore and offshore.
2070
     * ITRF2014 at epoch 2020.0.
2071
     */
2072
    public const EPSG_GEOCENTRIC_DATUM_OF_AUSTRALIA_2020 = 'urn:ogc:def:datum:EPSG::1168';
2073
2074
    /**
2075
     * Geocentric datum of Korea
2076
     * Type: Geodetic
2077
     * Extent: Republic of Korea (South Korea) - onshore and offshore.
2078
     * ITRF2000 at epoch 2002.0.
2079
     */
2080
    public const EPSG_GEOCENTRIC_DATUM_OF_KOREA = 'urn:ogc:def:datum:EPSG::6737';
2081
2082
    /**
2083
     * Geodetic Datum of 1965
2084
     * Type: Geodetic
2085
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
2086
     * Adjusted to best mean fit 9 stations of the OSNI 1952 primary adjustment in Northern Ireland plus the 1965
2087
     * values of 3 stations in the Republic of Ireland.
2088
     * Differences from the 1965 adjustment (datum code 6299) are: average difference in Eastings 0.092m; average
2089
     * difference in Northings 0.108m; maximum vector difference 0.548m.
2090
     */
2091
    public const EPSG_GEODETIC_DATUM_OF_1965 = 'urn:ogc:def:datum:EPSG::6300';
2092
2093
    /**
2094
     * Geodetic Datum of Malaysia 2000
2095
     * Type: Geodetic
2096
     * Extent: Malaysia - onshore and offshore. Includes peninsular Malayasia, Sabah and Sarawak.
2097
     * ITRF2000, epoch 2000.0.
2098
     * Replaces all older Malaysian datums.
2099
     */
2100
    public const EPSG_GEODETIC_DATUM_OF_MALAYSIA_2000 = 'urn:ogc:def:datum:EPSG::6742';
2101
2102
    /**
2103
     * Geodezicheskaya Sistema Koordinat 2011
2104
     * Type: Geodetic
2105
     * Extent: Russian Federation - onshore and offshore.
2106
     * Coordinates of the Russian fundamental astronomic-geodetic network (about 50 stations) at epoch 2011.0.
2107
     */
2108
    public const EPSG_GEODEZICHESKAYA_SISTEMA_KOORDINAT_2011 = 'urn:ogc:def:datum:EPSG::1159';
2109
2110
    /**
2111
     * Gisborne 1926
2112
     * Type: Vertical
2113
     * Extent: New Zealand - North Island - Gisborne vertical CRS area.
2114
     * MSL at Gisborne harbour 1926.
2115
     */
2116
    public const EPSG_GISBORNE_1926 = 'urn:ogc:def:datum:EPSG::5160';
2117
2118
    /**
2119
     * Gran Canaria
2120
     * Type: Vertical
2121
     * Extent: Spain - Canary Islands - Gran Canaria onshore.
2122
     * Mean Sea Level at Las Palmas de Gran Canaria harbour between 1992 and 1997.
2123
     * Orthometric heights.
2124
     */
2125
    public const EPSG_GRAN_CANARIA = 'urn:ogc:def:datum:EPSG::1280';
2126
2127
    /**
2128
     * Grand Cayman Geodetic Datum 1959
2129
     * Type: Geodetic
2130
     * Extent: Cayman Islands - Grand Cayman.
2131
     * Fundamental point: GC1. Latitude: 19°17'54.43"N, longitude: 81°22'37.17"W (of Greenwich).
2132
     * Replaced by CIGD11 (datum code 1100).
2133
     */
2134
    public const EPSG_GRAND_CAYMAN_GEODETIC_DATUM_1959 = 'urn:ogc:def:datum:EPSG::6723';
2135
2136
    /**
2137
     * Grand Cayman Vertical Datum 1954
2138
     * Type: Vertical
2139
     * Extent: Cayman Islands - Grand Cayman.
2140
     */
2141
    public const EPSG_GRAND_CAYMAN_VERTICAL_DATUM_1954 = 'urn:ogc:def:datum:EPSG::1097';
2142
2143
    /**
2144
     * Grand Comoros
2145
     * Type: Geodetic
2146
     * Extent: Comoros - Njazidja (Grande Comore).
2147
     * Fundamental point: M'Tsaoueni.  Latitude: 11°28'32.200"S, longitude: 43°15'42.315"E (of Greenwich).
2148
     */
2149
    public const EPSG_GRAND_COMOROS = 'urn:ogc:def:datum:EPSG::6646';
2150
2151
    /**
2152
     * Greek
2153
     * Type: Geodetic
2154
     * Extent: Greece - onshore.
2155
     * Fundamental point: Athens Observatory. Latitude 37°58'20.132"N, longitude 23°42'58.815"E (of Greenwich)
2156
     * See geodetic datum alias 6404. Used as basis of topographic mapping based on Hatt projection. Replaced by GGRS87
2157
     * (code 6121).
2158
     */
2159
    public const EPSG_GREEK = 'urn:ogc:def:datum:EPSG::6120';
2160
2161
    /**
2162
     * Greek (Athens)
2163
     * Type: Geodetic
2164
     * Extent: Greece - onshore.
2165
     * Fundamental point: Athens Observatory. Latitude 37°58'20.132"N, longitude 0°E (of Athens).
2166
     * See geodetic datum alias 6404. Used as basis of topographic mapping based on Hatt projection.
2167
     */
2168
    public const EPSG_GREEK_ATHENS = 'urn:ogc:def:datum:EPSG::6815';
2169
2170
    /**
2171
     * Greek Geodetic Reference System 1987
2172
     * Type: Geodetic
2173
     * Extent: Greece - onshore.
2174
     * Fundamental point: Dionysos. Latitude 38°04'33.8"N, longitude 23°55'51.0"E of Greenwich; geoid height 7.0 m.
2175
     * Replaced (old) Greek datum. Oil industry work based on ED50.
2176
     */
2177
    public const EPSG_GREEK_GEODETIC_REFERENCE_SYSTEM_1987 = 'urn:ogc:def:datum:EPSG::6121';
2178
2179
    /**
2180
     * Greenland 1996
2181
     * Type: Geodetic
2182
     * Extent: Greenland - onshore and offshore.
2183
     * ITRF94 at epoch 1996.62
2184
     * Replaces Ammassalik 1958, Qornoq 1927 and Scoresbysund 1952.
2185
     */
2186
    public const EPSG_GREENLAND_1996 = 'urn:ogc:def:datum:EPSG::6747';
2187
2188
    /**
2189
     * Greenland Vertical Reference 2000
2190
     * Type: Vertical
2191
     * Extent: Greenland - onshore and offshore between 59°N and 84°N and west of 10°W.
2192
     * Defined through the gravimetric geoid 2000 model locally aligned with MSL at a number of sites.
2193
     * Orthometric heights. Replaced by GVR2016.
2194
     */
2195
    public const EPSG_GREENLAND_VERTICAL_REFERENCE_2000 = 'urn:ogc:def:datum:EPSG::1199';
2196
2197
    /**
2198
     * Greenland Vertical Reference 2016
2199
     * Type: Vertical
2200
     * Extent: Greenland - onshore and offshore between 58°N and 85°N and west of 7°W.
2201
     * Defined through the gravimetric geoid 2016 model locally aligned to MSL as measured at Nuuk during the 1960s.
2202
     * Orthometric heights. Replaces GVR2000.
2203
     */
2204
    public const EPSG_GREENLAND_VERTICAL_REFERENCE_2016 = 'urn:ogc:def:datum:EPSG::1200';
2205
2206
    /**
2207
     * Grenada 1953
2208
     * Type: Geodetic
2209
     * Extent: Grenada and southern Grenadine Islands - onshore.
2210
     * Fundamental point: station GS8, Sante Marie.
2211
     */
2212
    public const EPSG_GRENADA_1953 = 'urn:ogc:def:datum:EPSG::6603';
2213
2214
    /**
2215
     * Guadeloupe 1948
2216
     * Type: Geodetic
2217
     * Extent: Guadeloupe - onshore - Basse-Terre, Grande-Terre, La Desirade, Marie-Galante, Les Saintes.
2218
     * Replaced by RRAF 1991 (datum code 1047).
2219
     */
2220
    public const EPSG_GUADELOUPE_1948 = 'urn:ogc:def:datum:EPSG::6622';
2221
2222
    /**
2223
     * Guadeloupe 1951
2224
     * Type: Vertical
2225
     * Extent: Guadeloupe - onshore - Basse-Terre and Grande-Terre.
2226
     * Mean sea level July 1947 to June 1948 at Pointe-Fouillole (Pointe-à-Pitre harbour). Origin = marker AO'-12 with
2227
     * height of 1.917m above msl.
2228
     * Orthometric heights. Replaced by Guadeloupe 1988 (datum code 5155). Guadeloupe 1951 height 0.00m is 0.629m above
2229
     * 1947-48 sounding datum.
2230
     */
2231
    public const EPSG_GUADELOUPE_1951 = 'urn:ogc:def:datum:EPSG::5193';
2232
2233
    /**
2234
     * Guadeloupe 1988
2235
     * Type: Vertical
2236
     * Extent: Guadeloupe - onshore - Basse-Terre and Grande-Terre.
2237
     * Mean sea level July 1947 to June 1948 at Pointe-Fouillole (Pointe-à-Pitre harbour). Origin = marker GO-7
2238
     * (formerly AO'-5) with defined height of 2.67m above msl adopted from 1951 value. Guadeloupe 1988 height 0.00m is
2239
     * 0.46m above 1984 sounding datum.
2240
     * Orthometric heights. Replaces Guadeloupe 1951 (datum code 5193).
2241
     */
2242
    public const EPSG_GUADELOUPE_1988 = 'urn:ogc:def:datum:EPSG::5155';
2243
2244
    /**
2245
     * Guam 1963
2246
     * Type: Geodetic
2247
     * Extent: Guam - onshore. Northern Mariana Islands - onshore.
2248
     * Fundamental point: Tagcha. Latitude: 13°22'38.49"N, longitude: 144°45'51.56"E (of Greenwich).
2249
     * Replaced by NAD83(HARN).
2250
     */
2251
    public const EPSG_GUAM_1963 = 'urn:ogc:def:datum:EPSG::6675';
2252
2253
    /**
2254
     * Guam Vertical Datum of 1963
2255
     * Type: Vertical
2256
     * Extent: Guam - onshore.
2257
     * Mean sea level at Apra harbor, Guam, 1949-1962. Benchmark NO 5 1949 = 0.599m.
2258
     * Replaced by Guam vertical datum of 2004 (datum code 1126).
2259
     */
2260
    public const EPSG_GUAM_VERTICAL_DATUM_OF_1963 = 'urn:ogc:def:datum:EPSG::1122';
2261
2262
    /**
2263
     * Guam Vertical Datum of 2004
2264
     * Type: Vertical
2265
     * Extent: Guam - onshore.
2266
     * Mean sea level at Apra harbor, Guam. Benchmark 1630000 TIDAL 4 = 2.170m relative to US National Tidal Datum
2267
     * Epoch 1983-2001. MSL is 0.419m above MLLW and the BM is 2.589m above MLLW.
2268
     * Replaces Guam Vertical Datum of 1963 (datum code 1122).
2269
     */
2270
    public const EPSG_GUAM_VERTICAL_DATUM_OF_2004 = 'urn:ogc:def:datum:EPSG::1126';
2271
2272
    /**
2273
     * Gulshan 303
2274
     * Type: Geodetic
2275
     * Extent: Bangladesh - onshore and offshore.
2276
     * Gulshan garden, Dhaka.
2277
     * Network of more than 140 control points observed and adjusted in 1995 by Japan International Cooperation Agency
2278
     * (JICA).
2279
     */
2280
    public const EPSG_GULSHAN_303 = 'urn:ogc:def:datum:EPSG::6682';
2281
2282
    /**
2283
     * Gunung Segara
2284
     * Type: Geodetic
2285
     * Extent: Indonesia - Kalimantan - onshore east coastal area including Mahakam delta coastal and offshore shelf
2286
     * areas.
2287
     * Station P5 (Gunung Segara). Latitude 0°32'12.83"S, longitude 117°08'48.47"E (of Greenwich).
2288
     */
2289
    public const EPSG_GUNUNG_SEGARA = 'urn:ogc:def:datum:EPSG::6613';
2290
2291
    /**
2292
     * Gunung Segara (Jakarta)
2293
     * Type: Geodetic
2294
     * Extent: Indonesia - Kalimantan - onshore east coastal area including Mahakam delta coastal and offshore shelf
2295
     * areas.
2296
     * Station P5 (Gunung Segara) 0°32'12.83"S, 117°08'48.47"E (of Greenwich). Longitude 8°20'20.68"E (of Jakarta).
2297
     */
2298
    public const EPSG_GUNUNG_SEGARA_JAKARTA = 'urn:ogc:def:datum:EPSG::6820';
2299
2300
    /**
2301
     * Gusterberg (Ferro)
2302
     * Type: Geodetic
2303
     * Extent: Austria - Upper Austria and Salzburg provinces. Czechia - Bohemia.
2304
     * Fundamental point: Gusterberg. Latitude: 48°02'18.47"N, longitude: 31°48'15.05"E (of Ferro).
2305
     */
2306
    public const EPSG_GUSTERBERG_FERRO = 'urn:ogc:def:datum:EPSG::1188';
2307
2308
    /**
2309
     * HS2 Intermediate Reference Frame
2310
     * Type: Geodetic
2311
     * Extent: United Kingdom (UK) - HS2 phases 1 and 2a railway corridor from London to Birmingham, Lichfield and
2312
     * Crewe.
2313
     * Defined through application of the HS2TN02 transformation to ETRS89 as realized through OSNet v2001 CORS.
2314
     * Subsequently realized through application of the HS2TN15 transformation to ETRS89 as realized through OSNet
2315
     * v2009 CORS.
2316
     * Created to support intermediate CRS "HS2-IRF" in the emulation of the HS2P1+14 Snake map projection.
2317
     */
2318
    public const EPSG_HS2_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1264';
2319
2320
    /**
2321
     * HS2 Vertical Reference Frame
2322
     * Type: Vertical
2323
     * Extent: United Kingdom (UK) - HS2 phases 1 and 2a railway corridor from London to Birmingham, Lichfield and
2324
     * Crewe.
2325
     * Equivalent to Ordnance Datum Newlyn as realized through OSNet v2001 and OSGM02.
2326
     * After introduction of OSNet v2009 CORS, OSTN15 and the OSGM15 geoid model, the HS2 VRF is maintained equivalent
2327
     * to OSNet v2001 and OSGM02 through HS2GM15 (code 9304).
2328
     */
2329
    public const EPSG_HS2_VERTICAL_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1265';
2330
2331
    /**
2332
     * HULLEE13 Intermediate Reference Frame
2333
     * Type: Geodetic
2334
     * Extent: United Kingdom (UK) - on or related to the rail route from the Morley tunnel through Leeds to Hull.
2335
     * Defined through the application of the HULLEE13 NTv2 transformation to ETRS89 as realized through OSNet v2009
2336
     * CORS.
2337
     * Created in 2022 to support intermediate CRS "HULLEE13-IRF" in the emulation of the HULLEE13 Snake map
2338
     * projection.
2339
     */
2340
    public const EPSG_HULLEE13_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1317';
2341
2342
    /**
2343
     * Ha Tien 1960
2344
     * Type: Vertical
2345
     * Extent: Cambodia - mainland onshore; Vietnam - mainland onshore.
2346
     * In Vietnam replaced by Hon Dau in 1992.
2347
     */
2348
    public const EPSG_HA_TIEN_1960 = 'urn:ogc:def:datum:EPSG::5125';
2349
2350
    /**
2351
     * Hanoi 1972
2352
     * Type: Geodetic
2353
     * Extent: Vietnam - onshore.
2354
     */
2355
    public const EPSG_HANOI_1972 = 'urn:ogc:def:datum:EPSG::6147';
2356
2357
    /**
2358
     * Hartebeesthoek94
2359
     * Type: Geodetic
2360
     * Extent: Eswatini (Swaziland); Lesotho; South Africa - onshore and offshore.
2361
     * Coincident with ITRF91 at epoch 1994.0 at Hartebeesthoek astronomical observatory near Pretoria.
2362
     * Replaces Cape datum (code 6222).
2363
     */
2364
    public const EPSG_HARTEBEESTHOEK94 = 'urn:ogc:def:datum:EPSG::6148';
2365
2366
    /**
2367
     * Helle 1954
2368
     * Type: Geodetic
2369
     * Extent: Jan Mayen - onshore.
2370
     */
2371
    public const EPSG_HELLE_1954 = 'urn:ogc:def:datum:EPSG::6660';
2372
2373
    /**
2374
     * Helsinki 1943
2375
     * Type: Vertical
2376
     * Extent: Finland - onshore mainland south of approximately 66°N.
2377
     * MSL at Helsinki during 1943.
2378
     * Uses orthometric heights. Effect of the land uplift during the 2nd national levelling was not taken into
2379
     * account. Replaced by N60 (datum code 5116).
2380
     */
2381
    public const EPSG_HELSINKI_1943 = 'urn:ogc:def:datum:EPSG::1213';
2382
2383
    /**
2384
     * Helsinki 1960
2385
     * Type: Vertical
2386
     * Extent: Finland - onshore.
2387
     * MSL at Helsinki during 1960.
2388
     * Uses orthometric heights. Replaced by N2000 (datum code 1030).
2389
     */
2390
    public const EPSG_HELSINKI_1960 = 'urn:ogc:def:datum:EPSG::5116';
2391
2392
    /**
2393
     * Herat North
2394
     * Type: Geodetic
2395
     * Extent: Afghanistan.
2396
     * Fundamental point: Herat North. Latitude: 34°23'09.08"N, longitude: 64°10'58.94"E (of Greenwich).
2397
     */
2398
    public const EPSG_HERAT_NORTH = 'urn:ogc:def:datum:EPSG::6255';
2399
2400
    /**
2401
     * High Water
2402
     * Type: Vertical
2403
     * Extent: World.
2404
     * Not specific to any location or epoch.
2405
     * The highest water level reached at a place in one tidal cycle. When used on inland (non-tidal) waters it is
2406
     * generally defined as a level which the daily mean water level exceeds less than 5% of the time.
2407
     */
2408
    public const EPSG_HIGH_WATER = 'urn:ogc:def:datum:EPSG::1094';
2409
2410
    /**
2411
     * Higher High Water Large Tide
2412
     * Type: Vertical
2413
     * Extent: World.
2414
     * Not specific to any location or epoch.
2415
     * The average of the highest high waters, one from each of 19 years of observations.
2416
     */
2417
    public const EPSG_HIGHER_HIGH_WATER_LARGE_TIDE = 'urn:ogc:def:datum:EPSG::1084';
2418
2419
    /**
2420
     * Highest Astronomical Tide
2421
     * Type: Vertical
2422
     * Extent: World.
2423
     * Not specific to any location or epoch.
2424
     * The highest tide level which can be predicted to occur under average meteorological conditions and under any
2425
     * combination of astronomical conditions.
2426
     */
2427
    public const EPSG_HIGHEST_ASTRONOMICAL_TIDE = 'urn:ogc:def:datum:EPSG::1082';
2428
2429
    /**
2430
     * Hito XVIII 1963
2431
     * Type: Geodetic
2432
     * Extent: Chile - Tierra del Fuego, onshore; Argentina - Tierra del Fuego, onshore and offshore Atlantic west of
2433
     * 66°W.
2434
     * Chile-Argentina boundary survey.
2435
     * Used in Tierra del Fuego.
2436
     */
2437
    public const EPSG_HITO_XVIII_1963 = 'urn:ogc:def:datum:EPSG::6254';
2438
2439
    /**
2440
     * Hjorsey 1955
2441
     * Type: Geodetic
2442
     * Extent: Iceland - mainland.
2443
     * Fundamental point:  Latitude: 64°31'29.26"N, longitude: 22°22'05.84"W (of Greenwich).
2444
     */
2445
    public const EPSG_HJORSEY_1955 = 'urn:ogc:def:datum:EPSG::6658';
2446
2447
    /**
2448
     * Hon Dau 1992
2449
     * Type: Vertical
2450
     * Extent: Vietnam - mainland onshore.
2451
     * Replaces Ha Tien in Vietnam.
2452
     */
2453
    public const EPSG_HON_DAU_1992 = 'urn:ogc:def:datum:EPSG::5126';
2454
2455
    /**
2456
     * Hong Kong 1963
2457
     * Type: Geodetic
2458
     * Extent: China - Hong Kong - onshore and offshore.
2459
     * Fundamental point: Trig "Zero", 38.4 feet south along the transit circle of the Kowloon Observatory. Latitude
2460
     * 22°18'12.82"N, longitude 114°10'18.75"E (of Greenwich).
2461
     * Replaced by Hong Kong 1963(67) for military purposes only in 1967. Replaced by Hong Kong 1980.
2462
     */
2463
    public const EPSG_HONG_KONG_1963 = 'urn:ogc:def:datum:EPSG::6738';
2464
2465
    /**
2466
     * Hong Kong 1963(67)
2467
     * Type: Geodetic
2468
     * Extent: China - Hong Kong - onshore and offshore.
2469
     * Fundamental point: Trig "Zero", 38.4 feet south along the transit circle of the Kowloon Observatory. Latitude
2470
     * 22°18'12.82"N, longitude 114°10'18.75"E (of Greenwich).
2471
     * Replaces Hong Kong 1963 for military purposes only in 1967. Replaced by Hong Kong 1980.
2472
     */
2473
    public const EPSG_HONG_KONG_1963_67 = 'urn:ogc:def:datum:EPSG::6739';
2474
2475
    /**
2476
     * Hong Kong 1980
2477
     * Type: Geodetic
2478
     * Extent: China - Hong Kong - onshore and offshore.
2479
     * Fundamental point: Trig "Zero", 38.4 feet south along the transit circle of the Kowloon Observatory. Latitude
2480
     * 22°18'12.82"N, longitude 114°10'18.75"E (of Greenwich).
2481
     * Replaces Hong Kong 1963 and Hong Kong 1963(67).
2482
     */
2483
    public const EPSG_HONG_KONG_1980 = 'urn:ogc:def:datum:EPSG::6611';
2484
2485
    /**
2486
     * Hong Kong Chart Datum
2487
     * Type: Vertical
2488
     * Extent: China - Hong Kong - offshore.
2489
     * Approximates to Lowest Astronomic Tide level (LAT).
2490
     * Chart datum is 0.15 metres below Hong Kong Principal Datum (code 5135) and 1.38m below MSL at Quarry Bay.
2491
     */
2492
    public const EPSG_HONG_KONG_CHART_DATUM = 'urn:ogc:def:datum:EPSG::5136';
2493
2494
    /**
2495
     * Hong Kong Geodetic
2496
     * Type: Geodetic
2497
     * Extent: China - Hong Kong - onshore and offshore.
2498
     * ITRF96 at epoch 1998.121
2499
     * Locally sometimes referred to as ITRF96 or WGS 84, these are not strictly correct as it applies only at epoch
2500
     * 1998.121 and ignores subsequent tectonic plate motion.
2501
     */
2502
    public const EPSG_HONG_KONG_GEODETIC = 'urn:ogc:def:datum:EPSG::1209';
2503
2504
    /**
2505
     * Hong Kong Principal Datum
2506
     * Type: Vertical
2507
     * Extent: China - Hong Kong - onshore.
2508
     * 1.23m below the mean of 19 years (1965-83) observations of tide levels at North Point, Victoria Harbour.
2509
     */
2510
    public const EPSG_HONG_KONG_PRINCIPAL_DATUM = 'urn:ogc:def:datum:EPSG::5135';
2511
2512
    /**
2513
     * Horta
2514
     * Type: Vertical
2515
     * Extent: Portugal - central Azores - Faial island onshore.
2516
     * Mean Sea Level during 1935 at Horta.
2517
     * Orthometric heights.
2518
     */
2519
    public const EPSG_HORTA = 'urn:ogc:def:datum:EPSG::1104';
2520
2521
    /**
2522
     * Hu Tzu Shan 1950
2523
     * Type: Geodetic
2524
     * Extent: Taiwan, Republic of China - onshore - Taiwan Island, Penghu (Pescadores) Islands.
2525
     * Fundamental point: Hu Tzu Shan. Latitude: 23°58'32.34"N, longitude: 120°58'25.975"E (of Greenwich).
2526
     */
2527
    public const EPSG_HU_TZU_SHAN_1950 = 'urn:ogc:def:datum:EPSG::6236';
2528
2529
    /**
2530
     * Huahine SAU 2001
2531
     * Type: Vertical
2532
     * Extent: French Polynesia - Society Islands - Huahine.
2533
     * Fundamental benchmark: SHOM B3
2534
     * Included as part of NGPF - see datum code 5195.
2535
     */
2536
    public const EPSG_HUAHINE_SAU_2001 = 'urn:ogc:def:datum:EPSG::5200';
2537
2538
    /**
2539
     * Hungarian Datum 1909
2540
     * Type: Geodetic
2541
     * Extent: Hungary.
2542
     * Fundamental point not given in information source, but presumably Szolohegy which is origin of later HD72.
2543
     * Replaced earlier HD1863 adjustment also on Bessel ellipsoid. Both HD1863 and HD1909 were originally on Ferro
2544
     * Prime Meridian but subsequently converted to Greenwich. Replaced by HD72 (datum code 6237).
2545
     */
2546
    public const EPSG_HUNGARIAN_DATUM_1909 = 'urn:ogc:def:datum:EPSG::1024';
2547
2548
    /**
2549
     * Hungarian Datum 1972
2550
     * Type: Geodetic
2551
     * Extent: Hungary.
2552
     * Fundamental point: Szolohegy. Latitude: 47°17'32,6156"N, longitude 19°36'09.9865"E (of Greenwich); geoid
2553
     * height 6.56m.
2554
     * Replaced Hungarian Datum 1909 (EPSG datum code 1024).
2555
     */
2556
    public const EPSG_HUNGARIAN_DATUM_1972 = 'urn:ogc:def:datum:EPSG::6237';
2557
2558
    /**
2559
     * IG05 Intermediate Datum
2560
     * Type: Geodetic
2561
     * Extent: Israel - onshore; Palestine Territory - onshore.
2562
     * Defined by transformation from IGD05 at epoch 2004.75.
2563
     */
2564
    public const EPSG_IG05_INTERMEDIATE_DATUM = 'urn:ogc:def:datum:EPSG::1142';
2565
2566
    /**
2567
     * IG05/12 Intermediate Datum
2568
     * Type: Geodetic
2569
     * Extent: Israel - onshore; Palestine Territory - onshore.
2570
     * Defined by transformation from IGD05/12 at epoch 2012.00.
2571
     */
2572
    public const EPSG_IG05_12_INTERMEDIATE_DATUM = 'urn:ogc:def:datum:EPSG::1144';
2573
2574
    /**
2575
     * IGC 1962 Arc of the 6th Parallel South
2576
     * Type: Geodetic
2577
     * Extent: The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse.
2578
     * Coordinates of 3 stations determined with respect to Arc 1950: Mulungu 4°47'39.2325"S, 29°59'37.5864"E;
2579
     * 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.
2580
     * Greenwich).
2581
     */
2582
    public const EPSG_IGC_1962_ARC_OF_THE_6TH_PARALLEL_SOUTH = 'urn:ogc:def:datum:EPSG::6697';
2583
2584
    /**
2585
     * IGN 1962 Kerguelen
2586
     * Type: Geodetic
2587
     * Extent: French Southern Territories - Kerguelen onshore.
2588
     * K0 1949.
2589
     */
2590
    public const EPSG_IGN_1962_KERGUELEN = 'urn:ogc:def:datum:EPSG::6698';
2591
2592
    /**
2593
     * IGN 1966
2594
     * Type: Vertical
2595
     * Extent: French Polynesia - Society Islands - Tahiti.
2596
     * Fundamental benchmark: RN501
2597
     * Included as part of NGPF - see datum code 5195.
2598
     */
2599
    public const EPSG_IGN_1966 = 'urn:ogc:def:datum:EPSG::5196';
2600
2601
    /**
2602
     * IGN 1988 LS
2603
     * Type: Vertical
2604
     * Extent: Guadeloupe - onshore - Les Saintes.
2605
     * Mean sea level 1984 at Terre de Haut. Origin = marker O de -5 with defined height of 1.441m above msl. IGN 1988
2606
     * LS height 0.00m is 0.46m above 1987 sounding datum; this approximately corresponds with msl at Pointe-à-Pitre
2607
     * (see datum code 5155, CRS 5757).
2608
     * Orthometric heights.
2609
     */
2610
    public const EPSG_IGN_1988_LS = 'urn:ogc:def:datum:EPSG::5210';
2611
2612
    /**
2613
     * IGN 1988 MG
2614
     * Type: Vertical
2615
     * Extent: Guadeloupe - onshore - Marie-Galante.
2616
     * Mean sea level 1987 at Grand-Bourg. Origin = marker M0-I with defined height of 0.832m above msl. IGN 1988 MG
2617
     * height 0.00m is 0.46m above 1987 sounding datum; this approximately corresponds with msl at Pointe-à-Pitre (see
2618
     * datum code 5155, CRS code 5757).
2619
     * Orthometric heights.
2620
     */
2621
    public const EPSG_IGN_1988_MG = 'urn:ogc:def:datum:EPSG::5211';
2622
2623
    /**
2624
     * IGN 1988 SB
2625
     * Type: Vertical
2626
     * Extent: Guadeloupe - onshore - St Barthelemy island.
2627
     * Mean sea level 1988 at port of Gustavia. Origin = marker A.ef-2 with defined height of 0.621m above msl. IGN
2628
     * 1988 SB height 0.00m deduced to be 0.201m above mean sea level at Pointe-à-Pitre.
2629
     * Orthometric heights.
2630
     */
2631
    public const EPSG_IGN_1988_SB = 'urn:ogc:def:datum:EPSG::5213';
2632
2633
    /**
2634
     * IGN 1988 SM
2635
     * Type: Vertical
2636
     * Extent: Guadeloupe - onshore - St Martin island.
2637
     * Mean sea level 1949-1950 deduced at Fort Marigot. Origin = marker AS-13 with defined height of 6.990m above msl.
2638
     * IGN 1988 SM height 0.00m deduced to be 0.41m above sounding datum.
2639
     * Orthometric heights.
2640
     */
2641
    public const EPSG_IGN_1988_SM = 'urn:ogc:def:datum:EPSG::5214';
2642
2643
    /**
2644
     * IGN 1992 LD
2645
     * Type: Vertical
2646
     * Extent: Guadeloupe - onshore - La Desirade.
2647
     * Mean sea level at Pointe-à-Pitre. Origin = marker A with defined height of 0.792m above msl. IGN 1992 LD height
2648
     * 0.00m is 0.629m above sounding datum at Pointe-à-Pitre.
2649
     * Orthometric heights. Replaced by IGN 2008 LD (datum code 1250).
2650
     */
2651
    public const EPSG_IGN_1992_LD = 'urn:ogc:def:datum:EPSG::5212';
2652
2653
    /**
2654
     * IGN 2008 LD
2655
     * Type: Vertical
2656
     * Extent: Guadeloupe - onshore - La Desirade.
2657
     * Mean sea level at Pointe-à-Pitre. Origin = IGN Marker 20A with defined height of 0.50 m above msl of 1987.
2658
     * Orthometric heights. Replaces IGN 1992 LD (datum code 5212).
2659
     */
2660
    public const EPSG_IGN_2008_LD = 'urn:ogc:def:datum:EPSG::1250';
2661
2662
    /**
2663
     * IGN Astro 1960
2664
     * Type: Geodetic
2665
     * Extent: Mauritania - onshore.
2666
     * Realised through a set of independent astronomically-positioned points.
2667
     * Observed during 1959-1960. Independent points not connected through a network. Relative accuracy estimated at
2668
     * 50-100m. Replaced by Mauritania 1999 (datum code 6702).
2669
     */
2670
    public const EPSG_IGN_ASTRO_1960 = 'urn:ogc:def:datum:EPSG::6700';
2671
2672
    /**
2673
     * IGN53 Mare
2674
     * Type: Geodetic
2675
     * Extent: New Caledonia - Loyalty Islands - Mare.
2676
     * South-east end of the La Roche base.
2677
     */
2678
    public const EPSG_IGN53_MARE = 'urn:ogc:def:datum:EPSG::6641';
2679
2680
    /**
2681
     * IGN56 Lifou
2682
     * Type: Geodetic
2683
     * Extent: New Caledonia - Loyalty Islands - Lifou.
2684
     * South end of the Goume base.
2685
     */
2686
    public const EPSG_IGN56_LIFOU = 'urn:ogc:def:datum:EPSG::6633';
2687
2688
    /**
2689
     * IGN63 Hiva Oa
2690
     * Type: Geodetic
2691
     * Extent: French Polynesia - Marquesas Islands - Hiva Oa and Tahuata.
2692
     * Fundamental point: Atuona. Latitude: 9°48'27.20"S, longitude: 139°02'15.45"W (of Greenwich).
2693
     * Replaced by RGPF (datum code 6687).
2694
     */
2695
    public const EPSG_IGN63_HIVA_OA = 'urn:ogc:def:datum:EPSG::6689';
2696
2697
    /**
2698
     * IGN72 Grande Terre
2699
     * Type: Geodetic
2700
     * Extent: New Caledonia - Grande Terre.
2701
     * North end of Gomen base.
2702
     */
2703
    public const EPSG_IGN72_GRANDE_TERRE = 'urn:ogc:def:datum:EPSG::6634';
2704
2705
    /**
2706
     * IGN72 Nuku Hiva
2707
     * Type: Geodetic
2708
     * Extent: French Polynesia - Marquesas Islands - Nuku Hiva, Ua Huka and Ua Pou.
2709
     * Fundamental point: Taiohae. Latitude: 8°55'03.97"S, longitude: 140°05'36.24"W (of Greenwich).
2710
     * Replaced by RGPF (datum code 6687).
2711
     */
2712
    public const EPSG_IGN72_NUKU_HIVA = 'urn:ogc:def:datum:EPSG::6630';
2713
2714
    /**
2715
     * IGS00
2716
     * Type: Dynamic geodetic
2717
     * Extent: World.
2718
     * Derived from ITRF2000 at epoch 1998.00 through a subset of 54 stable IGS station coordinates. Preserves the ITRF
2719
     * origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques.
2720
     * Used for IGS products from GPS week 1143 through GPS week 1252 (2001-12-02 through 2004-01-10). Replaces IGS97,
2721
     * replaced by IGb00. For all practical purposes coincident with ITRF2000.
2722
     */
2723
    public const EPSG_IGS00 = 'urn:ogc:def:datum:EPSG::1245';
2724
2725
    /**
2726
     * IGS05
2727
     * Type: Dynamic geodetic
2728
     * Extent: World.
2729
     * Derived from ITRF2005 at epoch 2000.00 through a subset of 139 stable IGS station coordinates. Preserves the
2730
     * ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic
2731
     * techniques.
2732
     * Used for IGS products from GPS week 1400 through GPS week 1631 (2006-11-05 to 2011-04-16). Replaces IGb00,
2733
     * replaced by IGb08. For all practical purposes coincident with ITRF2005.
2734
     */
2735
    public const EPSG_IGS05 = 'urn:ogc:def:datum:EPSG::1247';
2736
2737
    /**
2738
     * IGS08
2739
     * Type: Dynamic geodetic
2740
     * Extent: World.
2741
     * Derived from ITRF2008 at epoch 2005.00 through a subset of 232 stable IGS station coordinates. Preserves the
2742
     * ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic
2743
     * techniques.
2744
     * Used for IGS products from GPS week 1632 through GPS week 1708 (2011-04-17 through 2012-10-06). Replaces IGS05.
2745
     * Replaced by IGb08. For all practical purposes coincident with ITRF2008.
2746
     */
2747
    public const EPSG_IGS08 = 'urn:ogc:def:datum:EPSG::1141';
2748
2749
    /**
2750
     * IGS14
2751
     * Type: Dynamic geodetic
2752
     * Extent: World.
2753
     * Derived from ITRF2014 at epoch 2010.00 through a subset of 252 stable IGS station coordinates. Preserves the
2754
     * ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic
2755
     * techniques.
2756
     * Used for IGS products from GPS week 1934 (2017-01-29) through GPS week 2105 (2020-05-16). Replaces IGb08,
2757
     * replaced by IGb14. For all practical purposes coincident with ITRF2014.
2758
     */
2759
    public const EPSG_IGS14 = 'urn:ogc:def:datum:EPSG::1191';
2760
2761
    /**
2762
     * IGS20
2763
     * Type: Dynamic geodetic
2764
     * Extent: World.
2765
     * A subset of 332 stable, well-performing IGS stations from ITRF2020.
2766
     * Used for IGS products from GPS week 2238 (2022-11-27). Replaces IGb14. Compared to IGb14, IGS20 contains 98 new
2767
     * stations, mostly in previously sparsely covered areas, but with 25 IGb14 sites removed. For all practical
2768
     * purposes coincident with ITRF2020.
2769
     */
2770
    public const EPSG_IGS20 = 'urn:ogc:def:datum:EPSG::1333';
2771
2772
    /**
2773
     * IGS97
2774
     * Type: Dynamic geodetic
2775
     * Extent: World.
2776
     * Derived from ITRF97 at epoch 1997.00 through a subset of stable IGS station coordinates. Preserves the ITRF
2777
     * origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques.
2778
     * Used for IGS products from GPS week 1065 through GPS week 1142 (2000-06-04 to 2001-12-01). Replaced by IGS00.
2779
     * For all practical purposes coincident with ITRF97.
2780
     */
2781
    public const EPSG_IGS97 = 'urn:ogc:def:datum:EPSG::1244';
2782
2783
    /**
2784
     * IGb00
2785
     * Type: Dynamic geodetic
2786
     * Extent: World.
2787
     * Derived from ITRF2000 at epoch 1998.00 through a subset of 99 stable IGS station coordinates. Preserves the ITRF
2788
     * origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques.
2789
     * Used for IGS products from GPS week 1253 through GPS week 1399 (2004-01-11 to 2006-11-04). Replaces IGS00,
2790
     * replaced by IGS05. For all practical purposes coincident with ITRF2000.
2791
     */
2792
    public const EPSG_IGB00 = 'urn:ogc:def:datum:EPSG::1246';
2793
2794
    /**
2795
     * IGb08
2796
     * Type: Dynamic geodetic
2797
     * Extent: World.
2798
     * Derived from ITRF2008 at epoch 2005.00 through a subset of 232 stable IGS station coordinates. Preserves the
2799
     * ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic
2800
     * techniques.
2801
     * Used for IGS products from GPS week 1709 through GPS week 1933 (2012-10-07 to 2017-01-28). Replaces IGS08,
2802
     * replaced by IGS14. For all practical purposes coincident with ITRF2008.
2803
     */
2804
    public const EPSG_IGB08 = 'urn:ogc:def:datum:EPSG::1248';
2805
2806
    /**
2807
     * IGb14
2808
     * Type: Dynamic geodetic
2809
     * Extent: World.
2810
     * Daily IGS combined operational solutions of GPS weeks 730 to 2092. IGb14 is aligned in origin, scale and
2811
     * orientation to IGS14 via a subset of 233 selected stations. As IGS14 is aligned to ITRF2014, IGb14 is also
2812
     * aligned to ITRF2014.
2813
     * Used for IGS products from GPS week 2106 (2020-05-17). Replaces IGS14. Compared to IGS14, IGb14 benefits from 5
2814
     * more years of input data, a revised discontinuity list and 9 additional stations. For all practical purposes
2815
     * coincident with ITRF2014.
2816
     */
2817
    public const EPSG_IGB14 = 'urn:ogc:def:datum:EPSG::1272';
2818
2819
    /**
2820
     * IRENET95
2821
     * Type: Geodetic
2822
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
2823
     * ETRS89 stations in Ireland
2824
     * Densification of ETRS89.
2825
     */
2826
    public const EPSG_IRENET95 = 'urn:ogc:def:datum:EPSG::6173';
2827
2828
    /**
2829
     * Ibiza
2830
     * Type: Vertical
2831
     * Extent: Spain - Balearic Islands - Ibiza and Formentera - onshore.
2832
     * Mean Sea Level at Ibiza harbour between January 2003 and December 2005.
2833
     * Orthometric heights.
2834
     */
2835
    public const EPSG_IBIZA = 'urn:ogc:def:datum:EPSG::1277';
2836
2837
    /**
2838
     * Incheon
2839
     * Type: Vertical
2840
     * Extent: Republic of Korea (South Korea) - mainland onshore.
2841
     * MSL 1913-1916 at Incheon Bay.
2842
     */
2843
    public const EPSG_INCHEON = 'urn:ogc:def:datum:EPSG::1049';
2844
2845
    /**
2846
     * Indian 1954
2847
     * Type: Geodetic
2848
     * Extent: Myanmar (Burma) - onshore; Thailand - onshore.
2849
     * Extension of Kalianpur 1937 over Myanmar and Thailand.
2850
     */
2851
    public const EPSG_INDIAN_1954 = 'urn:ogc:def:datum:EPSG::6239';
2852
2853
    /**
2854
     * Indian 1960
2855
     * Type: Geodetic
2856
     * Extent: Cambodia - onshore; Vietnam - onshore and offshore Cuu Long basin.
2857
     * DMA extension over IndoChina of the Indian 1954 network adjusted  to better fit local geoid.
2858
     * Also known as Indian (DMA Reduced).
2859
     */
2860
    public const EPSG_INDIAN_1960 = 'urn:ogc:def:datum:EPSG::6131';
2861
2862
    /**
2863
     * Indian 1975
2864
     * Type: Geodetic
2865
     * Extent: Thailand - onshore plus offshore Gulf of Thailand.
2866
     * Fundamental point: Khau Sakaerang.
2867
     */
2868
    public const EPSG_INDIAN_1975 = 'urn:ogc:def:datum:EPSG::6240';
2869
2870
    /**
2871
     * Indian Spring Low Water
2872
     * Type: Vertical
2873
     * Extent: World.
2874
     * Not specific to any location or epoch.
2875
     * The level below MSL equal to the sum of the amplitudes of the harmonic constituents M2, S2, K1 and O1. It
2876
     * approximates mean lower low water spring tides (MLLWS).
2877
     */
2878
    public const EPSG_INDIAN_SPRING_LOW_WATER = 'urn:ogc:def:datum:EPSG::1085';
2879
2880
    /**
2881
     * Indonesian Datum 1974
2882
     * Type: Geodetic
2883
     * Extent: Indonesia - onshore.
2884
     * Fundamental point: Padang. Latitude: 0°56'38.414"S, longitude: 100°22' 8.804"E (of Greenwich). Ellipsoidal
2885
     * height 3.190m, gravity-related height 14.0m above mean sea level.
2886
     * Replaced by DGN95.
2887
     */
2888
    public const EPSG_INDONESIAN_DATUM_1974 = 'urn:ogc:def:datum:EPSG::6238';
2889
2890
    /**
2891
     * Indonesian Geoid 2020 version 1
2892
     * Type: Vertical
2893
     * Extent: Indonesia - onshore and offshore.
2894
     * Defined by INAGeoid2020 gravimetric geoid model v1 applied to SRGI2013.
2895
     * Uses gravity data observed to 2019 fitted to control points on Java and Bali.
2896
     */
2897
    public const EPSG_INDONESIAN_GEOID_2020_VERSION_1 = 'urn:ogc:def:datum:EPSG::1294';
2898
2899
    /**
2900
     * Indonesian Geoid 2020 version 2
2901
     * Type: Vertical
2902
     * Extent: Indonesia - onshore and offshore.
2903
     * Defined by INAGeoid2020 gravimetric geoid model v2 applied to SRGI2013.
2904
     * Uses gravity data observed to 2021 fitted to tide gauge benchmarks across Indonesia.
2905
     */
2906
    public const EPSG_INDONESIAN_GEOID_2020_VERSION_2 = 'urn:ogc:def:datum:EPSG::1328';
2907
2908
    /**
2909
     * Instantaneous Water Level
2910
     * Type: Vertical
2911
     * Extent: World.
2912
     * Instantaneous water level uncorrected for tide.
2913
     * Not specific to any location or epoch.
2914
     */
2915
    public const EPSG_INSTANTANEOUS_WATER_LEVEL = 'urn:ogc:def:datum:EPSG::5113';
2916
2917
    /**
2918
     * Institut Geographique du Congo Belge 1955
2919
     * Type: Geodetic
2920
     * Extent: The Democratic Republic of the Congo (Zaire) - Lower Congo (Bas Congo)
2921
     * Fundamental point: Yella east base. Latitude: 6°00'53.139"S, longitude: 12°58'29.287"E (of Greenwich).
2922
     * Replaced by IGC 1962 Arc of the 6th Parallel South, except for oil industry activities.
2923
     */
2924
    public const EPSG_INSTITUT_GEOGRAPHIQUE_DU_CONGO_BELGE_1955 = 'urn:ogc:def:datum:EPSG::6701';
2925
2926
    /**
2927
     * International Great Lakes Datum 1955
2928
     * Type: Vertical
2929
     * Extent: Canada and United States (USA) - Great Lakes basin and St Lawrence Seaway.
2930
     * Mean water level 1941-1956 at Pointe-au-Père (Father's Point), Quebec. Benchmark 1248-G = 3.794m.
2931
     * Dynamic heights. Adopted in 1962. Replaced by IGLD 1985 in January 1992.
2932
     */
2933
    public const EPSG_INTERNATIONAL_GREAT_LAKES_DATUM_1955 = 'urn:ogc:def:datum:EPSG::5204';
2934
2935
    /**
2936
     * International Great Lakes Datum 1985
2937
     * Type: Vertical
2938
     * Extent: Canada and United States (USA) - Great Lakes basin and St Lawrence Seaway.
2939
     * Mean water level 1970-1983 at Pointe-au-Père (Father's Point) and 1984-1988 at Rimouski, Quebec. Benchmark
2940
     * 1250-G = 6.273m.
2941
     * Dynamic heights. Replaces IGLD 1955 from January 1992.
2942
     */
2943
    public const EPSG_INTERNATIONAL_GREAT_LAKES_DATUM_1985 = 'urn:ogc:def:datum:EPSG::5205';
2944
2945
    /**
2946
     * International Terrestrial Reference Frame 1988
2947
     * Type: Dynamic geodetic
2948
     * Extent: World.
2949
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
2950
     * 3-dimensional Cartesian station coordinates (SCS).
2951
     * Realization of the IERS Terrestrial Reference System (ITRS) at epoch 1988.0. Replaced by ITRF89 (code 6648).
2952
     */
2953
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1988 = 'urn:ogc:def:datum:EPSG::6647';
2954
2955
    /**
2956
     * International Terrestrial Reference Frame 1989
2957
     * Type: Dynamic geodetic
2958
     * Extent: World.
2959
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
2960
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0.
2961
     * Realization of the IERS Terrestrial Reference System (ITRS) from April 1991. Replaces ITRF88 (code 6647).
2962
     * Replaced by ITRF90 (code 6649).
2963
     */
2964
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1989 = 'urn:ogc:def:datum:EPSG::6648';
2965
2966
    /**
2967
     * International Terrestrial Reference Frame 1990
2968
     * Type: Dynamic geodetic
2969
     * Extent: World.
2970
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
2971
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0.
2972
     * Realization of the IERS Terrestrial Reference System (ITRS) from December 1991. Replaces ITRF89 (code 6648).
2973
     * Replaced by ITRF91 (code 6650).
2974
     */
2975
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1990 = 'urn:ogc:def:datum:EPSG::6649';
2976
2977
    /**
2978
     * International Terrestrial Reference Frame 1991
2979
     * Type: Dynamic geodetic
2980
     * Extent: World.
2981
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
2982
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0.
2983
     * Realization of the IERS Terrestrial Reference System (ITRS) from October 1992. Replaces ITRF90 (code 6649).
2984
     * Replaced by ITRF92 (code 6651).
2985
     */
2986
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1991 = 'urn:ogc:def:datum:EPSG::6650';
2987
2988
    /**
2989
     * International Terrestrial Reference Frame 1992
2990
     * Type: Dynamic geodetic
2991
     * Extent: World.
2992
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of 287
2993
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0.
2994
     * Realization of the IERS Terrestrial Reference System (ITRS) from October 1993. Replaces ITRF91 (code 6650).
2995
     * Replaced by ITRF93 (code 6652).
2996
     */
2997
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1992 = 'urn:ogc:def:datum:EPSG::6651';
2998
2999
    /**
3000
     * International Terrestrial Reference Frame 1993
3001
     * Type: Dynamic geodetic
3002
     * Extent: World.
3003
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
3004
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1993.0.
3005
     * Realization of the IERS Terrestrial Reference System (ITRS) from October 1994. Replaces ITRF92 (code 6651).
3006
     * Replaced by ITRF94 (code 6653).
3007
     */
3008
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1993 = 'urn:ogc:def:datum:EPSG::6652';
3009
3010
    /**
3011
     * International Terrestrial Reference Frame 1994
3012
     * Type: Dynamic geodetic
3013
     * Extent: World.
3014
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
3015
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1993.0.
3016
     * Realization of the IERS Terrestrial Reference System (ITRS) from March 1996. Replaces ITRF93 (code 6652).
3017
     * Replaced by ITRF96 (code 6654).
3018
     */
3019
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1994 = 'urn:ogc:def:datum:EPSG::6653';
3020
3021
    /**
3022
     * International Terrestrial Reference Frame 1996
3023
     * Type: Dynamic geodetic
3024
     * Extent: World.
3025
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
3026
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1997.0.
3027
     * Realization of the IERS Terrestrial Reference System (ITRS) from May 1998. Replaces ITRF94 (code 6653). Replaced
3028
     * by ITRF97 (code 6655).
3029
     */
3030
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1996 = 'urn:ogc:def:datum:EPSG::6654';
3031
3032
    /**
3033
     * International Terrestrial Reference Frame 1997
3034
     * Type: Dynamic geodetic
3035
     * Extent: World.
3036
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
3037
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1997.0.
3038
     * Realization of the IERS Terrestrial Reference System (ITRS) from May 1999. Replaces ITRF96 (code 6654). Replaced
3039
     * by ITRF2000 (code 6656).
3040
     */
3041
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1997 = 'urn:ogc:def:datum:EPSG::6655';
3042
3043
    /**
3044
     * International Terrestrial Reference Frame 2000
3045
     * Type: Dynamic geodetic
3046
     * Extent: World.
3047
     * Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of
3048
     * 3-dimensional Cartesian station coordinates (SCS) for epoch 1997.0.
3049
     * Realization of the IERS Terrestrial Reference System (ITRS) from 2004. Replaces ITRF97 (code 6655). Replaced by
3050
     * ITRF2005 (code 6896).
3051
     */
3052
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2000 = 'urn:ogc:def:datum:EPSG::6656';
3053
3054
    /**
3055
     * International Terrestrial Reference Frame 2005
3056
     * Type: Dynamic geodetic
3057
     * Extent: World.
3058
     * Origin at geocentre, originally orientated to the BIH Terrestrial System at epoch 1984.0 then adjusted to ensure
3059
     * zero net rotation to earth's overall tectonic motion. Defined by time series of Cartesian station coordinates
3060
     * for epoch 2000.0.
3061
     * Realization of the IERS Terrestrial Reference System (ITRS) from September 2007. Replaces ITRF2000 (code 6656).
3062
     * Replaced by ITRF2008 (datum code 1061).
3063
     */
3064
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2005 = 'urn:ogc:def:datum:EPSG::6896';
3065
3066
    /**
3067
     * International Terrestrial Reference Frame 2008
3068
     * Type: Dynamic geodetic
3069
     * Extent: World.
3070
     * Origin at geocentre. The ITRF2008 origin is defined in such a way that there are null translation parameters at
3071
     * epoch 2005.0 and null translation rates between the ITRF2008 and the ILRS SLR time series.
3072
     * Realization of the IERS Terrestrial Reference System (ITRS) from 2012. Replaces ITRF2005 (code 6896).
3073
     */
3074
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2008 = 'urn:ogc:def:datum:EPSG::1061';
3075
3076
    /**
3077
     * International Terrestrial Reference Frame 2014
3078
     * Type: Dynamic geodetic
3079
     * Extent: World.
3080
     * Origin at geocentre. Origin = ILRS SLR long-term solution at epoch 2010.0. Zero scale and scale rate between
3081
     * ITRF2014 and the average of VLBI and SLR scales/rates. Orientation = ITRF2008@ 2010.0 with zero rotation rates
3082
     * between the ITRF2014 and ITRF2008.
3083
     * Realization of the IERS Terrestrial Reference System (ITRS). Replaces ITRF2008 (datum code 1061) from January
3084
     * 2016. Replaced by ITRF2020 (datum code 1322) from April 2022.
3085
     */
3086
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2014 = 'urn:ogc:def:datum:EPSG::1165';
3087
3088
    /**
3089
     * International Terrestrial Reference Frame 2020
3090
     * Type: Dynamic geodetic
3091
     * Extent: World.
3092
     * Origin at geocentre. Origin = ILRS SLR long-term solution at epoch 2015.0. Zero scale and scale rate between
3093
     * ITRF2020 and the average of VLBI and SLR scales/rates. Orientation = ITRF2014@ 2015.0 with zero rotation rates
3094
     * between the ITRF2020 and ITRF2014.
3095
     * Realization of the IERS Terrestrial Reference System (ITRS). Replaces ITRF2014 (datum code 1165) from April
3096
     * 2022.
3097
     */
3098
    public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2020 = 'urn:ogc:def:datum:EPSG::1322';
3099
3100
    /**
3101
     * Iraq-Kuwait Boundary Datum 1992
3102
     * Type: Geodetic
3103
     * Extent: Iraq - Kuwait boundary.
3104
     * Four stations established between September and December 1991 determined by GPS and Doppler observations.
3105
     */
3106
    public const EPSG_IRAQ_KUWAIT_BOUNDARY_DATUM_1992 = 'urn:ogc:def:datum:EPSG::6667';
3107
3108
    /**
3109
     * Iraqi Geospatial Reference System
3110
     * Type: Geodetic
3111
     * Extent: Iraq - onshore and offshore.
3112
     * ITRF2000 at epoch 1997.0.
3113
     */
3114
    public const EPSG_IRAQI_GEOSPATIAL_REFERENCE_SYSTEM = 'urn:ogc:def:datum:EPSG::1029';
3115
3116
    /**
3117
     * Islands Net 1993
3118
     * Type: Geodetic
3119
     * Extent: Iceland - onshore and offshore.
3120
     * ITRF93 at epoch 1993.6.
3121
     * Replaced by ISN2004 (datum code 1060).
3122
     */
3123
    public const EPSG_ISLANDS_NET_1993 = 'urn:ogc:def:datum:EPSG::6659';
3124
3125
    /**
3126
     * Islands Net 2004
3127
     * Type: Geodetic
3128
     * Extent: Iceland - onshore and offshore.
3129
     * ITRF2000 at epoch 2004.6.
3130
     * Replaces ISN93 (datum code 6659). Replaced by ISN2016 (datum code 1087).
3131
     */
3132
    public const EPSG_ISLANDS_NET_2004 = 'urn:ogc:def:datum:EPSG::1060';
3133
3134
    /**
3135
     * Islands Net 2016
3136
     * Type: Geodetic
3137
     * Extent: Iceland - onshore and offshore.
3138
     * ITRF2014 at epoch 2016.5.
3139
     * Replaces ISN2004 from September 2017.
3140
     */
3141
    public const EPSG_ISLANDS_NET_2016 = 'urn:ogc:def:datum:EPSG::1187';
3142
3143
    /**
3144
     * Israel 1993
3145
     * Type: Geodetic
3146
     * Extent: Israel - onshore; Palestine Territory - onshore.
3147
     * Fundamental point:  Latitude: 31°44'03.817"N, longitude: 35°12'16.261"E (of Greenwich).
3148
     * Replaces Palestine 1923 (datum code 6281). Replaced by IGD05 (datum code 1143).
3149
     */
3150
    public const EPSG_ISRAEL_1993 = 'urn:ogc:def:datum:EPSG::6141';
3151
3152
    /**
3153
     * Israeli Geodetic Datum 2005
3154
     * Type: Geodetic
3155
     * Extent: Israel - onshore and offshore.
3156
     * Defined by coordinates of 13 Active Positioning Network (APN) stations in ITRF2000 at epoch 2004.75. A further
3157
     * five APN stations were added in 2006.
3158
     * Replaces Israel 1993 (datum code 6141). Replaced by IGD05/12 (datum code 1115).
3159
     */
3160
    public const EPSG_ISRAELI_GEODETIC_DATUM_2005 = 'urn:ogc:def:datum:EPSG::1114';
3161
3162
    /**
3163
     * Israeli Geodetic Datum 2005(2012)
3164
     * Type: Geodetic
3165
     * Extent: Israel - onshore and offshore.
3166
     * Datum updated in 2012 with four APN stations removed from definition. Coordinate epoch remains ITRF2000 at epoch
3167
     * 2004.75.
3168
     * Replaces IGD05 (datum code 1114).
3169
     */
3170
    public const EPSG_ISRAELI_GEODETIC_DATUM_2005_2012 = 'urn:ogc:def:datum:EPSG::1115';
3171
3172
    /**
3173
     * Istituto Geografico Militaire 1995
3174
     * Type: Geodetic
3175
     * Extent: Italy - onshore and offshore; San Marino, Vatican City State.
3176
     * Densification of ETRF89 in Italy. Network of 1296 points observed 1992-1995 adjusted in 1996 constrained to 9
3177
     * ETRF89 points at epoch 1989.0. By April 2021 the framework was composed of 3104 points of the fundamental
3178
     * network and 3819 densification points.
3179
     * Replaced by RDN2008 (datum code 1132) from 2011-11-10.
3180
     */
3181
    public const EPSG_ISTITUTO_GEOGRAFICO_MILITAIRE_1995 = 'urn:ogc:def:datum:EPSG::6670';
3182
3183
    /**
3184
     * Iwo Jima 1945
3185
     * Type: Geodetic
3186
     * Extent: Japan - Iwo Jima island.
3187
     * Fundamental point: Beacon "E".
3188
     */
3189
    public const EPSG_IWO_JIMA_1945 = 'urn:ogc:def:datum:EPSG::6709';
3190
3191
    /**
3192
     * Jamaica 1875
3193
     * Type: Geodetic
3194
     * Extent: Jamaica - onshore.
3195
     * Fundamental point: Fort Charles Flagstaff. Latitude: 17°55'55.800"N, longitude: 76°56'37.260"W (of Greenwich).
3196
     */
3197
    public const EPSG_JAMAICA_1875 = 'urn:ogc:def:datum:EPSG::6241';
3198
3199
    /**
3200
     * Jamaica 1969
3201
     * Type: Geodetic
3202
     * Extent: Jamaica - onshore.
3203
     * Fundamental point: Fort Charles Flagstaff. Latitude: 17°55'55.800"N, longitude: 76°56'37.260"W (of Greenwich).
3204
     */
3205
    public const EPSG_JAMAICA_1969 = 'urn:ogc:def:datum:EPSG::6242';
3206
3207
    /**
3208
     * Jamaica 2001
3209
     * Type: Geodetic
3210
     * Extent: Jamaica - onshore and offshore. Includes Morant Cays and Pedro Cays.
3211
     * Aligned to WGS 84.
3212
     */
3213
    public const EPSG_JAMAICA_2001 = 'urn:ogc:def:datum:EPSG::6758';
3214
3215
    /**
3216
     * Jamestown 1971
3217
     * Type: Vertical
3218
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
3219
     * MSL at Jamestown 1971 defined through elevation of triangulation station Astro DOS 71/4 Ladder Hill Fort being
3220
     * 267.858 metres above MSL.
3221
     */
3222
    public const EPSG_JAMESTOWN_1971 = 'urn:ogc:def:datum:EPSG::1175';
3223
3224
    /**
3225
     * Japanese Geodetic Datum 2000
3226
     * Type: Geodetic
3227
     * Extent: Japan - onshore and offshore.
3228
     * ITRF94 at epoch 1997.0. Fundamental point: Tokyo-Taisho, latitude: 35°39'29.1572"N, longitude:
3229
     * 139°44'28.8759"E (of Greenwich).
3230
     * Instigated under amendment to the Japanese Surveying Law with effect from April 2002. Replaces Tokyo datum (code
3231
     * 6301). Replaced by JGD2011 (datum code 1128) with effect from 21st October 2011.
3232
     */
3233
    public const EPSG_JAPANESE_GEODETIC_DATUM_2000 = 'urn:ogc:def:datum:EPSG::6612';
3234
3235
    /**
3236
     * Japanese Geodetic Datum 2000 (vertical)
3237
     * Type: Vertical
3238
     * Extent: Japan - onshore mainland - Hokkaido, Honshu, Shikoku, Kyushu.
3239
     * 24.4140 metres above mean sea level Tokyo Bay.
3240
     * Orthometric heights. Replaces JSLD69 and JSLD72 with effect from April 2002. Replaced by JGD2011 (vertical)
3241
     * (datum code 1131) with effect from 21st October 2011.
3242
     */
3243
    public const EPSG_JAPANESE_GEODETIC_DATUM_2000_VERTICAL = 'urn:ogc:def:datum:EPSG::1130';
3244
3245
    /**
3246
     * Japanese Geodetic Datum 2011
3247
     * Type: Geodetic
3248
     * Extent: Japan - onshore and offshore.
3249
     * ITRF94 at epoch 1997.0 except for northern Honshu area impacted by 2011 Tohoku earthquake which is ITRF2008 at
3250
     * epoch 2011.395. Fundamental point: Tokyo-Taisho, latitude: 35°39'29.1572"N, longitude: 139°44'28.8869"E (of
3251
     * Greenwich).
3252
     * Instigated under amendment to the Japanese Surveying Law with effect from 21st October 2011. Replaces JGD2000
3253
     * (datum code 6612).
3254
     */
3255
    public const EPSG_JAPANESE_GEODETIC_DATUM_2011 = 'urn:ogc:def:datum:EPSG::1128';
3256
3257
    /**
3258
     * Japanese Geodetic Datum 2011 (vertical)
3259
     * Type: Vertical
3260
     * Extent: Japan - onshore mainland - Hokkaido, Honshu, Shikoku, Kyushu.
3261
     * 24.3900 metres above mean sea level Tokyo Bay.
3262
     * Orthometric heights. Replaces JGD2000 (vertical) (datum code 1130) with effect from 21st October 2011.
3263
     */
3264
    public const EPSG_JAPANESE_GEODETIC_DATUM_2011_VERTICAL = 'urn:ogc:def:datum:EPSG::1131';
3265
3266
    /**
3267
     * Japanese Standard Levelling Datum 1969
3268
     * Type: Vertical
3269
     * Extent: Japan - onshore mainland - Honshu, Shikoku, Kyushu.
3270
     * 24.4140 metres above mean sea level Tokyo Bay.
3271
     * Normal-orthometric heights. Replaces JSLD49. Replaced by JGD2000 (vertical) (datum code 1130) from April 2002.
3272
     */
3273
    public const EPSG_JAPANESE_STANDARD_LEVELLING_DATUM_1969 = 'urn:ogc:def:datum:EPSG::5122';
3274
3275
    /**
3276
     * Japanese Standard Levelling Datum 1972
3277
     * Type: Vertical
3278
     * Extent: Japan - onshore mainland - Hokkaido.
3279
     * Mean sea level Oshoro 1963-72.
3280
     * Normal-orthometric heights. Replaced by JGD2000 (vertical) (datum code 1130) with effect from April 2002.
3281
     */
3282
    public const EPSG_JAPANESE_STANDARD_LEVELLING_DATUM_1972 = 'urn:ogc:def:datum:EPSG::1129';
3283
3284
    /**
3285
     * Johnston Island 1961
3286
     * Type: Geodetic
3287
     * Extent: United States Minor Outlying Islands - Johnston Island.
3288
     */
3289
    public const EPSG_JOHNSTON_ISLAND_1961 = 'urn:ogc:def:datum:EPSG::6725';
3290
3291
    /**
3292
     * Jouik 1961
3293
     * Type: Geodetic
3294
     * Extent: Mauritania - coastal area north of Cape Timiris.
3295
     * Replaced by Mauritania 1999 (datum code 6702).
3296
     */
3297
    public const EPSG_JOUIK_1961 = 'urn:ogc:def:datum:EPSG::6679';
3298
3299
    /**
3300
     * KOC Construction Datum
3301
     * Type: Vertical
3302
     * Extent: Kuwait - onshore.
3303
     * Approximately 1.52m below MSL. Created for the construction of the Mina al Ahmadi refinery.
3304
     */
3305
    public const EPSG_KOC_CONSTRUCTION_DATUM = 'urn:ogc:def:datum:EPSG::5188';
3306
3307
    /**
3308
     * KOC Well Datum
3309
     * Type: Vertical
3310
     * Extent: Kuwait - onshore.
3311
     * Approximately 3.22m above MSL.
3312
     */
3313
    public const EPSG_KOC_WELL_DATUM = 'urn:ogc:def:datum:EPSG::5187';
3314
3315
    /**
3316
     * Kalianpur 1880
3317
     * Type: Geodetic
3318
     * Extent: Bangladesh - onshore; India - mainland onshore; Myanmar (Burma) - onshore; Pakistan - onshore.
3319
     * Fundamental point: Kalianpur. Latitude: 24°07'11.260"N, longitude: 77°39'17.570"E (of Greenwich).
3320
     * Includes 1916 extension into Burma (Myanmar). Replaced by 1937 adjustment.
3321
     */
3322
    public const EPSG_KALIANPUR_1880 = 'urn:ogc:def:datum:EPSG::6243';
3323
3324
    /**
3325
     * Kalianpur 1937
3326
     * Type: Geodetic
3327
     * Extent: Bangladesh - onshore; India - mainland onshore; Myanmar - onshore and Moattama area offshore; Pakistan -
3328
     * onshore.
3329
     * Fundamental point: Kalianpur. Latitude: 24° 07'11.260"N, longitude: 77°39'17.570"E (of Greenwich).
3330
     * Replaces 1880 adjustment except for topographic mapping. Replaced in Bangladesh and Pakistan by 1962 metrication
3331
     * conversion and in India by 1975 metrication conversion.
3332
     */
3333
    public const EPSG_KALIANPUR_1937 = 'urn:ogc:def:datum:EPSG::6144';
3334
3335
    /**
3336
     * Kalianpur 1962
3337
     * Type: Geodetic
3338
     * Extent: Pakistan - onshore and offshore.
3339
     * Fundamental point: Kalianpur. Latitude: 24° 07'11.260"N, longitude: 77°39'17.570"E (of Greenwich).
3340
     * 1937 adjustment rescaled by ratio metric conversions of Indian foot (1937) to Indian foot (1962).
3341
     */
3342
    public const EPSG_KALIANPUR_1962 = 'urn:ogc:def:datum:EPSG::6145';
3343
3344
    /**
3345
     * Kalianpur 1975
3346
     * Type: Geodetic
3347
     * Extent: India - mainland onshore.
3348
     * Fundamental point: Kalianpur. Latitude: 24° 07'11.260"N, longitude: 77°39'17.570"E (of Greenwich).
3349
     * 1937 adjustment rescaled by ratio metric conversions of Indian foot (1937) to Indian foot (1975).
3350
     */
3351
    public const EPSG_KALIANPUR_1975 = 'urn:ogc:def:datum:EPSG::6146';
3352
3353
    /**
3354
     * Kandawala
3355
     * Type: Geodetic
3356
     * Extent: Sri Lanka - onshore.
3357
     * Fundamental point: Kandawala. Latitude: 7°14'06.838"N, longitude: 79°52'36.670"E.
3358
     */
3359
    public const EPSG_KANDAWALA = 'urn:ogc:def:datum:EPSG::6244';
3360
3361
    /**
3362
     * Karbala 1979
3363
     * Type: Geodetic
3364
     * Extent: Iraq - onshore.
3365
     * Fundamental point: Karbala. Latitude: 32°34'14.4941"N, longitude: 44°00'49.6379"E.
3366
     * National geodetic network established by Polservice consortium.
3367
     */
3368
    public const EPSG_KARBALA_1979 = 'urn:ogc:def:datum:EPSG::6743';
3369
3370
    /**
3371
     * Kartastokoordinaattijarjestelma (1966)
3372
     * Type: Geodetic
3373
     * Extent: Finland - onshore.
3374
     * Adjustment with fundamental point SF31 based on ED50 transformed to best fit the older VVJ adjustment.
3375
     * Adopted in 1970.
3376
     */
3377
    public const EPSG_KARTASTOKOORDINAATTIJARJESTELMA_1966 = 'urn:ogc:def:datum:EPSG::6123';
3378
3379
    /**
3380
     * Kasai 1953
3381
     * Type: Geodetic
3382
     * Extent: The Democratic Republic of the Congo (Zaire) - Kasai - south of 5°S and east of 21°30'E.
3383
     * Two stations of the Katanga triangulation with ellipsoid change applied: Kabila, latitude 6°58'34.023"S,
3384
     * longitude 23°50'24.028"E (of Greenwich); and Gandajika NW base, latitude 6°45'01.057"S, longitude
3385
     * 23°57'03.038"E (of Greenwich).
3386
     * Replaced by IGC 1962 Arc of the 6th Parallel South.
3387
     */
3388
    public const EPSG_KASAI_1953 = 'urn:ogc:def:datum:EPSG::6696';
3389
3390
    /**
3391
     * Katanga 1955
3392
     * Type: Geodetic
3393
     * Extent: The Democratic Republic of the Congo (Zaire) - Katanga.
3394
     * Fundamental point: Tshinsenda A. Latitude: 12°30'31.568"S, longitude: 28°01'02.971"E (of Greenwich).
3395
     * Replaces earlier adjustments.
3396
     */
3397
    public const EPSG_KATANGA_1955 = 'urn:ogc:def:datum:EPSG::6695';
3398
3399
    /**
3400
     * Kertau (RSO)
3401
     * Type: Geodetic
3402
     * Extent: Malaysia - West Malaysia; Singapore.
3403
     * Adopts metric conversion of 0.914398 metres per yard exactly. This is a truncation of the Sears 1922 ratio.
3404
     */
3405
    public const EPSG_KERTAU_RSO = 'urn:ogc:def:datum:EPSG::6751';
3406
3407
    /**
3408
     * Kertau 1968
3409
     * Type: Geodetic
3410
     * Extent: Malaysia - West Malaysia onshore and offshore east coast; Singapore - onshore and offshore.
3411
     * Fundamental point: Kertau. Latitude: 3°27'50.710"N, longitude: 102°37'24.550"E (of Greenwich).
3412
     * Replaces MRT48 and earlier adjustments. Adopts metric conversion of 39.370113 inches per metre. Not used for
3413
     * 1969 metrication of RSO grid - see Kertau (RSO) (code 6751).
3414
     */
3415
    public const EPSG_KERTAU_1968 = 'urn:ogc:def:datum:EPSG::6245';
3416
3417
    /**
3418
     * Kingdom of Saudi Arabia Geodetic Reference Frame 2017
3419
     * Type: Geodetic
3420
     * Extent: Saudi Arabia - onshore and offshore.
3421
     * ITRF2014 at epoch 2017.00.
3422
     * Realized by 333 GNSS stations in Saudi Arabia aligned to ITRF2014 through core network of 46 stations adjusted
3423
     * to 15 IGS stations.
3424
     */
3425
    public const EPSG_KINGDOM_OF_SAUDI_ARABIA_GEODETIC_REFERENCE_FRAME_2017 = 'urn:ogc:def:datum:EPSG::1268';
3426
3427
    /**
3428
     * Kingdom of Saudi Arabia Vertical Reference Frame Jeddah 2014
3429
     * Type: Vertical
3430
     * Extent: Saudi Arabia - onshore.
3431
     * Jeddah tide gauge bench mark TGBM-B height of 1.7446m at 2014.75.
3432
     */
3433
    public const EPSG_KINGDOM_OF_SAUDI_ARABIA_VERTICAL_REFERENCE_FRAME_JEDDAH_2014 = 'urn:ogc:def:datum:EPSG::1269';
3434
3435
    /**
3436
     * Kiunga
3437
     * Type: Vertical
3438
     * Extent: Papua New Guinea - onshore south of 5°S and west of 144°E.
3439
     * PSM 9465 at Kiunga Airport. Propagated through bilinear interpolation of EGM2008 geoid model (transformation
3440
     * code 3858) reduced to PSM 9465 by offset of -3.0m.
3441
     */
3442
    public const EPSG_KIUNGA = 'urn:ogc:def:datum:EPSG::1151';
3443
3444
    /**
3445
     * Korean Datum 1985
3446
     * Type: Geodetic
3447
     * Extent: Republic of Korea (South Korea) - onshore.
3448
     * Fundamental point: Suwon. Latitude 37°16'31.9034"N, longitude 127°03'05.1451"E of Greenwich. This is
3449
     * consistent with the Tokyo 1918 datum latitude and longitude.
3450
     * Replaces Tokyo 1918 (datum code 6301). Replaced by Korea 2000 (datum code 6737).
3451
     */
3452
    public const EPSG_KOREAN_DATUM_1985 = 'urn:ogc:def:datum:EPSG::6162';
3453
3454
    /**
3455
     * Korean Datum 1995
3456
     * Type: Geodetic
3457
     * Extent: Republic of Korea (South Korea) - onshore.
3458
     */
3459
    public const EPSG_KOREAN_DATUM_1995 = 'urn:ogc:def:datum:EPSG::6166';
3460
3461
    /**
3462
     * Kosovo Reference System 2001
3463
     * Type: Geodetic
3464
     * Extent: Kosovo.
3465
     * Densification of ETRF97 in Kosovo at epoch 2001.25.
3466
     * First order network of 32 stations connected to 8 EUREF Permanant Network (EPN) stations observed march-April
3467
     * 2001. Densified in 2012.
3468
     */
3469
    public const EPSG_KOSOVO_REFERENCE_SYSTEM_2001 = 'urn:ogc:def:datum:EPSG::1251';
3470
3471
    /**
3472
     * Kousseri
3473
     * Type: Geodetic
3474
     * Extent: Cameroon - N'Djamena area.
3475
     * IGN astronomical station Dabanga; 11°55'05.9"N  14°38'40.8"E (of Greenwich).
3476
     */
3477
    public const EPSG_KOUSSERI = 'urn:ogc:def:datum:EPSG::6198';
3478
3479
    /**
3480
     * Kumul 34
3481
     * Type: Vertical
3482
     * Extent: Papua New Guinea - Papuan fold and thrust belt.
3483
     * Kumul Platform Station 34. Propagated through bilinear interpolation of EGM96 geoid model (transformation code
3484
     * 10084) reduced to Kumul 34 by offset of -0.87m.
3485
     */
3486
    public const EPSG_KUMUL_34 = 'urn:ogc:def:datum:EPSG::1150';
3487
3488
    /**
3489
     * Kusaie 1951
3490
     * Type: Geodetic
3491
     * Extent: Federated States of Micronesia - Kosrae (Kusaie).
3492
     */
3493
    public const EPSG_KUSAIE_1951 = 'urn:ogc:def:datum:EPSG::6735';
3494
3495
    /**
3496
     * Kuwait Oil Company
3497
     * Type: Geodetic
3498
     * Extent: Kuwait - onshore.
3499
     * Fundamental point: K28.  Latitude: 29°03'42.348"N, longitude: 48°08'42.558"E (of Greenwich).
3500
     */
3501
    public const EPSG_KUWAIT_OIL_COMPANY = 'urn:ogc:def:datum:EPSG::6246';
3502
3503
    /**
3504
     * Kuwait PWD
3505
     * Type: Vertical
3506
     * Extent: Kuwait - onshore.
3507
     * Mean Low Low Water (MLLW) at Kuwait City.
3508
     * Approximately 1.03m below MSL.
3509
     */
3510
    public const EPSG_KUWAIT_PWD = 'urn:ogc:def:datum:EPSG::5186';
3511
3512
    /**
3513
     * Kuwait Utility
3514
     * Type: Geodetic
3515
     * Extent: Kuwait - Kuwait City.
3516
     */
3517
    public const EPSG_KUWAIT_UTILITY = 'urn:ogc:def:datum:EPSG::6319';
3518
3519
    /**
3520
     * Kyrgyzstan Geodetic Datum 2006
3521
     * Type: Geodetic
3522
     * Extent: Kyrgyzstan.
3523
     * 6 stations of the Kyrgyzstan zero-order network tied to ITRF2005 at epoch 2006.70.
3524
     * The accuracy in the connection to ITRF2005 is estimated to be 5 mm in horizontal and 10-20 mm in height (95%
3525
     * confidence).
3526
     */
3527
    public const EPSG_KYRGYZSTAN_GEODETIC_DATUM_2006 = 'urn:ogc:def:datum:EPSG::1160';
3528
3529
    /**
3530
     * La Canoa
3531
     * Type: Geodetic
3532
     * Extent: Venezuela - onshore.
3533
     * Fundamental point: La Canoa. Latitude: 8°34'17.170"N, longitude: 63°51'34.880"W (of Greenwich).
3534
     * Origin and network incorporated within PSAD56 (datum code 6248).
3535
     */
3536
    public const EPSG_LA_CANOA = 'urn:ogc:def:datum:EPSG::6247';
3537
3538
    /**
3539
     * La Gomera
3540
     * Type: Vertical
3541
     * Extent: Spain - Canary Islands - La Gomera onshore.
3542
     * Mean Sea Level at San Sebastian de la Gomera harbour.
3543
     * Orthometric heights.
3544
     */
3545
    public const EPSG_LA_GOMERA = 'urn:ogc:def:datum:EPSG::1282';
3546
3547
    /**
3548
     * La Palma
3549
     * Type: Vertical
3550
     * Extent: Spain - Canary Islands - La Palma onshore.
3551
     * Mean Sea Level at Santa Cruz de la Palma harbour in 1997.
3552
     * Orthometric heights.
3553
     */
3554
    public const EPSG_LA_PALMA = 'urn:ogc:def:datum:EPSG::1283';
3555
3556
    /**
3557
     * Lagos 1955
3558
     * Type: Vertical
3559
     * Extent: Nigeria - onshore.
3560
     * Mean sea level at Lagos, 1912-1928.
3561
     */
3562
    public const EPSG_LAGOS_1955 = 'urn:ogc:def:datum:EPSG::5194';
3563
3564
    /**
3565
     * Lake
3566
     * Type: Geodetic
3567
     * Extent: Venezuela - Lake Maracaibo area, onshore and offshore in lake.
3568
     * Fundamental point: Maracaibo Cathedral. Latitude: 10°38'34.678"N, longitude: 71°36'20.224"W (of Greenwich).
3569
     */
3570
    public const EPSG_LAKE = 'urn:ogc:def:datum:EPSG::6249';
3571
3572
    /**
3573
     * Landeshohennetz 1995
3574
     * Type: Vertical
3575
     * Extent: Liechtenstein; Switzerland.
3576
     * Origin at Repere Pierre du Niton (RPN) defined as 373.6 metres above msl. This value derived from msl at
3577
     * Marseille in 1897 through the French Lallemand network.
3578
     * Orthometric heights. For scientific purposes only, replaces LN02.
3579
     */
3580
    public const EPSG_LANDESHOHENNETZ_1995 = 'urn:ogc:def:datum:EPSG::5128';
3581
3582
    /**
3583
     * Landesnivellement 1902
3584
     * Type: Vertical
3585
     * Extent: Liechtenstein; Switzerland.
3586
     * Origin at Repere Pierre du Niton (RPN) defined as 373.6 metres above msl. This value derived from msl at
3587
     * Marseille in 1897 through the French Lallemand network.
3588
     * Levelling observations not corrected for gravity field. For scientific purposes, replaced by LHHN95.
3589
     */
3590
    public const EPSG_LANDESNIVELLEMENT_1902 = 'urn:ogc:def:datum:EPSG::5127';
3591
3592
    /**
3593
     * Landshaedarkerfi Islands 2004
3594
     * Type: Vertical
3595
     * Extent: Iceland - onshore.
3596
     * Adjustment is referenced to mean sea level at Reykjavík epoch 2004.6.
3597
     */
3598
    public const EPSG_LANDSHAEDARKERFI_ISLANDS_2004 = 'urn:ogc:def:datum:EPSG::1190';
3599
3600
    /**
3601
     * Lanzarote
3602
     * Type: Vertical
3603
     * Extent: Spain - Canary Islands - Lanzarote onshore.
3604
     * Mean Sea Level at Naos harbour, Arrecife, between 1994 and 1995.
3605
     * Orthometric heights.
3606
     */
3607
    public const EPSG_LANZAROTE = 'urn:ogc:def:datum:EPSG::1278';
3608
3609
    /**
3610
     * Lao 1993
3611
     * Type: Geodetic
3612
     * Extent: Laos.
3613
     * Fundamental point: Lao 1982 coordinates of Pakxa pillar. Latitude: 18°23'57.0056"N, longitude:
3614
     * 103°38'41.8020"E (of Greenwich). Orientation parallel with WGS 84.
3615
     * Replaces Vientiane 1982. Replaced by Lao 1997.
3616
     */
3617
    public const EPSG_LAO_1993 = 'urn:ogc:def:datum:EPSG::6677';
3618
3619
    /**
3620
     * Lao National Datum 1997
3621
     * Type: Geodetic
3622
     * Extent: Laos.
3623
     * Fundamental point: Vientiane (Nongteng) Astro Pillar. Latitude: 18°01'31.3480"N, longitude: 102°30'57.1376"E
3624
     * (of Greenwich).
3625
     * Replaces Lao 1993.
3626
     */
3627
    public const EPSG_LAO_NATIONAL_DATUM_1997 = 'urn:ogc:def:datum:EPSG::6678';
3628
3629
    /**
3630
     * Latvia 1992
3631
     * Type: Geodetic
3632
     * Extent: Latvia - onshore and offshore.
3633
     * Constrained to 4 ETRS89 points in Latvia from the EUREF Baltic 1992 campaign.
3634
     * Densification of ETRS89 during the 1992 Baltic campaign.
3635
     */
3636
    public const EPSG_LATVIA_1992 = 'urn:ogc:def:datum:EPSG::6661';
3637
3638
    /**
3639
     * Latvian Height System 2000
3640
     * Type: Vertical
3641
     * Extent: Latvia - onshore.
3642
     * Latvian realisation of EVRF2007. Observed from 2000-2010 and reduced to epoch 2000.5 using empirical land uplift
3643
     * model of Latvia. EVRF2007 heights of 16 points around Latvia held fixed.
3644
     * Uses Normal heights.
3645
     */
3646
    public const EPSG_LATVIAN_HEIGHT_SYSTEM_2000 = 'urn:ogc:def:datum:EPSG::1162';
3647
3648
    /**
3649
     * Le Pouce 1934
3650
     * Type: Geodetic
3651
     * Extent: Mauritius - mainland onshore.
3652
     * Fundamental point: Le Pouce. Latitude: 20°11'42.25"S, longitude: 57°31'18.58"E (of Greenwich).
3653
     */
3654
    public const EPSG_LE_POUCE_1934 = 'urn:ogc:def:datum:EPSG::6699';
3655
3656
    /**
3657
     * Leigon
3658
     * Type: Geodetic
3659
     * Extent: Ghana - onshore and offshore.
3660
     * Fundamental point: GCS Station 121, Leigon. Latitude: 5°38'52.27"N, longitude: 0°11'46.08"W (of Greenwich).
3661
     * Replaced Accra datum (code 6168) from 1978. Coordinates at Leigon fundamental point defined as Accra datum
3662
     * values for that point.
3663
     */
3664
    public const EPSG_LEIGON = 'urn:ogc:def:datum:EPSG::6250';
3665
3666
    /**
3667
     * Lerwick
3668
     * Type: Vertical
3669
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Shetland Islands onshore.
3670
     * Mean Sea Level at Lerwick 1979 correlated to pre-1900. Initially realised through levelling network adjustment,
3671
     * from 2002 redefined to be realised through OSGM geoid model.
3672
     * Orthometric heights.
3673
     */
3674
    public const EPSG_LERWICK = 'urn:ogc:def:datum:EPSG::5140';
3675
3676
    /**
3677
     * Liberia 1964
3678
     * Type: Geodetic
3679
     * Extent: Liberia - onshore.
3680
     * Fundamental point: Robertsfield. Latitude: 6°13'53.02"N, longitude: 10°21'35.44"W (of Greenwich).
3681
     */
3682
    public const EPSG_LIBERIA_1964 = 'urn:ogc:def:datum:EPSG::6251';
3683
3684
    /**
3685
     * Libyan Geodetic Datum 2006
3686
     * Type: Geodetic
3687
     * Extent: Libya - onshore and offshore.
3688
     * 5 stations tied to ITRF2000 through 8 days of continuous observations in May 2006.
3689
     * Replaces ELD79.
3690
     */
3691
    public const EPSG_LIBYAN_GEODETIC_DATUM_2006 = 'urn:ogc:def:datum:EPSG::6754';
3692
3693
    /**
3694
     * Lisbon 1890
3695
     * Type: Geodetic
3696
     * Extent: Portugal - mainland - onshore.
3697
     * Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42'43.631"N, longitude: 9°07'54.862"W of Greenwich.
3698
     * Replaced by Lisbon 1937 adjustment (which uses International 1924 ellipsoid).
3699
     */
3700
    public const EPSG_LISBON_1890 = 'urn:ogc:def:datum:EPSG::6666';
3701
3702
    /**
3703
     * Lisbon 1890 (Lisbon)
3704
     * Type: Geodetic
3705
     * Extent: Portugal - mainland - onshore.
3706
     * Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42'43.631"N, longitude: 0°E (of Lisbon).
3707
     * Replaced by Lisbon 1937 adjustment (which uses International 1924 ellipsoid).
3708
     */
3709
    public const EPSG_LISBON_1890_LISBON = 'urn:ogc:def:datum:EPSG::6904';
3710
3711
    /**
3712
     * Lisbon 1937
3713
     * Type: Geodetic
3714
     * Extent: Portugal - mainland - onshore.
3715
     * Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42'43.631"N, longitude: 9°07'54.862"W (of
3716
     * Greenwich).
3717
     * Replaces Lisbon 1890 adjustment (which used Bessel 1841 ellipsoid).
3718
     */
3719
    public const EPSG_LISBON_1937 = 'urn:ogc:def:datum:EPSG::6207';
3720
3721
    /**
3722
     * Lisbon 1937 (Lisbon)
3723
     * Type: Geodetic
3724
     * Extent: Portugal - mainland - onshore.
3725
     * Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42'43.631"N, longitude: 0°E (of Lisbon).
3726
     * Replaces Lisbon 1890 adjustment (which used Bessel 1841 ellipsoid).
3727
     */
3728
    public const EPSG_LISBON_1937_LISBON = 'urn:ogc:def:datum:EPSG::6803';
3729
3730
    /**
3731
     * Lithuania 1994 (ETRS89)
3732
     * Type: Geodetic
3733
     * Extent: Lithuania - onshore and offshore.
3734
     * Constrained to 4 ETRS89 points in Lithuania from the EUREF Baltic 1992 campaign.
3735
     * Densification of ETRS89 during the 1992 Baltic campaign.
3736
     */
3737
    public const EPSG_LITHUANIA_1994_ETRS89 = 'urn:ogc:def:datum:EPSG::6126';
3738
3739
    /**
3740
     * Lithuanian Height System 2007
3741
     * Type: Vertical
3742
     * Extent: Lithuania - onshore.
3743
     * Lithuanian realisation of EVRF2007. EVRF2007 heights of 10 points in Lithuania held fixed.
3744
     * Uses Normal heights.
3745
     */
3746
    public const EPSG_LITHUANIAN_HEIGHT_SYSTEM_2007 = 'urn:ogc:def:datum:EPSG::1299';
3747
3748
    /**
3749
     * Little Cayman Vertical Datum 1961
3750
     * Type: Vertical
3751
     * Extent: Cayman Islands - Little Cayman.
3752
     */
3753
    public const EPSG_LITTLE_CAYMAN_VERTICAL_DATUM_1961 = 'urn:ogc:def:datum:EPSG::1098';
3754
3755
    /**
3756
     * Local Tidal Datum at Pago Pago 2020
3757
     * Type: Vertical
3758
     * Extent: American Samoa - Tutuila island.
3759
     * MSL at Pago Pago 2011–2016.
3760
     * Normal-orthometric heights. Replaces ASVD02 (datum code 1125) in March 2020 after the ASVD02 benchmarks were
3761
     * destroyed by earthquake activity.
3762
     */
3763
    public const EPSG_LOCAL_TIDAL_DATUM_AT_PAGO_PAGO_2020 = 'urn:ogc:def:datum:EPSG::1302';
3764
3765
    /**
3766
     * Locodjo 1965
3767
     * Type: Geodetic
3768
     * Extent: Côte d'Ivoire (Ivory Coast) - onshore and offshore.
3769
     * Fundamental point: T5 Banco. Latitude: 5°18'50.5"N, longitude: 4°02'05.1"W (of Greenwich).
3770
     */
3771
    public const EPSG_LOCODJO_1965 = 'urn:ogc:def:datum:EPSG::6142';
3772
3773
    /**
3774
     * Loma Quintana
3775
     * Type: Geodetic
3776
     * Extent: Venezuela - onshore north of approximately 7°45'N.
3777
     * Fundamental point: Loma Quintana.
3778
     * Replaced by La Canoa (code 6247).
3779
     */
3780
    public const EPSG_LOMA_QUINTANA = 'urn:ogc:def:datum:EPSG::6288';
3781
3782
    /**
3783
     * Lome
3784
     * Type: Geodetic
3785
     * Extent: Togo - onshore and offshore.
3786
     */
3787
    public const EPSG_LOME = 'urn:ogc:def:datum:EPSG::6252';
3788
3789
    /**
3790
     * Low Water
3791
     * Type: Vertical
3792
     * Extent: World.
3793
     * Not specific to any location or epoch.
3794
     * The lowest level reached by the water surface in one tidal cycle. When used in inland (non-tidal) waters it is
3795
     * generally defined as a level which the daily mean water level would fall below less than 5% of the time. On a
3796
     * river it is a sloping surface.
3797
     */
3798
    public const EPSG_LOW_WATER = 'urn:ogc:def:datum:EPSG::1093';
3799
3800
    /**
3801
     * Lower Low Water Large Tide
3802
     * Type: Vertical
3803
     * Extent: World.
3804
     * Not specific to any location or epoch.
3805
     * The average of the lowest low waters, one from each of 19 years of observations.
3806
     */
3807
    public const EPSG_LOWER_LOW_WATER_LARGE_TIDE = 'urn:ogc:def:datum:EPSG::1083';
3808
3809
    /**
3810
     * Lowest Astronomical Tide
3811
     * Type: Vertical
3812
     * Extent: World.
3813
     * Not specific to any location or epoch.
3814
     * The lowest tide level which can be predicted to occur under average meteorological conditions and under any
3815
     * combination of astronomical conditions.
3816
     */
3817
    public const EPSG_LOWEST_ASTRONOMICAL_TIDE = 'urn:ogc:def:datum:EPSG::1080';
3818
3819
    /**
3820
     * Lowest Astronomical Tide Netherlands
3821
     * Type: Vertical
3822
     * Extent: Netherlands - offshore North Sea.
3823
     * Surface defined through the nllat hydroid model applied to ETRS89.
3824
     * The lowest tide level which can be predicted to occur under average meteorological conditions and under any
3825
     * combination of astronomical conditions.
3826
     */
3827
    public const EPSG_LOWEST_ASTRONOMICAL_TIDE_NETHERLANDS = 'urn:ogc:def:datum:EPSG::1290';
3828
3829
    /**
3830
     * Luxembourg Reference Frame
3831
     * Type: Geodetic
3832
     * Extent: Luxembourg.
3833
     * Fundamental point of 1930 triangulation: northern station of Habay-la-Neuve baseline in Belgium. Latitude:
3834
     * 49°43'24.408"N, longitude: 5°38'22.470"E (of Greenwich). Since 2006 LUREF has been realized by GNSS station
3835
     * positions and transformation from ETRF.
3836
     * The transformation from ETRF 2000 first defining LUREF in 2006 has been recomputed in 2014 and 2020.
3837
     */
3838
    public const EPSG_LUXEMBOURG_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::6181';
3839
3840
    /**
3841
     * Luzon 1911
3842
     * Type: Geodetic
3843
     * Extent: Philippines - onshore.
3844
     * Fundamental point: Balacan. Latitude: 13°33'41.000"N, longitude: 121°52'03.000"E (of Greenwich).
3845
     * Replaced by Philippine Reference system of 1992 (datum code 6683).
3846
     */
3847
    public const EPSG_LUZON_1911 = 'urn:ogc:def:datum:EPSG::6253';
3848
3849
    /**
3850
     * Lyon Turin Ferroviaire 2004
3851
     * Type: Geodetic
3852
     * Extent: France and Italy - on or related to the rail route from Lyon to Turin.
3853
     * Densification of ETRS89 realised through network of 40 stations adjusted to 7 EUREF reference stations in
3854
     * [email protected].
3855
     */
3856
    public const EPSG_LYON_TURIN_FERROVIAIRE_2004 = 'urn:ogc:def:datum:EPSG::1295';
3857
3858
    /**
3859
     * Lyttelton 1937
3860
     * Type: Vertical
3861
     * Extent: New Zealand - South Island - between approximately 41°20'S and 45°S - Lyttleton vertical CRS area.
3862
     * MSL at Lyttelton harbour over 9 years between 1918 and 1933.
3863
     */
3864
    public const EPSG_LYTTELTON_1937 = 'urn:ogc:def:datum:EPSG::5161';
3865
3866
    /**
3867
     * M'poraloko
3868
     * Type: Geodetic
3869
     * Extent: Gabon - onshore and offshore.
3870
     */
3871
    public const EPSG_MPORALOKO = 'urn:ogc:def:datum:EPSG::6266';
3872
3873
    /**
3874
     * MGI 1901
3875
     * Type: Geodetic
3876
     * Extent: Bosnia and Herzegovina; Croatia - onshore; Kosovo; Montenegro - onshore; North Macedonia; Serbia;
3877
     * Slovenia - onshore.
3878
     * Fundamental point: Hermannskogel. Latitude: 48°16'15.29"N, longitude: 16°17'55.04"E (of Greenwich).
3879
     * The longitude of the datum origin equates to the Albrecht 1902 value for the Ferro meridian of 17°39'46.02"
3880
     * west of Greenwich. Densified in 1948.
3881
     */
3882
    public const EPSG_MGI_1901 = 'urn:ogc:def:datum:EPSG::1031';
3883
3884
    /**
3885
     * MML07 Intermediate Reference Frame
3886
     * Type: Geodetic
3887
     * Extent: United Kingdom (UK) - on or related to the Midland Mainline rail route from Sheffield to London.
3888
     * Defined through the application of the MML07 NTv2 transformation (code 9369) to ETRS89 as realized through OSNet
3889
     * v2009 CORS.
3890
     * Created in 2020 to support intermediate CRS "MML07-IRF" in the emulation of the MML07 Snake map projection.
3891
     */
3892
    public const EPSG_MML07_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1271';
3893
3894
    /**
3895
     * MOLDOR11 Intermediate Reference Frame
3896
     * Type: Geodetic
3897
     * Extent: United Kingdom (UK) - on or related to the rail route from Manchester via Ordsall Lane and the Hope
3898
     * Valley to Dore Junction.
3899
     * Defined through the application of the MOLDOR11 NTv2 transformation (code 9878) to ETRS89 as realized through
3900
     * OSNet v2009 CORS.
3901
     * Created in 2021 to support intermediate CRS "MOLDOR11-IRF" in the emulation of the MOLDOR11 Snake map
3902
     * projection.
3903
     */
3904
    public const EPSG_MOLDOR11_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1315';
3905
3906
    /**
3907
     * MOLDREF99
3908
     * Type: Geodetic
3909
     * Extent: Moldova.
3910
     * Densification of ETRS89.
3911
     */
3912
    public const EPSG_MOLDREF99 = 'urn:ogc:def:datum:EPSG::1032';
3913
3914
    /**
3915
     * MOMRA Terrestrial Reference Frame 2000
3916
     * Type: Geodetic
3917
     * Extent: Saudi Arabia - onshore and offshore.
3918
     * ITRF2000 at epoch 2004.00.
3919
     * 13 CORS Fiducial Stations linked to 7 IGS stations by 10-day long GPS survey.
3920
     */
3921
    public const EPSG_MOMRA_TERRESTRIAL_REFERENCE_FRAME_2000 = 'urn:ogc:def:datum:EPSG::1218';
3922
3923
    /**
3924
     * MOMRA Vertical Geodetic Control
3925
     * Type: Vertical
3926
     * Extent: Saudi Arabia - onshore.
3927
     * Mean sea level Jeddah 1969.
3928
     */
3929
    public const EPSG_MOMRA_VERTICAL_GEODETIC_CONTROL = 'urn:ogc:def:datum:EPSG::1219';
3930
3931
    /**
3932
     * MOP78
3933
     * Type: Geodetic
3934
     * Extent: Wallis and Futuna - Wallis.
3935
     */
3936
    public const EPSG_MOP78 = 'urn:ogc:def:datum:EPSG::6639';
3937
3938
    /**
3939
     * MRH21 Intermediate Reference Frame
3940
     * Type: Geodetic
3941
     * Extent: United Kingdom (UK) - on or related to Midland Rail Hub, covering routes through Cardiff, Bristol,
3942
     * Gloucester, Derby, Birmingham, Leicester, and Lincoln.
3943
     * Defined through the application of the MRH21 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS.
3944
     * Created in 2021 to support intermediate CRS "MRH21-IRF" in the emulation of the MRH21 Snake map projection.
3945
     */
3946
    public const EPSG_MRH21_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1314';
3947
3948
    /**
3949
     * MWC18 Intermediate Reference Frame
3950
     * Type: Geodetic
3951
     * Extent: United Kingdom (UK) - on or related to the rail route from Manchester via Wigan and Liverpool to
3952
     * Chester.
3953
     * Defined through the application of the MWC18 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS.
3954
     * Created in 2022 to support intermediate CRS "MWC18" in the emulation of the MWC18 Snake map projection.
3955
     */
3956
    public const EPSG_MWC18_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1324';
3957
3958
    /**
3959
     * Macao 1920
3960
     * Type: Geodetic
3961
     * Extent: China - Macao - onshore and offshore.
3962
     * Fundamental point: Avenida Conselheiro Borja base A, later transferred to Monte da Barra, latitude
3963
     * 22°11'03.139"N, longitude 113°31'43.625"E (of Greenwich).
3964
     * Replaces Macao 1907. In 1955 an adjustment made in 1940 was assessed to have unresolvable conflicts and the 1920
3965
     * adjustment was reinstated.
3966
     */
3967
    public const EPSG_MACAO_1920 = 'urn:ogc:def:datum:EPSG::1207';
3968
3969
    /**
3970
     * Macao Geodetic Datum 2008
3971
     * Type: Geodetic
3972
     * Extent: China - Macao - onshore and offshore.
3973
     * ITRF2005 at epoch 2008.38.
3974
     * Locally sometimes referred to as ITRF2005, this is not strictly correct as it applies only at epoch 2008.38 and
3975
     * ignores subsequent tectonic plate motion.
3976
     */
3977
    public const EPSG_MACAO_GEODETIC_DATUM_2008 = 'urn:ogc:def:datum:EPSG::1208';
3978
3979
    /**
3980
     * Macao Height Datum
3981
     * Type: Vertical
3982
     * Extent: China - Macao - onshore and offshore.
3983
     * Mean sea level Ma Kau Seak 1925-1964.
3984
     */
3985
    public const EPSG_MACAO_HEIGHT_DATUM = 'urn:ogc:def:datum:EPSG::1210';
3986
3987
    /**
3988
     * Madrid 1870 (Madrid)
3989
     * Type: Geodetic
3990
     * Extent: Spain - mainland onshore.
3991
     * Fundamental point: Retiro observatory, Madrid.
3992
     * Replaced by ED50.
3993
     */
3994
    public const EPSG_MADRID_1870_MADRID = 'urn:ogc:def:datum:EPSG::6903';
3995
3996
    /**
3997
     * Madzansua
3998
     * Type: Geodetic
3999
     * Extent: Mozambique - west - Tete province.
4000
     * Fundamental point: Madzansua.
4001
     * Replaced by transformation to Tete datum (datum code 6127).
4002
     */
4003
    public const EPSG_MADZANSUA = 'urn:ogc:def:datum:EPSG::6128';
4004
4005
    /**
4006
     * Mahe 1971
4007
     * Type: Geodetic
4008
     * Extent: Seychelles - Mahe Island.
4009
     * Fundamental point: Station SITE. Latitude: 4°40'14.644"S, longitude: 55°28'44.488"E (of Greenwich).
4010
     * South East Island 1943 (datum code 1138) used for topographic mapping, cadastral and hydrographic survey.
4011
     */
4012
    public const EPSG_MAHE_1971 = 'urn:ogc:def:datum:EPSG::6256';
4013
4014
    /**
4015
     * Makassar
4016
     * Type: Geodetic
4017
     * Extent: Indonesia - south west Sulawesi.
4018
     * Fundamental point: station P1, Moncongloe. Latitude: 5°08'41.42"S, long 119°24'14.94"E (of Greenwich).
4019
     */
4020
    public const EPSG_MAKASSAR = 'urn:ogc:def:datum:EPSG::6257';
4021
4022
    /**
4023
     * Makassar (Jakarta)
4024
     * Type: Geodetic
4025
     * Extent: Indonesia - south west Sulawesi.
4026
     * Fundamental point: station P1, Moncongloe. Latitude 5°08'41.42"S, longitude 12°35'47.15"E (of Jakarta).
4027
     */
4028
    public const EPSG_MAKASSAR_JAKARTA = 'urn:ogc:def:datum:EPSG::6804';
4029
4030
    /**
4031
     * Malin Head
4032
     * Type: Vertical
4033
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
4034
     * Mean sea level between January 1960 and December 1969. Initially realised through levelling network adjustment,
4035
     * from 2002 redefined to be realised through OSGM geoid model.
4036
     * Orthometric heights.
4037
     */
4038
    public const EPSG_MALIN_HEAD = 'urn:ogc:def:datum:EPSG::5130';
4039
4040
    /**
4041
     * Mallorca
4042
     * Type: Vertical
4043
     * Extent: Spain - Balearic Islands - Mallorca onshore.
4044
     * Mean Sea Level at Palma de Mallorca harbour between April 1997 and December 2006.
4045
     * Orthometric heights.
4046
     */
4047
    public const EPSG_MALLORCA = 'urn:ogc:def:datum:EPSG::1275';
4048
4049
    /**
4050
     * Malongo 1987
4051
     * Type: Geodetic
4052
     * Extent: Angola (Cabinda) - offshore; The Democratic Republic of the Congo (Zaire) - offshore.
4053
     * Fundamental point: Station Y at Malongo base camp. Latitude: 5°23'30.810"S, longitude: 12°12'01.590"E (of
4054
     * Greenwich).
4055
     * Replaced Mhast (offshore) (code 6705) in 1987. Origin coordinates constrained to those of Mhast (offshore) but
4056
     * other station coordinates differ. References to "Mhast" since 1987 often should have stated "Malongo 1987".
4057
     */
4058
    public const EPSG_MALONGO_1987 = 'urn:ogc:def:datum:EPSG::6259';
4059
4060
    /**
4061
     * Manoca 1962
4062
     * Type: Geodetic
4063
     * Extent: Cameroon - coastal area.
4064
     * Reservoir centre at the  Manoca tower ("tube Suel"), 3°51'49.896"N, 9°36'49.347"E (of Greenwich).
4065
     * The intent of the Bukavu 1953 conference was to adopt the Clarke 1880 (RGS) ellipsoid (code 7012) but in
4066
     * practice this datum has used the IGN version. Replaces Douala 1948 (code 6192).
4067
     */
4068
    public const EPSG_MANOCA_1962 = 'urn:ogc:def:datum:EPSG::6193';
4069
4070
    /**
4071
     * Maputo
4072
     * Type: Vertical
4073
     * Extent: Mozambique - onshore.
4074
     * Mean sea level at Maputo.
4075
     */
4076
    public const EPSG_MAPUTO = 'urn:ogc:def:datum:EPSG::5121';
4077
4078
    /**
4079
     * Marco Geocentrico Nacional de Referencia
4080
     * Type: Geodetic
4081
     * Extent: Colombia - onshore and offshore. Includes San Andres y Providencia, Malpelo Islands, Roncador Bank,
4082
     * Serrana Bank and Serranilla Bank.
4083
     * Densification of SIRGAS95 (ITRF94 at epoch 1995.4) in Colombia. Bogota observatory coordinates: Latitude:
4084
     * 4°35'46.3215"N, longitude: 74°04'39.0285"W (of Greenwich).
4085
     * Densification of SIRGAS 1995 within Colombia. Replaces Bogota 1975 (datum code 6218).
4086
     */
4087
    public const EPSG_MARCO_GEOCENTRICO_NACIONAL_DE_REFERENCIA = 'urn:ogc:def:datum:EPSG::6686';
4088
4089
    /**
4090
     * Marco Geodesico Nacional de Bolivia
4091
     * Type: Geodetic
4092
     * Extent: Bolivia.
4093
     * IGS05 (ITRF2005) at epoch 2010.2.  Densification of SIRGAS95 network in Bolivia, consisting of 125 passive
4094
     * geodetic stations and 8 continuous recording GPS stations.
4095
     * Densification of SIRGAS 1995 within Bolivia. Replaces PSAD56 (datum code 6248) in Bolivia.
4096
     */
4097
    public const EPSG_MARCO_GEODESICO_NACIONAL_DE_BOLIVIA = 'urn:ogc:def:datum:EPSG::1063';
4098
4099
    /**
4100
     * Marcus Island 1952
4101
     * Type: Geodetic
4102
     * Extent: Japan - onshore - Tokyo-to south of 28°N and east of 143°E - Minamitori-shima (Marcus Island).
4103
     * Marcus Island Astronomic Station.
4104
     */
4105
    public const EPSG_MARCUS_ISLAND_1952 = 'urn:ogc:def:datum:EPSG::6711';
4106
4107
    /**
4108
     * Marshall Islands 1960
4109
     * Type: Geodetic
4110
     * Extent: Marshall Islands - onshore. Wake atoll onshore.
4111
     */
4112
    public const EPSG_MARSHALL_ISLANDS_1960 = 'urn:ogc:def:datum:EPSG::6732';
4113
4114
    /**
4115
     * Martinique 1938
4116
     * Type: Geodetic
4117
     * Extent: Martinique - onshore.
4118
     * Fundamental point: Fort Desaix. Latitude: 14°36'54.090"N, longitude: 61°04'04.030"W (of Greenwich).
4119
     * Replaced by RRAF 1991 (datum code 1047).
4120
     */
4121
    public const EPSG_MARTINIQUE_1938 = 'urn:ogc:def:datum:EPSG::6625';
4122
4123
    /**
4124
     * Martinique 1955
4125
     * Type: Vertical
4126
     * Extent: Martinique - onshore.
4127
     * Mean sea level at Fort de France 1939. Marker DO-4-II on quay wall with elevation of 1.38m above msl.
4128
     * Orthometric heights. Replaced by Martinique 1987 (datum code 5154).
4129
     */
4130
    public const EPSG_MARTINIQUE_1955 = 'urn:ogc:def:datum:EPSG::5192';
4131
4132
    /**
4133
     * Martinique 1987
4134
     * Type: Vertical
4135
     * Extent: Martinique - onshore.
4136
     * Mean sea level 1939 at Fort de France. Origin = marker Nbc2 on rebuilt quay wall with defined elevation of 1.38m
4137
     * above msl. Martinique 1987 height 0.00m is 0.56m above SHOM sounding datum.
4138
     * Orthometric heights. Replaces Martinique 1955 (datum code 5192).
4139
     */
4140
    public const EPSG_MARTINIQUE_1987 = 'urn:ogc:def:datum:EPSG::5154';
4141
4142
    /**
4143
     * Massawa
4144
     * Type: Geodetic
4145
     * Extent: Eritrea - onshore and offshore.
4146
     */
4147
    public const EPSG_MASSAWA = 'urn:ogc:def:datum:EPSG::6262';
4148
4149
    /**
4150
     * Maupiti 83
4151
     * Type: Geodetic
4152
     * Extent: French Polynesia - Society Islands - Maupiti.
4153
     * Fundamental point: Pitiahe South Base. Latitude: 16°28'28.942"S, longitude: 152°14'55.059"W (of Greenwich).
4154
     * Replaced by RGPF (datum code 6687).
4155
     */
4156
    public const EPSG_MAUPITI_83 = 'urn:ogc:def:datum:EPSG::6692';
4157
4158
    /**
4159
     * Maupiti SAU 2001
4160
     * Type: Vertical
4161
     * Extent: French Polynesia - Society Islands - Maupiti.
4162
     * Fundamental benchmark: RN11
4163
     * Included as part of NGPF - see datum code 5195.
4164
     */
4165
    public const EPSG_MAUPITI_SAU_2001 = 'urn:ogc:def:datum:EPSG::5199';
4166
4167
    /**
4168
     * Mauritania 1999
4169
     * Type: Geodetic
4170
     * Extent: Mauritania - onshore and offshore.
4171
     * ITRF96 at epoch 1997.0
4172
     * A network of 36 GPS stations tied to ITRF96, 8 of which are IGN 1962 astronomic points.
4173
     */
4174
    public const EPSG_MAURITANIA_1999 = 'urn:ogc:def:datum:EPSG::6702';
4175
4176
    /**
4177
     * Mayotte 1950
4178
     * Type: Vertical
4179
     * Extent: Mayotte - onshore.
4180
     * IGN 1950 marker (height 0.0m) on southwest jetty at Dzaoudzi (Petite-Terre) is 2.18m above zero of tide gauge.
4181
     * SHOM 1953 marker on east (Issoufali) jetty at Dzaoudzi (height 4.74m) is the base for Mayotte heights.
4182
     * Datum transferred to benchmark RN0 with height of 2.774m above tide gauge on eastern jetty at Mamoudzou
4183
     * (Grand-Terre) in 1979.
4184
     */
4185
    public const EPSG_MAYOTTE_1950 = 'urn:ogc:def:datum:EPSG::5191';
4186
4187
    /**
4188
     * Mean High Water
4189
     * Type: Vertical
4190
     * Extent: World.
4191
     * Not specific to any location or epoch.
4192
     * The average height of the high waters over a 19-year period.
4193
     */
4194
    public const EPSG_MEAN_HIGH_WATER = 'urn:ogc:def:datum:EPSG::1092';
4195
4196
    /**
4197
     * Mean High Water Spring Tides
4198
     * Type: Vertical
4199
     * Extent: World.
4200
     * Not specific to any location or epoch.
4201
     * The average height of the high waters of spring tides.
4202
     */
4203
    public const EPSG_MEAN_HIGH_WATER_SPRING_TIDES = 'urn:ogc:def:datum:EPSG::1088';
4204
4205
    /**
4206
     * Mean Higher High Water
4207
     * Type: Vertical
4208
     * Extent: World.
4209
     * Not specific to any location or epoch.
4210
     * The average height of the higher high waters over a 19-year period.
4211
     */
4212
    public const EPSG_MEAN_HIGHER_HIGH_WATER = 'urn:ogc:def:datum:EPSG::1090';
4213
4214
    /**
4215
     * Mean Low Water
4216
     * Type: Vertical
4217
     * Extent: World.
4218
     * Not specific to any location or epoch.
4219
     * The average height of all low waters over a 19-year period.
4220
     */
4221
    public const EPSG_MEAN_LOW_WATER = 'urn:ogc:def:datum:EPSG::1091';
4222
4223
    /**
4224
     * Mean Low Water Spring Tides
4225
     * Type: Vertical
4226
     * Extent: World.
4227
     * Not specific to any location or epoch.
4228
     * The average height of the low waters of spring tides.
4229
     */
4230
    public const EPSG_MEAN_LOW_WATER_SPRING_TIDES = 'urn:ogc:def:datum:EPSG::1087';
4231
4232
    /**
4233
     * Mean Lower Low Water
4234
     * Type: Vertical
4235
     * Extent: World.
4236
     * Not specific to any location or epoch.
4237
     * The average height of the lower low waters over a 19-year period.
4238
     */
4239
    public const EPSG_MEAN_LOWER_LOW_WATER = 'urn:ogc:def:datum:EPSG::1089';
4240
4241
    /**
4242
     * Mean Lower Low Water Spring Tides
4243
     * Type: Vertical
4244
     * Extent: World.
4245
     * Not specific to any location or epoch.
4246
     * The average height of the lower low water spring tides.
4247
     */
4248
    public const EPSG_MEAN_LOWER_LOW_WATER_SPRING_TIDES = 'urn:ogc:def:datum:EPSG::1086';
4249
4250
    /**
4251
     * Mean Sea Level
4252
     * Type: Vertical
4253
     * Extent: World.
4254
     * Not specific to any location or epoch.
4255
     * The average height of the surface of the sea at a tide station for all stages of the tide over a 19-year period,
4256
     * usually determined from hourly height readings measured from a fixed predetermined reference level. Approximates
4257
     * geoid.
4258
     */
4259
    public const EPSG_MEAN_SEA_LEVEL = 'urn:ogc:def:datum:EPSG::5100';
4260
4261
    /**
4262
     * Mean Sea Level Netherlands
4263
     * Type: Vertical
4264
     * Extent: Netherlands - offshore North Sea.
4265
     * Surface defined through the nlgeo geoid model applied to ETRS89.
4266
     * Coincides with NAP datum plane. Approximates physical mean sea surface to a few decimetres.
4267
     */
4268
    public const EPSG_MEAN_SEA_LEVEL_NETHERLANDS = 'urn:ogc:def:datum:EPSG::1270';
4269
4270
    /**
4271
     * Mean Sea Level UK & Ireland VORF08
4272
     * Type: Vertical
4273
     * Extent: Ireland and United Kingdom (UK) (including Isle of Man and Channel Islands) - inshore, nearshore and
4274
     * offshore.
4275
     * MSL UK & Ireland VORF08 is defined by the Vertical Offshore Reference Frame v2.11 2008. MSL UK & Ireland VORF08
4276
     * is reduced to epoch 2000.0.
4277
     * OSGM05 model used.
4278
     */
4279
    public const EPSG_MEAN_SEA_LEVEL_UK_AND_IRELAND_VORF08 = 'urn:ogc:def:datum:EPSG::1330';
4280
4281
    /**
4282
     * Menorca
4283
     * Type: Vertical
4284
     * Extent: Spain - Balearic Islands - Menorca onshore.
4285
     * Mean Sea Level at Ciutadella harbour between June 2007 and June 2008.
4286
     * Orthometric heights.
4287
     */
4288
    public const EPSG_MENORCA = 'urn:ogc:def:datum:EPSG::1276';
4289
4290
    /**
4291
     * Merchich
4292
     * Type: Geodetic
4293
     * Extent: Africa - Morocco and Western Sahara - onshore.
4294
     * Fundamental point: Merchich. Latitude: 33°26'59.672"N, longitude: 7°33'27.295"W (of Greenwich).
4295
     */
4296
    public const EPSG_MERCHICH = 'urn:ogc:def:datum:EPSG::6261';
4297
4298
    /**
4299
     * Mexico ITRF2008
4300
     * Type: Geodetic
4301
     * Extent: Mexico - onshore and offshore.
4302
     * ITRF2008 at epoch 2010.00.
4303
     * Realised by a frame of 15 active GPS stations observed and adjusted in the ITRF2008. Includes ties to tide
4304
     * gauges. Replaces Mexico ITRF92 (datum code 1042).
4305
     */
4306
    public const EPSG_MEXICO_ITRF2008 = 'urn:ogc:def:datum:EPSG::1120';
4307
4308
    /**
4309
     * Mexico ITRF92
4310
     * Type: Geodetic
4311
     * Extent: Mexico - onshore and offshore.
4312
     * ITRF1992 at epoch 1988.00.
4313
     * Realized by a frame of 15 active GPS stations observed and adjusted in the ITRF1992. Includes ties to tide
4314
     * gauges. Replaces NAD27 (datum code 6267). Replaced by Mexico ITRF2008 (datum code 1120) from December 2010.
4315
     */
4316
    public const EPSG_MEXICO_ITRF92 = 'urn:ogc:def:datum:EPSG::1042';
4317
4318
    /**
4319
     * Mhast (offshore)
4320
     * Type: Geodetic
4321
     * Extent: Angola (Cabinda) - offshore; The Democratic Republic of the Congo (Zaire) - offshore.
4322
     * Fundamental point: Station Y at Malongo base camp. Latitude: 5°23'30.810"S, longitude: 12°12'01.590"E (of
4323
     * Greenwich).
4324
     * Origin coordinates determined by Transit single point position using 32 passes and transformed from WGS72BE
4325
     * using transformation code 15790. Differs from Mhast (onshore) by approximately 10m. Replaced in 1987 by Malongo
4326
     * 1987 (code 6259).
4327
     */
4328
    public const EPSG_MHAST_OFFSHORE = 'urn:ogc:def:datum:EPSG::6705';
4329
4330
    /**
4331
     * Mhast (onshore)
4332
     * Type: Geodetic
4333
     * Extent: Angola (Cabinda) - onshore and offshore; The Democratic Republic of the Congo (Zaire) - onshore coastal
4334
     * area and offshore.
4335
     * Probably adopted a Mhast 1951 coordinate set but associated an incorrect ellipsoid with it.
4336
     * Adopted by oil industry with intention of being Mhast 1951 (code 6703) but incorrectly (for Mhast 1951) used the
4337
     * International 1924 ellipsoid. This datum differs by about 400 metres from the Portuguese Mhast 1951 and Camacupa
4338
     * datums.
4339
     */
4340
    public const EPSG_MHAST_ONSHORE = 'urn:ogc:def:datum:EPSG::6704';
4341
4342
    /**
4343
     * Midway 1961
4344
     * Type: Geodetic
4345
     * Extent: United States Minor Outlying Islands - Midway Islands - Sand Island and Eastern Island.
4346
     */
4347
    public const EPSG_MIDWAY_1961 = 'urn:ogc:def:datum:EPSG::6727';
4348
4349
    /**
4350
     * Militar-Geographische Institut
4351
     * Type: Geodetic
4352
     * Extent: Austria.
4353
     * Fundamental point: Hermannskogel. Latitude: 48°16'15.29"N, longitude: 16°17'41.06"E (of Greenwich).
4354
     * The longitude of the datum origin equates to a value for the Ferro meridian of 17°40' exactly west of
4355
     * Greenwich.
4356
     */
4357
    public const EPSG_MILITAR_GEOGRAPHISCHE_INSTITUT = 'urn:ogc:def:datum:EPSG::6312';
4358
4359
    /**
4360
     * Militar-Geographische Institut (Ferro)
4361
     * Type: Geodetic
4362
     * Extent: Austria. Bosnia and Herzegovina. Croatia - onshore. Kosovo. Montenegro - onshore. North Macedonia.
4363
     * Serbia. Slovenia - onshore.
4364
     * Fundamental point: Hermannskogel. Latitude: 48°16'15.29"N, longitude: 33°57'41.06"E (of Ferro).
4365
     * Replaced by MGI in Austria and MGI 1901 in former Yugoslavia.
4366
     */
4367
    public const EPSG_MILITAR_GEOGRAPHISCHE_INSTITUT_FERRO = 'urn:ogc:def:datum:EPSG::6805';
4368
4369
    /**
4370
     * Ministerio de Marina Norte
4371
     * Type: Geodetic
4372
     * Extent: Argentina - Tierra del Fuego onshore.
4373
     * Developed by the Servicio de Hidrografia Naval.
4374
     */
4375
    public const EPSG_MINISTERIO_DE_MARINA_NORTE = 'urn:ogc:def:datum:EPSG::1258';
4376
4377
    /**
4378
     * Ministerio de Marina Sur
4379
     * Type: Geodetic
4380
     * Extent: Argentina - Tierra del Fuego onshore.
4381
     * Developed by the Servicio de Hidrografia Naval.
4382
     */
4383
    public const EPSG_MINISTERIO_DE_MARINA_SUR = 'urn:ogc:def:datum:EPSG::1259';
4384
4385
    /**
4386
     * Minna
4387
     * Type: Geodetic
4388
     * Extent: Nigeria - onshore and offshore.
4389
     * Fundamental point: Minna base station L40. Latitude: 9°38'08.87"N, longitude: 6°30'58.76"E (of Greenwich).
4390
     */
4391
    public const EPSG_MINNA = 'urn:ogc:def:datum:EPSG::6263';
4392
4393
    /**
4394
     * Missao Hidrografico Angola y Sao Tome 1951
4395
     * Type: Geodetic
4396
     * Extent: Angola - Cabinda.
4397
     * Extension of Camacupa datum into Cabinda.
4398
     * A variation of this datum has been adopted by the oil industry but incorrectly using the International 1924
4399
     * ellipsoid and not tied to the official Portuguese triangulation - see Mhast (onshore) and Mhast (offshore)
4400
     * (codes 6704 and 6705).
4401
     */
4402
    public const EPSG_MISSAO_HIDROGRAFICO_ANGOLA_Y_SAO_TOME_1951 = 'urn:ogc:def:datum:EPSG::6703';
4403
4404
    /**
4405
     * Monte Mario
4406
     * Type: Geodetic
4407
     * Extent: Italy - onshore and offshore; San Marino, Vatican City State.
4408
     * Fundamental point: Monte Mario. Latitude: 41°55'25.51"N, longitude: 12°27'08.4"E (of Greenwich).
4409
     * Replaced Genova datum, Bessel 1841 ellipsoid, from 1940.
4410
     */
4411
    public const EPSG_MONTE_MARIO = 'urn:ogc:def:datum:EPSG::6265';
4412
4413
    /**
4414
     * Monte Mario (Rome)
4415
     * Type: Geodetic
4416
     * Extent: Italy - onshore and offshore; San Marino, Vatican City State.
4417
     * Fundamental point: Monte Mario. Latitude: 41°55'25.51"N, longitude: 0°00' 00.00"E (of Rome).
4418
     * Replaced Genova datum, Bessel 1841 ellipsoid, from 1940.
4419
     */
4420
    public const EPSG_MONTE_MARIO_ROME = 'urn:ogc:def:datum:EPSG::6806';
4421
4422
    /**
4423
     * Montserrat 1958
4424
     * Type: Geodetic
4425
     * Extent: Montserrat - onshore.
4426
     * Fundamental point: station M36.
4427
     */
4428
    public const EPSG_MONTSERRAT_1958 = 'urn:ogc:def:datum:EPSG::6604';
4429
4430
    /**
4431
     * Moorea 87
4432
     * Type: Geodetic
4433
     * Extent: French Polynesia - Society Islands - Moorea.
4434
     * Two stations on Tahiti whose coordinates from the Tahiti 1979 adjustment were held fixed.
4435
     * Replaces Tahiti 52 (datum code 6628) in Moorea. Replaced by RGPF (datum code 6687).
4436
     */
4437
    public const EPSG_MOOREA_87 = 'urn:ogc:def:datum:EPSG::6691';
4438
4439
    /**
4440
     * Moorea SAU 1981
4441
     * Type: Vertical
4442
     * Extent: French Polynesia - Society Islands - Moorea.
4443
     * Fundamental benchmark: RN225
4444
     * Included as part of NGPF - see datum code 5195.
4445
     */
4446
    public const EPSG_MOOREA_SAU_1981 = 'urn:ogc:def:datum:EPSG::5197';
4447
4448
    /**
4449
     * Moturiki 1953
4450
     * Type: Vertical
4451
     * Extent: New Zealand - North Island - Moturiki vertical CRS area.
4452
     * MSL at Moturiki Island February 1949 to December 1952.
4453
     */
4454
    public const EPSG_MOTURIKI_1953 = 'urn:ogc:def:datum:EPSG::5162';
4455
4456
    /**
4457
     * Mount Dillon
4458
     * Type: Geodetic
4459
     * Extent: Trinidad and Tobago - Tobago - onshore.
4460
     * Fundamental point: Mount Dillon triangulation station. Latitude: 11°15'07.843"N, longitude: 60°41'09.632"W (of
4461
     * Greenwich).
4462
     */
4463
    public const EPSG_MOUNT_DILLON = 'urn:ogc:def:datum:EPSG::6157';
4464
4465
    /**
4466
     * Moznet (ITRF94)
4467
     * Type: Geodetic
4468
     * Extent: Mozambique - onshore and offshore.
4469
     * ITRF94 at epoch 1996.9.
4470
     */
4471
    public const EPSG_MOZNET_ITRF94 = 'urn:ogc:def:datum:EPSG::6130';
4472
4473
    /**
4474
     * N2000
4475
     * Type: Vertical
4476
     * Extent: Finland - onshore.
4477
     * Height at Metsaahovi (latitude 60.21762°N, longitude 24.39517°E) of 54.4233m related to EVRF2000 origin
4478
     * through Baltic Levelling Ring adjustment at epoch 2000.0.
4479
     * Realized through the third precise levelling network. Uses normal heights. Replaces N43 and N60 (datum codes
4480
     * 1213 and 5116). To account for isostatic land uplift use NKG2005 model.
4481
     */
4482
    public const EPSG_N2000 = 'urn:ogc:def:datum:EPSG::1030';
4483
4484
    /**
4485
     * NAD83 (Continuously Operating Reference Station 1996)
4486
     * Type: Geodetic
4487
     * Extent: Puerto Rico - onshore and offshore. United States (USA) onshore and offshore - Alabama; Alaska; Arizona;
4488
     * Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas;
4489
     * Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana;
4490
     * Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma;
4491
     * Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia;
4492
     * Washington; West Virginia; Wisconsin; Wyoming. US Virgin Islands - onshore and offshore.
4493
     * Defined by time-dependent transformations from ITRF (see CT codes 6864-6866). The ITRF realization used has been
4494
     * changed periodically; ITRF96 in years 1997 through 1999, ITRF97 in 2000 and 2001 and ITRF2000 from 2002.
4495
     * Replaced by NAD83(2011) from 2011-09-06.
4496
     */
4497
    public const EPSG_NAD83_CONTINUOUSLY_OPERATING_REFERENCE_STATION_1996 = 'urn:ogc:def:datum:EPSG::1133';
4498
4499
    /**
4500
     * NAD83 (Federal Base Network)
4501
     * Type: Geodetic
4502
     * Extent: American Samoa - Tutuila, Aunu'u, Ofu, Olesega, Ta'u and Rose islands - onshore. Guam - onshore.
4503
     * Northern Mariana Islands - onshore. Puerto Rico - onshore. United States (USA) - CONUS - Alabama; Arizona;
4504
     * Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas;
4505
     * Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana;
4506
     * Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma;
4507
     * Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia;
4508
     * Washington; West Virginia; Wisconsin; Wyoming - onshore plus Gulf of Mexico offshore continental shelf (GoM
4509
     * OCS). US Virgin Islands - onshore.
4510
     * A collection of individual state-wide adjustments including GPS observations made between 1997 and 2004.
4511
     * 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
4512
     * rest of CONUS the difference between the HARN and FBN adjustments was under 5cm and the original HARN
4513
     * adjustments were adopted as NAD83(FBN).
4514
     */
4515
    public const EPSG_NAD83_FEDERAL_BASE_NETWORK = 'urn:ogc:def:datum:EPSG::1211';
4516
4517
    /**
4518
     * NAD83 (High Accuracy Reference Network - Corrected)
4519
     * Type: Geodetic
4520
     * Extent: Puerto Rico and US Virgin Islands - onshore.
4521
     * In PRVI replaces NAD83(HARN) to correct errors. Replaced by NAD83(FBN).
4522
     */
4523
    public const EPSG_NAD83_HIGH_ACCURACY_REFERENCE_NETWORK_CORRECTED = 'urn:ogc:def:datum:EPSG::1212';
4524
4525
    /**
4526
     * NAD83 (High Accuracy Reference Network)
4527
     * Type: Geodetic
4528
     * Extent: American Samoa - onshore - Tutuila, Aunu'u, Ofu, Olesega, Ta'u and Rose islands. Guam - onshore.
4529
     * Northern Mariana Islands - onshore. Puerto Rico - onshore. United States (USA) - onshore Alabama, Alaska,
4530
     * Arizona, Arkansas, California, Colorado, Connecticut, Delaware, Florida, Georgia, Hawaii, Idaho, Illinois,
4531
     * Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Maryland, Massachusetts, Michigan, Minnesota, Mississippi,
4532
     * Missouri, Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York, North Carolina, North
4533
     * Dakota, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, South Dakota, Tennessee, Texas,
4534
     * Utah, Vermont, Virginia, Washington, West Virginia, Wisconsin and Wyoming; offshore Gulf of Mexico continental
4535
     * shelf (GoM OCS). US Virgin Islands - onshore.
4536
     * A collection of individual state-wide adjustments including GPS observations made between 1991 and 1996.
4537
     * In CONUS, American Samoa and Guam replaced by NAD83(FBN). In Alaska replaced by NAD83(NSRS2007). In Hawaii
4538
     * replaced by NAD83(PA11). In Puerto Rico and US Virgin Islands replaced by NAD83(HARN Corrected).
4539
     */
4540
    public const EPSG_NAD83_HIGH_ACCURACY_REFERENCE_NETWORK = 'urn:ogc:def:datum:EPSG::6152';
4541
4542
    /**
4543
     * NAD83 (National Spatial Reference System 2007)
4544
     * Type: Geodetic
4545
     * Extent: Puerto Rico - onshore and offshore. United States (USA) onshore and offshore - Alabama; Alaska; Arizona;
4546
     * Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas;
4547
     * Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana;
4548
     * Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma;
4549
     * Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia;
4550
     * Washington; West Virginia; Wisconsin; Wyoming. US Virgin Islands - onshore and offshore.
4551
     * Coordinates of 486 national continually operating reference system (CORS) and 195 collaborative GPS (CGPS) sites
4552
     * constrained to their CORS96 values, ITRF2000 at epoch 2002.0.
4553
     * Replaced by NAD83 (National Spatial Reference System 2011), datum code 1116.
4554
     */
4555
    public const EPSG_NAD83_NATIONAL_SPATIAL_REFERENCE_SYSTEM_2007 = 'urn:ogc:def:datum:EPSG::6759';
4556
4557
    /**
4558
     * NAD83 (National Spatial Reference System 2011)
4559
     * Type: Geodetic
4560
     * Extent: Puerto Rico - onshore and offshore. United States (USA) onshore and offshore - Alabama; Alaska; Arizona;
4561
     * Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas;
4562
     * Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana;
4563
     * Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma;
4564
     * Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia;
4565
     * Washington; West Virginia; Wisconsin; Wyoming. US Virgin Islands - onshore and offshore.
4566
     * Coordinates of a nationwide adjustment of 79,546 NGS "passive" control stations in CONUS and Alaska, constrained
4567
     * to 1,171 current CORS station coordinates at epoch 2010.0.
4568
     * Replaces NAD83(NSRS2007). Transformaton code 7807 from ITRF2008 is understood to underlay the CORS station
4569
     * coordinates.
4570
     */
4571
    public const EPSG_NAD83_NATIONAL_SPATIAL_REFERENCE_SYSTEM_2011 = 'urn:ogc:def:datum:EPSG::1116';
4572
4573
    /**
4574
     * NAD83 (National Spatial Reference System MA11)
4575
     * Type: Geodetic
4576
     * Extent: Guam, Northern Mariana Islands and Palau; onshore and offshore.
4577
     * Coordinates of a nationwide adjustment including 171 NGS "passive" control stations constrained to 24 current
4578
     * Pacific CORS station coordinates at epoch 2010.0.
4579
     * Replaces NAD83(HARN) (GGN93) and NAD83(FBN) in Guam. ITRF2008 is understood to underlay the latest CORS station
4580
     * coordinates.
4581
     */
4582
    public const EPSG_NAD83_NATIONAL_SPATIAL_REFERENCE_SYSTEM_MA11 = 'urn:ogc:def:datum:EPSG::1118';
4583
4584
    /**
4585
     * NAD83 (National Spatial Reference System PA11)
4586
     * Type: Geodetic
4587
     * Extent: American Samoa, Marshall Islands, United States (USA) - Hawaii, United States minor outlying islands;
4588
     * onshore and offshore.
4589
     * Coordinates of a nationwide adjustment including 345 NGS "passive" control stations constrained to 24 current
4590
     * Pacific CORS station coordinates at epoch 2010.0.
4591
     * Replaces NAD83(HARN) and NAD83(FBN) in Hawaii and American Samoa. ITRF2008 is understood to underlay the latest
4592
     * CORS station coordinates.
4593
     */
4594
    public const EPSG_NAD83_NATIONAL_SPATIAL_REFERENCE_SYSTEM_PA11 = 'urn:ogc:def:datum:EPSG::1117';
4595
4596
    /**
4597
     * NAD83 Canadian Spatial Reference System
4598
     * Type: Geodetic
4599
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
4600
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
4601
     * Yukon.
4602
     * Includes all versions of NAD83(CSRS) from v2 [CSRS98] onwards without specific identification. As such it has an
4603
     * accuracy of approximately 1m.
4604
     */
4605
    public const EPSG_NAD83_CANADIAN_SPATIAL_REFERENCE_SYSTEM = 'urn:ogc:def:datum:EPSG::6140';
4606
4607
    /**
4608
     * NEA74 Noumea
4609
     * Type: Geodetic
4610
     * Extent: New Caledonia - Grande Terre - Noumea district.
4611
     * Noumea old signal station.
4612
     */
4613
    public const EPSG_NEA74_NOUMEA = 'urn:ogc:def:datum:EPSG::6644';
4614
4615
    /**
4616
     * NGO 1948
4617
     * Type: Geodetic
4618
     * Extent: Norway - onshore.
4619
     * Fundamental point: Oslo observatory. Latitude: 59°54'43.7"N, longitude: 10°43'22.5"E (of Greenwich).
4620
     */
4621
    public const EPSG_NGO_1948 = 'urn:ogc:def:datum:EPSG::6273';
4622
4623
    /**
4624
     * NGO 1948 (Oslo)
4625
     * Type: Geodetic
4626
     * Extent: Norway - onshore.
4627
     * Fundamental point: Oslo observatory. Latitude: 59°54'43.7"N, longitude: 0°00'00.0"E (of Oslo).
4628
     */
4629
    public const EPSG_NGO_1948_OSLO = 'urn:ogc:def:datum:EPSG::6817';
4630
4631
    /**
4632
     * NSWC 9Z-2
4633
     * Type: Geodetic
4634
     * Extent: World.
4635
     * Transit precise ephemeris before 1991.
4636
     */
4637
    public const EPSG_NSWC_9Z_2 = 'urn:ogc:def:datum:EPSG::6276';
4638
4639
    /**
4640
     * Nahrwan 1934
4641
     * Type: Geodetic
4642
     * Extent: Iraq - onshore; Iran - onshore northern Gulf coast and west bordering southeast Iraq.
4643
     * Fundamental point: Nahrwan south base.  Latitude: 33°19'10.87"N, longitude: 44°43'25.54"E (of Greenwich).
4644
     * This adjustment later discovered to have a significant orientation error. In Iran replaced by FD58. In Iraq,
4645
     * replaced by Karbala 1979.
4646
     */
4647
    public const EPSG_NAHRWAN_1934 = 'urn:ogc:def:datum:EPSG::6744';
4648
4649
    /**
4650
     * Nahrwan 1967
4651
     * Type: Geodetic
4652
     * Extent: Arabian Gulf; Qatar - offshore; United Arab Emirates (UAE) - Abu Dhabi; Dubai; Sharjah; Ajman; Fujairah;
4653
     * Ras Al Kaimah; Umm Al Qaiwain - onshore and offshore.
4654
     * Fundamental point: Nahrwan south base.  Latitude: 33°19'10.87"N, longitude: 44°43'25.54"E (of Greenwich).
4655
     */
4656
    public const EPSG_NAHRWAN_1967 = 'urn:ogc:def:datum:EPSG::6270';
4657
4658
    /**
4659
     * Nakhl-e Ghanem
4660
     * Type: Geodetic
4661
     * Extent: Iran - Kangan district.
4662
     * Coordinates of two stations determined with respect to ITRF 2000 at epoch 2005.2: BMT1 latitude
4663
     * 27°42'09.8417"N, longitude 52°12'11.0362"E (of Greenwich); Total1 latitude 27°31'03.8896"N, longitude
4664
     * 52°36'13.1312"E (of Greenwich).
4665
     */
4666
    public const EPSG_NAKHL_E_GHANEM = 'urn:ogc:def:datum:EPSG::6693';
4667
4668
    /**
4669
     * Naparima 1955
4670
     * Type: Geodetic
4671
     * Extent: Trinidad and Tobago - Trinidad - onshore.
4672
     * Fundamental point: Naparima. Latitude: 10°16'44.860"N, longitude: 61°27'34.620"W (of Greenwich).
4673
     * Extended to Tobago as Naparima 1972. (Note: Naparima 1972 is not used in Trinidad).
4674
     */
4675
    public const EPSG_NAPARIMA_1955 = 'urn:ogc:def:datum:EPSG::6158';
4676
4677
    /**
4678
     * Naparima 1972
4679
     * Type: Geodetic
4680
     * Extent: Trinidad and Tobago - Tobago - onshore.
4681
     * Fundamental point: Naparima. Latitude: 10°16'44.860"N, longitude: 61°27'34.620"W (of Greenwich).
4682
     * Naparima 1972 is an extension to Tobago of the Naparima 1955 network of Trinidad.
4683
     */
4684
    public const EPSG_NAPARIMA_1972 = 'urn:ogc:def:datum:EPSG::6271';
4685
4686
    /**
4687
     * Napier 1962
4688
     * Type: Vertical
4689
     * Extent: New Zealand - North Island - Hawkes Bay meridional circuit and Napier vertical crs area.
4690
     * MSL at Napier harbour. Period of derivation unknown.
4691
     */
4692
    public const EPSG_NAPIER_1962 = 'urn:ogc:def:datum:EPSG::5163';
4693
4694
    /**
4695
     * National Geodetic Network
4696
     * Type: Geodetic
4697
     * Extent: Kuwait - onshore.
4698
     * Replaces 1984 adjustment which used the WGS72 ellipsoid.
4699
     */
4700
    public const EPSG_NATIONAL_GEODETIC_NETWORK = 'urn:ogc:def:datum:EPSG::6318';
4701
4702
    /**
4703
     * National Geodetic Vertical Datum 1929
4704
     * Type: Vertical
4705
     * Extent: United States (USA) - CONUS onshore - Alabama; Arizona; Arkansas; California; Colorado; Connecticut;
4706
     * Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland;
4707
     * Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey;
4708
     * New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South
4709
     * Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin;
4710
     * Wyoming.
4711
     * 26 tide gauges in the US and Canada.
4712
     * Normal orthometric heights.
4713
     */
4714
    public const EPSG_NATIONAL_GEODETIC_VERTICAL_DATUM_1929 = 'urn:ogc:def:datum:EPSG::5102';
4715
4716
    /**
4717
     * National Vertical Datum 1992
4718
     * Type: Vertical
4719
     * Extent: Bangladesh - onshore.
4720
     * Mean Sea Level 1992-1994 at tidal station at Rangadia, Chittagong.
4721
     */
4722
    public const EPSG_NATIONAL_VERTICAL_DATUM_1992 = 'urn:ogc:def:datum:EPSG::1303';
4723
4724
    /**
4725
     * Nelson 1955
4726
     * Type: Vertical
4727
     * Extent: New Zealand - South Island - north of approximately 42°20'S - Nelson vertical CRS area.
4728
     * MSL at Nelson harbour 1939-1942.
4729
     */
4730
    public const EPSG_NELSON_1955 = 'urn:ogc:def:datum:EPSG::5164';
4731
4732
    /**
4733
     * Nepal 1981
4734
     * Type: Geodetic
4735
     * Extent: Nepal.
4736
     * Fundamental point: Station 12/157 Nagarkot. Latitude: 27°41'31.04"N, longitude: 85°31'20.23"E (of Greenwich).
4737
     */
4738
    public const EPSG_NEPAL_1981 = 'urn:ogc:def:datum:EPSG::1111';
4739
4740
    /**
4741
     * New Beijing
4742
     * Type: Geodetic
4743
     * Extent: China - onshore.
4744
     * Derived by conformal transformation of Xian 1980 adjustment onto Krassowsky ellipsoid.
4745
     * From 1982 replaces Beijing 1954.
4746
     */
4747
    public const EPSG_NEW_BEIJING = 'urn:ogc:def:datum:EPSG::1045';
4748
4749
    /**
4750
     * New Zealand Geodetic Datum 1949
4751
     * Type: Geodetic
4752
     * Extent: New Zealand - North Island, South Island, Stewart Island - onshore and nearshore.
4753
     * Fundamental point: Papatahi. Latitude: 41°19' 8.900"S, longitude: 175°02'51.000"E (of Greenwich).
4754
     * Replaced by New Zealand Geodetic Datum 2000 (code 6167) from March 2000.
4755
     */
4756
    public const EPSG_NEW_ZEALAND_GEODETIC_DATUM_1949 = 'urn:ogc:def:datum:EPSG::6272';
4757
4758
    /**
4759
     * New Zealand Geodetic Datum 2000
4760
     * Type: Geodetic
4761
     * Extent: New Zealand - onshore and offshore. Includes Antipodes Islands, Auckland Islands, Bounty Islands,
4762
     * Chatham Islands, Cambell Island, Kermadec Islands, Raoul Island and Snares Islands.
4763
     * Based on ITRF96 at epoch 2000.0
4764
     * Replaces New Zealand Geodetic Datum 1949 (code 6272) and Chatham Islands Datum 1979 (code 6673) from March 2000.
4765
     */
4766
    public const EPSG_NEW_ZEALAND_GEODETIC_DATUM_2000 = 'urn:ogc:def:datum:EPSG::6167';
4767
4768
    /**
4769
     * New Zealand Vertical Datum 2009
4770
     * Type: Vertical
4771
     * Extent: New Zealand - onshore and offshore. Includes Antipodes Islands, Auckland Islands, Bounty Islands,
4772
     * Chatham Islands, Cambell Island, Kermadec Islands, Raoul Island and Snares Islands.
4773
     * New Zealand Quasigeoid 2009 which is defined by the application of the NZ geoid 2009 grid to NZGD2000
4774
     * ellipsoidal heights. See transformation code 4459.
4775
     */
4776
    public const EPSG_NEW_ZEALAND_VERTICAL_DATUM_2009 = 'urn:ogc:def:datum:EPSG::1039';
4777
4778
    /**
4779
     * New Zealand Vertical Datum 2016
4780
     * Type: Vertical
4781
     * Extent: New Zealand - onshore and offshore. Includes Antipodes Islands, Auckland Islands, Bounty Islands,
4782
     * Chatham Islands, Cambell Island, Kermadec Islands, Raoul Island and Snares Islands.
4783
     * New Zealand quasigeoid 2016 which is defined by the application of the NZ geoid 2016 grid to NZGD2000
4784
     * ellipsoidal heights. See transformation code 7840.
4785
     */
4786
    public const EPSG_NEW_ZEALAND_VERTICAL_DATUM_2016 = 'urn:ogc:def:datum:EPSG::1169';
4787
4788
    /**
4789
     * Nivellement General Guyanais 1977
4790
     * Type: Vertical
4791
     * Extent: French Guiana - onshore.
4792
     * Mean sea level 1936 at Cayenne. Origin = marker BM35 on stone on St Francois battery, Cayenne, with defined
4793
     * elevation of 1.64m above msl. NGG1977 height 0.00m is 1.96m above sounding datum defined at Cayenne in 1936 by
4794
     * SHM.
4795
     * Orthometric heights.
4796
     */
4797
    public const EPSG_NIVELLEMENT_GENERAL_GUYANAIS_1977 = 'urn:ogc:def:datum:EPSG::5153';
4798
4799
    /**
4800
     * Nivellement General de Nouvelle Caledonie
4801
     * Type: Vertical
4802
     * Extent: New Caledonia - Grande Terre.
4803
     * Rivet AB01 established by SHOM (Service Hydrographique de la Marine)  in 1937 on the Quai des Volontaires in
4804
     * Noumea. Height i: 1.885 metre above mean sea level.
4805
     * Orthometric heights.
4806
     */
4807
    public const EPSG_NIVELLEMENT_GENERAL_DE_NOUVELLE_CALEDONIE = 'urn:ogc:def:datum:EPSG::5151';
4808
4809
    /**
4810
     * Nivellement General de Nouvelle Caledonie 2008
4811
     * Type: Vertical
4812
     * Extent: New Caledonia - Belep, Grande Terre, Ile des Pins, Loyalty Islands (Lifou, Mare, Ouvea).
4813
     * Normal heights.
4814
     */
4815
    public const EPSG_NIVELLEMENT_GENERAL_DE_NOUVELLE_CALEDONIE_2008 = 'urn:ogc:def:datum:EPSG::1255';
4816
4817
    /**
4818
     * Nivellement General de Polynesie Francaise
4819
     * Type: Vertical
4820
     * Extent: French Polynesia - Society Islands - Bora Bora, Huahine, Maupiti, Moorea, Raiatea, Tahaa and Tahiti.
4821
     * The collection of heterogeneous levelling networks throughout the Society Islands of French Polynesia.
4822
     */
4823
    public const EPSG_NIVELLEMENT_GENERAL_DE_POLYNESIE_FRANCAISE = 'urn:ogc:def:datum:EPSG::5195';
4824
4825
    /**
4826
     * Nivellement General de la Corse 1948
4827
     * Type: Vertical
4828
     * Extent: France - Corsica onshore.
4829
     * Mean sea level at Ajaccio between 1912 and 1937.
4830
     * Replaced by IGN78 Corsica (datum 5120).
4831
     */
4832
    public const EPSG_NIVELLEMENT_GENERAL_DE_LA_CORSE_1948 = 'urn:ogc:def:datum:EPSG::5189';
4833
4834
    /**
4835
     * Nivellement General de la France - IGN69
4836
     * Type: Vertical
4837
     * Extent: France - mainland onshore.
4838
     * Rivet number M.ac O-VIII on the Marseille tide gauge site, with the height fixed in 1897 at 1.661 metre above
4839
     * mean sea level between February 2nd 1885 and January 1st 1897.
4840
     * Uses Normal heights.
4841
     */
4842
    public const EPSG_NIVELLEMENT_GENERAL_DE_LA_FRANCE_IGN69 = 'urn:ogc:def:datum:EPSG::5119';
4843
4844
    /**
4845
     * Nivellement General de la France - IGN78
4846
     * Type: Vertical
4847
     * Extent: France - Corsica onshore.
4848
     * Marker MM3 situated on the tide gauge site of Ajaccio. Height is 3.640 metre above mean sea level.
4849
     * Uses Normal heights. Replaces NGC (datum code 5189).
4850
     */
4851
    public const EPSG_NIVELLEMENT_GENERAL_DE_LA_FRANCE_IGN78 = 'urn:ogc:def:datum:EPSG::5120';
4852
4853
    /**
4854
     * Nivellement General de la France - Lallemand
4855
     * Type: Vertical
4856
     * Extent: France - mainland onshore.
4857
     * Rivet number M.ac O-VIII on the Marseille tide gauge site, with the height fixed in 1897 at 1.661 metre above
4858
     * mean sea level between February 2nd 1885 and January 1st 1897.
4859
     * Orthometric heights.
4860
     */
4861
    public const EPSG_NIVELLEMENT_GENERAL_DE_LA_FRANCE_LALLEMAND = 'urn:ogc:def:datum:EPSG::5118';
4862
4863
    /**
4864
     * Nivellement General du Luxembourg 1995
4865
     * Type: Vertical
4866
     * Extent: Luxembourg.
4867
     * Reference point Wemperhardt defined as 528.030m above Normaal Amsterdams Peil (NAP). Datum at NAP is mean high
4868
     * tide in 1684. Network adjusted in 1995.
4869
     * Pseudo-orthometric heights.
4870
     */
4871
    public const EPSG_NIVELLEMENT_GENERAL_DU_LUXEMBOURG_1995 = 'urn:ogc:def:datum:EPSG::5172';
4872
4873
    /**
4874
     * Nord Sahara 1959
4875
     * Type: Geodetic
4876
     * Extent: Algeria - onshore and offshore.
4877
     * Coordinates of primary network readjusted on ED50 datum and then transformed conformally to Clarke 1880 (RGS)
4878
     * ellipsoid.
4879
     * Adjustment includes Morocco and Tunisia but use only in Algeria. Within Algeria the adjustment is north of 32°N
4880
     * but use has been extended southwards in many disconnected projects, some based on independent astro stations
4881
     * rather than the geodetic network.
4882
     */
4883
    public const EPSG_NORD_SAHARA_1959 = 'urn:ogc:def:datum:EPSG::6307';
4884
4885
    /**
4886
     * Normaal Amsterdams Peil
4887
     * Type: Vertical
4888
     * Extent: Netherlands - onshore and offshore.
4889
     * Mean high tide at Amsterdam in 1684. Onshore NAP is defined by the published heights of benchmarks and since
4890
     * 2018 extended offshore defined by the application of the official transformation from ETRS89, RDNAPTRANS(TM).
4891
     * Orthometric heights. From 2018, use has been extended from Netherlands onshore to Netherlands onshore and
4892
     * offshore.
4893
     */
4894
    public const EPSG_NORMAAL_AMSTERDAMS_PEIL = 'urn:ogc:def:datum:EPSG::5109';
4895
4896
    /**
4897
     * North American Datum 1927
4898
     * Type: Geodetic
4899
     * Extent: North and central America: Antigua and Barbuda - onshore. Bahamas - onshore plus offshore over internal
4900
     * continental shelf only. Belize - onshore. British Virgin Islands - onshore. Canada onshore - Alberta, British
4901
     * Columbia, Manitoba, New Brunswick, Newfoundland and Labrador, Northwest Territories, Nova Scotia, Nunavut,
4902
     * Ontario, Prince Edward Island, Quebec, Saskatchewan and Yukon - plus offshore east coast. Cuba - onshore and
4903
     * offshore. El Salvador - onshore. Guatemala - onshore. Honduras - onshore. Panama - onshore. Puerto Rico -
4904
     * onshore. Mexico - onshore plus offshore east coast. Nicaragua - onshore. United States (USA) onshore and
4905
     * offshore - Alabama, Alaska, Arizona, Arkansas, California, Colorado, Connecticut, Delaware, Florida, Georgia,
4906
     * Idaho, Illinois, Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Maryland, Massachusetts, Michigan,
4907
     * Minnesota, Mississippi, Missouri, Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York,
4908
     * North Carolina, North Dakota, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, South Dakota,
4909
     * Tennessee, Texas, Utah, Vermont, Virginia, Washington, West Virginia, Wisconsin and Wyoming - plus offshore . US
4910
     * Virgin Islands - onshore.
4911
     * Fundamental point: Meade's Ranch. Latitude: 39°13'26.686"N, longitude: 98°32'30.506"W (of Greenwich).
4912
     * In United States (USA) and Canada, replaced by North American Datum 1983 (NAD83) (code 6269) ; in Mexico,
4913
     * replaced by Mexican Datum of 1993 (code 1042).
4914
     */
4915
    public const EPSG_NORTH_AMERICAN_DATUM_1927 = 'urn:ogc:def:datum:EPSG::6267';
4916
4917
    /**
4918
     * North American Datum 1927 (1976)
4919
     * Type: Geodetic
4920
     * Extent: Canada - Ontario.
4921
     * Fundamental point: Meade's Ranch. Latitude: 39°13'26.686"N, longitude: 98°32'30.506"W (of Greenwich).
4922
     * NAD27(76) used in Ontario for all maps at scale 1/20 000 and larger; elsewhere in Canada for selected purposes.
4923
     */
4924
    public const EPSG_NORTH_AMERICAN_DATUM_1927_1976 = 'urn:ogc:def:datum:EPSG::6608';
4925
4926
    /**
4927
     * North American Datum 1927 (CGQ77)
4928
     * Type: Geodetic
4929
     * Extent: Canada - Quebec.
4930
     * Fundamental point: Meade's Ranch. Latitude: 39°13'26.686"N, longitude: 98°32'30.506"W (of Greenwich).
4931
     * NAD27 (CGQ77) used in Quebec for all maps at scale 1/20 000 and larger; generally for maps issued by the Quebec
4932
     * cartography office whose reference system is CGQ77.
4933
     */
4934
    public const EPSG_NORTH_AMERICAN_DATUM_1927_CGQ77 = 'urn:ogc:def:datum:EPSG::6609';
4935
4936
    /**
4937
     * North American Datum 1983
4938
     * Type: Geodetic
4939
     * Extent: North America - onshore and offshore: Canada - Alberta; British Columbia; Manitoba; New Brunswick;
4940
     * Newfoundland and Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec;
4941
     * Saskatchewan; Yukon. Puerto Rico. United States (USA) - Alabama; Alaska; Arizona; Arkansas; California;
4942
     * Colorado; Connecticut; Delaware; Florida; Georgia; Hawaii; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky;
4943
     * Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska;
4944
     * Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon;
4945
     * Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington;
4946
     * West Virginia; Wisconsin; Wyoming. US Virgin Islands. British Virgin Islands.
4947
     * NAD83 Doppler Transit stations in NWL 9D were aligned with the BIH Conventional Terrestrial Reference Frame
4948
     * (BTS) at epoch 1984.0 using an internationally adopted transformation. NAD83 is now known to be non-geocentric
4949
     * by about 2.2 meters.
4950
     * Although the 1986 adjustment included connections to Greenland and Mexico, it has not been adopted there. In
4951
     * Canada and US, replaced NAD27.
4952
     */
4953
    public const EPSG_NORTH_AMERICAN_DATUM_1983 = 'urn:ogc:def:datum:EPSG::6269';
4954
4955
    /**
4956
     * North American Datum of 1983 (CSRS) version 2
4957
     * Type: Geodetic
4958
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
4959
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
4960
     * Yukon.
4961
     * Defined at reference epoch 1997.0 by a transformation from ITRF96 (see transformation code 8259). The frame is
4962
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
4963
     * Published 1998-01-01; adopted by the Canadian federal government and the provincial governments of Alberta,
4964
     * Saskatchewan, Manitoba, Quebec, New Brunswick and Prince Edward Island. Replaces NAD83(CSRS96). Replaced by
4965
     * NAD83(CSRS)v3.
4966
     */
4967
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_2 = 'urn:ogc:def:datum:EPSG::1193';
4968
4969
    /**
4970
     * North American Datum of 1983 (CSRS) version 3
4971
     * Type: Geodetic
4972
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
4973
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
4974
     * Yukon.
4975
     * Defined at reference epoch 1997.0 by a transformation from ITRF97 (see transformation code 8260). The frame is
4976
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
4977
     * Published 1999-01-01; adopted by the Canadian federal government (2000) and the provincial governments of
4978
     * British Columbia (CRD in 2000, all Victoria Island 2005), Ontario (2008) and Nova Scotia (2000). Replaces
4979
     * NAD83(CSRS)v2. Replaced by NAD83(CSRS)v4.
4980
     */
4981
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_3 = 'urn:ogc:def:datum:EPSG::1194';
4982
4983
    /**
4984
     * North American Datum of 1983 (CSRS) version 4
4985
     * Type: Geodetic
4986
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
4987
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
4988
     * Yukon.
4989
     * Defined at reference epoch 2002.0 by a transformation from ITRF2000 (see transformation code 8261). The frame is
4990
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
4991
     * Published 2002-01-01; adopted by the Canadian federal government (2002) and the provincial governments of
4992
     * British Columbia (for mainland only, not Victoria Island) (2005) and Alberta (2004). Replaces NAD83(CSRS)v3.
4993
     * Replaced by NAD83(CSRS)v5.
4994
     */
4995
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_4 = 'urn:ogc:def:datum:EPSG::1195';
4996
4997
    /**
4998
     * North American Datum of 1983 (CSRS) version 5
4999
     * Type: Geodetic
5000
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
5001
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
5002
     * Yukon.
5003
     * Defined at reference epoch 2006.0 by a transformation from ITRF2005 (see transformation code 9227). The frame is
5004
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
5005
     * Published 2007-01-01; adopted by the Canadian federal government in 2007. Replaces NAD83(CSRS)v4. Replaced by
5006
     * NAD83(CSRS)v6.
5007
     */
5008
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_5 = 'urn:ogc:def:datum:EPSG::1196';
5009
5010
    /**
5011
     * North American Datum of 1983 (CSRS) version 6
5012
     * Type: Geodetic
5013
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
5014
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
5015
     * Yukon.
5016
     * Defined at reference epoch 2010.0 by a transformation from ITRF2008 (see transformation code 8264). The frame is
5017
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
5018
     * Published 2010-01-01; adopted by the Canadian government (2012) and the provincial governments of Manitoba
5019
     * (2014), Ontario (2013), Prince Edward Island (2014), Nova Scotia (2014) and Newfoundland (2012). Replaces
5020
     * NAD83(CSRSv5). Replaced by NAD83(CSRS)v7.
5021
     */
5022
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_6 = 'urn:ogc:def:datum:EPSG::1197';
5023
5024
    /**
5025
     * North American Datum of 1983 (CSRS) version 7
5026
     * Type: Geodetic
5027
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
5028
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
5029
     * Yukon.
5030
     * Defined at reference epoch 2010.0 by a transformation from ITRF2014 (see transformation code 8265). The frame is
5031
     * kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model.
5032
     * Published 2017-05-01; adopted by the Canadian federal government (2017) and the provincial governments of
5033
     * Alberta (2021) and Prince Edward Island (2020). Replaces NAD83(CSRS)v6.
5034
     */
5035
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_7 = 'urn:ogc:def:datum:EPSG::1198';
5036
5037
    /**
5038
     * North American Datum of 1983 (CSRS96)
5039
     * Type: Geodetic
5040
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
5041
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
5042
     * Yukon.
5043
     * Defined at epoch 1988.0 by a transformation from ITRF92, the definition superseded by a transformation from
5044
     * ITRF93 and then by a transformation from ITRF94. (See transformation codes 8256-58).
5045
     * Adopted by the Canadian federal government from 1996-01-01. Replaces NAD83 [sometimes called NAD83(Original)].
5046
     * Replaced by NAD83(CSRS)v2.
5047
     */
5048
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS96 = 'urn:ogc:def:datum:EPSG::1192';
5049
5050
    /**
5051
     * North American Datum of 1983 (MARP00)
5052
     * Type: Geodetic
5053
     * Extent: Guam, Northern Mariana Islands and Palau; onshore and offshore.
5054
     * Defined by a time-dependent seven parameter transformation of ITRF2000 3D geocentric Cartesian coordinates and
5055
     * velocities at reference epoch 1993.62, aligned to the Mariana plate at other epochs based on an Euler pole
5056
     * rotation.
5057
     * Replaces NAD83(HARN) (GGN93) and NAD83(FBN) in Guam. Replaced by NAD83(MA11).
5058
     */
5059
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_MARP00 = 'urn:ogc:def:datum:EPSG::1221';
5060
5061
    /**
5062
     * North American Datum of 1983 (PACP00)
5063
     * Type: Geodetic
5064
     * Extent: American Samoa, Marshall Islands, United States (USA) - Hawaii, United States minor outlying islands;
5065
     * onshore and offshore.
5066
     * Defined by a time-dependent seven parameter transformation of ITRF2000 3D geocentric Cartesian coordinates and
5067
     * velocities at reference epoch 1993.62, aligned to the Pacific plate at other epochs based on an Euler pole
5068
     * rotation.
5069
     * Replaces NAD83(HARN) and NAD83(FBN) in Hawaii and American Samoa. Replaced by NAD83(PA11).
5070
     */
5071
    public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_PACP00 = 'urn:ogc:def:datum:EPSG::1249';
5072
5073
    /**
5074
     * North American Vertical Datum 1988
5075
     * Type: Vertical
5076
     * Extent: Mexico - onshore. United States (USA) - CONUS and Alaska - onshore - Alabama; Alaska; Arizona; Arkansas;
5077
     * California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky;
5078
     * Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska;
5079
     * Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon;
5080
     * Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington;
5081
     * West Virginia; Wisconsin; Wyoming.
5082
     * Mean water level 1970-1983 at Pointe-au-Père (Father's Point) and 1984-1988 at Rimouski, Quebec. Benchmark
5083
     * 1250-G = 6.273m.
5084
     * Helmert orthometric heights.
5085
     */
5086
    public const EPSG_NORTH_AMERICAN_VERTICAL_DATUM_1988 = 'urn:ogc:def:datum:EPSG::5103';
5087
5088
    /**
5089
     * North Rona
5090
     * Type: Vertical
5091
     * Extent: United Kingdom (UK) - Great Britain - Scotland - North Rona onshore.
5092
     * Orthometric heights.
5093
     */
5094
    public const EPSG_NORTH_RONA = 'urn:ogc:def:datum:EPSG::5143';
5095
5096
    /**
5097
     * Northern Marianas Vertical Datum of 2003
5098
     * Type: Vertical
5099
     * Extent: Northern Mariana Islands - onshore - Rota, Saipan and Tinian.
5100
     * Mean sea level at Tanapag harbor, Saipan. Benchmark 1633227 TIDAL UH-2C = 1.657m relative to National Tidal
5101
     * Datum Epoch 1983-2001. Transferred to Rota (East Harbor, BM TIDAL 3 = 1.482m) and Tinian (Harbor BM TIDAL 1 =
5102
     * 2.361m).
5103
     * Replaces all earlier vertical datums on these islands.
5104
     */
5105
    public const EPSG_NORTHERN_MARIANAS_VERTICAL_DATUM_OF_2003 = 'urn:ogc:def:datum:EPSG::1119';
5106
5107
    /**
5108
     * Norway Normal Null 1954
5109
     * Type: Vertical
5110
     * Extent: Norway - onshore.
5111
     * MSL defined by regression at 7 gauges with between 17 and 67 years observations.
5112
     * Includes initial NN1954 system and NNN1957 system. Former name retained. Normal-orthometric heights. Replaced by
5113
     * NN2000.
5114
     */
5115
    public const EPSG_NORWAY_NORMAL_NULL_1954 = 'urn:ogc:def:datum:EPSG::5174';
5116
5117
    /**
5118
     * Norway Normal Null 2000
5119
     * Type: Vertical
5120
     * Extent: Norway - onshore.
5121
     * Adjustment is referenced to mean high tide at Amsterdams Peil in 1684. To account for land level movements
5122
     * caused by isostatic rebound, heights are reduced to epoch 2000.0 using values computed from the NKG2005LU uplift
5123
     * model.
5124
     * Replaces NN54. Uses Normal heights.
5125
     */
5126
    public const EPSG_NORWAY_NORMAL_NULL_2000 = 'urn:ogc:def:datum:EPSG::1096';
5127
5128
    /**
5129
     * Norwegian Chart Datum
5130
     * Type: Vertical
5131
     * Extent: Norway (offshore) and Svalbard and Jan Mayen (offshore).
5132
     * LAT (sum of all harmonic constituents) with an added safety margin in areas where low water levels frequently
5133
     * deviate from LAT. The safety margin is 20 cm from Utsira to the Swedish border and 30 cm in the inner part of
5134
     * the Oslofjord (north of Drøbak).
5135
     * Prior to 2000-01-01 the definition of chart datum was Z0 = M2 + S2 + N2 + K2 + K1 + ½Sa plus safety margins (10
5136
     * cm north of Hordaland, 20 cm in Hordaland, 30 cm from Rogaland to the Swedish border and 40 cm in the inner
5137
     * parts of the Oslofjord).
5138
     */
5139
    public const EPSG_NORWEGIAN_CHART_DATUM = 'urn:ogc:def:datum:EPSG::1301';
5140
5141
    /**
5142
     * Not specified (based on Airy 1830 ellipsoid)
5143
     * Type: Geodetic
5144
     * Extent: World.
5145
     * Included for coordinate reference systems where datum is unknown.
5146
     */
5147
    public const EPSG_NOT_SPECIFIED_BASED_ON_AIRY_1830_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6001';
5148
5149
    /**
5150
     * Not specified (based on Airy Modified 1849 ellipsoid)
5151
     * Type: Geodetic
5152
     * Extent: World.
5153
     * Included for coordinate reference systems where datum is unknown.
5154
     */
5155
    public const EPSG_NOT_SPECIFIED_BASED_ON_AIRY_MODIFIED_1849_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6002';
5156
5157
    /**
5158
     * Not specified (based on Australian National Spheroid)
5159
     * Type: Geodetic
5160
     * Extent: World.
5161
     * Included for coordinate reference systems where datum is unknown.
5162
     */
5163
    public const EPSG_NOT_SPECIFIED_BASED_ON_AUSTRALIAN_NATIONAL_SPHEROID = 'urn:ogc:def:datum:EPSG::6003';
5164
5165
    /**
5166
     * Not specified (based on Average Terrestrial System 1977 ellipsoid)
5167
     * Type: Geodetic
5168
     * Extent: World.
5169
     * Included for coordinate reference systems where datum is unknown.
5170
     */
5171
    public const EPSG_NOT_SPECIFIED_BASED_ON_AVERAGE_TERRESTRIAL_SYSTEM_1977_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6041';
5172
5173
    /**
5174
     * Not specified (based on Bessel 1841 ellipsoid)
5175
     * Type: Geodetic
5176
     * Extent: World.
5177
     * Included for coordinate reference systems where datum is unknown.
5178
     */
5179
    public const EPSG_NOT_SPECIFIED_BASED_ON_BESSEL_1841_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6004';
5180
5181
    /**
5182
     * Not specified (based on Bessel Modified ellipsoid)
5183
     * Type: Geodetic
5184
     * Extent: World.
5185
     * Included for coordinate reference systems where datum is unknown.
5186
     */
5187
    public const EPSG_NOT_SPECIFIED_BASED_ON_BESSEL_MODIFIED_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6005';
5188
5189
    /**
5190
     * Not specified (based on Bessel Namibia ellipsoid)
5191
     * Type: Geodetic
5192
     * Extent: World.
5193
     * Included for coordinate reference systems where datum is unknown.
5194
     */
5195
    public const EPSG_NOT_SPECIFIED_BASED_ON_BESSEL_NAMIBIA_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6006';
5196
5197
    /**
5198
     * Not specified (based on Clarke 1858 ellipsoid)
5199
     * Type: Geodetic
5200
     * Extent: World.
5201
     * Included for coordinate reference systems where datum is unknown.
5202
     */
5203
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1858_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6007';
5204
5205
    /**
5206
     * Not specified (based on Clarke 1866 Authalic Sphere)
5207
     * Type: Geodetic
5208
     * Extent: World.
5209
     * Included for coordinate reference systems where datum is unknown.
5210
     */
5211
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1866_AUTHALIC_SPHERE = 'urn:ogc:def:datum:EPSG::6052';
5212
5213
    /**
5214
     * Not specified (based on Clarke 1866 ellipsoid)
5215
     * Type: Geodetic
5216
     * Extent: World.
5217
     * Included for coordinate reference systems where datum is unknown.
5218
     */
5219
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1866_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6008';
5220
5221
    /**
5222
     * Not specified (based on Clarke 1880 (Arc) ellipsoid)
5223
     * Type: Geodetic
5224
     * Extent: World.
5225
     * Included for coordinate reference systems where datum is unknown.
5226
     */
5227
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_ARC_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6013';
5228
5229
    /**
5230
     * Not specified (based on Clarke 1880 (Benoit) ellipsoid)
5231
     * Type: Geodetic
5232
     * Extent: World.
5233
     * Included for coordinate reference systems where datum is unknown.
5234
     */
5235
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_BENOIT_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6010';
5236
5237
    /**
5238
     * Not specified (based on Clarke 1880 (IGN) ellipsoid)
5239
     * Type: Geodetic
5240
     * Extent: World.
5241
     * Included for coordinate reference systems where datum is unknown.
5242
     */
5243
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_IGN_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6011';
5244
5245
    /**
5246
     * Not specified (based on Clarke 1880 (RGS) ellipsoid)
5247
     * Type: Geodetic
5248
     * Extent: World.
5249
     * Included for coordinate reference systems where datum is unknown.
5250
     */
5251
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_RGS_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6012';
5252
5253
    /**
5254
     * Not specified (based on Clarke 1880 (SGA 1922) ellipsoid)
5255
     * Type: Geodetic
5256
     * Extent: World.
5257
     * Included for coordinate reference systems where datum is unknown.
5258
     */
5259
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_SGA_1922_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6014';
5260
5261
    /**
5262
     * Not specified (based on Clarke 1880 ellipsoid)
5263
     * Type: Geodetic
5264
     * Extent: World.
5265
     * Included for coordinate reference systems where datum is unknown.
5266
     */
5267
    public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6034';
5268
5269
    /**
5270
     * Not specified (based on Everest (1830 Definition) ellipsoid)
5271
     * Type: Geodetic
5272
     * Extent: World.
5273
     * Included for coordinate reference systems where datum is unknown.
5274
     */
5275
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_DEFINITION_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6042';
5276
5277
    /**
5278
     * Not specified (based on Everest 1830 (1937 Adjustment) ellipsoid)
5279
     * Type: Geodetic
5280
     * Extent: World.
5281
     * Included for coordinate reference systems where datum is unknown.
5282
     */
5283
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_1937_ADJUSTMENT_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6015';
5284
5285
    /**
5286
     * Not specified (based on Everest 1830 (1962 Definition) ellipsoid)
5287
     * Type: Geodetic
5288
     * Extent: World.
5289
     * Included for coordinate reference systems where datum is unknown.
5290
     */
5291
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_1962_DEFINITION_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6044';
5292
5293
    /**
5294
     * Not specified (based on Everest 1830 (1967 Definition) ellipsoid)
5295
     * Type: Geodetic
5296
     * Extent: World.
5297
     * Included for coordinate reference systems where datum is unknown.
5298
     */
5299
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_1967_DEFINITION_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6016';
5300
5301
    /**
5302
     * Not specified (based on Everest 1830 (1975 Definition) ellipsoid)
5303
     * Type: Geodetic
5304
     * Extent: World.
5305
     * Included for coordinate reference systems where datum is unknown.
5306
     */
5307
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_1975_DEFINITION_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6045';
5308
5309
    /**
5310
     * Not specified (based on Everest 1830 Modified ellipsoid)
5311
     * Type: Geodetic
5312
     * Extent: World.
5313
     * Included for coordinate reference systems where datum is unknown.
5314
     */
5315
    public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_MODIFIED_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6018';
5316
5317
    /**
5318
     * Not specified (based on GEM 10C ellipsoid)
5319
     * Type: Geodetic
5320
     * Extent: World.
5321
     * Included for coordinate reference systems where datum is unknown.
5322
     */
5323
    public const EPSG_NOT_SPECIFIED_BASED_ON_GEM_10C_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6031';
5324
5325
    /**
5326
     * Not specified (based on GRS 1967 ellipsoid)
5327
     * Type: Geodetic
5328
     * Extent: World.
5329
     * Included for coordinate reference systems where datum is unknown.
5330
     */
5331
    public const EPSG_NOT_SPECIFIED_BASED_ON_GRS_1967_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6036';
5332
5333
    /**
5334
     * Not specified (based on GRS 1980 Authalic Sphere)
5335
     * Type: Geodetic
5336
     * Extent: World.
5337
     * Included for coordinate reference systems where datum is unknown.
5338
     */
5339
    public const EPSG_NOT_SPECIFIED_BASED_ON_GRS_1980_AUTHALIC_SPHERE = 'urn:ogc:def:datum:EPSG::6047';
5340
5341
    /**
5342
     * Not specified (based on GRS 1980 ellipsoid)
5343
     * Type: Geodetic
5344
     * Extent: World.
5345
     * Included for coordinate reference systems where datum is unknown.
5346
     */
5347
    public const EPSG_NOT_SPECIFIED_BASED_ON_GRS_1980_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6019';
5348
5349
    /**
5350
     * Not specified (based on Helmert 1906 ellipsoid)
5351
     * Type: Geodetic
5352
     * Extent: World.
5353
     * Included for coordinate reference systems where datum is unknown.
5354
     */
5355
    public const EPSG_NOT_SPECIFIED_BASED_ON_HELMERT_1906_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6020';
5356
5357
    /**
5358
     * Not specified (based on Hughes 1980 ellipsoid)
5359
     * Type: Geodetic
5360
     * Extent: World.
5361
     * Included for coordinate reference systems where datum is unknown.
5362
     */
5363
    public const EPSG_NOT_SPECIFIED_BASED_ON_HUGHES_1980_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6054';
5364
5365
    /**
5366
     * Not specified (based on Indonesian National Spheroid)
5367
     * Type: Geodetic
5368
     * Extent: World.
5369
     * Included for coordinate reference systems where datum is unknown.
5370
     */
5371
    public const EPSG_NOT_SPECIFIED_BASED_ON_INDONESIAN_NATIONAL_SPHEROID = 'urn:ogc:def:datum:EPSG::6021';
5372
5373
    /**
5374
     * Not specified (based on International 1924 Authalic Sphere)
5375
     * Type: Geodetic
5376
     * Extent: World.
5377
     * Included for coordinate reference systems where datum is unknown.
5378
     */
5379
    public const EPSG_NOT_SPECIFIED_BASED_ON_INTERNATIONAL_1924_AUTHALIC_SPHERE = 'urn:ogc:def:datum:EPSG::6053';
5380
5381
    /**
5382
     * Not specified (based on International 1924 ellipsoid)
5383
     * Type: Geodetic
5384
     * Extent: World.
5385
     * Included for coordinate reference systems where datum is unknown.
5386
     */
5387
    public const EPSG_NOT_SPECIFIED_BASED_ON_INTERNATIONAL_1924_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6022';
5388
5389
    /**
5390
     * Not specified (based on Krassowsky 1940 ellipsoid)
5391
     * Type: Geodetic
5392
     * Extent: World.
5393
     * Included for coordinate reference systems where datum is unknown.
5394
     */
5395
    public const EPSG_NOT_SPECIFIED_BASED_ON_KRASSOWSKY_1940_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6024';
5396
5397
    /**
5398
     * Not specified (based on NWL 9D ellipsoid)
5399
     * Type: Geodetic
5400
     * Extent: World.
5401
     * Included for coordinate reference systems where datum is unknown.
5402
     */
5403
    public const EPSG_NOT_SPECIFIED_BASED_ON_NWL_9D_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6025';
5404
5405
    /**
5406
     * Not specified (based on OSU86F ellipsoid)
5407
     * Type: Geodetic
5408
     * Extent: World.
5409
     * Included for coordinate reference systems where datum is unknown.
5410
     */
5411
    public const EPSG_NOT_SPECIFIED_BASED_ON_OSU86F_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6032';
5412
5413
    /**
5414
     * Not specified (based on OSU91A ellipsoid)
5415
     * Type: Geodetic
5416
     * Extent: World.
5417
     * Included for coordinate reference systems where datum is unknown.
5418
     */
5419
    public const EPSG_NOT_SPECIFIED_BASED_ON_OSU91A_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6033';
5420
5421
    /**
5422
     * Not specified (based on Plessis 1817 ellipsoid)
5423
     * Type: Geodetic
5424
     * Extent: World.
5425
     * Included for coordinate reference systems where datum is unknown.
5426
     */
5427
    public const EPSG_NOT_SPECIFIED_BASED_ON_PLESSIS_1817_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6027';
5428
5429
    /**
5430
     * Not specified (based on Struve 1860 ellipsoid)
5431
     * Type: Geodetic
5432
     * Extent: World.
5433
     * Included for coordinate reference systems where datum is unknown.
5434
     */
5435
    public const EPSG_NOT_SPECIFIED_BASED_ON_STRUVE_1860_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6028';
5436
5437
    /**
5438
     * Not specified (based on WGS 72 ellipsoid)
5439
     * Type: Geodetic
5440
     * Extent: World.
5441
     * Included for coordinate reference systems where datum is unknown.
5442
     */
5443
    public const EPSG_NOT_SPECIFIED_BASED_ON_WGS_72_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6043';
5444
5445
    /**
5446
     * Not specified (based on WGS 84 ellipsoid)
5447
     * Type: Geodetic
5448
     * Extent: World.
5449
     * Included for coordinate reference systems where datum is unknown.
5450
     */
5451
    public const EPSG_NOT_SPECIFIED_BASED_ON_WGS_84_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6030';
5452
5453
    /**
5454
     * Not specified (based on War Office ellipsoid)
5455
     * Type: Geodetic
5456
     * Extent: World.
5457
     * Included for coordinate reference systems where datum is unknown.
5458
     */
5459
    public const EPSG_NOT_SPECIFIED_BASED_ON_WAR_OFFICE_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6029';
5460
5461
    /**
5462
     * Nouakchott 1965
5463
     * Type: Geodetic
5464
     * Extent: Mauritania - coastal area south of Cape Timiris.
5465
     * Nouakchott astronomical point.
5466
     * Triangulation limited to environs of Nouakchott. Extended in 1982 by satellite translocation from a single
5467
     * station "Ruines" to support Syledis chain for offshore operations. Replaced by Mauritania 1999 (datum code
5468
     * 6602).
5469
     */
5470
    public const EPSG_NOUAKCHOTT_1965 = 'urn:ogc:def:datum:EPSG::6680';
5471
5472
    /**
5473
     * Nouvelle Triangulation Francaise
5474
     * Type: Geodetic
5475
     * Extent: France - onshore - mainland and Corsica.
5476
     * Fundamental point: Pantheon. Latitude: 48°50'46.522"N, longitude: 2°20'48.667"E (of Greenwich).
5477
     */
5478
    public const EPSG_NOUVELLE_TRIANGULATION_FRANCAISE = 'urn:ogc:def:datum:EPSG::6275';
5479
5480
    /**
5481
     * Nouvelle Triangulation Francaise (Paris)
5482
     * Type: Geodetic
5483
     * Extent: France - onshore - mainland and Corsica.
5484
     * Fundamental point: Pantheon. Latitude: 54.273618g N, longitude: 0.0106921g E (of Paris).
5485
     */
5486
    public const EPSG_NOUVELLE_TRIANGULATION_FRANCAISE_PARIS = 'urn:ogc:def:datum:EPSG::6807';
5487
5488
    /**
5489
     * OS (SN) 1980
5490
     * Type: Geodetic
5491
     * Extent: Ireland - onshore. United Kingdom (UK) - onshore - England; Scotland; Wales; Northern Ireland. Isle of
5492
     * Man.
5493
     * Fundamental point: Herstmonceux. Latitude: 50°51'55.271"N, longitude: 0°20'45.882"E (of Greenwich).
5494
     */
5495
    public const EPSG_OS_SN_1980 = 'urn:ogc:def:datum:EPSG::6279';
5496
5497
    /**
5498
     * OSGB 1970 (SN)
5499
     * Type: Geodetic
5500
     * Extent: United Kingdom (UK) - Great Britain - England and Wales onshore, Scotland onshore and Western Isles
5501
     * nearshore including Sea of the Hebrides and The Minch; Isle of Man onshore.
5502
     * Fundamental point: Herstmonceux. Latitude: 50°51'55.271"N, longitude: 0°20'45.882"E (of Greenwich).
5503
     */
5504
    public const EPSG_OSGB_1970_SN = 'urn:ogc:def:datum:EPSG::6278';
5505
5506
    /**
5507
     * OSNI 1952
5508
     * Type: Geodetic
5509
     * Extent: United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
5510
     * Position fixed to the coordinates from the 19th century Principle Triangulation of station Divis. Scale and
5511
     * orientation controlled by position of Principle Triangulation stations Knocklayd and Trostan.
5512
     * Replaced by Geodetic Datum of 1965 alias 1975 Mapping Adjustment or TM75 (datum code 6300).
5513
     */
5514
    public const EPSG_OSNI_1952 = 'urn:ogc:def:datum:EPSG::6188';
5515
5516
    /**
5517
     * Observatario
5518
     * Type: Geodetic
5519
     * Extent: Mozambique - south.
5520
     * Fundamental point: Campos Rodrigues observatory, Maputo.
5521
     * Replaced by transformation to Tete datum (datum code 6127).
5522
     */
5523
    public const EPSG_OBSERVATARIO = 'urn:ogc:def:datum:EPSG::6129';
5524
5525
    /**
5526
     * Ocotepeque 1935
5527
     * Type: Geodetic
5528
     * Extent: Costa Rica; El Salvador; Guatemala; Honduras; Nicaragua.
5529
     * Fundamental point: Base Norte. Latitude: 14°26'20.168"N, longitude: 89°11'33.964"W.
5530
     * Replaced in Costa Rica by Costa Rica 2005 (CR05) from March 2007 and replaced in El Salvador by SIRGAS_ES2007
5531
     * from August 2007.
5532
     */
5533
    public const EPSG_OCOTEPEQUE_1935 = 'urn:ogc:def:datum:EPSG::1070';
5534
5535
    /**
5536
     * Old Hawaiian
5537
     * Type: Geodetic
5538
     * Extent: United States (USA) - Hawaii - main islands onshore.
5539
     * Fundamental point: Oahu West Base Astro.  Latitude: 21°18'13.89"N, longitude 157°50'55.79"W (of Greenwich)
5540
     * Hawaiian Islands were never on NAD27 but rather on Old Hawaiian Datum. NADCON conversion program provides
5541
     * transformation from Old Hawaiian Datum to NAD83 (original 1986 realization) but making the transformation appear
5542
     * to user as if from NAD27.
5543
     */
5544
    public const EPSG_OLD_HAWAIIAN = 'urn:ogc:def:datum:EPSG::6135';
5545
5546
    /**
5547
     * Oman National Geodetic Datum 2014
5548
     * Type: Geodetic
5549
     * Extent: Oman - onshore and offshore.
5550
     * 20 stations of the Oman primary network tied to ITRF2008 at epoch 2013.15.
5551
     * Replaces WGS 84 (G873). Replaced by ONGD17.
5552
     */
5553
    public const EPSG_OMAN_NATIONAL_GEODETIC_DATUM_2014 = 'urn:ogc:def:datum:EPSG::1147';
5554
5555
    /**
5556
     * Oman National Geodetic Datum 2017
5557
     * Type: Geodetic
5558
     * Extent: Oman - onshore and offshore.
5559
     * Oman primary network of 39 stations tied to ITRF2014 at epoch 2017.24.
5560
     * Replaces ONGD14 from March 2019.
5561
     */
5562
    public const EPSG_OMAN_NATIONAL_GEODETIC_DATUM_2017 = 'urn:ogc:def:datum:EPSG::1263';
5563
5564
    /**
5565
     * One Tree Point 1964
5566
     * Type: Vertical
5567
     * Extent: New Zealand - North Island - One Tree Point vertical CRS area.
5568
     * MSL at Whangarei harbour 1960-1963.
5569
     */
5570
    public const EPSG_ONE_TREE_POINT_1964 = 'urn:ogc:def:datum:EPSG::5165';
5571
5572
    /**
5573
     * Ordnance Datum Newlyn
5574
     * Type: Vertical
5575
     * Extent: United Kingdom (UK) - Great Britain onshore - England and Wales - mainland; Scotland - mainland and
5576
     * Inner Hebrides.
5577
     * Mean Sea Level at Newlyn between 1915 and 1921. Initially realised through 1921 and then 1956 levelling network
5578
     * adjustments. From 2002 redefined to be realised through OSGM geoid models.
5579
     * Orthometric heights.
5580
     */
5581
    public const EPSG_ORDNANCE_DATUM_NEWLYN = 'urn:ogc:def:datum:EPSG::5101';
5582
5583
    /**
5584
     * Ordnance Datum Newlyn (Offshore)
5585
     * Type: Vertical
5586
     * Extent: United Kingdom (UK) - offshore between 2km from shore and boundary of UKCS within 49°45'N to 61°N and
5587
     * 9°W to 2°E.
5588
     * Defined by OSGM geoid model.
5589
     * Extension of Ordnance Datum Newlyn offshore through geoid model. Orthometric heights.
5590
     */
5591
    public const EPSG_ORDNANCE_DATUM_NEWLYN_OFFSHORE = 'urn:ogc:def:datum:EPSG::1164';
5592
5593
    /**
5594
     * Ordnance Datum Newlyn (Orkney Isles)
5595
     * Type: Vertical
5596
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Orkney Islands onshore.
5597
     * Connected to Newlyn datum by triangulation from the British mainland. Initially realised through levelling
5598
     * network adjustment, from 2002 redefined to be realised through OSGM geoid model.
5599
     * Considered as separate from Newlyn because the accuracy of the trigonometric connection across the Pentland
5600
     * Firth does not meet geodetic levelling specifications. Orthometric heights.
5601
     */
5602
    public const EPSG_ORDNANCE_DATUM_NEWLYN_ORKNEY_ISLES = 'urn:ogc:def:datum:EPSG::5138';
5603
5604
    /**
5605
     * Ordnance Survey of Great Britain 1936
5606
     * Type: Geodetic
5607
     * Extent: United Kingdom (UK) - offshore to boundary of UKCS within 49°45'N to 61°N and 9°W to 2°E; onshore
5608
     * Great Britain (England, Wales and Scotland). Isle of Man onshore.
5609
     * Prior to 2002 fundamental point: Herstmonceux, Latitude: 50°51'55.271"N, longitude: 0°20'45.882"E,
5610
     * triangulation adjustment started 1936, completed 1962. From April 2002 the datum is defined through the
5611
     * application of the OSTN transformation from ETRS89.
5612
     * The average accuracy of OSTN compared to the old triangulation network (down to 3rd order) is 0.1m. With the
5613
     * introduction of OSTN15, the area for OGSB36 has effectively been extended from Britain to cover the adjacent UK
5614
     * Continental Shelf.
5615
     */
5616
    public const EPSG_ORDNANCE_SURVEY_OF_GREAT_BRITAIN_1936 = 'urn:ogc:def:datum:EPSG::6277';
5617
5618
    /**
5619
     * Ostend
5620
     * Type: Vertical
5621
     * Extent: Belgium - onshore.
5622
     * Mean low water at Ostend 1855-78 transferred to benchmark GIKMN at Uccle.
5623
     * Realized through the second general levelling (DNG or TAW) 1981-1999.
5624
     */
5625
    public const EPSG_OSTEND = 'urn:ogc:def:datum:EPSG::5110';
5626
5627
    /**
5628
     * PDO Height Datum 1993
5629
     * Type: Vertical
5630
     * Extent: Oman - onshore. Includes Musandam and the Kuria Muria (Al Hallaniyah) islands.
5631
     * Misclosure between Muscat and Salalah less than .5 meters with differences from of up to 5 meters from old Fahud
5632
     * Datum. The PHD93 adjustment was initially known as the Spine. Replaces Fahud Vertical Datum (code 5124) from
5633
     * 1993.
5634
     */
5635
    public const EPSG_PDO_HEIGHT_DATUM_1993 = 'urn:ogc:def:datum:EPSG::5123';
5636
5637
    /**
5638
     * PDO Survey Datum 1993
5639
     * Type: Geodetic
5640
     * Extent: Oman - onshore. Includes Musandam and the Kuria Muria (Al Hallaniyah) islands.
5641
     * Adjustment best fitted to Fahud network.
5642
     * Replaces Fahud datum (code 6232). Maximum differences to Fahud adjustment are 20 metres.
5643
     */
5644
    public const EPSG_PDO_SURVEY_DATUM_1993 = 'urn:ogc:def:datum:EPSG::6134';
5645
5646
    /**
5647
     * PNG08
5648
     * Type: Vertical
5649
     * Extent: Papua New Guinea - between 0°N and 12°S and 140°E and 158°E - onshore and offshore.
5650
     * Mean sea level at 8 tide gauges around PNG, defined through application of PNG08 geoid model (transformation
5651
     * code 7655) to PNG94 (CRS code 5545).
5652
     */
5653
    public const EPSG_PNG08 = 'urn:ogc:def:datum:EPSG::1149';
5654
5655
    /**
5656
     * Palestine 1923
5657
     * Type: Geodetic
5658
     * Extent: Israel - onshore; Jordan; Palestine Territory - onshore.
5659
     * Fundamental point: Point 82'M  Jerusalem. Latitude: 31°44' 2.749"N, longitude: 35°12'43.490"E (of Greenwich).
5660
     */
5661
    public const EPSG_PALESTINE_1923 = 'urn:ogc:def:datum:EPSG::6281';
5662
5663
    /**
5664
     * Pampa del Castillo
5665
     * Type: Geodetic
5666
     * Extent: Argentina - Chibut province south of approximately 42°30'S and Santa Cruz province north of
5667
     * approximately 50°20'S.
5668
     * Replaced by Campo Inchauspe (code 6221) for topographic mapping, use for oil exploration and production in Golfo
5669
     * San Jorge basin (44°S to 47.5°S) continues.
5670
     */
5671
    public const EPSG_PAMPA_DEL_CASTILLO = 'urn:ogc:def:datum:EPSG::6161';
5672
5673
    /**
5674
     * Panama-Colon 1911
5675
     * Type: Geodetic
5676
     * Extent: Panama - onshore.
5677
     * Fundamental point: Balboa Hill. Latitude: 09°04'57.637"N, longtitude: 79°43'50.313"W.
5678
     * Reports of the existence of an Ancon datum are probably erroneous, considering that the origin of the
5679
     * Panamá-Colón Datum of 1911 is at Balboa Hill and the access road up the hill is from the town of Ancon, Canal
5680
     * Zone.
5681
     */
5682
    public const EPSG_PANAMA_COLON_1911 = 'urn:ogc:def:datum:EPSG::1072';
5683
5684
    /**
5685
     * Papua New Guinea Geodetic Datum 1994
5686
     * Type: Geodetic
5687
     * Extent: Papua New Guinea - onshore and offshore. Includes Bismark archipelago, Louisade archipelago, Admiralty
5688
     * Islands, d'Entrecasteaux Islands, northern Solomon Islands, Trobriand Islands, New Britain, New Ireland,
5689
     * Woodlark, and associated islands.
5690
     * ITRF92 at epoch 1994.0.
5691
     * Adopted 1996. Coincident with WGS 84 in 1994 but rapidly divergent due to significant tectonic motion in PNG.
5692
     */
5693
    public const EPSG_PAPUA_NEW_GUINEA_GEODETIC_DATUM_1994 = 'urn:ogc:def:datum:EPSG::1076';
5694
5695
    /**
5696
     * Parametry Zemli 1990
5697
     * Type: Dynamic geodetic
5698
     * Extent: World.
5699
     * Defined through coordinates of stations of the satellite geodetic network (SGN) in Russia at epoch 1990.0.
5700
     * Replaced by PZ-90.02 from 2007-09-20.
5701
     */
5702
    public const EPSG_PARAMETRY_ZEMLI_1990 = 'urn:ogc:def:datum:EPSG::6740';
5703
5704
    /**
5705
     * Parametry Zemli 1990.02
5706
     * Type: Dynamic geodetic
5707
     * Extent: World.
5708
     * Defined through coordinates of 33 stations of the satellite geodetic network (SGN) in Russia and Antarctica
5709
     * adjusted to a subset of 14 IGS stations in Russia at epoch 2002.0. The IGS station coordinates are considered to
5710
     * be equivalent to ITRF2000.
5711
     * Replaces PZ-90 from 2007-09-20. Replaced by PZ-90.11 from 2014-01-15.
5712
     */
5713
    public const EPSG_PARAMETRY_ZEMLI_1990_02 = 'urn:ogc:def:datum:EPSG::1157';
5714
5715
    /**
5716
     * Parametry Zemli 1990.11
5717
     * Type: Dynamic geodetic
5718
     * Extent: World.
5719
     * Defined through coordinates of 33 stations of the satellite geodetic network (SGN) in Russia and Antarctica
5720
     * adjusted to a subset of 14 IGS stations in Russia at epoch 2010.0. The IGS station coordinates are considered to
5721
     * be equivalent to ITRF2008.
5722
     * Replaces PZ-90.02 from 2014-01-15.
5723
     */
5724
    public const EPSG_PARAMETRY_ZEMLI_1990_11 = 'urn:ogc:def:datum:EPSG::1158';
5725
5726
    /**
5727
     * Peru96
5728
     * Type: Geodetic
5729
     * Extent: Peru - onshore and offshore.
5730
     * Densification of SIRGAS95 network (ITRF94 at epoch 1995.4) in Peru, consisting of 47 passive geodetic stations
5731
     * and 3 continuous recording GPS stations.
5732
     * Densification of SIRGAS 1995 within Peru. Replaces PSAD56 (datum code 6248) in Peru.
5733
     */
5734
    public const EPSG_PERU96 = 'urn:ogc:def:datum:EPSG::1067';
5735
5736
    /**
5737
     * Petrels 1972
5738
     * Type: Geodetic
5739
     * Extent: Antarctica - Adelie Land - Petrels island.
5740
     * Fundamental point: Astro station DZ on Ile de Petrels. Latitude: 66°40'00"S, longitude: 140°00'46"E (of
5741
     * Greenwich).
5742
     */
5743
    public const EPSG_PETRELS_1972 = 'urn:ogc:def:datum:EPSG::6636';
5744
5745
    /**
5746
     * Philippine Reference System 1992
5747
     * Type: Geodetic
5748
     * Extent: Philippines - onshore and offshore.
5749
     * Fundamental point: Balacan. Latitude: 13°33'41.000"N, longitude: 121°52'03.000"E (of Greenwich),
5750
     * geoid-ellipsoid separation 0.34m.
5751
     * Replaces Luzon 1911 datum (code 6253).
5752
     */
5753
    public const EPSG_PHILIPPINE_REFERENCE_SYSTEM_1992 = 'urn:ogc:def:datum:EPSG::6683';
5754
5755
    /**
5756
     * Phoenix Islands 1966
5757
     * Type: Geodetic
5758
     * Extent: Kiribati - Phoenix Islands: Kanton, Orona, McKean Atoll, Birnie Atoll, Phoenix Seamounts.
5759
     */
5760
    public const EPSG_PHOENIX_ISLANDS_1966 = 'urn:ogc:def:datum:EPSG::6716';
5761
5762
    /**
5763
     * Pico de las Nieves 1968
5764
     * Type: Geodetic
5765
     * Extent: Spain - Canary Islands onshore.
5766
     * Pico de las Nieves mountain, Gran Canaria. The fundamental point is a different station to that for PN84.
5767
     * Replaced by PN84 only on western islands (El Hierro, La Gomera, La Palma and Tenerife). Both PN68 and PN84
5768
     * replaced by REGCAN95.
5769
     */
5770
    public const EPSG_PICO_DE_LAS_NIEVES_1968 = 'urn:ogc:def:datum:EPSG::1286';
5771
5772
    /**
5773
     * Pico de las Nieves 1984
5774
     * Type: Geodetic
5775
     * Extent: Spain - Canary Islands - El Hierro, La Gomera, La Palma and Tenerife - onshore.
5776
     * Pico de las Nieves mountain, Gran Canaria. The fundamental point is a different station to that for PN68.
5777
     * Replaces Pico de las Nieves 1968 (PN68) only on western islands (El Hierro, La Gomera, La Palma and Tenerife).
5778
     * Replaced by REGCAN95.
5779
     */
5780
    public const EPSG_PICO_DE_LAS_NIEVES_1984 = 'urn:ogc:def:datum:EPSG::6728';
5781
5782
    /**
5783
     * Piraeus Harbour 1986
5784
     * Type: Vertical
5785
     * Extent: Greece - onshore.
5786
     * MSL determined during 1986.
5787
     */
5788
    public const EPSG_PIRAEUS_HARBOUR_1986 = 'urn:ogc:def:datum:EPSG::5115';
5789
5790
    /**
5791
     * Pitcairn 1967
5792
     * Type: Geodetic
5793
     * Extent: Pitcairn - Pitcairn Island.
5794
     * Fundamental point: Pitcairn Astro. Latitude: 25°04'06.87"S, longitude: 130°06'47.83"W (of Greenwich).
5795
     * Replaced by Pitcairn 2006.
5796
     */
5797
    public const EPSG_PITCAIRN_1967 = 'urn:ogc:def:datum:EPSG::6729';
5798
5799
    /**
5800
     * Pitcairn 2006
5801
     * Type: Geodetic
5802
     * Extent: Pitcairn - Pitcairn Island.
5803
     * Fundamental point: Pitcairn Astro. Latitude: 25°04'06.7894"S, longitude: 130°06'46.6816"W (of Greenwich),
5804
     * derived by single point GPS oberservations.
5805
     * Replaces Pitcairn 1967.
5806
     */
5807
    public const EPSG_PITCAIRN_2006 = 'urn:ogc:def:datum:EPSG::6763';
5808
5809
    /**
5810
     * Point 58
5811
     * Type: Geodetic
5812
     * Extent: Senegal - central, Mali - southwest, Burkina Faso - central, Niger - southwest, Nigeria - north, Chad -
5813
     * central. All in proximity to the parallel of latitude of 12°N.
5814
     * Fundamental point: Point 58. Latitude: 12°52'44.045"N, longitude: 3°58'37.040"E (of Greenwich).
5815
     * Used as the basis for computation of the 12th Parallel traverse conducted 1966-70 from Senegal to Chad and
5816
     * connecting to the Blue Nile 1958 (Adindan) triangulation in Sudan.
5817
     */
5818
    public const EPSG_POINT_58 = 'urn:ogc:def:datum:EPSG::6620';
5819
5820
    /**
5821
     * Pointe Geologie Perroud 1950
5822
     * Type: Geodetic
5823
     * Extent: Antarctica - Adelie Land - coastal area between 136°E and 142°E.
5824
     * Fundamental point: Astro station G.0 on Pointe Geologie. Latitude: 66°39'30"S, longitude: 140°01'00"E (of
5825
     * Greenwich).
5826
     */
5827
    public const EPSG_POINTE_GEOLOGIE_PERROUD_1950 = 'urn:ogc:def:datum:EPSG::6637';
5828
5829
    /**
5830
     * Ponta Delgada
5831
     * Type: Vertical
5832
     * Extent: Portugal - eastern Azores - Sao Miguel island onshore.
5833
     * Mean Sea Level during 1991 at Ponta Delgada.
5834
     * Orthometric heights.
5835
     */
5836
    public const EPSG_PONTA_DELGADA = 'urn:ogc:def:datum:EPSG::1110';
5837
5838
    /**
5839
     * Poolbeg
5840
     * Type: Vertical
5841
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
5842
     * Low water mark of the spring tide on the 8 April 1837 at Poolbeg Lighthouse, Dublin.
5843
     * Topographic mapping before 1956 in Northern Ireland and 1970 in the Republic of Ireland. Replaced by Belfast
5844
     * Lough and Malin Head (datum codes 5130-31).
5845
     */
5846
    public const EPSG_POOLBEG = 'urn:ogc:def:datum:EPSG::5152';
5847
5848
    /**
5849
     * Port Moresby 1996
5850
     * Type: Vertical
5851
     * Extent: Papua New Guinea - onshore - Gulf province east of 144°24'E, Central province and National Capital
5852
     * District.
5853
     * BM198 (adjacent to the Port Moresby tide gauge) height of 3.02 above MSL as determined by CSIRO in 1990.
5854
     * Propagated through bilinear interpolation of EGM96 geoid model (transformation code 10084) reduced by offset of
5855
     * -1.58m.
5856
     * Offset has been determined by static GNSS estimation of ellipsoid height of BM198.
5857
     */
5858
    public const EPSG_PORT_MORESBY_1996 = 'urn:ogc:def:datum:EPSG::1171';
5859
5860
    /**
5861
     * Port Moresby 2008
5862
     * Type: Vertical
5863
     * Extent: Papua New Guinea - onshore - Gulf province east of 144°24'E, Central province and National Capital
5864
     * District.
5865
     * BM198 (adjacent to the Port Moresby tide gauge) height of 3.02 above MSL as determined by CSIRO in 1990.
5866
     * Propagated through bilinear interpolation of EGM2008 geoid model (transformation code 3858 or 3859) reduced by
5867
     * offset of -0.93m.
5868
     * Offset has been determined by static GNSS estimation of ellipsoid height of BM198 validated to a precision of 10
5869
     * cm by short period tidal observations at Kerema wharf in 2010.
5870
     */
5871
    public const EPSG_PORT_MORESBY_2008 = 'urn:ogc:def:datum:EPSG::1172';
5872
5873
    /**
5874
     * Porto Santo 1936
5875
     * Type: Geodetic
5876
     * Extent: Portugal - Madeira, Porto Santo and Desertas islands - onshore.
5877
     * SE Base on Porto Santo island.
5878
     * Replaced by 1995 adjustment (datum code 6663). For Selvagens see Selvagem Grande (code 6616).
5879
     */
5880
    public const EPSG_PORTO_SANTO_1936 = 'urn:ogc:def:datum:EPSG::6615';
5881
5882
    /**
5883
     * Porto Santo 1995
5884
     * Type: Geodetic
5885
     * Extent: Portugal - Madeira, Porto Santo and Desertas islands - onshore.
5886
     * SE Base on Porto Santo island. Origin and orientation constrained to those of the 1936 adjustment.
5887
     * Classical and GPS observations. Replaces 1936 adjustment (datum code 6615).
5888
     * For Selvagens see Selvagem Grande (datum code 6616).
5889
     */
5890
    public const EPSG_PORTO_SANTO_1995 = 'urn:ogc:def:datum:EPSG::6663';
5891
5892
    /**
5893
     * Posiciones Geodesicas Argentinas 1994
5894
     * Type: Geodetic
5895
     * Extent: Argentina - onshore and offshore.
5896
     * WGS 84 coordinates at time of survey of a geodetic network of 127 points defining the National Geodetic System
5897
     * (Sistema Geodésico Nacional). Surveyed between February and April 1993 and between March and May 1994.
5898
     * Adopted as defining the National Geodetic Reference Network from 9th May 1997. Technically, but not legally,
5899
     * replaced by POSGAR 98 (datum code 6190) until 15th May 2009 when legally replaced by POSGAR 2007 (datum code
5900
     * 1062).
5901
     */
5902
    public const EPSG_POSICIONES_GEODESICAS_ARGENTINAS_1994 = 'urn:ogc:def:datum:EPSG::6694';
5903
5904
    /**
5905
     * Posiciones Geodesicas Argentinas 1998
5906
     * Type: Geodetic
5907
     * Extent: Argentina - onshore and offshore.
5908
     * A geodetic network of 136 high accuracy surveyed points. Densification of SIRGAS 1995; ITRF94 at epoch 1995.4.
5909
     * Replaced POSGAR 1994 (datum code 6694) for technical, but not legal, purposes. Replaced by POSGAR 2007 (datum
5910
     * code 1062) from May 2009.
5911
     */
5912
    public const EPSG_POSICIONES_GEODESICAS_ARGENTINAS_1998 = 'urn:ogc:def:datum:EPSG::6190';
5913
5914
    /**
5915
     * Posiciones Geodesicas Argentinas 2007
5916
     * Type: Geodetic
5917
     * Extent: Argentina - onshore and offshore.
5918
     * Coordinates of the geodetic network of 211 high accuracy surveyed points (178 passive and 33 continuously
5919
     * operating) defining the National Geodetic System (Sistema Geodésico Nacional) based on ITRF2005 at epoch
5920
     * 2006.632.
5921
     * Adopted by order of the Director of the National Geographic Institute on 15th May 2009 as the new National
5922
     * Geodetic Reference Frame. Replaces POSGAR 94.
5923
     */
5924
    public const EPSG_POSICIONES_GEODESICAS_ARGENTINAS_2007 = 'urn:ogc:def:datum:EPSG::1062';
5925
5926
    /**
5927
     * Potsdam Datum/83
5928
     * Type: Geodetic
5929
     * Extent: Germany - Thuringen.
5930
     * Fundamental point: Rauenberg. Latitude: 52°27'12.021"N, longitude: 13°22'04.928"E (of Greenwich). This station
5931
     * was destroyed in 1910 and the station at Potsdam substituted as the fundamental point.
5932
     * PD/83 is the realization of DHDN in Thuringen. It is the resultant of applying a transformation derived at 13
5933
     * points on the border between East and West Germany to Pulkovo 1942/83 points in Thuringen.
5934
     */
5935
    public const EPSG_POTSDAM_DATUM_83 = 'urn:ogc:def:datum:EPSG::6746';
5936
5937
    /**
5938
     * Principe
5939
     * Type: Geodetic
5940
     * Extent: Sao Tome and Principe - onshore - Principe.
5941
     * Fundamental point: Morro do Papagaio. Latitude: 1°36'46.87"N, longitude: 7°23'39.65"E (of Greenwich).
5942
     */
5943
    public const EPSG_PRINCIPE = 'urn:ogc:def:datum:EPSG::1046';
5944
5945
    /**
5946
     * Provisional South American Datum 1956
5947
     * Type: Geodetic
5948
     * Extent: Aruba - onshore; Bolivia; Bonaire - onshore; Brazil - offshore - Amazon Cone shelf; Chile - onshore
5949
     * north of 43°30'S; Curacao - onshore; Ecuador - mainland onshore; Guyana - onshore; Peru - onshore; Venezuela -
5950
     * onshore.
5951
     * Fundamental point: La Canoa. Latitude: 8°34'17.170"N, longitude: 63°51'34.880"W (of Greenwich).
5952
     * Same origin as La Canoa datum.
5953
     */
5954
    public const EPSG_PROVISIONAL_SOUTH_AMERICAN_DATUM_1956 = 'urn:ogc:def:datum:EPSG::6248';
5955
5956
    /**
5957
     * Puerto Rico
5958
     * Type: Geodetic
5959
     * Extent: Puerto Rico, US Virgin Islands and British Virgin Islands - onshore.
5960
     * Fundamental point: Cardona Island Lighthouse. Latitude:17°57'31.40"N, longitude: 66°38'07.53"W (of Greenwich).
5961
     * NADCON conversion program provides transformation from Puerto Rico Datum to NAD83 (original 1986 realization)
5962
     * but making the transformation appear to user as if from NAD27.
5963
     */
5964
    public const EPSG_PUERTO_RICO = 'urn:ogc:def:datum:EPSG::6139';
5965
5966
    /**
5967
     * Puerto Rico Vertical Datum of 2002
5968
     * Type: Vertical
5969
     * Extent: Puerto Rico - onshore.
5970
     * Mean sea level at San Juan. Benchmark 9756371 A TIDAL = 1.334m relative to National Tidal Datum Epoch 1960-1978.
5971
     * Replaces all earlier vertical datums for Puerto Rico.
5972
     */
5973
    public const EPSG_PUERTO_RICO_VERTICAL_DATUM_OF_2002 = 'urn:ogc:def:datum:EPSG::1123';
5974
5975
    /**
5976
     * Pulkovo 1942
5977
     * Type: Geodetic
5978
     * Extent: Armenia; Azerbaijan; Belarus; Estonia - onshore; Georgia - onshore; Kazakhstan; Kyrgyzstan; Latvia -
5979
     * onshore; Lithuania - onshore; Moldova; Russian Federation - onshore; Tajikistan; Turkmenistan; Ukraine -
5980
     * onshore; Uzbekistan.
5981
     * Fundamental point: Pulkovo observatory. Latitude: 59°46'18.550"N, longitude: 30°19'42.090"E (of Greenwich).
5982
     */
5983
    public const EPSG_PULKOVO_1942 = 'urn:ogc:def:datum:EPSG::6284';
5984
5985
    /**
5986
     * Pulkovo 1942(58)
5987
     * Type: Geodetic
5988
     * Extent: Onshore: Bulgaria, Czechia, Germany (former DDR), Hungary, Poland and Slovakia. Onshore and offshore:
5989
     * Albania and Romania.
5990
     * Fundamental point: Pulkovo observatory. Latitude: 59°46'18.550"N, longitude: 30°19'42.090"E (of Greenwich).
5991
     * 1956 international adjustment of Uniform Astro-Geodetic Network of countries of central and eastern Europe.
5992
     * Locally densified during 1957 and 1958.
5993
     */
5994
    public const EPSG_PULKOVO_1942_58 = 'urn:ogc:def:datum:EPSG::6179';
5995
5996
    /**
5997
     * Pulkovo 1942(83)
5998
     * Type: Geodetic
5999
     * Extent: Onshore Bulgaria, Czechia, Germany (former DDR), Hungary and Slovakia.
6000
     * Fundamental point: Pulkovo observatory. Latitude: 59°46'18.550"N, longitude: 30°19'42.090"E (of Greenwich).
6001
     * 1983 international adjustment of Uniform Astro-Geodetic Network of countries of central and eastern Europe.
6002
     */
6003
    public const EPSG_PULKOVO_1942_83 = 'urn:ogc:def:datum:EPSG::6178';
6004
6005
    /**
6006
     * Pulkovo 1995
6007
     * Type: Geodetic
6008
     * Extent: Russian Federation - onshore and offshore.
6009
     * Fundamental point: Pulkovo observatory. Latitude: 59°46'15.359"N, longitude: 30°19'28.318"E (of Greenwich).
6010
     */
6011
    public const EPSG_PULKOVO_1995 = 'urn:ogc:def:datum:EPSG::6200';
6012
6013
    /**
6014
     * Qatar 1948
6015
     * Type: Geodetic
6016
     * Extent: Qatar - onshore.
6017
     * Fundamental point: Sokey 0 M. Latitude: 25°22'56.500"N, longitude: 50°45'41.000"E (of Greenwich).
6018
     */
6019
    public const EPSG_QATAR_1948 = 'urn:ogc:def:datum:EPSG::6286';
6020
6021
    /**
6022
     * Qatar 1974
6023
     * Type: Geodetic
6024
     * Extent: Qatar - onshore and offshore.
6025
     * Fundamental point: Station G3.
6026
     */
6027
    public const EPSG_QATAR_1974 = 'urn:ogc:def:datum:EPSG::6285';
6028
6029
    /**
6030
     * Qatar National Datum 1995
6031
     * Type: Geodetic
6032
     * Extent: Qatar - onshore.
6033
     * Defined by transformation from WGS 84 - see coordinate operation code 1840.
6034
     */
6035
    public const EPSG_QATAR_NATIONAL_DATUM_1995 = 'urn:ogc:def:datum:EPSG::6614';
6036
6037
    /**
6038
     * Qornoq 1927
6039
     * Type: Geodetic
6040
     * Extent: Greenland - west coast onshore.
6041
     * Fundamental point: Station 7008. Latitude: 64°31'06.27"N, longitude: 51°12'24.86"W (of Greenwich).
6042
     */
6043
    public const EPSG_QORNOQ_1927 = 'urn:ogc:def:datum:EPSG::6194';
6044
6045
    /**
6046
     * Raiatea SAU 2001
6047
     * Type: Vertical
6048
     * Extent: French Polynesia - Society Islands - Raiatea.
6049
     * Fundamental benchmark: RN1
6050
     * Included as part of NGPF - see datum code 5195.
6051
     */
6052
    public const EPSG_RAIATEA_SAU_2001 = 'urn:ogc:def:datum:EPSG::5198';
6053
6054
    /**
6055
     * Ras Ghumays
6056
     * Type: Vertical
6057
     * Extent: United Arab Emirates (UAE) - Abu Dhabi onshore.
6058
     * Mean Sea Level at Ras Ghumays 1978 and 1979.
6059
     * Orthometric heights.
6060
     */
6061
    public const EPSG_RAS_GHUMAYS = 'urn:ogc:def:datum:EPSG::1146';
6062
6063
    /**
6064
     * Rassadiran
6065
     * Type: Geodetic
6066
     * Extent: Iran - Taheri refinery site.
6067
     * Fundamental point: Total1. Latitude: 27°31'07.784"N, longitude: 52°36'12.741"E (of Greenwich).
6068
     */
6069
    public const EPSG_RASSADIRAN = 'urn:ogc:def:datum:EPSG::6153';
6070
6071
    /**
6072
     * Rauenberg Datum/83
6073
     * Type: Geodetic
6074
     * Extent: Germany - Sachsen.
6075
     * Fundamental point: Rauenberg. Latitude: 52°27'12.021"N, longitude: 13°22'04.928"E (of Greenwich). This station
6076
     * was destroyed in 1910 and the station at Potsdam substituted as the fundamental point.
6077
     * RD/83 is the realization of DHDN in Saxony. It is the resultant of applying a transformation derived at 106
6078
     * points throughout former East Germany to Pulkovo 1942/83 points in Saxony.
6079
     */
6080
    public const EPSG_RAUENBERG_DATUM_83 = 'urn:ogc:def:datum:EPSG::6745';
6081
6082
    /**
6083
     * Red Geodesica Para Mineria en Chile
6084
     * Type: Dynamic geodetic
6085
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6086
     * Gomez.
6087
     * Realized through 26 stations in the IGS (SIRGAS-CON) active reference station network in Chile.
6088
     */
6089
    public const EPSG_RED_GEODESICA_PARA_MINERIA_EN_CHILE = 'urn:ogc:def:datum:EPSG::1304';
6090
6091
    /**
6092
     * Red Geodesica Venezolana
6093
     * Type: Geodetic
6094
     * Extent: Venezuela - onshore and offshore.
6095
     * Realised by a frame of 67 stations observed in 1995 as a densification of the SIRGAS campaign and adjusted in
6096
     * the ITRF94 at epoch 1995.4.
6097
     */
6098
    public const EPSG_RED_GEODESICA_VENEZOLANA = 'urn:ogc:def:datum:EPSG::6189';
6099
6100
    /**
6101
     * Red Geodesica de Canarias 1995
6102
     * Type: Geodetic
6103
     * Extent: Spain - Canary Islands onshore and offshore.
6104
     * ITRF93 at epoch 1994.9 at VLBI station INTA at the Canary Spatial Centre (CEC) at Maspalomas on Grand Canary.
6105
     * Replaces Pico de las Nieves 1968 (PN68) and Pico de las Nieves 1984 (PN84).
6106
     */
6107
    public const EPSG_RED_GEODESICA_DE_CANARIAS_1995 = 'urn:ogc:def:datum:EPSG::1035';
6108
6109
    /**
6110
     * Reference System de Angola 2013
6111
     * Type: Geodetic
6112
     * Extent: Angola - onshore and offshore.
6113
     * Network of 18 stations throughout Angola referenced to ITRF2008 @ 2010.90.
6114
     * Established through daily PPP solutions in GPS week G1610.
6115
     */
6116
    public const EPSG_REFERENCE_SYSTEM_DE_ANGOLA_2013 = 'urn:ogc:def:datum:EPSG::1220';
6117
6118
    /**
6119
     * Reseau Geodesique Francais 1993 v1
6120
     * Type: Geodetic
6121
     * Extent: France - onshore and offshore, mainland and Corsica (France métropolitaine including Corsica).
6122
     * Coincident with ETRS89 at epoch 1993.0. Derived from long-term GNSS observations at 23 points aligned to ETRF93.
6123
     * @ 1993.0 through fundamental points at Grasse, Toulouse and Brest. Network supplemented in 1994 and 1995 by
6124
     * approx. 1000 additional stations.
6125
     * RGF93 v1 is a realization of ETRS89. Replaced by RGF93 v2 (datum code 1312) from 2010-06-18.
6126
     */
6127
    public const EPSG_RESEAU_GEODESIQUE_FRANCAIS_1993_V1 = 'urn:ogc:def:datum:EPSG::6171';
6128
6129
    /**
6130
     * Reseau Geodesique Francais 1993 v2
6131
     * Type: Geodetic
6132
     * Extent: France - onshore and offshore, mainland and Corsica (France métropolitaine including Corsica).
6133
     * Aligned with ETRF2000 at epoch 2009.0. Based on the French GNSS permanent network (RGP) from 1998 to 2009, and
6134
     * the re-observation of the geodetic points of the French Reference Network (RRF) and French Base Network
6135
     * (RBF) from 2000 to 2011.
6136
     * RGF93 v2 is a realization of ETRS89. Replaces RGF93 v1 (datum code 6171) from 2010-06-18. Replaced by RGF93 v2b
6137
     * (datum code 1313) from 2021-01-05.
6138
     */
6139
    public const EPSG_RESEAU_GEODESIQUE_FRANCAIS_1993_V2 = 'urn:ogc:def:datum:EPSG::1312';
6140
6141
    /**
6142
     * Reseau Geodesique Francais 1993 v2b
6143
     * Type: Geodetic
6144
     * Extent: France - onshore and offshore, mainland and Corsica (France métropolitaine including Corsica).
6145
     * Aligned with ETRF2000 at epoch 2019.0. Derived through reprocessing of the French GNSS permanent network (RGP)
6146
     * in IGS14.
6147
     * RGF93 v2b is a realization of ETRS89. Third realization of RGF93. Replaces RGF93 v2 (datum code 1312) from
6148
     * 2021-01-05.
6149
     */
6150
    public const EPSG_RESEAU_GEODESIQUE_FRANCAIS_1993_V2B = 'urn:ogc:def:datum:EPSG::1313';
6151
6152
    /**
6153
     * Reseau Geodesique Francais Guyane 1995
6154
     * Type: Geodetic
6155
     * Extent: French Guiana - onshore and offshore.
6156
     * ITRF93 at epoch 1995.0
6157
     * Replaces CSG67 (datum code 6623).
6158
     */
6159
    public const EPSG_RESEAU_GEODESIQUE_FRANCAIS_GUYANE_1995 = 'urn:ogc:def:datum:EPSG::6624';
6160
6161
    /**
6162
     * Reseau Geodesique de Mayotte 2004
6163
     * Type: Geodetic
6164
     * Extent: Mayotte - onshore and offshore.
6165
     * ITRF2000 at epoch 2004.0
6166
     * Replaces Combani 1950 (datum code 6632) except for cadastral purposes. (Cadastre 1997 (datum code 1037) used for
6167
     * cadastral purposes).
6168
     */
6169
    public const EPSG_RESEAU_GEODESIQUE_DE_MAYOTTE_2004 = 'urn:ogc:def:datum:EPSG::1036';
6170
6171
    /**
6172
     * Reseau Geodesique de Nouvelle Caledonie 91-93
6173
     * Type: Geodetic
6174
     * Extent: New Caledonia - onshore and offshore. Isle de Pins, Loyalty Islands, Huon Islands, Belep archipelago,
6175
     * Chesterfield Islands, and Walpole.
6176
     * ITRF90 at epoch 1989.0.
6177
     */
6178
    public const EPSG_RESEAU_GEODESIQUE_DE_NOUVELLE_CALEDONIE_91_93 = 'urn:ogc:def:datum:EPSG::6749';
6179
6180
    /**
6181
     * Reseau Geodesique de Saint Pierre et Miquelon 2006
6182
     * Type: Geodetic
6183
     * Extent: St Pierre and Miquelon - onshore and offshore.
6184
     * ITRF2000 at epoch 2006.0
6185
     * Replaces Saint Pierre et Miquelon 1950 (datum code 6638).
6186
     */
6187
    public const EPSG_RESEAU_GEODESIQUE_DE_SAINT_PIERRE_ET_MIQUELON_2006 = 'urn:ogc:def:datum:EPSG::1038';
6188
6189
    /**
6190
     * Reseau Geodesique de Wallis et Futuna 1996
6191
     * Type: Geodetic
6192
     * Extent: Wallis and Futuna - onshore and offshore - Uvea, Futuna, and Alofi.
6193
     * Coincident with ITRF94 at epoch 1993.00.
6194
     */
6195
    public const EPSG_RESEAU_GEODESIQUE_DE_WALLIS_ET_FUTUNA_1996 = 'urn:ogc:def:datum:EPSG::1223';
6196
6197
    /**
6198
     * Reseau Geodesique de la Polynesie Francaise
6199
     * Type: Geodetic
6200
     * Extent: French Polynesia - onshore and offshore. Includes Society archipelago, Tuamotu archipelago, Marquesas
6201
     * Islands, Gambier Islands and Austral Islands.
6202
     * ITRF92 at epoch 1993.0. Densification by GPS of the Reference Network of French Polynesia, a coordinate set of
6203
     * 13 stations determined through DORIS observations.
6204
     * Replaces Tahaa 54 (datum code 6629), IGN 63 Hiva Oa (6689), IGN 72 Nuku Hiva (6630), Maupiti 83 (6692), MHEFO 55
6205
     * (6688), Moorea 87 (6691) and Tahiti 79 (6690).
6206
     */
6207
    public const EPSG_RESEAU_GEODESIQUE_DE_LA_POLYNESIE_FRANCAISE = 'urn:ogc:def:datum:EPSG::6687';
6208
6209
    /**
6210
     * Reseau Geodesique de la RDC 2005
6211
     * Type: Geodetic
6212
     * Extent: The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto -
6213
     * onshore and offshore.
6214
     * ITRF2000 at epoch 2005.4.
6215
     */
6216
    public const EPSG_RESEAU_GEODESIQUE_DE_LA_RDC_2005 = 'urn:ogc:def:datum:EPSG::1033';
6217
6218
    /**
6219
     * Reseau Geodesique de la Reunion 1992
6220
     * Type: Geodetic
6221
     * Extent: Reunion - onshore and offshore.
6222
     * ITRF91 at epoch 1993.0
6223
     * Replaces Piton des Neiges (code 6626).
6224
     */
6225
    public const EPSG_RESEAU_GEODESIQUE_DE_LA_REUNION_1992 = 'urn:ogc:def:datum:EPSG::6627';
6226
6227
    /**
6228
     * Reseau Geodesique des Antilles Francaises 2009
6229
     * Type: Geodetic
6230
     * Extent: French Antilles onshore and offshore - Guadeloupe (including Grande Terre, Basse Terre, Marie Galante,
6231
     * Les Saintes, Iles de la Petite Terre, La Desirade); Martinique; St Barthélemy; St Martin.
6232
     * ITRF2005 at epoch 2009.0
6233
     * Replaces RRAF91 in Martinique and Guadeloupe.
6234
     */
6235
    public const EPSG_RESEAU_GEODESIQUE_DES_ANTILLES_FRANCAISES_2009 = 'urn:ogc:def:datum:EPSG::1073';
6236
6237
    /**
6238
     * Reseau Geodesique des Terres Australes et Antarctiques Francaises 2007
6239
     * Type: Geodetic
6240
     * Extent: French Southern Territories - onshore and offshore: Amsterdam and St Paul, Crozet, Europa and Kerguelen.
6241
     * Antarctica - Adelie Land coastal area.
6242
     * ITRF2005 at epoch 2007.274
6243
     * Replaces IGN 1963-64 on Amsterdam, Saint-Paul 1969 on St Paul, IGN64 on Crozet, MHM 1954 on Europa, IGN 1962 on
6244
     * Kerguelen, and Petrels 1972 and Perroud 1950 in Adelie Land.
6245
     */
6246
    public const EPSG_RESEAU_GEODESIQUE_DES_TERRES_AUSTRALES_ET_ANTARCTIQUES_FRANCAISES_2007 = 'urn:ogc:def:datum:EPSG::1113';
6247
6248
    /**
6249
     * Reseau National Belge 1950
6250
     * Type: Geodetic
6251
     * Extent: Belgium - onshore.
6252
     * Fundamental point: Lommel (tower). Latitude: 51°13'47.334"N, longitude: 5°18'49.483"E (of Greenwich).
6253
     */
6254
    public const EPSG_RESEAU_NATIONAL_BELGE_1950 = 'urn:ogc:def:datum:EPSG::6215';
6255
6256
    /**
6257
     * Reseau National Belge 1950 (Brussels)
6258
     * Type: Geodetic
6259
     * Extent: Belgium - onshore.
6260
     * Fundamental point: Lommel (tower). Latitude: 51°13'47.334"N, longitude: 0°56'44.773"E (of Brussels).
6261
     */
6262
    public const EPSG_RESEAU_NATIONAL_BELGE_1950_BRUSSELS = 'urn:ogc:def:datum:EPSG::6809';
6263
6264
    /**
6265
     * Reseau National Belge 1972
6266
     * Type: Geodetic
6267
     * Extent: Belgium - onshore.
6268
     * Fundamental point: Uccle observatory. Latitude: 50°47'57.704"N, longitude: 4°21'24.983"E (of Greenwich).
6269
     */
6270
    public const EPSG_RESEAU_NATIONAL_BELGE_1972 = 'urn:ogc:def:datum:EPSG::6313';
6271
6272
    /**
6273
     * Reseau de Reference des Antilles Francaises 1991
6274
     * Type: Geodetic
6275
     * Extent: French Antilles onshore and offshore - Guadeloupe (including Grande Terre, Basse Terre, Marie Galante,
6276
     * Les Saintes, Iles de la Petite Terre, La Desirade); Martinique; St Barthélemy; St Martin.
6277
     * WGS 84 coordinates of a single station determined during the 1988 Tango mission.
6278
     * Replaces Fort Marigot and Sainte Anne (datum codes 6621-22) in Guadeloupe and Fort Desaix (datum code 6625) in
6279
     * Martinique. Replaced by Reseau Geodesique des Antilles Francaises 2009 (datum code 1073).
6280
     */
6281
    public const EPSG_RESEAU_DE_REFERENCE_DES_ANTILLES_FRANCAISES_1991 = 'urn:ogc:def:datum:EPSG::1047';
6282
6283
    /**
6284
     * Rete Dinamica Nazionale 2008
6285
     * Type: Geodetic
6286
     * Extent: Italy - onshore and offshore; San Marino, Vatican City State.
6287
     * Italian densification of ETRS89 realised through network of 99 permanent reference stations in [email protected].
6288
     * Adopted as official Italian reference datum 10/11/2011. Replaces IGM95 (datum code 6670).
6289
     */
6290
    public const EPSG_RETE_DINAMICA_NAZIONALE_2008 = 'urn:ogc:def:datum:EPSG::1132';
6291
6292
    /**
6293
     * Reunion 1947
6294
     * Type: Geodetic
6295
     * Extent: Reunion - onshore.
6296
     * Fundamental point: Piton des Neiges (Borne). Latitude: 21°05'13.119"S, longitude: 55°29'09.193"E (of
6297
     * Greenwich).
6298
     * Replaced by RGR92 (datum code 6627).
6299
     */
6300
    public const EPSG_REUNION_1947 = 'urn:ogc:def:datum:EPSG::6626';
6301
6302
    /**
6303
     * Reunion 1989
6304
     * Type: Vertical
6305
     * Extent: Reunion - onshore.
6306
     * Mean sea level during part of November 1949 at port of Saint-Pierre. Origin = marker AB-100 with defined
6307
     * elevation of 13.808m above msl.
6308
     * Orthometric heights. Replaces Reunion IGN58. Value of marker AB-100 retains height from 1958 adjustment.
6309
     */
6310
    public const EPSG_REUNION_1989 = 'urn:ogc:def:datum:EPSG::5156';
6311
6312
    /**
6313
     * Reykjavik 1900
6314
     * Type: Geodetic
6315
     * Extent: Iceland - mainland.
6316
     * Fundamental point:  Latitude: 64°08'31.88"N, longitude: 21°55'51.15"W (of Greenwich).
6317
     */
6318
    public const EPSG_REYKJAVIK_1900 = 'urn:ogc:def:datum:EPSG::6657';
6319
6320
    /**
6321
     * Rikets hojdsystem 1900
6322
     * Type: Vertical
6323
     * Extent: Sweden - onshore.
6324
     * Adjustment is referenced to mean sea level at Slussen, Stockholm.
6325
     * Realized through the first precise levelling network of 1886-1905. Replaced by RH70.
6326
     */
6327
    public const EPSG_RIKETS_HOJDSYSTEM_1900 = 'urn:ogc:def:datum:EPSG::5209';
6328
6329
    /**
6330
     * Rikets hojdsystem 1970
6331
     * Type: Vertical
6332
     * Extent: Sweden - onshore.
6333
     * Adjustment is referenced to mean high tide at Amsterdams Peil in 1684. To account for land level movements
6334
     * caused by isostatic rebound, heights are reduced to epoch 1970.0 using uplift values computed from repeated
6335
     * levelling observations.
6336
     * Realized through the second precise levelling network of 1951-1967. Uses Normal heights. Replaces RH00. Replaced
6337
     * in 2005 by RH2000.
6338
     */
6339
    public const EPSG_RIKETS_HOJDSYSTEM_1970 = 'urn:ogc:def:datum:EPSG::5117';
6340
6341
    /**
6342
     * Rikets hojdsystem 2000
6343
     * Type: Vertical
6344
     * Extent: Sweden - onshore.
6345
     * Adjustment is referenced to mean high tide at Amsterdams Peil in 1684. To account for land level movements
6346
     * caused by isostatic rebound, heights are reduced to epoch 2000.0 using values computed from the RH 2000 LU
6347
     * (=NKG2005LU) uplift model.
6348
     * Realized through the third precise levelling network of 1979-2003. Adopted in 2005, replacing RH70. Uses Normal
6349
     * heights.
6350
     */
6351
    public const EPSG_RIKETS_HOJDSYSTEM_2000 = 'urn:ogc:def:datum:EPSG::5208';
6352
6353
    /**
6354
     * Rikets koordinatsystem 1990
6355
     * Type: Geodetic
6356
     * Extent: Sweden - onshore and offshore.
6357
     * Replaces RT38 adjustment (datum code 6308).
6358
     */
6359
    public const EPSG_RIKETS_KOORDINATSYSTEM_1990 = 'urn:ogc:def:datum:EPSG::6124';
6360
6361
    /**
6362
     * Ross Sea Region Geodetic Datum 2000
6363
     * Type: Geodetic
6364
     * Extent: Antarctica - Ross Sea Region - nominally between 160°E and 150°W but includes buffer on eastern
6365
     * hemisphere margin to include Transantarctic Mountains
6366
     * Based on ITRF96 at epoch 2000.0.
6367
     */
6368
    public const EPSG_ROSS_SEA_REGION_GEODETIC_DATUM_2000 = 'urn:ogc:def:datum:EPSG::6764';
6369
6370
    /**
6371
     * SCM22 Intermediate Reference Frame
6372
     * Type: Geodetic
6373
     * Extent: United Kingdom (UK) - on or related to the Scottish central mainline rail route from Motherwell through
6374
     * Perth and Pitlochry to Inverness.
6375
     * Defined through the application of the SCM22 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS.
6376
     * Created in 2022 to support intermediate CRS "SCM22-IRF" in the emulation of the SCM22 Snake map projection.
6377
     */
6378
    public const EPSG_SCM22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1320';
6379
6380
    /**
6381
     * SIRGAS Continuously Operating Network DGF00P01
6382
     * Type: Dynamic geodetic
6383
     * Extent: Latin America - Central America and South America, onshore and offshore.
6384
     * Aligned to ITRF97 at epoch 2000.40. Realized by a frame of 31 continuously operating stations using GPS
6385
     * observations from June 1996 to February 2000. Velocity model VEMOS2003 used to propagate coordinates to the
6386
     * frame reference epoch.
6387
     * DGF00P01 is included in ITRF2000 as a regional densification for South America. Replaced by DGF01P01 (datum code
6388
     * 1228).
6389
     */
6390
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF00P01 = 'urn:ogc:def:datum:EPSG::1227';
6391
6392
    /**
6393
     * SIRGAS Continuously Operating Network DGF01P01
6394
     * Type: Dynamic geodetic
6395
     * Extent: Latin America - Central America and South America, onshore and offshore.
6396
     * Aligned to ITRF2000 at epoch 2000.00. Realized by a frame of 48 continuously operating stations using GPS
6397
     * observations from June 1996 to April 2001. Velocity model VEMOS2003 used to propagate coordinates to the frame
6398
     * reference epoch.
6399
     * Replaces DGF00P01 (datum code 1227). Replaced by DGF01P02 (datum code 1229).
6400
     */
6401
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF01P01 = 'urn:ogc:def:datum:EPSG::1228';
6402
6403
    /**
6404
     * SIRGAS Continuously Operating Network DGF01P02
6405
     * Type: Dynamic geodetic
6406
     * Extent: Latin America - Central America and South America, onshore and offshore.
6407
     * Aligned to ITRF2000 at epoch 1998.40. Realized by a frame of 49 continuously operating stations using GPS
6408
     * observations from June 1996 to October 2001. Velocity model VEMOS2003 used to propagate coordinates to the frame
6409
     * reference epoch.
6410
     * Replaces DGF01P01 (datum code 1228). Replaced by DGF02P01 (datum code 1230).
6411
     */
6412
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF01P02 = 'urn:ogc:def:datum:EPSG::1229';
6413
6414
    /**
6415
     * SIRGAS Continuously Operating Network DGF02P01
6416
     * Type: Dynamic geodetic
6417
     * Extent: Latin America - Central America and South America, onshore and offshore.
6418
     * Aligned to ITRF2000 at epoch 2000.00. Realized by a frame of 53 continuously operating stations using GPS
6419
     * observations from June 1996 to July 2002. Velocity model VEMOS2003 used to propagate coordinates to the frame
6420
     * reference epoch.
6421
     * Replaces DGF01P02 (datum code 1229). Replaced by DGF04P01 (datum code 1331).
6422
     */
6423
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF02P01 = 'urn:ogc:def:datum:EPSG::1230';
6424
6425
    /**
6426
     * SIRGAS Continuously Operating Network DGF04P01
6427
     * Type: Dynamic geodetic
6428
     * Extent: Latin America - Central America and South America, onshore and offshore.
6429
     * Aligned to ITRF2000 at epoch 2003.00. Realized by a frame of 69 continuously operating stations using GPS
6430
     * observations from June 1996 to July 2004. Velocity model VEMOS2003 used to propagate coordinates to the frame
6431
     * reference epoch.
6432
     * Replaces DGF02P01 (datum code 1230). Replaced by DGF05P01 (datum code 1232).
6433
     */
6434
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF04P01 = 'urn:ogc:def:datum:EPSG::1231';
6435
6436
    /**
6437
     * SIRGAS Continuously Operating Network DGF05P01
6438
     * Type: Dynamic geodetic
6439
     * Extent: Latin America - Central America and South America, onshore and offshore.
6440
     * Aligned to ITRF2000 at epoch 2004.00. Realized by a frame of 95 continuously operating stations using GPS
6441
     * observations from June 1996 to September 2005. Velocity model VEMOS2003 used to propagate coordinates to the
6442
     * frame reference epoch.
6443
     * Replaces DGF04P01 (datum code 1231). Replaced by DGF06P01 (datum code 1233).
6444
     */
6445
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF05P01 = 'urn:ogc:def:datum:EPSG::1232';
6446
6447
    /**
6448
     * SIRGAS Continuously Operating Network DGF06P01
6449
     * Type: Dynamic geodetic
6450
     * Extent: Latin America - Central America and South America, onshore and offshore.
6451
     * Aligned to ITRF2000 at epoch 2004.00. Realized by a frame of 94 continuously operating stations using GPS
6452
     * observations from June 1996 to June 2006. Velocity model VEMOS2003 used to propagate coordinates to the frame
6453
     * reference epoch.
6454
     * Replaces DGF05P01 (datum code 1232). Replaced by DGF07P01 (datum code 1234).
6455
     */
6456
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF06P01 = 'urn:ogc:def:datum:EPSG::1233';
6457
6458
    /**
6459
     * SIRGAS Continuously Operating Network DGF07P01
6460
     * Type: Dynamic geodetic
6461
     * Extent: Latin America - Central America and South America, onshore and offshore.
6462
     * Aligned to IGS05 at epoch 2004.50. Realized by a frame of 106 continuously operating stations using GPS
6463
     * observations in 3 periods between December 2001 and October 2007. Velocity model VEMOS2003 used to propagate
6464
     * coordinates to the frame reference epoch.
6465
     * Replaces DGF06P01 (datum code 1233). Replaced by DGF08P01 (datum code 1235).
6466
     */
6467
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF07P01 = 'urn:ogc:def:datum:EPSG::1234';
6468
6469
    /**
6470
     * SIRGAS Continuously Operating Network DGF08P01
6471
     * Type: Dynamic geodetic
6472
     * Extent: Latin America - Central America and South America, onshore and offshore.
6473
     * Aligned to IGS05 at epoch 2004.50. Realized by a frame of 126 continuously operating stations using GPS
6474
     * observations from December 2002 to March 2008. Velocity model VEMOS2003 used to propagate coordinates to the
6475
     * frame reference epoch.
6476
     * Replaces DGF07P01 (datum code 1234). Replaced by SIR09P01 (datum code 1236).
6477
     */
6478
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF08P01 = 'urn:ogc:def:datum:EPSG::1235';
6479
6480
    /**
6481
     * SIRGAS Continuously Operating Network SIR09P01
6482
     * Type: Dynamic geodetic
6483
     * Extent: Latin America - Central America and South America, onshore and offshore.
6484
     * Aligned to IGS05 at epoch 2005.00. Realized by a frame of 128 continuously operating stations using GPS
6485
     * observations from January 2000 to January 2009. Velocity model VEMOS2009 used to propagate coordinates to the
6486
     * frame reference epoch.
6487
     * Replaces DGF08P01 (datum code 1235). Replaced by SIR10P01 (datum code 1237).
6488
     */
6489
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR09P01 = 'urn:ogc:def:datum:EPSG::1236';
6490
6491
    /**
6492
     * SIRGAS Continuously Operating Network SIR10P01
6493
     * Type: Dynamic geodetic
6494
     * Extent: Latin America - Central America and South America, onshore and offshore.
6495
     * Aligned to ITRF08 at epoch 2005.00. Realized by a frame of 183 continuously operating stations using GPS
6496
     * observations from January 2000 to June 2010. Velocity model VEMOS2009 used to propagate coordinates to the frame
6497
     * reference epoch.
6498
     * Replaces SIR09P01 (datum code 1236). Replaced by SIR11P01 (datum code 1238).
6499
     */
6500
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR10P01 = 'urn:ogc:def:datum:EPSG::1237';
6501
6502
    /**
6503
     * SIRGAS Continuously Operating Network SIR11P01
6504
     * Type: Dynamic geodetic
6505
     * Extent: Latin America - Central America and South America, onshore and offshore.
6506
     * Aligned to ITRF08 at epoch 2005.00. Realized by a frame of 230 continuously operating stations using GPS
6507
     * observations from January 2000 to April 2011. Velocity model VEMOS2009 used to propagate coordinates to the
6508
     * frame reference epoch.
6509
     * Replaces SIR10P01 (datum code 1237). Replaced by SIR13P01 (datum code 1239). Last multi-year solution without
6510
     * the effects of the El Maule earthquake in February 2010.
6511
     */
6512
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR11P01 = 'urn:ogc:def:datum:EPSG::1238';
6513
6514
    /**
6515
     * SIRGAS Continuously Operating Network SIR13P01
6516
     * Type: Dynamic geodetic
6517
     * Extent: Latin America - Central America and South America, onshore and offshore.
6518
     * Aligned to IGb08 at epoch 2012.00. Realized by a frame of 108 continuously operating stations using GPS
6519
     * observations from April 2010 to June 2013. Velocity model VEMOS2009 used to propagate coordinates to the frame
6520
     * reference epoch.
6521
     * Replaces SIR11P01 (datum code 1238). Replaced by SIR14P01 (datum code 1240). First multi-year solution after the
6522
     * El Maule earthquake of February 2010.
6523
     */
6524
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR13P01 = 'urn:ogc:def:datum:EPSG::1239';
6525
6526
    /**
6527
     * SIRGAS Continuously Operating Network SIR14P01
6528
     * Type: Dynamic geodetic
6529
     * Extent: Latin America - Central America and South America, onshore and offshore.
6530
     * Aligned to IGb08 at epoch 2013.00. Realized by a frame of 242 continuously operating stations using GNSS
6531
     * observations from April 2010 to July 2014. Velocity model VEMOS2009 used to propagate coordinates to the frame
6532
     * reference epoch.
6533
     * Replaces SIR13P01 (datum code 1239). Replaced by SIR15P01 (datum code 1241).
6534
     */
6535
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR14P01 = 'urn:ogc:def:datum:EPSG::1240';
6536
6537
    /**
6538
     * SIRGAS Continuously Operating Network SIR15P01
6539
     * Type: Dynamic geodetic
6540
     * Extent: Latin America - Central America and South America, onshore and offshore.
6541
     * Aligned to IGb08 at epoch 2013.00. Realized by a frame of 303 continuously operating stations using GNSS
6542
     * observations from March 2010 to April 2015. Velocity model VEMOS2015 used to propagate coordinates to the frame
6543
     * reference epoch.
6544
     * Replaces SIR14P01 (datum code 1240). Replaced by SIR17P01 (datum code 1242).
6545
     */
6546
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR15P01 = 'urn:ogc:def:datum:EPSG::1241';
6547
6548
    /**
6549
     * SIRGAS Continuously Operating Network SIR17P01
6550
     * Type: Dynamic geodetic
6551
     * Extent: Latin America - Central America and South America, onshore and offshore.
6552
     * Aligned to IGS14 at epoch 2015.00. Realized by a frame of 345 continuously operating stations using GNSS
6553
     * observations from April 2011 to January 2017. Velocity model VEMOS2017 used to propagate coordinates to the
6554
     * frame reference epoch.
6555
     * Replaces SIR15P01 (datum code 1241).
6556
     */
6557
    public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR17P01 = 'urn:ogc:def:datum:EPSG::1242';
6558
6559
    /**
6560
     * SIRGAS-Chile realization 1 epoch 2002
6561
     * Type: Geodetic
6562
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6563
     * Gomez.
6564
     * ITRF2000 at epoch 2002.0.  Densification of SIRGAS 2000 network in Chile, consisting of 650 monumented stations.
6565
     * Densification of SIRGAS 2000 within Chile. Replaces PSAD56 (datum code 6248) in Chile, HITO XVIII (datum code
6566
     * 6254) in Chilean Tierra del Fuego and Easter Island 1967 (datum code 6719) in Easter Island. Replaced by
6567
     * SIRGAS-Chile 2010 (datum code 1243).
6568
     */
6569
    public const EPSG_SIRGAS_CHILE_REALIZATION_1_EPOCH_2002 = 'urn:ogc:def:datum:EPSG::1064';
6570
6571
    /**
6572
     * SIRGAS-Chile realization 2 epoch 2010
6573
     * Type: Geodetic
6574
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6575
     * Gomez.
6576
     * IGS08 at epoch 2010.00. Densification of SIRGAS-CON network in Chile, consisting of 120 monumented stations.
6577
     * Replaces SIRGAS-Chile realization 1 epoch 2002, following significant tectonic deformation. Replaced by
6578
     * SIRGAS-Chile realization 3 epoch 2013.
6579
     */
6580
    public const EPSG_SIRGAS_CHILE_REALIZATION_2_EPOCH_2010 = 'urn:ogc:def:datum:EPSG::1243';
6581
6582
    /**
6583
     * SIRGAS-Chile realization 3 epoch 2013
6584
     * Type: Geodetic
6585
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6586
     * Gomez.
6587
     * IGb08 at epoch 2013.00. Densification of SIRGAS-CON network in Chile, consisting of 130 monumented stations.
6588
     * Replaces SIRGAS-Chile realization 2 epoch 2010, following significant tectonic deformation. Replaced by
6589
     * SIRGAS-Chile realization 4 epoch 2016.
6590
     */
6591
    public const EPSG_SIRGAS_CHILE_REALIZATION_3_EPOCH_2013 = 'urn:ogc:def:datum:EPSG::1252';
6592
6593
    /**
6594
     * SIRGAS-Chile realization 4 epoch 2016
6595
     * Type: Geodetic
6596
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6597
     * Gomez.
6598
     * IGb08 at epoch 2016.00. Densification of SIRGAS-CON network in Chile, consisting of 200 monumented stations.
6599
     * Replaces SIRGAS-Chile realization 3 epoch 2013. Replaced by SIRGAS-Chile realization 5 epoch 2021 due to
6600
     * significant tectonic deformation.
6601
     */
6602
    public const EPSG_SIRGAS_CHILE_REALIZATION_4_EPOCH_2016 = 'urn:ogc:def:datum:EPSG::1253';
6603
6604
    /**
6605
     * SIRGAS-Chile realization 5 epoch 2021
6606
     * Type: Geodetic
6607
     * Extent: Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y
6608
     * Gomez.
6609
     * Densification of SIRGAS-CON network in Chile, consisting of 97 stations forming the active CORS network (RGN)
6610
     * referenced to IGb2014 (ITRF2014) at epoch 2021.00. Passive stations used in previous realizations have been
6611
     * removed from this solution.
6612
     * Replaces SIRGAS-Chile realization 4 epoch 2016 from August 2021 due to significant tectonic deformation. 24
6613
     * additional active CORS used in this realization compared to that of 2016.
6614
     */
6615
    public const EPSG_SIRGAS_CHILE_REALIZATION_5_EPOCH_2021 = 'urn:ogc:def:datum:EPSG::1327';
6616
6617
    /**
6618
     * SIRGAS-ROU98
6619
     * Type: Geodetic
6620
     * Extent: Uruguay - onshore and offshore.
6621
     * Densification of SIRGAS95 network in Uruguay, consisting of 17 passive geodetic stations and 3 continuous
6622
     * recording GPS stations. ITRF94 at epoch 1995.4.
6623
     * Densification of SIRGAS 1995 within Uruguay. Replaces Yacare (datum code 6309) in Uruguay. Uruguay documentation
6624
     * clearly states use of WGS 84 reference ellipsoid.
6625
     */
6626
    public const EPSG_SIRGAS_ROU98 = 'urn:ogc:def:datum:EPSG::1068';
6627
6628
    /**
6629
     * SIRGAS_ES2007.8
6630
     * Type: Geodetic
6631
     * Extent: El Salvador - onshore and offshore.
6632
     * ITRF2005 at epoch 2007.85.  Densification of SIRGAS-CON network in El Salvador, consisting of 38 monumented
6633
     * stations.
6634
     * SIRGAS-ES2007.8 is the national SIRGAS densification.
6635
     */
6636
    public const EPSG_SIRGAS_ES2007_8 = 'urn:ogc:def:datum:EPSG::1069';
6637
6638
    /**
6639
     * ST71 Belep
6640
     * Type: Geodetic
6641
     * Extent: New Caledonia - Belep.
6642
     */
6643
    public const EPSG_ST71_BELEP = 'urn:ogc:def:datum:EPSG::6643';
6644
6645
    /**
6646
     * ST84 Ile des Pins
6647
     * Type: Geodetic
6648
     * Extent: New Caledonia - Ile des Pins.
6649
     * Fundamental point: Pic Nga.
6650
     */
6651
    public const EPSG_ST84_ILE_DES_PINS = 'urn:ogc:def:datum:EPSG::6642';
6652
6653
    /**
6654
     * ST87 Ouvea
6655
     * Type: Geodetic
6656
     * Extent: New Caledonia - Loyalty Islands - Ouvea.
6657
     * Ouloup.
6658
     */
6659
    public const EPSG_ST87_OUVEA = 'urn:ogc:def:datum:EPSG::6750';
6660
6661
    /**
6662
     * SVY21
6663
     * Type: Geodetic
6664
     * Extent: Singapore - onshore and offshore.
6665
     * Fundamental point: Base 7 at Pierce Reservoir. Latitude: 1°22'02.9154"N, longitude: 103°49'31.9752"E (of
6666
     * Greenwich).
6667
     * Replaces Kertau 1968 for cadastral purposes from August 2004.
6668
     */
6669
    public const EPSG_SVY21 = 'urn:ogc:def:datum:EPSG::6757';
6670
6671
    /**
6672
     * SWEREF99
6673
     * Type: Geodetic
6674
     * Extent: Sweden - onshore and offshore.
6675
     * Densification of ETRS89.
6676
     * The solution was calculated in ITRF97 epoch 1999.5, and has subsequently been corrected to ETRS89 in accordance
6677
     * with guidelines given by EUREF.
6678
     */
6679
    public const EPSG_SWEREF99 = 'urn:ogc:def:datum:EPSG::6619';
6680
6681
    /**
6682
     * Saint Pierre et Miquelon 1950
6683
     * Type: Geodetic
6684
     * Extent: St Pierre and Miquelon - onshore.
6685
     * Replaced by RGSPM06 (datum code 1038).
6686
     */
6687
    public const EPSG_SAINT_PIERRE_ET_MIQUELON_1950 = 'urn:ogc:def:datum:EPSG::6638';
6688
6689
    /**
6690
     * Santa Cruz da Graciosa
6691
     * Type: Vertical
6692
     * Extent: Portugal - central Azores - Graciosa island onshore.
6693
     * Mean Sea Level during 1938 at Santa Cruz da Graciosa.
6694
     * Orthometric heights.
6695
     */
6696
    public const EPSG_SANTA_CRUZ_DA_GRACIOSA = 'urn:ogc:def:datum:EPSG::1106';
6697
6698
    /**
6699
     * Santa Cruz das Flores
6700
     * Type: Vertical
6701
     * Extent: Portugal - western Azores onshore - Flores, Corvo.
6702
     * Mean Sea Level during 1965 at Santa Cruz das Flores.
6703
     * Orthometric heights.
6704
     */
6705
    public const EPSG_SANTA_CRUZ_DAS_FLORES = 'urn:ogc:def:datum:EPSG::1108';
6706
6707
    /**
6708
     * Santo 1965
6709
     * Type: Geodetic
6710
     * Extent: Vanuatu - northern islands - Aese, Ambrym, Aoba, Epi, Espiritu Santo, Maewo, Malo, Malkula, Paama,
6711
     * Pentecost, Shepherd and Tutuba.
6712
     * Datum covers all the major islands of Vanuatu in two different adjustment blocks, but practical usage is as
6713
     * given in the area of use.
6714
     */
6715
    public const EPSG_SANTO_1965 = 'urn:ogc:def:datum:EPSG::6730';
6716
6717
    /**
6718
     * Sao Tome
6719
     * Type: Geodetic
6720
     * Extent: Sao Tome and Principe - onshore - Sao Tome.
6721
     * Fundamental point: Fortaleza. Latitude: 0°20'49.02"N, longitude: 6°44'41.85"E (of Greenwich).
6722
     */
6723
    public const EPSG_SAO_TOME = 'urn:ogc:def:datum:EPSG::1044';
6724
6725
    /**
6726
     * Sapper Hill 1943
6727
     * Type: Geodetic
6728
     * Extent: Falkland Islands (Malvinas) - onshore.
6729
     */
6730
    public const EPSG_SAPPER_HILL_1943 = 'urn:ogc:def:datum:EPSG::6292';
6731
6732
    /**
6733
     * Schwarzeck
6734
     * Type: Geodetic
6735
     * Extent: Namibia - onshore and offshore.
6736
     * Fundamental point: Schwarzeck. Latitude: 22°45'35.820"S, longitude: 18°40'34.549"E (of Greenwich). Fixed
6737
     * during German South West Africa-British Bechuanaland boundary survey of 1898-1903.
6738
     */
6739
    public const EPSG_SCHWARZECK = 'urn:ogc:def:datum:EPSG::6293';
6740
6741
    /**
6742
     * Scoresbysund 1952
6743
     * Type: Geodetic
6744
     * Extent: Greenland - Scoresbysund area onshore.
6745
     */
6746
    public const EPSG_SCORESBYSUND_1952 = 'urn:ogc:def:datum:EPSG::6195';
6747
6748
    /**
6749
     * Selvagem Grande
6750
     * Type: Geodetic
6751
     * Extent: Portugal - Selvagens islands (Madeira province) - onshore.
6752
     */
6753
    public const EPSG_SELVAGEM_GRANDE = 'urn:ogc:def:datum:EPSG::6616';
6754
6755
    /**
6756
     * Serbian Reference Network 1998
6757
     * Type: Geodetic
6758
     * Extent: Serbia including Vojvodina.
6759
     * Densification of ETRS89 in Serbia at epoch 1998.7 based on coordinates of 6 stations in Serbia of Yugoslav
6760
     * Reference Frame (YUREF) 1998 campaign.
6761
     * Observed 1998-2003.
6762
     */
6763
    public const EPSG_SERBIAN_REFERENCE_NETWORK_1998 = 'urn:ogc:def:datum:EPSG::1034';
6764
6765
    /**
6766
     * Serbian Spatial Reference System 2000
6767
     * Type: Geodetic
6768
     * Extent: Serbia including Vojvodina.
6769
     * Densification of ETRF2000 in Serbia at epoch 2010.63.
6770
     * Replaces SREF98.
6771
     */
6772
    public const EPSG_SERBIAN_SPATIAL_REFERENCE_SYSTEM_2000 = 'urn:ogc:def:datum:EPSG::1214';
6773
6774
    /**
6775
     * Serbian Vertical Reference System 2012
6776
     * Type: Vertical
6777
     * Extent: Serbia including Vojvodina.
6778
     * Mean sea level of Adriatic Sea in 1971.
6779
     * Normal heights above quasi-geoid. In Serbia replaces Trieste (datum code 1050).
6780
     */
6781
    public const EPSG_SERBIAN_VERTICAL_REFERENCE_SYSTEM_2012 = 'urn:ogc:def:datum:EPSG::1216';
6782
6783
    /**
6784
     * Serindung
6785
     * Type: Geodetic
6786
     * Extent: Indonesia - west Kalimantan - onshore coastal area.
6787
     * Fundamental point: Ep A. Latitude: 1°06'10.60"N, longitude: 105°00'59.82"E (of Greenwich).
6788
     */
6789
    public const EPSG_SERINDUNG = 'urn:ogc:def:datum:EPSG::6295';
6790
6791
    /**
6792
     * Sibun Gorge 1922
6793
     * Type: Geodetic
6794
     * Extent: Belize - onshore.
6795
     * Latitude: 17º03'40.471"N, longitude: 88º37'54.687"W.
6796
     */
6797
    public const EPSG_SIBUN_GORGE_1922 = 'urn:ogc:def:datum:EPSG::1071';
6798
6799
    /**
6800
     * Sierra Leone 1968
6801
     * Type: Geodetic
6802
     * Extent: Sierra Leone - onshore.
6803
     * Fundamental point: SLX2 Astro. Latitude: 8°27'17.567"N, longitude: 12°49'40.186"W (of Greenwich).
6804
     * Extension and readjustment with additional observations of 1960 network. Coordinates of 1960 stations change by
6805
     * less than 3 metres.
6806
     */
6807
    public const EPSG_SIERRA_LEONE_1968 = 'urn:ogc:def:datum:EPSG::6175';
6808
6809
    /**
6810
     * Sierra Leone Colony 1924
6811
     * Type: Geodetic
6812
     * Extent: Sierra Leone - Freetown Peninsula.
6813
     * Fundamental point: Kortright. Latitude: 8°28'44.4"N, longitude: 13°13'03.81"W (of Greenwich).
6814
     */
6815
    public const EPSG_SIERRA_LEONE_COLONY_1924 = 'urn:ogc:def:datum:EPSG::6174';
6816
6817
    /**
6818
     * Singapore Height Datum
6819
     * Type: Vertical
6820
     * Extent: Singapore - onshore and offshore.
6821
     * Mean sea level determined at Victoria Dock tide gauge 1935-1937.
6822
     * Orthometric heights. Network readjusted in 2009.
6823
     */
6824
    public const EPSG_SINGAPORE_HEIGHT_DATUM = 'urn:ogc:def:datum:EPSG::1140';
6825
6826
    /**
6827
     * Sistem Referensi Geospasial Indonesia 2013
6828
     * Type: Dynamic geodetic
6829
     * Extent: Indonesia - onshore and offshore.
6830
     * ITRF2008 at epoch 2012.0.
6831
     * Semi-dynamic datum. Geometric element of geodetic control network (JKG). Replaces DGN95 and all older datums.
6832
     */
6833
    public const EPSG_SISTEM_REFERENSI_GEOSPASIAL_INDONESIA_2013 = 'urn:ogc:def:datum:EPSG::1293';
6834
6835
    /**
6836
     * Sistema Geodesico Nacional de Panama MACARIO SOLIS
6837
     * Type: Geodetic
6838
     * Extent: Panama - onshore and offshore.
6839
     * ITRF2000 at epoch 2000.0. Densification of SIRGAS 2000 network in Panama, consisting of 20 GPS stations
6840
     * throughout the country.
6841
     */
6842
    public const EPSG_SISTEMA_GEODESICO_NACIONAL_DE_PANAMA_MACARIO_SOLIS = 'urn:ogc:def:datum:EPSG::1066';
6843
6844
    /**
6845
     * Sistema de Referencia Geocentrico para America del Sur 1995
6846
     * Type: Geodetic
6847
     * Extent: South America - onshore and offshore. Ecuador (mainland and Galapagos) - onshore and offshore.
6848
     * ITRF94 at epoch 1995.4.
6849
     * Realized by a frame of 58 stations observed in 1995 and adjusted in ITRF94. Provisional NIMA adjustment
6850
     * reference epoch was 1995.42 but final report accepted value is 1995.40. Replaced by SIRGAS 2000.
6851
     */
6852
    public const EPSG_SISTEMA_DE_REFERENCIA_GEOCENTRICO_PARA_AMERICA_DEL_SUR_1995 = 'urn:ogc:def:datum:EPSG::6170';
6853
6854
    /**
6855
     * Sistema de Referencia Geocentrico para las AmericaS 2000
6856
     * Type: Geodetic
6857
     * Extent: Latin America - Central America and South America - onshore and offshore. Brazil - onshore and offshore.
6858
     * ITRF2000 at epoch 2000.40.
6859
     * Realized by a frame of 184 stations observed in 2000 and adjusted in the ITRF2000. Includes ties to tide gauges.
6860
     * Replaces SIRGAS 1995 system for South America; expands SIRGAS to Central America. Name changed in 2001 for use
6861
     * in all of Latin America.
6862
     */
6863
    public const EPSG_SISTEMA_DE_REFERENCIA_GEOCENTRICO_PARA_LAS_AMERICAS_2000 = 'urn:ogc:def:datum:EPSG::6674';
6864
6865
    /**
6866
     * Sistema de Referencia Vertical Nacional 2016
6867
     * Type: Vertical
6868
     * Extent: Argentina - onshore.
6869
     * Mean Sea Level 1923 at Mar del Plata defined at station 71 (C = 121.64978 m^2s^-2) = 12.43m for mainland,
6870
     * Ushuaia station PF1N(383) (C = 38.427 m^2s^-2) =  3.915m for Tierra del Fuego. These geopotential numbers
6871
     * correspond with historic values.
6872
     * Replaces SRVN71.
6873
     */
6874
    public const EPSG_SISTEMA_DE_REFERENCIA_VERTICAL_NACIONAL_2016 = 'urn:ogc:def:datum:EPSG::1260';
6875
6876
    /**
6877
     * Sister Islands Geodetic Datum 1961
6878
     * Type: Geodetic
6879
     * Extent: Cayman Islands - Little Cayman and Cayman Brac.
6880
     * Fundamental point: LC5. Latitude: 19°39'46.324"N, longitude: 80°03'47.910"W (of Greenwich).
6881
     * Replaced by CIGD11 (datum code 1100).
6882
     */
6883
    public const EPSG_SISTER_ISLANDS_GEODETIC_DATUM_1961 = 'urn:ogc:def:datum:EPSG::6726';
6884
6885
    /**
6886
     * Slovenia Geodetic Datum 1996
6887
     * Type: Geodetic
6888
     * Extent: Slovenia - onshore and offshore.
6889
     * Densification of ETRS89, based on ITRS89 at epoch 1995.55.
6890
     */
6891
    public const EPSG_SLOVENIA_GEODETIC_DATUM_1996 = 'urn:ogc:def:datum:EPSG::6765';
6892
6893
    /**
6894
     * Slovenian Vertical System 2000
6895
     * Type: Vertical
6896
     * Extent: Slovenia - onshore.
6897
     * Reference point Ruse defined relative to mean sea level at Trieste in 1875.
6898
     * Normal-orthometric heights. Promulgated through the National Vertical Network adjustment of 1999.
6899
     */
6900
    public const EPSG_SLOVENIAN_VERTICAL_SYSTEM_2000 = 'urn:ogc:def:datum:EPSG::5177';
6901
6902
    /**
6903
     * Slovenian Vertical System 2010
6904
     * Type: Vertical
6905
     * Extent: Slovenia - onshore.
6906
     * Mean sea level at Koper over 18.6 years, selected epoch is 2010-10-10.
6907
     * Normal heights. Replaces SVS2000 from 2019-01.
6908
     */
6909
    public const EPSG_SLOVENIAN_VERTICAL_SYSTEM_2010 = 'urn:ogc:def:datum:EPSG::1215';
6910
6911
    /**
6912
     * Solomon 1968
6913
     * Type: Geodetic
6914
     * Extent: Solomon Islands - onshore southern Solomon Islands, primarily Guadalcanal, Malaita, San Cristobel, Santa
6915
     * Isobel, Choiseul, Makira-Ulawa.
6916
     * Fundamental point: GUX 1.
6917
     */
6918
    public const EPSG_SOLOMON_1968 = 'urn:ogc:def:datum:EPSG::6718';
6919
6920
    /**
6921
     * South Africa Land Levelling Datum
6922
     * Type: Vertical
6923
     * Extent: South Africa - mainland onshore.
6924
     * Mean Sea Level at Cape Town harbour 1900 and 1907, referred to Datum Benchmark BM1.
6925
     * Orthometric heights.
6926
     */
6927
    public const EPSG_SOUTH_AFRICA_LAND_LEVELLING_DATUM = 'urn:ogc:def:datum:EPSG::1262';
6928
6929
    /**
6930
     * South American Datum 1969
6931
     * Type: Geodetic
6932
     * Extent: Brazil - onshore and offshore. In rest of South America - onshore north of approximately 45°S and
6933
     * Tierra del Fuego.
6934
     * Fundamental point: Chua. Geodetic latitude: 19°45'41.6527"S; geodetic longitude: 48°06'04.0639"W (of
6935
     * Greenwich). (Astronomic coordinates: Latitude 19°45'41.34"S +/- 0.05", longitude 48°06'07.80"W +/- 0.08").
6936
     * SAD69 uses GRS 1967 ellipsoid but with 1/f to exactly 2 decimal places. In Brazil only, replaced by SAD69(96)
6937
     * (datum code 1075).
6938
     */
6939
    public const EPSG_SOUTH_AMERICAN_DATUM_1969 = 'urn:ogc:def:datum:EPSG::6618';
6940
6941
    /**
6942
     * South American Datum 1969(96)
6943
     * Type: Geodetic
6944
     * Extent: Brazil - onshore and offshore. Includes Rocas, Fernando de Noronha archipelago, Trindade, Ihlas Martim
6945
     * Vaz and Sao Pedro e Sao Paulo.
6946
     * Fundamental point: Chua. Geodetic latitude: 19°45'41.6527"S; geodetic longitude: 48°06'04.0639"W (of
6947
     * Greenwich). (Astronomic coordinates: Latitude 19°45'41.34"S +/- 0.05", longitude 48°06'07.80"W +/- 0.08").
6948
     * SAD69 uses GRS 1967 ellipsoid but with 1/f to exactly 2 decimal places. Replaces original 1969 adjustment (datum
6949
     * code 6618) in Brazil.
6950
     */
6951
    public const EPSG_SOUTH_AMERICAN_DATUM_1969_96 = 'urn:ogc:def:datum:EPSG::1075';
6952
6953
    /**
6954
     * South East Island 1943
6955
     * Type: Geodetic
6956
     * Extent: Seychelles - Mahe, Silhouette, North, Aride Island, Praslin, La Digue and Frigate islands including
6957
     * adjacent smaller granitic islands on the Seychelles Bank, Bird Island and Denis Island.
6958
     * Fundamental point: Challenger Astro near Port Victoria lighthouse. Latitude: 4°40'39.460"S, longitude:
6959
     * 55°32'00.166"E (of Greenwich).
6960
     * Network readjusted in 1958-59 and extended to Bird and Denis islands in 1975.
6961
     */
6962
    public const EPSG_SOUTH_EAST_ISLAND_1943 = 'urn:ogc:def:datum:EPSG::1138';
6963
6964
    /**
6965
     * South Georgia 1968
6966
     * Type: Geodetic
6967
     * Extent: South Georgia and the South Sandwich Islands - South Georgia onshore.
6968
     * Fundamental point: ISTS 061.
6969
     */
6970
    public const EPSG_SOUTH_GEORGIA_1968 = 'urn:ogc:def:datum:EPSG::6722';
6971
6972
    /**
6973
     * South Yemen
6974
     * Type: Geodetic
6975
     * Extent: Yemen - South Yemen onshore mainland.
6976
     */
6977
    public const EPSG_SOUTH_YEMEN = 'urn:ogc:def:datum:EPSG::6164';
6978
6979
    /**
6980
     * Sri Lanka Datum 1999
6981
     * Type: Geodetic
6982
     * Extent: Sri Lanka - onshore.
6983
     * Fundamental point: ISM Diyatalawa. Latitude: 6°49'02.687"N, longitude: 80°57'40.880"E.
6984
     * Introduced in 2000.
6985
     */
6986
    public const EPSG_SRI_LANKA_DATUM_1999 = 'urn:ogc:def:datum:EPSG::1053';
6987
6988
    /**
6989
     * Sri Lanka Vertical Datum
6990
     * Type: Vertical
6991
     * Extent: Sri Lanka - onshore.
6992
     * MSL at Colombo 1884-1889.
6993
     * Normal-orthometric heights, but often referred to as "orthometric".
6994
     */
6995
    public const EPSG_SRI_LANKA_VERTICAL_DATUM = 'urn:ogc:def:datum:EPSG::1054';
6996
6997
    /**
6998
     * St. George Island
6999
     * Type: Geodetic
7000
     * Extent: United States (USA) - Alaska - Pribilof Islands - St George Island.
7001
     * Fundamental point latitude: 56°36'11.31"N, longitude: 169°32'36.00"W (of Greenwich).
7002
     * Many Alaskan islands were never on NAD27 but rather on independent datums. NADCON conversion program provides
7003
     * transformation from St. George Island Datum to NAD83 (original 1986 realization) - making the transformation
7004
     * appear to user as if from NAD27.
7005
     */
7006
    public const EPSG_ST_GEORGE_ISLAND = 'urn:ogc:def:datum:EPSG::6138';
7007
7008
    /**
7009
     * St. Helena Geodetic Datum 2015
7010
     * Type: Geodetic
7011
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
7012
     * ITRF2008 at epoch 2015.0. ITRF2008 coordinates (15°56'33.1198"S, 5°40'02.4412"W, 453.183m ellipsoid height) of
7013
     * Longwood IGS CORS station STHL on 1st January 2015.
7014
     * Developed by Richard Stanaway, Quickclose Pty Ltd, superseding Astro DOS 71 from 1st January 2016.
7015
     */
7016
    public const EPSG_ST_HELENA_GEODETIC_DATUM_2015 = 'urn:ogc:def:datum:EPSG::1174';
7017
7018
    /**
7019
     * St. Helena Tritan
7020
     * Type: Geodetic
7021
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
7022
     * WGS 84(G1150) at epoch 2011.773. WGS 84 coordinates (15°56'33.1217"S, 5°40'02.4436"W, 453.288m ellipsoid
7023
     * height) of Longwood IGS CORS station STHL on 9th October 2011.
7024
     */
7025
    public const EPSG_ST_HELENA_TRITAN = 'urn:ogc:def:datum:EPSG::1173';
7026
7027
    /**
7028
     * St. Helena Tritan Vertical Datum 2011
7029
     * Type: Vertical
7030
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
7031
     * MSL defined by Longwood IGS station STHL reference level of 436.215m.
7032
     * Defined by offset of -17.073m applied to St. Helena Tritan ellipsiodal height (CRS code 7880).
7033
     */
7034
    public const EPSG_ST_HELENA_TRITAN_VERTICAL_DATUM_2011 = 'urn:ogc:def:datum:EPSG::1176';
7035
7036
    /**
7037
     * St. Helena Vertical Datum 2015
7038
     * Type: Vertical
7039
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
7040
     * Longwood IGS station STHL reference level of 436.312m.
7041
     * Defined by SHGEOID15 geoid model (transformation code 7891) applied to SHGD2015 (CRS code 7885).
7042
     */
7043
    public const EPSG_ST_HELENA_VERTICAL_DATUM_2015 = 'urn:ogc:def:datum:EPSG::1177';
7044
7045
    /**
7046
     * St. Kilda
7047
     * Type: Vertical
7048
     * Extent: United Kingdom (UK) - Great Britain - Scotland - St Kilda onshore.
7049
     * Orthometric heights.
7050
     */
7051
    public const EPSG_ST_KILDA = 'urn:ogc:def:datum:EPSG::5145';
7052
7053
    /**
7054
     * St. Kitts 1955
7055
     * Type: Geodetic
7056
     * Extent: St Kitts and Nevis - onshore.
7057
     * Fundamental point: station K12.
7058
     */
7059
    public const EPSG_ST_KITTS_1955 = 'urn:ogc:def:datum:EPSG::6605';
7060
7061
    /**
7062
     * St. Lawrence Island
7063
     * Type: Geodetic
7064
     * Extent: United States (USA) - Alaska - St Lawrence Island.
7065
     * Many Alaskan islands were never on NAD27 but rather on independent datums. NADCON conversion program provides
7066
     * transformation from St. Lawrence Island Datum to NAD83 (original 1986 realization) - making the transformation
7067
     * appear to user as if from NAD27.
7068
     */
7069
    public const EPSG_ST_LAWRENCE_ISLAND = 'urn:ogc:def:datum:EPSG::6136';
7070
7071
    /**
7072
     * St. Lucia 1955
7073
     * Type: Geodetic
7074
     * Extent: St Lucia - onshore.
7075
     * Fundamental point: station DCS3.
7076
     */
7077
    public const EPSG_ST_LUCIA_1955 = 'urn:ogc:def:datum:EPSG::6606';
7078
7079
    /**
7080
     * St. Marys
7081
     * Type: Vertical
7082
     * Extent: United Kingdom (UK) - Great Britain - England - Isles of Scilly onshore.
7083
     * Mean Sea Level at St. Marys 1887. Initially realised through levelling network adjustment, from 2002 redefined
7084
     * to be realised through OSGM geoid model.
7085
     * Orthometric heights.
7086
     */
7087
    public const EPSG_ST_MARYS = 'urn:ogc:def:datum:EPSG::5147';
7088
7089
    /**
7090
     * St. Paul Island
7091
     * Type: Geodetic
7092
     * Extent: United States (USA) - Alaska - Pribilof Islands - St Paul Island.
7093
     * Fundamental point latitude: 57°07'16.86"N, longitude: 170°16'24.00"W (of Greenwich).
7094
     * Many Alaskan islands were never on NAD27 but rather on independent datums. NADCON conversion program provides
7095
     * transformation from St. Paul Island Datum to NAD83 (original 1986 realization) - making the transformation
7096
     * appear to user as if from NAD27.
7097
     */
7098
    public const EPSG_ST_PAUL_ISLAND = 'urn:ogc:def:datum:EPSG::6137';
7099
7100
    /**
7101
     * St. Stephen (Ferro)
7102
     * Type: Geodetic
7103
     * Extent: Austria - Lower Austria. Czechia - Moravia and Czech Silesia.
7104
     * Fundamental point: St. Stephen's cathedral, Vienna. Latitude: 48°12'31.54"N, longitude: 34°02'27.32"E (of
7105
     * Ferro).
7106
     */
7107
    public const EPSG_ST_STEPHEN_FERRO = 'urn:ogc:def:datum:EPSG::1189';
7108
7109
    /**
7110
     * St. Vincent 1945
7111
     * Type: Geodetic
7112
     * Extent: St Vincent and the northern Grenadine Islands - onshore.
7113
     * Fundamental point: station V1, Fort Charlotte.
7114
     */
7115
    public const EPSG_ST_VINCENT_1945 = 'urn:ogc:def:datum:EPSG::6607';
7116
7117
    /**
7118
     * Staatlichen Nivellementnetzes 1976
7119
     * Type: Vertical
7120
     * Extent: Germany - states of former East Germany - Berlin, Brandenburg; Mecklenburg-Vorpommern; Sachsen;
7121
     * Sachsen-Anhalt; Thuringen.
7122
     * Network adjusted in 1976. Height at reference point Hoppegarten defined as 1957 value from the UPLN adjustment.
7123
     * Datum at Kronstadt is mean sea level of Baltic in 1833.
7124
     * Introduced in 1979. Uses Normal heights. Replaced by DHHN92.
7125
     */
7126
    public const EPSG_STAATLICHEN_NIVELLEMENTNETZES_1976 = 'urn:ogc:def:datum:EPSG::5183';
7127
7128
    /**
7129
     * Stewart Island 1977
7130
     * Type: Vertical
7131
     * Extent: New Zealand - Stewart Island.
7132
     * MSL at 3-5 high and low tides at two different locations.
7133
     */
7134
    public const EPSG_STEWART_ISLAND_1977 = 'urn:ogc:def:datum:EPSG::5170';
7135
7136
    /**
7137
     * Stockholm 1938
7138
     * Type: Geodetic
7139
     * Extent: Sweden - onshore.
7140
     * Fundamental point: Stockholm observatory.
7141
     * Replaced by RT90 adjustment (datum code 6124).
7142
     */
7143
    public const EPSG_STOCKHOLM_1938 = 'urn:ogc:def:datum:EPSG::6308';
7144
7145
    /**
7146
     * Stockholm 1938 (Stockholm)
7147
     * Type: Geodetic
7148
     * Extent: Sweden - onshore.
7149
     * Fundamental point: Stockholm observatory
7150
     * Replaced by RT90 adjustment (datum code 6124).
7151
     */
7152
    public const EPSG_STOCKHOLM_1938_STOCKHOLM = 'urn:ogc:def:datum:EPSG::6814';
7153
7154
    /**
7155
     * Stornoway
7156
     * Type: Vertical
7157
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Outer Hebrides onshore.
7158
     * Mean Sea Level at Stornoway 1977 correlated to pre-1900. Initially realised through levelling network
7159
     * adjustment, from 2002 redefined to be realised through OSGM geoid model.
7160
     * Orthometric heights.
7161
     */
7162
    public const EPSG_STORNOWAY = 'urn:ogc:def:datum:EPSG::5144';
7163
7164
    /**
7165
     * Sule Skerry
7166
     * Type: Vertical
7167
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Sule Skerry onshore.
7168
     * Orthometric heights.
7169
     */
7170
    public const EPSG_SULE_SKERRY = 'urn:ogc:def:datum:EPSG::5142';
7171
7172
    /**
7173
     * Svalbard vertical datum 2006
7174
     * Type: Vertical
7175
     * Extent: Arctic (Norway (Svalbard) onshore and offshore) - between 81°10'N and 76°10'N.
7176
     * Mean Sea Level (MSL) at Ny-Ålesund. The SVD2006 surface (arcgp-2006-sk) is the Arctic Gravity Project 2006
7177
     * (arcgp-2006) surface adjusted to two benchmarks tied to the Ny-Ålesund tide gauge. arcgp-2006-sk=arcgp-2006 -
7178
     * 0.8986m.
7179
     */
7180
    public const EPSG_SVALBARD_VERTICAL_DATUM_2006 = 'urn:ogc:def:datum:EPSG::1323';
7181
7182
    /**
7183
     * Swiss Terrestrial Reference System 1995
7184
     * Type: Geodetic
7185
     * Extent: Liechtenstein; Switzerland.
7186
     * ETRF89 at epoch 1993.0.
7187
     * First realized through CHTRF95 and subsequently CHTRF98, 2004, 2010 and 2016 with an aim to re-measure every 6
7188
     * years.
7189
     */
7190
    public const EPSG_SWISS_TERRESTRIAL_REFERENCE_SYSTEM_1995 = 'urn:ogc:def:datum:EPSG::6151';
7191
7192
    /**
7193
     * System of the Unified Trigonometrical Cadastral Network
7194
     * Type: Geodetic
7195
     * Extent: Czechia; Slovakia.
7196
     * Modification of Austrian MGI datum, code 6312.
7197
     */
7198
    public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK = 'urn:ogc:def:datum:EPSG::6156';
7199
7200
    /**
7201
     * System of the Unified Trigonometrical Cadastral Network (Ferro)
7202
     * Type: Geodetic
7203
     * Extent: Czechia; Slovakia.
7204
     * Modification of Austrian MGI (Ferro) datum.
7205
     */
7206
    public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK_FERRO = 'urn:ogc:def:datum:EPSG::6818';
7207
7208
    /**
7209
     * System of the Unified Trigonometrical Cadastral Network [JTSK03]
7210
     * Type: Geodetic
7211
     * Extent: Slovakia.
7212
     */
7213
    public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK_JTSK03 = 'urn:ogc:def:datum:EPSG::1201';
7214
7215
    /**
7216
     * System of the Unified Trigonometrical Cadastral Network/05
7217
     * Type: Geodetic
7218
     * Extent: Czechia.
7219
     * Constrained to S-JTSK but realised through readjustment in projected CRS domain. Related to ETRS89 R05
7220
     * realisation through transformation code 5226.
7221
     */
7222
    public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK_05 = 'urn:ogc:def:datum:EPSG::1052';
7223
7224
    /**
7225
     * System of the Unified Trigonometrical Cadastral Network/05 (Ferro)
7226
     * Type: Geodetic
7227
     * Extent: Czechia.
7228
     * Constrained to S-JTSK but realised through readjustment in projected CRS domain.
7229
     */
7230
    public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK_05_FERRO = 'urn:ogc:def:datum:EPSG::1055';
7231
7232
    /**
7233
     * TM65
7234
     * Type: Geodetic
7235
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
7236
     * Adjusted to best mean fit 12 stations of the OSNI 1952 primary adjustment.
7237
     * Differences between OSNI 1952 and TM65 at these stations are RMS 0.25m east, 0.23m north, maximum vector 0.57m.
7238
     * TM65 replaced by and not to be confused with Geodetic Datum of 1965 alias 1975 Mapping Adjustment or TM75 (datum
7239
     * code 6300).
7240
     */
7241
    public const EPSG_TM65 = 'urn:ogc:def:datum:EPSG::6299';
7242
7243
    /**
7244
     * TPEN11 Intermediate Reference Frame
7245
     * Type: Geodetic
7246
     * Extent: United Kingdom (UK) - on or related to the Trans-Pennine rail route from Liverpool via Manchester to
7247
     * Bradford and Leeds.
7248
     * Defined through the application of the TPEN11 NTv2 transformation (code 9365) to ETRS89 as realized through
7249
     * OSNet v2009 CORS.
7250
     * Created in 2020 to support intermediate CRS "TPEN11-IRF" in the emulation of the combined TPEN11 Snake and
7251
     * TPEN11ext Snake map projections.
7252
     */
7253
    public const EPSG_TPEN11_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1266';
7254
7255
    /**
7256
     * Tahaa 54
7257
     * Type: Geodetic
7258
     * Extent: French Polynesia - Society Islands - Bora Bora, Huahine, Raiatea and Tahaa.
7259
     * Fundamental point: Tahaa East Base. Latitude: 16°33'20.97"S, longitude: 151°29'06.25"W (of Greenwich).
7260
     * Replaced by RGPF (datum code 6687).
7261
     */
7262
    public const EPSG_TAHAA_54 = 'urn:ogc:def:datum:EPSG::6629';
7263
7264
    /**
7265
     * Tahaa SAU 2001
7266
     * Type: Vertical
7267
     * Extent: French Polynesia - Society Islands - Tahaa.
7268
     * Fundamental benchmark: RN16
7269
     * Included as part of NGPF - see datum code 5195.
7270
     */
7271
    public const EPSG_TAHAA_SAU_2001 = 'urn:ogc:def:datum:EPSG::5201';
7272
7273
    /**
7274
     * Tahiti 52
7275
     * Type: Geodetic
7276
     * Extent: French Polynesia - Society Islands - Moorea and Tahiti.
7277
     * Fundamental point: Tahiti North Base. Latitude: 17°38'10.0"S, longitude: 149°36'57.8"W (of Greenwich).
7278
     * Replaced by Tahiti 79 (datum code 6690) in Tahiti and Moorea 87 (code 6691) in Moorea.
7279
     */
7280
    public const EPSG_TAHITI_52 = 'urn:ogc:def:datum:EPSG::6628';
7281
7282
    /**
7283
     * Tahiti 79
7284
     * Type: Geodetic
7285
     * Extent: French Polynesia - Society Islands - Tahiti.
7286
     * Fundamental point: Tahiti North Base. Latitude: 17°38'10.0"S, longitude: 149°36'57.8"W (of Greenwich).
7287
     * Replaces Tahiti 52 (datum code 6628) in Tahiti. Replaced by RGPF (datum code 6687).
7288
     */
7289
    public const EPSG_TAHITI_79 = 'urn:ogc:def:datum:EPSG::6690';
7290
7291
    /**
7292
     * Taiwan Datum 1967
7293
     * Type: Geodetic
7294
     * Extent: Taiwan, Republic of China - onshore - Taiwan Island, Penghu (Pescadores) Islands.
7295
     * Fundamental point: Hu Tzu Shan. Latitude: 23°58'32.34"N, longitude: 120°58'25.975"E (of Greenwich).
7296
     * Adopted in 1980. TWD67 uses the GRS 1967 ellipsoid but with 1/f to exactly 2 decimal places.
7297
     */
7298
    public const EPSG_TAIWAN_DATUM_1967 = 'urn:ogc:def:datum:EPSG::1025';
7299
7300
    /**
7301
     * Taiwan Datum 1997
7302
     * Type: Geodetic
7303
     * Extent: Taiwan, Republic of China - onshore and offshore - Taiwan Island, Penghu (Pescadores) Islands.
7304
     * ITRF94 at epoch 1997.0
7305
     * Adopted in 1998.
7306
     */
7307
    public const EPSG_TAIWAN_DATUM_1997 = 'urn:ogc:def:datum:EPSG::1026';
7308
7309
    /**
7310
     * Taiwan Vertical Datum 2001
7311
     * Type: Vertical
7312
     * Extent: Taiwan, Republic of China - onshore - Taiwan Island.
7313
     * Mean Sea Level at Keelung between 1957 and 1991.
7314
     * Orthometric heights.
7315
     */
7316
    public const EPSG_TAIWAN_VERTICAL_DATUM_2001 = 'urn:ogc:def:datum:EPSG::1224';
7317
7318
    /**
7319
     * Tananarive 1925
7320
     * Type: Geodetic
7321
     * Extent: Madagascar - onshore and nearshore.
7322
     * Fundamental point: Tananarive observatory. Latitude: 18°55'02.10"S, longitude: 47°33'06.75"E (of Greenwich).
7323
     */
7324
    public const EPSG_TANANARIVE_1925 = 'urn:ogc:def:datum:EPSG::6297';
7325
7326
    /**
7327
     * Tananarive 1925 (Paris)
7328
     * Type: Geodetic
7329
     * Extent: Madagascar - onshore.
7330
     * Fundamental point: Tananarive observatory. Latitude: 21.0191667g S, longitude: 50.23849537g E (of Paris).
7331
     */
7332
    public const EPSG_TANANARIVE_1925_PARIS = 'urn:ogc:def:datum:EPSG::6810';
7333
7334
    /**
7335
     * Tapi Aike
7336
     * Type: Geodetic
7337
     * Extent: Argentina - Santa Cruz province south of approximately 50°20'S.
7338
     * Replaced by Campo Inchauspe (code 6221) for topographic mapping, use for oil exploration and production
7339
     * continues.
7340
     */
7341
    public const EPSG_TAPI_AIKE = 'urn:ogc:def:datum:EPSG::1257';
7342
7343
    /**
7344
     * Taranaki 1970
7345
     * Type: Vertical
7346
     * Extent: New Zealand - North Island - Taranaki vertical CRS area.
7347
     * MSL at Taranaki harbour 1918-1921.
7348
     */
7349
    public const EPSG_TARANAKI_1970 = 'urn:ogc:def:datum:EPSG::5167';
7350
7351
    /**
7352
     * Tararu 1952
7353
     * Type: Vertical
7354
     * Extent: New Zealand - North Island - Tararu vertical CRS area.
7355
     * MSL at Tararu Point 1922-1923.
7356
     */
7357
    public const EPSG_TARARU_1952 = 'urn:ogc:def:datum:EPSG::5166';
7358
7359
    /**
7360
     * Tenerife
7361
     * Type: Vertical
7362
     * Extent: Spain - Canary Islands - Tenerife onshore.
7363
     * Mean Sea Level at Santa Cruz de Tenerife harbour between 1960 and 1970.
7364
     * Orthometric heights.
7365
     */
7366
    public const EPSG_TENERIFE = 'urn:ogc:def:datum:EPSG::1281';
7367
7368
    /**
7369
     * Tern Island 1961
7370
     * Type: Geodetic
7371
     * Extent: United States (USA) - Hawaii - Tern Island and Sorel Atoll.
7372
     * Fundamental point: station FRIG on tern island, station B4 on Sorol Atoll.
7373
     * Two independent astronomic determinations considered to be consistent through adoption of common transformation
7374
     * to WGS 84 (see tfm code 15795).
7375
     */
7376
    public const EPSG_TERN_ISLAND_1961 = 'urn:ogc:def:datum:EPSG::6707';
7377
7378
    /**
7379
     * Tete
7380
     * Type: Geodetic
7381
     * Extent: Mozambique - onshore.
7382
     * Fundamental point: Tete.
7383
     */
7384
    public const EPSG_TETE = 'urn:ogc:def:datum:EPSG::6127';
7385
7386
    /**
7387
     * Timbalai 1948
7388
     * Type: Geodetic
7389
     * Extent: Brunei - onshore and offshore; Malaysia - East Malaysia (Sabah; Sarawak) - onshore and offshore.
7390
     * Fundamental point: Station P85 at Timbalai. Latitude: 5°17' 3.548"N, longitude: 115°10'56.409"E (of
7391
     * Greenwich).
7392
     * In 1968, the original adjustment was densified in Sarawak and extended to Sabah.
7393
     */
7394
    public const EPSG_TIMBALAI_1948 = 'urn:ogc:def:datum:EPSG::6298';
7395
7396
    /**
7397
     * Tokyo
7398
     * Type: Geodetic
7399
     * Extent: Japan - onshore; North Korea - onshore; South Korea - onshore.
7400
     * Fundamental point: Nikon-Keido-Genten. Latitude: 35°39'17.5148"N, longitude: 139°44'40.5020"E (of Greenwich).
7401
     * Longitude derived in 1918.
7402
     * In Japan, replaces Tokyo 1892 (code 1048) and replaced by Japanese Geodetic Datum 2000 (code 6611). In Korea
7403
     * used only for geodetic applications before being replaced by Korean 1985 (code 6162).
7404
     */
7405
    public const EPSG_TOKYO = 'urn:ogc:def:datum:EPSG::6301';
7406
7407
    /**
7408
     * Tokyo 1892
7409
     * Type: Geodetic
7410
     * Extent: Japan - onshore; North Korea - onshore; South Korea - onshore.
7411
     * Fundamental point: Nikon-Keido-Genten. Latitude: 35°39'17.5148"N, longitude: 139°44'30.0970"E (of Greenwich).
7412
     * Longitude derived in 1892.
7413
     * Extended from Japan to Korea in 1898. In Japan replaced by Tokyo 1918 (datum code 6301). In South Korea replaced
7414
     * by Tokyo 1918 (code 6301) only for geodetic purposes; for all other purposes replaced by Korean 1985 (code
7415
     * 6162).
7416
     */
7417
    public const EPSG_TOKYO_1892 = 'urn:ogc:def:datum:EPSG::1048';
7418
7419
    /**
7420
     * Tonga Geodetic Datum 2005
7421
     * Type: Geodetic
7422
     * Extent: Tonga - onshore and offshore.
7423
     * Based on ITRF2000 at epoch 2005.0.
7424
     */
7425
    public const EPSG_TONGA_GEODETIC_DATUM_2005 = 'urn:ogc:def:datum:EPSG::1095';
7426
7427
    /**
7428
     * Trieste
7429
     * Type: Vertical
7430
     * Extent: Bosnia and Herzegovina; Croatia - onshore; Kosovo; Montenegro - onshore; North Macedonia; Serbia;
7431
     * Slovenia - onshore.
7432
     * Reference point HM1(BV1)-Trieste defined relative to mean sea level at Trieste in 1875.
7433
     * Normal-orthometric heights. In Croatia replaced by HVRS71 (datum code 5207).
7434
     */
7435
    public const EPSG_TRIESTE = 'urn:ogc:def:datum:EPSG::1050';
7436
7437
    /**
7438
     * Trinidad 1903
7439
     * Type: Geodetic
7440
     * Extent: Trinidad and Tobago - Trinidad - onshore and offshore.
7441
     * Station 00, Harbour Master's Flagstaff, Port of Spain.
7442
     * Trinidad 1903 / Trinidad Grid coordinates (Clarke's links): 333604.30 E, 436366.91 N (Latitude: 10°38'39.01"N,
7443
     * Longitude: 61°30'38.00"W of Greenwich).
7444
     */
7445
    public const EPSG_TRINIDAD_1903 = 'urn:ogc:def:datum:EPSG::6302';
7446
7447
    /**
7448
     * Tristan 1968
7449
     * Type: Geodetic
7450
     * Extent: St Helena, Ascension and Tristan da Cunha - Tristan da Cunha island group including Tristan,
7451
     * Inaccessible, Nightingale, Middle and Stoltenhoff Islands.
7452
     */
7453
    public const EPSG_TRISTAN_1968 = 'urn:ogc:def:datum:EPSG::6734';
7454
7455
    /**
7456
     * Trucial Coast 1948
7457
     * Type: Geodetic
7458
     * Extent: United Arab Emirates (UAE) - Abu Dhabi onshore and Dubai onshore.
7459
     * Fundamental point: TC1. Latitude: 25°23'50.190"N, longitude: 55°26'43.950"E (of Greenwich).
7460
     */
7461
    public const EPSG_TRUCIAL_COAST_1948 = 'urn:ogc:def:datum:EPSG::6303';
7462
7463
    /**
7464
     * Turkish National Reference Frame
7465
     * Type: Geodetic
7466
     * Extent: Türkiye (Turkey) - onshore and offshore.
7467
     * ITRF96 at epoch 2005.0.
7468
     */
7469
    public const EPSG_TURKISH_NATIONAL_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1057';
7470
7471
    /**
7472
     * Tutuila Vertical Datum of 1962
7473
     * Type: Vertical
7474
     * Extent: American Samoa - Tutuila island.
7475
     * Mean sea level at Pago Pago harbor, Tutuila, over 10 years 1949-1955 and 1957-1959. Benchmark NO 2 1948 =
7476
     * 7.67ftUS.
7477
     * Replaced by American Samoa Vertical Datum of 2002 (datum code 1125).
7478
     */
7479
    public const EPSG_TUTUILA_VERTICAL_DATUM_OF_1962 = 'urn:ogc:def:datum:EPSG::1121';
7480
7481
    /**
7482
     * Ukraine 2000
7483
     * Type: Geodetic
7484
     * Extent: Ukraine - onshore and offshore.
7485
     * Orientation and scale constrained to be same as ITRF2000 at epoch 2005.0. Position is minimised deviation
7486
     * between reference ellipsoid and quasigeoid in territory of Ukraine.
7487
     */
7488
    public const EPSG_UKRAINE_2000 = 'urn:ogc:def:datum:EPSG::1077';
7489
7490
    /**
7491
     * Vanua Levu 1915
7492
     * Type: Geodetic
7493
     * Extent: Fiji - Vanua Levu and Taveuni.
7494
     * Latitude origin was obtained astronomically at station Numuiloa = 16°23'38.36"S, longitude origin was obtained
7495
     * astronomically at station Suva = 178°25'35.835"E.
7496
     * For topographic mapping, replaced by Fiji 1956. For other purposes, replaced by Fiji 1986.
7497
     */
7498
    public const EPSG_VANUA_LEVU_1915 = 'urn:ogc:def:datum:EPSG::6748';
7499
7500
    /**
7501
     * Vientiane 1982
7502
     * Type: Geodetic
7503
     * Extent: Laos.
7504
     * Fundamental point: Vientiane (Nongteng) Astro Pillar. Latitude: 18°01'31.6301"N, longitude: 102°30'56.6999"E
7505
     * (of Greenwich).
7506
     * Replaced by Lao 1993.
7507
     */
7508
    public const EPSG_VIENTIANE_1982 = 'urn:ogc:def:datum:EPSG::6676';
7509
7510
    /**
7511
     * Vietnam 2000
7512
     * Type: Geodetic
7513
     * Extent: Vietnam - onshore.
7514
     * Point N00, located in the premises of the Land Administration Research Institute, Hoang Quoc Viet Street, Hanoi.
7515
     * Replaces Hanoi 1972.
7516
     */
7517
    public const EPSG_VIETNAM_2000 = 'urn:ogc:def:datum:EPSG::6756';
7518
7519
    /**
7520
     * Virgin Islands Vertical Datum of 2009
7521
     * Type: Vertical
7522
     * Extent: US Virgin Islands - onshore - St Croix, St John, and St Thomas.
7523
     * Mean sea level for National Tidal Datum Epoch 1983–2001 at (i) Lime Tree Bay, St. Croix (BM 9751401 M =
7524
     * 3.111m) , (ii) Lameshur Bay, St. John (BM 9751381 TIDAL A = 1.077m) , and (iii) Charlotte Amalie, St. Thomas (BM
7525
     * 9751639 F = 1.552m).
7526
     * Replaces all earlier vertical datums on these islands.
7527
     */
7528
    public const EPSG_VIRGIN_ISLANDS_VERTICAL_DATUM_OF_2009 = 'urn:ogc:def:datum:EPSG::1124';
7529
7530
    /**
7531
     * Viti Levu 1912
7532
     * Type: Geodetic
7533
     * Extent: Fiji - Viti Levu island.
7534
     * Latitude origin was obtained astronomically at station Monavatu = 17°53'28.285"S, longitude origin was obtained
7535
     * astronomically at station Suva = 178°25'35.835"E.
7536
     * For topographic mapping, replaced by Fiji 1956. For other purposes, replaced by Fiji 1986.
7537
     */
7538
    public const EPSG_VITI_LEVU_1912 = 'urn:ogc:def:datum:EPSG::6752';
7539
7540
    /**
7541
     * Voirol 1875
7542
     * Type: Geodetic
7543
     * Extent: Algeria - onshore north of 32°N.
7544
     * Fundamental point: Voirol. Latitude: 36°45'07.927"N, longitude: 3°02'49.435"E of Greenwich. Uses RGS (and old
7545
     * IGN) value of 2°20'13.95"for Greenwich-Paris meridian difference.
7546
     * Replaced by Voirol 1879 (code 6671).
7547
     */
7548
    public const EPSG_VOIROL_1875 = 'urn:ogc:def:datum:EPSG::6304';
7549
7550
    /**
7551
     * Voirol 1875 (Paris)
7552
     * Type: Geodetic
7553
     * Extent: Algeria - onshore north of 32°N.
7554
     * Fundamental point: Voirol. Latitude: 40.83578 grads N, longitude: 0.78873 grads E (of Paris).
7555
     */
7556
    public const EPSG_VOIROL_1875_PARIS = 'urn:ogc:def:datum:EPSG::6811';
7557
7558
    /**
7559
     * Voirol 1879
7560
     * Type: Geodetic
7561
     * Extent: Algeria - onshore north of 32°N.
7562
     * Fundamental point: Voirol. Latitude: 36°45'08.199"N, longitude: 3°02'49.435"E (of Greenwich). Uses RGS (and
7563
     * old IGN) value of 2°20'13.95"for Greenwich-Paris meridian difference.
7564
     * Replaces Voirol 1875 (code 6304).
7565
     */
7566
    public const EPSG_VOIROL_1879 = 'urn:ogc:def:datum:EPSG::6671';
7567
7568
    /**
7569
     * Voirol 1879 (Paris)
7570
     * Type: Geodetic
7571
     * Extent: Algeria - onshore north of 32°N.
7572
     * Fundamental point: Voirol. Latitude: 40.835864 grads N, longitude: 0.788735 grads E (of Paris).
7573
     * Replaces Voirol 1875 (Paris) (code 6811).
7574
     */
7575
    public const EPSG_VOIROL_1879_PARIS = 'urn:ogc:def:datum:EPSG::6821';
7576
7577
    /**
7578
     * WGS 72 Transit Broadcast Ephemeris
7579
     * Type: Dynamic geodetic
7580
     * Extent: World.
7581
     * Alleged datum for use with Transit broadcast ephemeris prior to 1989. Relationship to WGS 72 has changed over
7582
     * time.
7583
     */
7584
    public const EPSG_WGS_72_TRANSIT_BROADCAST_EPHEMERIS = 'urn:ogc:def:datum:EPSG::6324';
7585
7586
    /**
7587
     * Waitangi (Chatham Island) 1959
7588
     * Type: Vertical
7589
     * Extent: New Zealand - Chatham Island - onshore.
7590
     * MSL at Waitangi harbour collected in 1959.
7591
     */
7592
    public const EPSG_WAITANGI_CHATHAM_ISLAND_1959 = 'urn:ogc:def:datum:EPSG::5169';
7593
7594
    /**
7595
     * Wake Island 1952
7596
     * Type: Geodetic
7597
     * Extent: Wake atoll - onshore.
7598
     */
7599
    public const EPSG_WAKE_ISLAND_1952 = 'urn:ogc:def:datum:EPSG::6733';
7600
7601
    /**
7602
     * Wellington 1953
7603
     * Type: Vertical
7604
     * Extent: New Zealand - North Island - Wellington vertical CRS area.
7605
     * MSL at Wellington harbour 1909-1946.
7606
     */
7607
    public const EPSG_WELLINGTON_1953 = 'urn:ogc:def:datum:EPSG::5168';
7608
7609
    /**
7610
     * Wiener Null
7611
     * Type: Vertical
7612
     * Extent: Austria - Vienna city state.
7613
     * Historic benchmark on the Schwedenbrücke over an artificial channel of River Danube (Donaukanal) with GHA
7614
     * height of 156.680m.
7615
     */
7616
    public const EPSG_WIENER_NULL = 'urn:ogc:def:datum:EPSG::1267';
7617
7618
    /**
7619
     * World Geodetic System 1966
7620
     * Type: Dynamic geodetic
7621
     * Extent: World.
7622
     * Developed from a worldwide distribution of terrestrial and geodetic satellite observations and defined through a
7623
     * set of station coordinates.
7624
     * A worldwide 5° × 5° mean free air gravity anomaly field provided the basic data for producing the WGS 66
7625
     * gravimetric geoid. Replaced by WGS 72.
7626
     */
7627
    public const EPSG_WORLD_GEODETIC_SYSTEM_1966 = 'urn:ogc:def:datum:EPSG::6760';
7628
7629
    /**
7630
     * World Geodetic System 1972
7631
     * Type: Dynamic geodetic
7632
     * Extent: World.
7633
     * Developed from a worldwide distribution of terrestrial and geodetic satellite observations and defined through a
7634
     * set of station coordinates.
7635
     * Used by GPS before 1987. For Transit satellite positioning see also WGS 72BE.
7636
     */
7637
    public const EPSG_WORLD_GEODETIC_SYSTEM_1972 = 'urn:ogc:def:datum:EPSG::6322';
7638
7639
    /**
7640
     * World Geodetic System 1984 (G1150)
7641
     * Type: Dynamic geodetic
7642
     * Extent: World.
7643
     * Defined through coordinates of 17 GPS tracking stations adjusted to a subset of 49 IGS stations. Observations
7644
     * made in February 2001. The reference epoch for ITRF2000 is 1997.0; station coordinates were transformed to
7645
     * 2001.0 using IERS station velocities.
7646
     * Replaces World Geodetic System 1984 (G873) from 2002-01-20. Replaced by World Geodetic System 1984 (G1674) from
7647
     * 2012-02-08.
7648
     */
7649
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G1150 = 'urn:ogc:def:datum:EPSG::1154';
7650
7651
    /**
7652
     * World Geodetic System 1984 (G1674)
7653
     * Type: Dynamic geodetic
7654
     * Extent: World.
7655
     * Defined through coordinates of 15 GPS tracking stations adjusted to a subset of IGS stations at epoch 2005.0.
7656
     * The IGS station coordinates are considered to be equivalent to ITRF2008.
7657
     * Replaces World Geodetic System 1984 (G1150) from 2012-02-08. Replaced by World Geodetic System 1984 (G1762) from
7658
     * 2013-10-16.
7659
     */
7660
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G1674 = 'urn:ogc:def:datum:EPSG::1155';
7661
7662
    /**
7663
     * World Geodetic System 1984 (G1762)
7664
     * Type: Dynamic geodetic
7665
     * Extent: World.
7666
     * Defined through coordinates of 19 GPS tracking stations adjusted to a subset of IGb08 stations at epoch 2005.0
7667
     * using observations made in May 2013. The IGb08 coordinates are considered to be equivalent to ITRF2008.
7668
     * Replaces WGS 84 (G1674) from 2013-10-16. Frame was redesignated WGS 84 (G1762') after coordinates of 7 NGA
7669
     * tracking stations were changed following station moves and antenna updates 2014-08 to 2015-06. Replaced by WGS
7670
     * 84 (G2139) from 2021-01-03.
7671
     */
7672
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G1762 = 'urn:ogc:def:datum:EPSG::1156';
7673
7674
    /**
7675
     * World Geodetic System 1984 (G2139)
7676
     * Type: Dynamic geodetic
7677
     * Extent: World.
7678
     * Defined through coordinates of 19 GPS tracking stations aligned with a subset of IGb14 stations at epoch 2016.0.
7679
     * The IGb14 station coordinates are considered to be equivalent to ITRF2014.
7680
     * Replaces World Geodetic System 1984 (G1762) from 2021-01-03. Tracking station coordinate changes on 2021-03-28
7681
     * when NGA implemented IGS definition of antenna phase centre offset.
7682
     */
7683
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G2139 = 'urn:ogc:def:datum:EPSG::1309';
7684
7685
    /**
7686
     * World Geodetic System 1984 (G730)
7687
     * Type: Dynamic geodetic
7688
     * Extent: World.
7689
     * Defined through coordinates of 10 GPS tracking stations adjusted to a subset of ITRF92 stations at epoch 1994.0.
7690
     * The reference epoch for ITRF92 is 1988.0; the ITRF92 station coordinates were transformed to 1994.0 using the
7691
     * NNR-NUVEL1 plate motion model.
7692
     * Replaces the original Transit-derived World Geodetic System 1984 from 1994-06-29. Replaced by World Geodetic
7693
     * System 1984 (G873) from 1997-01-29.
7694
     */
7695
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G730 = 'urn:ogc:def:datum:EPSG::1152';
7696
7697
    /**
7698
     * World Geodetic System 1984 (G873)
7699
     * Type: Dynamic geodetic
7700
     * Extent: World.
7701
     * Defined through coordinates of 13 GPS tracking stations adjusted to a subset of ITRF94 stations at epoch 1997.0.
7702
     * The reference epoch for the adjustment was 1994.0 and the coordinates were propagated to 1997.0 using the
7703
     * NNR-NUVEL-1A plate motion model.
7704
     * Replaces World Geodetic System 1984 (G730) from 1997-01-29. Replaced by World Geodetic System 1984 (G1150) from
7705
     * 2002-01-20.
7706
     */
7707
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G873 = 'urn:ogc:def:datum:EPSG::1153';
7708
7709
    /**
7710
     * World Geodetic System 1984 (Transit)
7711
     * Type: Dynamic geodetic
7712
     * Extent: World.
7713
     * Defined through coordinates of 5 GPS tracking stations in the Transit doppler positioning NSWC 9Z-2 reference
7714
     * frame transformed to be aligned to the BIH Conventional Terrestrial Reference Frame (BTS) at epoch 1984.0.
7715
     * 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
7716
     * meridian rotated westward by 0.814" to be aligned to the BTS at epoch 1984.0. Replaced by World Geodetic System
7717
     * 1984 (G730) from 1994-06-29.
7718
     */
7719
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_TRANSIT = 'urn:ogc:def:datum:EPSG::1166';
7720
7721
    /**
7722
     * World Geodetic System 1984 ensemble
7723
     * Type: Ensemble
7724
     * Extent: World.
7725
     * EPSG::6326 has been the then current realization. No distinction is made between the original and subsequent
7726
     * (G730, G873, G1150, G1674, G1762 and G2139) WGS 84 frames. Since 1997, WGS 84 has been maintained within 10cm of
7727
     * the then current ITRF.
7728
     */
7729
    public const EPSG_WORLD_GEODETIC_SYSTEM_1984_ENSEMBLE = 'urn:ogc:def:datum:EPSG::6326';
7730
7731
    /**
7732
     * Xian 1980
7733
     * Type: Geodetic
7734
     * Extent: China - onshore.
7735
     * Xian observatory.
7736
     */
7737
    public const EPSG_XIAN_1980 = 'urn:ogc:def:datum:EPSG::6610';
7738
7739
    /**
7740
     * Yacare
7741
     * Type: Geodetic
7742
     * Extent: Uruguay - onshore.
7743
     * Fundamental point: Yacare. Latitude: 30°35'53.68"S, longitude: 57°25'01.30"W (of Greenwich).
7744
     */
7745
    public const EPSG_YACARE = 'urn:ogc:def:datum:EPSG::6309';
7746
7747
    /**
7748
     * Yellow Sea 1956
7749
     * Type: Vertical
7750
     * Extent: China - onshore.
7751
     * 2 years tide readings at Qingdao.
7752
     * Replaced by Yellow Sea 1985 datum.
7753
     */
7754
    public const EPSG_YELLOW_SEA_1956 = 'urn:ogc:def:datum:EPSG::5104';
7755
7756
    /**
7757
     * Yellow Sea 1985
7758
     * Type: Vertical
7759
     * Extent: China - onshore.
7760
     * 20 years tide readings at Qingdao.
7761
     * Replaces Yellow Sea 1956 datum.
7762
     */
7763
    public const EPSG_YELLOW_SEA_1985 = 'urn:ogc:def:datum:EPSG::5137';
7764
7765
    /**
7766
     * Yemen National Geodetic Network 1996
7767
     * Type: Geodetic
7768
     * Extent: Yemen - onshore and offshore.
7769
     * Sana'a IGN reference marker.
7770
     */
7771
    public const EPSG_YEMEN_NATIONAL_GEODETIC_NETWORK_1996 = 'urn:ogc:def:datum:EPSG::6163';
7772
7773
    /**
7774
     * Yoff
7775
     * Type: Geodetic
7776
     * Extent: Senegal - onshore and offshore.
7777
     * Fundamental point: Yoff. Latitude: 14°44'41.62"N, longitude: 17°29'07.02"W (of Greenwich).
7778
     */
7779
    public const EPSG_YOFF = 'urn:ogc:def:datum:EPSG::6310';
7780
7781
    /**
7782
     * Zanderij
7783
     * Type: Geodetic
7784
     * Extent: Suriname - onshore and offshore.
7785
     */
7786
    public const EPSG_ZANDERIJ = 'urn:ogc:def:datum:EPSG::6311';
7787
7788
    /**
7789
     * Fk89
7790
     * Type: Geodetic
7791
     * Extent: Faroe Islands - onshore.
7792
     * Replaces FD54 for cadastre.
7793
     */
7794
    public const EPSG_FK89 = 'urn:ogc:def:datum:EPSG::6753';
7795
7796
    /**
7797
     * @deprecated use EPSG_LUXEMBOURG_REFERENCE_FRAME instead
7798
     */
7799
    public const EPSG_LUXEMBOURG_1930 = 'urn:ogc:def:datum:EPSG::6181';
7800
7801
    /**
7802
     * @deprecated use EPSG_NIVELLEMENT_GENERAL_DU_LUXEMBOURG_1995 instead
7803
     */
7804
    public const EPSG_NIVELLEMENT_GENERAL_DU_LUXEMBOURG = 'urn:ogc:def:datum:EPSG::5172';
7805
7806
    /**
7807
     * @deprecated use EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A_EPOCH_2010 instead
7808
     */
7809
    public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A = 'urn:ogc:def:datum:EPSG::1256';
7810
7811
    /**
7812
     * @deprecated use EPSG_INDONESIAN_GEOID_2020_VERSION_1 instead
7813
     */
7814
    public const EPSG_INDONESIAN_GEOID_2020 = 'urn:ogc:def:datum:EPSG::1294';
7815
7816
    protected static array $sridData = [
7817
        'urn:ogc:def:datum:EPSG::1024' => [
7818
            'name' => 'Hungarian Datum 1909',
7819
            'type' => 'geodetic',
7820
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
7821
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7822
            'conventional_rs' => null,
7823
            'frame_reference_epoch' => null,
7824
        ],
7825
        'urn:ogc:def:datum:EPSG::1025' => [
7826
            'name' => 'Taiwan Datum 1967',
7827
            'type' => 'geodetic',
7828
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7050',
7829
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7830
            'conventional_rs' => null,
7831
            'frame_reference_epoch' => null,
7832
        ],
7833
        'urn:ogc:def:datum:EPSG::1026' => [
7834
            'name' => 'Taiwan Datum 1997',
7835
            'type' => 'geodetic',
7836
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7837
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7838
            'conventional_rs' => null,
7839
            'frame_reference_epoch' => null,
7840
        ],
7841
        'urn:ogc:def:datum:EPSG::1027' => [
7842
            'name' => 'EGM2008 geoid',
7843
            'type' => 'vertical',
7844
            'ellipsoid' => null,
7845
            'prime_meridian' => null,
7846
            'conventional_rs' => null,
7847
            'frame_reference_epoch' => null,
7848
        ],
7849
        'urn:ogc:def:datum:EPSG::1028' => [
7850
            'name' => 'Fao 1979',
7851
            'type' => 'vertical',
7852
            'ellipsoid' => null,
7853
            'prime_meridian' => null,
7854
            'conventional_rs' => null,
7855
            'frame_reference_epoch' => null,
7856
        ],
7857
        'urn:ogc:def:datum:EPSG::1029' => [
7858
            'name' => 'Iraqi Geospatial Reference System',
7859
            'type' => 'geodetic',
7860
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7861
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7862
            'conventional_rs' => null,
7863
            'frame_reference_epoch' => null,
7864
        ],
7865
        'urn:ogc:def:datum:EPSG::1030' => [
7866
            'name' => 'N2000',
7867
            'type' => 'vertical',
7868
            'ellipsoid' => null,
7869
            'prime_meridian' => null,
7870
            'conventional_rs' => null,
7871
            'frame_reference_epoch' => null,
7872
        ],
7873
        'urn:ogc:def:datum:EPSG::1031' => [
7874
            'name' => 'MGI 1901',
7875
            'type' => 'geodetic',
7876
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
7877
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7878
            'conventional_rs' => null,
7879
            'frame_reference_epoch' => null,
7880
        ],
7881
        'urn:ogc:def:datum:EPSG::1032' => [
7882
            'name' => 'MOLDREF99',
7883
            'type' => 'geodetic',
7884
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7885
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7886
            'conventional_rs' => null,
7887
            'frame_reference_epoch' => null,
7888
        ],
7889
        'urn:ogc:def:datum:EPSG::1033' => [
7890
            'name' => 'Reseau Geodesique de la RDC 2005',
7891
            'type' => 'geodetic',
7892
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7893
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7894
            'conventional_rs' => null,
7895
            'frame_reference_epoch' => null,
7896
        ],
7897
        'urn:ogc:def:datum:EPSG::1034' => [
7898
            'name' => 'Serbian Reference Network 1998',
7899
            'type' => 'geodetic',
7900
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7901
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7902
            'conventional_rs' => null,
7903
            'frame_reference_epoch' => null,
7904
        ],
7905
        'urn:ogc:def:datum:EPSG::1035' => [
7906
            'name' => 'Red Geodesica de Canarias 1995',
7907
            'type' => 'geodetic',
7908
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7909
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7910
            'conventional_rs' => null,
7911
            'frame_reference_epoch' => null,
7912
        ],
7913
        'urn:ogc:def:datum:EPSG::1036' => [
7914
            'name' => 'Reseau Geodesique de Mayotte 2004',
7915
            'type' => 'geodetic',
7916
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7917
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7918
            'conventional_rs' => null,
7919
            'frame_reference_epoch' => null,
7920
        ],
7921
        'urn:ogc:def:datum:EPSG::1037' => [
7922
            'name' => 'Cadastre 1997',
7923
            'type' => 'geodetic',
7924
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
7925
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7926
            'conventional_rs' => null,
7927
            'frame_reference_epoch' => null,
7928
        ],
7929
        'urn:ogc:def:datum:EPSG::1038' => [
7930
            'name' => 'Reseau Geodesique de Saint Pierre et Miquelon 2006',
7931
            'type' => 'geodetic',
7932
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7933
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7934
            'conventional_rs' => null,
7935
            'frame_reference_epoch' => null,
7936
        ],
7937
        'urn:ogc:def:datum:EPSG::1039' => [
7938
            'name' => 'New Zealand Vertical Datum 2009',
7939
            'type' => 'vertical',
7940
            'ellipsoid' => null,
7941
            'prime_meridian' => null,
7942
            'conventional_rs' => null,
7943
            'frame_reference_epoch' => null,
7944
        ],
7945
        'urn:ogc:def:datum:EPSG::1040' => [
7946
            'name' => 'Dunedin-Bluff 1960',
7947
            'type' => 'vertical',
7948
            'ellipsoid' => null,
7949
            'prime_meridian' => null,
7950
            'conventional_rs' => null,
7951
            'frame_reference_epoch' => null,
7952
        ],
7953
        'urn:ogc:def:datum:EPSG::1041' => [
7954
            'name' => 'Autonomous Regions of Portugal 2008',
7955
            'type' => 'geodetic',
7956
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7957
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7958
            'conventional_rs' => null,
7959
            'frame_reference_epoch' => null,
7960
        ],
7961
        'urn:ogc:def:datum:EPSG::1042' => [
7962
            'name' => 'Mexico ITRF92',
7963
            'type' => 'geodetic',
7964
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
7965
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7966
            'conventional_rs' => null,
7967
            'frame_reference_epoch' => null,
7968
        ],
7969
        'urn:ogc:def:datum:EPSG::1043' => [
7970
            'name' => 'China 2000',
7971
            'type' => 'geodetic',
7972
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::1024',
7973
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7974
            'conventional_rs' => null,
7975
            'frame_reference_epoch' => null,
7976
        ],
7977
        'urn:ogc:def:datum:EPSG::1044' => [
7978
            'name' => 'Sao Tome',
7979
            'type' => 'geodetic',
7980
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
7981
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7982
            'conventional_rs' => null,
7983
            'frame_reference_epoch' => null,
7984
        ],
7985
        'urn:ogc:def:datum:EPSG::1045' => [
7986
            'name' => 'New Beijing',
7987
            'type' => 'geodetic',
7988
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
7989
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7990
            'conventional_rs' => null,
7991
            'frame_reference_epoch' => null,
7992
        ],
7993
        'urn:ogc:def:datum:EPSG::1046' => [
7994
            'name' => 'Principe',
7995
            'type' => 'geodetic',
7996
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
7997
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
7998
            'conventional_rs' => null,
7999
            'frame_reference_epoch' => null,
8000
        ],
8001
        'urn:ogc:def:datum:EPSG::1047' => [
8002
            'name' => 'Reseau de Reference des Antilles Francaises 1991',
8003
            'type' => 'geodetic',
8004
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8005
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8006
            'conventional_rs' => null,
8007
            'frame_reference_epoch' => null,
8008
        ],
8009
        'urn:ogc:def:datum:EPSG::1048' => [
8010
            'name' => 'Tokyo 1892',
8011
            'type' => 'geodetic',
8012
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
8013
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8014
            'conventional_rs' => null,
8015
            'frame_reference_epoch' => null,
8016
        ],
8017
        'urn:ogc:def:datum:EPSG::1049' => [
8018
            'name' => 'Incheon',
8019
            'type' => 'vertical',
8020
            'ellipsoid' => null,
8021
            'prime_meridian' => null,
8022
            'conventional_rs' => null,
8023
            'frame_reference_epoch' => null,
8024
        ],
8025
        'urn:ogc:def:datum:EPSG::1050' => [
8026
            'name' => 'Trieste',
8027
            'type' => 'vertical',
8028
            'ellipsoid' => null,
8029
            'prime_meridian' => null,
8030
            'conventional_rs' => null,
8031
            'frame_reference_epoch' => null,
8032
        ],
8033
        'urn:ogc:def:datum:EPSG::1051' => [
8034
            'name' => 'Genoa 1942',
8035
            'type' => 'vertical',
8036
            'ellipsoid' => null,
8037
            'prime_meridian' => null,
8038
            'conventional_rs' => null,
8039
            'frame_reference_epoch' => null,
8040
        ],
8041
        'urn:ogc:def:datum:EPSG::1052' => [
8042
            'name' => 'System of the Unified Trigonometrical Cadastral Network/05',
8043
            'type' => 'geodetic',
8044
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
8045
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8046
            'conventional_rs' => null,
8047
            'frame_reference_epoch' => null,
8048
        ],
8049
        'urn:ogc:def:datum:EPSG::1053' => [
8050
            'name' => 'Sri Lanka Datum 1999',
8051
            'type' => 'geodetic',
8052
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
8053
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8054
            'conventional_rs' => null,
8055
            'frame_reference_epoch' => null,
8056
        ],
8057
        'urn:ogc:def:datum:EPSG::1054' => [
8058
            'name' => 'Sri Lanka Vertical Datum',
8059
            'type' => 'vertical',
8060
            'ellipsoid' => null,
8061
            'prime_meridian' => null,
8062
            'conventional_rs' => null,
8063
            'frame_reference_epoch' => null,
8064
        ],
8065
        'urn:ogc:def:datum:EPSG::1055' => [
8066
            'name' => 'System of the Unified Trigonometrical Cadastral Network/05 (Ferro)',
8067
            'type' => 'geodetic',
8068
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
8069
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909',
8070
            'conventional_rs' => null,
8071
            'frame_reference_epoch' => null,
8072
        ],
8073
        'urn:ogc:def:datum:EPSG::1056' => [
8074
            'name' => 'Geocentric Datum Brunei Darussalam 2009',
8075
            'type' => 'geodetic',
8076
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8077
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8078
            'conventional_rs' => null,
8079
            'frame_reference_epoch' => null,
8080
        ],
8081
        'urn:ogc:def:datum:EPSG::1057' => [
8082
            'name' => 'Turkish National Reference Frame',
8083
            'type' => 'geodetic',
8084
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8085
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8086
            'conventional_rs' => null,
8087
            'frame_reference_epoch' => null,
8088
        ],
8089
        'urn:ogc:def:datum:EPSG::1058' => [
8090
            'name' => 'Bhutan National Geodetic Datum',
8091
            'type' => 'geodetic',
8092
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8093
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8094
            'conventional_rs' => null,
8095
            'frame_reference_epoch' => null,
8096
        ],
8097
        'urn:ogc:def:datum:EPSG::1059' => [
8098
            'name' => 'Faroe Islands Vertical Reference 2009',
8099
            'type' => 'vertical',
8100
            'ellipsoid' => null,
8101
            'prime_meridian' => null,
8102
            'conventional_rs' => null,
8103
            'frame_reference_epoch' => null,
8104
        ],
8105
        'urn:ogc:def:datum:EPSG::1060' => [
8106
            'name' => 'Islands Net 2004',
8107
            'type' => 'geodetic',
8108
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8109
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8110
            'conventional_rs' => null,
8111
            'frame_reference_epoch' => null,
8112
        ],
8113
        'urn:ogc:def:datum:EPSG::1061' => [
8114
            'name' => 'International Terrestrial Reference Frame 2008',
8115
            'type' => 'dynamic geodetic',
8116
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8117
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8118
            'conventional_rs' => null,
8119
            'frame_reference_epoch' => 2005.0,
8120
        ],
8121
        'urn:ogc:def:datum:EPSG::1062' => [
8122
            'name' => 'Posiciones Geodesicas Argentinas 2007',
8123
            'type' => 'geodetic',
8124
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8125
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8126
            'conventional_rs' => null,
8127
            'frame_reference_epoch' => null,
8128
        ],
8129
        'urn:ogc:def:datum:EPSG::1063' => [
8130
            'name' => 'Marco Geodesico Nacional de Bolivia',
8131
            'type' => 'geodetic',
8132
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8133
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8134
            'conventional_rs' => null,
8135
            'frame_reference_epoch' => null,
8136
        ],
8137
        'urn:ogc:def:datum:EPSG::1064' => [
8138
            'name' => 'SIRGAS-Chile realization 1 epoch 2002',
8139
            'type' => 'geodetic',
8140
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8141
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8142
            'conventional_rs' => null,
8143
            'frame_reference_epoch' => null,
8144
        ],
8145
        'urn:ogc:def:datum:EPSG::1065' => [
8146
            'name' => 'Costa Rica 2005',
8147
            'type' => 'geodetic',
8148
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8149
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8150
            'conventional_rs' => null,
8151
            'frame_reference_epoch' => null,
8152
        ],
8153
        'urn:ogc:def:datum:EPSG::1066' => [
8154
            'name' => 'Sistema Geodesico Nacional de Panama MACARIO SOLIS',
8155
            'type' => 'geodetic',
8156
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8157
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8158
            'conventional_rs' => null,
8159
            'frame_reference_epoch' => null,
8160
        ],
8161
        'urn:ogc:def:datum:EPSG::1067' => [
8162
            'name' => 'Peru96',
8163
            'type' => 'geodetic',
8164
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8165
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8166
            'conventional_rs' => null,
8167
            'frame_reference_epoch' => null,
8168
        ],
8169
        'urn:ogc:def:datum:EPSG::1068' => [
8170
            'name' => 'SIRGAS-ROU98',
8171
            'type' => 'geodetic',
8172
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8173
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8174
            'conventional_rs' => null,
8175
            'frame_reference_epoch' => null,
8176
        ],
8177
        'urn:ogc:def:datum:EPSG::1069' => [
8178
            'name' => 'SIRGAS_ES2007.8',
8179
            'type' => 'geodetic',
8180
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8181
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8182
            'conventional_rs' => null,
8183
            'frame_reference_epoch' => null,
8184
        ],
8185
        'urn:ogc:def:datum:EPSG::1070' => [
8186
            'name' => 'Ocotepeque 1935',
8187
            'type' => 'geodetic',
8188
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
8189
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8190
            'conventional_rs' => null,
8191
            'frame_reference_epoch' => null,
8192
        ],
8193
        'urn:ogc:def:datum:EPSG::1071' => [
8194
            'name' => 'Sibun Gorge 1922',
8195
            'type' => 'geodetic',
8196
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007',
8197
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8198
            'conventional_rs' => null,
8199
            'frame_reference_epoch' => null,
8200
        ],
8201
        'urn:ogc:def:datum:EPSG::1072' => [
8202
            'name' => 'Panama-Colon 1911',
8203
            'type' => 'geodetic',
8204
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
8205
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8206
            'conventional_rs' => null,
8207
            'frame_reference_epoch' => null,
8208
        ],
8209
        'urn:ogc:def:datum:EPSG::1073' => [
8210
            'name' => 'Reseau Geodesique des Antilles Francaises 2009',
8211
            'type' => 'geodetic',
8212
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8213
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8214
            'conventional_rs' => null,
8215
            'frame_reference_epoch' => null,
8216
        ],
8217
        'urn:ogc:def:datum:EPSG::1074' => [
8218
            'name' => 'Corrego Alegre 1961',
8219
            'type' => 'geodetic',
8220
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
8221
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8222
            'conventional_rs' => null,
8223
            'frame_reference_epoch' => null,
8224
        ],
8225
        'urn:ogc:def:datum:EPSG::1075' => [
8226
            'name' => 'South American Datum 1969(96)',
8227
            'type' => 'geodetic',
8228
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7050',
8229
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8230
            'conventional_rs' => null,
8231
            'frame_reference_epoch' => null,
8232
        ],
8233
        'urn:ogc:def:datum:EPSG::1076' => [
8234
            'name' => 'Papua New Guinea Geodetic Datum 1994',
8235
            'type' => 'geodetic',
8236
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8237
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8238
            'conventional_rs' => null,
8239
            'frame_reference_epoch' => null,
8240
        ],
8241
        'urn:ogc:def:datum:EPSG::1077' => [
8242
            'name' => 'Ukraine 2000',
8243
            'type' => 'geodetic',
8244
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
8245
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8246
            'conventional_rs' => null,
8247
            'frame_reference_epoch' => null,
8248
        ],
8249
        'urn:ogc:def:datum:EPSG::1078' => [
8250
            'name' => 'Fehmarnbelt Datum 2010',
8251
            'type' => 'geodetic',
8252
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8253
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8254
            'conventional_rs' => null,
8255
            'frame_reference_epoch' => null,
8256
        ],
8257
        'urn:ogc:def:datum:EPSG::1079' => [
8258
            'name' => 'Fehmarnbelt Vertical Reference 2010',
8259
            'type' => 'vertical',
8260
            'ellipsoid' => null,
8261
            'prime_meridian' => null,
8262
            'conventional_rs' => null,
8263
            'frame_reference_epoch' => null,
8264
        ],
8265
        'urn:ogc:def:datum:EPSG::1080' => [
8266
            'name' => 'Lowest Astronomical Tide',
8267
            'type' => 'vertical',
8268
            'ellipsoid' => null,
8269
            'prime_meridian' => null,
8270
            'conventional_rs' => null,
8271
            'frame_reference_epoch' => null,
8272
        ],
8273
        'urn:ogc:def:datum:EPSG::1081' => [
8274
            'name' => 'Deutsche Bahn Reference System',
8275
            'type' => 'geodetic',
8276
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
8277
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8278
            'conventional_rs' => null,
8279
            'frame_reference_epoch' => null,
8280
        ],
8281
        'urn:ogc:def:datum:EPSG::1082' => [
8282
            'name' => 'Highest Astronomical Tide',
8283
            'type' => 'vertical',
8284
            'ellipsoid' => null,
8285
            'prime_meridian' => null,
8286
            'conventional_rs' => null,
8287
            'frame_reference_epoch' => null,
8288
        ],
8289
        'urn:ogc:def:datum:EPSG::1083' => [
8290
            'name' => 'Lower Low Water Large Tide',
8291
            'type' => 'vertical',
8292
            'ellipsoid' => null,
8293
            'prime_meridian' => null,
8294
            'conventional_rs' => null,
8295
            'frame_reference_epoch' => null,
8296
        ],
8297
        'urn:ogc:def:datum:EPSG::1084' => [
8298
            'name' => 'Higher High Water Large Tide',
8299
            'type' => 'vertical',
8300
            'ellipsoid' => null,
8301
            'prime_meridian' => null,
8302
            'conventional_rs' => null,
8303
            'frame_reference_epoch' => null,
8304
        ],
8305
        'urn:ogc:def:datum:EPSG::1085' => [
8306
            'name' => 'Indian Spring Low Water',
8307
            'type' => 'vertical',
8308
            'ellipsoid' => null,
8309
            'prime_meridian' => null,
8310
            'conventional_rs' => null,
8311
            'frame_reference_epoch' => null,
8312
        ],
8313
        'urn:ogc:def:datum:EPSG::1086' => [
8314
            'name' => 'Mean Lower Low Water Spring Tides',
8315
            'type' => 'vertical',
8316
            'ellipsoid' => null,
8317
            'prime_meridian' => null,
8318
            'conventional_rs' => null,
8319
            'frame_reference_epoch' => null,
8320
        ],
8321
        'urn:ogc:def:datum:EPSG::1087' => [
8322
            'name' => 'Mean Low Water Spring Tides',
8323
            'type' => 'vertical',
8324
            'ellipsoid' => null,
8325
            'prime_meridian' => null,
8326
            'conventional_rs' => null,
8327
            'frame_reference_epoch' => null,
8328
        ],
8329
        'urn:ogc:def:datum:EPSG::1088' => [
8330
            'name' => 'Mean High Water Spring Tides',
8331
            'type' => 'vertical',
8332
            'ellipsoid' => null,
8333
            'prime_meridian' => null,
8334
            'conventional_rs' => null,
8335
            'frame_reference_epoch' => null,
8336
        ],
8337
        'urn:ogc:def:datum:EPSG::1089' => [
8338
            'name' => 'Mean Lower Low Water',
8339
            'type' => 'vertical',
8340
            'ellipsoid' => null,
8341
            'prime_meridian' => null,
8342
            'conventional_rs' => null,
8343
            'frame_reference_epoch' => null,
8344
        ],
8345
        'urn:ogc:def:datum:EPSG::1090' => [
8346
            'name' => 'Mean Higher High Water',
8347
            'type' => 'vertical',
8348
            'ellipsoid' => null,
8349
            'prime_meridian' => null,
8350
            'conventional_rs' => null,
8351
            'frame_reference_epoch' => null,
8352
        ],
8353
        'urn:ogc:def:datum:EPSG::1091' => [
8354
            'name' => 'Mean Low Water',
8355
            'type' => 'vertical',
8356
            'ellipsoid' => null,
8357
            'prime_meridian' => null,
8358
            'conventional_rs' => null,
8359
            'frame_reference_epoch' => null,
8360
        ],
8361
        'urn:ogc:def:datum:EPSG::1092' => [
8362
            'name' => 'Mean High Water',
8363
            'type' => 'vertical',
8364
            'ellipsoid' => null,
8365
            'prime_meridian' => null,
8366
            'conventional_rs' => null,
8367
            'frame_reference_epoch' => null,
8368
        ],
8369
        'urn:ogc:def:datum:EPSG::1093' => [
8370
            'name' => 'Low Water',
8371
            'type' => 'vertical',
8372
            'ellipsoid' => null,
8373
            'prime_meridian' => null,
8374
            'conventional_rs' => null,
8375
            'frame_reference_epoch' => null,
8376
        ],
8377
        'urn:ogc:def:datum:EPSG::1094' => [
8378
            'name' => 'High Water',
8379
            'type' => 'vertical',
8380
            'ellipsoid' => null,
8381
            'prime_meridian' => null,
8382
            'conventional_rs' => null,
8383
            'frame_reference_epoch' => null,
8384
        ],
8385
        'urn:ogc:def:datum:EPSG::1095' => [
8386
            'name' => 'Tonga Geodetic Datum 2005',
8387
            'type' => 'geodetic',
8388
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8389
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8390
            'conventional_rs' => null,
8391
            'frame_reference_epoch' => null,
8392
        ],
8393
        'urn:ogc:def:datum:EPSG::1096' => [
8394
            'name' => 'Norway Normal Null 2000',
8395
            'type' => 'vertical',
8396
            'ellipsoid' => null,
8397
            'prime_meridian' => null,
8398
            'conventional_rs' => null,
8399
            'frame_reference_epoch' => 2000.0,
8400
        ],
8401
        'urn:ogc:def:datum:EPSG::1097' => [
8402
            'name' => 'Grand Cayman Vertical Datum 1954',
8403
            'type' => 'vertical',
8404
            'ellipsoid' => null,
8405
            'prime_meridian' => null,
8406
            'conventional_rs' => null,
8407
            'frame_reference_epoch' => null,
8408
        ],
8409
        'urn:ogc:def:datum:EPSG::1098' => [
8410
            'name' => 'Little Cayman Vertical Datum 1961',
8411
            'type' => 'vertical',
8412
            'ellipsoid' => null,
8413
            'prime_meridian' => null,
8414
            'conventional_rs' => null,
8415
            'frame_reference_epoch' => null,
8416
        ],
8417
        'urn:ogc:def:datum:EPSG::1099' => [
8418
            'name' => 'Cayman Brac Vertical Datum 1961',
8419
            'type' => 'vertical',
8420
            'ellipsoid' => null,
8421
            'prime_meridian' => null,
8422
            'conventional_rs' => null,
8423
            'frame_reference_epoch' => null,
8424
        ],
8425
        'urn:ogc:def:datum:EPSG::1100' => [
8426
            'name' => 'Cayman Islands Geodetic Datum 2011',
8427
            'type' => 'geodetic',
8428
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8429
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8430
            'conventional_rs' => null,
8431
            'frame_reference_epoch' => null,
8432
        ],
8433
        'urn:ogc:def:datum:EPSG::1101' => [
8434
            'name' => 'Cais da Pontinha - Funchal',
8435
            'type' => 'vertical',
8436
            'ellipsoid' => null,
8437
            'prime_meridian' => null,
8438
            'conventional_rs' => null,
8439
            'frame_reference_epoch' => null,
8440
        ],
8441
        'urn:ogc:def:datum:EPSG::1102' => [
8442
            'name' => 'Cais da Vila - Porto Santo',
8443
            'type' => 'vertical',
8444
            'ellipsoid' => null,
8445
            'prime_meridian' => null,
8446
            'conventional_rs' => null,
8447
            'frame_reference_epoch' => null,
8448
        ],
8449
        'urn:ogc:def:datum:EPSG::1103' => [
8450
            'name' => 'Cais das Velas',
8451
            'type' => 'vertical',
8452
            'ellipsoid' => null,
8453
            'prime_meridian' => null,
8454
            'conventional_rs' => null,
8455
            'frame_reference_epoch' => null,
8456
        ],
8457
        'urn:ogc:def:datum:EPSG::1104' => [
8458
            'name' => 'Horta',
8459
            'type' => 'vertical',
8460
            'ellipsoid' => null,
8461
            'prime_meridian' => null,
8462
            'conventional_rs' => null,
8463
            'frame_reference_epoch' => null,
8464
        ],
8465
        'urn:ogc:def:datum:EPSG::1105' => [
8466
            'name' => 'Cais da Madalena',
8467
            'type' => 'vertical',
8468
            'ellipsoid' => null,
8469
            'prime_meridian' => null,
8470
            'conventional_rs' => null,
8471
            'frame_reference_epoch' => null,
8472
        ],
8473
        'urn:ogc:def:datum:EPSG::1106' => [
8474
            'name' => 'Santa Cruz da Graciosa',
8475
            'type' => 'vertical',
8476
            'ellipsoid' => null,
8477
            'prime_meridian' => null,
8478
            'conventional_rs' => null,
8479
            'frame_reference_epoch' => null,
8480
        ],
8481
        'urn:ogc:def:datum:EPSG::1107' => [
8482
            'name' => 'Cais da Figueirinha - Angra do Heroismo',
8483
            'type' => 'vertical',
8484
            'ellipsoid' => null,
8485
            'prime_meridian' => null,
8486
            'conventional_rs' => null,
8487
            'frame_reference_epoch' => null,
8488
        ],
8489
        'urn:ogc:def:datum:EPSG::1108' => [
8490
            'name' => 'Santa Cruz das Flores',
8491
            'type' => 'vertical',
8492
            'ellipsoid' => null,
8493
            'prime_meridian' => null,
8494
            'conventional_rs' => null,
8495
            'frame_reference_epoch' => null,
8496
        ],
8497
        'urn:ogc:def:datum:EPSG::1109' => [
8498
            'name' => 'Cais da Vila do Porto',
8499
            'type' => 'vertical',
8500
            'ellipsoid' => null,
8501
            'prime_meridian' => null,
8502
            'conventional_rs' => null,
8503
            'frame_reference_epoch' => null,
8504
        ],
8505
        'urn:ogc:def:datum:EPSG::1110' => [
8506
            'name' => 'Ponta Delgada',
8507
            'type' => 'vertical',
8508
            'ellipsoid' => null,
8509
            'prime_meridian' => null,
8510
            'conventional_rs' => null,
8511
            'frame_reference_epoch' => null,
8512
        ],
8513
        'urn:ogc:def:datum:EPSG::1111' => [
8514
            'name' => 'Nepal 1981',
8515
            'type' => 'geodetic',
8516
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
8517
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8518
            'conventional_rs' => null,
8519
            'frame_reference_epoch' => null,
8520
        ],
8521
        'urn:ogc:def:datum:EPSG::1112' => [
8522
            'name' => 'Cyprus Geodetic Reference System 1993',
8523
            'type' => 'geodetic',
8524
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8525
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8526
            'conventional_rs' => null,
8527
            'frame_reference_epoch' => null,
8528
        ],
8529
        'urn:ogc:def:datum:EPSG::1113' => [
8530
            'name' => 'Reseau Geodesique des Terres Australes et Antarctiques Francaises 2007',
8531
            'type' => 'geodetic',
8532
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8533
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8534
            'conventional_rs' => null,
8535
            'frame_reference_epoch' => null,
8536
        ],
8537
        'urn:ogc:def:datum:EPSG::1114' => [
8538
            'name' => 'Israeli Geodetic Datum 2005',
8539
            'type' => 'geodetic',
8540
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8541
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8542
            'conventional_rs' => null,
8543
            'frame_reference_epoch' => null,
8544
        ],
8545
        'urn:ogc:def:datum:EPSG::1115' => [
8546
            'name' => 'Israeli Geodetic Datum 2005(2012)',
8547
            'type' => 'geodetic',
8548
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8549
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8550
            'conventional_rs' => null,
8551
            'frame_reference_epoch' => null,
8552
        ],
8553
        'urn:ogc:def:datum:EPSG::1116' => [
8554
            'name' => 'NAD83 (National Spatial Reference System 2011)',
8555
            'type' => 'geodetic',
8556
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8557
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8558
            'conventional_rs' => null,
8559
            'frame_reference_epoch' => null,
8560
        ],
8561
        'urn:ogc:def:datum:EPSG::1117' => [
8562
            'name' => 'NAD83 (National Spatial Reference System PA11)',
8563
            'type' => 'geodetic',
8564
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8565
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8566
            'conventional_rs' => null,
8567
            'frame_reference_epoch' => null,
8568
        ],
8569
        'urn:ogc:def:datum:EPSG::1118' => [
8570
            'name' => 'NAD83 (National Spatial Reference System MA11)',
8571
            'type' => 'geodetic',
8572
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8573
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8574
            'conventional_rs' => null,
8575
            'frame_reference_epoch' => null,
8576
        ],
8577
        'urn:ogc:def:datum:EPSG::1119' => [
8578
            'name' => 'Northern Marianas Vertical Datum of 2003',
8579
            'type' => 'vertical',
8580
            'ellipsoid' => null,
8581
            'prime_meridian' => null,
8582
            'conventional_rs' => null,
8583
            'frame_reference_epoch' => null,
8584
        ],
8585
        'urn:ogc:def:datum:EPSG::1120' => [
8586
            'name' => 'Mexico ITRF2008',
8587
            'type' => 'geodetic',
8588
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8589
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8590
            'conventional_rs' => null,
8591
            'frame_reference_epoch' => null,
8592
        ],
8593
        'urn:ogc:def:datum:EPSG::1121' => [
8594
            'name' => 'Tutuila Vertical Datum of 1962',
8595
            'type' => 'vertical',
8596
            'ellipsoid' => null,
8597
            'prime_meridian' => null,
8598
            'conventional_rs' => null,
8599
            'frame_reference_epoch' => null,
8600
        ],
8601
        'urn:ogc:def:datum:EPSG::1122' => [
8602
            'name' => 'Guam Vertical Datum of 1963',
8603
            'type' => 'vertical',
8604
            'ellipsoid' => null,
8605
            'prime_meridian' => null,
8606
            'conventional_rs' => null,
8607
            'frame_reference_epoch' => null,
8608
        ],
8609
        'urn:ogc:def:datum:EPSG::1123' => [
8610
            'name' => 'Puerto Rico Vertical Datum of 2002',
8611
            'type' => 'vertical',
8612
            'ellipsoid' => null,
8613
            'prime_meridian' => null,
8614
            'conventional_rs' => null,
8615
            'frame_reference_epoch' => null,
8616
        ],
8617
        'urn:ogc:def:datum:EPSG::1124' => [
8618
            'name' => 'Virgin Islands Vertical Datum of 2009',
8619
            'type' => 'vertical',
8620
            'ellipsoid' => null,
8621
            'prime_meridian' => null,
8622
            'conventional_rs' => null,
8623
            'frame_reference_epoch' => null,
8624
        ],
8625
        'urn:ogc:def:datum:EPSG::1125' => [
8626
            'name' => 'American Samoa Vertical Datum of 2002',
8627
            'type' => 'vertical',
8628
            'ellipsoid' => null,
8629
            'prime_meridian' => null,
8630
            'conventional_rs' => null,
8631
            'frame_reference_epoch' => null,
8632
        ],
8633
        'urn:ogc:def:datum:EPSG::1126' => [
8634
            'name' => 'Guam Vertical Datum of 2004',
8635
            'type' => 'vertical',
8636
            'ellipsoid' => null,
8637
            'prime_meridian' => null,
8638
            'conventional_rs' => null,
8639
            'frame_reference_epoch' => null,
8640
        ],
8641
        'urn:ogc:def:datum:EPSG::1127' => [
8642
            'name' => 'Canadian Geodetic Vertical Datum of 2013 (CGG2013)',
8643
            'type' => 'vertical',
8644
            'ellipsoid' => null,
8645
            'prime_meridian' => null,
8646
            'conventional_rs' => null,
8647
            'frame_reference_epoch' => null,
8648
        ],
8649
        'urn:ogc:def:datum:EPSG::1128' => [
8650
            'name' => 'Japanese Geodetic Datum 2011',
8651
            'type' => 'geodetic',
8652
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8653
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8654
            'conventional_rs' => null,
8655
            'frame_reference_epoch' => null,
8656
        ],
8657
        'urn:ogc:def:datum:EPSG::1129' => [
8658
            'name' => 'Japanese Standard Levelling Datum 1972',
8659
            'type' => 'vertical',
8660
            'ellipsoid' => null,
8661
            'prime_meridian' => null,
8662
            'conventional_rs' => null,
8663
            'frame_reference_epoch' => null,
8664
        ],
8665
        'urn:ogc:def:datum:EPSG::1130' => [
8666
            'name' => 'Japanese Geodetic Datum 2000 (vertical)',
8667
            'type' => 'vertical',
8668
            'ellipsoid' => null,
8669
            'prime_meridian' => null,
8670
            'conventional_rs' => null,
8671
            'frame_reference_epoch' => null,
8672
        ],
8673
        'urn:ogc:def:datum:EPSG::1131' => [
8674
            'name' => 'Japanese Geodetic Datum 2011 (vertical)',
8675
            'type' => 'vertical',
8676
            'ellipsoid' => null,
8677
            'prime_meridian' => null,
8678
            'conventional_rs' => null,
8679
            'frame_reference_epoch' => null,
8680
        ],
8681
        'urn:ogc:def:datum:EPSG::1132' => [
8682
            'name' => 'Rete Dinamica Nazionale 2008',
8683
            'type' => 'geodetic',
8684
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8685
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8686
            'conventional_rs' => null,
8687
            'frame_reference_epoch' => null,
8688
        ],
8689
        'urn:ogc:def:datum:EPSG::1133' => [
8690
            'name' => 'NAD83 (Continuously Operating Reference Station 1996)',
8691
            'type' => 'geodetic',
8692
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8693
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8694
            'conventional_rs' => null,
8695
            'frame_reference_epoch' => null,
8696
        ],
8697
        'urn:ogc:def:datum:EPSG::1135' => [
8698
            'name' => 'Aden 1925',
8699
            'type' => 'geodetic',
8700
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
8701
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8702
            'conventional_rs' => null,
8703
            'frame_reference_epoch' => null,
8704
        ],
8705
        'urn:ogc:def:datum:EPSG::1136' => [
8706
            'name' => 'Bioko',
8707
            'type' => 'geodetic',
8708
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
8709
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8710
            'conventional_rs' => null,
8711
            'frame_reference_epoch' => null,
8712
        ],
8713
        'urn:ogc:def:datum:EPSG::1137' => [
8714
            'name' => 'Bekaa Valley 1920',
8715
            'type' => 'geodetic',
8716
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
8717
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8718
            'conventional_rs' => null,
8719
            'frame_reference_epoch' => null,
8720
        ],
8721
        'urn:ogc:def:datum:EPSG::1138' => [
8722
            'name' => 'South East Island 1943',
8723
            'type' => 'geodetic',
8724
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
8725
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8726
            'conventional_rs' => null,
8727
            'frame_reference_epoch' => null,
8728
        ],
8729
        'urn:ogc:def:datum:EPSG::1139' => [
8730
            'name' => 'Gambia',
8731
            'type' => 'geodetic',
8732
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
8733
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8734
            'conventional_rs' => null,
8735
            'frame_reference_epoch' => null,
8736
        ],
8737
        'urn:ogc:def:datum:EPSG::1140' => [
8738
            'name' => 'Singapore Height Datum',
8739
            'type' => 'vertical',
8740
            'ellipsoid' => null,
8741
            'prime_meridian' => null,
8742
            'conventional_rs' => null,
8743
            'frame_reference_epoch' => null,
8744
        ],
8745
        'urn:ogc:def:datum:EPSG::1141' => [
8746
            'name' => 'IGS08',
8747
            'type' => 'dynamic geodetic',
8748
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8749
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8750
            'conventional_rs' => null,
8751
            'frame_reference_epoch' => 2005.0,
8752
        ],
8753
        'urn:ogc:def:datum:EPSG::1142' => [
8754
            'name' => 'IG05 Intermediate Datum',
8755
            'type' => 'geodetic',
8756
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8757
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8758
            'conventional_rs' => null,
8759
            'frame_reference_epoch' => null,
8760
        ],
8761
        'urn:ogc:def:datum:EPSG::1144' => [
8762
            'name' => 'IG05/12 Intermediate Datum',
8763
            'type' => 'geodetic',
8764
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8765
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8766
            'conventional_rs' => null,
8767
            'frame_reference_epoch' => null,
8768
        ],
8769
        'urn:ogc:def:datum:EPSG::1146' => [
8770
            'name' => 'Ras Ghumays',
8771
            'type' => 'vertical',
8772
            'ellipsoid' => null,
8773
            'prime_meridian' => null,
8774
            'conventional_rs' => null,
8775
            'frame_reference_epoch' => null,
8776
        ],
8777
        'urn:ogc:def:datum:EPSG::1147' => [
8778
            'name' => 'Oman National Geodetic Datum 2014',
8779
            'type' => 'geodetic',
8780
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8781
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8782
            'conventional_rs' => null,
8783
            'frame_reference_epoch' => null,
8784
        ],
8785
        'urn:ogc:def:datum:EPSG::1148' => [
8786
            'name' => 'Famagusta 1960',
8787
            'type' => 'vertical',
8788
            'ellipsoid' => null,
8789
            'prime_meridian' => null,
8790
            'conventional_rs' => null,
8791
            'frame_reference_epoch' => null,
8792
        ],
8793
        'urn:ogc:def:datum:EPSG::1149' => [
8794
            'name' => 'PNG08',
8795
            'type' => 'vertical',
8796
            'ellipsoid' => null,
8797
            'prime_meridian' => null,
8798
            'conventional_rs' => null,
8799
            'frame_reference_epoch' => null,
8800
        ],
8801
        'urn:ogc:def:datum:EPSG::1150' => [
8802
            'name' => 'Kumul 34',
8803
            'type' => 'vertical',
8804
            'ellipsoid' => null,
8805
            'prime_meridian' => null,
8806
            'conventional_rs' => null,
8807
            'frame_reference_epoch' => null,
8808
        ],
8809
        'urn:ogc:def:datum:EPSG::1151' => [
8810
            'name' => 'Kiunga',
8811
            'type' => 'vertical',
8812
            'ellipsoid' => null,
8813
            'prime_meridian' => null,
8814
            'conventional_rs' => null,
8815
            'frame_reference_epoch' => null,
8816
        ],
8817
        'urn:ogc:def:datum:EPSG::1152' => [
8818
            'name' => 'World Geodetic System 1984 (G730)',
8819
            'type' => 'dynamic geodetic',
8820
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8821
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8822
            'conventional_rs' => 1024,
8823
            'frame_reference_epoch' => 1994.0,
8824
        ],
8825
        'urn:ogc:def:datum:EPSG::1153' => [
8826
            'name' => 'World Geodetic System 1984 (G873)',
8827
            'type' => 'dynamic geodetic',
8828
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8829
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8830
            'conventional_rs' => 1024,
8831
            'frame_reference_epoch' => 1997.0,
8832
        ],
8833
        'urn:ogc:def:datum:EPSG::1154' => [
8834
            'name' => 'World Geodetic System 1984 (G1150)',
8835
            'type' => 'dynamic geodetic',
8836
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8837
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8838
            'conventional_rs' => 1024,
8839
            'frame_reference_epoch' => 2001.0,
8840
        ],
8841
        'urn:ogc:def:datum:EPSG::1155' => [
8842
            'name' => 'World Geodetic System 1984 (G1674)',
8843
            'type' => 'dynamic geodetic',
8844
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8845
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8846
            'conventional_rs' => 1024,
8847
            'frame_reference_epoch' => 2005.0,
8848
        ],
8849
        'urn:ogc:def:datum:EPSG::1156' => [
8850
            'name' => 'World Geodetic System 1984 (G1762)',
8851
            'type' => 'dynamic geodetic',
8852
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8853
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8854
            'conventional_rs' => 1024,
8855
            'frame_reference_epoch' => 2005.0,
8856
        ],
8857
        'urn:ogc:def:datum:EPSG::1157' => [
8858
            'name' => 'Parametry Zemli 1990.02',
8859
            'type' => 'dynamic geodetic',
8860
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7054',
8861
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8862
            'conventional_rs' => null,
8863
            'frame_reference_epoch' => 2002.0,
8864
        ],
8865
        'urn:ogc:def:datum:EPSG::1158' => [
8866
            'name' => 'Parametry Zemli 1990.11',
8867
            'type' => 'dynamic geodetic',
8868
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7054',
8869
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8870
            'conventional_rs' => null,
8871
            'frame_reference_epoch' => 2010.0,
8872
        ],
8873
        'urn:ogc:def:datum:EPSG::1159' => [
8874
            'name' => 'Geodezicheskaya Sistema Koordinat 2011',
8875
            'type' => 'geodetic',
8876
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::1025',
8877
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8878
            'conventional_rs' => null,
8879
            'frame_reference_epoch' => null,
8880
        ],
8881
        'urn:ogc:def:datum:EPSG::1160' => [
8882
            'name' => 'Kyrgyzstan Geodetic Datum 2006',
8883
            'type' => 'geodetic',
8884
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8885
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8886
            'conventional_rs' => null,
8887
            'frame_reference_epoch' => null,
8888
        ],
8889
        'urn:ogc:def:datum:EPSG::1161' => [
8890
            'name' => 'Deutsches Haupthoehennetz 1912',
8891
            'type' => 'vertical',
8892
            'ellipsoid' => null,
8893
            'prime_meridian' => null,
8894
            'conventional_rs' => null,
8895
            'frame_reference_epoch' => null,
8896
        ],
8897
        'urn:ogc:def:datum:EPSG::1162' => [
8898
            'name' => 'Latvian Height System 2000',
8899
            'type' => 'vertical',
8900
            'ellipsoid' => null,
8901
            'prime_meridian' => null,
8902
            'conventional_rs' => null,
8903
            'frame_reference_epoch' => null,
8904
        ],
8905
        'urn:ogc:def:datum:EPSG::1164' => [
8906
            'name' => 'Ordnance Datum Newlyn (Offshore)',
8907
            'type' => 'vertical',
8908
            'ellipsoid' => null,
8909
            'prime_meridian' => null,
8910
            'conventional_rs' => 1026,
8911
            'frame_reference_epoch' => null,
8912
        ],
8913
        'urn:ogc:def:datum:EPSG::1165' => [
8914
            'name' => 'International Terrestrial Reference Frame 2014',
8915
            'type' => 'dynamic geodetic',
8916
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8917
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8918
            'conventional_rs' => null,
8919
            'frame_reference_epoch' => 2010.0,
8920
        ],
8921
        'urn:ogc:def:datum:EPSG::1166' => [
8922
            'name' => 'World Geodetic System 1984 (Transit)',
8923
            'type' => 'dynamic geodetic',
8924
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8925
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8926
            'conventional_rs' => 1024,
8927
            'frame_reference_epoch' => 1984.0,
8928
        ],
8929
        'urn:ogc:def:datum:EPSG::1167' => [
8930
            'name' => 'Bulgaria Geodetic System 2005',
8931
            'type' => 'geodetic',
8932
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8933
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8934
            'conventional_rs' => null,
8935
            'frame_reference_epoch' => null,
8936
        ],
8937
        'urn:ogc:def:datum:EPSG::1168' => [
8938
            'name' => 'Geocentric Datum of Australia 2020',
8939
            'type' => 'geodetic',
8940
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8941
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8942
            'conventional_rs' => null,
8943
            'frame_reference_epoch' => null,
8944
        ],
8945
        'urn:ogc:def:datum:EPSG::1169' => [
8946
            'name' => 'New Zealand Vertical Datum 2016',
8947
            'type' => 'vertical',
8948
            'ellipsoid' => null,
8949
            'prime_meridian' => null,
8950
            'conventional_rs' => null,
8951
            'frame_reference_epoch' => null,
8952
        ],
8953
        'urn:ogc:def:datum:EPSG::1170' => [
8954
            'name' => 'Deutsches Haupthoehennetz 2016',
8955
            'type' => 'vertical',
8956
            'ellipsoid' => null,
8957
            'prime_meridian' => null,
8958
            'conventional_rs' => null,
8959
            'frame_reference_epoch' => null,
8960
        ],
8961
        'urn:ogc:def:datum:EPSG::1171' => [
8962
            'name' => 'Port Moresby 1996',
8963
            'type' => 'vertical',
8964
            'ellipsoid' => null,
8965
            'prime_meridian' => null,
8966
            'conventional_rs' => null,
8967
            'frame_reference_epoch' => null,
8968
        ],
8969
        'urn:ogc:def:datum:EPSG::1172' => [
8970
            'name' => 'Port Moresby 2008',
8971
            'type' => 'vertical',
8972
            'ellipsoid' => null,
8973
            'prime_meridian' => null,
8974
            'conventional_rs' => null,
8975
            'frame_reference_epoch' => null,
8976
        ],
8977
        'urn:ogc:def:datum:EPSG::1173' => [
8978
            'name' => 'St. Helena Tritan',
8979
            'type' => 'geodetic',
8980
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
8981
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8982
            'conventional_rs' => null,
8983
            'frame_reference_epoch' => null,
8984
        ],
8985
        'urn:ogc:def:datum:EPSG::1174' => [
8986
            'name' => 'St. Helena Geodetic Datum 2015',
8987
            'type' => 'geodetic',
8988
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
8989
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
8990
            'conventional_rs' => null,
8991
            'frame_reference_epoch' => null,
8992
        ],
8993
        'urn:ogc:def:datum:EPSG::1175' => [
8994
            'name' => 'Jamestown 1971',
8995
            'type' => 'vertical',
8996
            'ellipsoid' => null,
8997
            'prime_meridian' => null,
8998
            'conventional_rs' => null,
8999
            'frame_reference_epoch' => null,
9000
        ],
9001
        'urn:ogc:def:datum:EPSG::1176' => [
9002
            'name' => 'St. Helena Tritan Vertical Datum 2011',
9003
            'type' => 'vertical',
9004
            'ellipsoid' => null,
9005
            'prime_meridian' => null,
9006
            'conventional_rs' => null,
9007
            'frame_reference_epoch' => null,
9008
        ],
9009
        'urn:ogc:def:datum:EPSG::1177' => [
9010
            'name' => 'St. Helena Vertical Datum 2015',
9011
            'type' => 'vertical',
9012
            'ellipsoid' => null,
9013
            'prime_meridian' => null,
9014
            'conventional_rs' => null,
9015
            'frame_reference_epoch' => null,
9016
        ],
9017
        'urn:ogc:def:datum:EPSG::1178' => [
9018
            'name' => 'European Terrestrial Reference Frame 1989',
9019
            'type' => 'geodetic',
9020
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9021
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9022
            'conventional_rs' => 1025,
9023
            'frame_reference_epoch' => null,
9024
        ],
9025
        'urn:ogc:def:datum:EPSG::1179' => [
9026
            'name' => 'European Terrestrial Reference Frame 1990',
9027
            'type' => 'geodetic',
9028
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9029
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9030
            'conventional_rs' => 1025,
9031
            'frame_reference_epoch' => null,
9032
        ],
9033
        'urn:ogc:def:datum:EPSG::1180' => [
9034
            'name' => 'European Terrestrial Reference Frame 1991',
9035
            'type' => 'geodetic',
9036
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9037
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9038
            'conventional_rs' => 1025,
9039
            'frame_reference_epoch' => null,
9040
        ],
9041
        'urn:ogc:def:datum:EPSG::1181' => [
9042
            'name' => 'European Terrestrial Reference Frame 1992',
9043
            'type' => 'geodetic',
9044
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9045
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9046
            'conventional_rs' => 1025,
9047
            'frame_reference_epoch' => null,
9048
        ],
9049
        'urn:ogc:def:datum:EPSG::1182' => [
9050
            'name' => 'European Terrestrial Reference Frame 1993',
9051
            'type' => 'geodetic',
9052
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9053
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9054
            'conventional_rs' => 1025,
9055
            'frame_reference_epoch' => null,
9056
        ],
9057
        'urn:ogc:def:datum:EPSG::1183' => [
9058
            'name' => 'European Terrestrial Reference Frame 1994',
9059
            'type' => 'geodetic',
9060
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9061
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9062
            'conventional_rs' => 1025,
9063
            'frame_reference_epoch' => null,
9064
        ],
9065
        'urn:ogc:def:datum:EPSG::1184' => [
9066
            'name' => 'European Terrestrial Reference Frame 1996',
9067
            'type' => 'geodetic',
9068
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9069
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9070
            'conventional_rs' => 1025,
9071
            'frame_reference_epoch' => null,
9072
        ],
9073
        'urn:ogc:def:datum:EPSG::1185' => [
9074
            'name' => 'European Terrestrial Reference Frame 1997',
9075
            'type' => 'geodetic',
9076
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9077
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9078
            'conventional_rs' => 1025,
9079
            'frame_reference_epoch' => null,
9080
        ],
9081
        'urn:ogc:def:datum:EPSG::1186' => [
9082
            'name' => 'European Terrestrial Reference Frame 2000',
9083
            'type' => 'geodetic',
9084
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9085
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9086
            'conventional_rs' => 1025,
9087
            'frame_reference_epoch' => null,
9088
        ],
9089
        'urn:ogc:def:datum:EPSG::1187' => [
9090
            'name' => 'Islands Net 2016',
9091
            'type' => 'geodetic',
9092
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9093
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9094
            'conventional_rs' => null,
9095
            'frame_reference_epoch' => null,
9096
        ],
9097
        'urn:ogc:def:datum:EPSG::1188' => [
9098
            'name' => 'Gusterberg (Ferro)',
9099
            'type' => 'geodetic',
9100
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::1026',
9101
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909',
9102
            'conventional_rs' => null,
9103
            'frame_reference_epoch' => null,
9104
        ],
9105
        'urn:ogc:def:datum:EPSG::1189' => [
9106
            'name' => 'St. Stephen (Ferro)',
9107
            'type' => 'geodetic',
9108
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::1026',
9109
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909',
9110
            'conventional_rs' => null,
9111
            'frame_reference_epoch' => null,
9112
        ],
9113
        'urn:ogc:def:datum:EPSG::1190' => [
9114
            'name' => 'Landshaedarkerfi Islands 2004',
9115
            'type' => 'vertical',
9116
            'ellipsoid' => null,
9117
            'prime_meridian' => null,
9118
            'conventional_rs' => null,
9119
            'frame_reference_epoch' => null,
9120
        ],
9121
        'urn:ogc:def:datum:EPSG::1191' => [
9122
            'name' => 'IGS14',
9123
            'type' => 'dynamic geodetic',
9124
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9125
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9126
            'conventional_rs' => null,
9127
            'frame_reference_epoch' => 2010.0,
9128
        ],
9129
        'urn:ogc:def:datum:EPSG::1192' => [
9130
            'name' => 'North American Datum of 1983 (CSRS96)',
9131
            'type' => 'geodetic',
9132
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9133
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9134
            'conventional_rs' => null,
9135
            'frame_reference_epoch' => null,
9136
        ],
9137
        'urn:ogc:def:datum:EPSG::1193' => [
9138
            'name' => 'North American Datum of 1983 (CSRS) version 2',
9139
            'type' => 'geodetic',
9140
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9141
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9142
            'conventional_rs' => null,
9143
            'frame_reference_epoch' => null,
9144
        ],
9145
        'urn:ogc:def:datum:EPSG::1194' => [
9146
            'name' => 'North American Datum of 1983 (CSRS) version 3',
9147
            'type' => 'geodetic',
9148
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9149
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9150
            'conventional_rs' => null,
9151
            'frame_reference_epoch' => null,
9152
        ],
9153
        'urn:ogc:def:datum:EPSG::1195' => [
9154
            'name' => 'North American Datum of 1983 (CSRS) version 4',
9155
            'type' => 'geodetic',
9156
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9157
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9158
            'conventional_rs' => null,
9159
            'frame_reference_epoch' => null,
9160
        ],
9161
        'urn:ogc:def:datum:EPSG::1196' => [
9162
            'name' => 'North American Datum of 1983 (CSRS) version 5',
9163
            'type' => 'geodetic',
9164
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9165
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9166
            'conventional_rs' => null,
9167
            'frame_reference_epoch' => null,
9168
        ],
9169
        'urn:ogc:def:datum:EPSG::1197' => [
9170
            'name' => 'North American Datum of 1983 (CSRS) version 6',
9171
            'type' => 'geodetic',
9172
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9173
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9174
            'conventional_rs' => null,
9175
            'frame_reference_epoch' => null,
9176
        ],
9177
        'urn:ogc:def:datum:EPSG::1198' => [
9178
            'name' => 'North American Datum of 1983 (CSRS) version 7',
9179
            'type' => 'geodetic',
9180
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9181
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9182
            'conventional_rs' => null,
9183
            'frame_reference_epoch' => null,
9184
        ],
9185
        'urn:ogc:def:datum:EPSG::1199' => [
9186
            'name' => 'Greenland Vertical Reference 2000',
9187
            'type' => 'vertical',
9188
            'ellipsoid' => null,
9189
            'prime_meridian' => null,
9190
            'conventional_rs' => null,
9191
            'frame_reference_epoch' => null,
9192
        ],
9193
        'urn:ogc:def:datum:EPSG::1200' => [
9194
            'name' => 'Greenland Vertical Reference 2016',
9195
            'type' => 'vertical',
9196
            'ellipsoid' => null,
9197
            'prime_meridian' => null,
9198
            'conventional_rs' => null,
9199
            'frame_reference_epoch' => null,
9200
        ],
9201
        'urn:ogc:def:datum:EPSG::1201' => [
9202
            'name' => 'System of the Unified Trigonometrical Cadastral Network [JTSK03]',
9203
            'type' => 'geodetic',
9204
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
9205
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9206
            'conventional_rs' => null,
9207
            'frame_reference_epoch' => null,
9208
        ],
9209
        'urn:ogc:def:datum:EPSG::1202' => [
9210
            'name' => 'Baltic 1957',
9211
            'type' => 'vertical',
9212
            'ellipsoid' => null,
9213
            'prime_meridian' => null,
9214
            'conventional_rs' => null,
9215
            'frame_reference_epoch' => null,
9216
        ],
9217
        'urn:ogc:def:datum:EPSG::1204' => [
9218
            'name' => 'European Terrestrial Reference Frame 2005',
9219
            'type' => 'geodetic',
9220
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9221
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9222
            'conventional_rs' => 1025,
9223
            'frame_reference_epoch' => null,
9224
        ],
9225
        'urn:ogc:def:datum:EPSG::1206' => [
9226
            'name' => 'European Terrestrial Reference Frame 2014',
9227
            'type' => 'geodetic',
9228
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9229
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9230
            'conventional_rs' => 1025,
9231
            'frame_reference_epoch' => null,
9232
        ],
9233
        'urn:ogc:def:datum:EPSG::1207' => [
9234
            'name' => 'Macao 1920',
9235
            'type' => 'geodetic',
9236
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
9237
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9238
            'conventional_rs' => null,
9239
            'frame_reference_epoch' => null,
9240
        ],
9241
        'urn:ogc:def:datum:EPSG::1208' => [
9242
            'name' => 'Macao Geodetic Datum 2008',
9243
            'type' => 'geodetic',
9244
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9245
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9246
            'conventional_rs' => null,
9247
            'frame_reference_epoch' => null,
9248
        ],
9249
        'urn:ogc:def:datum:EPSG::1209' => [
9250
            'name' => 'Hong Kong Geodetic',
9251
            'type' => 'geodetic',
9252
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9253
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9254
            'conventional_rs' => null,
9255
            'frame_reference_epoch' => null,
9256
        ],
9257
        'urn:ogc:def:datum:EPSG::1210' => [
9258
            'name' => 'Macao Height Datum',
9259
            'type' => 'vertical',
9260
            'ellipsoid' => null,
9261
            'prime_meridian' => null,
9262
            'conventional_rs' => null,
9263
            'frame_reference_epoch' => null,
9264
        ],
9265
        'urn:ogc:def:datum:EPSG::1211' => [
9266
            'name' => 'NAD83 (Federal Base Network)',
9267
            'type' => 'geodetic',
9268
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9269
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9270
            'conventional_rs' => null,
9271
            'frame_reference_epoch' => null,
9272
        ],
9273
        'urn:ogc:def:datum:EPSG::1212' => [
9274
            'name' => 'NAD83 (High Accuracy Reference Network - Corrected)',
9275
            'type' => 'geodetic',
9276
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9277
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9278
            'conventional_rs' => null,
9279
            'frame_reference_epoch' => null,
9280
        ],
9281
        'urn:ogc:def:datum:EPSG::1213' => [
9282
            'name' => 'Helsinki 1943',
9283
            'type' => 'vertical',
9284
            'ellipsoid' => null,
9285
            'prime_meridian' => null,
9286
            'conventional_rs' => null,
9287
            'frame_reference_epoch' => null,
9288
        ],
9289
        'urn:ogc:def:datum:EPSG::1214' => [
9290
            'name' => 'Serbian Spatial Reference System 2000',
9291
            'type' => 'geodetic',
9292
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9293
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9294
            'conventional_rs' => null,
9295
            'frame_reference_epoch' => null,
9296
        ],
9297
        'urn:ogc:def:datum:EPSG::1215' => [
9298
            'name' => 'Slovenian Vertical System 2010',
9299
            'type' => 'vertical',
9300
            'ellipsoid' => null,
9301
            'prime_meridian' => null,
9302
            'conventional_rs' => null,
9303
            'frame_reference_epoch' => null,
9304
        ],
9305
        'urn:ogc:def:datum:EPSG::1216' => [
9306
            'name' => 'Serbian Vertical Reference System 2012',
9307
            'type' => 'vertical',
9308
            'ellipsoid' => null,
9309
            'prime_meridian' => null,
9310
            'conventional_rs' => null,
9311
            'frame_reference_epoch' => null,
9312
        ],
9313
        'urn:ogc:def:datum:EPSG::1217' => [
9314
            'name' => 'Camacupa 2015',
9315
            'type' => 'geodetic',
9316
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
9317
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9318
            'conventional_rs' => null,
9319
            'frame_reference_epoch' => null,
9320
        ],
9321
        'urn:ogc:def:datum:EPSG::1218' => [
9322
            'name' => 'MOMRA Terrestrial Reference Frame 2000',
9323
            'type' => 'geodetic',
9324
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9325
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9326
            'conventional_rs' => null,
9327
            'frame_reference_epoch' => null,
9328
        ],
9329
        'urn:ogc:def:datum:EPSG::1219' => [
9330
            'name' => 'MOMRA Vertical Geodetic Control',
9331
            'type' => 'vertical',
9332
            'ellipsoid' => null,
9333
            'prime_meridian' => null,
9334
            'conventional_rs' => null,
9335
            'frame_reference_epoch' => null,
9336
        ],
9337
        'urn:ogc:def:datum:EPSG::1220' => [
9338
            'name' => 'Reference System de Angola 2013',
9339
            'type' => 'geodetic',
9340
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9341
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9342
            'conventional_rs' => null,
9343
            'frame_reference_epoch' => null,
9344
        ],
9345
        'urn:ogc:def:datum:EPSG::1221' => [
9346
            'name' => 'North American Datum of 1983 (MARP00)',
9347
            'type' => 'geodetic',
9348
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9349
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9350
            'conventional_rs' => null,
9351
            'frame_reference_epoch' => null,
9352
        ],
9353
        'urn:ogc:def:datum:EPSG::1223' => [
9354
            'name' => 'Reseau Geodesique de Wallis et Futuna 1996',
9355
            'type' => 'geodetic',
9356
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9357
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9358
            'conventional_rs' => null,
9359
            'frame_reference_epoch' => null,
9360
        ],
9361
        'urn:ogc:def:datum:EPSG::1224' => [
9362
            'name' => 'Taiwan Vertical Datum 2001',
9363
            'type' => 'vertical',
9364
            'ellipsoid' => null,
9365
            'prime_meridian' => null,
9366
            'conventional_rs' => null,
9367
            'frame_reference_epoch' => null,
9368
        ],
9369
        'urn:ogc:def:datum:EPSG::1225' => [
9370
            'name' => 'CR-SIRGAS',
9371
            'type' => 'geodetic',
9372
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9373
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9374
            'conventional_rs' => null,
9375
            'frame_reference_epoch' => null,
9376
        ],
9377
        'urn:ogc:def:datum:EPSG::1226' => [
9378
            'name' => 'Datum Altimetrico de Costa Rica 1952',
9379
            'type' => 'vertical',
9380
            'ellipsoid' => null,
9381
            'prime_meridian' => null,
9382
            'conventional_rs' => null,
9383
            'frame_reference_epoch' => null,
9384
        ],
9385
        'urn:ogc:def:datum:EPSG::1227' => [
9386
            'name' => 'SIRGAS Continuously Operating Network DGF00P01',
9387
            'type' => 'dynamic geodetic',
9388
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9389
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9390
            'conventional_rs' => null,
9391
            'frame_reference_epoch' => 2000.4,
9392
        ],
9393
        'urn:ogc:def:datum:EPSG::1228' => [
9394
            'name' => 'SIRGAS Continuously Operating Network DGF01P01',
9395
            'type' => 'dynamic geodetic',
9396
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9397
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9398
            'conventional_rs' => null,
9399
            'frame_reference_epoch' => 2000.0,
9400
        ],
9401
        'urn:ogc:def:datum:EPSG::1229' => [
9402
            'name' => 'SIRGAS Continuously Operating Network DGF01P02',
9403
            'type' => 'dynamic geodetic',
9404
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9405
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9406
            'conventional_rs' => null,
9407
            'frame_reference_epoch' => 1998.4,
9408
        ],
9409
        'urn:ogc:def:datum:EPSG::1230' => [
9410
            'name' => 'SIRGAS Continuously Operating Network DGF02P01',
9411
            'type' => 'dynamic geodetic',
9412
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9413
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9414
            'conventional_rs' => null,
9415
            'frame_reference_epoch' => 2000.0,
9416
        ],
9417
        'urn:ogc:def:datum:EPSG::1231' => [
9418
            'name' => 'SIRGAS Continuously Operating Network DGF04P01',
9419
            'type' => 'dynamic geodetic',
9420
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9421
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9422
            'conventional_rs' => null,
9423
            'frame_reference_epoch' => 2003.0,
9424
        ],
9425
        'urn:ogc:def:datum:EPSG::1232' => [
9426
            'name' => 'SIRGAS Continuously Operating Network DGF05P01',
9427
            'type' => 'dynamic geodetic',
9428
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9429
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9430
            'conventional_rs' => null,
9431
            'frame_reference_epoch' => 2004.0,
9432
        ],
9433
        'urn:ogc:def:datum:EPSG::1233' => [
9434
            'name' => 'SIRGAS Continuously Operating Network DGF06P01',
9435
            'type' => 'dynamic geodetic',
9436
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9437
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9438
            'conventional_rs' => null,
9439
            'frame_reference_epoch' => 2004.0,
9440
        ],
9441
        'urn:ogc:def:datum:EPSG::1234' => [
9442
            'name' => 'SIRGAS Continuously Operating Network DGF07P01',
9443
            'type' => 'dynamic geodetic',
9444
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9445
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9446
            'conventional_rs' => null,
9447
            'frame_reference_epoch' => 2004.5,
9448
        ],
9449
        'urn:ogc:def:datum:EPSG::1235' => [
9450
            'name' => 'SIRGAS Continuously Operating Network DGF08P01',
9451
            'type' => 'dynamic geodetic',
9452
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9453
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9454
            'conventional_rs' => null,
9455
            'frame_reference_epoch' => 2004.5,
9456
        ],
9457
        'urn:ogc:def:datum:EPSG::1236' => [
9458
            'name' => 'SIRGAS Continuously Operating Network SIR09P01',
9459
            'type' => 'dynamic geodetic',
9460
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9461
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9462
            'conventional_rs' => null,
9463
            'frame_reference_epoch' => 2005.0,
9464
        ],
9465
        'urn:ogc:def:datum:EPSG::1237' => [
9466
            'name' => 'SIRGAS Continuously Operating Network SIR10P01',
9467
            'type' => 'dynamic geodetic',
9468
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9469
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9470
            'conventional_rs' => null,
9471
            'frame_reference_epoch' => 2005.0,
9472
        ],
9473
        'urn:ogc:def:datum:EPSG::1238' => [
9474
            'name' => 'SIRGAS Continuously Operating Network SIR11P01',
9475
            'type' => 'dynamic geodetic',
9476
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9477
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9478
            'conventional_rs' => null,
9479
            'frame_reference_epoch' => 2005.0,
9480
        ],
9481
        'urn:ogc:def:datum:EPSG::1239' => [
9482
            'name' => 'SIRGAS Continuously Operating Network SIR13P01',
9483
            'type' => 'dynamic geodetic',
9484
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9485
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9486
            'conventional_rs' => null,
9487
            'frame_reference_epoch' => 2012.0,
9488
        ],
9489
        'urn:ogc:def:datum:EPSG::1240' => [
9490
            'name' => 'SIRGAS Continuously Operating Network SIR14P01',
9491
            'type' => 'dynamic geodetic',
9492
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9493
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9494
            'conventional_rs' => null,
9495
            'frame_reference_epoch' => 2013.0,
9496
        ],
9497
        'urn:ogc:def:datum:EPSG::1241' => [
9498
            'name' => 'SIRGAS Continuously Operating Network SIR15P01',
9499
            'type' => 'dynamic geodetic',
9500
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9501
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9502
            'conventional_rs' => null,
9503
            'frame_reference_epoch' => 2013.0,
9504
        ],
9505
        'urn:ogc:def:datum:EPSG::1242' => [
9506
            'name' => 'SIRGAS Continuously Operating Network SIR17P01',
9507
            'type' => 'dynamic geodetic',
9508
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9509
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9510
            'conventional_rs' => null,
9511
            'frame_reference_epoch' => 2015.0,
9512
        ],
9513
        'urn:ogc:def:datum:EPSG::1243' => [
9514
            'name' => 'SIRGAS-Chile realization 2 epoch 2010',
9515
            'type' => 'geodetic',
9516
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9517
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9518
            'conventional_rs' => null,
9519
            'frame_reference_epoch' => null,
9520
        ],
9521
        'urn:ogc:def:datum:EPSG::1244' => [
9522
            'name' => 'IGS97',
9523
            'type' => 'dynamic geodetic',
9524
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9525
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9526
            'conventional_rs' => null,
9527
            'frame_reference_epoch' => 1997.0,
9528
        ],
9529
        'urn:ogc:def:datum:EPSG::1245' => [
9530
            'name' => 'IGS00',
9531
            'type' => 'dynamic geodetic',
9532
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9533
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9534
            'conventional_rs' => null,
9535
            'frame_reference_epoch' => 1998.0,
9536
        ],
9537
        'urn:ogc:def:datum:EPSG::1246' => [
9538
            'name' => 'IGb00',
9539
            'type' => 'dynamic geodetic',
9540
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9541
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9542
            'conventional_rs' => null,
9543
            'frame_reference_epoch' => 1998.0,
9544
        ],
9545
        'urn:ogc:def:datum:EPSG::1247' => [
9546
            'name' => 'IGS05',
9547
            'type' => 'dynamic geodetic',
9548
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9549
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9550
            'conventional_rs' => null,
9551
            'frame_reference_epoch' => 2000.0,
9552
        ],
9553
        'urn:ogc:def:datum:EPSG::1248' => [
9554
            'name' => 'IGb08',
9555
            'type' => 'dynamic geodetic',
9556
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9557
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9558
            'conventional_rs' => null,
9559
            'frame_reference_epoch' => 2005.0,
9560
        ],
9561
        'urn:ogc:def:datum:EPSG::1249' => [
9562
            'name' => 'North American Datum of 1983 (PACP00)',
9563
            'type' => 'geodetic',
9564
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9565
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9566
            'conventional_rs' => null,
9567
            'frame_reference_epoch' => null,
9568
        ],
9569
        'urn:ogc:def:datum:EPSG::1250' => [
9570
            'name' => 'IGN 2008 LD',
9571
            'type' => 'vertical',
9572
            'ellipsoid' => null,
9573
            'prime_meridian' => null,
9574
            'conventional_rs' => null,
9575
            'frame_reference_epoch' => null,
9576
        ],
9577
        'urn:ogc:def:datum:EPSG::1251' => [
9578
            'name' => 'Kosovo Reference System 2001',
9579
            'type' => 'geodetic',
9580
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9581
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9582
            'conventional_rs' => null,
9583
            'frame_reference_epoch' => null,
9584
        ],
9585
        'urn:ogc:def:datum:EPSG::1252' => [
9586
            'name' => 'SIRGAS-Chile realization 3 epoch 2013',
9587
            'type' => 'geodetic',
9588
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9589
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9590
            'conventional_rs' => null,
9591
            'frame_reference_epoch' => null,
9592
        ],
9593
        'urn:ogc:def:datum:EPSG::1253' => [
9594
            'name' => 'SIRGAS-Chile realization 4 epoch 2016',
9595
            'type' => 'geodetic',
9596
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9597
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9598
            'conventional_rs' => null,
9599
            'frame_reference_epoch' => null,
9600
        ],
9601
        'urn:ogc:def:datum:EPSG::1255' => [
9602
            'name' => 'Nivellement General de Nouvelle Caledonie 2008',
9603
            'type' => 'vertical',
9604
            'ellipsoid' => null,
9605
            'prime_meridian' => null,
9606
            'conventional_rs' => null,
9607
            'frame_reference_epoch' => null,
9608
        ],
9609
        'urn:ogc:def:datum:EPSG::1256' => [
9610
            'name' => 'Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 2010',
9611
            'type' => 'vertical',
9612
            'ellipsoid' => null,
9613
            'prime_meridian' => null,
9614
            'conventional_rs' => null,
9615
            'frame_reference_epoch' => null,
9616
        ],
9617
        'urn:ogc:def:datum:EPSG::1257' => [
9618
            'name' => 'Tapi Aike',
9619
            'type' => 'geodetic',
9620
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
9621
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9622
            'conventional_rs' => null,
9623
            'frame_reference_epoch' => null,
9624
        ],
9625
        'urn:ogc:def:datum:EPSG::1258' => [
9626
            'name' => 'Ministerio de Marina Norte',
9627
            'type' => 'geodetic',
9628
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
9629
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9630
            'conventional_rs' => null,
9631
            'frame_reference_epoch' => null,
9632
        ],
9633
        'urn:ogc:def:datum:EPSG::1259' => [
9634
            'name' => 'Ministerio de Marina Sur',
9635
            'type' => 'geodetic',
9636
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
9637
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9638
            'conventional_rs' => null,
9639
            'frame_reference_epoch' => null,
9640
        ],
9641
        'urn:ogc:def:datum:EPSG::1260' => [
9642
            'name' => 'Sistema de Referencia Vertical Nacional 2016',
9643
            'type' => 'vertical',
9644
            'ellipsoid' => null,
9645
            'prime_meridian' => null,
9646
            'conventional_rs' => null,
9647
            'frame_reference_epoch' => null,
9648
        ],
9649
        'urn:ogc:def:datum:EPSG::1261' => [
9650
            'name' => 'European Vertical Reference Frame 2000 Austria',
9651
            'type' => 'vertical',
9652
            'ellipsoid' => null,
9653
            'prime_meridian' => null,
9654
            'conventional_rs' => null,
9655
            'frame_reference_epoch' => null,
9656
        ],
9657
        'urn:ogc:def:datum:EPSG::1262' => [
9658
            'name' => 'South Africa Land Levelling Datum',
9659
            'type' => 'vertical',
9660
            'ellipsoid' => null,
9661
            'prime_meridian' => null,
9662
            'conventional_rs' => null,
9663
            'frame_reference_epoch' => null,
9664
        ],
9665
        'urn:ogc:def:datum:EPSG::1263' => [
9666
            'name' => 'Oman National Geodetic Datum 2017',
9667
            'type' => 'geodetic',
9668
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9669
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9670
            'conventional_rs' => null,
9671
            'frame_reference_epoch' => null,
9672
        ],
9673
        'urn:ogc:def:datum:EPSG::1264' => [
9674
            'name' => 'HS2 Intermediate Reference Frame',
9675
            'type' => 'geodetic',
9676
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9677
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9678
            'conventional_rs' => null,
9679
            'frame_reference_epoch' => null,
9680
        ],
9681
        'urn:ogc:def:datum:EPSG::1265' => [
9682
            'name' => 'HS2 Vertical Reference Frame',
9683
            'type' => 'vertical',
9684
            'ellipsoid' => null,
9685
            'prime_meridian' => null,
9686
            'conventional_rs' => null,
9687
            'frame_reference_epoch' => null,
9688
        ],
9689
        'urn:ogc:def:datum:EPSG::1266' => [
9690
            'name' => 'TPEN11 Intermediate Reference Frame',
9691
            'type' => 'geodetic',
9692
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9693
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9694
            'conventional_rs' => null,
9695
            'frame_reference_epoch' => null,
9696
        ],
9697
        'urn:ogc:def:datum:EPSG::1267' => [
9698
            'name' => 'Wiener Null',
9699
            'type' => 'vertical',
9700
            'ellipsoid' => null,
9701
            'prime_meridian' => null,
9702
            'conventional_rs' => null,
9703
            'frame_reference_epoch' => null,
9704
        ],
9705
        'urn:ogc:def:datum:EPSG::1268' => [
9706
            'name' => 'Kingdom of Saudi Arabia Geodetic Reference Frame 2017',
9707
            'type' => 'geodetic',
9708
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9709
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9710
            'conventional_rs' => null,
9711
            'frame_reference_epoch' => null,
9712
        ],
9713
        'urn:ogc:def:datum:EPSG::1269' => [
9714
            'name' => 'Kingdom of Saudi Arabia Vertical Reference Frame Jeddah 2014',
9715
            'type' => 'vertical',
9716
            'ellipsoid' => null,
9717
            'prime_meridian' => null,
9718
            'conventional_rs' => null,
9719
            'frame_reference_epoch' => null,
9720
        ],
9721
        'urn:ogc:def:datum:EPSG::1270' => [
9722
            'name' => 'Mean Sea Level Netherlands',
9723
            'type' => 'vertical',
9724
            'ellipsoid' => null,
9725
            'prime_meridian' => null,
9726
            'conventional_rs' => null,
9727
            'frame_reference_epoch' => null,
9728
        ],
9729
        'urn:ogc:def:datum:EPSG::1271' => [
9730
            'name' => 'MML07 Intermediate Reference Frame',
9731
            'type' => 'geodetic',
9732
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9733
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9734
            'conventional_rs' => null,
9735
            'frame_reference_epoch' => null,
9736
        ],
9737
        'urn:ogc:def:datum:EPSG::1272' => [
9738
            'name' => 'IGb14',
9739
            'type' => 'dynamic geodetic',
9740
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9741
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9742
            'conventional_rs' => null,
9743
            'frame_reference_epoch' => 2010.0,
9744
        ],
9745
        'urn:ogc:def:datum:EPSG::1273' => [
9746
            'name' => 'AbInvA96_2020 Intermediate Reference Frame',
9747
            'type' => 'geodetic',
9748
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9749
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9750
            'conventional_rs' => null,
9751
            'frame_reference_epoch' => null,
9752
        ],
9753
        'urn:ogc:def:datum:EPSG::1274' => [
9754
            'name' => 'European Vertical Reference Frame 2019',
9755
            'type' => 'vertical',
9756
            'ellipsoid' => null,
9757
            'prime_meridian' => null,
9758
            'conventional_rs' => null,
9759
            'frame_reference_epoch' => null,
9760
        ],
9761
        'urn:ogc:def:datum:EPSG::1275' => [
9762
            'name' => 'Mallorca',
9763
            'type' => 'vertical',
9764
            'ellipsoid' => null,
9765
            'prime_meridian' => null,
9766
            'conventional_rs' => null,
9767
            'frame_reference_epoch' => null,
9768
        ],
9769
        'urn:ogc:def:datum:EPSG::1276' => [
9770
            'name' => 'Menorca',
9771
            'type' => 'vertical',
9772
            'ellipsoid' => null,
9773
            'prime_meridian' => null,
9774
            'conventional_rs' => null,
9775
            'frame_reference_epoch' => null,
9776
        ],
9777
        'urn:ogc:def:datum:EPSG::1277' => [
9778
            'name' => 'Ibiza',
9779
            'type' => 'vertical',
9780
            'ellipsoid' => null,
9781
            'prime_meridian' => null,
9782
            'conventional_rs' => null,
9783
            'frame_reference_epoch' => null,
9784
        ],
9785
        'urn:ogc:def:datum:EPSG::1278' => [
9786
            'name' => 'Lanzarote',
9787
            'type' => 'vertical',
9788
            'ellipsoid' => null,
9789
            'prime_meridian' => null,
9790
            'conventional_rs' => null,
9791
            'frame_reference_epoch' => null,
9792
        ],
9793
        'urn:ogc:def:datum:EPSG::1279' => [
9794
            'name' => 'Fuerteventura',
9795
            'type' => 'vertical',
9796
            'ellipsoid' => null,
9797
            'prime_meridian' => null,
9798
            'conventional_rs' => null,
9799
            'frame_reference_epoch' => null,
9800
        ],
9801
        'urn:ogc:def:datum:EPSG::1280' => [
9802
            'name' => 'Gran Canaria',
9803
            'type' => 'vertical',
9804
            'ellipsoid' => null,
9805
            'prime_meridian' => null,
9806
            'conventional_rs' => null,
9807
            'frame_reference_epoch' => null,
9808
        ],
9809
        'urn:ogc:def:datum:EPSG::1281' => [
9810
            'name' => 'Tenerife',
9811
            'type' => 'vertical',
9812
            'ellipsoid' => null,
9813
            'prime_meridian' => null,
9814
            'conventional_rs' => null,
9815
            'frame_reference_epoch' => null,
9816
        ],
9817
        'urn:ogc:def:datum:EPSG::1282' => [
9818
            'name' => 'La Gomera',
9819
            'type' => 'vertical',
9820
            'ellipsoid' => null,
9821
            'prime_meridian' => null,
9822
            'conventional_rs' => null,
9823
            'frame_reference_epoch' => null,
9824
        ],
9825
        'urn:ogc:def:datum:EPSG::1283' => [
9826
            'name' => 'La Palma',
9827
            'type' => 'vertical',
9828
            'ellipsoid' => null,
9829
            'prime_meridian' => null,
9830
            'conventional_rs' => null,
9831
            'frame_reference_epoch' => null,
9832
        ],
9833
        'urn:ogc:def:datum:EPSG::1284' => [
9834
            'name' => 'El Hierro',
9835
            'type' => 'vertical',
9836
            'ellipsoid' => null,
9837
            'prime_meridian' => null,
9838
            'conventional_rs' => null,
9839
            'frame_reference_epoch' => null,
9840
        ],
9841
        'urn:ogc:def:datum:EPSG::1285' => [
9842
            'name' => 'Ceuta 2',
9843
            'type' => 'vertical',
9844
            'ellipsoid' => null,
9845
            'prime_meridian' => null,
9846
            'conventional_rs' => null,
9847
            'frame_reference_epoch' => null,
9848
        ],
9849
        'urn:ogc:def:datum:EPSG::1286' => [
9850
            'name' => 'Pico de las Nieves 1968',
9851
            'type' => 'geodetic',
9852
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
9853
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9854
            'conventional_rs' => null,
9855
            'frame_reference_epoch' => null,
9856
        ],
9857
        'urn:ogc:def:datum:EPSG::1287' => [
9858
            'name' => 'European Vertical Reference Frame 2019 mean tide',
9859
            'type' => 'vertical',
9860
            'ellipsoid' => null,
9861
            'prime_meridian' => null,
9862
            'conventional_rs' => null,
9863
            'frame_reference_epoch' => null,
9864
        ],
9865
        'urn:ogc:def:datum:EPSG::1288' => [
9866
            'name' => 'British Isles height ensemble',
9867
            'type' => 'ensemble',
9868
            'ellipsoid' => null,
9869
            'prime_meridian' => null,
9870
            'conventional_rs' => null,
9871
            'frame_reference_epoch' => null,
9872
            'ensemble' => [
9873
                'urn:ogc:def:datum:EPSG::5130',
9874
                'urn:ogc:def:datum:EPSG::5131',
9875
                'urn:ogc:def:datum:EPSG::5101',
9876
                'urn:ogc:def:datum:EPSG::1164',
9877
                'urn:ogc:def:datum:EPSG::5138',
9878
                'urn:ogc:def:datum:EPSG::5140',
9879
                'urn:ogc:def:datum:EPSG::5144',
9880
                'urn:ogc:def:datum:EPSG::5148',
9881
                'urn:ogc:def:datum:EPSG::5147',
9882
            ],
9883
        ],
9884
        'urn:ogc:def:datum:EPSG::1289' => [
9885
            'name' => 'GBK19 Intermediate Reference Frame',
9886
            'type' => 'geodetic',
9887
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9888
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9889
            'conventional_rs' => null,
9890
            'frame_reference_epoch' => null,
9891
        ],
9892
        'urn:ogc:def:datum:EPSG::1290' => [
9893
            'name' => 'Lowest Astronomical Tide Netherlands',
9894
            'type' => 'vertical',
9895
            'ellipsoid' => null,
9896
            'prime_meridian' => null,
9897
            'conventional_rs' => null,
9898
            'frame_reference_epoch' => null,
9899
        ],
9900
        'urn:ogc:def:datum:EPSG::1291' => [
9901
            'name' => 'Australian Terrestrial Reference Frame 2014',
9902
            'type' => 'dynamic geodetic',
9903
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9904
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9905
            'conventional_rs' => null,
9906
            'frame_reference_epoch' => 2020.0,
9907
        ],
9908
        'urn:ogc:def:datum:EPSG::1292' => [
9909
            'name' => 'Australian Vertical Working Surface',
9910
            'type' => 'vertical',
9911
            'ellipsoid' => null,
9912
            'prime_meridian' => null,
9913
            'conventional_rs' => null,
9914
            'frame_reference_epoch' => null,
9915
        ],
9916
        'urn:ogc:def:datum:EPSG::1293' => [
9917
            'name' => 'Sistem Referensi Geospasial Indonesia 2013',
9918
            'type' => 'dynamic geodetic',
9919
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
9920
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9921
            'conventional_rs' => null,
9922
            'frame_reference_epoch' => 2012.0,
9923
        ],
9924
        'urn:ogc:def:datum:EPSG::1294' => [
9925
            'name' => 'Indonesian Geoid 2020 version 1',
9926
            'type' => 'vertical',
9927
            'ellipsoid' => null,
9928
            'prime_meridian' => null,
9929
            'conventional_rs' => null,
9930
            'frame_reference_epoch' => null,
9931
        ],
9932
        'urn:ogc:def:datum:EPSG::1295' => [
9933
            'name' => 'Lyon Turin Ferroviaire 2004',
9934
            'type' => 'geodetic',
9935
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
9936
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
9937
            'conventional_rs' => null,
9938
            'frame_reference_epoch' => null,
9939
        ],
9940
        'urn:ogc:def:datum:EPSG::1296' => [
9941
            'name' => 'Baltic 1986',
9942
            'type' => 'vertical',
9943
            'ellipsoid' => null,
9944
            'prime_meridian' => null,
9945
            'conventional_rs' => null,
9946
            'frame_reference_epoch' => null,
9947
        ],
9948
        'urn:ogc:def:datum:EPSG::1297' => [
9949
            'name' => 'European Vertical Reference Frame 2007 Poland',
9950
            'type' => 'vertical',
9951
            'ellipsoid' => null,
9952
            'prime_meridian' => null,
9953
            'conventional_rs' => null,
9954
            'frame_reference_epoch' => null,
9955
        ],
9956
        'urn:ogc:def:datum:EPSG::1298' => [
9957
            'name' => 'Estonian Height System 2000',
9958
            'type' => 'vertical',
9959
            'ellipsoid' => null,
9960
            'prime_meridian' => null,
9961
            'conventional_rs' => null,
9962
            'frame_reference_epoch' => null,
9963
        ],
9964
        'urn:ogc:def:datum:EPSG::1299' => [
9965
            'name' => 'Lithuanian Height System 2007',
9966
            'type' => 'vertical',
9967
            'ellipsoid' => null,
9968
            'prime_meridian' => null,
9969
            'conventional_rs' => null,
9970
            'frame_reference_epoch' => null,
9971
        ],
9972
        'urn:ogc:def:datum:EPSG::1300' => [
9973
            'name' => 'Bulgarian Height System 2005',
9974
            'type' => 'vertical',
9975
            'ellipsoid' => null,
9976
            'prime_meridian' => null,
9977
            'conventional_rs' => null,
9978
            'frame_reference_epoch' => null,
9979
        ],
9980
        'urn:ogc:def:datum:EPSG::1301' => [
9981
            'name' => 'Norwegian Chart Datum',
9982
            'type' => 'vertical',
9983
            'ellipsoid' => null,
9984
            'prime_meridian' => null,
9985
            'conventional_rs' => null,
9986
            'frame_reference_epoch' => null,
9987
        ],
9988
        'urn:ogc:def:datum:EPSG::1302' => [
9989
            'name' => 'Local Tidal Datum at Pago Pago 2020',
9990
            'type' => 'vertical',
9991
            'ellipsoid' => null,
9992
            'prime_meridian' => null,
9993
            'conventional_rs' => null,
9994
            'frame_reference_epoch' => null,
9995
        ],
9996
        'urn:ogc:def:datum:EPSG::1303' => [
9997
            'name' => 'National Vertical Datum 1992',
9998
            'type' => 'vertical',
9999
            'ellipsoid' => null,
10000
            'prime_meridian' => null,
10001
            'conventional_rs' => null,
10002
            'frame_reference_epoch' => null,
10003
        ],
10004
        'urn:ogc:def:datum:EPSG::1304' => [
10005
            'name' => 'Red Geodesica Para Mineria en Chile',
10006
            'type' => 'dynamic geodetic',
10007
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10008
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10009
            'conventional_rs' => null,
10010
            'frame_reference_epoch' => 2019.0,
10011
        ],
10012
        'urn:ogc:def:datum:EPSG::1305' => [
10013
            'name' => 'ETRF2000 Poland',
10014
            'type' => 'geodetic',
10015
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10016
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10017
            'conventional_rs' => null,
10018
            'frame_reference_epoch' => null,
10019
        ],
10020
        'urn:ogc:def:datum:EPSG::1306' => [
10021
            'name' => 'Catania 1965',
10022
            'type' => 'vertical',
10023
            'ellipsoid' => null,
10024
            'prime_meridian' => null,
10025
            'conventional_rs' => null,
10026
            'frame_reference_epoch' => null,
10027
        ],
10028
        'urn:ogc:def:datum:EPSG::1307' => [
10029
            'name' => 'Cagliari 1956',
10030
            'type' => 'vertical',
10031
            'ellipsoid' => null,
10032
            'prime_meridian' => null,
10033
            'conventional_rs' => null,
10034
            'frame_reference_epoch' => null,
10035
        ],
10036
        'urn:ogc:def:datum:EPSG::1308' => [
10037
            'name' => 'EOS21 Intermediate Reference Frame',
10038
            'type' => 'geodetic',
10039
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10040
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10041
            'conventional_rs' => null,
10042
            'frame_reference_epoch' => null,
10043
        ],
10044
        'urn:ogc:def:datum:EPSG::1309' => [
10045
            'name' => 'World Geodetic System 1984 (G2139)',
10046
            'type' => 'dynamic geodetic',
10047
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
10048
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10049
            'conventional_rs' => 1024,
10050
            'frame_reference_epoch' => 2016.0,
10051
        ],
10052
        'urn:ogc:def:datum:EPSG::1310' => [
10053
            'name' => 'ECML14_NB Intermediate Reference Frame',
10054
            'type' => 'geodetic',
10055
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10056
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10057
            'conventional_rs' => null,
10058
            'frame_reference_epoch' => null,
10059
        ],
10060
        'urn:ogc:def:datum:EPSG::1311' => [
10061
            'name' => 'EWR2 Intermediate Reference Frame',
10062
            'type' => 'geodetic',
10063
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10064
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10065
            'conventional_rs' => null,
10066
            'frame_reference_epoch' => null,
10067
        ],
10068
        'urn:ogc:def:datum:EPSG::1312' => [
10069
            'name' => 'Reseau Geodesique Francais 1993 v2',
10070
            'type' => 'geodetic',
10071
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10072
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10073
            'conventional_rs' => null,
10074
            'frame_reference_epoch' => null,
10075
        ],
10076
        'urn:ogc:def:datum:EPSG::1313' => [
10077
            'name' => 'Reseau Geodesique Francais 1993 v2b',
10078
            'type' => 'geodetic',
10079
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10080
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10081
            'conventional_rs' => null,
10082
            'frame_reference_epoch' => null,
10083
        ],
10084
        'urn:ogc:def:datum:EPSG::1314' => [
10085
            'name' => 'MRH21 Intermediate Reference Frame',
10086
            'type' => 'geodetic',
10087
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10088
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10089
            'conventional_rs' => null,
10090
            'frame_reference_epoch' => null,
10091
        ],
10092
        'urn:ogc:def:datum:EPSG::1315' => [
10093
            'name' => 'MOLDOR11 Intermediate Reference Frame',
10094
            'type' => 'geodetic',
10095
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10096
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10097
            'conventional_rs' => null,
10098
            'frame_reference_epoch' => null,
10099
        ],
10100
        'urn:ogc:def:datum:EPSG::1316' => [
10101
            'name' => 'GNTRANS',
10102
            'type' => 'vertical',
10103
            'ellipsoid' => null,
10104
            'prime_meridian' => null,
10105
            'conventional_rs' => null,
10106
            'frame_reference_epoch' => null,
10107
        ],
10108
        'urn:ogc:def:datum:EPSG::1317' => [
10109
            'name' => 'HULLEE13 Intermediate Reference Frame',
10110
            'type' => 'geodetic',
10111
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10112
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10113
            'conventional_rs' => null,
10114
            'frame_reference_epoch' => null,
10115
        ],
10116
        'urn:ogc:def:datum:EPSG::1318' => [
10117
            'name' => 'GNTRANS2016',
10118
            'type' => 'vertical',
10119
            'ellipsoid' => null,
10120
            'prime_meridian' => null,
10121
            'conventional_rs' => null,
10122
            'frame_reference_epoch' => null,
10123
        ],
10124
        'urn:ogc:def:datum:EPSG::1319' => [
10125
            'name' => 'EBBWV14 Intermediate Reference Frame',
10126
            'type' => 'geodetic',
10127
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10128
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10129
            'conventional_rs' => null,
10130
            'frame_reference_epoch' => null,
10131
        ],
10132
        'urn:ogc:def:datum:EPSG::1320' => [
10133
            'name' => 'SCM22 Intermediate Reference Frame',
10134
            'type' => 'geodetic',
10135
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10136
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10137
            'conventional_rs' => null,
10138
            'frame_reference_epoch' => null,
10139
        ],
10140
        'urn:ogc:def:datum:EPSG::1321' => [
10141
            'name' => 'FNL22 Intermediate Reference Frame',
10142
            'type' => 'geodetic',
10143
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10144
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10145
            'conventional_rs' => null,
10146
            'frame_reference_epoch' => null,
10147
        ],
10148
        'urn:ogc:def:datum:EPSG::1322' => [
10149
            'name' => 'International Terrestrial Reference Frame 2020',
10150
            'type' => 'dynamic geodetic',
10151
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10152
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10153
            'conventional_rs' => null,
10154
            'frame_reference_epoch' => 2015.0,
10155
        ],
10156
        'urn:ogc:def:datum:EPSG::1323' => [
10157
            'name' => 'Svalbard vertical datum 2006',
10158
            'type' => 'vertical',
10159
            'ellipsoid' => null,
10160
            'prime_meridian' => null,
10161
            'conventional_rs' => null,
10162
            'frame_reference_epoch' => null,
10163
        ],
10164
        'urn:ogc:def:datum:EPSG::1324' => [
10165
            'name' => 'MWC18 Intermediate Reference Frame',
10166
            'type' => 'geodetic',
10167
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10168
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10169
            'conventional_rs' => null,
10170
            'frame_reference_epoch' => null,
10171
        ],
10172
        'urn:ogc:def:datum:EPSG::1325' => [
10173
            'name' => 'Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 2002',
10174
            'type' => 'vertical',
10175
            'ellipsoid' => null,
10176
            'prime_meridian' => null,
10177
            'conventional_rs' => null,
10178
            'frame_reference_epoch' => null,
10179
        ],
10180
        'urn:ogc:def:datum:EPSG::1326' => [
10181
            'name' => 'Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 1997',
10182
            'type' => 'vertical',
10183
            'ellipsoid' => null,
10184
            'prime_meridian' => null,
10185
            'conventional_rs' => null,
10186
            'frame_reference_epoch' => null,
10187
        ],
10188
        'urn:ogc:def:datum:EPSG::1327' => [
10189
            'name' => 'SIRGAS-Chile realization 5 epoch 2021',
10190
            'type' => 'geodetic',
10191
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10192
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10193
            'conventional_rs' => null,
10194
            'frame_reference_epoch' => null,
10195
        ],
10196
        'urn:ogc:def:datum:EPSG::1328' => [
10197
            'name' => 'Indonesian Geoid 2020 version 2',
10198
            'type' => 'vertical',
10199
            'ellipsoid' => null,
10200
            'prime_meridian' => null,
10201
            'conventional_rs' => null,
10202
            'frame_reference_epoch' => null,
10203
        ],
10204
        'urn:ogc:def:datum:EPSG::1330' => [
10205
            'name' => 'Mean Sea Level UK & Ireland VORF08',
10206
            'type' => 'vertical',
10207
            'ellipsoid' => null,
10208
            'prime_meridian' => null,
10209
            'conventional_rs' => null,
10210
            'frame_reference_epoch' => null,
10211
        ],
10212
        'urn:ogc:def:datum:EPSG::1331' => [
10213
            'name' => 'Chart Datum UK & Ireland VORF08',
10214
            'type' => 'vertical',
10215
            'ellipsoid' => null,
10216
            'prime_meridian' => null,
10217
            'conventional_rs' => null,
10218
            'frame_reference_epoch' => null,
10219
        ],
10220
        'urn:ogc:def:datum:EPSG::1333' => [
10221
            'name' => 'IGS20',
10222
            'type' => 'dynamic geodetic',
10223
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
10224
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
10225
            'conventional_rs' => null,
10226
            'frame_reference_epoch' => 2015.0,
10227
        ],
10228
        'urn:ogc:def:datum:EPSG::5100' => [
10229
            'name' => 'Mean Sea Level',
10230
            'type' => 'vertical',
10231
            'ellipsoid' => null,
10232
            'prime_meridian' => null,
10233
            'conventional_rs' => null,
10234
            'frame_reference_epoch' => null,
10235
        ],
10236
        'urn:ogc:def:datum:EPSG::5101' => [
10237
            'name' => 'Ordnance Datum Newlyn',
10238
            'type' => 'vertical',
10239
            'ellipsoid' => null,
10240
            'prime_meridian' => null,
10241
            'conventional_rs' => 1026,
10242
            'frame_reference_epoch' => null,
10243
        ],
10244
        'urn:ogc:def:datum:EPSG::5102' => [
10245
            'name' => 'National Geodetic Vertical Datum 1929',
10246
            'type' => 'vertical',
10247
            'ellipsoid' => null,
10248
            'prime_meridian' => null,
10249
            'conventional_rs' => null,
10250
            'frame_reference_epoch' => null,
10251
        ],
10252
        'urn:ogc:def:datum:EPSG::5103' => [
10253
            'name' => 'North American Vertical Datum 1988',
10254
            'type' => 'vertical',
10255
            'ellipsoid' => null,
10256
            'prime_meridian' => null,
10257
            'conventional_rs' => null,
10258
            'frame_reference_epoch' => null,
10259
        ],
10260
        'urn:ogc:def:datum:EPSG::5104' => [
10261
            'name' => 'Yellow Sea 1956',
10262
            'type' => 'vertical',
10263
            'ellipsoid' => null,
10264
            'prime_meridian' => null,
10265
            'conventional_rs' => null,
10266
            'frame_reference_epoch' => null,
10267
        ],
10268
        'urn:ogc:def:datum:EPSG::5105' => [
10269
            'name' => 'Baltic 1977',
10270
            'type' => 'vertical',
10271
            'ellipsoid' => null,
10272
            'prime_meridian' => null,
10273
            'conventional_rs' => null,
10274
            'frame_reference_epoch' => null,
10275
        ],
10276
        'urn:ogc:def:datum:EPSG::5106' => [
10277
            'name' => 'Caspian Sea',
10278
            'type' => 'vertical',
10279
            'ellipsoid' => null,
10280
            'prime_meridian' => null,
10281
            'conventional_rs' => null,
10282
            'frame_reference_epoch' => null,
10283
        ],
10284
        'urn:ogc:def:datum:EPSG::5109' => [
10285
            'name' => 'Normaal Amsterdams Peil',
10286
            'type' => 'vertical',
10287
            'ellipsoid' => null,
10288
            'prime_meridian' => null,
10289
            'conventional_rs' => null,
10290
            'frame_reference_epoch' => null,
10291
        ],
10292
        'urn:ogc:def:datum:EPSG::5110' => [
10293
            'name' => 'Ostend',
10294
            'type' => 'vertical',
10295
            'ellipsoid' => null,
10296
            'prime_meridian' => null,
10297
            'conventional_rs' => null,
10298
            'frame_reference_epoch' => null,
10299
        ],
10300
        'urn:ogc:def:datum:EPSG::5111' => [
10301
            'name' => 'Australian Height Datum',
10302
            'type' => 'vertical',
10303
            'ellipsoid' => null,
10304
            'prime_meridian' => null,
10305
            'conventional_rs' => null,
10306
            'frame_reference_epoch' => null,
10307
        ],
10308
        'urn:ogc:def:datum:EPSG::5112' => [
10309
            'name' => 'Australian Height Datum (Tasmania)',
10310
            'type' => 'vertical',
10311
            'ellipsoid' => null,
10312
            'prime_meridian' => null,
10313
            'conventional_rs' => null,
10314
            'frame_reference_epoch' => null,
10315
        ],
10316
        'urn:ogc:def:datum:EPSG::5113' => [
10317
            'name' => 'Instantaneous Water Level',
10318
            'type' => 'vertical',
10319
            'ellipsoid' => null,
10320
            'prime_meridian' => null,
10321
            'conventional_rs' => null,
10322
            'frame_reference_epoch' => null,
10323
        ],
10324
        'urn:ogc:def:datum:EPSG::5114' => [
10325
            'name' => 'Canadian Geodetic Vertical Datum of 1928',
10326
            'type' => 'vertical',
10327
            'ellipsoid' => null,
10328
            'prime_meridian' => null,
10329
            'conventional_rs' => null,
10330
            'frame_reference_epoch' => null,
10331
        ],
10332
        'urn:ogc:def:datum:EPSG::5115' => [
10333
            'name' => 'Piraeus Harbour 1986',
10334
            'type' => 'vertical',
10335
            'ellipsoid' => null,
10336
            'prime_meridian' => null,
10337
            'conventional_rs' => null,
10338
            'frame_reference_epoch' => null,
10339
        ],
10340
        'urn:ogc:def:datum:EPSG::5116' => [
10341
            'name' => 'Helsinki 1960',
10342
            'type' => 'vertical',
10343
            'ellipsoid' => null,
10344
            'prime_meridian' => null,
10345
            'conventional_rs' => null,
10346
            'frame_reference_epoch' => null,
10347
        ],
10348
        'urn:ogc:def:datum:EPSG::5117' => [
10349
            'name' => 'Rikets hojdsystem 1970',
10350
            'type' => 'vertical',
10351
            'ellipsoid' => null,
10352
            'prime_meridian' => null,
10353
            'conventional_rs' => null,
10354
            'frame_reference_epoch' => null,
10355
        ],
10356
        'urn:ogc:def:datum:EPSG::5118' => [
10357
            'name' => 'Nivellement General de la France - Lallemand',
10358
            'type' => 'vertical',
10359
            'ellipsoid' => null,
10360
            'prime_meridian' => null,
10361
            'conventional_rs' => null,
10362
            'frame_reference_epoch' => null,
10363
        ],
10364
        'urn:ogc:def:datum:EPSG::5119' => [
10365
            'name' => 'Nivellement General de la France - IGN69',
10366
            'type' => 'vertical',
10367
            'ellipsoid' => null,
10368
            'prime_meridian' => null,
10369
            'conventional_rs' => null,
10370
            'frame_reference_epoch' => null,
10371
        ],
10372
        'urn:ogc:def:datum:EPSG::5120' => [
10373
            'name' => 'Nivellement General de la France - IGN78',
10374
            'type' => 'vertical',
10375
            'ellipsoid' => null,
10376
            'prime_meridian' => null,
10377
            'conventional_rs' => null,
10378
            'frame_reference_epoch' => null,
10379
        ],
10380
        'urn:ogc:def:datum:EPSG::5121' => [
10381
            'name' => 'Maputo',
10382
            'type' => 'vertical',
10383
            'ellipsoid' => null,
10384
            'prime_meridian' => null,
10385
            'conventional_rs' => null,
10386
            'frame_reference_epoch' => null,
10387
        ],
10388
        'urn:ogc:def:datum:EPSG::5122' => [
10389
            'name' => 'Japanese Standard Levelling Datum 1969',
10390
            'type' => 'vertical',
10391
            'ellipsoid' => null,
10392
            'prime_meridian' => null,
10393
            'conventional_rs' => null,
10394
            'frame_reference_epoch' => null,
10395
        ],
10396
        'urn:ogc:def:datum:EPSG::5123' => [
10397
            'name' => 'PDO Height Datum 1993',
10398
            'type' => 'vertical',
10399
            'ellipsoid' => null,
10400
            'prime_meridian' => null,
10401
            'conventional_rs' => null,
10402
            'frame_reference_epoch' => null,
10403
        ],
10404
        'urn:ogc:def:datum:EPSG::5124' => [
10405
            'name' => 'Fahud Height Datum',
10406
            'type' => 'vertical',
10407
            'ellipsoid' => null,
10408
            'prime_meridian' => null,
10409
            'conventional_rs' => null,
10410
            'frame_reference_epoch' => null,
10411
        ],
10412
        'urn:ogc:def:datum:EPSG::5125' => [
10413
            'name' => 'Ha Tien 1960',
10414
            'type' => 'vertical',
10415
            'ellipsoid' => null,
10416
            'prime_meridian' => null,
10417
            'conventional_rs' => null,
10418
            'frame_reference_epoch' => null,
10419
        ],
10420
        'urn:ogc:def:datum:EPSG::5126' => [
10421
            'name' => 'Hon Dau 1992',
10422
            'type' => 'vertical',
10423
            'ellipsoid' => null,
10424
            'prime_meridian' => null,
10425
            'conventional_rs' => null,
10426
            'frame_reference_epoch' => null,
10427
        ],
10428
        'urn:ogc:def:datum:EPSG::5127' => [
10429
            'name' => 'Landesnivellement 1902',
10430
            'type' => 'vertical',
10431
            'ellipsoid' => null,
10432
            'prime_meridian' => null,
10433
            'conventional_rs' => null,
10434
            'frame_reference_epoch' => null,
10435
        ],
10436
        'urn:ogc:def:datum:EPSG::5128' => [
10437
            'name' => 'Landeshohennetz 1995',
10438
            'type' => 'vertical',
10439
            'ellipsoid' => null,
10440
            'prime_meridian' => null,
10441
            'conventional_rs' => null,
10442
            'frame_reference_epoch' => null,
10443
        ],
10444
        'urn:ogc:def:datum:EPSG::5129' => [
10445
            'name' => 'European Vertical Reference Frame 2000',
10446
            'type' => 'vertical',
10447
            'ellipsoid' => null,
10448
            'prime_meridian' => null,
10449
            'conventional_rs' => null,
10450
            'frame_reference_epoch' => null,
10451
        ],
10452
        'urn:ogc:def:datum:EPSG::5130' => [
10453
            'name' => 'Malin Head',
10454
            'type' => 'vertical',
10455
            'ellipsoid' => null,
10456
            'prime_meridian' => null,
10457
            'conventional_rs' => 1026,
10458
            'frame_reference_epoch' => null,
10459
        ],
10460
        'urn:ogc:def:datum:EPSG::5131' => [
10461
            'name' => 'Belfast Lough',
10462
            'type' => 'vertical',
10463
            'ellipsoid' => null,
10464
            'prime_meridian' => null,
10465
            'conventional_rs' => 1026,
10466
            'frame_reference_epoch' => null,
10467
        ],
10468
        'urn:ogc:def:datum:EPSG::5132' => [
10469
            'name' => 'Dansk Normal Nul',
10470
            'type' => 'vertical',
10471
            'ellipsoid' => null,
10472
            'prime_meridian' => null,
10473
            'conventional_rs' => null,
10474
            'frame_reference_epoch' => null,
10475
        ],
10476
        'urn:ogc:def:datum:EPSG::5133' => [
10477
            'name' => 'AIOC 1995',
10478
            'type' => 'vertical',
10479
            'ellipsoid' => null,
10480
            'prime_meridian' => null,
10481
            'conventional_rs' => null,
10482
            'frame_reference_epoch' => null,
10483
        ],
10484
        'urn:ogc:def:datum:EPSG::5134' => [
10485
            'name' => 'Black Sea',
10486
            'type' => 'vertical',
10487
            'ellipsoid' => null,
10488
            'prime_meridian' => null,
10489
            'conventional_rs' => null,
10490
            'frame_reference_epoch' => null,
10491
        ],
10492
        'urn:ogc:def:datum:EPSG::5135' => [
10493
            'name' => 'Hong Kong Principal Datum',
10494
            'type' => 'vertical',
10495
            'ellipsoid' => null,
10496
            'prime_meridian' => null,
10497
            'conventional_rs' => null,
10498
            'frame_reference_epoch' => null,
10499
        ],
10500
        'urn:ogc:def:datum:EPSG::5136' => [
10501
            'name' => 'Hong Kong Chart Datum',
10502
            'type' => 'vertical',
10503
            'ellipsoid' => null,
10504
            'prime_meridian' => null,
10505
            'conventional_rs' => null,
10506
            'frame_reference_epoch' => null,
10507
        ],
10508
        'urn:ogc:def:datum:EPSG::5137' => [
10509
            'name' => 'Yellow Sea 1985',
10510
            'type' => 'vertical',
10511
            'ellipsoid' => null,
10512
            'prime_meridian' => null,
10513
            'conventional_rs' => null,
10514
            'frame_reference_epoch' => null,
10515
        ],
10516
        'urn:ogc:def:datum:EPSG::5138' => [
10517
            'name' => 'Ordnance Datum Newlyn (Orkney Isles)',
10518
            'type' => 'vertical',
10519
            'ellipsoid' => null,
10520
            'prime_meridian' => null,
10521
            'conventional_rs' => 1026,
10522
            'frame_reference_epoch' => null,
10523
        ],
10524
        'urn:ogc:def:datum:EPSG::5139' => [
10525
            'name' => 'Fair Isle',
10526
            'type' => 'vertical',
10527
            'ellipsoid' => null,
10528
            'prime_meridian' => null,
10529
            'conventional_rs' => null,
10530
            'frame_reference_epoch' => null,
10531
        ],
10532
        'urn:ogc:def:datum:EPSG::5140' => [
10533
            'name' => 'Lerwick',
10534
            'type' => 'vertical',
10535
            'ellipsoid' => null,
10536
            'prime_meridian' => null,
10537
            'conventional_rs' => 1026,
10538
            'frame_reference_epoch' => null,
10539
        ],
10540
        'urn:ogc:def:datum:EPSG::5141' => [
10541
            'name' => 'Foula',
10542
            'type' => 'vertical',
10543
            'ellipsoid' => null,
10544
            'prime_meridian' => null,
10545
            'conventional_rs' => null,
10546
            'frame_reference_epoch' => null,
10547
        ],
10548
        'urn:ogc:def:datum:EPSG::5142' => [
10549
            'name' => 'Sule Skerry',
10550
            'type' => 'vertical',
10551
            'ellipsoid' => null,
10552
            'prime_meridian' => null,
10553
            'conventional_rs' => null,
10554
            'frame_reference_epoch' => null,
10555
        ],
10556
        'urn:ogc:def:datum:EPSG::5143' => [
10557
            'name' => 'North Rona',
10558
            'type' => 'vertical',
10559
            'ellipsoid' => null,
10560
            'prime_meridian' => null,
10561
            'conventional_rs' => null,
10562
            'frame_reference_epoch' => null,
10563
        ],
10564
        'urn:ogc:def:datum:EPSG::5144' => [
10565
            'name' => 'Stornoway',
10566
            'type' => 'vertical',
10567
            'ellipsoid' => null,
10568
            'prime_meridian' => null,
10569
            'conventional_rs' => 1026,
10570
            'frame_reference_epoch' => null,
10571
        ],
10572
        'urn:ogc:def:datum:EPSG::5145' => [
10573
            'name' => 'St. Kilda',
10574
            'type' => 'vertical',
10575
            'ellipsoid' => null,
10576
            'prime_meridian' => null,
10577
            'conventional_rs' => null,
10578
            'frame_reference_epoch' => null,
10579
        ],
10580
        'urn:ogc:def:datum:EPSG::5146' => [
10581
            'name' => 'Flannan Isles',
10582
            'type' => 'vertical',
10583
            'ellipsoid' => null,
10584
            'prime_meridian' => null,
10585
            'conventional_rs' => null,
10586
            'frame_reference_epoch' => null,
10587
        ],
10588
        'urn:ogc:def:datum:EPSG::5147' => [
10589
            'name' => 'St. Marys',
10590
            'type' => 'vertical',
10591
            'ellipsoid' => null,
10592
            'prime_meridian' => null,
10593
            'conventional_rs' => 1026,
10594
            'frame_reference_epoch' => null,
10595
        ],
10596
        'urn:ogc:def:datum:EPSG::5148' => [
10597
            'name' => 'Douglas',
10598
            'type' => 'vertical',
10599
            'ellipsoid' => null,
10600
            'prime_meridian' => null,
10601
            'conventional_rs' => 1026,
10602
            'frame_reference_epoch' => null,
10603
        ],
10604
        'urn:ogc:def:datum:EPSG::5149' => [
10605
            'name' => 'Fao',
10606
            'type' => 'vertical',
10607
            'ellipsoid' => null,
10608
            'prime_meridian' => null,
10609
            'conventional_rs' => null,
10610
            'frame_reference_epoch' => null,
10611
        ],
10612
        'urn:ogc:def:datum:EPSG::5150' => [
10613
            'name' => 'Bandar Abbas',
10614
            'type' => 'vertical',
10615
            'ellipsoid' => null,
10616
            'prime_meridian' => null,
10617
            'conventional_rs' => null,
10618
            'frame_reference_epoch' => null,
10619
        ],
10620
        'urn:ogc:def:datum:EPSG::5151' => [
10621
            'name' => 'Nivellement General de Nouvelle Caledonie',
10622
            'type' => 'vertical',
10623
            'ellipsoid' => null,
10624
            'prime_meridian' => null,
10625
            'conventional_rs' => null,
10626
            'frame_reference_epoch' => null,
10627
        ],
10628
        'urn:ogc:def:datum:EPSG::5152' => [
10629
            'name' => 'Poolbeg',
10630
            'type' => 'vertical',
10631
            'ellipsoid' => null,
10632
            'prime_meridian' => null,
10633
            'conventional_rs' => null,
10634
            'frame_reference_epoch' => null,
10635
        ],
10636
        'urn:ogc:def:datum:EPSG::5153' => [
10637
            'name' => 'Nivellement General Guyanais 1977',
10638
            'type' => 'vertical',
10639
            'ellipsoid' => null,
10640
            'prime_meridian' => null,
10641
            'conventional_rs' => null,
10642
            'frame_reference_epoch' => null,
10643
        ],
10644
        'urn:ogc:def:datum:EPSG::5154' => [
10645
            'name' => 'Martinique 1987',
10646
            'type' => 'vertical',
10647
            'ellipsoid' => null,
10648
            'prime_meridian' => null,
10649
            'conventional_rs' => null,
10650
            'frame_reference_epoch' => null,
10651
        ],
10652
        'urn:ogc:def:datum:EPSG::5155' => [
10653
            'name' => 'Guadeloupe 1988',
10654
            'type' => 'vertical',
10655
            'ellipsoid' => null,
10656
            'prime_meridian' => null,
10657
            'conventional_rs' => null,
10658
            'frame_reference_epoch' => null,
10659
        ],
10660
        'urn:ogc:def:datum:EPSG::5156' => [
10661
            'name' => 'Reunion 1989',
10662
            'type' => 'vertical',
10663
            'ellipsoid' => null,
10664
            'prime_meridian' => null,
10665
            'conventional_rs' => null,
10666
            'frame_reference_epoch' => null,
10667
        ],
10668
        'urn:ogc:def:datum:EPSG::5157' => [
10669
            'name' => 'Auckland 1946',
10670
            'type' => 'vertical',
10671
            'ellipsoid' => null,
10672
            'prime_meridian' => null,
10673
            'conventional_rs' => null,
10674
            'frame_reference_epoch' => null,
10675
        ],
10676
        'urn:ogc:def:datum:EPSG::5158' => [
10677
            'name' => 'Bluff 1955',
10678
            'type' => 'vertical',
10679
            'ellipsoid' => null,
10680
            'prime_meridian' => null,
10681
            'conventional_rs' => null,
10682
            'frame_reference_epoch' => null,
10683
        ],
10684
        'urn:ogc:def:datum:EPSG::5159' => [
10685
            'name' => 'Dunedin 1958',
10686
            'type' => 'vertical',
10687
            'ellipsoid' => null,
10688
            'prime_meridian' => null,
10689
            'conventional_rs' => null,
10690
            'frame_reference_epoch' => null,
10691
        ],
10692
        'urn:ogc:def:datum:EPSG::5160' => [
10693
            'name' => 'Gisborne 1926',
10694
            'type' => 'vertical',
10695
            'ellipsoid' => null,
10696
            'prime_meridian' => null,
10697
            'conventional_rs' => null,
10698
            'frame_reference_epoch' => null,
10699
        ],
10700
        'urn:ogc:def:datum:EPSG::5161' => [
10701
            'name' => 'Lyttelton 1937',
10702
            'type' => 'vertical',
10703
            'ellipsoid' => null,
10704
            'prime_meridian' => null,
10705
            'conventional_rs' => null,
10706
            'frame_reference_epoch' => null,
10707
        ],
10708
        'urn:ogc:def:datum:EPSG::5162' => [
10709
            'name' => 'Moturiki 1953',
10710
            'type' => 'vertical',
10711
            'ellipsoid' => null,
10712
            'prime_meridian' => null,
10713
            'conventional_rs' => null,
10714
            'frame_reference_epoch' => null,
10715
        ],
10716
        'urn:ogc:def:datum:EPSG::5163' => [
10717
            'name' => 'Napier 1962',
10718
            'type' => 'vertical',
10719
            'ellipsoid' => null,
10720
            'prime_meridian' => null,
10721
            'conventional_rs' => null,
10722
            'frame_reference_epoch' => null,
10723
        ],
10724
        'urn:ogc:def:datum:EPSG::5164' => [
10725
            'name' => 'Nelson 1955',
10726
            'type' => 'vertical',
10727
            'ellipsoid' => null,
10728
            'prime_meridian' => null,
10729
            'conventional_rs' => null,
10730
            'frame_reference_epoch' => null,
10731
        ],
10732
        'urn:ogc:def:datum:EPSG::5165' => [
10733
            'name' => 'One Tree Point 1964',
10734
            'type' => 'vertical',
10735
            'ellipsoid' => null,
10736
            'prime_meridian' => null,
10737
            'conventional_rs' => null,
10738
            'frame_reference_epoch' => null,
10739
        ],
10740
        'urn:ogc:def:datum:EPSG::5166' => [
10741
            'name' => 'Tararu 1952',
10742
            'type' => 'vertical',
10743
            'ellipsoid' => null,
10744
            'prime_meridian' => null,
10745
            'conventional_rs' => null,
10746
            'frame_reference_epoch' => null,
10747
        ],
10748
        'urn:ogc:def:datum:EPSG::5167' => [
10749
            'name' => 'Taranaki 1970',
10750
            'type' => 'vertical',
10751
            'ellipsoid' => null,
10752
            'prime_meridian' => null,
10753
            'conventional_rs' => null,
10754
            'frame_reference_epoch' => null,
10755
        ],
10756
        'urn:ogc:def:datum:EPSG::5168' => [
10757
            'name' => 'Wellington 1953',
10758
            'type' => 'vertical',
10759
            'ellipsoid' => null,
10760
            'prime_meridian' => null,
10761
            'conventional_rs' => null,
10762
            'frame_reference_epoch' => null,
10763
        ],
10764
        'urn:ogc:def:datum:EPSG::5169' => [
10765
            'name' => 'Waitangi (Chatham Island) 1959',
10766
            'type' => 'vertical',
10767
            'ellipsoid' => null,
10768
            'prime_meridian' => null,
10769
            'conventional_rs' => null,
10770
            'frame_reference_epoch' => null,
10771
        ],
10772
        'urn:ogc:def:datum:EPSG::5170' => [
10773
            'name' => 'Stewart Island 1977',
10774
            'type' => 'vertical',
10775
            'ellipsoid' => null,
10776
            'prime_meridian' => null,
10777
            'conventional_rs' => null,
10778
            'frame_reference_epoch' => null,
10779
        ],
10780
        'urn:ogc:def:datum:EPSG::5171' => [
10781
            'name' => 'EGM96 geoid',
10782
            'type' => 'vertical',
10783
            'ellipsoid' => null,
10784
            'prime_meridian' => null,
10785
            'conventional_rs' => null,
10786
            'frame_reference_epoch' => null,
10787
        ],
10788
        'urn:ogc:def:datum:EPSG::5172' => [
10789
            'name' => 'Nivellement General du Luxembourg 1995',
10790
            'type' => 'vertical',
10791
            'ellipsoid' => null,
10792
            'prime_meridian' => null,
10793
            'conventional_rs' => null,
10794
            'frame_reference_epoch' => null,
10795
        ],
10796
        'urn:ogc:def:datum:EPSG::5173' => [
10797
            'name' => 'Antalya',
10798
            'type' => 'vertical',
10799
            'ellipsoid' => null,
10800
            'prime_meridian' => null,
10801
            'conventional_rs' => null,
10802
            'frame_reference_epoch' => null,
10803
        ],
10804
        'urn:ogc:def:datum:EPSG::5174' => [
10805
            'name' => 'Norway Normal Null 1954',
10806
            'type' => 'vertical',
10807
            'ellipsoid' => null,
10808
            'prime_meridian' => null,
10809
            'conventional_rs' => null,
10810
            'frame_reference_epoch' => null,
10811
        ],
10812
        'urn:ogc:def:datum:EPSG::5175' => [
10813
            'name' => 'Durres',
10814
            'type' => 'vertical',
10815
            'ellipsoid' => null,
10816
            'prime_meridian' => null,
10817
            'conventional_rs' => null,
10818
            'frame_reference_epoch' => null,
10819
        ],
10820
        'urn:ogc:def:datum:EPSG::5176' => [
10821
            'name' => 'Gebrauchshohen ADRIA',
10822
            'type' => 'vertical',
10823
            'ellipsoid' => null,
10824
            'prime_meridian' => null,
10825
            'conventional_rs' => null,
10826
            'frame_reference_epoch' => null,
10827
        ],
10828
        'urn:ogc:def:datum:EPSG::5177' => [
10829
            'name' => 'Slovenian Vertical System 2000',
10830
            'type' => 'vertical',
10831
            'ellipsoid' => null,
10832
            'prime_meridian' => null,
10833
            'conventional_rs' => null,
10834
            'frame_reference_epoch' => null,
10835
        ],
10836
        'urn:ogc:def:datum:EPSG::5178' => [
10837
            'name' => 'Cascais',
10838
            'type' => 'vertical',
10839
            'ellipsoid' => null,
10840
            'prime_meridian' => null,
10841
            'conventional_rs' => null,
10842
            'frame_reference_epoch' => null,
10843
        ],
10844
        'urn:ogc:def:datum:EPSG::5179' => [
10845
            'name' => 'Constanta',
10846
            'type' => 'vertical',
10847
            'ellipsoid' => null,
10848
            'prime_meridian' => null,
10849
            'conventional_rs' => null,
10850
            'frame_reference_epoch' => null,
10851
        ],
10852
        'urn:ogc:def:datum:EPSG::5180' => [
10853
            'name' => 'Alicante',
10854
            'type' => 'vertical',
10855
            'ellipsoid' => null,
10856
            'prime_meridian' => null,
10857
            'conventional_rs' => null,
10858
            'frame_reference_epoch' => null,
10859
        ],
10860
        'urn:ogc:def:datum:EPSG::5181' => [
10861
            'name' => 'Deutsches Haupthoehennetz 1992',
10862
            'type' => 'vertical',
10863
            'ellipsoid' => null,
10864
            'prime_meridian' => null,
10865
            'conventional_rs' => null,
10866
            'frame_reference_epoch' => null,
10867
        ],
10868
        'urn:ogc:def:datum:EPSG::5182' => [
10869
            'name' => 'Deutsches Haupthoehennetz 1985',
10870
            'type' => 'vertical',
10871
            'ellipsoid' => null,
10872
            'prime_meridian' => null,
10873
            'conventional_rs' => null,
10874
            'frame_reference_epoch' => null,
10875
        ],
10876
        'urn:ogc:def:datum:EPSG::5183' => [
10877
            'name' => 'Staatlichen Nivellementnetzes 1976',
10878
            'type' => 'vertical',
10879
            'ellipsoid' => null,
10880
            'prime_meridian' => null,
10881
            'conventional_rs' => null,
10882
            'frame_reference_epoch' => null,
10883
        ],
10884
        'urn:ogc:def:datum:EPSG::5184' => [
10885
            'name' => 'Baltic 1982',
10886
            'type' => 'vertical',
10887
            'ellipsoid' => null,
10888
            'prime_meridian' => null,
10889
            'conventional_rs' => null,
10890
            'frame_reference_epoch' => null,
10891
        ],
10892
        'urn:ogc:def:datum:EPSG::5185' => [
10893
            'name' => 'Baltic 1980',
10894
            'type' => 'vertical',
10895
            'ellipsoid' => null,
10896
            'prime_meridian' => null,
10897
            'conventional_rs' => null,
10898
            'frame_reference_epoch' => null,
10899
        ],
10900
        'urn:ogc:def:datum:EPSG::5186' => [
10901
            'name' => 'Kuwait PWD',
10902
            'type' => 'vertical',
10903
            'ellipsoid' => null,
10904
            'prime_meridian' => null,
10905
            'conventional_rs' => null,
10906
            'frame_reference_epoch' => null,
10907
        ],
10908
        'urn:ogc:def:datum:EPSG::5187' => [
10909
            'name' => 'KOC Well Datum',
10910
            'type' => 'vertical',
10911
            'ellipsoid' => null,
10912
            'prime_meridian' => null,
10913
            'conventional_rs' => null,
10914
            'frame_reference_epoch' => null,
10915
        ],
10916
        'urn:ogc:def:datum:EPSG::5188' => [
10917
            'name' => 'KOC Construction Datum',
10918
            'type' => 'vertical',
10919
            'ellipsoid' => null,
10920
            'prime_meridian' => null,
10921
            'conventional_rs' => null,
10922
            'frame_reference_epoch' => null,
10923
        ],
10924
        'urn:ogc:def:datum:EPSG::5189' => [
10925
            'name' => 'Nivellement General de la Corse 1948',
10926
            'type' => 'vertical',
10927
            'ellipsoid' => null,
10928
            'prime_meridian' => null,
10929
            'conventional_rs' => null,
10930
            'frame_reference_epoch' => null,
10931
        ],
10932
        'urn:ogc:def:datum:EPSG::5190' => [
10933
            'name' => 'Danger 1950',
10934
            'type' => 'vertical',
10935
            'ellipsoid' => null,
10936
            'prime_meridian' => null,
10937
            'conventional_rs' => null,
10938
            'frame_reference_epoch' => null,
10939
        ],
10940
        'urn:ogc:def:datum:EPSG::5191' => [
10941
            'name' => 'Mayotte 1950',
10942
            'type' => 'vertical',
10943
            'ellipsoid' => null,
10944
            'prime_meridian' => null,
10945
            'conventional_rs' => null,
10946
            'frame_reference_epoch' => null,
10947
        ],
10948
        'urn:ogc:def:datum:EPSG::5192' => [
10949
            'name' => 'Martinique 1955',
10950
            'type' => 'vertical',
10951
            'ellipsoid' => null,
10952
            'prime_meridian' => null,
10953
            'conventional_rs' => null,
10954
            'frame_reference_epoch' => null,
10955
        ],
10956
        'urn:ogc:def:datum:EPSG::5193' => [
10957
            'name' => 'Guadeloupe 1951',
10958
            'type' => 'vertical',
10959
            'ellipsoid' => null,
10960
            'prime_meridian' => null,
10961
            'conventional_rs' => null,
10962
            'frame_reference_epoch' => null,
10963
        ],
10964
        'urn:ogc:def:datum:EPSG::5194' => [
10965
            'name' => 'Lagos 1955',
10966
            'type' => 'vertical',
10967
            'ellipsoid' => null,
10968
            'prime_meridian' => null,
10969
            'conventional_rs' => null,
10970
            'frame_reference_epoch' => null,
10971
        ],
10972
        'urn:ogc:def:datum:EPSG::5195' => [
10973
            'name' => 'Nivellement General de Polynesie Francaise',
10974
            'type' => 'vertical',
10975
            'ellipsoid' => null,
10976
            'prime_meridian' => null,
10977
            'conventional_rs' => null,
10978
            'frame_reference_epoch' => null,
10979
        ],
10980
        'urn:ogc:def:datum:EPSG::5196' => [
10981
            'name' => 'IGN 1966',
10982
            'type' => 'vertical',
10983
            'ellipsoid' => null,
10984
            'prime_meridian' => null,
10985
            'conventional_rs' => null,
10986
            'frame_reference_epoch' => null,
10987
        ],
10988
        'urn:ogc:def:datum:EPSG::5197' => [
10989
            'name' => 'Moorea SAU 1981',
10990
            'type' => 'vertical',
10991
            'ellipsoid' => null,
10992
            'prime_meridian' => null,
10993
            'conventional_rs' => null,
10994
            'frame_reference_epoch' => null,
10995
        ],
10996
        'urn:ogc:def:datum:EPSG::5198' => [
10997
            'name' => 'Raiatea SAU 2001',
10998
            'type' => 'vertical',
10999
            'ellipsoid' => null,
11000
            'prime_meridian' => null,
11001
            'conventional_rs' => null,
11002
            'frame_reference_epoch' => null,
11003
        ],
11004
        'urn:ogc:def:datum:EPSG::5199' => [
11005
            'name' => 'Maupiti SAU 2001',
11006
            'type' => 'vertical',
11007
            'ellipsoid' => null,
11008
            'prime_meridian' => null,
11009
            'conventional_rs' => null,
11010
            'frame_reference_epoch' => null,
11011
        ],
11012
        'urn:ogc:def:datum:EPSG::5200' => [
11013
            'name' => 'Huahine SAU 2001',
11014
            'type' => 'vertical',
11015
            'ellipsoid' => null,
11016
            'prime_meridian' => null,
11017
            'conventional_rs' => null,
11018
            'frame_reference_epoch' => null,
11019
        ],
11020
        'urn:ogc:def:datum:EPSG::5201' => [
11021
            'name' => 'Tahaa SAU 2001',
11022
            'type' => 'vertical',
11023
            'ellipsoid' => null,
11024
            'prime_meridian' => null,
11025
            'conventional_rs' => null,
11026
            'frame_reference_epoch' => null,
11027
        ],
11028
        'urn:ogc:def:datum:EPSG::5202' => [
11029
            'name' => 'Bora Bora SAU 2001',
11030
            'type' => 'vertical',
11031
            'ellipsoid' => null,
11032
            'prime_meridian' => null,
11033
            'conventional_rs' => null,
11034
            'frame_reference_epoch' => null,
11035
        ],
11036
        'urn:ogc:def:datum:EPSG::5203' => [
11037
            'name' => 'EGM84 geoid',
11038
            'type' => 'vertical',
11039
            'ellipsoid' => null,
11040
            'prime_meridian' => null,
11041
            'conventional_rs' => null,
11042
            'frame_reference_epoch' => null,
11043
        ],
11044
        'urn:ogc:def:datum:EPSG::5204' => [
11045
            'name' => 'International Great Lakes Datum 1955',
11046
            'type' => 'vertical',
11047
            'ellipsoid' => null,
11048
            'prime_meridian' => null,
11049
            'conventional_rs' => null,
11050
            'frame_reference_epoch' => null,
11051
        ],
11052
        'urn:ogc:def:datum:EPSG::5205' => [
11053
            'name' => 'International Great Lakes Datum 1985',
11054
            'type' => 'vertical',
11055
            'ellipsoid' => null,
11056
            'prime_meridian' => null,
11057
            'conventional_rs' => null,
11058
            'frame_reference_epoch' => null,
11059
        ],
11060
        'urn:ogc:def:datum:EPSG::5206' => [
11061
            'name' => 'Dansk Vertikal Reference 1990',
11062
            'type' => 'vertical',
11063
            'ellipsoid' => null,
11064
            'prime_meridian' => null,
11065
            'conventional_rs' => null,
11066
            'frame_reference_epoch' => null,
11067
        ],
11068
        'urn:ogc:def:datum:EPSG::5207' => [
11069
            'name' => 'Croatian Vertical Reference Datum 1971',
11070
            'type' => 'vertical',
11071
            'ellipsoid' => null,
11072
            'prime_meridian' => null,
11073
            'conventional_rs' => null,
11074
            'frame_reference_epoch' => null,
11075
        ],
11076
        'urn:ogc:def:datum:EPSG::5208' => [
11077
            'name' => 'Rikets hojdsystem 2000',
11078
            'type' => 'vertical',
11079
            'ellipsoid' => null,
11080
            'prime_meridian' => null,
11081
            'conventional_rs' => null,
11082
            'frame_reference_epoch' => 2000.0,
11083
        ],
11084
        'urn:ogc:def:datum:EPSG::5209' => [
11085
            'name' => 'Rikets hojdsystem 1900',
11086
            'type' => 'vertical',
11087
            'ellipsoid' => null,
11088
            'prime_meridian' => null,
11089
            'conventional_rs' => null,
11090
            'frame_reference_epoch' => null,
11091
        ],
11092
        'urn:ogc:def:datum:EPSG::5210' => [
11093
            'name' => 'IGN 1988 LS',
11094
            'type' => 'vertical',
11095
            'ellipsoid' => null,
11096
            'prime_meridian' => null,
11097
            'conventional_rs' => null,
11098
            'frame_reference_epoch' => null,
11099
        ],
11100
        'urn:ogc:def:datum:EPSG::5211' => [
11101
            'name' => 'IGN 1988 MG',
11102
            'type' => 'vertical',
11103
            'ellipsoid' => null,
11104
            'prime_meridian' => null,
11105
            'conventional_rs' => null,
11106
            'frame_reference_epoch' => null,
11107
        ],
11108
        'urn:ogc:def:datum:EPSG::5212' => [
11109
            'name' => 'IGN 1992 LD',
11110
            'type' => 'vertical',
11111
            'ellipsoid' => null,
11112
            'prime_meridian' => null,
11113
            'conventional_rs' => null,
11114
            'frame_reference_epoch' => null,
11115
        ],
11116
        'urn:ogc:def:datum:EPSG::5213' => [
11117
            'name' => 'IGN 1988 SB',
11118
            'type' => 'vertical',
11119
            'ellipsoid' => null,
11120
            'prime_meridian' => null,
11121
            'conventional_rs' => null,
11122
            'frame_reference_epoch' => null,
11123
        ],
11124
        'urn:ogc:def:datum:EPSG::5214' => [
11125
            'name' => 'IGN 1988 SM',
11126
            'type' => 'vertical',
11127
            'ellipsoid' => null,
11128
            'prime_meridian' => null,
11129
            'conventional_rs' => null,
11130
            'frame_reference_epoch' => null,
11131
        ],
11132
        'urn:ogc:def:datum:EPSG::5215' => [
11133
            'name' => 'European Vertical Reference Frame 2007',
11134
            'type' => 'vertical',
11135
            'ellipsoid' => null,
11136
            'prime_meridian' => null,
11137
            'conventional_rs' => null,
11138
            'frame_reference_epoch' => null,
11139
        ],
11140
        'urn:ogc:def:datum:EPSG::6001' => [
11141
            'name' => 'Not specified (based on Airy 1830 ellipsoid)',
11142
            'type' => 'geodetic',
11143
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001',
11144
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11145
            'conventional_rs' => null,
11146
            'frame_reference_epoch' => null,
11147
        ],
11148
        'urn:ogc:def:datum:EPSG::6002' => [
11149
            'name' => 'Not specified (based on Airy Modified 1849 ellipsoid)',
11150
            'type' => 'geodetic',
11151
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7002',
11152
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11153
            'conventional_rs' => null,
11154
            'frame_reference_epoch' => null,
11155
        ],
11156
        'urn:ogc:def:datum:EPSG::6003' => [
11157
            'name' => 'Not specified (based on Australian National Spheroid)',
11158
            'type' => 'geodetic',
11159
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7003',
11160
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11161
            'conventional_rs' => null,
11162
            'frame_reference_epoch' => null,
11163
        ],
11164
        'urn:ogc:def:datum:EPSG::6004' => [
11165
            'name' => 'Not specified (based on Bessel 1841 ellipsoid)',
11166
            'type' => 'geodetic',
11167
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
11168
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11169
            'conventional_rs' => null,
11170
            'frame_reference_epoch' => null,
11171
        ],
11172
        'urn:ogc:def:datum:EPSG::6005' => [
11173
            'name' => 'Not specified (based on Bessel Modified ellipsoid)',
11174
            'type' => 'geodetic',
11175
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7005',
11176
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11177
            'conventional_rs' => null,
11178
            'frame_reference_epoch' => null,
11179
        ],
11180
        'urn:ogc:def:datum:EPSG::6006' => [
11181
            'name' => 'Not specified (based on Bessel Namibia ellipsoid)',
11182
            'type' => 'geodetic',
11183
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7046',
11184
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11185
            'conventional_rs' => null,
11186
            'frame_reference_epoch' => null,
11187
        ],
11188
        'urn:ogc:def:datum:EPSG::6007' => [
11189
            'name' => 'Not specified (based on Clarke 1858 ellipsoid)',
11190
            'type' => 'geodetic',
11191
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007',
11192
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11193
            'conventional_rs' => null,
11194
            'frame_reference_epoch' => null,
11195
        ],
11196
        'urn:ogc:def:datum:EPSG::6008' => [
11197
            'name' => 'Not specified (based on Clarke 1866 ellipsoid)',
11198
            'type' => 'geodetic',
11199
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11200
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11201
            'conventional_rs' => null,
11202
            'frame_reference_epoch' => null,
11203
        ],
11204
        'urn:ogc:def:datum:EPSG::6010' => [
11205
            'name' => 'Not specified (based on Clarke 1880 (Benoit) ellipsoid)',
11206
            'type' => 'geodetic',
11207
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7010',
11208
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11209
            'conventional_rs' => null,
11210
            'frame_reference_epoch' => null,
11211
        ],
11212
        'urn:ogc:def:datum:EPSG::6011' => [
11213
            'name' => 'Not specified (based on Clarke 1880 (IGN) ellipsoid)',
11214
            'type' => 'geodetic',
11215
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
11216
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11217
            'conventional_rs' => null,
11218
            'frame_reference_epoch' => null,
11219
        ],
11220
        'urn:ogc:def:datum:EPSG::6012' => [
11221
            'name' => 'Not specified (based on Clarke 1880 (RGS) ellipsoid)',
11222
            'type' => 'geodetic',
11223
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11224
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11225
            'conventional_rs' => null,
11226
            'frame_reference_epoch' => null,
11227
        ],
11228
        'urn:ogc:def:datum:EPSG::6013' => [
11229
            'name' => 'Not specified (based on Clarke 1880 (Arc) ellipsoid)',
11230
            'type' => 'geodetic',
11231
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7013',
11232
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11233
            'conventional_rs' => null,
11234
            'frame_reference_epoch' => null,
11235
        ],
11236
        'urn:ogc:def:datum:EPSG::6014' => [
11237
            'name' => 'Not specified (based on Clarke 1880 (SGA 1922) ellipsoid)',
11238
            'type' => 'geodetic',
11239
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7014',
11240
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11241
            'conventional_rs' => null,
11242
            'frame_reference_epoch' => null,
11243
        ],
11244
        'urn:ogc:def:datum:EPSG::6015' => [
11245
            'name' => 'Not specified (based on Everest 1830 (1937 Adjustment) ellipsoid)',
11246
            'type' => 'geodetic',
11247
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
11248
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11249
            'conventional_rs' => null,
11250
            'frame_reference_epoch' => null,
11251
        ],
11252
        'urn:ogc:def:datum:EPSG::6016' => [
11253
            'name' => 'Not specified (based on Everest 1830 (1967 Definition) ellipsoid)',
11254
            'type' => 'geodetic',
11255
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7016',
11256
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11257
            'conventional_rs' => null,
11258
            'frame_reference_epoch' => null,
11259
        ],
11260
        'urn:ogc:def:datum:EPSG::6018' => [
11261
            'name' => 'Not specified (based on Everest 1830 Modified ellipsoid)',
11262
            'type' => 'geodetic',
11263
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7018',
11264
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11265
            'conventional_rs' => null,
11266
            'frame_reference_epoch' => null,
11267
        ],
11268
        'urn:ogc:def:datum:EPSG::6019' => [
11269
            'name' => 'Not specified (based on GRS 1980 ellipsoid)',
11270
            'type' => 'geodetic',
11271
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11272
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11273
            'conventional_rs' => null,
11274
            'frame_reference_epoch' => null,
11275
        ],
11276
        'urn:ogc:def:datum:EPSG::6020' => [
11277
            'name' => 'Not specified (based on Helmert 1906 ellipsoid)',
11278
            'type' => 'geodetic',
11279
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020',
11280
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11281
            'conventional_rs' => null,
11282
            'frame_reference_epoch' => null,
11283
        ],
11284
        'urn:ogc:def:datum:EPSG::6021' => [
11285
            'name' => 'Not specified (based on Indonesian National Spheroid)',
11286
            'type' => 'geodetic',
11287
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7021',
11288
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11289
            'conventional_rs' => null,
11290
            'frame_reference_epoch' => null,
11291
        ],
11292
        'urn:ogc:def:datum:EPSG::6022' => [
11293
            'name' => 'Not specified (based on International 1924 ellipsoid)',
11294
            'type' => 'geodetic',
11295
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11296
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11297
            'conventional_rs' => null,
11298
            'frame_reference_epoch' => null,
11299
        ],
11300
        'urn:ogc:def:datum:EPSG::6024' => [
11301
            'name' => 'Not specified (based on Krassowsky 1940 ellipsoid)',
11302
            'type' => 'geodetic',
11303
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
11304
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11305
            'conventional_rs' => null,
11306
            'frame_reference_epoch' => null,
11307
        ],
11308
        'urn:ogc:def:datum:EPSG::6025' => [
11309
            'name' => 'Not specified (based on NWL 9D ellipsoid)',
11310
            'type' => 'geodetic',
11311
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7025',
11312
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11313
            'conventional_rs' => null,
11314
            'frame_reference_epoch' => null,
11315
        ],
11316
        'urn:ogc:def:datum:EPSG::6027' => [
11317
            'name' => 'Not specified (based on Plessis 1817 ellipsoid)',
11318
            'type' => 'geodetic',
11319
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7027',
11320
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11321
            'conventional_rs' => null,
11322
            'frame_reference_epoch' => null,
11323
        ],
11324
        'urn:ogc:def:datum:EPSG::6028' => [
11325
            'name' => 'Not specified (based on Struve 1860 ellipsoid)',
11326
            'type' => 'geodetic',
11327
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7028',
11328
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11329
            'conventional_rs' => null,
11330
            'frame_reference_epoch' => null,
11331
        ],
11332
        'urn:ogc:def:datum:EPSG::6029' => [
11333
            'name' => 'Not specified (based on War Office ellipsoid)',
11334
            'type' => 'geodetic',
11335
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7029',
11336
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11337
            'conventional_rs' => null,
11338
            'frame_reference_epoch' => null,
11339
        ],
11340
        'urn:ogc:def:datum:EPSG::6030' => [
11341
            'name' => 'Not specified (based on WGS 84 ellipsoid)',
11342
            'type' => 'geodetic',
11343
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
11344
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11345
            'conventional_rs' => null,
11346
            'frame_reference_epoch' => null,
11347
        ],
11348
        'urn:ogc:def:datum:EPSG::6031' => [
11349
            'name' => 'Not specified (based on GEM 10C ellipsoid)',
11350
            'type' => 'geodetic',
11351
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7031',
11352
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11353
            'conventional_rs' => null,
11354
            'frame_reference_epoch' => null,
11355
        ],
11356
        'urn:ogc:def:datum:EPSG::6032' => [
11357
            'name' => 'Not specified (based on OSU86F ellipsoid)',
11358
            'type' => 'geodetic',
11359
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7032',
11360
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11361
            'conventional_rs' => null,
11362
            'frame_reference_epoch' => null,
11363
        ],
11364
        'urn:ogc:def:datum:EPSG::6033' => [
11365
            'name' => 'Not specified (based on OSU91A ellipsoid)',
11366
            'type' => 'geodetic',
11367
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7033',
11368
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11369
            'conventional_rs' => null,
11370
            'frame_reference_epoch' => null,
11371
        ],
11372
        'urn:ogc:def:datum:EPSG::6034' => [
11373
            'name' => 'Not specified (based on Clarke 1880 ellipsoid)',
11374
            'type' => 'geodetic',
11375
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7034',
11376
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11377
            'conventional_rs' => null,
11378
            'frame_reference_epoch' => null,
11379
        ],
11380
        'urn:ogc:def:datum:EPSG::6036' => [
11381
            'name' => 'Not specified (based on GRS 1967 ellipsoid)',
11382
            'type' => 'geodetic',
11383
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7036',
11384
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11385
            'conventional_rs' => null,
11386
            'frame_reference_epoch' => null,
11387
        ],
11388
        'urn:ogc:def:datum:EPSG::6041' => [
11389
            'name' => 'Not specified (based on Average Terrestrial System 1977 ellipsoid)',
11390
            'type' => 'geodetic',
11391
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7041',
11392
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11393
            'conventional_rs' => null,
11394
            'frame_reference_epoch' => null,
11395
        ],
11396
        'urn:ogc:def:datum:EPSG::6042' => [
11397
            'name' => 'Not specified (based on Everest (1830 Definition) ellipsoid)',
11398
            'type' => 'geodetic',
11399
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7042',
11400
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11401
            'conventional_rs' => null,
11402
            'frame_reference_epoch' => null,
11403
        ],
11404
        'urn:ogc:def:datum:EPSG::6043' => [
11405
            'name' => 'Not specified (based on WGS 72 ellipsoid)',
11406
            'type' => 'geodetic',
11407
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7043',
11408
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11409
            'conventional_rs' => null,
11410
            'frame_reference_epoch' => null,
11411
        ],
11412
        'urn:ogc:def:datum:EPSG::6044' => [
11413
            'name' => 'Not specified (based on Everest 1830 (1962 Definition) ellipsoid)',
11414
            'type' => 'geodetic',
11415
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7044',
11416
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11417
            'conventional_rs' => null,
11418
            'frame_reference_epoch' => null,
11419
        ],
11420
        'urn:ogc:def:datum:EPSG::6045' => [
11421
            'name' => 'Not specified (based on Everest 1830 (1975 Definition) ellipsoid)',
11422
            'type' => 'geodetic',
11423
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7045',
11424
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11425
            'conventional_rs' => null,
11426
            'frame_reference_epoch' => null,
11427
        ],
11428
        'urn:ogc:def:datum:EPSG::6047' => [
11429
            'name' => 'Not specified (based on GRS 1980 Authalic Sphere)',
11430
            'type' => 'geodetic',
11431
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7048',
11432
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11433
            'conventional_rs' => null,
11434
            'frame_reference_epoch' => null,
11435
        ],
11436
        'urn:ogc:def:datum:EPSG::6052' => [
11437
            'name' => 'Not specified (based on Clarke 1866 Authalic Sphere)',
11438
            'type' => 'geodetic',
11439
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7052',
11440
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11441
            'conventional_rs' => null,
11442
            'frame_reference_epoch' => null,
11443
        ],
11444
        'urn:ogc:def:datum:EPSG::6053' => [
11445
            'name' => 'Not specified (based on International 1924 Authalic Sphere)',
11446
            'type' => 'geodetic',
11447
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7057',
11448
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11449
            'conventional_rs' => null,
11450
            'frame_reference_epoch' => null,
11451
        ],
11452
        'urn:ogc:def:datum:EPSG::6054' => [
11453
            'name' => 'Not specified (based on Hughes 1980 ellipsoid)',
11454
            'type' => 'geodetic',
11455
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7058',
11456
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11457
            'conventional_rs' => null,
11458
            'frame_reference_epoch' => null,
11459
        ],
11460
        'urn:ogc:def:datum:EPSG::6120' => [
11461
            'name' => 'Greek',
11462
            'type' => 'geodetic',
11463
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
11464
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11465
            'conventional_rs' => null,
11466
            'frame_reference_epoch' => null,
11467
        ],
11468
        'urn:ogc:def:datum:EPSG::6121' => [
11469
            'name' => 'Greek Geodetic Reference System 1987',
11470
            'type' => 'geodetic',
11471
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11472
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11473
            'conventional_rs' => null,
11474
            'frame_reference_epoch' => null,
11475
        ],
11476
        'urn:ogc:def:datum:EPSG::6122' => [
11477
            'name' => 'Average Terrestrial System 1977',
11478
            'type' => 'geodetic',
11479
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7041',
11480
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11481
            'conventional_rs' => null,
11482
            'frame_reference_epoch' => null,
11483
        ],
11484
        'urn:ogc:def:datum:EPSG::6123' => [
11485
            'name' => 'Kartastokoordinaattijarjestelma (1966)',
11486
            'type' => 'geodetic',
11487
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11488
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11489
            'conventional_rs' => null,
11490
            'frame_reference_epoch' => null,
11491
        ],
11492
        'urn:ogc:def:datum:EPSG::6124' => [
11493
            'name' => 'Rikets koordinatsystem 1990',
11494
            'type' => 'geodetic',
11495
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
11496
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11497
            'conventional_rs' => null,
11498
            'frame_reference_epoch' => null,
11499
        ],
11500
        'urn:ogc:def:datum:EPSG::6126' => [
11501
            'name' => 'Lithuania 1994 (ETRS89)',
11502
            'type' => 'geodetic',
11503
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11504
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11505
            'conventional_rs' => null,
11506
            'frame_reference_epoch' => null,
11507
        ],
11508
        'urn:ogc:def:datum:EPSG::6127' => [
11509
            'name' => 'Tete',
11510
            'type' => 'geodetic',
11511
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11512
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11513
            'conventional_rs' => null,
11514
            'frame_reference_epoch' => null,
11515
        ],
11516
        'urn:ogc:def:datum:EPSG::6128' => [
11517
            'name' => 'Madzansua',
11518
            'type' => 'geodetic',
11519
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11520
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11521
            'conventional_rs' => null,
11522
            'frame_reference_epoch' => null,
11523
        ],
11524
        'urn:ogc:def:datum:EPSG::6129' => [
11525
            'name' => 'Observatario',
11526
            'type' => 'geodetic',
11527
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11528
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11529
            'conventional_rs' => null,
11530
            'frame_reference_epoch' => null,
11531
        ],
11532
        'urn:ogc:def:datum:EPSG::6130' => [
11533
            'name' => 'Moznet (ITRF94)',
11534
            'type' => 'geodetic',
11535
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
11536
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11537
            'conventional_rs' => null,
11538
            'frame_reference_epoch' => null,
11539
        ],
11540
        'urn:ogc:def:datum:EPSG::6131' => [
11541
            'name' => 'Indian 1960',
11542
            'type' => 'geodetic',
11543
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
11544
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11545
            'conventional_rs' => null,
11546
            'frame_reference_epoch' => null,
11547
        ],
11548
        'urn:ogc:def:datum:EPSG::6132' => [
11549
            'name' => 'Final Datum 1958',
11550
            'type' => 'geodetic',
11551
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11552
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11553
            'conventional_rs' => null,
11554
            'frame_reference_epoch' => null,
11555
        ],
11556
        'urn:ogc:def:datum:EPSG::6133' => [
11557
            'name' => 'Estonia 1992',
11558
            'type' => 'geodetic',
11559
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11560
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11561
            'conventional_rs' => null,
11562
            'frame_reference_epoch' => null,
11563
        ],
11564
        'urn:ogc:def:datum:EPSG::6134' => [
11565
            'name' => 'PDO Survey Datum 1993',
11566
            'type' => 'geodetic',
11567
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11568
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11569
            'conventional_rs' => null,
11570
            'frame_reference_epoch' => null,
11571
        ],
11572
        'urn:ogc:def:datum:EPSG::6135' => [
11573
            'name' => 'Old Hawaiian',
11574
            'type' => 'geodetic',
11575
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11576
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11577
            'conventional_rs' => null,
11578
            'frame_reference_epoch' => null,
11579
        ],
11580
        'urn:ogc:def:datum:EPSG::6136' => [
11581
            'name' => 'St. Lawrence Island',
11582
            'type' => 'geodetic',
11583
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11584
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11585
            'conventional_rs' => null,
11586
            'frame_reference_epoch' => null,
11587
        ],
11588
        'urn:ogc:def:datum:EPSG::6137' => [
11589
            'name' => 'St. Paul Island',
11590
            'type' => 'geodetic',
11591
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11592
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11593
            'conventional_rs' => null,
11594
            'frame_reference_epoch' => null,
11595
        ],
11596
        'urn:ogc:def:datum:EPSG::6138' => [
11597
            'name' => 'St. George Island',
11598
            'type' => 'geodetic',
11599
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11600
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11601
            'conventional_rs' => null,
11602
            'frame_reference_epoch' => null,
11603
        ],
11604
        'urn:ogc:def:datum:EPSG::6139' => [
11605
            'name' => 'Puerto Rico',
11606
            'type' => 'geodetic',
11607
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11608
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11609
            'conventional_rs' => null,
11610
            'frame_reference_epoch' => null,
11611
        ],
11612
        'urn:ogc:def:datum:EPSG::6140' => [
11613
            'name' => 'NAD83 Canadian Spatial Reference System',
11614
            'type' => 'geodetic',
11615
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11616
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11617
            'conventional_rs' => null,
11618
            'frame_reference_epoch' => null,
11619
        ],
11620
        'urn:ogc:def:datum:EPSG::6141' => [
11621
            'name' => 'Israel 1993',
11622
            'type' => 'geodetic',
11623
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11624
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11625
            'conventional_rs' => null,
11626
            'frame_reference_epoch' => null,
11627
        ],
11628
        'urn:ogc:def:datum:EPSG::6142' => [
11629
            'name' => 'Locodjo 1965',
11630
            'type' => 'geodetic',
11631
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11632
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11633
            'conventional_rs' => null,
11634
            'frame_reference_epoch' => null,
11635
        ],
11636
        'urn:ogc:def:datum:EPSG::6143' => [
11637
            'name' => 'Abidjan 1987',
11638
            'type' => 'geodetic',
11639
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11640
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11641
            'conventional_rs' => null,
11642
            'frame_reference_epoch' => null,
11643
        ],
11644
        'urn:ogc:def:datum:EPSG::6144' => [
11645
            'name' => 'Kalianpur 1937',
11646
            'type' => 'geodetic',
11647
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
11648
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11649
            'conventional_rs' => null,
11650
            'frame_reference_epoch' => null,
11651
        ],
11652
        'urn:ogc:def:datum:EPSG::6145' => [
11653
            'name' => 'Kalianpur 1962',
11654
            'type' => 'geodetic',
11655
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7044',
11656
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11657
            'conventional_rs' => null,
11658
            'frame_reference_epoch' => null,
11659
        ],
11660
        'urn:ogc:def:datum:EPSG::6146' => [
11661
            'name' => 'Kalianpur 1975',
11662
            'type' => 'geodetic',
11663
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7045',
11664
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11665
            'conventional_rs' => null,
11666
            'frame_reference_epoch' => null,
11667
        ],
11668
        'urn:ogc:def:datum:EPSG::6147' => [
11669
            'name' => 'Hanoi 1972',
11670
            'type' => 'geodetic',
11671
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
11672
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11673
            'conventional_rs' => null,
11674
            'frame_reference_epoch' => null,
11675
        ],
11676
        'urn:ogc:def:datum:EPSG::6148' => [
11677
            'name' => 'Hartebeesthoek94',
11678
            'type' => 'geodetic',
11679
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
11680
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11681
            'conventional_rs' => null,
11682
            'frame_reference_epoch' => null,
11683
        ],
11684
        'urn:ogc:def:datum:EPSG::6149' => [
11685
            'name' => 'CH1903',
11686
            'type' => 'geodetic',
11687
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
11688
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11689
            'conventional_rs' => null,
11690
            'frame_reference_epoch' => null,
11691
        ],
11692
        'urn:ogc:def:datum:EPSG::6150' => [
11693
            'name' => 'CH1903+',
11694
            'type' => 'geodetic',
11695
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
11696
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11697
            'conventional_rs' => null,
11698
            'frame_reference_epoch' => null,
11699
        ],
11700
        'urn:ogc:def:datum:EPSG::6151' => [
11701
            'name' => 'Swiss Terrestrial Reference System 1995',
11702
            'type' => 'geodetic',
11703
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11704
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11705
            'conventional_rs' => null,
11706
            'frame_reference_epoch' => null,
11707
        ],
11708
        'urn:ogc:def:datum:EPSG::6152' => [
11709
            'name' => 'NAD83 (High Accuracy Reference Network)',
11710
            'type' => 'geodetic',
11711
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11712
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11713
            'conventional_rs' => null,
11714
            'frame_reference_epoch' => null,
11715
        ],
11716
        'urn:ogc:def:datum:EPSG::6153' => [
11717
            'name' => 'Rassadiran',
11718
            'type' => 'geodetic',
11719
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11720
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11721
            'conventional_rs' => null,
11722
            'frame_reference_epoch' => null,
11723
        ],
11724
        'urn:ogc:def:datum:EPSG::6154' => [
11725
            'name' => 'European Datum 1950(1977)',
11726
            'type' => 'geodetic',
11727
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11728
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11729
            'conventional_rs' => null,
11730
            'frame_reference_epoch' => null,
11731
        ],
11732
        'urn:ogc:def:datum:EPSG::6155' => [
11733
            'name' => 'Dabola 1981',
11734
            'type' => 'geodetic',
11735
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
11736
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11737
            'conventional_rs' => null,
11738
            'frame_reference_epoch' => null,
11739
        ],
11740
        'urn:ogc:def:datum:EPSG::6156' => [
11741
            'name' => 'System of the Unified Trigonometrical Cadastral Network',
11742
            'type' => 'geodetic',
11743
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
11744
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11745
            'conventional_rs' => null,
11746
            'frame_reference_epoch' => null,
11747
        ],
11748
        'urn:ogc:def:datum:EPSG::6157' => [
11749
            'name' => 'Mount Dillon',
11750
            'type' => 'geodetic',
11751
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007',
11752
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11753
            'conventional_rs' => null,
11754
            'frame_reference_epoch' => null,
11755
        ],
11756
        'urn:ogc:def:datum:EPSG::6158' => [
11757
            'name' => 'Naparima 1955',
11758
            'type' => 'geodetic',
11759
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11760
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11761
            'conventional_rs' => null,
11762
            'frame_reference_epoch' => null,
11763
        ],
11764
        'urn:ogc:def:datum:EPSG::6159' => [
11765
            'name' => 'European Libyan Datum 1979',
11766
            'type' => 'geodetic',
11767
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11768
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11769
            'conventional_rs' => null,
11770
            'frame_reference_epoch' => null,
11771
        ],
11772
        'urn:ogc:def:datum:EPSG::6160' => [
11773
            'name' => 'Chos Malal 1914',
11774
            'type' => 'geodetic',
11775
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11776
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11777
            'conventional_rs' => null,
11778
            'frame_reference_epoch' => null,
11779
        ],
11780
        'urn:ogc:def:datum:EPSG::6161' => [
11781
            'name' => 'Pampa del Castillo',
11782
            'type' => 'geodetic',
11783
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11784
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11785
            'conventional_rs' => null,
11786
            'frame_reference_epoch' => null,
11787
        ],
11788
        'urn:ogc:def:datum:EPSG::6162' => [
11789
            'name' => 'Korean Datum 1985',
11790
            'type' => 'geodetic',
11791
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
11792
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11793
            'conventional_rs' => null,
11794
            'frame_reference_epoch' => null,
11795
        ],
11796
        'urn:ogc:def:datum:EPSG::6163' => [
11797
            'name' => 'Yemen National Geodetic Network 1996',
11798
            'type' => 'geodetic',
11799
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
11800
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11801
            'conventional_rs' => null,
11802
            'frame_reference_epoch' => null,
11803
        ],
11804
        'urn:ogc:def:datum:EPSG::6164' => [
11805
            'name' => 'South Yemen',
11806
            'type' => 'geodetic',
11807
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
11808
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11809
            'conventional_rs' => null,
11810
            'frame_reference_epoch' => null,
11811
        ],
11812
        'urn:ogc:def:datum:EPSG::6165' => [
11813
            'name' => 'Bissau',
11814
            'type' => 'geodetic',
11815
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11816
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11817
            'conventional_rs' => null,
11818
            'frame_reference_epoch' => null,
11819
        ],
11820
        'urn:ogc:def:datum:EPSG::6166' => [
11821
            'name' => 'Korean Datum 1995',
11822
            'type' => 'geodetic',
11823
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
11824
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11825
            'conventional_rs' => null,
11826
            'frame_reference_epoch' => null,
11827
        ],
11828
        'urn:ogc:def:datum:EPSG::6167' => [
11829
            'name' => 'New Zealand Geodetic Datum 2000',
11830
            'type' => 'geodetic',
11831
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11832
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11833
            'conventional_rs' => null,
11834
            'frame_reference_epoch' => null,
11835
        ],
11836
        'urn:ogc:def:datum:EPSG::6168' => [
11837
            'name' => 'Accra',
11838
            'type' => 'geodetic',
11839
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7029',
11840
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11841
            'conventional_rs' => null,
11842
            'frame_reference_epoch' => null,
11843
        ],
11844
        'urn:ogc:def:datum:EPSG::6169' => [
11845
            'name' => 'American Samoa 1962',
11846
            'type' => 'geodetic',
11847
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
11848
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11849
            'conventional_rs' => null,
11850
            'frame_reference_epoch' => null,
11851
        ],
11852
        'urn:ogc:def:datum:EPSG::6170' => [
11853
            'name' => 'Sistema de Referencia Geocentrico para America del Sur 1995',
11854
            'type' => 'geodetic',
11855
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11856
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11857
            'conventional_rs' => null,
11858
            'frame_reference_epoch' => null,
11859
        ],
11860
        'urn:ogc:def:datum:EPSG::6171' => [
11861
            'name' => 'Reseau Geodesique Francais 1993 v1',
11862
            'type' => 'geodetic',
11863
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11864
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11865
            'conventional_rs' => null,
11866
            'frame_reference_epoch' => null,
11867
        ],
11868
        'urn:ogc:def:datum:EPSG::6173' => [
11869
            'name' => 'IRENET95',
11870
            'type' => 'geodetic',
11871
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11872
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11873
            'conventional_rs' => null,
11874
            'frame_reference_epoch' => null,
11875
        ],
11876
        'urn:ogc:def:datum:EPSG::6174' => [
11877
            'name' => 'Sierra Leone Colony 1924',
11878
            'type' => 'geodetic',
11879
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7029',
11880
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11881
            'conventional_rs' => null,
11882
            'frame_reference_epoch' => null,
11883
        ],
11884
        'urn:ogc:def:datum:EPSG::6175' => [
11885
            'name' => 'Sierra Leone 1968',
11886
            'type' => 'geodetic',
11887
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
11888
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11889
            'conventional_rs' => null,
11890
            'frame_reference_epoch' => null,
11891
        ],
11892
        'urn:ogc:def:datum:EPSG::6176' => [
11893
            'name' => 'Australian Antarctic Datum 1998',
11894
            'type' => 'geodetic',
11895
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11896
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11897
            'conventional_rs' => null,
11898
            'frame_reference_epoch' => null,
11899
        ],
11900
        'urn:ogc:def:datum:EPSG::6178' => [
11901
            'name' => 'Pulkovo 1942(83)',
11902
            'type' => 'geodetic',
11903
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
11904
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11905
            'conventional_rs' => null,
11906
            'frame_reference_epoch' => null,
11907
        ],
11908
        'urn:ogc:def:datum:EPSG::6179' => [
11909
            'name' => 'Pulkovo 1942(58)',
11910
            'type' => 'geodetic',
11911
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
11912
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11913
            'conventional_rs' => null,
11914
            'frame_reference_epoch' => null,
11915
        ],
11916
        'urn:ogc:def:datum:EPSG::6180' => [
11917
            'name' => 'Estonia 1997',
11918
            'type' => 'geodetic',
11919
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11920
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11921
            'conventional_rs' => null,
11922
            'frame_reference_epoch' => null,
11923
        ],
11924
        'urn:ogc:def:datum:EPSG::6181' => [
11925
            'name' => 'Luxembourg Reference Frame',
11926
            'type' => 'geodetic',
11927
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11928
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11929
            'conventional_rs' => null,
11930
            'frame_reference_epoch' => null,
11931
        ],
11932
        'urn:ogc:def:datum:EPSG::6182' => [
11933
            'name' => 'Azores Occidental Islands 1939',
11934
            'type' => 'geodetic',
11935
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11936
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11937
            'conventional_rs' => null,
11938
            'frame_reference_epoch' => null,
11939
        ],
11940
        'urn:ogc:def:datum:EPSG::6183' => [
11941
            'name' => 'Azores Central Islands 1948',
11942
            'type' => 'geodetic',
11943
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11944
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11945
            'conventional_rs' => null,
11946
            'frame_reference_epoch' => null,
11947
        ],
11948
        'urn:ogc:def:datum:EPSG::6184' => [
11949
            'name' => 'Azores Oriental Islands 1940',
11950
            'type' => 'geodetic',
11951
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11952
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11953
            'conventional_rs' => null,
11954
            'frame_reference_epoch' => null,
11955
        ],
11956
        'urn:ogc:def:datum:EPSG::6188' => [
11957
            'name' => 'OSNI 1952',
11958
            'type' => 'geodetic',
11959
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001',
11960
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11961
            'conventional_rs' => null,
11962
            'frame_reference_epoch' => null,
11963
        ],
11964
        'urn:ogc:def:datum:EPSG::6189' => [
11965
            'name' => 'Red Geodesica Venezolana',
11966
            'type' => 'geodetic',
11967
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11968
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11969
            'conventional_rs' => null,
11970
            'frame_reference_epoch' => null,
11971
        ],
11972
        'urn:ogc:def:datum:EPSG::6190' => [
11973
            'name' => 'Posiciones Geodesicas Argentinas 1998',
11974
            'type' => 'geodetic',
11975
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
11976
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11977
            'conventional_rs' => null,
11978
            'frame_reference_epoch' => null,
11979
        ],
11980
        'urn:ogc:def:datum:EPSG::6191' => [
11981
            'name' => 'Albanian 1987',
11982
            'type' => 'geodetic',
11983
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
11984
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11985
            'conventional_rs' => null,
11986
            'frame_reference_epoch' => null,
11987
        ],
11988
        'urn:ogc:def:datum:EPSG::6192' => [
11989
            'name' => 'Douala 1948',
11990
            'type' => 'geodetic',
11991
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
11992
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
11993
            'conventional_rs' => null,
11994
            'frame_reference_epoch' => null,
11995
        ],
11996
        'urn:ogc:def:datum:EPSG::6193' => [
11997
            'name' => 'Manoca 1962',
11998
            'type' => 'geodetic',
11999
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12000
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12001
            'conventional_rs' => null,
12002
            'frame_reference_epoch' => null,
12003
        ],
12004
        'urn:ogc:def:datum:EPSG::6194' => [
12005
            'name' => 'Qornoq 1927',
12006
            'type' => 'geodetic',
12007
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12008
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12009
            'conventional_rs' => null,
12010
            'frame_reference_epoch' => null,
12011
        ],
12012
        'urn:ogc:def:datum:EPSG::6195' => [
12013
            'name' => 'Scoresbysund 1952',
12014
            'type' => 'geodetic',
12015
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12016
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12017
            'conventional_rs' => null,
12018
            'frame_reference_epoch' => null,
12019
        ],
12020
        'urn:ogc:def:datum:EPSG::6196' => [
12021
            'name' => 'Ammassalik 1958',
12022
            'type' => 'geodetic',
12023
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12024
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12025
            'conventional_rs' => null,
12026
            'frame_reference_epoch' => null,
12027
        ],
12028
        'urn:ogc:def:datum:EPSG::6197' => [
12029
            'name' => 'Garoua',
12030
            'type' => 'geodetic',
12031
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12032
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12033
            'conventional_rs' => null,
12034
            'frame_reference_epoch' => null,
12035
        ],
12036
        'urn:ogc:def:datum:EPSG::6198' => [
12037
            'name' => 'Kousseri',
12038
            'type' => 'geodetic',
12039
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12040
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12041
            'conventional_rs' => null,
12042
            'frame_reference_epoch' => null,
12043
        ],
12044
        'urn:ogc:def:datum:EPSG::6199' => [
12045
            'name' => 'Egypt 1930',
12046
            'type' => 'geodetic',
12047
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12048
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12049
            'conventional_rs' => null,
12050
            'frame_reference_epoch' => null,
12051
        ],
12052
        'urn:ogc:def:datum:EPSG::6200' => [
12053
            'name' => 'Pulkovo 1995',
12054
            'type' => 'geodetic',
12055
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
12056
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12057
            'conventional_rs' => null,
12058
            'frame_reference_epoch' => null,
12059
        ],
12060
        'urn:ogc:def:datum:EPSG::6201' => [
12061
            'name' => 'Adindan',
12062
            'type' => 'geodetic',
12063
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12064
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12065
            'conventional_rs' => null,
12066
            'frame_reference_epoch' => null,
12067
        ],
12068
        'urn:ogc:def:datum:EPSG::6202' => [
12069
            'name' => 'Australian Geodetic Datum 1966',
12070
            'type' => 'geodetic',
12071
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7003',
12072
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12073
            'conventional_rs' => null,
12074
            'frame_reference_epoch' => null,
12075
        ],
12076
        'urn:ogc:def:datum:EPSG::6203' => [
12077
            'name' => 'Australian Geodetic Datum 1984',
12078
            'type' => 'geodetic',
12079
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7003',
12080
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12081
            'conventional_rs' => null,
12082
            'frame_reference_epoch' => null,
12083
        ],
12084
        'urn:ogc:def:datum:EPSG::6204' => [
12085
            'name' => 'Ain el Abd 1970',
12086
            'type' => 'geodetic',
12087
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12088
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12089
            'conventional_rs' => null,
12090
            'frame_reference_epoch' => null,
12091
        ],
12092
        'urn:ogc:def:datum:EPSG::6205' => [
12093
            'name' => 'Afgooye',
12094
            'type' => 'geodetic',
12095
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
12096
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12097
            'conventional_rs' => null,
12098
            'frame_reference_epoch' => null,
12099
        ],
12100
        'urn:ogc:def:datum:EPSG::6206' => [
12101
            'name' => 'Agadez',
12102
            'type' => 'geodetic',
12103
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12104
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12105
            'conventional_rs' => null,
12106
            'frame_reference_epoch' => null,
12107
        ],
12108
        'urn:ogc:def:datum:EPSG::6207' => [
12109
            'name' => 'Lisbon 1937',
12110
            'type' => 'geodetic',
12111
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12112
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12113
            'conventional_rs' => null,
12114
            'frame_reference_epoch' => null,
12115
        ],
12116
        'urn:ogc:def:datum:EPSG::6208' => [
12117
            'name' => 'Aratu',
12118
            'type' => 'geodetic',
12119
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12120
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12121
            'conventional_rs' => null,
12122
            'frame_reference_epoch' => null,
12123
        ],
12124
        'urn:ogc:def:datum:EPSG::6209' => [
12125
            'name' => 'Arc 1950',
12126
            'type' => 'geodetic',
12127
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7013',
12128
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12129
            'conventional_rs' => null,
12130
            'frame_reference_epoch' => null,
12131
        ],
12132
        'urn:ogc:def:datum:EPSG::6210' => [
12133
            'name' => 'Arc 1960',
12134
            'type' => 'geodetic',
12135
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12136
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12137
            'conventional_rs' => null,
12138
            'frame_reference_epoch' => null,
12139
        ],
12140
        'urn:ogc:def:datum:EPSG::6211' => [
12141
            'name' => 'Batavia',
12142
            'type' => 'geodetic',
12143
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12144
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12145
            'conventional_rs' => null,
12146
            'frame_reference_epoch' => null,
12147
        ],
12148
        'urn:ogc:def:datum:EPSG::6212' => [
12149
            'name' => 'Barbados 1938',
12150
            'type' => 'geodetic',
12151
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12152
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12153
            'conventional_rs' => null,
12154
            'frame_reference_epoch' => null,
12155
        ],
12156
        'urn:ogc:def:datum:EPSG::6213' => [
12157
            'name' => 'Beduaram',
12158
            'type' => 'geodetic',
12159
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12160
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12161
            'conventional_rs' => null,
12162
            'frame_reference_epoch' => null,
12163
        ],
12164
        'urn:ogc:def:datum:EPSG::6214' => [
12165
            'name' => 'Beijing 1954',
12166
            'type' => 'geodetic',
12167
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
12168
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12169
            'conventional_rs' => null,
12170
            'frame_reference_epoch' => null,
12171
        ],
12172
        'urn:ogc:def:datum:EPSG::6215' => [
12173
            'name' => 'Reseau National Belge 1950',
12174
            'type' => 'geodetic',
12175
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12176
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12177
            'conventional_rs' => null,
12178
            'frame_reference_epoch' => null,
12179
        ],
12180
        'urn:ogc:def:datum:EPSG::6216' => [
12181
            'name' => 'Bermuda 1957',
12182
            'type' => 'geodetic',
12183
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
12184
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12185
            'conventional_rs' => null,
12186
            'frame_reference_epoch' => null,
12187
        ],
12188
        'urn:ogc:def:datum:EPSG::6218' => [
12189
            'name' => 'Bogota 1975',
12190
            'type' => 'geodetic',
12191
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12192
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12193
            'conventional_rs' => null,
12194
            'frame_reference_epoch' => null,
12195
        ],
12196
        'urn:ogc:def:datum:EPSG::6219' => [
12197
            'name' => 'Bukit Rimpah',
12198
            'type' => 'geodetic',
12199
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12200
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12201
            'conventional_rs' => null,
12202
            'frame_reference_epoch' => null,
12203
        ],
12204
        'urn:ogc:def:datum:EPSG::6220' => [
12205
            'name' => 'Camacupa 1948',
12206
            'type' => 'geodetic',
12207
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12208
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12209
            'conventional_rs' => null,
12210
            'frame_reference_epoch' => null,
12211
        ],
12212
        'urn:ogc:def:datum:EPSG::6221' => [
12213
            'name' => 'Campo Inchauspe',
12214
            'type' => 'geodetic',
12215
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12216
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12217
            'conventional_rs' => null,
12218
            'frame_reference_epoch' => null,
12219
        ],
12220
        'urn:ogc:def:datum:EPSG::6222' => [
12221
            'name' => 'Cape',
12222
            'type' => 'geodetic',
12223
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7013',
12224
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12225
            'conventional_rs' => null,
12226
            'frame_reference_epoch' => null,
12227
        ],
12228
        'urn:ogc:def:datum:EPSG::6223' => [
12229
            'name' => 'Carthage',
12230
            'type' => 'geodetic',
12231
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12232
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12233
            'conventional_rs' => null,
12234
            'frame_reference_epoch' => null,
12235
        ],
12236
        'urn:ogc:def:datum:EPSG::6224' => [
12237
            'name' => 'Chua',
12238
            'type' => 'geodetic',
12239
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12240
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12241
            'conventional_rs' => null,
12242
            'frame_reference_epoch' => null,
12243
        ],
12244
        'urn:ogc:def:datum:EPSG::6225' => [
12245
            'name' => 'Corrego Alegre 1970-72',
12246
            'type' => 'geodetic',
12247
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12248
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12249
            'conventional_rs' => null,
12250
            'frame_reference_epoch' => null,
12251
        ],
12252
        'urn:ogc:def:datum:EPSG::6227' => [
12253
            'name' => 'Deir ez Zor',
12254
            'type' => 'geodetic',
12255
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12256
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12257
            'conventional_rs' => null,
12258
            'frame_reference_epoch' => null,
12259
        ],
12260
        'urn:ogc:def:datum:EPSG::6229' => [
12261
            'name' => 'Egypt 1907',
12262
            'type' => 'geodetic',
12263
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020',
12264
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12265
            'conventional_rs' => null,
12266
            'frame_reference_epoch' => null,
12267
        ],
12268
        'urn:ogc:def:datum:EPSG::6230' => [
12269
            'name' => 'European Datum 1950',
12270
            'type' => 'geodetic',
12271
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12272
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12273
            'conventional_rs' => null,
12274
            'frame_reference_epoch' => null,
12275
        ],
12276
        'urn:ogc:def:datum:EPSG::6231' => [
12277
            'name' => 'European Datum 1987',
12278
            'type' => 'geodetic',
12279
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12280
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12281
            'conventional_rs' => null,
12282
            'frame_reference_epoch' => null,
12283
        ],
12284
        'urn:ogc:def:datum:EPSG::6232' => [
12285
            'name' => 'Fahud',
12286
            'type' => 'geodetic',
12287
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12288
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12289
            'conventional_rs' => null,
12290
            'frame_reference_epoch' => null,
12291
        ],
12292
        'urn:ogc:def:datum:EPSG::6236' => [
12293
            'name' => 'Hu Tzu Shan 1950',
12294
            'type' => 'geodetic',
12295
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12296
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12297
            'conventional_rs' => null,
12298
            'frame_reference_epoch' => null,
12299
        ],
12300
        'urn:ogc:def:datum:EPSG::6237' => [
12301
            'name' => 'Hungarian Datum 1972',
12302
            'type' => 'geodetic',
12303
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7036',
12304
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12305
            'conventional_rs' => null,
12306
            'frame_reference_epoch' => null,
12307
        ],
12308
        'urn:ogc:def:datum:EPSG::6238' => [
12309
            'name' => 'Indonesian Datum 1974',
12310
            'type' => 'geodetic',
12311
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7021',
12312
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12313
            'conventional_rs' => null,
12314
            'frame_reference_epoch' => null,
12315
        ],
12316
        'urn:ogc:def:datum:EPSG::6239' => [
12317
            'name' => 'Indian 1954',
12318
            'type' => 'geodetic',
12319
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
12320
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12321
            'conventional_rs' => null,
12322
            'frame_reference_epoch' => null,
12323
        ],
12324
        'urn:ogc:def:datum:EPSG::6240' => [
12325
            'name' => 'Indian 1975',
12326
            'type' => 'geodetic',
12327
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
12328
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12329
            'conventional_rs' => null,
12330
            'frame_reference_epoch' => null,
12331
        ],
12332
        'urn:ogc:def:datum:EPSG::6241' => [
12333
            'name' => 'Jamaica 1875',
12334
            'type' => 'geodetic',
12335
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7034',
12336
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12337
            'conventional_rs' => null,
12338
            'frame_reference_epoch' => null,
12339
        ],
12340
        'urn:ogc:def:datum:EPSG::6242' => [
12341
            'name' => 'Jamaica 1969',
12342
            'type' => 'geodetic',
12343
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
12344
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12345
            'conventional_rs' => null,
12346
            'frame_reference_epoch' => null,
12347
        ],
12348
        'urn:ogc:def:datum:EPSG::6243' => [
12349
            'name' => 'Kalianpur 1880',
12350
            'type' => 'geodetic',
12351
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7042',
12352
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12353
            'conventional_rs' => null,
12354
            'frame_reference_epoch' => null,
12355
        ],
12356
        'urn:ogc:def:datum:EPSG::6244' => [
12357
            'name' => 'Kandawala',
12358
            'type' => 'geodetic',
12359
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
12360
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12361
            'conventional_rs' => null,
12362
            'frame_reference_epoch' => null,
12363
        ],
12364
        'urn:ogc:def:datum:EPSG::6245' => [
12365
            'name' => 'Kertau 1968',
12366
            'type' => 'geodetic',
12367
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7018',
12368
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12369
            'conventional_rs' => null,
12370
            'frame_reference_epoch' => null,
12371
        ],
12372
        'urn:ogc:def:datum:EPSG::6246' => [
12373
            'name' => 'Kuwait Oil Company',
12374
            'type' => 'geodetic',
12375
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12376
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12377
            'conventional_rs' => null,
12378
            'frame_reference_epoch' => null,
12379
        ],
12380
        'urn:ogc:def:datum:EPSG::6247' => [
12381
            'name' => 'La Canoa',
12382
            'type' => 'geodetic',
12383
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12384
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12385
            'conventional_rs' => null,
12386
            'frame_reference_epoch' => null,
12387
        ],
12388
        'urn:ogc:def:datum:EPSG::6248' => [
12389
            'name' => 'Provisional South American Datum 1956',
12390
            'type' => 'geodetic',
12391
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12392
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12393
            'conventional_rs' => null,
12394
            'frame_reference_epoch' => null,
12395
        ],
12396
        'urn:ogc:def:datum:EPSG::6249' => [
12397
            'name' => 'Lake',
12398
            'type' => 'geodetic',
12399
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12400
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12401
            'conventional_rs' => null,
12402
            'frame_reference_epoch' => null,
12403
        ],
12404
        'urn:ogc:def:datum:EPSG::6250' => [
12405
            'name' => 'Leigon',
12406
            'type' => 'geodetic',
12407
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12408
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12409
            'conventional_rs' => null,
12410
            'frame_reference_epoch' => null,
12411
        ],
12412
        'urn:ogc:def:datum:EPSG::6251' => [
12413
            'name' => 'Liberia 1964',
12414
            'type' => 'geodetic',
12415
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12416
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12417
            'conventional_rs' => null,
12418
            'frame_reference_epoch' => null,
12419
        ],
12420
        'urn:ogc:def:datum:EPSG::6252' => [
12421
            'name' => 'Lome',
12422
            'type' => 'geodetic',
12423
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12424
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12425
            'conventional_rs' => null,
12426
            'frame_reference_epoch' => null,
12427
        ],
12428
        'urn:ogc:def:datum:EPSG::6253' => [
12429
            'name' => 'Luzon 1911',
12430
            'type' => 'geodetic',
12431
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
12432
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12433
            'conventional_rs' => null,
12434
            'frame_reference_epoch' => null,
12435
        ],
12436
        'urn:ogc:def:datum:EPSG::6254' => [
12437
            'name' => 'Hito XVIII 1963',
12438
            'type' => 'geodetic',
12439
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12440
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12441
            'conventional_rs' => null,
12442
            'frame_reference_epoch' => null,
12443
        ],
12444
        'urn:ogc:def:datum:EPSG::6255' => [
12445
            'name' => 'Herat North',
12446
            'type' => 'geodetic',
12447
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12448
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12449
            'conventional_rs' => null,
12450
            'frame_reference_epoch' => null,
12451
        ],
12452
        'urn:ogc:def:datum:EPSG::6256' => [
12453
            'name' => 'Mahe 1971',
12454
            'type' => 'geodetic',
12455
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12456
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12457
            'conventional_rs' => null,
12458
            'frame_reference_epoch' => null,
12459
        ],
12460
        'urn:ogc:def:datum:EPSG::6257' => [
12461
            'name' => 'Makassar',
12462
            'type' => 'geodetic',
12463
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12464
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12465
            'conventional_rs' => null,
12466
            'frame_reference_epoch' => null,
12467
        ],
12468
        'urn:ogc:def:datum:EPSG::6258' => [
12469
            'name' => 'European Terrestrial Reference System 1989 ensemble',
12470
            'type' => 'ensemble',
12471
            'ellipsoid' => null,
12472
            'prime_meridian' => null,
12473
            'conventional_rs' => null,
12474
            'frame_reference_epoch' => null,
12475
            'ensemble' => [
12476
                'urn:ogc:def:datum:EPSG::1178',
12477
                'urn:ogc:def:datum:EPSG::1179',
12478
                'urn:ogc:def:datum:EPSG::1180',
12479
                'urn:ogc:def:datum:EPSG::1181',
12480
                'urn:ogc:def:datum:EPSG::1182',
12481
                'urn:ogc:def:datum:EPSG::1183',
12482
                'urn:ogc:def:datum:EPSG::1184',
12483
                'urn:ogc:def:datum:EPSG::1185',
12484
                'urn:ogc:def:datum:EPSG::1186',
12485
                'urn:ogc:def:datum:EPSG::1204',
12486
                'urn:ogc:def:datum:EPSG::1206',
12487
            ],
12488
        ],
12489
        'urn:ogc:def:datum:EPSG::6259' => [
12490
            'name' => 'Malongo 1987',
12491
            'type' => 'geodetic',
12492
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12493
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12494
            'conventional_rs' => null,
12495
            'frame_reference_epoch' => null,
12496
        ],
12497
        'urn:ogc:def:datum:EPSG::6261' => [
12498
            'name' => 'Merchich',
12499
            'type' => 'geodetic',
12500
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12501
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12502
            'conventional_rs' => null,
12503
            'frame_reference_epoch' => null,
12504
        ],
12505
        'urn:ogc:def:datum:EPSG::6262' => [
12506
            'name' => 'Massawa',
12507
            'type' => 'geodetic',
12508
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12509
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12510
            'conventional_rs' => null,
12511
            'frame_reference_epoch' => null,
12512
        ],
12513
        'urn:ogc:def:datum:EPSG::6263' => [
12514
            'name' => 'Minna',
12515
            'type' => 'geodetic',
12516
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12517
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12518
            'conventional_rs' => null,
12519
            'frame_reference_epoch' => null,
12520
        ],
12521
        'urn:ogc:def:datum:EPSG::6265' => [
12522
            'name' => 'Monte Mario',
12523
            'type' => 'geodetic',
12524
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12525
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12526
            'conventional_rs' => null,
12527
            'frame_reference_epoch' => null,
12528
        ],
12529
        'urn:ogc:def:datum:EPSG::6266' => [
12530
            'name' => 'M\'poraloko',
12531
            'type' => 'geodetic',
12532
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12533
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12534
            'conventional_rs' => null,
12535
            'frame_reference_epoch' => null,
12536
        ],
12537
        'urn:ogc:def:datum:EPSG::6267' => [
12538
            'name' => 'North American Datum 1927',
12539
            'type' => 'geodetic',
12540
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
12541
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12542
            'conventional_rs' => null,
12543
            'frame_reference_epoch' => null,
12544
        ],
12545
        'urn:ogc:def:datum:EPSG::6269' => [
12546
            'name' => 'North American Datum 1983',
12547
            'type' => 'geodetic',
12548
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12549
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12550
            'conventional_rs' => null,
12551
            'frame_reference_epoch' => null,
12552
        ],
12553
        'urn:ogc:def:datum:EPSG::6270' => [
12554
            'name' => 'Nahrwan 1967',
12555
            'type' => 'geodetic',
12556
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12557
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12558
            'conventional_rs' => null,
12559
            'frame_reference_epoch' => null,
12560
        ],
12561
        'urn:ogc:def:datum:EPSG::6271' => [
12562
            'name' => 'Naparima 1972',
12563
            'type' => 'geodetic',
12564
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12565
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12566
            'conventional_rs' => null,
12567
            'frame_reference_epoch' => null,
12568
        ],
12569
        'urn:ogc:def:datum:EPSG::6272' => [
12570
            'name' => 'New Zealand Geodetic Datum 1949',
12571
            'type' => 'geodetic',
12572
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12573
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12574
            'conventional_rs' => null,
12575
            'frame_reference_epoch' => null,
12576
        ],
12577
        'urn:ogc:def:datum:EPSG::6273' => [
12578
            'name' => 'NGO 1948',
12579
            'type' => 'geodetic',
12580
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7005',
12581
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12582
            'conventional_rs' => null,
12583
            'frame_reference_epoch' => null,
12584
        ],
12585
        'urn:ogc:def:datum:EPSG::6274' => [
12586
            'name' => 'Datum 73',
12587
            'type' => 'geodetic',
12588
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12589
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12590
            'conventional_rs' => null,
12591
            'frame_reference_epoch' => null,
12592
        ],
12593
        'urn:ogc:def:datum:EPSG::6275' => [
12594
            'name' => 'Nouvelle Triangulation Francaise',
12595
            'type' => 'geodetic',
12596
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12597
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12598
            'conventional_rs' => null,
12599
            'frame_reference_epoch' => null,
12600
        ],
12601
        'urn:ogc:def:datum:EPSG::6276' => [
12602
            'name' => 'NSWC 9Z-2',
12603
            'type' => 'geodetic',
12604
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7025',
12605
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12606
            'conventional_rs' => null,
12607
            'frame_reference_epoch' => null,
12608
        ],
12609
        'urn:ogc:def:datum:EPSG::6277' => [
12610
            'name' => 'Ordnance Survey of Great Britain 1936',
12611
            'type' => 'geodetic',
12612
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001',
12613
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12614
            'conventional_rs' => null,
12615
            'frame_reference_epoch' => null,
12616
        ],
12617
        'urn:ogc:def:datum:EPSG::6278' => [
12618
            'name' => 'OSGB 1970 (SN)',
12619
            'type' => 'geodetic',
12620
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001',
12621
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12622
            'conventional_rs' => null,
12623
            'frame_reference_epoch' => null,
12624
        ],
12625
        'urn:ogc:def:datum:EPSG::6279' => [
12626
            'name' => 'OS (SN) 1980',
12627
            'type' => 'geodetic',
12628
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001',
12629
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12630
            'conventional_rs' => null,
12631
            'frame_reference_epoch' => null,
12632
        ],
12633
        'urn:ogc:def:datum:EPSG::6281' => [
12634
            'name' => 'Palestine 1923',
12635
            'type' => 'geodetic',
12636
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7010',
12637
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12638
            'conventional_rs' => null,
12639
            'frame_reference_epoch' => null,
12640
        ],
12641
        'urn:ogc:def:datum:EPSG::6282' => [
12642
            'name' => 'Congo 1960 Pointe Noire',
12643
            'type' => 'geodetic',
12644
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12645
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12646
            'conventional_rs' => null,
12647
            'frame_reference_epoch' => null,
12648
        ],
12649
        'urn:ogc:def:datum:EPSG::6283' => [
12650
            'name' => 'Geocentric Datum of Australia 1994',
12651
            'type' => 'geodetic',
12652
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12653
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12654
            'conventional_rs' => null,
12655
            'frame_reference_epoch' => null,
12656
        ],
12657
        'urn:ogc:def:datum:EPSG::6284' => [
12658
            'name' => 'Pulkovo 1942',
12659
            'type' => 'geodetic',
12660
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
12661
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12662
            'conventional_rs' => null,
12663
            'frame_reference_epoch' => null,
12664
        ],
12665
        'urn:ogc:def:datum:EPSG::6285' => [
12666
            'name' => 'Qatar 1974',
12667
            'type' => 'geodetic',
12668
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12669
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12670
            'conventional_rs' => null,
12671
            'frame_reference_epoch' => null,
12672
        ],
12673
        'urn:ogc:def:datum:EPSG::6286' => [
12674
            'name' => 'Qatar 1948',
12675
            'type' => 'geodetic',
12676
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020',
12677
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12678
            'conventional_rs' => null,
12679
            'frame_reference_epoch' => null,
12680
        ],
12681
        'urn:ogc:def:datum:EPSG::6288' => [
12682
            'name' => 'Loma Quintana',
12683
            'type' => 'geodetic',
12684
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12685
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12686
            'conventional_rs' => null,
12687
            'frame_reference_epoch' => null,
12688
        ],
12689
        'urn:ogc:def:datum:EPSG::6289' => [
12690
            'name' => 'Amersfoort',
12691
            'type' => 'geodetic',
12692
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12693
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12694
            'conventional_rs' => null,
12695
            'frame_reference_epoch' => null,
12696
        ],
12697
        'urn:ogc:def:datum:EPSG::6292' => [
12698
            'name' => 'Sapper Hill 1943',
12699
            'type' => 'geodetic',
12700
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12701
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12702
            'conventional_rs' => null,
12703
            'frame_reference_epoch' => null,
12704
        ],
12705
        'urn:ogc:def:datum:EPSG::6293' => [
12706
            'name' => 'Schwarzeck',
12707
            'type' => 'geodetic',
12708
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7046',
12709
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12710
            'conventional_rs' => null,
12711
            'frame_reference_epoch' => null,
12712
        ],
12713
        'urn:ogc:def:datum:EPSG::6295' => [
12714
            'name' => 'Serindung',
12715
            'type' => 'geodetic',
12716
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12717
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12718
            'conventional_rs' => null,
12719
            'frame_reference_epoch' => null,
12720
        ],
12721
        'urn:ogc:def:datum:EPSG::6297' => [
12722
            'name' => 'Tananarive 1925',
12723
            'type' => 'geodetic',
12724
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12725
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12726
            'conventional_rs' => null,
12727
            'frame_reference_epoch' => null,
12728
        ],
12729
        'urn:ogc:def:datum:EPSG::6298' => [
12730
            'name' => 'Timbalai 1948',
12731
            'type' => 'geodetic',
12732
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7016',
12733
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12734
            'conventional_rs' => null,
12735
            'frame_reference_epoch' => null,
12736
        ],
12737
        'urn:ogc:def:datum:EPSG::6299' => [
12738
            'name' => 'TM65',
12739
            'type' => 'geodetic',
12740
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7002',
12741
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12742
            'conventional_rs' => null,
12743
            'frame_reference_epoch' => null,
12744
        ],
12745
        'urn:ogc:def:datum:EPSG::6300' => [
12746
            'name' => 'Geodetic Datum of 1965',
12747
            'type' => 'geodetic',
12748
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7002',
12749
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12750
            'conventional_rs' => null,
12751
            'frame_reference_epoch' => null,
12752
        ],
12753
        'urn:ogc:def:datum:EPSG::6301' => [
12754
            'name' => 'Tokyo',
12755
            'type' => 'geodetic',
12756
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12757
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12758
            'conventional_rs' => null,
12759
            'frame_reference_epoch' => null,
12760
        ],
12761
        'urn:ogc:def:datum:EPSG::6302' => [
12762
            'name' => 'Trinidad 1903',
12763
            'type' => 'geodetic',
12764
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007',
12765
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12766
            'conventional_rs' => null,
12767
            'frame_reference_epoch' => null,
12768
        ],
12769
        'urn:ogc:def:datum:EPSG::6303' => [
12770
            'name' => 'Trucial Coast 1948',
12771
            'type' => 'geodetic',
12772
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020',
12773
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12774
            'conventional_rs' => null,
12775
            'frame_reference_epoch' => null,
12776
        ],
12777
        'urn:ogc:def:datum:EPSG::6304' => [
12778
            'name' => 'Voirol 1875',
12779
            'type' => 'geodetic',
12780
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12781
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12782
            'conventional_rs' => null,
12783
            'frame_reference_epoch' => null,
12784
        ],
12785
        'urn:ogc:def:datum:EPSG::6306' => [
12786
            'name' => 'Bern 1938',
12787
            'type' => 'geodetic',
12788
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12789
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12790
            'conventional_rs' => null,
12791
            'frame_reference_epoch' => null,
12792
        ],
12793
        'urn:ogc:def:datum:EPSG::6307' => [
12794
            'name' => 'Nord Sahara 1959',
12795
            'type' => 'geodetic',
12796
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
12797
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12798
            'conventional_rs' => null,
12799
            'frame_reference_epoch' => null,
12800
        ],
12801
        'urn:ogc:def:datum:EPSG::6308' => [
12802
            'name' => 'Stockholm 1938',
12803
            'type' => 'geodetic',
12804
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12805
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12806
            'conventional_rs' => null,
12807
            'frame_reference_epoch' => null,
12808
        ],
12809
        'urn:ogc:def:datum:EPSG::6309' => [
12810
            'name' => 'Yacare',
12811
            'type' => 'geodetic',
12812
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12813
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12814
            'conventional_rs' => null,
12815
            'frame_reference_epoch' => null,
12816
        ],
12817
        'urn:ogc:def:datum:EPSG::6310' => [
12818
            'name' => 'Yoff',
12819
            'type' => 'geodetic',
12820
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12821
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12822
            'conventional_rs' => null,
12823
            'frame_reference_epoch' => null,
12824
        ],
12825
        'urn:ogc:def:datum:EPSG::6311' => [
12826
            'name' => 'Zanderij',
12827
            'type' => 'geodetic',
12828
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12829
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12830
            'conventional_rs' => null,
12831
            'frame_reference_epoch' => null,
12832
        ],
12833
        'urn:ogc:def:datum:EPSG::6312' => [
12834
            'name' => 'Militar-Geographische Institut',
12835
            'type' => 'geodetic',
12836
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12837
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12838
            'conventional_rs' => null,
12839
            'frame_reference_epoch' => null,
12840
        ],
12841
        'urn:ogc:def:datum:EPSG::6313' => [
12842
            'name' => 'Reseau National Belge 1972',
12843
            'type' => 'geodetic',
12844
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12845
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12846
            'conventional_rs' => null,
12847
            'frame_reference_epoch' => null,
12848
        ],
12849
        'urn:ogc:def:datum:EPSG::6314' => [
12850
            'name' => 'Deutsches Hauptdreiecksnetz',
12851
            'type' => 'geodetic',
12852
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
12853
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12854
            'conventional_rs' => null,
12855
            'frame_reference_epoch' => null,
12856
        ],
12857
        'urn:ogc:def:datum:EPSG::6315' => [
12858
            'name' => 'Conakry 1905',
12859
            'type' => 'geodetic',
12860
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
12861
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12862
            'conventional_rs' => null,
12863
            'frame_reference_epoch' => null,
12864
        ],
12865
        'urn:ogc:def:datum:EPSG::6316' => [
12866
            'name' => 'Dealul Piscului 1930',
12867
            'type' => 'geodetic',
12868
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
12869
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12870
            'conventional_rs' => null,
12871
            'frame_reference_epoch' => null,
12872
        ],
12873
        'urn:ogc:def:datum:EPSG::6318' => [
12874
            'name' => 'National Geodetic Network',
12875
            'type' => 'geodetic',
12876
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
12877
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12878
            'conventional_rs' => null,
12879
            'frame_reference_epoch' => null,
12880
        ],
12881
        'urn:ogc:def:datum:EPSG::6319' => [
12882
            'name' => 'Kuwait Utility',
12883
            'type' => 'geodetic',
12884
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
12885
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12886
            'conventional_rs' => null,
12887
            'frame_reference_epoch' => null,
12888
        ],
12889
        'urn:ogc:def:datum:EPSG::6322' => [
12890
            'name' => 'World Geodetic System 1972',
12891
            'type' => 'dynamic geodetic',
12892
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7043',
12893
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12894
            'conventional_rs' => null,
12895
            'frame_reference_epoch' => 1972.0,
12896
        ],
12897
        'urn:ogc:def:datum:EPSG::6324' => [
12898
            'name' => 'WGS 72 Transit Broadcast Ephemeris',
12899
            'type' => 'dynamic geodetic',
12900
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7043',
12901
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
12902
            'conventional_rs' => null,
12903
            'frame_reference_epoch' => 1972.0,
12904
        ],
12905
        'urn:ogc:def:datum:EPSG::6326' => [
12906
            'name' => 'World Geodetic System 1984 ensemble',
12907
            'type' => 'ensemble',
12908
            'ellipsoid' => null,
12909
            'prime_meridian' => null,
12910
            'conventional_rs' => null,
12911
            'frame_reference_epoch' => null,
12912
            'ensemble' => [
12913
                'urn:ogc:def:datum:EPSG::1166',
12914
                'urn:ogc:def:datum:EPSG::1152',
12915
                'urn:ogc:def:datum:EPSG::1153',
12916
                'urn:ogc:def:datum:EPSG::1154',
12917
                'urn:ogc:def:datum:EPSG::1155',
12918
                'urn:ogc:def:datum:EPSG::1156',
12919
                'urn:ogc:def:datum:EPSG::1309',
12920
            ],
12921
        ],
12922
        'urn:ogc:def:datum:EPSG::6600' => [
12923
            'name' => 'Anguilla 1957',
12924
            'type' => 'geodetic',
12925
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
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::6601' => [
12931
            'name' => 'Antigua 1943',
12932
            'type' => 'geodetic',
12933
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
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::6602' => [
12939
            'name' => 'Dominica 1945',
12940
            'type' => 'geodetic',
12941
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
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::6603' => [
12947
            'name' => 'Grenada 1953',
12948
            'type' => 'geodetic',
12949
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
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::6604' => [
12955
            'name' => 'Montserrat 1958',
12956
            'type' => 'geodetic',
12957
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
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::6605' => [
12963
            'name' => 'St. Kitts 1955',
12964
            'type' => 'geodetic',
12965
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
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::6606' => [
12971
            'name' => 'St. Lucia 1955',
12972
            'type' => 'geodetic',
12973
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
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::6607' => [
12979
            'name' => 'St. Vincent 1945',
12980
            'type' => 'geodetic',
12981
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
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::6608' => [
12987
            'name' => 'North American Datum 1927 (1976)',
12988
            'type' => 'geodetic',
12989
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
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::6609' => [
12995
            'name' => 'North American Datum 1927 (CGQ77)',
12996
            'type' => 'geodetic',
12997
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
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::6610' => [
13003
            'name' => 'Xian 1980',
13004
            'type' => 'geodetic',
13005
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7049',
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::6611' => [
13011
            'name' => 'Hong Kong 1980',
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::6612' => [
13019
            'name' => 'Japanese Geodetic Datum 2000',
13020
            'type' => 'geodetic',
13021
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
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::6613' => [
13027
            'name' => 'Gunung Segara',
13028
            'type' => 'geodetic',
13029
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
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::6614' => [
13035
            'name' => 'Qatar National Datum 1995',
13036
            'type' => 'geodetic',
13037
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
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::6615' => [
13043
            'name' => 'Porto Santo 1936',
13044
            'type' => 'geodetic',
13045
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
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::6616' => [
13051
            'name' => 'Selvagem Grande',
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::6618' => [
13059
            'name' => 'South American Datum 1969',
13060
            'type' => 'geodetic',
13061
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7050',
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::6619' => [
13067
            'name' => 'SWEREF99',
13068
            'type' => 'geodetic',
13069
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
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::6620' => [
13075
            'name' => 'Point 58',
13076
            'type' => 'geodetic',
13077
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
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::6621' => [
13083
            'name' => 'Fort Marigot',
13084
            'type' => 'geodetic',
13085
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
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::6622' => [
13091
            'name' => 'Guadeloupe 1948',
13092
            'type' => 'geodetic',
13093
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
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::6623' => [
13099
            'name' => 'Centre Spatial Guyanais 1967',
13100
            'type' => 'geodetic',
13101
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
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::6624' => [
13107
            'name' => 'Reseau Geodesique Francais Guyane 1995',
13108
            'type' => 'geodetic',
13109
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
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::6625' => [
13115
            'name' => 'Martinique 1938',
13116
            'type' => 'geodetic',
13117
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
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::6626' => [
13123
            'name' => 'Reunion 1947',
13124
            'type' => 'geodetic',
13125
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
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::6627' => [
13131
            'name' => 'Reseau Geodesique de la Reunion 1992',
13132
            'type' => 'geodetic',
13133
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
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::6628' => [
13139
            'name' => 'Tahiti 52',
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::6629' => [
13147
            'name' => 'Tahaa 54',
13148
            'type' => 'geodetic',
13149
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
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::6630' => [
13155
            'name' => 'IGN72 Nuku Hiva',
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::6632' => [
13163
            'name' => 'Combani 1950',
13164
            'type' => 'geodetic',
13165
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
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::6633' => [
13171
            'name' => 'IGN56 Lifou',
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::6634' => [
13179
            'name' => 'IGN72 Grande Terre',
13180
            'type' => 'geodetic',
13181
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
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::6636' => [
13187
            'name' => 'Petrels 1972',
13188
            'type' => 'geodetic',
13189
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
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::6637' => [
13195
            'name' => 'Pointe Geologie Perroud 1950',
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::6638' => [
13203
            'name' => 'Saint Pierre et Miquelon 1950',
13204
            'type' => 'geodetic',
13205
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
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::6639' => [
13211
            'name' => 'MOP78',
13212
            'type' => 'geodetic',
13213
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
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::6641' => [
13219
            'name' => 'IGN53 Mare',
13220
            'type' => 'geodetic',
13221
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13222
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13223
            'conventional_rs' => null,
13224
            'frame_reference_epoch' => null,
13225
        ],
13226
        'urn:ogc:def:datum:EPSG::6642' => [
13227
            'name' => 'ST84 Ile des Pins',
13228
            'type' => 'geodetic',
13229
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13230
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13231
            'conventional_rs' => null,
13232
            'frame_reference_epoch' => null,
13233
        ],
13234
        'urn:ogc:def:datum:EPSG::6643' => [
13235
            'name' => 'ST71 Belep',
13236
            'type' => 'geodetic',
13237
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13238
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13239
            'conventional_rs' => null,
13240
            'frame_reference_epoch' => null,
13241
        ],
13242
        'urn:ogc:def:datum:EPSG::6644' => [
13243
            'name' => 'NEA74 Noumea',
13244
            'type' => 'geodetic',
13245
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13246
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13247
            'conventional_rs' => null,
13248
            'frame_reference_epoch' => null,
13249
        ],
13250
        'urn:ogc:def:datum:EPSG::6646' => [
13251
            'name' => 'Grand Comoros',
13252
            'type' => 'geodetic',
13253
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13254
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13255
            'conventional_rs' => null,
13256
            'frame_reference_epoch' => null,
13257
        ],
13258
        'urn:ogc:def:datum:EPSG::6647' => [
13259
            'name' => 'International Terrestrial Reference Frame 1988',
13260
            'type' => 'dynamic geodetic',
13261
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13262
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13263
            'conventional_rs' => null,
13264
            'frame_reference_epoch' => 1988.0,
13265
        ],
13266
        'urn:ogc:def:datum:EPSG::6648' => [
13267
            'name' => 'International Terrestrial Reference Frame 1989',
13268
            'type' => 'dynamic geodetic',
13269
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13270
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13271
            'conventional_rs' => null,
13272
            'frame_reference_epoch' => 1988.0,
13273
        ],
13274
        'urn:ogc:def:datum:EPSG::6649' => [
13275
            'name' => 'International Terrestrial Reference Frame 1990',
13276
            'type' => 'dynamic geodetic',
13277
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13278
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13279
            'conventional_rs' => null,
13280
            'frame_reference_epoch' => 1988.0,
13281
        ],
13282
        'urn:ogc:def:datum:EPSG::6650' => [
13283
            'name' => 'International Terrestrial Reference Frame 1991',
13284
            'type' => 'dynamic geodetic',
13285
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13286
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13287
            'conventional_rs' => null,
13288
            'frame_reference_epoch' => 1988.0,
13289
        ],
13290
        'urn:ogc:def:datum:EPSG::6651' => [
13291
            'name' => 'International Terrestrial Reference Frame 1992',
13292
            'type' => 'dynamic geodetic',
13293
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13294
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13295
            'conventional_rs' => null,
13296
            'frame_reference_epoch' => 1988.0,
13297
        ],
13298
        'urn:ogc:def:datum:EPSG::6652' => [
13299
            'name' => 'International Terrestrial Reference Frame 1993',
13300
            'type' => 'dynamic geodetic',
13301
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13302
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13303
            'conventional_rs' => null,
13304
            'frame_reference_epoch' => 1993.0,
13305
        ],
13306
        'urn:ogc:def:datum:EPSG::6653' => [
13307
            'name' => 'International Terrestrial Reference Frame 1994',
13308
            'type' => 'dynamic geodetic',
13309
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13310
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13311
            'conventional_rs' => null,
13312
            'frame_reference_epoch' => 1993.0,
13313
        ],
13314
        'urn:ogc:def:datum:EPSG::6654' => [
13315
            'name' => 'International Terrestrial Reference Frame 1996',
13316
            'type' => 'dynamic geodetic',
13317
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13318
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13319
            'conventional_rs' => null,
13320
            'frame_reference_epoch' => 1997.0,
13321
        ],
13322
        'urn:ogc:def:datum:EPSG::6655' => [
13323
            'name' => 'International Terrestrial Reference Frame 1997',
13324
            'type' => 'dynamic geodetic',
13325
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13326
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13327
            'conventional_rs' => null,
13328
            'frame_reference_epoch' => 1997.0,
13329
        ],
13330
        'urn:ogc:def:datum:EPSG::6656' => [
13331
            'name' => 'International Terrestrial Reference Frame 2000',
13332
            'type' => 'dynamic geodetic',
13333
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13334
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13335
            'conventional_rs' => null,
13336
            'frame_reference_epoch' => 1997.0,
13337
        ],
13338
        'urn:ogc:def:datum:EPSG::6657' => [
13339
            'name' => 'Reykjavik 1900',
13340
            'type' => 'geodetic',
13341
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7051',
13342
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13343
            'conventional_rs' => null,
13344
            'frame_reference_epoch' => null,
13345
        ],
13346
        'urn:ogc:def:datum:EPSG::6658' => [
13347
            'name' => 'Hjorsey 1955',
13348
            'type' => 'geodetic',
13349
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13350
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13351
            'conventional_rs' => null,
13352
            'frame_reference_epoch' => null,
13353
        ],
13354
        'urn:ogc:def:datum:EPSG::6659' => [
13355
            'name' => 'Islands Net 1993',
13356
            'type' => 'geodetic',
13357
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13358
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13359
            'conventional_rs' => null,
13360
            'frame_reference_epoch' => null,
13361
        ],
13362
        'urn:ogc:def:datum:EPSG::6660' => [
13363
            'name' => 'Helle 1954',
13364
            'type' => 'geodetic',
13365
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13366
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13367
            'conventional_rs' => null,
13368
            'frame_reference_epoch' => null,
13369
        ],
13370
        'urn:ogc:def:datum:EPSG::6661' => [
13371
            'name' => 'Latvia 1992',
13372
            'type' => 'geodetic',
13373
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13374
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13375
            'conventional_rs' => null,
13376
            'frame_reference_epoch' => null,
13377
        ],
13378
        'urn:ogc:def:datum:EPSG::6663' => [
13379
            'name' => 'Porto Santo 1995',
13380
            'type' => 'geodetic',
13381
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13382
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13383
            'conventional_rs' => null,
13384
            'frame_reference_epoch' => null,
13385
        ],
13386
        'urn:ogc:def:datum:EPSG::6664' => [
13387
            'name' => 'Azores Oriental Islands 1995',
13388
            'type' => 'geodetic',
13389
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13390
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13391
            'conventional_rs' => null,
13392
            'frame_reference_epoch' => null,
13393
        ],
13394
        'urn:ogc:def:datum:EPSG::6665' => [
13395
            'name' => 'Azores Central Islands 1995',
13396
            'type' => 'geodetic',
13397
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13398
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13399
            'conventional_rs' => null,
13400
            'frame_reference_epoch' => null,
13401
        ],
13402
        'urn:ogc:def:datum:EPSG::6666' => [
13403
            'name' => 'Lisbon 1890',
13404
            'type' => 'geodetic',
13405
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
13406
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13407
            'conventional_rs' => null,
13408
            'frame_reference_epoch' => null,
13409
        ],
13410
        'urn:ogc:def:datum:EPSG::6667' => [
13411
            'name' => 'Iraq-Kuwait Boundary Datum 1992',
13412
            'type' => 'geodetic',
13413
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
13414
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13415
            'conventional_rs' => null,
13416
            'frame_reference_epoch' => null,
13417
        ],
13418
        'urn:ogc:def:datum:EPSG::6668' => [
13419
            'name' => 'European Datum 1979',
13420
            'type' => 'geodetic',
13421
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13422
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13423
            'conventional_rs' => null,
13424
            'frame_reference_epoch' => null,
13425
        ],
13426
        'urn:ogc:def:datum:EPSG::6670' => [
13427
            'name' => 'Istituto Geografico Militaire 1995',
13428
            'type' => 'geodetic',
13429
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13430
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13431
            'conventional_rs' => null,
13432
            'frame_reference_epoch' => null,
13433
        ],
13434
        'urn:ogc:def:datum:EPSG::6671' => [
13435
            'name' => 'Voirol 1879',
13436
            'type' => 'geodetic',
13437
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
13438
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13439
            'conventional_rs' => null,
13440
            'frame_reference_epoch' => null,
13441
        ],
13442
        'urn:ogc:def:datum:EPSG::6672' => [
13443
            'name' => 'Chatham Islands Datum 1971',
13444
            'type' => 'geodetic',
13445
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13446
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13447
            'conventional_rs' => null,
13448
            'frame_reference_epoch' => null,
13449
        ],
13450
        'urn:ogc:def:datum:EPSG::6673' => [
13451
            'name' => 'Chatham Islands Datum 1979',
13452
            'type' => 'geodetic',
13453
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13454
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13455
            'conventional_rs' => null,
13456
            'frame_reference_epoch' => null,
13457
        ],
13458
        'urn:ogc:def:datum:EPSG::6674' => [
13459
            'name' => 'Sistema de Referencia Geocentrico para las AmericaS 2000',
13460
            'type' => 'geodetic',
13461
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13462
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13463
            'conventional_rs' => null,
13464
            'frame_reference_epoch' => null,
13465
        ],
13466
        'urn:ogc:def:datum:EPSG::6675' => [
13467
            'name' => 'Guam 1963',
13468
            'type' => 'geodetic',
13469
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13470
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13471
            'conventional_rs' => null,
13472
            'frame_reference_epoch' => null,
13473
        ],
13474
        'urn:ogc:def:datum:EPSG::6676' => [
13475
            'name' => 'Vientiane 1982',
13476
            'type' => 'geodetic',
13477
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
13478
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13479
            'conventional_rs' => null,
13480
            'frame_reference_epoch' => null,
13481
        ],
13482
        'urn:ogc:def:datum:EPSG::6677' => [
13483
            'name' => 'Lao 1993',
13484
            'type' => 'geodetic',
13485
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
13486
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13487
            'conventional_rs' => null,
13488
            'frame_reference_epoch' => null,
13489
        ],
13490
        'urn:ogc:def:datum:EPSG::6678' => [
13491
            'name' => 'Lao National Datum 1997',
13492
            'type' => 'geodetic',
13493
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024',
13494
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13495
            'conventional_rs' => null,
13496
            'frame_reference_epoch' => null,
13497
        ],
13498
        'urn:ogc:def:datum:EPSG::6679' => [
13499
            'name' => 'Jouik 1961',
13500
            'type' => 'geodetic',
13501
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13502
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13503
            'conventional_rs' => null,
13504
            'frame_reference_epoch' => null,
13505
        ],
13506
        'urn:ogc:def:datum:EPSG::6680' => [
13507
            'name' => 'Nouakchott 1965',
13508
            'type' => 'geodetic',
13509
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13510
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13511
            'conventional_rs' => null,
13512
            'frame_reference_epoch' => null,
13513
        ],
13514
        'urn:ogc:def:datum:EPSG::6682' => [
13515
            'name' => 'Gulshan 303',
13516
            'type' => 'geodetic',
13517
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015',
13518
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13519
            'conventional_rs' => null,
13520
            'frame_reference_epoch' => null,
13521
        ],
13522
        'urn:ogc:def:datum:EPSG::6683' => [
13523
            'name' => 'Philippine Reference System 1992',
13524
            'type' => 'geodetic',
13525
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13526
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13527
            'conventional_rs' => null,
13528
            'frame_reference_epoch' => null,
13529
        ],
13530
        'urn:ogc:def:datum:EPSG::6684' => [
13531
            'name' => 'Gan 1970',
13532
            'type' => 'geodetic',
13533
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13534
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13535
            'conventional_rs' => null,
13536
            'frame_reference_epoch' => null,
13537
        ],
13538
        'urn:ogc:def:datum:EPSG::6686' => [
13539
            'name' => 'Marco Geocentrico Nacional de Referencia',
13540
            'type' => 'geodetic',
13541
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13542
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13543
            'conventional_rs' => null,
13544
            'frame_reference_epoch' => null,
13545
        ],
13546
        'urn:ogc:def:datum:EPSG::6687' => [
13547
            'name' => 'Reseau Geodesique de la Polynesie Francaise',
13548
            'type' => 'geodetic',
13549
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13550
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13551
            'conventional_rs' => null,
13552
            'frame_reference_epoch' => null,
13553
        ],
13554
        'urn:ogc:def:datum:EPSG::6688' => [
13555
            'name' => 'Fatu Iva 72',
13556
            'type' => 'geodetic',
13557
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13558
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13559
            'conventional_rs' => null,
13560
            'frame_reference_epoch' => null,
13561
        ],
13562
        'urn:ogc:def:datum:EPSG::6689' => [
13563
            'name' => 'IGN63 Hiva Oa',
13564
            'type' => 'geodetic',
13565
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13566
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13567
            'conventional_rs' => null,
13568
            'frame_reference_epoch' => null,
13569
        ],
13570
        'urn:ogc:def:datum:EPSG::6690' => [
13571
            'name' => 'Tahiti 79',
13572
            'type' => 'geodetic',
13573
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13574
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13575
            'conventional_rs' => null,
13576
            'frame_reference_epoch' => null,
13577
        ],
13578
        'urn:ogc:def:datum:EPSG::6691' => [
13579
            'name' => 'Moorea 87',
13580
            'type' => 'geodetic',
13581
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13582
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13583
            'conventional_rs' => null,
13584
            'frame_reference_epoch' => null,
13585
        ],
13586
        'urn:ogc:def:datum:EPSG::6692' => [
13587
            'name' => 'Maupiti 83',
13588
            'type' => 'geodetic',
13589
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13590
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13591
            'conventional_rs' => null,
13592
            'frame_reference_epoch' => null,
13593
        ],
13594
        'urn:ogc:def:datum:EPSG::6693' => [
13595
            'name' => 'Nakhl-e Ghanem',
13596
            'type' => 'geodetic',
13597
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
13598
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13599
            'conventional_rs' => null,
13600
            'frame_reference_epoch' => null,
13601
        ],
13602
        'urn:ogc:def:datum:EPSG::6694' => [
13603
            'name' => 'Posiciones Geodesicas Argentinas 1994',
13604
            'type' => 'geodetic',
13605
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
13606
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13607
            'conventional_rs' => null,
13608
            'frame_reference_epoch' => null,
13609
        ],
13610
        'urn:ogc:def:datum:EPSG::6695' => [
13611
            'name' => 'Katanga 1955',
13612
            'type' => 'geodetic',
13613
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13614
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13615
            'conventional_rs' => null,
13616
            'frame_reference_epoch' => null,
13617
        ],
13618
        'urn:ogc:def:datum:EPSG::6696' => [
13619
            'name' => 'Kasai 1953',
13620
            'type' => 'geodetic',
13621
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13622
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13623
            'conventional_rs' => null,
13624
            'frame_reference_epoch' => null,
13625
        ],
13626
        'urn:ogc:def:datum:EPSG::6697' => [
13627
            'name' => 'IGC 1962 Arc of the 6th Parallel South',
13628
            'type' => 'geodetic',
13629
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13630
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13631
            'conventional_rs' => null,
13632
            'frame_reference_epoch' => null,
13633
        ],
13634
        'urn:ogc:def:datum:EPSG::6698' => [
13635
            'name' => 'IGN 1962 Kerguelen',
13636
            'type' => 'geodetic',
13637
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13638
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13639
            'conventional_rs' => null,
13640
            'frame_reference_epoch' => null,
13641
        ],
13642
        'urn:ogc:def:datum:EPSG::6699' => [
13643
            'name' => 'Le Pouce 1934',
13644
            'type' => 'geodetic',
13645
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13646
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13647
            'conventional_rs' => null,
13648
            'frame_reference_epoch' => null,
13649
        ],
13650
        'urn:ogc:def:datum:EPSG::6700' => [
13651
            'name' => 'IGN Astro 1960',
13652
            'type' => 'geodetic',
13653
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13654
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13655
            'conventional_rs' => null,
13656
            'frame_reference_epoch' => null,
13657
        ],
13658
        'urn:ogc:def:datum:EPSG::6701' => [
13659
            'name' => 'Institut Geographique du Congo Belge 1955',
13660
            'type' => 'geodetic',
13661
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13662
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13663
            'conventional_rs' => null,
13664
            'frame_reference_epoch' => null,
13665
        ],
13666
        'urn:ogc:def:datum:EPSG::6702' => [
13667
            'name' => 'Mauritania 1999',
13668
            'type' => 'geodetic',
13669
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13670
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13671
            'conventional_rs' => null,
13672
            'frame_reference_epoch' => null,
13673
        ],
13674
        'urn:ogc:def:datum:EPSG::6703' => [
13675
            'name' => 'Missao Hidrografico Angola y Sao Tome 1951',
13676
            'type' => 'geodetic',
13677
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13678
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13679
            'conventional_rs' => null,
13680
            'frame_reference_epoch' => null,
13681
        ],
13682
        'urn:ogc:def:datum:EPSG::6704' => [
13683
            'name' => 'Mhast (onshore)',
13684
            'type' => 'geodetic',
13685
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13686
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13687
            'conventional_rs' => null,
13688
            'frame_reference_epoch' => null,
13689
        ],
13690
        'urn:ogc:def:datum:EPSG::6705' => [
13691
            'name' => 'Mhast (offshore)',
13692
            'type' => 'geodetic',
13693
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13694
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13695
            'conventional_rs' => null,
13696
            'frame_reference_epoch' => null,
13697
        ],
13698
        'urn:ogc:def:datum:EPSG::6706' => [
13699
            'name' => 'Egypt Gulf of Suez S-650 TL',
13700
            'type' => 'geodetic',
13701
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020',
13702
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13703
            'conventional_rs' => null,
13704
            'frame_reference_epoch' => null,
13705
        ],
13706
        'urn:ogc:def:datum:EPSG::6707' => [
13707
            'name' => 'Tern Island 1961',
13708
            'type' => 'geodetic',
13709
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13710
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13711
            'conventional_rs' => null,
13712
            'frame_reference_epoch' => null,
13713
        ],
13714
        'urn:ogc:def:datum:EPSG::6708' => [
13715
            'name' => 'Cocos Islands 1965',
13716
            'type' => 'geodetic',
13717
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7003',
13718
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13719
            'conventional_rs' => null,
13720
            'frame_reference_epoch' => null,
13721
        ],
13722
        'urn:ogc:def:datum:EPSG::6709' => [
13723
            'name' => 'Iwo Jima 1945',
13724
            'type' => 'geodetic',
13725
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13726
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13727
            'conventional_rs' => null,
13728
            'frame_reference_epoch' => null,
13729
        ],
13730
        'urn:ogc:def:datum:EPSG::6710' => [
13731
            'name' => 'Astro DOS 71',
13732
            'type' => 'geodetic',
13733
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13734
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13735
            'conventional_rs' => null,
13736
            'frame_reference_epoch' => null,
13737
        ],
13738
        'urn:ogc:def:datum:EPSG::6711' => [
13739
            'name' => 'Marcus Island 1952',
13740
            'type' => 'geodetic',
13741
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13742
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13743
            'conventional_rs' => null,
13744
            'frame_reference_epoch' => null,
13745
        ],
13746
        'urn:ogc:def:datum:EPSG::6712' => [
13747
            'name' => 'Ascension Island 1958',
13748
            'type' => 'geodetic',
13749
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13750
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13751
            'conventional_rs' => null,
13752
            'frame_reference_epoch' => null,
13753
        ],
13754
        'urn:ogc:def:datum:EPSG::6713' => [
13755
            'name' => 'Ayabelle Lighthouse',
13756
            'type' => 'geodetic',
13757
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13758
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13759
            'conventional_rs' => null,
13760
            'frame_reference_epoch' => null,
13761
        ],
13762
        'urn:ogc:def:datum:EPSG::6714' => [
13763
            'name' => 'Bellevue',
13764
            'type' => 'geodetic',
13765
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13766
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13767
            'conventional_rs' => null,
13768
            'frame_reference_epoch' => null,
13769
        ],
13770
        'urn:ogc:def:datum:EPSG::6715' => [
13771
            'name' => 'Camp Area Astro',
13772
            'type' => 'geodetic',
13773
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13774
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13775
            'conventional_rs' => null,
13776
            'frame_reference_epoch' => null,
13777
        ],
13778
        'urn:ogc:def:datum:EPSG::6716' => [
13779
            'name' => 'Phoenix Islands 1966',
13780
            'type' => 'geodetic',
13781
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13782
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13783
            'conventional_rs' => null,
13784
            'frame_reference_epoch' => null,
13785
        ],
13786
        'urn:ogc:def:datum:EPSG::6717' => [
13787
            'name' => 'Cape Canaveral',
13788
            'type' => 'geodetic',
13789
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13790
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13791
            'conventional_rs' => null,
13792
            'frame_reference_epoch' => null,
13793
        ],
13794
        'urn:ogc:def:datum:EPSG::6718' => [
13795
            'name' => 'Solomon 1968',
13796
            'type' => 'geodetic',
13797
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13798
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13799
            'conventional_rs' => null,
13800
            'frame_reference_epoch' => null,
13801
        ],
13802
        'urn:ogc:def:datum:EPSG::6719' => [
13803
            'name' => 'Easter Island 1967',
13804
            'type' => 'geodetic',
13805
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13806
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13807
            'conventional_rs' => null,
13808
            'frame_reference_epoch' => null,
13809
        ],
13810
        'urn:ogc:def:datum:EPSG::6720' => [
13811
            'name' => 'Fiji Geodetic Datum 1986',
13812
            'type' => 'geodetic',
13813
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7043',
13814
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13815
            'conventional_rs' => null,
13816
            'frame_reference_epoch' => null,
13817
        ],
13818
        'urn:ogc:def:datum:EPSG::6721' => [
13819
            'name' => 'Fiji 1956',
13820
            'type' => 'geodetic',
13821
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13822
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13823
            'conventional_rs' => null,
13824
            'frame_reference_epoch' => null,
13825
        ],
13826
        'urn:ogc:def:datum:EPSG::6722' => [
13827
            'name' => 'South Georgia 1968',
13828
            'type' => 'geodetic',
13829
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13830
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13831
            'conventional_rs' => null,
13832
            'frame_reference_epoch' => null,
13833
        ],
13834
        'urn:ogc:def:datum:EPSG::6723' => [
13835
            'name' => 'Grand Cayman Geodetic Datum 1959',
13836
            'type' => 'geodetic',
13837
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13838
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13839
            'conventional_rs' => null,
13840
            'frame_reference_epoch' => null,
13841
        ],
13842
        'urn:ogc:def:datum:EPSG::6724' => [
13843
            'name' => 'Diego Garcia 1969',
13844
            'type' => 'geodetic',
13845
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13846
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13847
            'conventional_rs' => null,
13848
            'frame_reference_epoch' => null,
13849
        ],
13850
        'urn:ogc:def:datum:EPSG::6725' => [
13851
            'name' => 'Johnston Island 1961',
13852
            'type' => 'geodetic',
13853
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13854
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13855
            'conventional_rs' => null,
13856
            'frame_reference_epoch' => null,
13857
        ],
13858
        'urn:ogc:def:datum:EPSG::6726' => [
13859
            'name' => 'Sister Islands Geodetic Datum 1961',
13860
            'type' => 'geodetic',
13861
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008',
13862
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13863
            'conventional_rs' => null,
13864
            'frame_reference_epoch' => null,
13865
        ],
13866
        'urn:ogc:def:datum:EPSG::6727' => [
13867
            'name' => 'Midway 1961',
13868
            'type' => 'geodetic',
13869
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13870
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13871
            'conventional_rs' => null,
13872
            'frame_reference_epoch' => null,
13873
        ],
13874
        'urn:ogc:def:datum:EPSG::6728' => [
13875
            'name' => 'Pico de las Nieves 1984',
13876
            'type' => 'geodetic',
13877
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13878
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13879
            'conventional_rs' => null,
13880
            'frame_reference_epoch' => null,
13881
        ],
13882
        'urn:ogc:def:datum:EPSG::6729' => [
13883
            'name' => 'Pitcairn 1967',
13884
            'type' => 'geodetic',
13885
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13886
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13887
            'conventional_rs' => null,
13888
            'frame_reference_epoch' => null,
13889
        ],
13890
        'urn:ogc:def:datum:EPSG::6730' => [
13891
            'name' => 'Santo 1965',
13892
            'type' => 'geodetic',
13893
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13894
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13895
            'conventional_rs' => null,
13896
            'frame_reference_epoch' => null,
13897
        ],
13898
        'urn:ogc:def:datum:EPSG::6732' => [
13899
            'name' => 'Marshall Islands 1960',
13900
            'type' => 'geodetic',
13901
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7053',
13902
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13903
            'conventional_rs' => null,
13904
            'frame_reference_epoch' => null,
13905
        ],
13906
        'urn:ogc:def:datum:EPSG::6733' => [
13907
            'name' => 'Wake Island 1952',
13908
            'type' => 'geodetic',
13909
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13910
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13911
            'conventional_rs' => null,
13912
            'frame_reference_epoch' => null,
13913
        ],
13914
        'urn:ogc:def:datum:EPSG::6734' => [
13915
            'name' => 'Tristan 1968',
13916
            'type' => 'geodetic',
13917
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13918
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13919
            'conventional_rs' => null,
13920
            'frame_reference_epoch' => null,
13921
        ],
13922
        'urn:ogc:def:datum:EPSG::6735' => [
13923
            'name' => 'Kusaie 1951',
13924
            'type' => 'geodetic',
13925
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13926
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13927
            'conventional_rs' => null,
13928
            'frame_reference_epoch' => null,
13929
        ],
13930
        'urn:ogc:def:datum:EPSG::6736' => [
13931
            'name' => 'Deception Island',
13932
            'type' => 'geodetic',
13933
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13934
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13935
            'conventional_rs' => null,
13936
            'frame_reference_epoch' => null,
13937
        ],
13938
        'urn:ogc:def:datum:EPSG::6737' => [
13939
            'name' => 'Geocentric datum of Korea',
13940
            'type' => 'geodetic',
13941
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13942
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13943
            'conventional_rs' => null,
13944
            'frame_reference_epoch' => null,
13945
        ],
13946
        'urn:ogc:def:datum:EPSG::6738' => [
13947
            'name' => 'Hong Kong 1963',
13948
            'type' => 'geodetic',
13949
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007',
13950
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13951
            'conventional_rs' => null,
13952
            'frame_reference_epoch' => null,
13953
        ],
13954
        'urn:ogc:def:datum:EPSG::6739' => [
13955
            'name' => 'Hong Kong 1963(67)',
13956
            'type' => 'geodetic',
13957
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13958
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13959
            'conventional_rs' => null,
13960
            'frame_reference_epoch' => null,
13961
        ],
13962
        'urn:ogc:def:datum:EPSG::6740' => [
13963
            'name' => 'Parametry Zemli 1990',
13964
            'type' => 'dynamic geodetic',
13965
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7054',
13966
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13967
            'conventional_rs' => null,
13968
            'frame_reference_epoch' => 1990.0,
13969
        ],
13970
        'urn:ogc:def:datum:EPSG::6741' => [
13971
            'name' => 'Faroe Datum 1954',
13972
            'type' => 'geodetic',
13973
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
13974
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13975
            'conventional_rs' => null,
13976
            'frame_reference_epoch' => null,
13977
        ],
13978
        'urn:ogc:def:datum:EPSG::6742' => [
13979
            'name' => 'Geodetic Datum of Malaysia 2000',
13980
            'type' => 'geodetic',
13981
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
13982
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13983
            'conventional_rs' => null,
13984
            'frame_reference_epoch' => null,
13985
        ],
13986
        'urn:ogc:def:datum:EPSG::6743' => [
13987
            'name' => 'Karbala 1979',
13988
            'type' => 'geodetic',
13989
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13990
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13991
            'conventional_rs' => null,
13992
            'frame_reference_epoch' => null,
13993
        ],
13994
        'urn:ogc:def:datum:EPSG::6744' => [
13995
            'name' => 'Nahrwan 1934',
13996
            'type' => 'geodetic',
13997
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012',
13998
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
13999
            'conventional_rs' => null,
14000
            'frame_reference_epoch' => null,
14001
        ],
14002
        'urn:ogc:def:datum:EPSG::6745' => [
14003
            'name' => 'Rauenberg Datum/83',
14004
            'type' => 'geodetic',
14005
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14006
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14007
            'conventional_rs' => null,
14008
            'frame_reference_epoch' => null,
14009
        ],
14010
        'urn:ogc:def:datum:EPSG::6746' => [
14011
            'name' => 'Potsdam Datum/83',
14012
            'type' => 'geodetic',
14013
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14014
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14015
            'conventional_rs' => null,
14016
            'frame_reference_epoch' => null,
14017
        ],
14018
        'urn:ogc:def:datum:EPSG::6747' => [
14019
            'name' => 'Greenland 1996',
14020
            'type' => 'geodetic',
14021
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14022
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14023
            'conventional_rs' => null,
14024
            'frame_reference_epoch' => null,
14025
        ],
14026
        'urn:ogc:def:datum:EPSG::6748' => [
14027
            'name' => 'Vanua Levu 1915',
14028
            'type' => 'geodetic',
14029
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7055',
14030
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14031
            'conventional_rs' => null,
14032
            'frame_reference_epoch' => null,
14033
        ],
14034
        'urn:ogc:def:datum:EPSG::6749' => [
14035
            'name' => 'Reseau Geodesique de Nouvelle Caledonie 91-93',
14036
            'type' => 'geodetic',
14037
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14038
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14039
            'conventional_rs' => null,
14040
            'frame_reference_epoch' => null,
14041
        ],
14042
        'urn:ogc:def:datum:EPSG::6750' => [
14043
            'name' => 'ST87 Ouvea',
14044
            'type' => 'geodetic',
14045
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14046
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14047
            'conventional_rs' => null,
14048
            'frame_reference_epoch' => null,
14049
        ],
14050
        'urn:ogc:def:datum:EPSG::6751' => [
14051
            'name' => 'Kertau (RSO)',
14052
            'type' => 'geodetic',
14053
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7056',
14054
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14055
            'conventional_rs' => null,
14056
            'frame_reference_epoch' => null,
14057
        ],
14058
        'urn:ogc:def:datum:EPSG::6752' => [
14059
            'name' => 'Viti Levu 1912',
14060
            'type' => 'geodetic',
14061
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7055',
14062
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14063
            'conventional_rs' => null,
14064
            'frame_reference_epoch' => null,
14065
        ],
14066
        'urn:ogc:def:datum:EPSG::6753' => [
14067
            'name' => 'fk89',
14068
            'type' => 'geodetic',
14069
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14070
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14071
            'conventional_rs' => null,
14072
            'frame_reference_epoch' => null,
14073
        ],
14074
        'urn:ogc:def:datum:EPSG::6754' => [
14075
            'name' => 'Libyan Geodetic Datum 2006',
14076
            'type' => 'geodetic',
14077
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14078
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14079
            'conventional_rs' => null,
14080
            'frame_reference_epoch' => null,
14081
        ],
14082
        'urn:ogc:def:datum:EPSG::6755' => [
14083
            'name' => 'Datum Geodesi Nasional 1995',
14084
            'type' => 'geodetic',
14085
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14086
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14087
            'conventional_rs' => null,
14088
            'frame_reference_epoch' => null,
14089
        ],
14090
        'urn:ogc:def:datum:EPSG::6756' => [
14091
            'name' => 'Vietnam 2000',
14092
            'type' => 'geodetic',
14093
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14094
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14095
            'conventional_rs' => null,
14096
            'frame_reference_epoch' => null,
14097
        ],
14098
        'urn:ogc:def:datum:EPSG::6757' => [
14099
            'name' => 'SVY21',
14100
            'type' => 'geodetic',
14101
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14102
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14103
            'conventional_rs' => null,
14104
            'frame_reference_epoch' => null,
14105
        ],
14106
        'urn:ogc:def:datum:EPSG::6758' => [
14107
            'name' => 'Jamaica 2001',
14108
            'type' => 'geodetic',
14109
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14110
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14111
            'conventional_rs' => null,
14112
            'frame_reference_epoch' => null,
14113
        ],
14114
        'urn:ogc:def:datum:EPSG::6759' => [
14115
            'name' => 'NAD83 (National Spatial Reference System 2007)',
14116
            'type' => 'geodetic',
14117
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14118
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14119
            'conventional_rs' => null,
14120
            'frame_reference_epoch' => null,
14121
        ],
14122
        'urn:ogc:def:datum:EPSG::6760' => [
14123
            'name' => 'World Geodetic System 1966',
14124
            'type' => 'dynamic geodetic',
14125
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7025',
14126
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14127
            'conventional_rs' => null,
14128
            'frame_reference_epoch' => 1966.0,
14129
        ],
14130
        'urn:ogc:def:datum:EPSG::6761' => [
14131
            'name' => 'Croatian Terrestrial Reference System',
14132
            'type' => 'geodetic',
14133
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14134
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14135
            'conventional_rs' => null,
14136
            'frame_reference_epoch' => null,
14137
        ],
14138
        'urn:ogc:def:datum:EPSG::6762' => [
14139
            'name' => 'Bermuda 2000',
14140
            'type' => 'geodetic',
14141
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14142
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14143
            'conventional_rs' => null,
14144
            'frame_reference_epoch' => null,
14145
        ],
14146
        'urn:ogc:def:datum:EPSG::6763' => [
14147
            'name' => 'Pitcairn 2006',
14148
            'type' => 'geodetic',
14149
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030',
14150
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14151
            'conventional_rs' => null,
14152
            'frame_reference_epoch' => null,
14153
        ],
14154
        'urn:ogc:def:datum:EPSG::6764' => [
14155
            'name' => 'Ross Sea Region Geodetic Datum 2000',
14156
            'type' => 'geodetic',
14157
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14158
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14159
            'conventional_rs' => null,
14160
            'frame_reference_epoch' => null,
14161
        ],
14162
        'urn:ogc:def:datum:EPSG::6765' => [
14163
            'name' => 'Slovenia Geodetic Datum 1996',
14164
            'type' => 'geodetic',
14165
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14166
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14167
            'conventional_rs' => null,
14168
            'frame_reference_epoch' => null,
14169
        ],
14170
        'urn:ogc:def:datum:EPSG::6801' => [
14171
            'name' => 'CH1903 (Bern)',
14172
            'type' => 'geodetic',
14173
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14174
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8907',
14175
            'conventional_rs' => null,
14176
            'frame_reference_epoch' => null,
14177
        ],
14178
        'urn:ogc:def:datum:EPSG::6802' => [
14179
            'name' => 'Bogota 1975 (Bogota)',
14180
            'type' => 'geodetic',
14181
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14182
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8904',
14183
            'conventional_rs' => null,
14184
            'frame_reference_epoch' => null,
14185
        ],
14186
        'urn:ogc:def:datum:EPSG::6803' => [
14187
            'name' => 'Lisbon 1937 (Lisbon)',
14188
            'type' => 'geodetic',
14189
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14190
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8902',
14191
            'conventional_rs' => null,
14192
            'frame_reference_epoch' => null,
14193
        ],
14194
        'urn:ogc:def:datum:EPSG::6804' => [
14195
            'name' => 'Makassar (Jakarta)',
14196
            'type' => 'geodetic',
14197
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14198
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8908',
14199
            'conventional_rs' => null,
14200
            'frame_reference_epoch' => null,
14201
        ],
14202
        'urn:ogc:def:datum:EPSG::6805' => [
14203
            'name' => 'Militar-Geographische Institut (Ferro)',
14204
            'type' => 'geodetic',
14205
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14206
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909',
14207
            'conventional_rs' => null,
14208
            'frame_reference_epoch' => null,
14209
        ],
14210
        'urn:ogc:def:datum:EPSG::6806' => [
14211
            'name' => 'Monte Mario (Rome)',
14212
            'type' => 'geodetic',
14213
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14214
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8906',
14215
            'conventional_rs' => null,
14216
            'frame_reference_epoch' => null,
14217
        ],
14218
        'urn:ogc:def:datum:EPSG::6807' => [
14219
            'name' => 'Nouvelle Triangulation Francaise (Paris)',
14220
            'type' => 'geodetic',
14221
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
14222
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903',
14223
            'conventional_rs' => null,
14224
            'frame_reference_epoch' => null,
14225
        ],
14226
        'urn:ogc:def:datum:EPSG::6809' => [
14227
            'name' => 'Reseau National Belge 1950 (Brussels)',
14228
            'type' => 'geodetic',
14229
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14230
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8910',
14231
            'conventional_rs' => null,
14232
            'frame_reference_epoch' => null,
14233
        ],
14234
        'urn:ogc:def:datum:EPSG::6810' => [
14235
            'name' => 'Tananarive 1925 (Paris)',
14236
            'type' => 'geodetic',
14237
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022',
14238
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903',
14239
            'conventional_rs' => null,
14240
            'frame_reference_epoch' => null,
14241
        ],
14242
        'urn:ogc:def:datum:EPSG::6811' => [
14243
            'name' => 'Voirol 1875 (Paris)',
14244
            'type' => 'geodetic',
14245
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
14246
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903',
14247
            'conventional_rs' => null,
14248
            'frame_reference_epoch' => null,
14249
        ],
14250
        'urn:ogc:def:datum:EPSG::6813' => [
14251
            'name' => 'Batavia (Jakarta)',
14252
            'type' => 'geodetic',
14253
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14254
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8908',
14255
            'conventional_rs' => null,
14256
            'frame_reference_epoch' => null,
14257
        ],
14258
        'urn:ogc:def:datum:EPSG::6814' => [
14259
            'name' => 'Stockholm 1938 (Stockholm)',
14260
            'type' => 'geodetic',
14261
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14262
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8911',
14263
            'conventional_rs' => null,
14264
            'frame_reference_epoch' => null,
14265
        ],
14266
        'urn:ogc:def:datum:EPSG::6815' => [
14267
            'name' => 'Greek (Athens)',
14268
            'type' => 'geodetic',
14269
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14270
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8912',
14271
            'conventional_rs' => null,
14272
            'frame_reference_epoch' => null,
14273
        ],
14274
        'urn:ogc:def:datum:EPSG::6816' => [
14275
            'name' => 'Carthage (Paris)',
14276
            'type' => 'geodetic',
14277
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
14278
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903',
14279
            'conventional_rs' => null,
14280
            'frame_reference_epoch' => null,
14281
        ],
14282
        'urn:ogc:def:datum:EPSG::6817' => [
14283
            'name' => 'NGO 1948 (Oslo)',
14284
            'type' => 'geodetic',
14285
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7005',
14286
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8913',
14287
            'conventional_rs' => null,
14288
            'frame_reference_epoch' => null,
14289
        ],
14290
        'urn:ogc:def:datum:EPSG::6818' => [
14291
            'name' => 'System of the Unified Trigonometrical Cadastral Network (Ferro)',
14292
            'type' => 'geodetic',
14293
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14294
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909',
14295
            'conventional_rs' => null,
14296
            'frame_reference_epoch' => null,
14297
        ],
14298
        'urn:ogc:def:datum:EPSG::6820' => [
14299
            'name' => 'Gunung Segara (Jakarta)',
14300
            'type' => 'geodetic',
14301
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14302
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8908',
14303
            'conventional_rs' => null,
14304
            'frame_reference_epoch' => null,
14305
        ],
14306
        'urn:ogc:def:datum:EPSG::6821' => [
14307
            'name' => 'Voirol 1879 (Paris)',
14308
            'type' => 'geodetic',
14309
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011',
14310
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903',
14311
            'conventional_rs' => null,
14312
            'frame_reference_epoch' => null,
14313
        ],
14314
        'urn:ogc:def:datum:EPSG::6896' => [
14315
            'name' => 'International Terrestrial Reference Frame 2005',
14316
            'type' => 'dynamic geodetic',
14317
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019',
14318
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901',
14319
            'conventional_rs' => null,
14320
            'frame_reference_epoch' => 2000.0,
14321
        ],
14322
        'urn:ogc:def:datum:EPSG::6901' => [
14323
            'name' => 'Ancienne Triangulation Francaise (Paris)',
14324
            'type' => 'geodetic',
14325
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7027',
14326
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8914',
14327
            'conventional_rs' => null,
14328
            'frame_reference_epoch' => null,
14329
        ],
14330
        'urn:ogc:def:datum:EPSG::6903' => [
14331
            'name' => 'Madrid 1870 (Madrid)',
14332
            'type' => 'geodetic',
14333
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7028',
14334
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8905',
14335
            'conventional_rs' => null,
14336
            'frame_reference_epoch' => null,
14337
        ],
14338
        'urn:ogc:def:datum:EPSG::6904' => [
14339
            'name' => 'Lisbon 1890 (Lisbon)',
14340
            'type' => 'geodetic',
14341
            'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004',
14342
            'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8902',
14343
            'conventional_rs' => null,
14344
            'frame_reference_epoch' => null,
14345
        ],
14346
    ];
14347
14348
    public const DATUM_TYPE_GEODETIC = 'geodetic';
14349
14350
    public const DATUM_TYPE_VERTICAL = 'vertical';
14351
14352
    public const DATUM_TYPE_DYNAMIC_GEODETIC = 'dynamic_geodetic';
14353
14354
    public const DATUM_TYPE_DYNAMIC_VERTICAL = 'dynamic_vertical';
14355
14356
    public const DATUM_TYPE_ENGINEERING = 'engineering';
14357
14358
    public const DATUM_TYPE_ENSEMBLE = 'ensemble';
14359
14360
    private static array $cachedObjects = [];
14361
14362
    protected string $datumType;
14363
14364
    protected ?Ellipsoid $ellipsoid;
14365
14366
    protected ?PrimeMeridian $primeMeridian;
14367
14368
    protected ?DateTimeInterface $frameReferenceEpoch;
14369
14370
    protected string $name;
14371
14372
    protected string $srid;
14373
14374 3791
    public function __construct(
14375
        string $datumType,
14376
        ?Ellipsoid $ellipsoid,
14377
        ?PrimeMeridian $primeMeridian,
14378
        ?DateTimeInterface $frameReferenceEpoch,
14379
        string $name = '',
14380
        string $srid = ''
14381
    ) {
14382 3791
        $this->datumType = $datumType;
14383 3791
        $this->ellipsoid = $ellipsoid;
14384 3791
        $this->primeMeridian = $primeMeridian;
14385 3791
        $this->frameReferenceEpoch = $frameReferenceEpoch;
14386 3791
        $this->name = $name;
14387 3791
        $this->srid = $srid;
14388
    }
14389
14390 18
    public function getDatumType(): string
14391
    {
14392 18
        return $this->datumType;
14393
    }
14394
14395 9723
    public function getEllipsoid(): Ellipsoid
14396
    {
14397 9723
        return $this->ellipsoid;
0 ignored issues
show
Bug Best Practice introduced by
The expression return $this->ellipsoid could return the type null which is incompatible with the type-hinted return PHPCoord\Datum\Ellipsoid. Consider adding an additional type-check to rule them out.
Loading history...
14398
    }
14399
14400 6910
    public function getPrimeMeridian(): PrimeMeridian
14401
    {
14402 6910
        return $this->primeMeridian;
0 ignored issues
show
Bug Best Practice introduced by
The expression return $this->primeMeridian could return the type null which is incompatible with the type-hinted return PHPCoord\Datum\PrimeMeridian. Consider adding an additional type-check to rule them out.
Loading history...
14403
    }
14404
14405 9
    public function getFrameReferenceEpoch(): ?DateTimeInterface
14406
    {
14407 9
        return $this->frameReferenceEpoch;
14408
    }
14409
14410
    public function getName(): string
14411
    {
14412
        return $this->name;
14413
    }
14414
14415 8271
    public function getSRID(): string
14416
    {
14417 8271
        return $this->srid;
14418
    }
14419
14420 8660
    public static function fromSRID(string $srid): self
14421
    {
14422 8660
        if (!isset(static::$sridData[$srid])) {
14423 9
            throw new UnknownDatumException($srid);
14424
        }
14425
14426 8651
        if (!isset(self::$cachedObjects[$srid])) {
14427 3773
            $data = static::$sridData[$srid];
14428 3773
            $frameReferenceEpoch = null;
14429 3773
            if ($data['frame_reference_epoch'] instanceof DateTimeInterface) {
14430
                $frameReferenceEpoch = $data['frame_reference_epoch'];
14431 3773
            } elseif ($data['frame_reference_epoch']) {
14432 56
                $frameReferenceEpoch = (new Year($data['frame_reference_epoch']))->asDateTime();
14433
            }
14434
14435 3773
            if ($data['type'] === self::DATUM_TYPE_ENSEMBLE) { // if ensemble, use latest realisation for data
14436 18
                $latest = static::$sridData[end(static::$sridData[$srid]['ensemble'])];
14437 18
                self::$cachedObjects[$srid] = new static(
14438 18
                    $data['type'],
14439 18
                    $latest['ellipsoid'] ? Ellipsoid::fromSRID($latest['ellipsoid']) : null,
14440 18
                    $latest['prime_meridian'] ? PrimeMeridian::fromSRID($latest['prime_meridian']) : null,
14441 18
                    $frameReferenceEpoch,
14442 18
                    $data['name'],
14443 18
                    $srid,
14444 18
                );
14445 3772
            } elseif ($data['ellipsoid']) {
14446 3444
                self::$cachedObjects[$srid] = new static(
14447 3444
                    $data['type'],
14448 3444
                    Ellipsoid::fromSRID($data['ellipsoid']),
14449 3444
                    PrimeMeridian::fromSRID($data['prime_meridian']),
14450 3444
                    $frameReferenceEpoch,
14451 3444
                    $data['name'],
14452 3444
                    $srid,
14453 3444
                );
14454
            } else {
14455 352
                self::$cachedObjects[$srid] = new static(
14456 352
                    $data['type'],
14457 352
                    null,
14458 352
                    null,
14459 352
                    $frameReferenceEpoch,
14460 352
                    $data['name'],
14461 352
                    $srid,
14462 352
                );
14463
            }
14464
        }
14465
14466 8651
        return self::$cachedObjects[$srid];
14467
    }
14468
14469 3429
    public static function getSupportedSRIDs(): array
14470
    {
14471 3429
        $supported = [];
14472 3429
        foreach (static::$sridData as $srid => $data) {
14473 3429
            $supported[$srid] = $data['name'];
14474
        }
14475
14476 3429
        return $supported;
14477
    }
14478
14479 306
    public static function registerCustomDatum(string $srid, string $name, string $type, ?string $ellipsoidSrid, ?string $primeMeridianSrid, ?DateTimeInterface $frameReferenceEpoch): void
14480
    {
14481 306
        self::$sridData[$srid] = ['name' => $name, 'type' => $type, 'ellipsoid' => $ellipsoidSrid, 'prime_meridian' => $primeMeridianSrid, 'frame_reference_epoch' => $frameReferenceEpoch];
14482
    }
14483
}
14484