Passed
Push — 4.0.x ( 414ad0...5c8c8d )
by Doug
05:04 queued 12s
created

Vertical::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 12
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 6
CRAP Score 1

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 1
eloc 5
nc 1
nop 4
dl 0
loc 12
ccs 6
cts 6
cp 1
crap 1
rs 10
c 2
b 0
f 0
1
<?php
2
/**
3
 * PHPCoord.
4
 *
5
 * @author Doug Wright
6
 */
7
declare(strict_types=1);
8
9
namespace PHPCoord\CoordinateReferenceSystem;
10
11
use function assert;
12
use function count;
13
use PHPCoord\CoordinateSystem\CoordinateSystem;
14
use PHPCoord\CoordinateSystem\Vertical as VerticalCS;
15
use PHPCoord\Datum\Datum;
16
use PHPCoord\Exception\UnknownCoordinateReferenceSystemException;
17
use PHPCoord\Geometry\GeographicPolygon;
18
19
class Vertical extends CoordinateReferenceSystem
20
{
21
    /**
22
     * AHD (Tasmania) height
23
     * Extent: Australia - Tasmania mainland - onshore.
24
     */
25
    public const EPSG_AHD_TASMANIA_HEIGHT = 'urn:ogc:def:crs:EPSG::5712';
26
27
    /**
28
     * AHD height
29
     * Extent: Australia - Australian Capital Territory, New South Wales, Northern Territory, Queensland, South
30
     * Australia, Tasmania, Western Australia and Victoria - onshore. Christmas Island - onshore. Cocos and Keeling
31
     * Islands - onshore.
32
     * Appropriate for cadastral and local engineering survey including construction or mining. Only suitable onshore.
33
     * AVWS height (CRS code 9458) is more accurate than AHD height for applications over distances greater than 10 km
34
     * and also extends offshore.
35
     */
36
    public const EPSG_AHD_HEIGHT = 'urn:ogc:def:crs:EPSG::5711';
37
38
    /**
39
     * AIOC95 depth
40
     * Extent: Azerbaijan - Caspian offshore and onshore Sangachal terminal.
41
     * Also used by AIOC and BP as a height system for engineering survey at Sangachal terminal (see CRS code 5797).
42
     * AIOC95 datum is 1.7m above Caspian datum and 26.3m below Baltic datum.
43
     */
44
    public const EPSG_AIOC95_DEPTH = 'urn:ogc:def:crs:EPSG::5734';
45
46
    /**
47
     * AIOC95 height
48
     * Extent: Azerbaijan - Caspian offshore and onshore Sangachal terminal.
49
     * AIOC95 datum is 1.7m above Caspian datum and 26.3m below Baltic datum. Also used by AIOC and BP as the depth
50
     * system for all offshore Azerbaijan activities (see CRS code 5734).
51
     */
52
    public const EPSG_AIOC95_HEIGHT = 'urn:ogc:def:crs:EPSG::5797';
53
54
    /**
55
     * ASVD02 height
56
     * Extent: American Samoa - Tutuila island.
57
     * Replaces Tutuila 1962 height (CRS code 6638). Replaced by Pago Pago 2020 height after ASVD02 benchmarks
58
     * destroyed by earthquake activity.
59
     */
60
    public const EPSG_ASVD02_HEIGHT = 'urn:ogc:def:crs:EPSG::6643';
61
62
    /**
63
     * AVWS height
64
     * Extent: Australia including Lord Howe Island, Macquarie Islands, Ashmore and Cartier Islands, Christmas Island,
65
     * Cocos (Keeling) Islands, Norfolk Island. All onshore and offshore.
66
     * For cadastral and local engineering applications see AHD height (CRS code 5711). AVWS is more accurate than AHD
67
     * for applications over distances greater than 10 km.
68
     */
69
    public const EPSG_AVWS_HEIGHT = 'urn:ogc:def:crs:EPSG::9458';
70
71
    /**
72
     * Alicante height
73
     * Extent: Gibraltar - onshore; Spain - mainland onshore.
74
     */
75
    public const EPSG_ALICANTE_HEIGHT = 'urn:ogc:def:crs:EPSG::5782';
76
77
    /**
78
     * Antalya height
79
     * Extent: Turkey - onshore.
80
     */
81
    public const EPSG_ANTALYA_HEIGHT = 'urn:ogc:def:crs:EPSG::5775';
82
83
    /**
84
     * Auckland 1946 height
85
     * Extent: New Zealand - North Island - Auckland vertical CRS area.
86
     */
87
    public const EPSG_AUCKLAND_1946_HEIGHT = 'urn:ogc:def:crs:EPSG::5759';
88
89
    /**
90
     * BGS2005 height
91
     * Extent: Bulgaria - onshore.
92
     * Adopted 2010-07-29 as official Bulgarian reference datum through decree 153, replacing Baltic 1982 system (CRS
93
     * code 5786).
94
     */
95
    public const EPSG_BGS2005_HEIGHT = 'urn:ogc:def:crs:EPSG::9669';
96
97
    /**
98
     * BI height
99
     * Extent: United Kingdom (UK) - offshore to boundary of UKCS within 49°45'N to 61°N and 9°W to 2°E; onshore
100
     * Great Britain (England, Wales and Scotland) and Northern Ireland. Ireland onshore. Isle of Man onshore.
101
     */
102
    public const EPSG_BI_HEIGHT = 'urn:ogc:def:crs:EPSG::9451';
103
104
    /**
105
     * Baltic 1957 depth
106
     * Extent: Czechia; Slovakia.
107
     */
108
    public const EPSG_BALTIC_1957_DEPTH = 'urn:ogc:def:crs:EPSG::8358';
109
110
    /**
111
     * Baltic 1957 height
112
     * Extent: Czechia; Slovakia.
113
     */
114
    public const EPSG_BALTIC_1957_HEIGHT = 'urn:ogc:def:crs:EPSG::8357';
115
116
    /**
117
     * Baltic 1977 depth
118
     * Extent: Armenia; Azerbaijan; Belarus; Estonia - onshore; Georgia - onshore; Kazakhstan; Kyrgyzstan; Latvia -
119
     * onshore; Lithuania - onshore; Moldova; Russian Federation - onshore; Tajikistan; Turkmenistan; Ukraine -
120
     * onshore; Uzbekistan.
121
     */
122
    public const EPSG_BALTIC_1977_DEPTH = 'urn:ogc:def:crs:EPSG::5612';
123
124
    /**
125
     * Baltic 1977 height
126
     * Extent: Armenia; Azerbaijan; Belarus; Estonia - onshore; Georgia - onshore; Kazakhstan; Kyrgyzstan; Latvia -
127
     * onshore; Lithuania - onshore; Moldova; Russian Federation - onshore; Tajikistan; Turkmenistan; Ukraine -
128
     * onshore; Uzbekistan.
129
     * The adjustment also included the Czech and Slovak Republics but not adopted there, with earlier 1957 adjustment
130
     * remaining in use: see CRS code 8357.
131
     */
132
    public const EPSG_BALTIC_1977_HEIGHT = 'urn:ogc:def:crs:EPSG::5705';
133
134
    /**
135
     * Baltic 1982 height
136
     * Extent: Bulgaria - onshore.
137
     */
138
    public const EPSG_BALTIC_1982_HEIGHT = 'urn:ogc:def:crs:EPSG::5786';
139
140
    /**
141
     * Bandar Abbas height
142
     * Extent: Iran - onshore.
143
     * Replaces Fao height (CRS code 5751) for national map agency work in Iran. At time of record creation NIOC data
144
     * still generally referenced to Fao.
145
     */
146
    public const EPSG_BANDAR_ABBAS_HEIGHT = 'urn:ogc:def:crs:EPSG::5752';
147
148
    /**
149
     * Belfast height
150
     * Extent: United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
151
     * Malin Head height (CRS code 5731) used for medium and small scale topographic mapping.
152
     */
153
    public const EPSG_BELFAST_HEIGHT = 'urn:ogc:def:crs:EPSG::5732';
154
155
    /**
156
     * Black Sea depth
157
     * Extent: Georgia - onshore.
158
     * Black Sea datum is 0.4m below Baltic datum.
159
     */
160
    public const EPSG_BLACK_SEA_DEPTH = 'urn:ogc:def:crs:EPSG::5336';
161
162
    /**
163
     * Black Sea height
164
     * Extent: Georgia - onshore.
165
     * Black Sea datum is 0.4m below Baltic datum.
166
     */
167
    public const EPSG_BLACK_SEA_HEIGHT = 'urn:ogc:def:crs:EPSG::5735';
168
169
    /**
170
     * Bluff 1955 height
171
     * Extent: New Zealand - South Island - Bluff vertical CRS area.
172
     */
173
    public const EPSG_BLUFF_1955_HEIGHT = 'urn:ogc:def:crs:EPSG::5760';
174
175
    /**
176
     * Bora Bora SAU 2001 height
177
     * Extent: French Polynesia - Society Islands - Bora Bora.
178
     * Part of NGPF (CRS code 5600).
179
     */
180
    public const EPSG_BORA_BORA_SAU_2001_HEIGHT = 'urn:ogc:def:crs:EPSG::5607';
181
182
    /**
183
     * CBVD61 height (ft)
184
     * Extent: Cayman Islands - Cayman Brac.
185
     */
186
    public const EPSG_CBVD61_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::6132';
187
188
    /**
189
     * CD Norway depth
190
     * Extent: Norway (offshore) and Svalbard and Jan Mayen (offshore).
191
     */
192
    public const EPSG_CD_NORWAY_DEPTH = 'urn:ogc:def:crs:EPSG::9672';
193
194
    /**
195
     * CGVD2013(CGG2013) height
196
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
197
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
198
     * Yukon.
199
     * Replaces CGVD28 height (CRS code 5713). CGVD2013(CGG2013) height is realized by geoid model CGG2013 (CT code
200
     * 9246). Replaced by CGVD2013(CGG2013a) height (CRS code 9245).
201
     */
202
    public const EPSG_CGVD2013_CGG2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6647';
203
204
    /**
205
     * CGVD2013(CGG2013a) height
206
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
207
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
208
     * Yukon.
209
     * Replaces CGVD2013(CGG2013) height (CRS code 6647). CGVD2013(CGG2013a) height is realized by Canadian gravimetric
210
     * geoid model CGG2013a (CT code 9247).
211
     */
212
    public const EPSG_CGVD2013_CGG2013A_HEIGHT = 'urn:ogc:def:crs:EPSG::9245';
213
214
    /**
215
     * CGVD28 height
216
     * Extent: Canada - onshore - Alberta; British Columbia; Manitoba south of 57°N; New Brunswick; Northwest
217
     * Territories south west of a line between 60°N, 110°W and the coast at 132°W; Nova Scotia; Ontario south of
218
     * 52°N; Prince Edward Island; Quebec - mainland west of 66°W and south of 55°N; Saskatchewan south of 55°N;
219
     * Yukon.
220
     * From November 2013 replaced by CGVD2013 height (CRS code 6647).
221
     */
222
    public const EPSG_CGVD28_HEIGHT = 'urn:ogc:def:crs:EPSG::5713';
223
224
    /**
225
     * Cais da Figueirinha - Angra do Heroismo height
226
     * Extent: Portugal - central Azores - Terceira island onshore.
227
     */
228
    public const EPSG_CAIS_DA_FIGUEIRINHA_ANGRA_DO_HEROISMO_HEIGHT = 'urn:ogc:def:crs:EPSG::6184';
229
230
    /**
231
     * Cais da Madalena height
232
     * Extent: Portugal - central Azores - Pico island onshore.
233
     */
234
    public const EPSG_CAIS_DA_MADALENA_HEIGHT = 'urn:ogc:def:crs:EPSG::6182';
235
236
    /**
237
     * Cais da Pontinha - Funchal height
238
     * Extent: Portugal - Madeira and Desertas islands - onshore.
239
     */
240
    public const EPSG_CAIS_DA_PONTINHA_FUNCHAL_HEIGHT = 'urn:ogc:def:crs:EPSG::6178';
241
242
    /**
243
     * Cais da Vila - Porto Santo height
244
     * Extent: Portugal - Porto Santo island (Madeira archipelago) onshore.
245
     */
246
    public const EPSG_CAIS_DA_VILA_PORTO_SANTO_HEIGHT = 'urn:ogc:def:crs:EPSG::6179';
247
248
    /**
249
     * Cais da Vila do Porto height
250
     * Extent: Portugal - eastern Azores onshore - Santa Maria, Formigas.
251
     */
252
    public const EPSG_CAIS_DA_VILA_DO_PORTO_HEIGHT = 'urn:ogc:def:crs:EPSG::6186';
253
254
    /**
255
     * Cais das Velas height
256
     * Extent: Portugal - central Azores - Sao Jorge island onshore.
257
     */
258
    public const EPSG_CAIS_DAS_VELAS_HEIGHT = 'urn:ogc:def:crs:EPSG::6180';
259
260
    /**
261
     * Cascais height
262
     * Extent: Portugal - mainland - onshore.
263
     */
264
    public const EPSG_CASCAIS_HEIGHT = 'urn:ogc:def:crs:EPSG::5780';
265
266
    /**
267
     * Caspian depth
268
     * Extent: Azerbaijan - offshore; Kazakhstan - offshore; Russian Federation - Caspian Sea; Turkmenistan - offshore.
269
     * Caspian Sea water levels are now offset appreciably from this datum.
270
     */
271
    public const EPSG_CASPIAN_DEPTH = 'urn:ogc:def:crs:EPSG::5706';
272
273
    /**
274
     * Caspian height
275
     * Extent: Azerbaijan - offshore; Kazakhstan - offshore; Russian Federation - Caspian Sea; Turkmenistan - offshore.
276
     * Caspian Sea water levels are now offset appreciably from this datum.
277
     */
278
    public const EPSG_CASPIAN_HEIGHT = 'urn:ogc:def:crs:EPSG::5611';
279
280
    /**
281
     * Ceuta 2 height
282
     * Extent: Spain - Ceuta onshore.
283
     */
284
    public const EPSG_CEUTA_2_HEIGHT = 'urn:ogc:def:crs:EPSG::9402';
285
286
    /**
287
     * Chatham Island 1959 height
288
     * Extent: New Zealand - Chatham Island - onshore.
289
     */
290
    public const EPSG_CHATHAM_ISLAND_1959_HEIGHT = 'urn:ogc:def:crs:EPSG::5771';
291
292
    /**
293
     * Constanta height
294
     * Extent: Romania - onshore.
295
     */
296
    public const EPSG_CONSTANTA_HEIGHT = 'urn:ogc:def:crs:EPSG::5781';
297
298
    /**
299
     * DACR52 height
300
     * Extent: Costa Rica - onshore.
301
     */
302
    public const EPSG_DACR52_HEIGHT = 'urn:ogc:def:crs:EPSG::8911';
303
304
    /**
305
     * DHHN12 height
306
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
307
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
308
     * Schleswig-Holstein, Thuringen.
309
     * Replaced by SNN56 and then SNN76 in East Germany and by DHHN85 in West Germany.
310
     */
311
    public const EPSG_DHHN12_HEIGHT = 'urn:ogc:def:crs:EPSG::7699';
312
313
    /**
314
     * DHHN2016 height
315
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
316
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
317
     * Schleswig-Holstein, Thuringen.
318
     * Replaces DHHN92 height (CRS code 5783).
319
     */
320
    public const EPSG_DHHN2016_HEIGHT = 'urn:ogc:def:crs:EPSG::7837';
321
322
    /**
323
     * DHHN85 height
324
     * Extent: Germany - states of former West Germany onshore - Baden-Wurtemberg, Bayern, Bremen, Hamburg, Hessen,
325
     * Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Schleswig-Holstein.
326
     * Replaced by DNNH92 height (CRS code 5783).
327
     */
328
    public const EPSG_DHHN85_HEIGHT = 'urn:ogc:def:crs:EPSG::5784';
329
330
    /**
331
     * DHHN92 height
332
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
333
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
334
     * Schleswig-Holstein, Thuringen.
335
     * Replaces SNN76 height (CRS code 5785) and DHHN85 height (CRS code 5784). Replaced by DHHN2016 height (CRS code
336
     * 7837).
337
     */
338
    public const EPSG_DHHN92_HEIGHT = 'urn:ogc:def:crs:EPSG::5783';
339
340
    /**
341
     * DNN height
342
     * Extent: Denmark - onshore.
343
     * Replaced by DVR90 height (CRS code 5799).
344
     */
345
    public const EPSG_DNN_HEIGHT = 'urn:ogc:def:crs:EPSG::5733';
346
347
    /**
348
     * DVR90 height
349
     * Extent: Denmark - onshore.
350
     * Replaces Dansk Normal Null height (CRS code 5733).
351
     */
352
    public const EPSG_DVR90_HEIGHT = 'urn:ogc:def:crs:EPSG::5799';
353
354
    /**
355
     * Danger 1950 height
356
     * Extent: St Pierre and Miquelon - onshore.
357
     */
358
    public const EPSG_DANGER_1950_HEIGHT = 'urn:ogc:def:crs:EPSG::5792';
359
360
    /**
361
     * Douglas height
362
     * Extent: Isle of Man - onshore.
363
     */
364
    public const EPSG_DOUGLAS_HEIGHT = 'urn:ogc:def:crs:EPSG::5750';
365
366
    /**
367
     * Dunedin 1958 height
368
     * Extent: New Zealand - South Island - between approximately 44°S and 46°S - Dunedin vertical CRS area.
369
     */
370
    public const EPSG_DUNEDIN_1958_HEIGHT = 'urn:ogc:def:crs:EPSG::5761';
371
372
    /**
373
     * Dunedin-Bluff 1960 height
374
     * Extent: New Zealand - South Island - Dunedin-Bluff vertical CRS area.
375
     */
376
    public const EPSG_DUNEDIN_BLUFF_1960_HEIGHT = 'urn:ogc:def:crs:EPSG::4458';
377
378
    /**
379
     * Durres height
380
     * Extent: Albania - onshore.
381
     */
382
    public const EPSG_DURRES_HEIGHT = 'urn:ogc:def:crs:EPSG::5777';
383
384
    /**
385
     * EGM2008 height
386
     * Extent: World.
387
     * Zero-height surface resulting from the application of the EGM2008 geoid model to the WGS 84 ellipsoid. Replaces
388
     * EGM96 height (CRS code 5773).
389
     */
390
    public const EPSG_EGM2008_HEIGHT = 'urn:ogc:def:crs:EPSG::3855';
391
392
    /**
393
     * EGM84 height
394
     * Extent: World.
395
     * Zero-height surface resulting from the application of the EGM84 geoid model to the WGS 84 ellipsoid. Replaced by
396
     * EGM96 height (CRS code 5773).
397
     */
398
    public const EPSG_EGM84_HEIGHT = 'urn:ogc:def:crs:EPSG::5798';
399
400
    /**
401
     * EGM96 height
402
     * Extent: World.
403
     * Zero-height surface resulting from the application of the EGM96 geoid model to the WGS 84 ellipsoid. Replaces
404
     * EGM84 height (CRS code 5798). Replaced by EGM2008 height (CRS code 3855).
405
     */
406
    public const EPSG_EGM96_HEIGHT = 'urn:ogc:def:crs:EPSG::5773';
407
408
    /**
409
     * EH2000 height
410
     * Extent: Estonia - onshore.
411
     * In Estonia replaces Baltic 1977 system (CRS code 5705) from January 2018.
412
     */
413
    public const EPSG_EH2000_HEIGHT = 'urn:ogc:def:crs:EPSG::9663';
414
415
    /**
416
     * EOMA 1980 height
417
     * Extent: Hungary.
418
     */
419
    public const EPSG_EOMA_1980_HEIGHT = 'urn:ogc:def:crs:EPSG::5787';
420
421
    /**
422
     * EVRF2000 Austria height
423
     * Extent: Austria.
424
     * Austria-specific version of EVRF using orthometric heights instead of the Normal heights used in EVRF2000 (CRS
425
     * code 5730). Used for scientific purposes. See GHA height (CRS code 5778) for cadastral and other land survey
426
     * purposes.
427
     */
428
    public const EPSG_EVRF2000_AUSTRIA_HEIGHT = 'urn:ogc:def:crs:EPSG::9274';
429
430
    /**
431
     * EVRF2000 height
432
     * Extent: Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Croatia; Czechia; Denmark;
433
     * Estonia; Finland; France - mainland; Germany; Gibraltar; Hungary; Italy - mainland and Sicily; Latvia;
434
     * Liechtenstein; Lithuania; Luxembourg; Netherlands; Norway; Poland; Portugal - mainland; Romania; San Marino;
435
     * Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great Britain mainland; Vatican
436
     * City State.
437
     * Uses Normal heights. Replaced by EVRF2007 height (CRS code 5621). In Austria, orthometric heights used instead -
438
     * see CRS code 9274.
439
     */
440
    public const EPSG_EVRF2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5730';
441
442
    /**
443
     * EVRF2007 height
444
     * Extent: Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Czechia;
445
     * Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily; Latvia;
446
     * Liechtenstein; Lithuania; Luxembourg; Netherlands; Norway; Poland; Portugal - mainland; Romania; San Marino;
447
     * Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great Britain mainland; Vatican
448
     * City State.
449
     * Uses Normal heights. Replaces EVRF2000 height (CRS code 5730). Replaced by EVRF2019 height (CRS code 9389).
450
     */
451
    public const EPSG_EVRF2007_HEIGHT = 'urn:ogc:def:crs:EPSG::5621';
452
453
    /**
454
     * EVRF2019 height
455
     * Extent: Europe - onshore - Andorra; Austria; Belarus; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia;
456
     * Czechia; Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily;
457
     * Latvia; Liechtenstein; Lithuania; Luxembourg; Netherlands; North Macedonia; Norway; Poland; Portugal - mainland;
458
     * Romania; Russia – west of approximately 60°E; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden;
459
     * Switzerland; United Kingdom (UK) - Great Britain mainland; Ukraine; Vatican City State.
460
     * September 2020 adjustment. Replaces 2019 adjustment and EVRF2007 height (CRS code 5621). Uses Normal heights.
461
     * Zero-tide solution. See EVRF2019 mean-tide height (CRS code 9390) for solution more appropriate for oceanography
462
     * and GNSS-related activities.
463
     */
464
    public const EPSG_EVRF2019_HEIGHT = 'urn:ogc:def:crs:EPSG::9389';
465
466
    /**
467
     * EVRF2019 mean-tide height
468
     * Extent: Europe - onshore - Andorra; Austria; Belarus; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia;
469
     * Czechia; Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily;
470
     * Latvia; Liechtenstein; Lithuania; Luxembourg; Netherlands; North Macedonia; Norway; Poland; Portugal - mainland;
471
     * Romania; Russia – west of approximately 60°E; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden;
472
     * Switzerland; United Kingdom (UK) - Great Britain mainland; Ukraine; Vatican City State.
473
     * September 2020 adjustment. Replaces 2019 adjustment. Uses Normal heights. Mean-tide solution. See EVRF2019
474
     * height (CRS code 9389) for zero-tide solution more appropriate for gravity-related activities.
475
     */
476
    public const EPSG_EVRF2019_MEAN_TIDE_HEIGHT = 'urn:ogc:def:crs:EPSG::9390';
477
478
    /**
479
     * El Hierro height
480
     * Extent: Spain - Canary Islands - El Hierro onshore.
481
     */
482
    public const EPSG_EL_HIERRO_HEIGHT = 'urn:ogc:def:crs:EPSG::9401';
483
484
    /**
485
     * FCSVR10 height
486
     * Extent: Fehmarnbelt area of Denmark and Germany.
487
     */
488
    public const EPSG_FCSVR10_HEIGHT = 'urn:ogc:def:crs:EPSG::5597';
489
490
    /**
491
     * FVR09 height
492
     * Extent: Faroe Islands - onshore.
493
     * Introduced in 2010.
494
     */
495
    public const EPSG_FVR09_HEIGHT = 'urn:ogc:def:crs:EPSG::5317';
496
497
    /**
498
     * Fahud HD height
499
     * Extent: Oman - mainland onshore.
500
     * Replaced by PHD93 height (CRS code 5724) from 1993.
501
     */
502
    public const EPSG_FAHUD_HD_HEIGHT = 'urn:ogc:def:crs:EPSG::5725';
503
504
    /**
505
     * Fair Isle height
506
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Fair Isle onshore.
507
     * Replaced by ODN (Offshore) height (CRS code 7707) in 2016.
508
     */
509
    public const EPSG_FAIR_ISLE_HEIGHT = 'urn:ogc:def:crs:EPSG::5741';
510
511
    /**
512
     * Famagusta 1960 height
513
     * Extent: Cyprus - onshore.
514
     */
515
    public const EPSG_FAMAGUSTA_1960_HEIGHT = 'urn:ogc:def:crs:EPSG::7446';
516
517
    /**
518
     * Fao 1979 height
519
     * Extent: Iraq - onshore.
520
     * Replaces Fao height (CRS code 5751) for national map agency work in Iraq. At time of record creation some
521
     * irrigation project data still referenced to Fao. Usage in oil industry is uncertain.
522
     */
523
    public const EPSG_FAO_1979_HEIGHT = 'urn:ogc:def:crs:EPSG::3886';
524
525
    /**
526
     * Fao height
527
     * Extent: Iraq - onshore southeast; Iran - onshore northern Gulf coast and west bordering southeast Iraq.
528
     * Replaced by Bandar Abbas (CRS code 5752) in Iran and Fao 1979 (code 3886) in Iraq. At time of record creation
529
     * NIOC data in Ahwaz area of Iran and some irrigation project data in Iraq still usually referenced to Fao. Usage
530
     * in Iraqi oil industry uncertain.
531
     */
532
    public const EPSG_FAO_HEIGHT = 'urn:ogc:def:crs:EPSG::5751';
533
534
    /**
535
     * Flannan Isles height
536
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Flannan Isles onshore.
537
     * Replaced by ODN (Offshore) height (CRS code 7707) in 2016.
538
     */
539
    public const EPSG_FLANNAN_ISLES_HEIGHT = 'urn:ogc:def:crs:EPSG::5748';
540
541
    /**
542
     * Foula height
543
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Foula onshore.
544
     * Replaced by ODN (Offshore) height (CRS code 7707) in 2016.
545
     */
546
    public const EPSG_FOULA_HEIGHT = 'urn:ogc:def:crs:EPSG::5743';
547
548
    /**
549
     * Fuerteventura height
550
     * Extent: Spain - Canary Islands - Fuerteventura onshore.
551
     */
552
    public const EPSG_FUERTEVENTURA_HEIGHT = 'urn:ogc:def:crs:EPSG::9396';
553
554
    /**
555
     * GCVD54 height (ft)
556
     * Extent: Cayman Islands - Grand Cayman.
557
     */
558
    public const EPSG_GCVD54_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::6130';
559
560
    /**
561
     * GHA height
562
     * Extent: Austria.
563
     * For scientific purposes see EVRF2000 Austria height (CRS code 9274).
564
     */
565
    public const EPSG_GHA_HEIGHT = 'urn:ogc:def:crs:EPSG::5778';
566
567
    /**
568
     * GUVD04 height
569
     * Extent: Guam - onshore.
570
     * Replaces Guam 1963 height (CRS code 6639).
571
     */
572
    public const EPSG_GUVD04_HEIGHT = 'urn:ogc:def:crs:EPSG::6644';
573
574
    /**
575
     * GVR2000 height
576
     * Extent: Greenland - onshore and offshore between 59°N and 84°N and west of 10°W.
577
     * Replaced by GVR2016 height (CRS code 8267). GVR2000 is realized by gravimetric geoid model 2000 (transformation
578
     * code 8268) applied to GR96 (CRS code 4909).
579
     */
580
    public const EPSG_GVR2000_HEIGHT = 'urn:ogc:def:crs:EPSG::8266';
581
582
    /**
583
     * GVR2016 height
584
     * Extent: Greenland - onshore and offshore between 58°N and 85°N and west of 7°W.
585
     * Replaces GVR2000 height (CRS code 8266). GVR2016 is realized by gravimetric geoid model 2016 (transformation
586
     * code 8269) applied to GR96 (CRS code 4909).
587
     */
588
    public const EPSG_GVR2016_HEIGHT = 'urn:ogc:def:crs:EPSG::8267';
589
590
    /**
591
     * Genoa height
592
     * Extent: Italy - mainland (including San Marino and Vatican City State) and Sicily.
593
     */
594
    public const EPSG_GENOA_HEIGHT = 'urn:ogc:def:crs:EPSG::5214';
595
596
    /**
597
     * Gisborne 1926 height
598
     * Extent: New Zealand - North Island - Gisborne vertical CRS area.
599
     */
600
    public const EPSG_GISBORNE_1926_HEIGHT = 'urn:ogc:def:crs:EPSG::5762';
601
602
    /**
603
     * Gran Canaria height
604
     * Extent: Spain - Canary Islands - Gran Canaria onshore.
605
     */
606
    public const EPSG_GRAN_CANARIA_HEIGHT = 'urn:ogc:def:crs:EPSG::9397';
607
608
    /**
609
     * Guadeloupe 1951 height
610
     * Extent: Guadeloupe - onshore - Basse-Terre and Grande-Terre.
611
     * Replaced by Guadeloupe 1988 height (CRS code 5757).
612
     */
613
    public const EPSG_GUADELOUPE_1951_HEIGHT = 'urn:ogc:def:crs:EPSG::5795';
614
615
    /**
616
     * Guadeloupe 1988 height
617
     * Extent: Guadeloupe - onshore - Basse-Terre and Grande-Terre.
618
     * Replaces Guadeloupe 1951 height (CRS code 5795).
619
     */
620
    public const EPSG_GUADELOUPE_1988_HEIGHT = 'urn:ogc:def:crs:EPSG::5757';
621
622
    /**
623
     * Guam 1963 height
624
     * Extent: Guam - onshore.
625
     * Replaced by GUVD04 height (CRS code 6644).
626
     */
627
    public const EPSG_GUAM_1963_HEIGHT = 'urn:ogc:def:crs:EPSG::6639';
628
629
    /**
630
     * HAT height
631
     * Extent: World.
632
     * Not specific to any location or epoch.
633
     */
634
    public const EPSG_HAT_HEIGHT = 'urn:ogc:def:crs:EPSG::5872';
635
636
    /**
637
     * HHWLT height
638
     * Extent: World.
639
     * Not specific to any location or epoch.
640
     */
641
    public const EPSG_HHWLT_HEIGHT = 'urn:ogc:def:crs:EPSG::5871';
642
643
    /**
644
     * HKCD depth
645
     * Extent: China - Hong Kong - offshore.
646
     * Chart datum is 0.15 metres below Hong Kong Principal Datum (CRS code 5738) and 1.38m below MSL at Quarry Bay.
647
     */
648
    public const EPSG_HKCD_DEPTH = 'urn:ogc:def:crs:EPSG::5739';
649
650
    /**
651
     * HKPD depth
652
     * Extent: China - Hong Kong - onshore.
653
     */
654
    public const EPSG_HKPD_DEPTH = 'urn:ogc:def:crs:EPSG::7976';
655
656
    /**
657
     * HKPD height
658
     * Extent: China - Hong Kong - onshore.
659
     */
660
    public const EPSG_HKPD_HEIGHT = 'urn:ogc:def:crs:EPSG::5738';
661
662
    /**
663
     * HS2-VRF height
664
     * Extent: UK - HS2 phases 1 and 2a railway corridor from London to Birmingham, Lichfield and Crewe.
665
     * HS2-VRF height is equivalent to ODN height as historically realised through OSNet v2001 and OSGM02. After the
666
     * ODN realization was updated to be through OSNet v2009 and OSGM15, HS2-VRF height was introduced for backward
667
     * consistency.
668
     */
669
    public const EPSG_HS2_VRF_HEIGHT = 'urn:ogc:def:crs:EPSG::9303';
670
671
    /**
672
     * HVRS71 height
673
     * Extent: Croatia - onshore.
674
     * Replaces Trieste height (CRS code 5195).
675
     */
676
    public const EPSG_HVRS71_HEIGHT = 'urn:ogc:def:crs:EPSG::5610';
677
678
    /**
679
     * Ha Tien 1960 height
680
     * Extent: Cambodia - mainland onshore; Vietnam - mainland onshore.
681
     * In Vietnam replaced by Hon Dau height (CRS code 5727) from 1992.
682
     */
683
    public const EPSG_HA_TIEN_1960_HEIGHT = 'urn:ogc:def:crs:EPSG::5726';
684
685
    /**
686
     * High Water height
687
     * Extent: World.
688
     * Not specific to any location or epoch.
689
     */
690
    public const EPSG_HIGH_WATER_HEIGHT = 'urn:ogc:def:crs:EPSG::5874';
691
692
    /**
693
     * Hon Dau 1992 height
694
     * Extent: Vietnam - mainland onshore.
695
     * In Vietnam replaces Ha Tien height (CRS code 5726) from 1992.
696
     */
697
    public const EPSG_HON_DAU_1992_HEIGHT = 'urn:ogc:def:crs:EPSG::5727';
698
699
    /**
700
     * Horta height
701
     * Extent: Portugal - central Azores - Faial island onshore.
702
     */
703
    public const EPSG_HORTA_HEIGHT = 'urn:ogc:def:crs:EPSG::6181';
704
705
    /**
706
     * Huahine SAU 2001 height
707
     * Extent: French Polynesia - Society Islands - Huahine.
708
     * Part of NGPF (CRS code 5600).
709
     */
710
    public const EPSG_HUAHINE_SAU_2001_HEIGHT = 'urn:ogc:def:crs:EPSG::5605';
711
712
    /**
713
     * IGLD 1955 height
714
     * Extent: Canada and United States (USA) - Great Lakes basin and St Lawrence Seaway.
715
     * Replaces several earlier systems. Replaced by IGLD 1985 (CRS code 5609).
716
     */
717
    public const EPSG_IGLD_1955_HEIGHT = 'urn:ogc:def:crs:EPSG::5608';
718
719
    /**
720
     * IGLD 1985 height
721
     * Extent: Canada and United States (USA) - Great Lakes basin and St Lawrence Seaway.
722
     * Replaces IGLD 1955 (CRS code 5608).
723
     */
724
    public const EPSG_IGLD_1985_HEIGHT = 'urn:ogc:def:crs:EPSG::5609';
725
726
    /**
727
     * IGN 1966 height
728
     * Extent: French Polynesia - Society Islands - Tahiti.
729
     * Part of NGPF (CRS code 5600).
730
     */
731
    public const EPSG_IGN_1966_HEIGHT = 'urn:ogc:def:crs:EPSG::5601';
732
733
    /**
734
     * IGN 1988 LS height
735
     * Extent: Guadeloupe - onshore - Les Saintes.
736
     */
737
    public const EPSG_IGN_1988_LS_HEIGHT = 'urn:ogc:def:crs:EPSG::5616';
738
739
    /**
740
     * IGN 1988 MG height
741
     * Extent: Guadeloupe - onshore - Marie-Galante.
742
     */
743
    public const EPSG_IGN_1988_MG_HEIGHT = 'urn:ogc:def:crs:EPSG::5617';
744
745
    /**
746
     * IGN 1988 SB height
747
     * Extent: Guadeloupe - onshore - St Barthelemy island.
748
     */
749
    public const EPSG_IGN_1988_SB_HEIGHT = 'urn:ogc:def:crs:EPSG::5619';
750
751
    /**
752
     * IGN 1988 SM height
753
     * Extent: Guadeloupe - onshore - St Martin island.
754
     */
755
    public const EPSG_IGN_1988_SM_HEIGHT = 'urn:ogc:def:crs:EPSG::5620';
756
757
    /**
758
     * IGN 1992 LD height
759
     * Extent: Guadeloupe - onshore - La Desirade.
760
     * Replaced by IGN 2008 LD height (CRS code 9130).
761
     */
762
    public const EPSG_IGN_1992_LD_HEIGHT = 'urn:ogc:def:crs:EPSG::5618';
763
764
    /**
765
     * IGN 2008 LD height
766
     * Extent: Guadeloupe - onshore - La Desirade.
767
     * Replaces IGN 1992 LD height (CRS code 5618).
768
     */
769
    public const EPSG_IGN_2008_LD_HEIGHT = 'urn:ogc:def:crs:EPSG::9130';
770
771
    /**
772
     * INAGeoid2020 height
773
     * Extent: Indonesia - onshore and offshore.
774
     * Physical height component of national vertical control network (JKVN). Orthometric heights.
775
     */
776
    public const EPSG_INAGEOID2020_HEIGHT = 'urn:ogc:def:crs:EPSG::9471';
777
778
    /**
779
     * ISH2004 height
780
     * Extent: Iceland - onshore.
781
     * National system replacing older local systems from March 2011.
782
     */
783
    public const EPSG_ISH2004_HEIGHT = 'urn:ogc:def:crs:EPSG::8089';
784
785
    /**
786
     * ISLW depth
787
     * Extent: World.
788
     * Not specific to any location or epoch.
789
     */
790
    public const EPSG_ISLW_DEPTH = 'urn:ogc:def:crs:EPSG::5863';
791
792
    /**
793
     * Ibiza height
794
     * Extent: Spain - Balearic Islands - Ibiza and Formentera - onshore.
795
     */
796
    public const EPSG_IBIZA_HEIGHT = 'urn:ogc:def:crs:EPSG::9394';
797
798
    /**
799
     * Incheon height
800
     * Extent: Republic of Korea (South Korea) - mainland onshore.
801
     */
802
    public const EPSG_INCHEON_HEIGHT = 'urn:ogc:def:crs:EPSG::5193';
803
804
    /**
805
     * Instantaneous Water Level depth
806
     * Extent: World.
807
     * Depth relative to instantaneous water level uncorrected for tide. Not specific to any location or epoch.
808
     */
809
    public const EPSG_INSTANTANEOUS_WATER_LEVEL_DEPTH = 'urn:ogc:def:crs:EPSG::5831';
810
811
    /**
812
     * Instantaneous Water Level height
813
     * Extent: World.
814
     * Height relative to instantaneous water level uncorrected for tide. Not specific to any location or epoch.
815
     */
816
    public const EPSG_INSTANTANEOUS_WATER_LEVEL_HEIGHT = 'urn:ogc:def:crs:EPSG::5829';
817
818
    /**
819
     * JGD2000 (vertical) height
820
     * Extent: Japan - onshore mainland - Hokkaido, Honshu, Shikoku, Kyushu.
821
     * Replaced JSLD69 and JSLD72 (CRS codes 5723 and 6693) from April 2002. Replaced by JGD2011 (vertical) (CRS code
822
     * 6695) with effect from 21st October 2011.
823
     */
824
    public const EPSG_JGD2000_VERTICAL_HEIGHT = 'urn:ogc:def:crs:EPSG::6694';
825
826
    /**
827
     * JGD2011 (vertical) height
828
     * Extent: Japan - onshore mainland - Hokkaido, Honshu, Shikoku, Kyushu.
829
     * Replaces JGD2000 (vertical) (CRS code 6694) with effect from 21st October 2011.
830
     */
831
    public const EPSG_JGD2011_VERTICAL_HEIGHT = 'urn:ogc:def:crs:EPSG::6695';
832
833
    /**
834
     * JSLD69 height
835
     * Extent: Japan - onshore mainland - Honshu, Shikoku, Kyushu.
836
     * Replaces JSLD49. Replaced by JGD2000 (vertical) (CRS code 6694) with effect from April 2002.
837
     */
838
    public const EPSG_JSLD69_HEIGHT = 'urn:ogc:def:crs:EPSG::5723';
839
840
    /**
841
     * JSLD72 height
842
     * Extent: Japan - onshore mainland - Hokkaido.
843
     * Replaced by JGD2000 (vertical) (CRS code 6694) with effect from April 2002.
844
     */
845
    public const EPSG_JSLD72_HEIGHT = 'urn:ogc:def:crs:EPSG::6693';
846
847
    /**
848
     * Jamestown 1971 height
849
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
850
     * Replaced by SHVD2016 (CRS code 7890) from 2016.
851
     */
852
    public const EPSG_JAMESTOWN_1971_HEIGHT = 'urn:ogc:def:crs:EPSG::7888';
853
854
    /**
855
     * KOC CD height
856
     * Extent: Kuwait - onshore.
857
     */
858
    public const EPSG_KOC_CD_HEIGHT = 'urn:ogc:def:crs:EPSG::5790';
859
860
    /**
861
     * KOC WD depth
862
     * Extent: Kuwait - onshore.
863
     * See CRS code 5614 for equivalent system in feet.
864
     */
865
    public const EPSG_KOC_WD_DEPTH = 'urn:ogc:def:crs:EPSG::5789';
866
867
    /**
868
     * KOC WD depth (ft)
869
     * Extent: Kuwait - onshore.
870
     * See CRS code 5789 for equivalent system in feet.
871
     */
872
    public const EPSG_KOC_WD_DEPTH_FT = 'urn:ogc:def:crs:EPSG::5614';
873
874
    /**
875
     * KOC WD height
876
     * Extent: Kuwait - onshore.
877
     * See CRS code 5789 for equivalent depth system.
878
     */
879
    public const EPSG_KOC_WD_HEIGHT = 'urn:ogc:def:crs:EPSG::7979';
880
881
    /**
882
     * KSA-VRF14 height
883
     * Extent: Saudi Arabia - onshore.
884
     * Orthometric heights.
885
     */
886
    public const EPSG_KSA_VRF14_HEIGHT = 'urn:ogc:def:crs:EPSG::9335';
887
888
    /**
889
     * Kiunga height
890
     * Extent: Papua New Guinea - onshore south of 5°S and west of 144°E.
891
     * Kiunga height = WGS 84 ellipsoid height - value of geoid undulation derived by bilinear interpolation of EGM2008
892
     * geoid model - 3.0m = EGM2008 height - 3.0m.  See CRS code 3855 and transformation code 3858.
893
     */
894
    public const EPSG_KIUNGA_HEIGHT = 'urn:ogc:def:crs:EPSG::7652';
895
896
    /**
897
     * Kumul 34 height
898
     * Extent: Papua New Guinea - Papuan fold and thrust belt.
899
     * Kumul 34 height = WGS 84 ellipsoid height - value of geoid undulation derived by bilinear interpolation of EGM96
900
     * geoid model - 0.87m = EGM96 height - 0.87m. See CRS code 5773 and transformation code 10084.
901
     */
902
    public const EPSG_KUMUL_34_HEIGHT = 'urn:ogc:def:crs:EPSG::7651';
903
904
    /**
905
     * Kuwait PWD height
906
     * Extent: Kuwait - onshore.
907
     */
908
    public const EPSG_KUWAIT_PWD_HEIGHT = 'urn:ogc:def:crs:EPSG::5788';
909
910
    /**
911
     * LAS07 height
912
     * Extent: Lithuania - onshore.
913
     * In Lithuania replaces Baltic 1977 system (CRS code 5705) from January 2016.
914
     */
915
    public const EPSG_LAS07_HEIGHT = 'urn:ogc:def:crs:EPSG::9666';
916
917
    /**
918
     * LAT NL depth
919
     * Extent: Netherlands - offshore North Sea.
920
     */
921
    public const EPSG_LAT_NL_DEPTH = 'urn:ogc:def:crs:EPSG::9287';
922
923
    /**
924
     * LAT depth
925
     * Extent: World.
926
     * Not specific to any location or epoch.
927
     */
928
    public const EPSG_LAT_DEPTH = 'urn:ogc:def:crs:EPSG::5861';
929
930
    /**
931
     * LCVD61 height (ft)
932
     * Extent: Cayman Islands - Little Cayman.
933
     */
934
    public const EPSG_LCVD61_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::6131';
935
936
    /**
937
     * LHN95 height
938
     * Extent: Liechtenstein; Switzerland.
939
     * Replaces LN02 height (CRS code 5728).
940
     */
941
    public const EPSG_LHN95_HEIGHT = 'urn:ogc:def:crs:EPSG::5729';
942
943
    /**
944
     * LLWLT depth
945
     * Extent: World.
946
     * Not specific to any location or epoch.
947
     */
948
    public const EPSG_LLWLT_DEPTH = 'urn:ogc:def:crs:EPSG::5862';
949
950
    /**
951
     * LN02 height
952
     * Extent: Liechtenstein; Switzerland.
953
     * Replaced by LHN95 height (CRS code 5729).
954
     */
955
    public const EPSG_LN02_HEIGHT = 'urn:ogc:def:crs:EPSG::5728';
956
957
    /**
958
     * La Gomera height
959
     * Extent: Spain - Canary Islands - La Gomera onshore.
960
     */
961
    public const EPSG_LA_GOMERA_HEIGHT = 'urn:ogc:def:crs:EPSG::9399';
962
963
    /**
964
     * La Palma height
965
     * Extent: Spain - Canary Islands - La Palma onshore.
966
     */
967
    public const EPSG_LA_PALMA_HEIGHT = 'urn:ogc:def:crs:EPSG::9400';
968
969
    /**
970
     * Lagos 1955 height
971
     * Extent: Nigeria - onshore.
972
     */
973
    public const EPSG_LAGOS_1955_HEIGHT = 'urn:ogc:def:crs:EPSG::5796';
974
975
    /**
976
     * Lanzarote height
977
     * Extent: Spain - Canary Islands - Lanzarote onshore.
978
     */
979
    public const EPSG_LANZAROTE_HEIGHT = 'urn:ogc:def:crs:EPSG::9395';
980
981
    /**
982
     * Latvia 2000 height
983
     * Extent: Latvia - onshore.
984
     * In Latvia replaces Baltic 1977 system (CRS code 5705) from December 2014.
985
     */
986
    public const EPSG_LATVIA_2000_HEIGHT = 'urn:ogc:def:crs:EPSG::7700';
987
988
    /**
989
     * Lerwick height
990
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Shetland Islands onshore.
991
     */
992
    public const EPSG_LERWICK_HEIGHT = 'urn:ogc:def:crs:EPSG::5742';
993
994
    /**
995
     * Low Water depth
996
     * Extent: World.
997
     * Not specific to any location or epoch.
998
     */
999
    public const EPSG_LOW_WATER_DEPTH = 'urn:ogc:def:crs:EPSG::5873';
1000
1001
    /**
1002
     * Lyttelton 1937 height
1003
     * Extent: New Zealand - South Island - between approximately 41°20'S and 45°S - Lyttleton vertical CRS area.
1004
     */
1005
    public const EPSG_LYTTELTON_1937_HEIGHT = 'urn:ogc:def:crs:EPSG::5763';
1006
1007
    /**
1008
     * MHHW height
1009
     * Extent: World.
1010
     * Not specific to any location or epoch.
1011
     */
1012
    public const EPSG_MHHW_HEIGHT = 'urn:ogc:def:crs:EPSG::5869';
1013
1014
    /**
1015
     * MHW height
1016
     * Extent: World.
1017
     * Not specific to any location or epoch.
1018
     */
1019
    public const EPSG_MHW_HEIGHT = 'urn:ogc:def:crs:EPSG::5868';
1020
1021
    /**
1022
     * MHWS height
1023
     * Extent: World.
1024
     * Not specific to any location or epoch.
1025
     */
1026
    public const EPSG_MHWS_HEIGHT = 'urn:ogc:def:crs:EPSG::5870';
1027
1028
    /**
1029
     * MLLW depth
1030
     * Extent: World.
1031
     * Not specific to any location or epoch.
1032
     */
1033
    public const EPSG_MLLW_DEPTH = 'urn:ogc:def:crs:EPSG::5866';
1034
1035
    /**
1036
     * MLLWS depth
1037
     * Extent: World.
1038
     * Not specific to any location or epoch.
1039
     */
1040
    public const EPSG_MLLWS_DEPTH = 'urn:ogc:def:crs:EPSG::5864';
1041
1042
    /**
1043
     * MLW depth
1044
     * Extent: World.
1045
     * Not specific to any location or epoch.
1046
     */
1047
    public const EPSG_MLW_DEPTH = 'urn:ogc:def:crs:EPSG::5867';
1048
1049
    /**
1050
     * MLWS depth
1051
     * Extent: World.
1052
     * Not specific to any location or epoch.
1053
     */
1054
    public const EPSG_MLWS_DEPTH = 'urn:ogc:def:crs:EPSG::5865';
1055
1056
    /**
1057
     * MSL NL depth
1058
     * Extent: Netherlands - offshore North Sea.
1059
     */
1060
    public const EPSG_MSL_NL_DEPTH = 'urn:ogc:def:crs:EPSG::9288';
1061
1062
    /**
1063
     * MSL depth
1064
     * Extent: World.
1065
     * Not specific to any location or epoch.
1066
     */
1067
    public const EPSG_MSL_DEPTH = 'urn:ogc:def:crs:EPSG::5715';
1068
1069
    /**
1070
     * MSL depth (ft)
1071
     * Extent: World.
1072
     * Not specific to any location or epoch.
1073
     */
1074
    public const EPSG_MSL_DEPTH_FT = 'urn:ogc:def:crs:EPSG::8051';
1075
1076
    /**
1077
     * MSL depth (ftUS)
1078
     * Extent: United States (USA) - onshore and offshore.
1079
     * Not specific to any location or epoch.
1080
     */
1081
    public const EPSG_MSL_DEPTH_FTUS = 'urn:ogc:def:crs:EPSG::8053';
1082
1083
    /**
1084
     * MSL height
1085
     * Extent: World.
1086
     * Not specific to any location or epoch.
1087
     */
1088
    public const EPSG_MSL_HEIGHT = 'urn:ogc:def:crs:EPSG::5714';
1089
1090
    /**
1091
     * MSL height (ft)
1092
     * Extent: World.
1093
     * Not specific to any location or epoch.
1094
     */
1095
    public const EPSG_MSL_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::8050';
1096
1097
    /**
1098
     * MSL height (ftUS)
1099
     * Extent: United States (USA) - onshore and offshore.
1100
     * Not specific to any location or epoch.
1101
     */
1102
    public const EPSG_MSL_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8052';
1103
1104
    /**
1105
     * MVGC height
1106
     * Extent: Saudi Arabia - onshore.
1107
     */
1108
    public const EPSG_MVGC_HEIGHT = 'urn:ogc:def:crs:EPSG::8841';
1109
1110
    /**
1111
     * Macao height
1112
     * Extent: China - Macao - onshore and offshore.
1113
     */
1114
    public const EPSG_MACAO_HEIGHT = 'urn:ogc:def:crs:EPSG::8434';
1115
1116
    /**
1117
     * Malin Head height
1118
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
1119
     * Topographic mapping at all scales in Republic and medium and small scales in Northern Ireland. Belfast Lough
1120
     * height (CRS code 5732) used for large scale topographic mapping in Northern Ireland.
1121
     */
1122
    public const EPSG_MALIN_HEAD_HEIGHT = 'urn:ogc:def:crs:EPSG::5731';
1123
1124
    /**
1125
     * Mallorca height
1126
     * Extent: Spain - Balearic Islands - Mallorca onshore.
1127
     */
1128
    public const EPSG_MALLORCA_HEIGHT = 'urn:ogc:def:crs:EPSG::9392';
1129
1130
    /**
1131
     * Maputo height
1132
     * Extent: Mozambique - onshore.
1133
     */
1134
    public const EPSG_MAPUTO_HEIGHT = 'urn:ogc:def:crs:EPSG::5722';
1135
1136
    /**
1137
     * Martinique 1955 height
1138
     * Extent: Martinique - onshore.
1139
     * Replaced by Martinique 1987 height (CRS code 5756).
1140
     */
1141
    public const EPSG_MARTINIQUE_1955_HEIGHT = 'urn:ogc:def:crs:EPSG::5794';
1142
1143
    /**
1144
     * Martinique 1987 height
1145
     * Extent: Martinique - onshore.
1146
     * Replaces Martinique 1955 height (CRS code 5794).
1147
     */
1148
    public const EPSG_MARTINIQUE_1987_HEIGHT = 'urn:ogc:def:crs:EPSG::5756';
1149
1150
    /**
1151
     * Maupiti SAU 2001 height
1152
     * Extent: French Polynesia - Society Islands - Maupiti.
1153
     * Part of NGPF (CRS code 5600).
1154
     */
1155
    public const EPSG_MAUPITI_SAU_2001_HEIGHT = 'urn:ogc:def:crs:EPSG::5604';
1156
1157
    /**
1158
     * Mayotte 1950 height
1159
     * Extent: Mayotte - onshore.
1160
     */
1161
    public const EPSG_MAYOTTE_1950_HEIGHT = 'urn:ogc:def:crs:EPSG::5793';
1162
1163
    /**
1164
     * Menorca height
1165
     * Extent: Spain - Balearic Islands - Menorca onshore.
1166
     */
1167
    public const EPSG_MENORCA_HEIGHT = 'urn:ogc:def:crs:EPSG::9393';
1168
1169
    /**
1170
     * Moorea SAU 1981 height
1171
     * Extent: French Polynesia - Society Islands - Moorea.
1172
     * Part of NGPF (CRS code 5600).
1173
     */
1174
    public const EPSG_MOOREA_SAU_1981_HEIGHT = 'urn:ogc:def:crs:EPSG::5602';
1175
1176
    /**
1177
     * Moturiki 1953 height
1178
     * Extent: New Zealand - North Island - Moturiki vertical CRS area.
1179
     */
1180
    public const EPSG_MOTURIKI_1953_HEIGHT = 'urn:ogc:def:crs:EPSG::5764';
1181
1182
    /**
1183
     * N2000 height
1184
     * Extent: Finland - onshore.
1185
     * Replaces N43 height and N60 height (CRS codes 8675 and 5717).
1186
     */
1187
    public const EPSG_N2000_HEIGHT = 'urn:ogc:def:crs:EPSG::3900';
1188
1189
    /**
1190
     * N43 height
1191
     * Extent: Finland - onshore mainland south of approximately 66°N.
1192
     * Introduced during second national precise levelling as a temporary height system (or intended to be such).
1193
     * Replaced by N60 height (CRS code 5717).
1194
     */
1195
    public const EPSG_N43_HEIGHT = 'urn:ogc:def:crs:EPSG::8675';
1196
1197
    /**
1198
     * N60 height
1199
     * Extent: Finland - onshore.
1200
     * In use since 1968. Replaced by N2000 height (CRS code 3900).
1201
     */
1202
    public const EPSG_N60_HEIGHT = 'urn:ogc:def:crs:EPSG::5717';
1203
1204
    /**
1205
     * NAP height
1206
     * Extent: Netherlands - onshore and offshore.
1207
     * Use has been extended from Netherlands onshore to Netherlands onshore and offshore from 2018.
1208
     */
1209
    public const EPSG_NAP_HEIGHT = 'urn:ogc:def:crs:EPSG::5709';
1210
1211
    /**
1212
     * NAVD88 depth
1213
     * Extent: Mexico - onshore. United States (USA) - CONUS and Alaska - onshore - Alabama; Alaska; Arizona; Arkansas;
1214
     * California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky;
1215
     * Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska;
1216
     * Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon;
1217
     * Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington;
1218
     * West Virginia; Wisconsin; Wyoming.
1219
     */
1220
    public const EPSG_NAVD88_DEPTH = 'urn:ogc:def:crs:EPSG::6357';
1221
1222
    /**
1223
     * NAVD88 depth (ftUS)
1224
     * Extent: United States (USA) - CONUS and Alaska - onshore - Alabama; Alaska mainland; Arizona; Arkansas;
1225
     * California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky;
1226
     * Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska;
1227
     * Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon;
1228
     * Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington;
1229
     * West Virginia; Wisconsin; Wyoming.
1230
     * Replaces NGVD29 depth (ftUS) (CRS code 6359).
1231
     */
1232
    public const EPSG_NAVD88_DEPTH_FTUS = 'urn:ogc:def:crs:EPSG::6358';
1233
1234
    /**
1235
     * NAVD88 height
1236
     * Extent: Mexico - onshore. United States (USA) - CONUS and Alaska - onshore - Alabama; Alaska; Arizona; Arkansas;
1237
     * California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky;
1238
     * Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska;
1239
     * Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon;
1240
     * Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington;
1241
     * West Virginia; Wisconsin; Wyoming.
1242
     */
1243
    public const EPSG_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::5703';
1244
1245
    /**
1246
     * NAVD88 height (ft)
1247
     * Extent: United States (USA) - onshore - Arizona; Michigan; Montana; North Dakota; Oregon; South Carolina.
1248
     * Care: only for use as part of a compound CRS in conjunction with State Plane CS in States which have passed
1249
     * State Plane legislation in International feet (note: not US survet feet).
1250
     */
1251
    public const EPSG_NAVD88_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::8228';
1252
1253
    /**
1254
     * NAVD88 height (ftUS)
1255
     * Extent: United States (USA) - CONUS and Alaska - onshore - Alabama; Alaska mainland; Arizona; Arkansas;
1256
     * California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky;
1257
     * Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska;
1258
     * Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon;
1259
     * Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington;
1260
     * West Virginia; Wisconsin; Wyoming.
1261
     * Replaces NGVD29 height (ftUS) (CRS code 5702).
1262
     */
1263
    public const EPSG_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::6360';
1264
1265
    /**
1266
     * NG-L height
1267
     * Extent: Luxembourg.
1268
     */
1269
    public const EPSG_NG_L_HEIGHT = 'urn:ogc:def:crs:EPSG::5774';
1270
1271
    /**
1272
     * NGC 1948 height
1273
     * Extent: France - Corsica onshore.
1274
     * Replaced by IGN78 height (CRS code 5721).
1275
     */
1276
    public const EPSG_NGC_1948_HEIGHT = 'urn:ogc:def:crs:EPSG::5791';
1277
1278
    /**
1279
     * NGF Lallemand height
1280
     * Extent: France - mainland onshore.
1281
     * Generally but not entirely replaced by NGF IGN69 height (CRS code 5720).
1282
     */
1283
    public const EPSG_NGF_LALLEMAND_HEIGHT = 'urn:ogc:def:crs:EPSG::5719';
1284
1285
    /**
1286
     * NGF-IGN69 height
1287
     * Extent: France - mainland onshore.
1288
     * Generally but not entirely replaces NGF Lallemand height (CRS code 5719).
1289
     */
1290
    public const EPSG_NGF_IGN69_HEIGHT = 'urn:ogc:def:crs:EPSG::5720';
1291
1292
    /**
1293
     * NGF-IGN78 height
1294
     * Extent: France - Corsica onshore.
1295
     * Replaces NGC 1948 height (CRS code 5791).
1296
     */
1297
    public const EPSG_NGF_IGN78_HEIGHT = 'urn:ogc:def:crs:EPSG::5721';
1298
1299
    /**
1300
     * NGG1977 height
1301
     * Extent: French Guiana - onshore.
1302
     */
1303
    public const EPSG_NGG1977_HEIGHT = 'urn:ogc:def:crs:EPSG::5755';
1304
1305
    /**
1306
     * NGNC08 height
1307
     * Extent: New Caledonia - Belep, Grande Terre, Ile des Pins, Loyalty Islands (Lifou, Mare, Ouvea).
1308
     * On Grande Terre replaces NGNC69 (CRS code 5753).
1309
     */
1310
    public const EPSG_NGNC08_HEIGHT = 'urn:ogc:def:crs:EPSG::9351';
1311
1312
    /**
1313
     * NGNC69 height
1314
     * Extent: New Caledonia - Grande Terre.
1315
     * Replaced by NGNC08 height (CRS code 9351).
1316
     */
1317
    public const EPSG_NGNC69_HEIGHT = 'urn:ogc:def:crs:EPSG::5753';
1318
1319
    /**
1320
     * NGPF height
1321
     * Extent: French Polynesia - Society Islands - Bora Bora, Huahine, Maupiti, Moorea, Raiatea, Tahaa and Tahiti.
1322
     * The collection of heterogeneous vertical coordinate reference systems throughout the Society Islands of French
1323
     * Polynesia.
1324
     */
1325
    public const EPSG_NGPF_HEIGHT = 'urn:ogc:def:crs:EPSG::5600';
1326
1327
    /**
1328
     * NGVD29 depth (ftUS)
1329
     * Extent: United States (USA) - CONUS onshore - Alabama; Arizona; Arkansas; California; Colorado; Connecticut;
1330
     * Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland;
1331
     * Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey;
1332
     * New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South
1333
     * Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin;
1334
     * Wyoming.
1335
     * Replaced by NAVD88 depth (ftUS) (CRS code 6358).
1336
     */
1337
    public const EPSG_NGVD29_DEPTH_FTUS = 'urn:ogc:def:crs:EPSG::6359';
1338
1339
    /**
1340
     * NGVD29 height (ftUS)
1341
     * Extent: United States (USA) - CONUS onshore - Alabama; Arizona; Arkansas; California; Colorado; Connecticut;
1342
     * Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland;
1343
     * Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey;
1344
     * New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South
1345
     * Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin;
1346
     * Wyoming.
1347
     * Replaced by NAVD88 height (ftUS) (CRS code 6360).
1348
     */
1349
    public const EPSG_NGVD29_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::5702';
1350
1351
    /**
1352
     * NGVD29 height (m)
1353
     * Extent: United States (USA) - CONUS onshore - Alabama; Arizona; Arkansas; California; Colorado; Connecticut;
1354
     * Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland;
1355
     * Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey;
1356
     * New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South
1357
     * Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin;
1358
     * Wyoming.
1359
     * System defined by IOGP to allow transformation of heights to and from NGVD29. See CRS code 5702 for system in US
1360
     * survey feet in actual use.
1361
     */
1362
    public const EPSG_NGVD29_HEIGHT_M = 'urn:ogc:def:crs:EPSG::7968';
1363
1364
    /**
1365
     * NMVD03 height
1366
     * Extent: Northern Mariana Islands - onshore - Rota, Saipan and Tinian.
1367
     * Replaces all earlier vertical CRSs on these islands.
1368
     */
1369
    public const EPSG_NMVD03_HEIGHT = 'urn:ogc:def:crs:EPSG::6640';
1370
1371
    /**
1372
     * NN2000 height
1373
     * Extent: Norway - onshore.
1374
     * Replaces NN54 height (CRS code 5776).
1375
     */
1376
    public const EPSG_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5941';
1377
1378
    /**
1379
     * NN54 height
1380
     * Extent: Norway - onshore.
1381
     * Replaced by NN2000 height (CRS code 5941).
1382
     */
1383
    public const EPSG_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::5776';
1384
1385
    /**
1386
     * NVD 1992 height
1387
     * Extent: Bangladesh - onshore.
1388
     * Replaces PWD Datum.
1389
     */
1390
    public const EPSG_NVD_1992_HEIGHT = 'urn:ogc:def:crs:EPSG::9681';
1391
1392
    /**
1393
     * NZVD2009 height
1394
     * Extent: New Zealand - onshore and offshore. Includes Antipodes Islands, Auckland Islands, Bounty Islands,
1395
     * Chatham Islands, Cambell Island, Kermadec Islands, Raoul Island and Snares Islands.
1396
     * Replaced by NZVD2016 from 2016-06-27.
1397
     */
1398
    public const EPSG_NZVD2009_HEIGHT = 'urn:ogc:def:crs:EPSG::4440';
1399
1400
    /**
1401
     * NZVD2016 height
1402
     * Extent: New Zealand - onshore and offshore. Includes Antipodes Islands, Auckland Islands, Bounty Islands,
1403
     * Chatham Islands, Cambell Island, Kermadec Islands, Raoul Island and Snares Islands.
1404
     * Normal-orthometric heights. Replaces NZVD2009 height (CRS code 4440).
1405
     */
1406
    public const EPSG_NZVD2016_HEIGHT = 'urn:ogc:def:crs:EPSG::7839';
1407
1408
    /**
1409
     * Napier 1962 height
1410
     * Extent: New Zealand - North Island - Hawkes Bay meridional circuit and Napier vertical crs area.
1411
     */
1412
    public const EPSG_NAPIER_1962_HEIGHT = 'urn:ogc:def:crs:EPSG::5765';
1413
1414
    /**
1415
     * Nelson 1955 height
1416
     * Extent: New Zealand - South Island - north of approximately 42°20'S - Nelson vertical CRS area.
1417
     */
1418
    public const EPSG_NELSON_1955_HEIGHT = 'urn:ogc:def:crs:EPSG::5766';
1419
1420
    /**
1421
     * North Rona height
1422
     * Extent: United Kingdom (UK) - Great Britain - Scotland - North Rona onshore.
1423
     * Replaced by ODN (Offshore) height (CRS code 7707) in 2016.
1424
     */
1425
    public const EPSG_NORTH_RONA_HEIGHT = 'urn:ogc:def:crs:EPSG::5745';
1426
1427
    /**
1428
     * ODN (Offshore) height
1429
     * Extent: United Kingdom (UK) - offshore between 2km from shore and boundary of UKCS within 49°46'N to 61°01'N
1430
     * and 7°33'W to 3°33'E.
1431
     * Defined through OSGM geoid model (transformation code 7713). Replaces Fair Isle height, Flannan Isles height,
1432
     * Foula height, North Rona height, St Kilda height and Sule Skerry height (CRS codes 5741, 5748, 5743, 5745, 5747
1433
     * and 5744) from 2016.
1434
     */
1435
    public const EPSG_ODN_OFFSHORE_HEIGHT = 'urn:ogc:def:crs:EPSG::7707';
1436
1437
    /**
1438
     * ODN Orkney height
1439
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Orkney Islands onshore.
1440
     */
1441
    public const EPSG_ODN_ORKNEY_HEIGHT = 'urn:ogc:def:crs:EPSG::5740';
1442
1443
    /**
1444
     * ODN height
1445
     * Extent: United Kingdom (UK) - Great Britain onshore - England and Wales - mainland; Scotland - mainland and
1446
     * Inner Hebrides.
1447
     */
1448
    public const EPSG_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::5701';
1449
1450
    /**
1451
     * One Tree Point 1964 height
1452
     * Extent: New Zealand - North Island - One Tree Point vertical CRS area.
1453
     */
1454
    public const EPSG_ONE_TREE_POINT_1964_HEIGHT = 'urn:ogc:def:crs:EPSG::5767';
1455
1456
    /**
1457
     * Ostend height
1458
     * Extent: Belgium - onshore.
1459
     * No gravity corrections applied.
1460
     */
1461
    public const EPSG_OSTEND_HEIGHT = 'urn:ogc:def:crs:EPSG::5710';
1462
1463
    /**
1464
     * PHD93 height
1465
     * Extent: Oman - onshore. Includes Musandam and the Kuria Muria (Al Hallaniyah) islands.
1466
     * Replaces Fahud Height Datum height (CRS code 5725) from 1993.
1467
     */
1468
    public const EPSG_PHD93_HEIGHT = 'urn:ogc:def:crs:EPSG::5724';
1469
1470
    /**
1471
     * PNG08 height
1472
     * Extent: Papua New Guinea - between 0°N and 12°S and 140°E and 158°E - onshore and offshore.
1473
     * PNG08 height = PNG94 ellipsoidal height - value of geoid undulation derived by bilinear interpolation of PNG08
1474
     * geoid model (see transformation code 7655).
1475
     */
1476
    public const EPSG_PNG08_HEIGHT = 'urn:ogc:def:crs:EPSG::7447';
1477
1478
    /**
1479
     * POM08 height
1480
     * Extent: Papua New Guinea - onshore - Gulf province east of 144°24'E, Central province and National Capital
1481
     * District.
1482
     * POM08 height = WGS 84 ellipsoid height - value of geoid undulation derived by bilinear interpolation of EGM2008
1483
     * geoid model - 0.93m = EGM2008 height - 0.93m. See CRS code 3855 and transformation codes 3858 and 3859.
1484
     */
1485
    public const EPSG_POM08_HEIGHT = 'urn:ogc:def:crs:EPSG::7841';
1486
1487
    /**
1488
     * POM96 height
1489
     * Extent: Papua New Guinea - onshore - Gulf province east of 144°24'E, Central province and National Capital
1490
     * District.
1491
     * POM96 height = WGS 84 ellipsoid height - value of geoid undulation derived by bilinear interpolation of EGM96
1492
     * geoid model - 1.58m = EGM96 height - 1.58m. See CRS code 5773 and transformation code 10084.
1493
     */
1494
    public const EPSG_POM96_HEIGHT = 'urn:ogc:def:crs:EPSG::7832';
1495
1496
    /**
1497
     * PRVD02 height
1498
     * Extent: Puerto Rico - onshore.
1499
     * Replaces all earlier vertical CRSs for Puerto Rico.
1500
     */
1501
    public const EPSG_PRVD02_HEIGHT = 'urn:ogc:def:crs:EPSG::6641';
1502
1503
    /**
1504
     * Pago Pago 2020 height
1505
     * Extent: American Samoa - Tutuila island.
1506
     * Replaces ASVD02 height (CRS 6643) from March 2020.
1507
     */
1508
    public const EPSG_PAGO_PAGO_2020_HEIGHT = 'urn:ogc:def:crs:EPSG::9675';
1509
1510
    /**
1511
     * Piraeus height
1512
     * Extent: Greece - onshore.
1513
     */
1514
    public const EPSG_PIRAEUS_HEIGHT = 'urn:ogc:def:crs:EPSG::5716';
1515
1516
    /**
1517
     * Ponta Delgada height
1518
     * Extent: Portugal - eastern Azores - Sao Miguel island onshore.
1519
     */
1520
    public const EPSG_PONTA_DELGADA_HEIGHT = 'urn:ogc:def:crs:EPSG::6187';
1521
1522
    /**
1523
     * Poolbeg height (ft(Br36))
1524
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
1525
     * Topographic mapping before 1956 in Northern Ireland and 1970 in the Republic of Ireland. Replaced by Belfast
1526
     * Lough height and Malin Head height (CRS codes 5732 and 5731).
1527
     */
1528
    public const EPSG_POOLBEG_HEIGHT_FT_BR36 = 'urn:ogc:def:crs:EPSG::5754';
1529
1530
    /**
1531
     * Poolbeg height (m)
1532
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
1533
     * CRS in metres used only for transformation of heights referenced to Poolbeg height (ft). For CRS in feet see
1534
     * code 5754.
1535
     */
1536
    public const EPSG_POOLBEG_HEIGHT_M = 'urn:ogc:def:crs:EPSG::7962';
1537
1538
    /**
1539
     * RH00 height
1540
     * Extent: Sweden - onshore.
1541
     * Replaced by RH70 (CRS code 5718).
1542
     */
1543
    public const EPSG_RH00_HEIGHT = 'urn:ogc:def:crs:EPSG::5615';
1544
1545
    /**
1546
     * RH2000 height
1547
     * Extent: Sweden - onshore.
1548
     * Replaces RH70 (CRS code 5718) from 2005.
1549
     */
1550
    public const EPSG_RH2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5613';
1551
1552
    /**
1553
     * RH70 height
1554
     * Extent: Sweden - onshore.
1555
     * Replaces RH00 (CRS code 5615). Replaced by RH2000 (CRS code 5613) from 2005.
1556
     */
1557
    public const EPSG_RH70_HEIGHT = 'urn:ogc:def:crs:EPSG::5718';
1558
1559
    /**
1560
     * Raiatea SAU 2001 height
1561
     * Extent: French Polynesia - Society Islands - Raiatea.
1562
     * Part of NGPF (CRS code 5600).
1563
     */
1564
    public const EPSG_RAIATEA_SAU_2001_HEIGHT = 'urn:ogc:def:crs:EPSG::5603';
1565
1566
    /**
1567
     * Ras Ghumays height
1568
     * Extent: United Arab Emirates (UAE) - Abu Dhabi onshore.
1569
     */
1570
    public const EPSG_RAS_GHUMAYS_HEIGHT = 'urn:ogc:def:crs:EPSG::5843';
1571
1572
    /**
1573
     * Reunion 1989 height
1574
     * Extent: Reunion - onshore.
1575
     */
1576
    public const EPSG_REUNION_1989_HEIGHT = 'urn:ogc:def:crs:EPSG::5758';
1577
1578
    /**
1579
     * SA LLD height
1580
     * Extent: South Africa - mainland onshore.
1581
     */
1582
    public const EPSG_SA_LLD_HEIGHT = 'urn:ogc:def:crs:EPSG::9279';
1583
1584
    /**
1585
     * SHD height
1586
     * Extent: Singapore - onshore and offshore.
1587
     */
1588
    public const EPSG_SHD_HEIGHT = 'urn:ogc:def:crs:EPSG::6916';
1589
1590
    /**
1591
     * SHVD2015 height
1592
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
1593
     * Replaces Jamestown 1971 height and Tritan 2011 height (CRS codes 7888-89) from 2016.
1594
     */
1595
    public const EPSG_SHVD2015_HEIGHT = 'urn:ogc:def:crs:EPSG::7890';
1596
1597
    /**
1598
     * SLVD height
1599
     * Extent: Sri Lanka - onshore.
1600
     */
1601
    public const EPSG_SLVD_HEIGHT = 'urn:ogc:def:crs:EPSG::5237';
1602
1603
    /**
1604
     * SNN76 height
1605
     * Extent: Germany - states of former East Germany - Berlin, Brandenburg; Mecklenburg-Vorpommern; Sachsen;
1606
     * Sachsen-Anhalt; Thuringen.
1607
     * Replaced by DNNH92 height (CRS code 5783).
1608
     */
1609
    public const EPSG_SNN76_HEIGHT = 'urn:ogc:def:crs:EPSG::5785';
1610
1611
    /**
1612
     * SRB_VRS12 height
1613
     * Extent: Serbia including Vojvodina.
1614
     * Replaces Trieste height (CRS code 5195) in Serbia from 2012-03.
1615
     */
1616
    public const EPSG_SRB_VRS12_HEIGHT = 'urn:ogc:def:crs:EPSG::8691';
1617
1618
    /**
1619
     * SRVN16 height
1620
     * Extent: Argentina - onshore.
1621
     * Orthometric heights. Replaces SRVN71.
1622
     */
1623
    public const EPSG_SRVN16_HEIGHT = 'urn:ogc:def:crs:EPSG::9255';
1624
1625
    /**
1626
     * SVS2000 height
1627
     * Extent: Slovenia - onshore.
1628
     * Replaces Trieste height (CRS code 5195) in Slovenia from 2000. Replaced by SVS2010 (CRS code 8690) from 2019-01.
1629
     */
1630
    public const EPSG_SVS2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5779';
1631
1632
    /**
1633
     * SVS2010 height
1634
     * Extent: Slovenia - onshore.
1635
     * Replaces SVS2000 height (CRS code 5779) from 2019-01.
1636
     */
1637
    public const EPSG_SVS2010_HEIGHT = 'urn:ogc:def:crs:EPSG::8690';
1638
1639
    /**
1640
     * Santa Cruz da Graciosa height
1641
     * Extent: Portugal - central Azores - Graciosa island onshore.
1642
     */
1643
    public const EPSG_SANTA_CRUZ_DA_GRACIOSA_HEIGHT = 'urn:ogc:def:crs:EPSG::6183';
1644
1645
    /**
1646
     * Santa Cruz das Flores height
1647
     * Extent: Portugal - western Azores onshore - Flores, Corvo.
1648
     */
1649
    public const EPSG_SANTA_CRUZ_DAS_FLORES_HEIGHT = 'urn:ogc:def:crs:EPSG::6185';
1650
1651
    /**
1652
     * St. Helena Tritan 2011 height
1653
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
1654
     * Replaced by SHVD2016 (CRS code 7890) from 2016.
1655
     */
1656
    public const EPSG_ST_HELENA_TRITAN_2011_HEIGHT = 'urn:ogc:def:crs:EPSG::7889';
1657
1658
    /**
1659
     * St. Kilda height
1660
     * Extent: United Kingdom (UK) - Great Britain - Scotland - St Kilda onshore.
1661
     * Replaced by ODN (Offshore) height (CRS code 7707) in 2016.
1662
     */
1663
    public const EPSG_ST_KILDA_HEIGHT = 'urn:ogc:def:crs:EPSG::5747';
1664
1665
    /**
1666
     * St. Marys height
1667
     * Extent: United Kingdom (UK) - Great Britain - England - Isles of Scilly onshore.
1668
     */
1669
    public const EPSG_ST_MARYS_HEIGHT = 'urn:ogc:def:crs:EPSG::5749';
1670
1671
    /**
1672
     * Stewart Island 1977 height
1673
     * Extent: New Zealand - Stewart Island.
1674
     */
1675
    public const EPSG_STEWART_ISLAND_1977_HEIGHT = 'urn:ogc:def:crs:EPSG::5772';
1676
1677
    /**
1678
     * Stornoway height
1679
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Outer Hebrides onshore.
1680
     */
1681
    public const EPSG_STORNOWAY_HEIGHT = 'urn:ogc:def:crs:EPSG::5746';
1682
1683
    /**
1684
     * Sule Skerry height
1685
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Sule Skerry onshore.
1686
     * Replaced by ODN (Offshore) height (CRS code 7707) in 2016.
1687
     */
1688
    public const EPSG_SULE_SKERRY_HEIGHT = 'urn:ogc:def:crs:EPSG::5744';
1689
1690
    /**
1691
     * TWVD 2001 height
1692
     * Extent: Taiwan, Republic of China - onshore - Taiwan Island.
1693
     * Replaces TWVD79.
1694
     */
1695
    public const EPSG_TWVD_2001_HEIGHT = 'urn:ogc:def:crs:EPSG::8904';
1696
1697
    /**
1698
     * Tahaa SAU 2001 height
1699
     * Extent: French Polynesia - Society Islands - Tahaa.
1700
     * Part of NGPF (CRS code 5600).
1701
     */
1702
    public const EPSG_TAHAA_SAU_2001_HEIGHT = 'urn:ogc:def:crs:EPSG::5606';
1703
1704
    /**
1705
     * Taranaki 1970 height
1706
     * Extent: New Zealand - North Island - Taranaki vertical CRS area.
1707
     */
1708
    public const EPSG_TARANAKI_1970_HEIGHT = 'urn:ogc:def:crs:EPSG::5769';
1709
1710
    /**
1711
     * Tararu 1952 height
1712
     * Extent: New Zealand - North Island - Tararu vertical CRS area.
1713
     */
1714
    public const EPSG_TARARU_1952_HEIGHT = 'urn:ogc:def:crs:EPSG::5768';
1715
1716
    /**
1717
     * Tenerife height
1718
     * Extent: Spain - Canary Islands - Tenerife onshore.
1719
     */
1720
    public const EPSG_TENERIFE_HEIGHT = 'urn:ogc:def:crs:EPSG::9398';
1721
1722
    /**
1723
     * Trieste height
1724
     * Extent: Bosnia and Herzegovina; Croatia - onshore; Kosovo; Montenegro - onshore; North Macedonia; Serbia;
1725
     * Slovenia - onshore.
1726
     * In Croatia replaced by HVRS71 height (CRS code 5610). In Serbia replaced by SRB_VRS12 height (CRS code 8691). In
1727
     * Slovenia replaced by SVS2000 height (CRS code 5779).
1728
     */
1729
    public const EPSG_TRIESTE_HEIGHT = 'urn:ogc:def:crs:EPSG::5195';
1730
1731
    /**
1732
     * Tutuila 1962 height
1733
     * Extent: American Samoa - Tutuila island.
1734
     * Replaced by ASVD02 height (CRS code 6643).
1735
     */
1736
    public const EPSG_TUTUILA_1962_HEIGHT = 'urn:ogc:def:crs:EPSG::6638';
1737
1738
    /**
1739
     * VIVD09 height
1740
     * Extent: US Virgin Islands - onshore - St Croix, St John, and St Thomas.
1741
     * Replaces all earlier vertical CRSs on these islands.
1742
     */
1743
    public const EPSG_VIVD09_HEIGHT = 'urn:ogc:def:crs:EPSG::6642';
1744
1745
    /**
1746
     * Vienna height
1747
     * Extent: Austria - Vienna city state.
1748
     * Defined from GHA height (EPSG:5778) using a vertical offset (Wiener Null is 156.68m above GHA height).
1749
     */
1750
    public const EPSG_VIENNA_HEIGHT = 'urn:ogc:def:crs:EPSG::8881';
1751
1752
    /**
1753
     * Wellington 1953 height
1754
     * Extent: New Zealand - North Island - Wellington vertical CRS area.
1755
     */
1756
    public const EPSG_WELLINGTON_1953_HEIGHT = 'urn:ogc:def:crs:EPSG::5770';
1757
1758
    /**
1759
     * Yellow Sea 1956 height
1760
     * Extent: China - onshore.
1761
     * Replaced by Yellow Sea 1985 height (CRS code 5737).
1762
     */
1763
    public const EPSG_YELLOW_SEA_1956_HEIGHT = 'urn:ogc:def:crs:EPSG::5736';
1764
1765
    /**
1766
     * Yellow Sea 1985 height
1767
     * Extent: China - onshore.
1768
     * Replaces Yellow Sea 1956 height (CRS code 5736).
1769
     */
1770
    public const EPSG_YELLOW_SEA_1985_HEIGHT = 'urn:ogc:def:crs:EPSG::5737';
1771
1772
    protected static $sridData = [
1773
        'urn:ogc:def:crs:EPSG::3855' => [
1774
            'name' => 'EGM2008 height',
1775
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1776
            'datum' => 'urn:ogc:def:datum:EPSG::1027',
1777
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
1778
            'bounding_box_crosses_antimeridian' => false,
1779
        ],
1780
        'urn:ogc:def:crs:EPSG::3886' => [
1781
            'name' => 'Fao 1979 height',
1782
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1783
            'datum' => 'urn:ogc:def:datum:EPSG::1028',
1784
            'bounding_box' => [[38.79, 29.06], [38.79, 37.39], [48.61, 37.39], [48.61, 29.06]],
1785
            'bounding_box_crosses_antimeridian' => false,
1786
        ],
1787
        'urn:ogc:def:crs:EPSG::3900' => [
1788
            'name' => 'N2000 height',
1789
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1790
            'datum' => 'urn:ogc:def:datum:EPSG::1030',
1791
            'bounding_box' => [[19.24, 59.75], [19.24, 70.09], [31.59, 70.09], [31.59, 59.75]],
1792
            'bounding_box_crosses_antimeridian' => false,
1793
        ],
1794
        'urn:ogc:def:crs:EPSG::4440' => [
1795
            'name' => 'NZVD2009 height',
1796
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1797
            'datum' => 'urn:ogc:def:datum:EPSG::1039',
1798
            'bounding_box' => [[160.6, -55.95], [160.6, -25.88], [-171.2, -25.88], [-171.2, -55.95]],
1799
            'bounding_box_crosses_antimeridian' => true,
1800
        ],
1801
        'urn:ogc:def:crs:EPSG::4458' => [
1802
            'name' => 'Dunedin-Bluff 1960 height',
1803
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1804
            'datum' => 'urn:ogc:def:datum:EPSG::1040',
1805
            'bounding_box' => [[166.37, -46.73], [166.37, -44.52], [169.95, -44.52], [169.95, -46.73]],
1806
            'bounding_box_crosses_antimeridian' => false,
1807
        ],
1808
        'urn:ogc:def:crs:EPSG::5193' => [
1809
            'name' => 'Incheon height',
1810
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1811
            'datum' => 'urn:ogc:def:datum:EPSG::1049',
1812
            'bounding_box' => [[125.75, 33.96], [125.75, 38.64], [129.65, 38.64], [129.65, 33.96]],
1813
            'bounding_box_crosses_antimeridian' => false,
1814
        ],
1815
        'urn:ogc:def:crs:EPSG::5195' => [
1816
            'name' => 'Trieste height',
1817
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1818
            'datum' => 'urn:ogc:def:datum:EPSG::1050',
1819
            'bounding_box' => [[13.383471488953, 40.855888366699], [13.383471488953, 46.876247406006], [23.030969619751, 46.876247406006], [23.030969619751, 40.855888366699]],
1820
            'bounding_box_crosses_antimeridian' => false,
1821
        ],
1822
        'urn:ogc:def:crs:EPSG::5214' => [
1823
            'name' => 'Genoa height',
1824
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1825
            'datum' => 'urn:ogc:def:datum:EPSG::1051',
1826
            'bounding_box' => [[6.62, 36.59], [6.62, 47.1], [18.58, 47.1], [18.58, 36.59]],
1827
            'bounding_box_crosses_antimeridian' => false,
1828
        ],
1829
        'urn:ogc:def:crs:EPSG::5237' => [
1830
            'name' => 'SLVD height',
1831
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1832
            'datum' => 'urn:ogc:def:datum:EPSG::1054',
1833
            'bounding_box' => [[79.64, 5.86], [79.64, 9.880000000000001], [81.95, 9.880000000000001], [81.95, 5.86]],
1834
            'bounding_box_crosses_antimeridian' => false,
1835
        ],
1836
        'urn:ogc:def:crs:EPSG::5317' => [
1837
            'name' => 'FVR09 height',
1838
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1839
            'datum' => 'urn:ogc:def:datum:EPSG::1059',
1840
            'bounding_box' => [[-7.49, 61.33], [-7.49, 62.41], [-6.33, 62.41], [-6.33, 61.33]],
1841
            'bounding_box_crosses_antimeridian' => false,
1842
        ],
1843
        'urn:ogc:def:crs:EPSG::5336' => [
1844
            'name' => 'Black Sea depth',
1845
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
1846
            'datum' => 'urn:ogc:def:datum:EPSG::5134',
1847
            'bounding_box' => [[39.99, 41.04], [39.99, 43.59], [46.72, 43.59], [46.72, 41.04]],
1848
            'bounding_box_crosses_antimeridian' => false,
1849
        ],
1850
        'urn:ogc:def:crs:EPSG::5597' => [
1851
            'name' => 'FCSVR10 height',
1852
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1853
            'datum' => 'urn:ogc:def:datum:EPSG::1079',
1854
            'bounding_box' => [[11.17, 54.42], [11.17, 54.76], [11.51, 54.76], [11.51, 54.42]],
1855
            'bounding_box_crosses_antimeridian' => false,
1856
        ],
1857
        'urn:ogc:def:crs:EPSG::5600' => [
1858
            'name' => 'NGPF height',
1859
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1860
            'datum' => 'urn:ogc:def:datum:EPSG::5195',
1861
            'bounding_box' => [[-152.39, -17.93], [-152.39, -16.17], [-149.09, -16.17], [-149.09, -17.93]],
1862
            'bounding_box_crosses_antimeridian' => false,
1863
        ],
1864
        'urn:ogc:def:crs:EPSG::5601' => [
1865
            'name' => 'IGN 1966 height',
1866
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1867
            'datum' => 'urn:ogc:def:datum:EPSG::5196',
1868
            'bounding_box' => [[-149.7, -17.93], [-149.7, -17.44], [-149.09, -17.44], [-149.09, -17.93]],
1869
            'bounding_box_crosses_antimeridian' => false,
1870
        ],
1871
        'urn:ogc:def:crs:EPSG::5602' => [
1872
            'name' => 'Moorea SAU 1981 height',
1873
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1874
            'datum' => 'urn:ogc:def:datum:EPSG::5197',
1875
            'bounding_box' => [[-150.0, -17.63], [-150.0, -17.41], [-149.73, -17.41], [-149.73, -17.63]],
1876
            'bounding_box_crosses_antimeridian' => false,
1877
        ],
1878
        'urn:ogc:def:crs:EPSG::5603' => [
1879
            'name' => 'Raiatea SAU 2001 height',
1880
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1881
            'datum' => 'urn:ogc:def:datum:EPSG::5198',
1882
            'bounding_box' => [[-151.55, -16.96], [-151.55, -16.68], [-151.3, -16.68], [-151.3, -16.96]],
1883
            'bounding_box_crosses_antimeridian' => false,
1884
        ],
1885
        'urn:ogc:def:crs:EPSG::5604' => [
1886
            'name' => 'Maupiti SAU 2001 height',
1887
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1888
            'datum' => 'urn:ogc:def:datum:EPSG::5199',
1889
            'bounding_box' => [[-152.39, -16.57], [-152.39, -16.34], [-152.14, -16.34], [-152.14, -16.57]],
1890
            'bounding_box_crosses_antimeridian' => false,
1891
        ],
1892
        'urn:ogc:def:crs:EPSG::5605' => [
1893
            'name' => 'Huahine SAU 2001 height',
1894
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1895
            'datum' => 'urn:ogc:def:datum:EPSG::5200',
1896
            'bounding_box' => [[-151.11, -16.87], [-151.11, -16.63], [-150.89, -16.63], [-150.89, -16.87]],
1897
            'bounding_box_crosses_antimeridian' => false,
1898
        ],
1899
        'urn:ogc:def:crs:EPSG::5606' => [
1900
            'name' => 'Tahaa SAU 2001 height',
1901
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1902
            'datum' => 'urn:ogc:def:datum:EPSG::5201',
1903
            'bounding_box' => [[-151.63, -16.72], [-151.63, -16.5], [-151.36, -16.5], [-151.36, -16.72]],
1904
            'bounding_box_crosses_antimeridian' => false,
1905
        ],
1906
        'urn:ogc:def:crs:EPSG::5607' => [
1907
            'name' => 'Bora Bora SAU 2001 height',
1908
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1909
            'datum' => 'urn:ogc:def:datum:EPSG::5202',
1910
            'bounding_box' => [[-151.86, -16.62], [-151.86, -16.39], [-151.61, -16.39], [-151.61, -16.62]],
1911
            'bounding_box_crosses_antimeridian' => false,
1912
        ],
1913
        'urn:ogc:def:crs:EPSG::5608' => [
1914
            'name' => 'IGLD 1955 height',
1915
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1916
            'datum' => 'urn:ogc:def:datum:EPSG::5204',
1917
            'bounding_box' => [[-93.17, 40.99], [-93.17, 52.22], [-54.75, 52.22], [-54.75, 40.99]],
1918
            'bounding_box_crosses_antimeridian' => false,
1919
        ],
1920
        'urn:ogc:def:crs:EPSG::5609' => [
1921
            'name' => 'IGLD 1985 height',
1922
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1923
            'datum' => 'urn:ogc:def:datum:EPSG::5205',
1924
            'bounding_box' => [[-93.17, 40.99], [-93.17, 52.22], [-54.75, 52.22], [-54.75, 40.99]],
1925
            'bounding_box_crosses_antimeridian' => false,
1926
        ],
1927
        'urn:ogc:def:crs:EPSG::5610' => [
1928
            'name' => 'HVRS71 height',
1929
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1930
            'datum' => 'urn:ogc:def:datum:EPSG::5207',
1931
            'bounding_box' => [[13.43, 42.34], [13.43, 46.54], [19.43, 46.54], [19.43, 42.34]],
1932
            'bounding_box_crosses_antimeridian' => false,
1933
        ],
1934
        'urn:ogc:def:crs:EPSG::5611' => [
1935
            'name' => 'Caspian height',
1936
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1937
            'datum' => 'urn:ogc:def:datum:EPSG::5106',
1938
            'bounding_box' => [[46.95, 37.35], [46.95, 46.97], [53.93, 46.97], [53.93, 37.35]],
1939
            'bounding_box_crosses_antimeridian' => false,
1940
        ],
1941
        'urn:ogc:def:crs:EPSG::5612' => [
1942
            'name' => 'Baltic 1977 depth',
1943
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
1944
            'datum' => 'urn:ogc:def:datum:EPSG::5105',
1945
            'bounding_box' => [[19.57, 35.14], [19.57, 81.91], [-168.97, 81.91], [-168.97, 35.14]],
1946
            'bounding_box_crosses_antimeridian' => true,
1947
        ],
1948
        'urn:ogc:def:crs:EPSG::5613' => [
1949
            'name' => 'RH2000 height',
1950
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1951
            'datum' => 'urn:ogc:def:datum:EPSG::5208',
1952
            'bounding_box' => [[10.93, 55.28], [10.93, 69.06999999999999], [24.17, 69.06999999999999], [24.17, 55.28]],
1953
            'bounding_box_crosses_antimeridian' => false,
1954
        ],
1955
        'urn:ogc:def:crs:EPSG::5614' => [
1956
            'name' => 'KOC WD depth (ft)',
1957
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6495',
1958
            'datum' => 'urn:ogc:def:datum:EPSG::5187',
1959
            'bounding_box' => [[46.54, 28.53], [46.54, 30.09], [48.48, 30.09], [48.48, 28.53]],
1960
            'bounding_box_crosses_antimeridian' => false,
1961
        ],
1962
        'urn:ogc:def:crs:EPSG::5615' => [
1963
            'name' => 'RH00 height',
1964
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1965
            'datum' => 'urn:ogc:def:datum:EPSG::5209',
1966
            'bounding_box' => [[10.93, 55.28], [10.93, 69.06999999999999], [24.17, 69.06999999999999], [24.17, 55.28]],
1967
            'bounding_box_crosses_antimeridian' => false,
1968
        ],
1969
        'urn:ogc:def:crs:EPSG::5616' => [
1970
            'name' => 'IGN 1988 LS height',
1971
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1972
            'datum' => 'urn:ogc:def:datum:EPSG::5210',
1973
            'bounding_box' => [[-61.68, 15.8], [-61.68, 15.94], [-61.52, 15.94], [-61.52, 15.8]],
1974
            'bounding_box_crosses_antimeridian' => false,
1975
        ],
1976
        'urn:ogc:def:crs:EPSG::5617' => [
1977
            'name' => 'IGN 1988 MG height',
1978
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1979
            'datum' => 'urn:ogc:def:datum:EPSG::5211',
1980
            'bounding_box' => [[-61.39, 15.8], [-61.39, 16.05], [-61.13, 16.05], [-61.13, 15.8]],
1981
            'bounding_box_crosses_antimeridian' => false,
1982
        ],
1983
        'urn:ogc:def:crs:EPSG::5618' => [
1984
            'name' => 'IGN 1992 LD height',
1985
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1986
            'datum' => 'urn:ogc:def:datum:EPSG::5212',
1987
            'bounding_box' => [[-61.13, 16.26], [-61.13, 16.38], [-60.97, 16.38], [-60.97, 16.26]],
1988
            'bounding_box_crosses_antimeridian' => false,
1989
        ],
1990
        'urn:ogc:def:crs:EPSG::5619' => [
1991
            'name' => 'IGN 1988 SB height',
1992
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
1993
            'datum' => 'urn:ogc:def:datum:EPSG::5213',
1994
            'bounding_box' => [[-62.92, 17.82], [-62.92, 17.98], [-62.73, 17.98], [-62.73, 17.82]],
1995
            'bounding_box_crosses_antimeridian' => false,
1996
        ],
1997
        'urn:ogc:def:crs:EPSG::5620' => [
1998
            'name' => 'IGN 1988 SM height',
1999
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2000
            'datum' => 'urn:ogc:def:datum:EPSG::5214',
2001
            'bounding_box' => [[-63.21, 18.01], [-63.21, 18.17], [-62.96, 18.17], [-62.96, 18.01]],
2002
            'bounding_box_crosses_antimeridian' => false,
2003
        ],
2004
        'urn:ogc:def:crs:EPSG::5621' => [
2005
            'name' => 'EVRF2007 height',
2006
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2007
            'datum' => 'urn:ogc:def:datum:EPSG::5215',
2008
            'bounding_box' => [[-9.56, 35.95], [-9.56, 71.20999999999999], [31.59, 71.20999999999999], [31.59, 35.95]],
2009
            'bounding_box_crosses_antimeridian' => false,
2010
        ],
2011
        'urn:ogc:def:crs:EPSG::5701' => [
2012
            'name' => 'ODN height',
2013
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2014
            'datum' => 'urn:ogc:def:datum:EPSG::5101',
2015
            'bounding_box' => [[-7.06, 49.93], [-7.06, 58.71], [1.8, 58.71], [1.8, 49.93]],
2016
            'bounding_box_crosses_antimeridian' => false,
2017
        ],
2018
        'urn:ogc:def:crs:EPSG::5702' => [
2019
            'name' => 'NGVD29 height (ftUS)',
2020
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6497',
2021
            'datum' => 'urn:ogc:def:datum:EPSG::5102',
2022
            'bounding_box' => [[-124.79, 24.41], [-124.79, 49.38], [-66.91, 49.38], [-66.91, 24.41]],
2023
            'bounding_box_crosses_antimeridian' => false,
2024
        ],
2025
        'urn:ogc:def:crs:EPSG::5703' => [
2026
            'name' => 'NAVD88 height',
2027
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2028
            'datum' => 'urn:ogc:def:datum:EPSG::5103',
2029
            'bounding_box' => [[172.42871284485, 14.515261702227], [172.42871284485, 71.396817302681], [-66.91700744628901, 71.396817302681], [-66.91700744628901, 14.515261702227]],
2030
            'bounding_box_crosses_antimeridian' => true,
2031
        ],
2032
        'urn:ogc:def:crs:EPSG::5705' => [
2033
            'name' => 'Baltic 1977 height',
2034
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2035
            'datum' => 'urn:ogc:def:datum:EPSG::5105',
2036
            'bounding_box' => [[19.57, 35.14], [19.57, 81.91], [-168.97, 81.91], [-168.97, 35.14]],
2037
            'bounding_box_crosses_antimeridian' => true,
2038
        ],
2039
        'urn:ogc:def:crs:EPSG::5706' => [
2040
            'name' => 'Caspian depth',
2041
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
2042
            'datum' => 'urn:ogc:def:datum:EPSG::5106',
2043
            'bounding_box' => [[46.95, 37.35], [46.95, 46.97], [53.93, 46.97], [53.93, 37.35]],
2044
            'bounding_box_crosses_antimeridian' => false,
2045
        ],
2046
        'urn:ogc:def:crs:EPSG::5709' => [
2047
            'name' => 'NAP height',
2048
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2049
            'datum' => 'urn:ogc:def:datum:EPSG::5109',
2050
            'bounding_box' => [[2.53, 50.75], [2.53, 55.77], [7.22, 55.77], [7.22, 50.75]],
2051
            'bounding_box_crosses_antimeridian' => false,
2052
        ],
2053
        'urn:ogc:def:crs:EPSG::5710' => [
2054
            'name' => 'Ostend height',
2055
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2056
            'datum' => 'urn:ogc:def:datum:EPSG::5110',
2057
            'bounding_box' => [[2.5, 49.5], [2.5, 51.51], [6.4, 51.51], [6.4, 49.5]],
2058
            'bounding_box_crosses_antimeridian' => false,
2059
        ],
2060
        'urn:ogc:def:crs:EPSG::5711' => [
2061
            'name' => 'AHD height',
2062
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2063
            'datum' => 'urn:ogc:def:datum:EPSG::5111',
2064
            'bounding_box' => [[96.76000000000001, -43.7], [96.76000000000001, -9.859999999999999], [153.69, -9.859999999999999], [153.69, -43.7]],
2065
            'bounding_box_crosses_antimeridian' => false,
2066
        ],
2067
        'urn:ogc:def:crs:EPSG::5712' => [
2068
            'name' => 'AHD (Tasmania) height',
2069
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2070
            'datum' => 'urn:ogc:def:datum:EPSG::5112',
2071
            'bounding_box' => [[144.55, -43.7], [144.55, -40.24], [148.44, -40.24], [148.44, -43.7]],
2072
            'bounding_box_crosses_antimeridian' => false,
2073
        ],
2074
        'urn:ogc:def:crs:EPSG::5713' => [
2075
            'name' => 'CGVD28 height',
2076
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2077
            'datum' => 'urn:ogc:def:datum:EPSG::5114',
2078
            'bounding_box' => [[-141.01, 41.67], [-141.01, 69.8], [-59.73, 69.8], [-59.73, 41.67]],
2079
            'bounding_box_crosses_antimeridian' => false,
2080
        ],
2081
        'urn:ogc:def:crs:EPSG::5714' => [
2082
            'name' => 'MSL height',
2083
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2084
            'datum' => 'urn:ogc:def:datum:EPSG::5100',
2085
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2086
            'bounding_box_crosses_antimeridian' => false,
2087
        ],
2088
        'urn:ogc:def:crs:EPSG::5715' => [
2089
            'name' => 'MSL depth',
2090
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
2091
            'datum' => 'urn:ogc:def:datum:EPSG::5100',
2092
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2093
            'bounding_box_crosses_antimeridian' => false,
2094
        ],
2095
        'urn:ogc:def:crs:EPSG::5716' => [
2096
            'name' => 'Piraeus height',
2097
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2098
            'datum' => 'urn:ogc:def:datum:EPSG::5115',
2099
            'bounding_box' => [[19.57, 34.88], [19.57, 41.75], [28.3, 41.75], [28.3, 34.88]],
2100
            'bounding_box_crosses_antimeridian' => false,
2101
        ],
2102
        'urn:ogc:def:crs:EPSG::5717' => [
2103
            'name' => 'N60 height',
2104
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2105
            'datum' => 'urn:ogc:def:datum:EPSG::5116',
2106
            'bounding_box' => [[19.24, 59.75], [19.24, 70.09], [31.59, 70.09], [31.59, 59.75]],
2107
            'bounding_box_crosses_antimeridian' => false,
2108
        ],
2109
        'urn:ogc:def:crs:EPSG::5718' => [
2110
            'name' => 'RH70 height',
2111
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2112
            'datum' => 'urn:ogc:def:datum:EPSG::5117',
2113
            'bounding_box' => [[10.93, 55.28], [10.93, 69.06999999999999], [24.17, 69.06999999999999], [24.17, 55.28]],
2114
            'bounding_box_crosses_antimeridian' => false,
2115
        ],
2116
        'urn:ogc:def:crs:EPSG::5719' => [
2117
            'name' => 'NGF Lallemand height',
2118
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2119
            'datum' => 'urn:ogc:def:datum:EPSG::5118',
2120
            'bounding_box' => [[-4.87, 42.33], [-4.87, 51.14], [8.23, 51.14], [8.23, 42.33]],
2121
            'bounding_box_crosses_antimeridian' => false,
2122
        ],
2123
        'urn:ogc:def:crs:EPSG::5720' => [
2124
            'name' => 'NGF-IGN69 height',
2125
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2126
            'datum' => 'urn:ogc:def:datum:EPSG::5119',
2127
            'bounding_box' => [[-4.87, 42.33], [-4.87, 51.14], [8.23, 51.14], [8.23, 42.33]],
2128
            'bounding_box_crosses_antimeridian' => false,
2129
        ],
2130
        'urn:ogc:def:crs:EPSG::5721' => [
2131
            'name' => 'NGF-IGN78 height',
2132
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2133
            'datum' => 'urn:ogc:def:datum:EPSG::5120',
2134
            'bounding_box' => [[8.5, 41.31], [8.5, 43.07], [9.630000000000001, 43.07], [9.630000000000001, 41.31]],
2135
            'bounding_box_crosses_antimeridian' => false,
2136
        ],
2137
        'urn:ogc:def:crs:EPSG::5722' => [
2138
            'name' => 'Maputo height',
2139
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2140
            'datum' => 'urn:ogc:def:datum:EPSG::5121',
2141
            'bounding_box' => [[30.21, -26.87], [30.21, -10.42], [40.9, -10.42], [40.9, -26.87]],
2142
            'bounding_box_crosses_antimeridian' => false,
2143
        ],
2144
        'urn:ogc:def:crs:EPSG::5723' => [
2145
            'name' => 'JSLD69 height',
2146
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2147
            'datum' => 'urn:ogc:def:datum:EPSG::5122',
2148
            'bounding_box' => [[129.3, 30.94], [129.3, 41.58], [142.14, 41.58], [142.14, 30.94]],
2149
            'bounding_box_crosses_antimeridian' => false,
2150
        ],
2151
        'urn:ogc:def:crs:EPSG::5724' => [
2152
            'name' => 'PHD93 height',
2153
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2154
            'datum' => 'urn:ogc:def:datum:EPSG::5123',
2155
            'bounding_box' => [[51.99, 16.59], [51.99, 26.58], [59.91, 26.58], [59.91, 16.59]],
2156
            'bounding_box_crosses_antimeridian' => false,
2157
        ],
2158
        'urn:ogc:def:crs:EPSG::5725' => [
2159
            'name' => 'Fahud HD height',
2160
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2161
            'datum' => 'urn:ogc:def:datum:EPSG::5124',
2162
            'bounding_box' => [[51.99, 16.59], [51.99, 26.42], [59.91, 26.42], [59.91, 16.59]],
2163
            'bounding_box_crosses_antimeridian' => false,
2164
        ],
2165
        'urn:ogc:def:crs:EPSG::5726' => [
2166
            'name' => 'Ha Tien 1960 height',
2167
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2168
            'datum' => 'urn:ogc:def:datum:EPSG::5125',
2169
            'bounding_box' => [[102.14, 8.33], [102.14, 23.4], [109.53, 23.4], [109.53, 8.33]],
2170
            'bounding_box_crosses_antimeridian' => false,
2171
        ],
2172
        'urn:ogc:def:crs:EPSG::5727' => [
2173
            'name' => 'Hon Dau 1992 height',
2174
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2175
            'datum' => 'urn:ogc:def:datum:EPSG::5126',
2176
            'bounding_box' => [[102.14, 8.33], [102.14, 23.4], [109.53, 23.4], [109.53, 8.33]],
2177
            'bounding_box_crosses_antimeridian' => false,
2178
        ],
2179
        'urn:ogc:def:crs:EPSG::5728' => [
2180
            'name' => 'LN02 height',
2181
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2182
            'datum' => 'urn:ogc:def:datum:EPSG::5127',
2183
            'bounding_box' => [[5.96, 45.82], [5.96, 47.81], [10.49, 47.81], [10.49, 45.82]],
2184
            'bounding_box_crosses_antimeridian' => false,
2185
        ],
2186
        'urn:ogc:def:crs:EPSG::5729' => [
2187
            'name' => 'LHN95 height',
2188
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2189
            'datum' => 'urn:ogc:def:datum:EPSG::5128',
2190
            'bounding_box' => [[5.96, 45.82], [5.96, 47.81], [10.49, 47.81], [10.49, 45.82]],
2191
            'bounding_box_crosses_antimeridian' => false,
2192
        ],
2193
        'urn:ogc:def:crs:EPSG::5730' => [
2194
            'name' => 'EVRF2000 height',
2195
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2196
            'datum' => 'urn:ogc:def:datum:EPSG::5129',
2197
            'bounding_box' => [[-9.56, 35.95], [-9.56, 71.20999999999999], [31.59, 71.20999999999999], [31.59, 35.95]],
2198
            'bounding_box_crosses_antimeridian' => false,
2199
        ],
2200
        'urn:ogc:def:crs:EPSG::5731' => [
2201
            'name' => 'Malin Head height',
2202
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2203
            'datum' => 'urn:ogc:def:datum:EPSG::5130',
2204
            'bounding_box' => [[-10.56, 51.39], [-10.56, 55.43], [-5.34, 55.43], [-5.34, 51.39]],
2205
            'bounding_box_crosses_antimeridian' => false,
2206
        ],
2207
        'urn:ogc:def:crs:EPSG::5732' => [
2208
            'name' => 'Belfast height',
2209
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2210
            'datum' => 'urn:ogc:def:datum:EPSG::5131',
2211
            'bounding_box' => [[-8.18, 53.96], [-8.18, 55.36], [-5.34, 55.36], [-5.34, 53.96]],
2212
            'bounding_box_crosses_antimeridian' => false,
2213
        ],
2214
        'urn:ogc:def:crs:EPSG::5733' => [
2215
            'name' => 'DNN height',
2216
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2217
            'datum' => 'urn:ogc:def:datum:EPSG::5132',
2218
            'bounding_box' => [[8.0, 54.51], [8.0, 57.8], [15.24, 57.8], [15.24, 54.51]],
2219
            'bounding_box_crosses_antimeridian' => false,
2220
        ],
2221
        'urn:ogc:def:crs:EPSG::5734' => [
2222
            'name' => 'AIOC95 depth',
2223
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
2224
            'datum' => 'urn:ogc:def:datum:EPSG::5133',
2225
            'bounding_box' => [[48.66, 37.89], [48.66, 42.59], [51.73, 42.59], [51.73, 37.89]],
2226
            'bounding_box_crosses_antimeridian' => false,
2227
        ],
2228
        'urn:ogc:def:crs:EPSG::5735' => [
2229
            'name' => 'Black Sea height',
2230
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2231
            'datum' => 'urn:ogc:def:datum:EPSG::5134',
2232
            'bounding_box' => [[39.99, 41.04], [39.99, 43.59], [46.72, 43.59], [46.72, 41.04]],
2233
            'bounding_box_crosses_antimeridian' => false,
2234
        ],
2235
        'urn:ogc:def:crs:EPSG::5736' => [
2236
            'name' => 'Yellow Sea 1956 height',
2237
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2238
            'datum' => 'urn:ogc:def:datum:EPSG::5104',
2239
            'bounding_box' => [[73.62, 18.11], [73.62, 53.56], [134.77, 53.56], [134.77, 18.11]],
2240
            'bounding_box_crosses_antimeridian' => false,
2241
        ],
2242
        'urn:ogc:def:crs:EPSG::5737' => [
2243
            'name' => 'Yellow Sea 1985 height',
2244
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2245
            'datum' => 'urn:ogc:def:datum:EPSG::5137',
2246
            'bounding_box' => [[73.62, 18.11], [73.62, 53.56], [134.77, 53.56], [134.77, 18.11]],
2247
            'bounding_box_crosses_antimeridian' => false,
2248
        ],
2249
        'urn:ogc:def:crs:EPSG::5738' => [
2250
            'name' => 'HKPD height',
2251
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2252
            'datum' => 'urn:ogc:def:datum:EPSG::5135',
2253
            'bounding_box' => [[113.82, 22.19], [113.82, 22.56], [114.39, 22.56], [114.39, 22.19]],
2254
            'bounding_box_crosses_antimeridian' => false,
2255
        ],
2256
        'urn:ogc:def:crs:EPSG::5739' => [
2257
            'name' => 'HKCD depth',
2258
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
2259
            'datum' => 'urn:ogc:def:datum:EPSG::5136',
2260
            'bounding_box' => [[113.76, 22.13], [113.76, 22.58], [114.51, 22.58], [114.51, 22.13]],
2261
            'bounding_box_crosses_antimeridian' => false,
2262
        ],
2263
        'urn:ogc:def:crs:EPSG::5740' => [
2264
            'name' => 'ODN Orkney height',
2265
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2266
            'datum' => 'urn:ogc:def:datum:EPSG::5138',
2267
            'bounding_box' => [[-3.48, 58.72], [-3.48, 59.41], [-2.34, 59.41], [-2.34, 58.72]],
2268
            'bounding_box_crosses_antimeridian' => false,
2269
        ],
2270
        'urn:ogc:def:crs:EPSG::5741' => [
2271
            'name' => 'Fair Isle height',
2272
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2273
            'datum' => 'urn:ogc:def:datum:EPSG::5139',
2274
            'bounding_box' => [[-1.76, 59.45], [-1.76, 59.6], [-1.5, 59.6], [-1.5, 59.45]],
2275
            'bounding_box_crosses_antimeridian' => false,
2276
        ],
2277
        'urn:ogc:def:crs:EPSG::5742' => [
2278
            'name' => 'Lerwick height',
2279
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2280
            'datum' => 'urn:ogc:def:datum:EPSG::5140',
2281
            'bounding_box' => [[-1.78, 59.83], [-1.78, 60.87], [-0.67, 60.87], [-0.67, 59.83]],
2282
            'bounding_box_crosses_antimeridian' => false,
2283
        ],
2284
        'urn:ogc:def:crs:EPSG::5743' => [
2285
            'name' => 'Foula height',
2286
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2287
            'datum' => 'urn:ogc:def:datum:EPSG::5141',
2288
            'bounding_box' => [[-2.21, 60.06], [-2.21, 60.2], [-1.95, 60.2], [-1.95, 60.06]],
2289
            'bounding_box_crosses_antimeridian' => false,
2290
        ],
2291
        'urn:ogc:def:crs:EPSG::5744' => [
2292
            'name' => 'Sule Skerry height',
2293
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2294
            'datum' => 'urn:ogc:def:datum:EPSG::5142',
2295
            'bounding_box' => [[-4.5, 59.05], [-4.5, 59.13], [-4.3, 59.13], [-4.3, 59.05]],
2296
            'bounding_box_crosses_antimeridian' => false,
2297
        ],
2298
        'urn:ogc:def:crs:EPSG::5745' => [
2299
            'name' => 'North Rona height',
2300
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2301
            'datum' => 'urn:ogc:def:datum:EPSG::5143',
2302
            'bounding_box' => [[-5.92, 59.07], [-5.92, 59.19], [-5.73, 59.19], [-5.73, 59.07]],
2303
            'bounding_box_crosses_antimeridian' => false,
2304
        ],
2305
        'urn:ogc:def:crs:EPSG::5746' => [
2306
            'name' => 'Stornoway height',
2307
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2308
            'datum' => 'urn:ogc:def:datum:EPSG::5144',
2309
            'bounding_box' => [[-7.72, 56.76], [-7.72, 58.54], [-6.1, 58.54], [-6.1, 56.76]],
2310
            'bounding_box_crosses_antimeridian' => false,
2311
        ],
2312
        'urn:ogc:def:crs:EPSG::5747' => [
2313
            'name' => 'St. Kilda height',
2314
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2315
            'datum' => 'urn:ogc:def:datum:EPSG::5145',
2316
            'bounding_box' => [[-8.74, 57.74], [-8.74, 57.93], [-8.41, 57.93], [-8.41, 57.74]],
2317
            'bounding_box_crosses_antimeridian' => false,
2318
        ],
2319
        'urn:ogc:def:crs:EPSG::5748' => [
2320
            'name' => 'Flannan Isles height',
2321
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2322
            'datum' => 'urn:ogc:def:datum:EPSG::5146',
2323
            'bounding_box' => [[-7.75, 58.21], [-7.75, 58.35], [-7.46, 58.35], [-7.46, 58.21]],
2324
            'bounding_box_crosses_antimeridian' => false,
2325
        ],
2326
        'urn:ogc:def:crs:EPSG::5749' => [
2327
            'name' => 'St. Marys height',
2328
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2329
            'datum' => 'urn:ogc:def:datum:EPSG::5147',
2330
            'bounding_box' => [[-6.41, 49.86], [-6.41, 49.99], [-6.23, 49.99], [-6.23, 49.86]],
2331
            'bounding_box_crosses_antimeridian' => false,
2332
        ],
2333
        'urn:ogc:def:crs:EPSG::5750' => [
2334
            'name' => 'Douglas height',
2335
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2336
            'datum' => 'urn:ogc:def:datum:EPSG::5148',
2337
            'bounding_box' => [[-4.87, 54.02], [-4.87, 54.44], [-4.27, 54.44], [-4.27, 54.02]],
2338
            'bounding_box_crosses_antimeridian' => false,
2339
        ],
2340
        'urn:ogc:def:crs:EPSG::5751' => [
2341
            'name' => 'Fao height',
2342
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2343
            'datum' => 'urn:ogc:def:datum:EPSG::5149',
2344
            'bounding_box' => [[44.3, 29.06], [44.3, 33.5], [51.06, 33.5], [51.06, 29.06]],
2345
            'bounding_box_crosses_antimeridian' => false,
2346
        ],
2347
        'urn:ogc:def:crs:EPSG::5752' => [
2348
            'name' => 'Bandar Abbas height',
2349
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2350
            'datum' => 'urn:ogc:def:datum:EPSG::5150',
2351
            'bounding_box' => [[44.03, 25.02], [44.03, 39.78], [63.34, 39.78], [63.34, 25.02]],
2352
            'bounding_box_crosses_antimeridian' => false,
2353
        ],
2354
        'urn:ogc:def:crs:EPSG::5753' => [
2355
            'name' => 'NGNC69 height',
2356
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2357
            'datum' => 'urn:ogc:def:datum:EPSG::5151',
2358
            'bounding_box' => [[163.92, -22.45], [163.92, -20.03], [167.09, -20.03], [167.09, -22.45]],
2359
            'bounding_box_crosses_antimeridian' => false,
2360
        ],
2361
        'urn:ogc:def:crs:EPSG::5754' => [
2362
            'name' => 'Poolbeg height (ft(Br36))',
2363
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6496',
2364
            'datum' => 'urn:ogc:def:datum:EPSG::5152',
2365
            'bounding_box' => [[-10.56, 51.39], [-10.56, 55.43], [-5.34, 55.43], [-5.34, 51.39]],
2366
            'bounding_box_crosses_antimeridian' => false,
2367
        ],
2368
        'urn:ogc:def:crs:EPSG::5755' => [
2369
            'name' => 'NGG1977 height',
2370
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2371
            'datum' => 'urn:ogc:def:datum:EPSG::5153',
2372
            'bounding_box' => [[-54.61, 2.11], [-54.61, 5.81], [-51.61, 5.81], [-51.61, 2.11]],
2373
            'bounding_box_crosses_antimeridian' => false,
2374
        ],
2375
        'urn:ogc:def:crs:EPSG::5756' => [
2376
            'name' => 'Martinique 1987 height',
2377
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2378
            'datum' => 'urn:ogc:def:datum:EPSG::5154',
2379
            'bounding_box' => [[-61.29, 14.35], [-61.29, 14.93], [-60.76, 14.93], [-60.76, 14.35]],
2380
            'bounding_box_crosses_antimeridian' => false,
2381
        ],
2382
        'urn:ogc:def:crs:EPSG::5757' => [
2383
            'name' => 'Guadeloupe 1988 height',
2384
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2385
            'datum' => 'urn:ogc:def:datum:EPSG::5155',
2386
            'bounding_box' => [[-61.85, 15.88], [-61.85, 16.55], [-61.15, 16.55], [-61.15, 15.88]],
2387
            'bounding_box_crosses_antimeridian' => false,
2388
        ],
2389
        'urn:ogc:def:crs:EPSG::5758' => [
2390
            'name' => 'Reunion 1989 height',
2391
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2392
            'datum' => 'urn:ogc:def:datum:EPSG::5156',
2393
            'bounding_box' => [[55.16, -21.42], [55.16, -20.81], [55.91, -20.81], [55.91, -21.42]],
2394
            'bounding_box_crosses_antimeridian' => false,
2395
        ],
2396
        'urn:ogc:def:crs:EPSG::5759' => [
2397
            'name' => 'Auckland 1946 height',
2398
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2399
            'datum' => 'urn:ogc:def:datum:EPSG::5157',
2400
            'bounding_box' => [[174.0, -37.67], [174.0, -36.12], [176.17, -36.12], [176.17, -37.67]],
2401
            'bounding_box_crosses_antimeridian' => false,
2402
        ],
2403
        'urn:ogc:def:crs:EPSG::5760' => [
2404
            'name' => 'Bluff 1955 height',
2405
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2406
            'datum' => 'urn:ogc:def:datum:EPSG::5158',
2407
            'bounding_box' => [[168.01, -46.71], [168.01, -46.26], [168.86, -46.26], [168.86, -46.71]],
2408
            'bounding_box_crosses_antimeridian' => false,
2409
        ],
2410
        'urn:ogc:def:crs:EPSG::5761' => [
2411
            'name' => 'Dunedin 1958 height',
2412
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2413
            'datum' => 'urn:ogc:def:datum:EPSG::5159',
2414
            'bounding_box' => [[167.73, -46.4], [167.73, -43.82], [171.28, -43.82], [171.28, -46.4]],
2415
            'bounding_box_crosses_antimeridian' => false,
2416
        ],
2417
        'urn:ogc:def:crs:EPSG::5762' => [
2418
            'name' => 'Gisborne 1926 height',
2419
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2420
            'datum' => 'urn:ogc:def:datum:EPSG::5160',
2421
            'bounding_box' => [[176.41, -39.04], [176.41, -37.49], [178.63, -37.49], [178.63, -39.04]],
2422
            'bounding_box_crosses_antimeridian' => false,
2423
        ],
2424
        'urn:ogc:def:crs:EPSG::5763' => [
2425
            'name' => 'Lyttelton 1937 height',
2426
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2427
            'datum' => 'urn:ogc:def:datum:EPSG::5161',
2428
            'bounding_box' => [[168.95, -44.92], [168.95, -41.6], [173.77, -41.6], [173.77, -44.92]],
2429
            'bounding_box_crosses_antimeridian' => false,
2430
        ],
2431
        'urn:ogc:def:crs:EPSG::5764' => [
2432
            'name' => 'Moturiki 1953 height',
2433
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2434
            'datum' => 'urn:ogc:def:datum:EPSG::5162',
2435
            'bounding_box' => [[174.57, -40.59], [174.57, -37.52], [177.26, -37.52], [177.26, -40.59]],
2436
            'bounding_box_crosses_antimeridian' => false,
2437
        ],
2438
        'urn:ogc:def:crs:EPSG::5765' => [
2439
            'name' => 'Napier 1962 height',
2440
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2441
            'datum' => 'urn:ogc:def:datum:EPSG::5163',
2442
            'bounding_box' => [[175.8, -40.57], [175.8, -38.87], [178.07, -38.87], [178.07, -40.57]],
2443
            'bounding_box_crosses_antimeridian' => false,
2444
        ],
2445
        'urn:ogc:def:crs:EPSG::5766' => [
2446
            'name' => 'Nelson 1955 height',
2447
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2448
            'datum' => 'urn:ogc:def:datum:EPSG::5164',
2449
            'bounding_box' => [[171.82, -42.44], [171.82, -40.44], [174.46, -40.44], [174.46, -42.44]],
2450
            'bounding_box_crosses_antimeridian' => false,
2451
        ],
2452
        'urn:ogc:def:crs:EPSG::5767' => [
2453
            'name' => 'One Tree Point 1964 height',
2454
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2455
            'datum' => 'urn:ogc:def:datum:EPSG::5165',
2456
            'bounding_box' => [[172.61, -36.41], [172.61, -34.36], [174.83, -34.36], [174.83, -36.41]],
2457
            'bounding_box_crosses_antimeridian' => false,
2458
        ],
2459
        'urn:ogc:def:crs:EPSG::5768' => [
2460
            'name' => 'Tararu 1952 height',
2461
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2462
            'datum' => 'urn:ogc:def:datum:EPSG::5166',
2463
            'bounding_box' => [[175.44, -37.21], [175.44, -36.78], [175.99, -36.78], [175.99, -37.21]],
2464
            'bounding_box_crosses_antimeridian' => false,
2465
        ],
2466
        'urn:ogc:def:crs:EPSG::5769' => [
2467
            'name' => 'Taranaki 1970 height',
2468
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2469
            'datum' => 'urn:ogc:def:datum:EPSG::5167',
2470
            'bounding_box' => [[173.68, -39.92], [173.68, -38.41], [174.95, -38.41], [174.95, -39.92]],
2471
            'bounding_box_crosses_antimeridian' => false,
2472
        ],
2473
        'urn:ogc:def:crs:EPSG::5770' => [
2474
            'name' => 'Wellington 1953 height',
2475
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2476
            'datum' => 'urn:ogc:def:datum:EPSG::5168',
2477
            'bounding_box' => [[174.52, -41.67], [174.52, -40.12], [176.56, -40.12], [176.56, -41.67]],
2478
            'bounding_box_crosses_antimeridian' => false,
2479
        ],
2480
        'urn:ogc:def:crs:EPSG::5771' => [
2481
            'name' => 'Chatham Island 1959 height',
2482
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2483
            'datum' => 'urn:ogc:def:datum:EPSG::5169',
2484
            'bounding_box' => [[-176.92, -44.18], [-176.92, -43.67], [-176.2, -43.67], [-176.2, -44.18]],
2485
            'bounding_box_crosses_antimeridian' => false,
2486
        ],
2487
        'urn:ogc:def:crs:EPSG::5772' => [
2488
            'name' => 'Stewart Island 1977 height',
2489
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2490
            'datum' => 'urn:ogc:def:datum:EPSG::5170',
2491
            'bounding_box' => [[167.29, -47.33], [167.29, -46.63], [168.34, -46.63], [168.34, -47.33]],
2492
            'bounding_box_crosses_antimeridian' => false,
2493
        ],
2494
        'urn:ogc:def:crs:EPSG::5773' => [
2495
            'name' => 'EGM96 height',
2496
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2497
            'datum' => 'urn:ogc:def:datum:EPSG::5171',
2498
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2499
            'bounding_box_crosses_antimeridian' => false,
2500
        ],
2501
        'urn:ogc:def:crs:EPSG::5774' => [
2502
            'name' => 'NG-L height',
2503
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2504
            'datum' => 'urn:ogc:def:datum:EPSG::5172',
2505
            'bounding_box' => [[5.73, 49.44], [5.73, 50.19], [6.53, 50.19], [6.53, 49.44]],
2506
            'bounding_box_crosses_antimeridian' => false,
2507
        ],
2508
        'urn:ogc:def:crs:EPSG::5775' => [
2509
            'name' => 'Antalya height',
2510
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2511
            'datum' => 'urn:ogc:def:datum:EPSG::5173',
2512
            'bounding_box' => [[25.62, 35.81], [25.62, 42.15], [44.83, 42.15], [44.83, 35.81]],
2513
            'bounding_box_crosses_antimeridian' => false,
2514
        ],
2515
        'urn:ogc:def:crs:EPSG::5776' => [
2516
            'name' => 'NN54 height',
2517
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2518
            'datum' => 'urn:ogc:def:datum:EPSG::5174',
2519
            'bounding_box' => [[4.68, 57.93], [4.68, 71.20999999999999], [31.22, 71.20999999999999], [31.22, 57.93]],
2520
            'bounding_box_crosses_antimeridian' => false,
2521
        ],
2522
        'urn:ogc:def:crs:EPSG::5777' => [
2523
            'name' => 'Durres height',
2524
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2525
            'datum' => 'urn:ogc:def:datum:EPSG::5175',
2526
            'bounding_box' => [[19.22, 39.64], [19.22, 42.67], [21.06, 42.67], [21.06, 39.64]],
2527
            'bounding_box_crosses_antimeridian' => false,
2528
        ],
2529
        'urn:ogc:def:crs:EPSG::5778' => [
2530
            'name' => 'GHA height',
2531
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2532
            'datum' => 'urn:ogc:def:datum:EPSG::5176',
2533
            'bounding_box' => [[9.529999999999999, 46.4], [9.529999999999999, 49.02], [17.17, 49.02], [17.17, 46.4]],
2534
            'bounding_box_crosses_antimeridian' => false,
2535
        ],
2536
        'urn:ogc:def:crs:EPSG::5779' => [
2537
            'name' => 'SVS2000 height',
2538
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2539
            'datum' => 'urn:ogc:def:datum:EPSG::5177',
2540
            'bounding_box' => [[13.38, 45.42], [13.38, 46.88], [16.61, 46.88], [16.61, 45.42]],
2541
            'bounding_box_crosses_antimeridian' => false,
2542
        ],
2543
        'urn:ogc:def:crs:EPSG::5780' => [
2544
            'name' => 'Cascais height',
2545
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2546
            'datum' => 'urn:ogc:def:datum:EPSG::5178',
2547
            'bounding_box' => [[-9.56, 36.95], [-9.56, 42.16], [-6.19, 42.16], [-6.19, 36.95]],
2548
            'bounding_box_crosses_antimeridian' => false,
2549
        ],
2550
        'urn:ogc:def:crs:EPSG::5781' => [
2551
            'name' => 'Constanta height',
2552
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2553
            'datum' => 'urn:ogc:def:datum:EPSG::5179',
2554
            'bounding_box' => [[20.26, 43.62], [20.26, 48.27], [29.74, 48.27], [29.74, 43.62]],
2555
            'bounding_box_crosses_antimeridian' => false,
2556
        ],
2557
        'urn:ogc:def:crs:EPSG::5782' => [
2558
            'name' => 'Alicante height',
2559
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2560
            'datum' => 'urn:ogc:def:datum:EPSG::5180',
2561
            'bounding_box' => [[-9.369999999999999, 35.95], [-9.369999999999999, 43.82], [3.39, 43.82], [3.39, 35.95]],
2562
            'bounding_box_crosses_antimeridian' => false,
2563
        ],
2564
        'urn:ogc:def:crs:EPSG::5783' => [
2565
            'name' => 'DHHN92 height',
2566
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2567
            'datum' => 'urn:ogc:def:datum:EPSG::5181',
2568
            'bounding_box' => [[5.86, 47.27], [5.86, 55.09], [15.04, 55.09], [15.04, 47.27]],
2569
            'bounding_box_crosses_antimeridian' => false,
2570
        ],
2571
        'urn:ogc:def:crs:EPSG::5784' => [
2572
            'name' => 'DHHN85 height',
2573
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2574
            'datum' => 'urn:ogc:def:datum:EPSG::5182',
2575
            'bounding_box' => [[5.87, 47.27], [5.87, 55.09], [13.84, 55.09], [13.84, 47.27]],
2576
            'bounding_box_crosses_antimeridian' => false,
2577
        ],
2578
        'urn:ogc:def:crs:EPSG::5785' => [
2579
            'name' => 'SNN76 height',
2580
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2581
            'datum' => 'urn:ogc:def:datum:EPSG::5183',
2582
            'bounding_box' => [[9.92, 50.2], [9.92, 54.74], [15.04, 54.74], [15.04, 50.2]],
2583
            'bounding_box_crosses_antimeridian' => false,
2584
        ],
2585
        'urn:ogc:def:crs:EPSG::5786' => [
2586
            'name' => 'Baltic 1982 height',
2587
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2588
            'datum' => 'urn:ogc:def:datum:EPSG::5184',
2589
            'bounding_box' => [[22.36, 41.24], [22.36, 44.23], [28.68, 44.23], [28.68, 41.24]],
2590
            'bounding_box_crosses_antimeridian' => false,
2591
        ],
2592
        'urn:ogc:def:crs:EPSG::5787' => [
2593
            'name' => 'EOMA 1980 height',
2594
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2595
            'datum' => 'urn:ogc:def:datum:EPSG::5185',
2596
            'bounding_box' => [[16.11, 45.74], [16.11, 48.58], [22.9, 48.58], [22.9, 45.74]],
2597
            'bounding_box_crosses_antimeridian' => false,
2598
        ],
2599
        'urn:ogc:def:crs:EPSG::5788' => [
2600
            'name' => 'Kuwait PWD height',
2601
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2602
            'datum' => 'urn:ogc:def:datum:EPSG::5186',
2603
            'bounding_box' => [[46.54, 28.53], [46.54, 30.09], [48.48, 30.09], [48.48, 28.53]],
2604
            'bounding_box_crosses_antimeridian' => false,
2605
        ],
2606
        'urn:ogc:def:crs:EPSG::5789' => [
2607
            'name' => 'KOC WD depth',
2608
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
2609
            'datum' => 'urn:ogc:def:datum:EPSG::5187',
2610
            'bounding_box' => [[46.54, 28.53], [46.54, 30.09], [48.48, 30.09], [48.48, 28.53]],
2611
            'bounding_box_crosses_antimeridian' => false,
2612
        ],
2613
        'urn:ogc:def:crs:EPSG::5790' => [
2614
            'name' => 'KOC CD height',
2615
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2616
            'datum' => 'urn:ogc:def:datum:EPSG::5188',
2617
            'bounding_box' => [[46.54, 28.53], [46.54, 30.09], [48.48, 30.09], [48.48, 28.53]],
2618
            'bounding_box_crosses_antimeridian' => false,
2619
        ],
2620
        'urn:ogc:def:crs:EPSG::5791' => [
2621
            'name' => 'NGC 1948 height',
2622
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2623
            'datum' => 'urn:ogc:def:datum:EPSG::5189',
2624
            'bounding_box' => [[8.5, 41.31], [8.5, 43.07], [9.630000000000001, 43.07], [9.630000000000001, 41.31]],
2625
            'bounding_box_crosses_antimeridian' => false,
2626
        ],
2627
        'urn:ogc:def:crs:EPSG::5792' => [
2628
            'name' => 'Danger 1950 height',
2629
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2630
            'datum' => 'urn:ogc:def:datum:EPSG::5190',
2631
            'bounding_box' => [[-56.48, 46.69], [-56.48, 47.19], [-56.07, 47.19], [-56.07, 46.69]],
2632
            'bounding_box_crosses_antimeridian' => false,
2633
        ],
2634
        'urn:ogc:def:crs:EPSG::5793' => [
2635
            'name' => 'Mayotte 1950 height',
2636
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2637
            'datum' => 'urn:ogc:def:datum:EPSG::5191',
2638
            'bounding_box' => [[44.98, -13.05], [44.98, -12.61], [45.35, -12.61], [45.35, -13.05]],
2639
            'bounding_box_crosses_antimeridian' => false,
2640
        ],
2641
        'urn:ogc:def:crs:EPSG::5794' => [
2642
            'name' => 'Martinique 1955 height',
2643
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2644
            'datum' => 'urn:ogc:def:datum:EPSG::5192',
2645
            'bounding_box' => [[-61.29, 14.35], [-61.29, 14.93], [-60.76, 14.93], [-60.76, 14.35]],
2646
            'bounding_box_crosses_antimeridian' => false,
2647
        ],
2648
        'urn:ogc:def:crs:EPSG::5795' => [
2649
            'name' => 'Guadeloupe 1951 height',
2650
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2651
            'datum' => 'urn:ogc:def:datum:EPSG::5193',
2652
            'bounding_box' => [[-61.85, 15.88], [-61.85, 16.55], [-61.15, 16.55], [-61.15, 15.88]],
2653
            'bounding_box_crosses_antimeridian' => false,
2654
        ],
2655
        'urn:ogc:def:crs:EPSG::5796' => [
2656
            'name' => 'Lagos 1955 height',
2657
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2658
            'datum' => 'urn:ogc:def:datum:EPSG::5194',
2659
            'bounding_box' => [[2.69, 4.22], [2.69, 13.9], [14.65, 13.9], [14.65, 4.22]],
2660
            'bounding_box_crosses_antimeridian' => false,
2661
        ],
2662
        'urn:ogc:def:crs:EPSG::5797' => [
2663
            'name' => 'AIOC95 height',
2664
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2665
            'datum' => 'urn:ogc:def:datum:EPSG::5133',
2666
            'bounding_box' => [[48.66, 37.89], [48.66, 42.59], [51.73, 42.59], [51.73, 37.89]],
2667
            'bounding_box_crosses_antimeridian' => false,
2668
        ],
2669
        'urn:ogc:def:crs:EPSG::5798' => [
2670
            'name' => 'EGM84 height',
2671
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2672
            'datum' => 'urn:ogc:def:datum:EPSG::5203',
2673
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2674
            'bounding_box_crosses_antimeridian' => false,
2675
        ],
2676
        'urn:ogc:def:crs:EPSG::5799' => [
2677
            'name' => 'DVR90 height',
2678
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2679
            'datum' => 'urn:ogc:def:datum:EPSG::5206',
2680
            'bounding_box' => [[8.0, 54.51], [8.0, 57.8], [15.24, 57.8], [15.24, 54.51]],
2681
            'bounding_box_crosses_antimeridian' => false,
2682
        ],
2683
        'urn:ogc:def:crs:EPSG::5829' => [
2684
            'name' => 'Instantaneous Water Level height',
2685
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2686
            'datum' => 'urn:ogc:def:datum:EPSG::5113',
2687
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2688
            'bounding_box_crosses_antimeridian' => false,
2689
        ],
2690
        'urn:ogc:def:crs:EPSG::5831' => [
2691
            'name' => 'Instantaneous Water Level depth',
2692
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
2693
            'datum' => 'urn:ogc:def:datum:EPSG::5113',
2694
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2695
            'bounding_box_crosses_antimeridian' => false,
2696
        ],
2697
        'urn:ogc:def:crs:EPSG::5843' => [
2698
            'name' => 'Ras Ghumays height',
2699
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2700
            'datum' => 'urn:ogc:def:datum:EPSG::1146',
2701
            'bounding_box' => [[51.56, 22.63], [51.56, 24.95], [56.03, 24.95], [56.03, 22.63]],
2702
            'bounding_box_crosses_antimeridian' => false,
2703
        ],
2704
        'urn:ogc:def:crs:EPSG::5861' => [
2705
            'name' => 'LAT depth',
2706
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
2707
            'datum' => 'urn:ogc:def:datum:EPSG::1080',
2708
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2709
            'bounding_box_crosses_antimeridian' => false,
2710
        ],
2711
        'urn:ogc:def:crs:EPSG::5862' => [
2712
            'name' => 'LLWLT depth',
2713
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
2714
            'datum' => 'urn:ogc:def:datum:EPSG::1083',
2715
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2716
            'bounding_box_crosses_antimeridian' => false,
2717
        ],
2718
        'urn:ogc:def:crs:EPSG::5863' => [
2719
            'name' => 'ISLW depth',
2720
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
2721
            'datum' => 'urn:ogc:def:datum:EPSG::1085',
2722
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2723
            'bounding_box_crosses_antimeridian' => false,
2724
        ],
2725
        'urn:ogc:def:crs:EPSG::5864' => [
2726
            'name' => 'MLLWS depth',
2727
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
2728
            'datum' => 'urn:ogc:def:datum:EPSG::1086',
2729
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2730
            'bounding_box_crosses_antimeridian' => false,
2731
        ],
2732
        'urn:ogc:def:crs:EPSG::5865' => [
2733
            'name' => 'MLWS depth',
2734
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
2735
            'datum' => 'urn:ogc:def:datum:EPSG::1087',
2736
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2737
            'bounding_box_crosses_antimeridian' => false,
2738
        ],
2739
        'urn:ogc:def:crs:EPSG::5866' => [
2740
            'name' => 'MLLW depth',
2741
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
2742
            'datum' => 'urn:ogc:def:datum:EPSG::1089',
2743
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2744
            'bounding_box_crosses_antimeridian' => false,
2745
        ],
2746
        'urn:ogc:def:crs:EPSG::5867' => [
2747
            'name' => 'MLW depth',
2748
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
2749
            'datum' => 'urn:ogc:def:datum:EPSG::1091',
2750
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2751
            'bounding_box_crosses_antimeridian' => false,
2752
        ],
2753
        'urn:ogc:def:crs:EPSG::5868' => [
2754
            'name' => 'MHW height',
2755
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2756
            'datum' => 'urn:ogc:def:datum:EPSG::1092',
2757
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2758
            'bounding_box_crosses_antimeridian' => false,
2759
        ],
2760
        'urn:ogc:def:crs:EPSG::5869' => [
2761
            'name' => 'MHHW height',
2762
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2763
            'datum' => 'urn:ogc:def:datum:EPSG::1090',
2764
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2765
            'bounding_box_crosses_antimeridian' => false,
2766
        ],
2767
        'urn:ogc:def:crs:EPSG::5870' => [
2768
            'name' => 'MHWS height',
2769
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2770
            'datum' => 'urn:ogc:def:datum:EPSG::1088',
2771
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2772
            'bounding_box_crosses_antimeridian' => false,
2773
        ],
2774
        'urn:ogc:def:crs:EPSG::5871' => [
2775
            'name' => 'HHWLT height',
2776
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2777
            'datum' => 'urn:ogc:def:datum:EPSG::1084',
2778
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2779
            'bounding_box_crosses_antimeridian' => false,
2780
        ],
2781
        'urn:ogc:def:crs:EPSG::5872' => [
2782
            'name' => 'HAT height',
2783
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2784
            'datum' => 'urn:ogc:def:datum:EPSG::1082',
2785
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2786
            'bounding_box_crosses_antimeridian' => false,
2787
        ],
2788
        'urn:ogc:def:crs:EPSG::5873' => [
2789
            'name' => 'Low Water depth',
2790
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
2791
            'datum' => 'urn:ogc:def:datum:EPSG::1093',
2792
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2793
            'bounding_box_crosses_antimeridian' => false,
2794
        ],
2795
        'urn:ogc:def:crs:EPSG::5874' => [
2796
            'name' => 'High Water height',
2797
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2798
            'datum' => 'urn:ogc:def:datum:EPSG::1094',
2799
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
2800
            'bounding_box_crosses_antimeridian' => false,
2801
        ],
2802
        'urn:ogc:def:crs:EPSG::5941' => [
2803
            'name' => 'NN2000 height',
2804
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2805
            'datum' => 'urn:ogc:def:datum:EPSG::1096',
2806
            'bounding_box' => [[4.68, 57.93], [4.68, 71.20999999999999], [31.22, 71.20999999999999], [31.22, 57.93]],
2807
            'bounding_box_crosses_antimeridian' => false,
2808
        ],
2809
        'urn:ogc:def:crs:EPSG::6130' => [
2810
            'name' => 'GCVD54 height (ft)',
2811
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::1030',
2812
            'datum' => 'urn:ogc:def:datum:EPSG::1097',
2813
            'bounding_box' => [[-81.45999999999999, 19.21], [-81.45999999999999, 19.41], [-81.04000000000001, 19.41], [-81.04000000000001, 19.21]],
2814
            'bounding_box_crosses_antimeridian' => false,
2815
        ],
2816
        'urn:ogc:def:crs:EPSG::6131' => [
2817
            'name' => 'LCVD61 height (ft)',
2818
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::1030',
2819
            'datum' => 'urn:ogc:def:datum:EPSG::1098',
2820
            'bounding_box' => [[-80.14, 19.63], [-80.14, 19.74], [-79.93000000000001, 19.74], [-79.93000000000001, 19.63]],
2821
            'bounding_box_crosses_antimeridian' => false,
2822
        ],
2823
        'urn:ogc:def:crs:EPSG::6132' => [
2824
            'name' => 'CBVD61 height (ft)',
2825
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::1030',
2826
            'datum' => 'urn:ogc:def:datum:EPSG::1099',
2827
            'bounding_box' => [[-79.92, 19.66], [-79.92, 19.78], [-79.69, 19.78], [-79.69, 19.66]],
2828
            'bounding_box_crosses_antimeridian' => false,
2829
        ],
2830
        'urn:ogc:def:crs:EPSG::6178' => [
2831
            'name' => 'Cais da Pontinha - Funchal height',
2832
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2833
            'datum' => 'urn:ogc:def:datum:EPSG::1101',
2834
            'bounding_box' => [[-17.31, 32.35], [-17.31, 32.93], [-16.4, 32.93], [-16.4, 32.35]],
2835
            'bounding_box_crosses_antimeridian' => false,
2836
        ],
2837
        'urn:ogc:def:crs:EPSG::6179' => [
2838
            'name' => 'Cais da Vila - Porto Santo height',
2839
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2840
            'datum' => 'urn:ogc:def:datum:EPSG::1102',
2841
            'bounding_box' => [[-16.44, 32.96], [-16.44, 33.15], [-16.23, 33.15], [-16.23, 32.96]],
2842
            'bounding_box_crosses_antimeridian' => false,
2843
        ],
2844
        'urn:ogc:def:crs:EPSG::6180' => [
2845
            'name' => 'Cais das Velas height',
2846
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2847
            'datum' => 'urn:ogc:def:datum:EPSG::1103',
2848
            'bounding_box' => [[-28.37, 38.48], [-28.37, 38.8], [-27.71, 38.8], [-27.71, 38.48]],
2849
            'bounding_box_crosses_antimeridian' => false,
2850
        ],
2851
        'urn:ogc:def:crs:EPSG::6181' => [
2852
            'name' => 'Horta height',
2853
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2854
            'datum' => 'urn:ogc:def:datum:EPSG::1104',
2855
            'bounding_box' => [[-28.9, 38.46], [-28.9, 38.7], [-28.54, 38.7], [-28.54, 38.46]],
2856
            'bounding_box_crosses_antimeridian' => false,
2857
        ],
2858
        'urn:ogc:def:crs:EPSG::6182' => [
2859
            'name' => 'Cais da Madalena height',
2860
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2861
            'datum' => 'urn:ogc:def:datum:EPSG::1105',
2862
            'bounding_box' => [[-28.61, 38.32], [-28.61, 38.61], [-27.98, 38.61], [-27.98, 38.32]],
2863
            'bounding_box_crosses_antimeridian' => false,
2864
        ],
2865
        'urn:ogc:def:crs:EPSG::6183' => [
2866
            'name' => 'Santa Cruz da Graciosa height',
2867
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2868
            'datum' => 'urn:ogc:def:datum:EPSG::1106',
2869
            'bounding_box' => [[-28.13, 38.97], [-28.13, 39.14], [-27.88, 39.14], [-27.88, 38.97]],
2870
            'bounding_box_crosses_antimeridian' => false,
2871
        ],
2872
        'urn:ogc:def:crs:EPSG::6184' => [
2873
            'name' => 'Cais da Figueirinha - Angra do Heroismo height',
2874
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2875
            'datum' => 'urn:ogc:def:datum:EPSG::1107',
2876
            'bounding_box' => [[-27.44, 38.57], [-27.44, 38.86], [-26.97, 38.86], [-26.97, 38.57]],
2877
            'bounding_box_crosses_antimeridian' => false,
2878
        ],
2879
        'urn:ogc:def:crs:EPSG::6185' => [
2880
            'name' => 'Santa Cruz das Flores height',
2881
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2882
            'datum' => 'urn:ogc:def:datum:EPSG::1108',
2883
            'bounding_box' => [[-31.34, 39.3], [-31.34, 39.77], [-31.02, 39.77], [-31.02, 39.3]],
2884
            'bounding_box_crosses_antimeridian' => false,
2885
        ],
2886
        'urn:ogc:def:crs:EPSG::6186' => [
2887
            'name' => 'Cais da Vila do Porto height',
2888
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2889
            'datum' => 'urn:ogc:def:datum:EPSG::1109',
2890
            'bounding_box' => [[-25.26, 36.87], [-25.26, 37.34], [-24.72, 37.34], [-24.72, 36.87]],
2891
            'bounding_box_crosses_antimeridian' => false,
2892
        ],
2893
        'urn:ogc:def:crs:EPSG::6187' => [
2894
            'name' => 'Ponta Delgada height',
2895
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2896
            'datum' => 'urn:ogc:def:datum:EPSG::1110',
2897
            'bounding_box' => [[-25.92, 37.65], [-25.92, 37.96], [-25.08, 37.96], [-25.08, 37.65]],
2898
            'bounding_box_crosses_antimeridian' => false,
2899
        ],
2900
        'urn:ogc:def:crs:EPSG::6357' => [
2901
            'name' => 'NAVD88 depth',
2902
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
2903
            'datum' => 'urn:ogc:def:datum:EPSG::5103',
2904
            'bounding_box' => [[172.42871284485, 14.515261702227], [172.42871284485, 71.396817302681], [-66.91700744628901, 71.396817302681], [-66.91700744628901, 14.515261702227]],
2905
            'bounding_box_crosses_antimeridian' => true,
2906
        ],
2907
        'urn:ogc:def:crs:EPSG::6358' => [
2908
            'name' => 'NAVD88 depth (ftUS)',
2909
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::1043',
2910
            'datum' => 'urn:ogc:def:datum:EPSG::5103',
2911
            'bounding_box' => [[-168.25266039145, 24.410230723243], [-168.25266039145, 71.396817302681], [-66.91700744628901, 71.396817302681], [-66.91700744628901, 24.410230723243]],
2912
            'bounding_box_crosses_antimeridian' => false,
2913
        ],
2914
        'urn:ogc:def:crs:EPSG::6359' => [
2915
            'name' => 'NGVD29 depth (ftUS)',
2916
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::1043',
2917
            'datum' => 'urn:ogc:def:datum:EPSG::5102',
2918
            'bounding_box' => [[-124.79, 24.41], [-124.79, 49.38], [-66.91, 49.38], [-66.91, 24.41]],
2919
            'bounding_box_crosses_antimeridian' => false,
2920
        ],
2921
        'urn:ogc:def:crs:EPSG::6360' => [
2922
            'name' => 'NAVD88 height (ftUS)',
2923
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6497',
2924
            'datum' => 'urn:ogc:def:datum:EPSG::5103',
2925
            'bounding_box' => [[-168.25266039145, 24.410230723243], [-168.25266039145, 71.396817302681], [-66.91700744628901, 71.396817302681], [-66.91700744628901, 24.410230723243]],
2926
            'bounding_box_crosses_antimeridian' => false,
2927
        ],
2928
        'urn:ogc:def:crs:EPSG::6638' => [
2929
            'name' => 'Tutuila 1962 height',
2930
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2931
            'datum' => 'urn:ogc:def:datum:EPSG::1121',
2932
            'bounding_box' => [[-170.88, -14.43], [-170.88, -14.2], [-170.51, -14.2], [-170.51, -14.43]],
2933
            'bounding_box_crosses_antimeridian' => false,
2934
        ],
2935
        'urn:ogc:def:crs:EPSG::6639' => [
2936
            'name' => 'Guam 1963 height',
2937
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2938
            'datum' => 'urn:ogc:def:datum:EPSG::1122',
2939
            'bounding_box' => [[144.58, 13.18], [144.58, 13.7], [145.01, 13.7], [145.01, 13.18]],
2940
            'bounding_box_crosses_antimeridian' => false,
2941
        ],
2942
        'urn:ogc:def:crs:EPSG::6640' => [
2943
            'name' => 'NMVD03 height',
2944
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2945
            'datum' => 'urn:ogc:def:datum:EPSG::1119',
2946
            'bounding_box' => [[145.06, 14.06], [145.06, 15.35], [145.89, 15.35], [145.89, 14.06]],
2947
            'bounding_box_crosses_antimeridian' => false,
2948
        ],
2949
        'urn:ogc:def:crs:EPSG::6641' => [
2950
            'name' => 'PRVD02 height',
2951
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2952
            'datum' => 'urn:ogc:def:datum:EPSG::1123',
2953
            'bounding_box' => [[-67.97, 17.87], [-67.97, 18.57], [-65.19, 18.57], [-65.19, 17.87]],
2954
            'bounding_box_crosses_antimeridian' => false,
2955
        ],
2956
        'urn:ogc:def:crs:EPSG::6642' => [
2957
            'name' => 'VIVD09 height',
2958
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2959
            'datum' => 'urn:ogc:def:datum:EPSG::1124',
2960
            'bounding_box' => [[-65.09, 17.62], [-65.09, 18.44], [-64.51000000000001, 18.44], [-64.51000000000001, 17.62]],
2961
            'bounding_box_crosses_antimeridian' => false,
2962
        ],
2963
        'urn:ogc:def:crs:EPSG::6643' => [
2964
            'name' => 'ASVD02 height',
2965
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2966
            'datum' => 'urn:ogc:def:datum:EPSG::1125',
2967
            'bounding_box' => [[-170.88, -14.43], [-170.88, -14.2], [-170.51, -14.2], [-170.51, -14.43]],
2968
            'bounding_box_crosses_antimeridian' => false,
2969
        ],
2970
        'urn:ogc:def:crs:EPSG::6644' => [
2971
            'name' => 'GUVD04 height',
2972
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2973
            'datum' => 'urn:ogc:def:datum:EPSG::1126',
2974
            'bounding_box' => [[144.58, 13.18], [144.58, 13.7], [145.01, 13.7], [145.01, 13.18]],
2975
            'bounding_box_crosses_antimeridian' => false,
2976
        ],
2977
        'urn:ogc:def:crs:EPSG::6647' => [
2978
            'name' => 'CGVD2013(CGG2013) height',
2979
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2980
            'datum' => 'urn:ogc:def:datum:EPSG::1127',
2981
            'bounding_box' => [[-141.01, 40.04], [-141.01, 86.45999999999999], [-47.74, 86.45999999999999], [-47.74, 40.04]],
2982
            'bounding_box_crosses_antimeridian' => false,
2983
        ],
2984
        'urn:ogc:def:crs:EPSG::6693' => [
2985
            'name' => 'JSLD72 height',
2986
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2987
            'datum' => 'urn:ogc:def:datum:EPSG::1129',
2988
            'bounding_box' => [[139.7, 41.34], [139.7, 45.54], [145.87, 45.54], [145.87, 41.34]],
2989
            'bounding_box_crosses_antimeridian' => false,
2990
        ],
2991
        'urn:ogc:def:crs:EPSG::6694' => [
2992
            'name' => 'JGD2000 (vertical) height',
2993
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
2994
            'datum' => 'urn:ogc:def:datum:EPSG::1130',
2995
            'bounding_box' => [[129.3, 30.94], [129.3, 45.54], [145.87, 45.54], [145.87, 30.94]],
2996
            'bounding_box_crosses_antimeridian' => false,
2997
        ],
2998
        'urn:ogc:def:crs:EPSG::6695' => [
2999
            'name' => 'JGD2011 (vertical) height',
3000
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3001
            'datum' => 'urn:ogc:def:datum:EPSG::1131',
3002
            'bounding_box' => [[129.3, 30.94], [129.3, 45.54], [145.87, 45.54], [145.87, 30.94]],
3003
            'bounding_box_crosses_antimeridian' => false,
3004
        ],
3005
        'urn:ogc:def:crs:EPSG::6916' => [
3006
            'name' => 'SHD height',
3007
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3008
            'datum' => 'urn:ogc:def:datum:EPSG::1140',
3009
            'bounding_box' => [[103.59, 1.13], [103.59, 1.47], [104.07, 1.47], [104.07, 1.13]],
3010
            'bounding_box_crosses_antimeridian' => false,
3011
        ],
3012
        'urn:ogc:def:crs:EPSG::7446' => [
3013
            'name' => 'Famagusta 1960 height',
3014
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3015
            'datum' => 'urn:ogc:def:datum:EPSG::1148',
3016
            'bounding_box' => [[32.2, 34.59], [32.2, 35.74], [34.65, 35.74], [34.65, 34.59]],
3017
            'bounding_box_crosses_antimeridian' => false,
3018
        ],
3019
        'urn:ogc:def:crs:EPSG::7447' => [
3020
            'name' => 'PNG08 height',
3021
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3022
            'datum' => 'urn:ogc:def:datum:EPSG::1149',
3023
            'bounding_box' => [[140.0, -12.0], [140.0, 0.01], [158.01, 0.01], [158.01, -12.0]],
3024
            'bounding_box_crosses_antimeridian' => false,
3025
        ],
3026
        'urn:ogc:def:crs:EPSG::7651' => [
3027
            'name' => 'Kumul 34 height',
3028
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3029
            'datum' => 'urn:ogc:def:datum:EPSG::1150',
3030
            'bounding_box' => [[142.24, -8.279999999999999], [142.24, -5.59], [144.75, -5.59], [144.75, -8.279999999999999]],
3031
            'bounding_box_crosses_antimeridian' => false,
3032
        ],
3033
        'urn:ogc:def:crs:EPSG::7652' => [
3034
            'name' => 'Kiunga height',
3035
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3036
            'datum' => 'urn:ogc:def:datum:EPSG::1151',
3037
            'bounding_box' => [[140.85, -9.35], [140.85, -5.0], [144.01, -5.0], [144.01, -9.35]],
3038
            'bounding_box_crosses_antimeridian' => false,
3039
        ],
3040
        'urn:ogc:def:crs:EPSG::7699' => [
3041
            'name' => 'DHHN12 height',
3042
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3043
            'datum' => 'urn:ogc:def:datum:EPSG::1161',
3044
            'bounding_box' => [[5.86, 47.27], [5.86, 55.09], [15.04, 55.09], [15.04, 47.27]],
3045
            'bounding_box_crosses_antimeridian' => false,
3046
        ],
3047
        'urn:ogc:def:crs:EPSG::7700' => [
3048
            'name' => 'Latvia 2000 height',
3049
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3050
            'datum' => 'urn:ogc:def:datum:EPSG::1162',
3051
            'bounding_box' => [[20.87, 55.67], [20.87, 58.09], [28.24, 58.09], [28.24, 55.67]],
3052
            'bounding_box_crosses_antimeridian' => false,
3053
        ],
3054
        'urn:ogc:def:crs:EPSG::7707' => [
3055
            'name' => 'ODN (Offshore) height',
3056
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3057
            'datum' => 'urn:ogc:def:datum:EPSG::1164',
3058
            'bounding_box' => [[-9.0, 49.75], [-9.0, 61.01], [2.01, 61.01], [2.01, 49.75]],
3059
            'bounding_box_crosses_antimeridian' => false,
3060
        ],
3061
        'urn:ogc:def:crs:EPSG::7832' => [
3062
            'name' => 'POM96 height',
3063
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3064
            'datum' => 'urn:ogc:def:datum:EPSG::1171',
3065
            'bounding_box' => [[144.4, -10.42], [144.4, -6.67], [149.67, -6.67], [149.67, -10.42]],
3066
            'bounding_box_crosses_antimeridian' => false,
3067
        ],
3068
        'urn:ogc:def:crs:EPSG::7837' => [
3069
            'name' => 'DHHN2016 height',
3070
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3071
            'datum' => 'urn:ogc:def:datum:EPSG::1170',
3072
            'bounding_box' => [[5.86, 47.27], [5.86, 55.09], [15.04, 55.09], [15.04, 47.27]],
3073
            'bounding_box_crosses_antimeridian' => false,
3074
        ],
3075
        'urn:ogc:def:crs:EPSG::7839' => [
3076
            'name' => 'NZVD2016 height',
3077
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3078
            'datum' => 'urn:ogc:def:datum:EPSG::1169',
3079
            'bounding_box' => [[160.6, -55.95], [160.6, -25.88], [-171.2, -25.88], [-171.2, -55.95]],
3080
            'bounding_box_crosses_antimeridian' => true,
3081
        ],
3082
        'urn:ogc:def:crs:EPSG::7841' => [
3083
            'name' => 'POM08 height',
3084
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3085
            'datum' => 'urn:ogc:def:datum:EPSG::1172',
3086
            'bounding_box' => [[144.4, -10.42], [144.4, -6.67], [149.67, -6.67], [149.67, -10.42]],
3087
            'bounding_box_crosses_antimeridian' => false,
3088
        ],
3089
        'urn:ogc:def:crs:EPSG::7888' => [
3090
            'name' => 'Jamestown 1971 height',
3091
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3092
            'datum' => 'urn:ogc:def:datum:EPSG::1175',
3093
            'bounding_box' => [[-5.85, -16.08], [-5.85, -15.85], [-5.58, -15.85], [-5.58, -16.08]],
3094
            'bounding_box_crosses_antimeridian' => false,
3095
        ],
3096
        'urn:ogc:def:crs:EPSG::7889' => [
3097
            'name' => 'St. Helena Tritan 2011 height',
3098
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3099
            'datum' => 'urn:ogc:def:datum:EPSG::1176',
3100
            'bounding_box' => [[-5.85, -16.08], [-5.85, -15.85], [-5.58, -15.85], [-5.58, -16.08]],
3101
            'bounding_box_crosses_antimeridian' => false,
3102
        ],
3103
        'urn:ogc:def:crs:EPSG::7890' => [
3104
            'name' => 'SHVD2015 height',
3105
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3106
            'datum' => 'urn:ogc:def:datum:EPSG::1177',
3107
            'bounding_box' => [[-5.85, -16.08], [-5.85, -15.85], [-5.58, -15.85], [-5.58, -16.08]],
3108
            'bounding_box_crosses_antimeridian' => false,
3109
        ],
3110
        'urn:ogc:def:crs:EPSG::7962' => [
3111
            'name' => 'Poolbeg height (m)',
3112
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3113
            'datum' => 'urn:ogc:def:datum:EPSG::5152',
3114
            'bounding_box' => [[-10.56, 51.39], [-10.56, 55.43], [-5.34, 55.43], [-5.34, 51.39]],
3115
            'bounding_box_crosses_antimeridian' => false,
3116
        ],
3117
        'urn:ogc:def:crs:EPSG::7968' => [
3118
            'name' => 'NGVD29 height (m)',
3119
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3120
            'datum' => 'urn:ogc:def:datum:EPSG::5102',
3121
            'bounding_box' => [[-124.79, 24.41], [-124.79, 49.38], [-66.91, 49.38], [-66.91, 24.41]],
3122
            'bounding_box_crosses_antimeridian' => false,
3123
        ],
3124
        'urn:ogc:def:crs:EPSG::7976' => [
3125
            'name' => 'HKPD depth',
3126
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
3127
            'datum' => 'urn:ogc:def:datum:EPSG::5135',
3128
            'bounding_box' => [[113.82, 22.19], [113.82, 22.56], [114.39, 22.56], [114.39, 22.19]],
3129
            'bounding_box_crosses_antimeridian' => false,
3130
        ],
3131
        'urn:ogc:def:crs:EPSG::7979' => [
3132
            'name' => 'KOC WD height',
3133
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3134
            'datum' => 'urn:ogc:def:datum:EPSG::5187',
3135
            'bounding_box' => [[46.54, 28.53], [46.54, 30.09], [48.48, 30.09], [48.48, 28.53]],
3136
            'bounding_box_crosses_antimeridian' => false,
3137
        ],
3138
        'urn:ogc:def:crs:EPSG::8050' => [
3139
            'name' => 'MSL height (ft)',
3140
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::1030',
3141
            'datum' => 'urn:ogc:def:datum:EPSG::5100',
3142
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
3143
            'bounding_box_crosses_antimeridian' => false,
3144
        ],
3145
        'urn:ogc:def:crs:EPSG::8051' => [
3146
            'name' => 'MSL depth (ft)',
3147
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6495',
3148
            'datum' => 'urn:ogc:def:datum:EPSG::5100',
3149
            'bounding_box' => [[-180.0, -90.0], [-180.0, 90.0], [180.0, 90.0], [180.0, -90.0]],
3150
            'bounding_box_crosses_antimeridian' => false,
3151
        ],
3152
        'urn:ogc:def:crs:EPSG::8052' => [
3153
            'name' => 'MSL height (ftUS)',
3154
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6497',
3155
            'datum' => 'urn:ogc:def:datum:EPSG::5100',
3156
            'bounding_box' => [[167.65, 15.56], [167.65, 74.70999999999999], [-65.69, 74.70999999999999], [-65.69, 15.56]],
3157
            'bounding_box_crosses_antimeridian' => true,
3158
        ],
3159
        'urn:ogc:def:crs:EPSG::8053' => [
3160
            'name' => 'MSL depth (ftUS)',
3161
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::1043',
3162
            'datum' => 'urn:ogc:def:datum:EPSG::5100',
3163
            'bounding_box' => [[167.65, 15.56], [167.65, 74.70999999999999], [-65.69, 74.70999999999999], [-65.69, 15.56]],
3164
            'bounding_box_crosses_antimeridian' => true,
3165
        ],
3166
        'urn:ogc:def:crs:EPSG::8089' => [
3167
            'name' => 'ISH2004 height',
3168
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3169
            'datum' => 'urn:ogc:def:datum:EPSG::1190',
3170
            'bounding_box' => [[-24.66, 63.34], [-24.66, 66.59], [-13.38, 66.59], [-13.38, 63.34]],
3171
            'bounding_box_crosses_antimeridian' => false,
3172
        ],
3173
        'urn:ogc:def:crs:EPSG::8228' => [
3174
            'name' => 'NAVD88 height (ft)',
3175
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::1030',
3176
            'datum' => 'urn:ogc:def:datum:EPSG::5103',
3177
            'bounding_box' => [[-124.6, 31.33], [-124.6, 49.01], [-78.52, 49.01], [-78.52, 31.33]],
3178
            'bounding_box_crosses_antimeridian' => false,
3179
        ],
3180
        'urn:ogc:def:crs:EPSG::8266' => [
3181
            'name' => 'GVR2000 height',
3182
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3183
            'datum' => 'urn:ogc:def:datum:EPSG::1199',
3184
            'bounding_box' => [[-75.0, 59.0], [-75.0, 84.01000000000001], [-10.0, 84.01000000000001], [-10.0, 59.0]],
3185
            'bounding_box_crosses_antimeridian' => false,
3186
        ],
3187
        'urn:ogc:def:crs:EPSG::8267' => [
3188
            'name' => 'GVR2016 height',
3189
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3190
            'datum' => 'urn:ogc:def:datum:EPSG::1200',
3191
            'bounding_box' => [[-75.0, 58.0], [-75.0, 85.01000000000001], [-6.99, 85.01000000000001], [-6.99, 58.0]],
3192
            'bounding_box_crosses_antimeridian' => false,
3193
        ],
3194
        'urn:ogc:def:crs:EPSG::8357' => [
3195
            'name' => 'Baltic 1957 height',
3196
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3197
            'datum' => 'urn:ogc:def:datum:EPSG::1202',
3198
            'bounding_box' => [[12.09, 47.73], [12.09, 51.06], [22.56, 51.06], [22.56, 47.73]],
3199
            'bounding_box_crosses_antimeridian' => false,
3200
        ],
3201
        'urn:ogc:def:crs:EPSG::8358' => [
3202
            'name' => 'Baltic 1957 depth',
3203
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
3204
            'datum' => 'urn:ogc:def:datum:EPSG::1202',
3205
            'bounding_box' => [[12.09, 47.73], [12.09, 51.06], [22.56, 51.06], [22.56, 47.73]],
3206
            'bounding_box_crosses_antimeridian' => false,
3207
        ],
3208
        'urn:ogc:def:crs:EPSG::8434' => [
3209
            'name' => 'Macao height',
3210
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3211
            'datum' => 'urn:ogc:def:datum:EPSG::1210',
3212
            'bounding_box' => [[113.52, 22.06], [113.52, 22.23], [113.68, 22.23], [113.68, 22.06]],
3213
            'bounding_box_crosses_antimeridian' => false,
3214
        ],
3215
        'urn:ogc:def:crs:EPSG::8675' => [
3216
            'name' => 'N43 height',
3217
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3218
            'datum' => 'urn:ogc:def:datum:EPSG::1213',
3219
            'bounding_box' => [[20.95, 59.75], [20.95, 66.73], [31.59, 66.73], [31.59, 59.75]],
3220
            'bounding_box_crosses_antimeridian' => false,
3221
        ],
3222
        'urn:ogc:def:crs:EPSG::8690' => [
3223
            'name' => 'SVS2010 height',
3224
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3225
            'datum' => 'urn:ogc:def:datum:EPSG::1215',
3226
            'bounding_box' => [[13.38, 45.42], [13.38, 46.88], [16.61, 46.88], [16.61, 45.42]],
3227
            'bounding_box_crosses_antimeridian' => false,
3228
        ],
3229
        'urn:ogc:def:crs:EPSG::8691' => [
3230
            'name' => 'SRB_VRS12 height',
3231
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3232
            'datum' => 'urn:ogc:def:datum:EPSG::1216',
3233
            'bounding_box' => [[18.81702041626, 42.232494354248], [18.81702041626, 46.18111038208], [23.004997253418, 46.18111038208], [23.004997253418, 42.232494354248]],
3234
            'bounding_box_crosses_antimeridian' => false,
3235
        ],
3236
        'urn:ogc:def:crs:EPSG::8841' => [
3237
            'name' => 'MVGC height',
3238
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3239
            'datum' => 'urn:ogc:def:datum:EPSG::1219',
3240
            'bounding_box' => [[34.51, 16.37], [34.51, 32.16], [55.67, 32.16], [55.67, 16.37]],
3241
            'bounding_box_crosses_antimeridian' => false,
3242
        ],
3243
        'urn:ogc:def:crs:EPSG::8881' => [
3244
            'name' => 'Vienna height',
3245
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3246
            'datum' => 'urn:ogc:def:datum:EPSG::1267',
3247
            'bounding_box' => [[16.18, 48.12], [16.18, 48.34], [16.59, 48.34], [16.59, 48.12]],
3248
            'bounding_box_crosses_antimeridian' => false,
3249
        ],
3250
        'urn:ogc:def:crs:EPSG::8904' => [
3251
            'name' => 'TWVD 2001 height',
3252
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3253
            'datum' => 'urn:ogc:def:datum:EPSG::1224',
3254
            'bounding_box' => [[119.99, 21.87], [119.99, 25.34], [122.06, 25.34], [122.06, 21.87]],
3255
            'bounding_box_crosses_antimeridian' => false,
3256
        ],
3257
        'urn:ogc:def:crs:EPSG::8911' => [
3258
            'name' => 'DACR52 height',
3259
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3260
            'datum' => 'urn:ogc:def:datum:EPSG::1226',
3261
            'bounding_box' => [[-85.97, 7.98], [-85.97, 11.22], [-82.53, 11.22], [-82.53, 7.98]],
3262
            'bounding_box_crosses_antimeridian' => false,
3263
        ],
3264
        'urn:ogc:def:crs:EPSG::9130' => [
3265
            'name' => 'IGN 2008 LD height',
3266
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3267
            'datum' => 'urn:ogc:def:datum:EPSG::1250',
3268
            'bounding_box' => [[-61.13, 16.26], [-61.13, 16.38], [-60.97, 16.38], [-60.97, 16.26]],
3269
            'bounding_box_crosses_antimeridian' => false,
3270
        ],
3271
        'urn:ogc:def:crs:EPSG::9245' => [
3272
            'name' => 'CGVD2013(CGG2013a) height',
3273
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3274
            'datum' => 'urn:ogc:def:datum:EPSG::1256',
3275
            'bounding_box' => [[-141.01, 40.04], [-141.01, 86.45999999999999], [-47.74, 86.45999999999999], [-47.74, 40.04]],
3276
            'bounding_box_crosses_antimeridian' => false,
3277
        ],
3278
        'urn:ogc:def:crs:EPSG::9255' => [
3279
            'name' => 'SRVN16 height',
3280
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3281
            'datum' => 'urn:ogc:def:datum:EPSG::1260',
3282
            'bounding_box' => [[-73.59, -55.11], [-73.59, -21.78], [-53.65, -21.78], [-53.65, -55.11]],
3283
            'bounding_box_crosses_antimeridian' => false,
3284
        ],
3285
        'urn:ogc:def:crs:EPSG::9274' => [
3286
            'name' => 'EVRF2000 Austria height',
3287
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3288
            'datum' => 'urn:ogc:def:datum:EPSG::1261',
3289
            'bounding_box' => [[9.529999999999999, 46.4], [9.529999999999999, 49.02], [17.17, 49.02], [17.17, 46.4]],
3290
            'bounding_box_crosses_antimeridian' => false,
3291
        ],
3292
        'urn:ogc:def:crs:EPSG::9279' => [
3293
            'name' => 'SA LLD height',
3294
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3295
            'datum' => 'urn:ogc:def:datum:EPSG::1262',
3296
            'bounding_box' => [[16.45, -34.88], [16.45, -22.13], [32.95, -22.13], [32.95, -34.88]],
3297
            'bounding_box_crosses_antimeridian' => false,
3298
        ],
3299
        'urn:ogc:def:crs:EPSG::9287' => [
3300
            'name' => 'LAT NL depth',
3301
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
3302
            'datum' => 'urn:ogc:def:datum:EPSG::1290',
3303
            'bounding_box' => [[2.53, 51.45], [2.53, 55.77], [6.41, 55.77], [6.41, 51.45]],
3304
            'bounding_box_crosses_antimeridian' => false,
3305
        ],
3306
        'urn:ogc:def:crs:EPSG::9288' => [
3307
            'name' => 'MSL NL depth',
3308
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
3309
            'datum' => 'urn:ogc:def:datum:EPSG::1270',
3310
            'bounding_box' => [[2.53, 51.45], [2.53, 55.77], [6.41, 55.77], [6.41, 51.45]],
3311
            'bounding_box_crosses_antimeridian' => false,
3312
        ],
3313
        'urn:ogc:def:crs:EPSG::9303' => [
3314
            'name' => 'HS2-VRF height',
3315
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3316
            'datum' => 'urn:ogc:def:datum:EPSG::1265',
3317
            'bounding_box' => [[-2.75, 51.45], [-2.75, 53.3], [0.0, 53.3], [0.0, 51.45]],
3318
            'bounding_box_crosses_antimeridian' => false,
3319
        ],
3320
        'urn:ogc:def:crs:EPSG::9335' => [
3321
            'name' => 'KSA-VRF14 height',
3322
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3323
            'datum' => 'urn:ogc:def:datum:EPSG::1269',
3324
            'bounding_box' => [[34.51, 16.37], [34.51, 32.16], [55.67, 32.16], [55.67, 16.37]],
3325
            'bounding_box_crosses_antimeridian' => false,
3326
        ],
3327
        'urn:ogc:def:crs:EPSG::9351' => [
3328
            'name' => 'NGNC08 height',
3329
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3330
            'datum' => 'urn:ogc:def:datum:EPSG::1255',
3331
            'bounding_box' => [[163.54, -22.73], [163.54, -19.5], [168.19, -19.5], [168.19, -22.73]],
3332
            'bounding_box_crosses_antimeridian' => false,
3333
        ],
3334
        'urn:ogc:def:crs:EPSG::9389' => [
3335
            'name' => 'EVRF2019 height',
3336
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3337
            'datum' => 'urn:ogc:def:datum:EPSG::1274',
3338
            'bounding_box' => [[-9.56, 35.95], [-9.56, 77.06999999999999], [69.15000000000001, 77.06999999999999], [69.15000000000001, 35.95]],
3339
            'bounding_box_crosses_antimeridian' => false,
3340
        ],
3341
        'urn:ogc:def:crs:EPSG::9390' => [
3342
            'name' => 'EVRF2019 mean-tide height',
3343
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3344
            'datum' => 'urn:ogc:def:datum:EPSG::1287',
3345
            'bounding_box' => [[-9.56, 35.95], [-9.56, 77.06999999999999], [69.15000000000001, 77.06999999999999], [69.15000000000001, 35.95]],
3346
            'bounding_box_crosses_antimeridian' => false,
3347
        ],
3348
        'urn:ogc:def:crs:EPSG::9392' => [
3349
            'name' => 'Mallorca height',
3350
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3351
            'datum' => 'urn:ogc:def:datum:EPSG::1275',
3352
            'bounding_box' => [[2.23, 39.07], [2.23, 40.02], [3.55, 40.02], [3.55, 39.07]],
3353
            'bounding_box_crosses_antimeridian' => false,
3354
        ],
3355
        'urn:ogc:def:crs:EPSG::9393' => [
3356
            'name' => 'Menorca height',
3357
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3358
            'datum' => 'urn:ogc:def:datum:EPSG::1276',
3359
            'bounding_box' => [[3.73, 39.75], [3.73, 40.15], [4.39, 40.15], [4.39, 39.75]],
3360
            'bounding_box_crosses_antimeridian' => false,
3361
        ],
3362
        'urn:ogc:def:crs:EPSG::9394' => [
3363
            'name' => 'Ibiza height',
3364
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3365
            'datum' => 'urn:ogc:def:datum:EPSG::1277',
3366
            'bounding_box' => [[1.12, 38.59], [1.12, 39.17], [1.68, 39.17], [1.68, 38.59]],
3367
            'bounding_box_crosses_antimeridian' => false,
3368
        ],
3369
        'urn:ogc:def:crs:EPSG::9395' => [
3370
            'name' => 'Lanzarote height',
3371
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3372
            'datum' => 'urn:ogc:def:datum:EPSG::1278',
3373
            'bounding_box' => [[-13.95, 28.78], [-13.95, 29.47], [-13.37, 29.47], [-13.37, 28.78]],
3374
            'bounding_box_crosses_antimeridian' => false,
3375
        ],
3376
        'urn:ogc:def:crs:EPSG::9396' => [
3377
            'name' => 'Fuerteventura height',
3378
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3379
            'datum' => 'urn:ogc:def:datum:EPSG::1279',
3380
            'bounding_box' => [[-14.58, 27.99], [-14.58, 28.81], [-13.75, 28.81], [-13.75, 27.99]],
3381
            'bounding_box_crosses_antimeridian' => false,
3382
        ],
3383
        'urn:ogc:def:crs:EPSG::9397' => [
3384
            'name' => 'Gran Canaria height',
3385
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3386
            'datum' => 'urn:ogc:def:datum:EPSG::1280',
3387
            'bounding_box' => [[-15.88, 27.68], [-15.88, 28.23], [-15.31, 28.23], [-15.31, 27.68]],
3388
            'bounding_box_crosses_antimeridian' => false,
3389
        ],
3390
        'urn:ogc:def:crs:EPSG::9398' => [
3391
            'name' => 'Tenerife height',
3392
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3393
            'datum' => 'urn:ogc:def:datum:EPSG::1281',
3394
            'bounding_box' => [[-16.96, 27.93], [-16.96, 28.63], [-16.08, 28.63], [-16.08, 27.93]],
3395
            'bounding_box_crosses_antimeridian' => false,
3396
        ],
3397
        'urn:ogc:def:crs:EPSG::9399' => [
3398
            'name' => 'La Gomera height',
3399
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3400
            'datum' => 'urn:ogc:def:datum:EPSG::1282',
3401
            'bounding_box' => [[-17.39, 27.95], [-17.39, 28.26], [-17.03, 28.26], [-17.03, 27.95]],
3402
            'bounding_box_crosses_antimeridian' => false,
3403
        ],
3404
        'urn:ogc:def:crs:EPSG::9400' => [
3405
            'name' => 'La Palma height',
3406
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3407
            'datum' => 'urn:ogc:def:datum:EPSG::1283',
3408
            'bounding_box' => [[-18.06, 28.4], [-18.06, 28.9], [-17.66, 28.9], [-17.66, 28.4]],
3409
            'bounding_box_crosses_antimeridian' => false,
3410
        ],
3411
        'urn:ogc:def:crs:EPSG::9401' => [
3412
            'name' => 'El Hierro height',
3413
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3414
            'datum' => 'urn:ogc:def:datum:EPSG::1284',
3415
            'bounding_box' => [[-18.22, 27.58], [-18.22, 27.9], [-17.83, 27.9], [-17.83, 27.58]],
3416
            'bounding_box_crosses_antimeridian' => false,
3417
        ],
3418
        'urn:ogc:def:crs:EPSG::9402' => [
3419
            'name' => 'Ceuta 2 height',
3420
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3421
            'datum' => 'urn:ogc:def:datum:EPSG::1285',
3422
            'bounding_box' => [[-5.4, 35.82], [-5.4, 35.97], [-5.24, 35.97], [-5.24, 35.82]],
3423
            'bounding_box_crosses_antimeridian' => false,
3424
        ],
3425
        'urn:ogc:def:crs:EPSG::9451' => [
3426
            'name' => 'BI height',
3427
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3428
            'datum' => 'urn:ogc:def:datum:EPSG::1288',
3429
            'bounding_box' => [[-9.0, 49.75], [-9.0, 61.01], [2.01, 61.01], [2.01, 49.75]],
3430
            'bounding_box_crosses_antimeridian' => false,
3431
        ],
3432
        'urn:ogc:def:crs:EPSG::9458' => [
3433
            'name' => 'AVWS height',
3434
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3435
            'datum' => 'urn:ogc:def:datum:EPSG::1292',
3436
            'bounding_box' => [[93.41, -60.56], [93.41, -8.470000000000001], [173.35, -8.470000000000001], [173.35, -60.56]],
3437
            'bounding_box_crosses_antimeridian' => false,
3438
        ],
3439
        'urn:ogc:def:crs:EPSG::9471' => [
3440
            'name' => 'INAGeoid2020 height',
3441
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3442
            'datum' => 'urn:ogc:def:datum:EPSG::1294',
3443
            'bounding_box' => [[92.01000000000001, -13.95], [92.01000000000001, 7.79], [141.46, 7.79], [141.46, -13.95]],
3444
            'bounding_box_crosses_antimeridian' => false,
3445
        ],
3446
        'urn:ogc:def:crs:EPSG::9663' => [
3447
            'name' => 'EH2000 height',
3448
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3449
            'datum' => 'urn:ogc:def:datum:EPSG::1298',
3450
            'bounding_box' => [[21.74, 57.52], [21.74, 59.75], [28.2, 59.75], [28.2, 57.52]],
3451
            'bounding_box_crosses_antimeridian' => false,
3452
        ],
3453
        'urn:ogc:def:crs:EPSG::9666' => [
3454
            'name' => 'LAS07 height',
3455
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3456
            'datum' => 'urn:ogc:def:datum:EPSG::1299',
3457
            'bounding_box' => [[20.86, 53.89], [20.86, 56.45], [26.82, 56.45], [26.82, 53.89]],
3458
            'bounding_box_crosses_antimeridian' => false,
3459
        ],
3460
        'urn:ogc:def:crs:EPSG::9669' => [
3461
            'name' => 'BGS2005 height',
3462
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3463
            'datum' => 'urn:ogc:def:datum:EPSG::1300',
3464
            'bounding_box' => [[22.36, 41.24], [22.36, 44.23], [28.68, 44.23], [28.68, 41.24]],
3465
            'bounding_box_crosses_antimeridian' => false,
3466
        ],
3467
        'urn:ogc:def:crs:EPSG::9672' => [
3468
            'name' => 'CD Norway depth',
3469
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6498',
3470
            'datum' => 'urn:ogc:def:datum:EPSG::1301',
3471
            'bounding_box' => [[-13.63, 56.087], [-13.63, 84.723], [38.0, 84.723], [38.0, 56.087]],
3472
            'bounding_box_crosses_antimeridian' => false,
3473
        ],
3474
        'urn:ogc:def:crs:EPSG::9675' => [
3475
            'name' => 'Pago Pago 2020 height',
3476
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3477
            'datum' => 'urn:ogc:def:datum:EPSG::1302',
3478
            'bounding_box' => [[-170.88, -14.43], [-170.88, -14.2], [-170.51, -14.2], [-170.51, -14.43]],
3479
            'bounding_box_crosses_antimeridian' => false,
3480
        ],
3481
        'urn:ogc:def:crs:EPSG::9681' => [
3482
            'name' => 'NVD 1992 height',
3483
            'coordinate_system' => 'urn:ogc:def:cs:EPSG::6499',
3484
            'datum' => 'urn:ogc:def:datum:EPSG::1303',
3485
            'bounding_box' => [[88.01000000000001, 20.52], [88.01000000000001, 26.64], [92.67, 26.64], [92.67, 20.52]],
3486
            'bounding_box_crosses_antimeridian' => false,
3487
        ],
3488
    ];
3489
3490
    private static array $cachedObjects = [];
3491
3492
    private static array $supportedCache = [];
3493
3494 7
    public function __construct(
3495
        string $srid,
3496
        CoordinateSystem $coordinateSystem,
3497
        Datum $datum,
3498
        GeographicPolygon $boundingBox
3499
    ) {
3500 7
        $this->srid = $srid;
3501 7
        $this->coordinateSystem = $coordinateSystem;
3502 7
        $this->datum = $datum;
3503 7
        $this->boundingBox = $boundingBox;
3504
3505 7
        assert(count($coordinateSystem->getAxes()) === 1);
3506 7
    }
3507
3508 18
    public static function fromSRID(string $srid): self
3509
    {
3510 18
        if (!isset(static::$sridData[$srid])) {
3511 1
            throw new UnknownCoordinateReferenceSystemException($srid);
3512
        }
3513 17
        if (!isset(self::$cachedObjects[$srid])) {
3514 7
            $data = static::$sridData[$srid];
3515
3516 7
            self::$cachedObjects[$srid] = new self(
3517 7
                $srid,
3518 7
                VerticalCS::fromSRID($data['coordinate_system']),
3519 7
                Datum::fromSRID($data['datum']),
3520 7
                GeographicPolygon::createFromArray($data['bounding_box'], $data['bounding_box_crosses_antimeridian']),
3521
            );
3522
        }
3523
3524 17
        return self::$cachedObjects[$srid];
3525
    }
3526
3527 2
    public static function getSupportedSRIDs(): array
3528
    {
3529 2
        if (!self::$supportedCache) {
0 ignored issues
show
Bug Best Practice introduced by
The expression self::supportedCache of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
3530
            foreach (static::$sridData as $srid => $data) {
3531
                self::$supportedCache[$srid] = $data['name'];
3532
            }
3533
        }
3534
3535 2
        return self::$supportedCache;
3536
    }
3537
}
3538