Passed
Push — master ( 2a4317...e180e7 )
by Doug
47:34
created

Compound::findFromVertical()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 10
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 6
CRAP Score 3

Importance

Changes 0
Metric Value
cc 3
eloc 5
nc 3
nop 1
dl 0
loc 10
ccs 6
cts 6
cp 1
crap 3
rs 10
c 0
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 PHPCoord\Exception\UnknownCoordinateReferenceSystemException;
12
use PHPCoord\Geometry\BoundingArea;
13
14
class Compound extends CoordinateReferenceSystem
15
{
16
    use CompoundSRIDData;
17
    /**
18
     * AbInvA96_2020 Grid + ODN height
19
     * Extent: United Kingdom (UK) - on or related to the A96 highway from Aberdeen to Inverness.
20
     */
21
    public const EPSG_ABINVA96_2020_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::9388';
22
23
    /**
24
     * Amersfoort / RD New + NAP height
25
     * Extent: Netherlands - onshore, including Waddenzee, Dutch Wadden Islands and 12-mile offshore coastal zone.
26
     */
27
    public const EPSG_AMERSFOORT_RD_NEW_PLUS_NAP_HEIGHT = 'urn:ogc:def:crs:EPSG::7415';
28
29
    /**
30
     * Astro DOS 71 / UTM zone 30S + Jamestown 1971 height
31
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
32
     */
33
    public const EPSG_ASTRO_DOS_71_UTM_ZONE_30S_PLUS_JAMESTOWN_1971_HEIGHT = 'urn:ogc:def:crs:EPSG::7954';
34
35
    /**
36
     * BD72 / Belgian Lambert 72 + Ostend height
37
     * Extent: Belgium - onshore.
38
     */
39
    public const EPSG_BD72_BELGIAN_LAMBERT_72_PLUS_OSTEND_HEIGHT = 'urn:ogc:def:crs:EPSG::6190';
40
41
    /**
42
     * CIGD11 + CBVD61 height (ft)
43
     * Extent: Cayman Islands - Cayman Brac.
44
     */
45
    public const EPSG_CIGD11_PLUS_CBVD61_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::9502';
46
47
    /**
48
     * CIGD11 + GCVD54 height (ft)
49
     * Extent: Cayman Islands - Grand Cayman.
50
     */
51
    public const EPSG_CIGD11_PLUS_GCVD54_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::9503';
52
53
    /**
54
     * CIGD11 + LCVD61 height (ft)
55
     * Extent: Cayman Islands - Little Cayman.
56
     */
57
    public const EPSG_CIGD11_PLUS_LCVD61_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::9504';
58
59
    /**
60
     * CNH22 Grid + ODN height
61
     * Extent: United Kingdom (UK) - on or related to the rail route from Crewe via Chester to Holyhead.
62
     */
63
    public const EPSG_CNH22_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::10195';
64
65
    /**
66
     * CR-SIRGAS / CRTM05 + DACR52 height
67
     * Extent: Costa Rica - onshore.
68
     * With geoid model and gravity, part of official national dynamic geodetic framework from April 2018.
69
     */
70
    public const EPSG_CR_SIRGAS_CRTM05_PLUS_DACR52_HEIGHT = 'urn:ogc:def:crs:EPSG::8912';
71
72
    /**
73
     * CWS13 Grid + ODN height
74
     * Extent: United Kingdom (UK) - on or related to the rail route from from Chester via Wrexham to Shrewsbury.
75
     */
76
    public const EPSG_CWS13_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::10200';
77
78
    /**
79
     * DB_REF / 3-degree Gauss-Kruger zone 2 (E-N) + DHHN92 height
80
     * Extent: Germany - former West Germany onshore west of 7°30'E - states of Niedersachsen, Nordrhein-Westfalen,
81
     * Rheinland-Pfalz, Saarland.
82
     *
83
     * @deprecated
84
     */
85
    public const EPSG_DB_REF_3_DEGREE_GAUSS_KRUGER_ZONE_2_E_N_PLUS_DHHN92_HEIGHT = 'urn:ogc:def:crs:EPSG::5832';
86
87
    /**
88
     * DB_REF / 3-degree Gauss-Kruger zone 3 (E-N) + DHHN92 height
89
     * Extent: Germany - onshore between 7°30'E and 10°30'E.
90
     *
91
     * @deprecated
92
     */
93
    public const EPSG_DB_REF_3_DEGREE_GAUSS_KRUGER_ZONE_3_E_N_PLUS_DHHN92_HEIGHT = 'urn:ogc:def:crs:EPSG::5833';
94
95
    /**
96
     * DB_REF / 3-degree Gauss-Kruger zone 4 (E-N) + DHHN92 height
97
     * Extent: Germany - onshore between 10°30'E and 13°30'E.
98
     *
99
     * @deprecated
100
     */
101
    public const EPSG_DB_REF_3_DEGREE_GAUSS_KRUGER_ZONE_4_E_N_PLUS_DHHN92_HEIGHT = 'urn:ogc:def:crs:EPSG::5834';
102
103
    /**
104
     * DB_REF / 3-degree Gauss-Kruger zone 5 (E-N) + DHHN92 height
105
     * Extent: Germany - onshore east of 13°30'E.
106
     *
107
     * @deprecated
108
     */
109
    public const EPSG_DB_REF_3_DEGREE_GAUSS_KRUGER_ZONE_5_E_N_PLUS_DHHN92_HEIGHT = 'urn:ogc:def:crs:EPSG::5835';
110
111
    /**
112
     * DB_REF2003 zone 2
113
     * Extent: Germany - former West Germany onshore west of 7°30'E - states of Niedersachsen, Nordrhein-Westfalen,
114
     * Rheinland-Pfalz, Saarland.
115
     * On the introduction of DB_REF2016 height, this compound CRS replaced by DB_REF2016 zone 2 (CRS code 9932).
116
     */
117
    public const EPSG_DB_REF2003_ZONE_2 = 'urn:ogc:def:crs:EPSG::9928';
118
119
    /**
120
     * DB_REF2003 zone 3
121
     * Extent: Germany - onshore between 7°30'E and 10°30'E.
122
     * On the introduction of DB_REF2016 height, this compound CRS replaced by DB_REF2016 zone 3 (CRS code 9933).
123
     */
124
    public const EPSG_DB_REF2003_ZONE_3 = 'urn:ogc:def:crs:EPSG::9929';
125
126
    /**
127
     * DB_REF2003 zone 4
128
     * Extent: Germany - onshore between 10°30'E and 13°30'E.
129
     * On the introduction of DB_REF2016 height, this compound CRS replaced by DB_REF2016 zone 4 (CRS code 9934).
130
     */
131
    public const EPSG_DB_REF2003_ZONE_4 = 'urn:ogc:def:crs:EPSG::9930';
132
133
    /**
134
     * DB_REF2003 zone 5
135
     * Extent: Germany - onshore east of 13°30'E.
136
     * On the introduction of DB_REF2016 height, this compound CRS replaced by DB_REF2016 zone 5 (CRS code 9935).
137
     */
138
    public const EPSG_DB_REF2003_ZONE_5 = 'urn:ogc:def:crs:EPSG::9931';
139
140
    /**
141
     * DB_REF2016 zone 2
142
     * Extent: Germany - former West Germany onshore west of 7°30'E - states of Niedersachsen, Nordrhein-Westfalen,
143
     * Rheinland-Pfalz, Saarland.
144
     * Replaces DB_REF2003 zone 2 (compound CRS code 9928).
145
     */
146
    public const EPSG_DB_REF2016_ZONE_2 = 'urn:ogc:def:crs:EPSG::9932';
147
148
    /**
149
     * DB_REF2016 zone 3
150
     * Extent: Germany - onshore between 7°30'E and 10°30'E.
151
     * Replaces DB_REF2003 zone 3 (compound CRS code 9929).
152
     */
153
    public const EPSG_DB_REF2016_ZONE_3 = 'urn:ogc:def:crs:EPSG::9933';
154
155
    /**
156
     * DB_REF2016 zone 4
157
     * Extent: Germany - onshore between 10°30'E and 13°30'E.
158
     * Replaces DB_REF2003 zone 4 (compound CRS code 9930).
159
     */
160
    public const EPSG_DB_REF2016_ZONE_4 = 'urn:ogc:def:crs:EPSG::9934';
161
162
    /**
163
     * DB_REF2016 zone 5
164
     * Extent: Germany - onshore east of 13°30'E.
165
     * Replaces DB_REF2003 zone 5 (compound CRS code 9931).
166
     */
167
    public const EPSG_DB_REF2016_ZONE_5 = 'urn:ogc:def:crs:EPSG::9935';
168
169
    /**
170
     * DIBA15 Grid + ODN height
171
     * Extent: United Kingdom (UK) - on or related to the rail route from Didcot to Banbury.
172
     */
173
    public const EPSG_DIBA15_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::10208';
174
175
    /**
176
     * DoPw22 Grid + ODN height
177
     * Extent: United Kingdom (UK) - on or related to the rail route from Dovey Junction to Pwllheli.
178
     */
179
    public const EPSG_DOPW22_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::10184';
180
181
    /**
182
     * EBBWV14 Grid + ODN height
183
     * Extent: United Kingdom (UK) - on or related to the rail route from Newport (Park Junction) to Ebbw Vale.
184
     */
185
    public const EPSG_EBBWV14_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::9944';
186
187
    /**
188
     * ECML14_NB Grid + ODN height
189
     * Extent: United Kingdom (UK) - on or related to rail routes from Newcastle Central to Ashington via Benton North
190
     * Junction, and the section from Bedlington to Morpeth.
191
     */
192
    public const EPSG_ECML14_NB_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::9762';
193
194
    /**
195
     * EOS21 Grid + ODN height
196
     * Extent: United Kingdom (UK) - on or related to the complex of rail routes in the East of Scotland, incorporating
197
     * the route from Tweedbank through the Borders to Edinburgh; the line from Edinburgh to Aberdeen; routes via
198
     * Kirkaldy and Cowdenbeath; and routes via Leuchars and Perth to Dundee.
199
     */
200
    public const EPSG_EOS21_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::9742';
201
202
    /**
203
     * ETRF2000-PL + Baltic 1986 height
204
     * Extent: Poland - onshore.
205
     */
206
    public const EPSG_ETRF2000_PL_PLUS_BALTIC_1986_HEIGHT = 'urn:ogc:def:crs:EPSG::9656';
207
208
    /**
209
     * ETRF2000-PL + EVRF2007-PL height
210
     * Extent: Poland - onshore.
211
     */
212
    public const EPSG_ETRF2000_PL_PLUS_EVRF2007_PL_HEIGHT = 'urn:ogc:def:crs:EPSG::9657';
213
214
    /**
215
     * ETRS89 + Alicante height
216
     * Extent: Gibraltar - onshore; Spain - mainland onshore.
217
     */
218
    public const EPSG_ETRS89_PLUS_ALICANTE_HEIGHT = 'urn:ogc:def:crs:EPSG::9505';
219
220
    /**
221
     * ETRS89 + BI height
222
     * Extent: United Kingdom (UK) - offshore to boundary of UKCS within 49°45'N to 61°N and 9°W to 2°E; onshore
223
     * Great Britain (England, Wales and Scotland) and Northern Ireland. Ireland onshore. Isle of Man onshore.
224
     */
225
    public const EPSG_ETRS89_PLUS_BI_HEIGHT = 'urn:ogc:def:crs:EPSG::9452';
226
227
    /**
228
     * ETRS89 + Baltic 1957 height
229
     * Extent: Czechia; Slovakia.
230
     */
231
    public const EPSG_ETRS89_PLUS_BALTIC_1957_HEIGHT = 'urn:ogc:def:crs:EPSG::8360';
232
233
    /**
234
     * ETRS89 + Belfast height
235
     * Extent: United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
236
     */
237
    public const EPSG_ETRS89_PLUS_BELFAST_HEIGHT = 'urn:ogc:def:crs:EPSG::9450';
238
239
    /**
240
     * ETRS89 + CD Norway depth
241
     * Extent: Norway - inshore and nearshore.
242
     */
243
    public const EPSG_ETRS89_PLUS_CD_NORWAY_DEPTH = 'urn:ogc:def:crs:EPSG::9883';
244
245
    /**
246
     * ETRS89 + CD UK & Ireland VORF08 depth
247
     * Extent: Ireland and United Kingdom (UK) (including Isle of Man and Channel Islands) - inshore, nearshore and
248
     * offshore.
249
     */
250
    public const EPSG_ETRS89_PLUS_CD_UK_AND_IRELAND_VORF08_DEPTH = 'urn:ogc:def:crs:EPSG::10157';
251
252
    /**
253
     * ETRS89 + Cagliari 1956 height
254
     * Extent: Italy - Sardinia onshore.
255
     */
256
    public const EPSG_ETRS89_PLUS_CAGLIARI_1956_HEIGHT = 'urn:ogc:def:crs:EPSG::9725';
257
258
    /**
259
     * ETRS89 + Catania 1965 height
260
     * Extent: Italy - Sicily onshore.
261
     */
262
    public const EPSG_ETRS89_PLUS_CATANIA_1965_HEIGHT = 'urn:ogc:def:crs:EPSG::9724';
263
264
    /**
265
     * ETRS89 + Ceuta 2 height
266
     * Extent: Spain - Ceuta onshore.
267
     */
268
    public const EPSG_ETRS89_PLUS_CEUTA_2_HEIGHT = 'urn:ogc:def:crs:EPSG::9506';
269
270
    /**
271
     * ETRS89 + DHHN2016 height
272
     * Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen,
273
     * Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,
274
     * Schleswig-Holstein, Thuringen.
275
     */
276
    public const EPSG_ETRS89_PLUS_DHHN2016_HEIGHT = 'urn:ogc:def:crs:EPSG::9924';
277
278
    /**
279
     * ETRS89 + Douglas height
280
     * Extent: Isle of Man - onshore.
281
     */
282
    public const EPSG_ETRS89_PLUS_DOUGLAS_HEIGHT = 'urn:ogc:def:crs:EPSG::9429';
283
284
    /**
285
     * ETRS89 + EVRF2000 Austria height
286
     * Extent: Austria.
287
     */
288
    public const EPSG_ETRS89_PLUS_EVRF2000_AUSTRIA_HEIGHT = 'urn:ogc:def:crs:EPSG::9500';
289
290
    /**
291
     * ETRS89 + EVRF2000 height
292
     * Extent: Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Croatia; Czechia; Denmark;
293
     * Estonia; Finland; France - mainland; Germany; Gibraltar; Hungary; Italy - mainland and Sicily; Latvia;
294
     * Liechtenstein; Lithuania; Luxembourg; Netherlands; Norway; Poland; Portugal - mainland; Romania; San Marino;
295
     * Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great Britain mainland; Vatican
296
     * City State.
297
     * Replaced by ETRS89 + EVRF2007 height (CRS code 7423).
298
     */
299
    public const EPSG_ETRS89_PLUS_EVRF2000_HEIGHT = 'urn:ogc:def:crs:EPSG::7409';
300
301
    /**
302
     * ETRS89 + EVRF2007 height
303
     * Extent: Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Czechia;
304
     * Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily; Latvia;
305
     * Liechtenstein; Lithuania; Luxembourg; Netherlands; Norway; Poland; Portugal - mainland; Romania; San Marino;
306
     * Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great Britain mainland; Vatican
307
     * City State.
308
     * Replaces ETRS89 + EVRF2000 height (CRS code 7409).
309
     */
310
    public const EPSG_ETRS89_PLUS_EVRF2007_HEIGHT = 'urn:ogc:def:crs:EPSG::7423';
311
312
    /**
313
     * ETRS89 + EVRF2019 height
314
     * Extent: Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Czechia;
315
     * Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily; Latvia;
316
     * Liechtenstein; Lithuania; Luxembourg; Netherlands; North Macedonia; Norway; Poland; Portugal - mainland;
317
     * Romania; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great
318
     * Britain mainland; Vatican City State.
319
     * Replaces ETRS89 + EVRF2007 height (CRS code 7423). See also ETRS89 + EVRF2019 mean-tide height (CRS code 9423).
320
     */
321
    public const EPSG_ETRS89_PLUS_EVRF2019_HEIGHT = 'urn:ogc:def:crs:EPSG::9422';
322
323
    /**
324
     * ETRS89 + EVRF2019 mean-tide height
325
     * Extent: Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Czechia;
326
     * Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily; Latvia;
327
     * Liechtenstein; Lithuania; Luxembourg; Netherlands; North Macedonia; Norway; Poland; Portugal - mainland;
328
     * Romania; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great
329
     * Britain mainland; Vatican City State.
330
     * See also ETRS89 + EVRF2019 (CRS code 9422).
331
     */
332
    public const EPSG_ETRS89_PLUS_EVRF2019_MEAN_TIDE_HEIGHT = 'urn:ogc:def:crs:EPSG::9423';
333
334
    /**
335
     * ETRS89 + Genoa 1942 height
336
     * Extent: Italy - mainland (including San Marino and Vatican City State) and Sicily.
337
     */
338
    public const EPSG_ETRS89_PLUS_GENOA_1942_HEIGHT = 'urn:ogc:def:crs:EPSG::9723';
339
340
    /**
341
     * ETRS89 + Ibiza height
342
     * Extent: Spain - Balearic Islands - Ibiza and Formentera - onshore.
343
     */
344
    public const EPSG_ETRS89_PLUS_IBIZA_HEIGHT = 'urn:ogc:def:crs:EPSG::9507';
345
346
    /**
347
     * ETRS89 + LAT NL depth
348
     * Extent: Netherlands - offshore North Sea.
349
     */
350
    public const EPSG_ETRS89_PLUS_LAT_NL_DEPTH = 'urn:ogc:def:crs:EPSG::9289';
351
352
    /**
353
     * ETRS89 + Lerwick height
354
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Shetland Islands onshore.
355
     */
356
    public const EPSG_ETRS89_PLUS_LERWICK_HEIGHT = 'urn:ogc:def:crs:EPSG::9427';
357
358
    /**
359
     * ETRS89 + MSL NL depth
360
     * Extent: Netherlands - offshore North Sea.
361
     */
362
    public const EPSG_ETRS89_PLUS_MSL_NL_DEPTH = 'urn:ogc:def:crs:EPSG::9290';
363
364
    /**
365
     * ETRS89 + MSL UK & Ireland VORF08 depth
366
     * Extent: Ireland and United Kingdom (UK) (including Isle of Man and Channel Islands) - inshore, nearshore and
367
     * offshore.
368
     */
369
    public const EPSG_ETRS89_PLUS_MSL_UK_AND_IRELAND_VORF08_DEPTH = 'urn:ogc:def:crs:EPSG::10156';
370
371
    /**
372
     * ETRS89 + Malin Head height
373
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
374
     */
375
    public const EPSG_ETRS89_PLUS_MALIN_HEAD_HEIGHT = 'urn:ogc:def:crs:EPSG::9449';
376
377
    /**
378
     * ETRS89 + Mallorca height
379
     * Extent: Spain - Balearic Islands - Mallorca onshore.
380
     */
381
    public const EPSG_ETRS89_PLUS_MALLORCA_HEIGHT = 'urn:ogc:def:crs:EPSG::9508';
382
383
    /**
384
     * ETRS89 + Menorca height
385
     * Extent: Spain - Balearic Islands - Menorca onshore.
386
     */
387
    public const EPSG_ETRS89_PLUS_MENORCA_HEIGHT = 'urn:ogc:def:crs:EPSG::9509';
388
389
    /**
390
     * ETRS89 + NAP height
391
     * Extent: Netherlands - onshore and offshore.
392
     */
393
    public const EPSG_ETRS89_PLUS_NAP_HEIGHT = 'urn:ogc:def:crs:EPSG::9286';
394
395
    /**
396
     * ETRS89 + NN2000 height
397
     * Extent: Norway - onshore.
398
     */
399
    public const EPSG_ETRS89_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5942';
400
401
    /**
402
     * ETRS89 + NN54 height
403
     * Extent: Norway - onshore.
404
     * Replaced by ETRS89 + NN2000 height (compound CRS code 5942).
405
     */
406
    public const EPSG_ETRS89_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6144';
407
408
    /**
409
     * ETRS89 + ODN (Offshore) height
410
     * Extent: United Kingdom (UK) - offshore between 2km from shore and boundary of UKCS within 49°45'N to 61°N and
411
     * 9°W to 2°E.
412
     */
413
    public const EPSG_ETRS89_PLUS_ODN_OFFSHORE_HEIGHT = 'urn:ogc:def:crs:EPSG::9425';
414
415
    /**
416
     * ETRS89 + ODN Orkney height
417
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Orkney Islands onshore.
418
     */
419
    public const EPSG_ETRS89_PLUS_ODN_ORKNEY_HEIGHT = 'urn:ogc:def:crs:EPSG::9426';
420
421
    /**
422
     * ETRS89 + ODN height
423
     * Extent: United Kingdom (UK) - Great Britain onshore - England and Wales - mainland; Scotland - mainland and
424
     * Inner Hebrides.
425
     */
426
    public const EPSG_ETRS89_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::9424';
427
428
    /**
429
     * ETRS89 + Ostend height
430
     * Extent: Belgium - onshore.
431
     */
432
    public const EPSG_ETRS89_PLUS_OSTEND_HEIGHT = 'urn:ogc:def:crs:EPSG::9907';
433
434
    /**
435
     * ETRS89 + SVD2006 height
436
     * Extent: Arctic (Norway (Svalbard) onshore and offshore) - between 81°10'N and 76°10'N.
437
     */
438
    public const EPSG_ETRS89_PLUS_SVD2006_HEIGHT = 'urn:ogc:def:crs:EPSG::20001';
439
440
    /**
441
     * ETRS89 + St. Marys height
442
     * Extent: United Kingdom (UK) - Great Britain - England - Isles of Scilly onshore.
443
     */
444
    public const EPSG_ETRS89_PLUS_ST_MARYS_HEIGHT = 'urn:ogc:def:crs:EPSG::9430';
445
446
    /**
447
     * ETRS89 + Stornoway height
448
     * Extent: United Kingdom (UK) - Great Britain - Scotland - Outer Hebrides onshore.
449
     */
450
    public const EPSG_ETRS89_PLUS_STORNOWAY_HEIGHT = 'urn:ogc:def:crs:EPSG::9428';
451
452
    /**
453
     * ETRS89 / Belgian Lambert 2008 + Ostend height
454
     * Extent: Belgium - onshore.
455
     */
456
    public const EPSG_ETRS89_BELGIAN_LAMBERT_2008_PLUS_OSTEND_HEIGHT = 'urn:ogc:def:crs:EPSG::8370';
457
458
    /**
459
     * ETRS89 / DKTM1 + DVR90 height
460
     * Extent: Denmark - Jutland onshore west of 10°E.
461
     */
462
    public const EPSG_ETRS89_DKTM1_PLUS_DVR90_HEIGHT = 'urn:ogc:def:crs:EPSG::4097';
463
464
    /**
465
     * ETRS89 / DKTM2 + DVR90 height
466
     * Extent: Denmark - onshore - Jutland east of 9°E and Funen.
467
     */
468
    public const EPSG_ETRS89_DKTM2_PLUS_DVR90_HEIGHT = 'urn:ogc:def:crs:EPSG::4098';
469
470
    /**
471
     * ETRS89 / DKTM3 + DVR90 height
472
     * Extent: Denmark - Zealand and Lolland (onshore).
473
     */
474
    public const EPSG_ETRS89_DKTM3_PLUS_DVR90_HEIGHT = 'urn:ogc:def:crs:EPSG::4099';
475
476
    /**
477
     * ETRS89 / DKTM4 + DVR90 height
478
     * Extent: Denmark - Bornholm onshore.
479
     */
480
    public const EPSG_ETRS89_DKTM4_PLUS_DVR90_HEIGHT = 'urn:ogc:def:crs:EPSG::4100';
481
482
    /**
483
     * ETRS89 / Faroe TM + FVR09 height
484
     * Extent: Faroe Islands - onshore.
485
     * Introduced in 2010.
486
     */
487
    public const EPSG_ETRS89_FAROE_TM_PLUS_FVR09_HEIGHT = 'urn:ogc:def:crs:EPSG::5318';
488
489
    /**
490
     * ETRS89 / ITM + BI height
491
     * Extent: Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.
492
     */
493
    public const EPSG_ETRS89_ITM_PLUS_BI_HEIGHT = 'urn:ogc:def:crs:EPSG::9922';
494
495
    /**
496
     * ETRS89 / Kp2000 Bornholm + DVR90 height
497
     * Extent: Denmark - Bornholm onshore.
498
     */
499
    public const EPSG_ETRS89_KP2000_BORNHOLM_PLUS_DVR90_HEIGHT = 'urn:ogc:def:crs:EPSG::7420';
500
501
    /**
502
     * ETRS89 / Kp2000 Jutland + DVR90 height
503
     * Extent: Denmark - Jutland and Funen - onshore.
504
     */
505
    public const EPSG_ETRS89_KP2000_JUTLAND_PLUS_DVR90_HEIGHT = 'urn:ogc:def:crs:EPSG::7418';
506
507
    /**
508
     * ETRS89 / Kp2000 Zealand + DVR90 height
509
     * Extent: Denmark - Zealand and Lolland (onshore).
510
     */
511
    public const EPSG_ETRS89_KP2000_ZEALAND_PLUS_DVR90_HEIGHT = 'urn:ogc:def:crs:EPSG::7419';
512
513
    /**
514
     * ETRS89 / NTM zone 10 + NN2000 height
515
     * Extent: Norway - onshore - between 10°E and 11°E.
516
     */
517
    public const EPSG_ETRS89_NTM_ZONE_10_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5950';
518
519
    /**
520
     * ETRS89 / NTM zone 10 + NN54 height
521
     * Extent: Norway - onshore - between 10°E and 11°E.
522
     * Replaced by ETRS89 / NTM zone 10 + NN2000 height (compound CRS code 5950).
523
     */
524
    public const EPSG_ETRS89_NTM_ZONE_10_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6150';
525
526
    /**
527
     * ETRS89 / NTM zone 11 + NN2000 height
528
     * Extent: Norway - onshore - between 11°E and 12°E.
529
     */
530
    public const EPSG_ETRS89_NTM_ZONE_11_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5951';
531
532
    /**
533
     * ETRS89 / NTM zone 11 + NN54 height
534
     * Extent: Norway - onshore - between 11°E and 12°E.
535
     * Replaced by ETRS89 / NTM zone 11 + NN2000 height (compound CRS code 5951).
536
     */
537
    public const EPSG_ETRS89_NTM_ZONE_11_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6151';
538
539
    /**
540
     * ETRS89 / NTM zone 12 + NN2000 height
541
     * Extent: Norway - onshore - between 12°E and 13°E.
542
     */
543
    public const EPSG_ETRS89_NTM_ZONE_12_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5952';
544
545
    /**
546
     * ETRS89 / NTM zone 12 + NN54 height
547
     * Extent: Norway - onshore - between 12°E and 13°E.
548
     * Replaced by ETRS89 / NTM zone 12 + NN2000 height (compound CRS code 5952).
549
     */
550
    public const EPSG_ETRS89_NTM_ZONE_12_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6152';
551
552
    /**
553
     * ETRS89 / NTM zone 13 + NN2000 height
554
     * Extent: Norway - onshore - between 13°E and 14°E.
555
     */
556
    public const EPSG_ETRS89_NTM_ZONE_13_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5953';
557
558
    /**
559
     * ETRS89 / NTM zone 13 + NN54 height
560
     * Extent: Norway - onshore - between 13°E and 14°E.
561
     * Replaced by ETRS89 / NTM zone 13 + NN2000 height (compound CRS code 5953).
562
     */
563
    public const EPSG_ETRS89_NTM_ZONE_13_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6153';
564
565
    /**
566
     * ETRS89 / NTM zone 14 + NN2000 height
567
     * Extent: Norway - onshore - between 14°E and 15°E.
568
     */
569
    public const EPSG_ETRS89_NTM_ZONE_14_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5954';
570
571
    /**
572
     * ETRS89 / NTM zone 14 + NN54 height
573
     * Extent: Norway - onshore - between 14°E and 15°E.
574
     * Replaced by ETRS89 / NTM zone 14 + NN2000 height (compound CRS code 5954).
575
     */
576
    public const EPSG_ETRS89_NTM_ZONE_14_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6154';
577
578
    /**
579
     * ETRS89 / NTM zone 15 + NN2000 height
580
     * Extent: Norway - onshore - between 15°E and 16°E.
581
     */
582
    public const EPSG_ETRS89_NTM_ZONE_15_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5955';
583
584
    /**
585
     * ETRS89 / NTM zone 15 + NN54 height
586
     * Extent: Norway - onshore - between 15°E and 16°E.
587
     * Replaced by ETRS89 / NTM zone 15 + NN2000 height (compound CRS code 5955).
588
     */
589
    public const EPSG_ETRS89_NTM_ZONE_15_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6155';
590
591
    /**
592
     * ETRS89 / NTM zone 16 + NN2000 height
593
     * Extent: Norway - onshore - between 16°E and 17°E.
594
     */
595
    public const EPSG_ETRS89_NTM_ZONE_16_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5956';
596
597
    /**
598
     * ETRS89 / NTM zone 16 + NN54 height
599
     * Extent: Norway - onshore - between 16°E and 17°E.
600
     * Replaced by ETRS89 / NTM zone 16 + NN2000 height (compound CRS code 5956).
601
     */
602
    public const EPSG_ETRS89_NTM_ZONE_16_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6156';
603
604
    /**
605
     * ETRS89 / NTM zone 17 + NN2000 height
606
     * Extent: Norway - onshore - between 17°E and 18°E.
607
     */
608
    public const EPSG_ETRS89_NTM_ZONE_17_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5957';
609
610
    /**
611
     * ETRS89 / NTM zone 17 + NN54 height
612
     * Extent: Norway - onshore - between 17°E and 18°E.
613
     * Replaced by ETRS89 / NTM zone 17 + NN2000 height (compound CRS code 5957).
614
     */
615
    public const EPSG_ETRS89_NTM_ZONE_17_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6157';
616
617
    /**
618
     * ETRS89 / NTM zone 18 + NN2000 height
619
     * Extent: Norway - onshore - between 18°E and 19°E.
620
     */
621
    public const EPSG_ETRS89_NTM_ZONE_18_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5958';
622
623
    /**
624
     * ETRS89 / NTM zone 18 + NN54 height
625
     * Extent: Norway - onshore - between 18°E and 19°E.
626
     * Replaced by ETRS89 / NTM zone 18 + NN2000 height (compound CRS code 5958).
627
     */
628
    public const EPSG_ETRS89_NTM_ZONE_18_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6158';
629
630
    /**
631
     * ETRS89 / NTM zone 19 + NN2000 height
632
     * Extent: Norway - onshore - between 19°E and 20°E.
633
     */
634
    public const EPSG_ETRS89_NTM_ZONE_19_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5959';
635
636
    /**
637
     * ETRS89 / NTM zone 19 + NN54 height
638
     * Extent: Norway - onshore - between 19°E and 20°E.
639
     * Replaced by ETRS89 / NTM zone 19 + NN2000 height (compound CRS code 5959).
640
     */
641
    public const EPSG_ETRS89_NTM_ZONE_19_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6159';
642
643
    /**
644
     * ETRS89 / NTM zone 20 + NN2000 height
645
     * Extent: Norway - onshore - between 20°E and 21°E.
646
     */
647
    public const EPSG_ETRS89_NTM_ZONE_20_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5960';
648
649
    /**
650
     * ETRS89 / NTM zone 20 + NN54 height
651
     * Extent: Norway - onshore - between 20°E and 21°E.
652
     * Replaced by ETRS89 / NTM zone 20 + NN2000 height (compound CRS code 5960).
653
     */
654
    public const EPSG_ETRS89_NTM_ZONE_20_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6160';
655
656
    /**
657
     * ETRS89 / NTM zone 21 + NN2000 height
658
     * Extent: Norway - onshore - between 21°E and 22°E.
659
     */
660
    public const EPSG_ETRS89_NTM_ZONE_21_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5961';
661
662
    /**
663
     * ETRS89 / NTM zone 21 + NN54 height
664
     * Extent: Norway - onshore - between 21°E and 22°E.
665
     * Replaced by ETRS89 / NTM zone 21 + NN2000 height (compound CRS code 5961).
666
     */
667
    public const EPSG_ETRS89_NTM_ZONE_21_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6161';
668
669
    /**
670
     * ETRS89 / NTM zone 22 + NN2000 height
671
     * Extent: Norway - onshore - between 22°E and 23°E.
672
     */
673
    public const EPSG_ETRS89_NTM_ZONE_22_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5962';
674
675
    /**
676
     * ETRS89 / NTM zone 22 + NN54 height
677
     * Extent: Norway - onshore - between 22°E and 23°E.
678
     * Replaced by ETRS89 / NTM zone 22 + NN2000 height (compound CRS code 5962).
679
     */
680
    public const EPSG_ETRS89_NTM_ZONE_22_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6162';
681
682
    /**
683
     * ETRS89 / NTM zone 23 + NN2000 height
684
     * Extent: Norway - onshore - between 23°E and 24°E.
685
     */
686
    public const EPSG_ETRS89_NTM_ZONE_23_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5963';
687
688
    /**
689
     * ETRS89 / NTM zone 23 + NN54 height
690
     * Extent: Norway - onshore - between 23°E and 24°E.
691
     * Replaced by ETRS89 / NTM zone 23 + NN2000 height (compound CRS code 5963).
692
     */
693
    public const EPSG_ETRS89_NTM_ZONE_23_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6163';
694
695
    /**
696
     * ETRS89 / NTM zone 24 + NN2000 height
697
     * Extent: Norway - onshore - between 24°E and 25°E.
698
     */
699
    public const EPSG_ETRS89_NTM_ZONE_24_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5964';
700
701
    /**
702
     * ETRS89 / NTM zone 24 + NN54 height
703
     * Extent: Norway - onshore - between 24°E and 25°E.
704
     * Replaced by ETRS89 / NTM zone 24 + NN2000 height (compound CRS code 5964).
705
     */
706
    public const EPSG_ETRS89_NTM_ZONE_24_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6164';
707
708
    /**
709
     * ETRS89 / NTM zone 25 + NN2000 height
710
     * Extent: Norway - onshore - between 25°E and 26°E.
711
     */
712
    public const EPSG_ETRS89_NTM_ZONE_25_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5965';
713
714
    /**
715
     * ETRS89 / NTM zone 25 + NN54 height
716
     * Extent: Norway - onshore - between 25°E and 26°E.
717
     * Replaced by ETRS89 / NTM zone 25 + NN2000 height (compound CRS code 5965).
718
     */
719
    public const EPSG_ETRS89_NTM_ZONE_25_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6165';
720
721
    /**
722
     * ETRS89 / NTM zone 26 + NN2000 height
723
     * Extent: Norway - onshore - between 26°E and 27°E.
724
     */
725
    public const EPSG_ETRS89_NTM_ZONE_26_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5966';
726
727
    /**
728
     * ETRS89 / NTM zone 26 + NN54 height
729
     * Extent: Norway - onshore - between 26°E and 27°E.
730
     * Replaced by ETRS89 / NTM zone 26 + NN2000 height (compound CRS code 5966).
731
     */
732
    public const EPSG_ETRS89_NTM_ZONE_26_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6166';
733
734
    /**
735
     * ETRS89 / NTM zone 27 + NN2000 height
736
     * Extent: Norway - onshore - between 27°E and 28°E.
737
     */
738
    public const EPSG_ETRS89_NTM_ZONE_27_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5967';
739
740
    /**
741
     * ETRS89 / NTM zone 27 + NN54 height
742
     * Extent: Norway - onshore - between 27°E and 28°E.
743
     * Replaced by ETRS89 / NTM zone 27 + NN2000 height (compound CRS code 5967).
744
     */
745
    public const EPSG_ETRS89_NTM_ZONE_27_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6167';
746
747
    /**
748
     * ETRS89 / NTM zone 28 + NN2000 height
749
     * Extent: Norway - onshore - between 28°E and 29°E.
750
     */
751
    public const EPSG_ETRS89_NTM_ZONE_28_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5968';
752
753
    /**
754
     * ETRS89 / NTM zone 28 + NN54 height
755
     * Extent: Norway - onshore - between 28°E and 29°E.
756
     * Replaced by ETRS89 / NTM zone 28 + NN2000 height (compound CRS code 5968).
757
     */
758
    public const EPSG_ETRS89_NTM_ZONE_28_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6168';
759
760
    /**
761
     * ETRS89 / NTM zone 29 + NN2000 height
762
     * Extent: Norway - onshore - between 29°E and 30°E.
763
     */
764
    public const EPSG_ETRS89_NTM_ZONE_29_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5969';
765
766
    /**
767
     * ETRS89 / NTM zone 29 + NN54 height
768
     * Extent: Norway - onshore - between 29°E and 30°E.
769
     * Replaced by ETRS89 / NTM zone 29 + NN2000 height (compound CRS code 5969).
770
     */
771
    public const EPSG_ETRS89_NTM_ZONE_29_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6169';
772
773
    /**
774
     * ETRS89 / NTM zone 30 + NN2000 height
775
     * Extent: Norway - onshore - east of 30°E.
776
     */
777
    public const EPSG_ETRS89_NTM_ZONE_30_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5970';
778
779
    /**
780
     * ETRS89 / NTM zone 30 + NN54 height
781
     * Extent: Norway - onshore - east of 30°E.
782
     * Replaced by ETRS89 / NTM zone 30 + NN2000 height (compound CRS code 5970).
783
     */
784
    public const EPSG_ETRS89_NTM_ZONE_30_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6170';
785
786
    /**
787
     * ETRS89 / NTM zone 5 + NN2000 height
788
     * Extent: Norway - onshore - west of 6°E.
789
     */
790
    public const EPSG_ETRS89_NTM_ZONE_5_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5945';
791
792
    /**
793
     * ETRS89 / NTM zone 5 + NN54 height
794
     * Extent: Norway - onshore - west of 6°E.
795
     * Replaced by ETRS89 / NTM zone 5 + NN2000 height (compound CRS code 5945).
796
     */
797
    public const EPSG_ETRS89_NTM_ZONE_5_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6145';
798
799
    /**
800
     * ETRS89 / NTM zone 6 + NN2000 height
801
     * Extent: Norway - onshore - between 6°E and 7°E.
802
     */
803
    public const EPSG_ETRS89_NTM_ZONE_6_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5946';
804
805
    /**
806
     * ETRS89 / NTM zone 6 + NN54 height
807
     * Extent: Norway - onshore - between 6°E and 7°E.
808
     * Replaced by ETRS89 / NTM zone 6 + NN2000 height (compound CRS code 5946).
809
     */
810
    public const EPSG_ETRS89_NTM_ZONE_6_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6146';
811
812
    /**
813
     * ETRS89 / NTM zone 7 + NN2000 height
814
     * Extent: Norway - onshore - between 7°E and 8°E.
815
     */
816
    public const EPSG_ETRS89_NTM_ZONE_7_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5947';
817
818
    /**
819
     * ETRS89 / NTM zone 7 + NN54 height
820
     * Extent: Norway - onshore - between 7°E and 8°E.
821
     * Replaced by ETRS89 / NTM zone 7 + NN2000 height (compound CRS code 5947).
822
     */
823
    public const EPSG_ETRS89_NTM_ZONE_7_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6147';
824
825
    /**
826
     * ETRS89 / NTM zone 8 + NN2000 height
827
     * Extent: Norway - onshore - between 8°E and 9°E.
828
     */
829
    public const EPSG_ETRS89_NTM_ZONE_8_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5948';
830
831
    /**
832
     * ETRS89 / NTM zone 8 + NN54 height
833
     * Extent: Norway - onshore - between 8°E and 9°E.
834
     * Replaced by ETRS89 / NTM zone 8 + NN2000 height (compound CRS code 5948).
835
     */
836
    public const EPSG_ETRS89_NTM_ZONE_8_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6148';
837
838
    /**
839
     * ETRS89 / NTM zone 9 + NN2000 height
840
     * Extent: Norway - onshore - between 9°E and 10°E.
841
     */
842
    public const EPSG_ETRS89_NTM_ZONE_9_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5949';
843
844
    /**
845
     * ETRS89 / NTM zone 9 + NN54 height
846
     * Extent: Norway - onshore - between 9°E and 10°E.
847
     * Replaced by ETRS89 / NTM zone 9 + NN2000 height (compound CRS code 5949).
848
     */
849
    public const EPSG_ETRS89_NTM_ZONE_9_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6149';
850
851
    /**
852
     * ETRS89 / TM35FIN(N,E) + N2000 height
853
     * Extent: Finland - onshore.
854
     * Replaces ETRS89 / TM35FIN(N,E) + N60 height (CRS code 3902).
855
     */
856
    public const EPSG_ETRS89_TM35FIN_N_E_PLUS_N2000_HEIGHT = 'urn:ogc:def:crs:EPSG::3903';
857
858
    /**
859
     * ETRS89 / TM35FIN(N,E) + N60 height
860
     * Extent: Finland - onshore.
861
     * Replaces YKJ/N60 (CRS code 3901). Replaced by ETRS89-TM35FIN(N,E)/N2000 (CRS code 3903).
862
     */
863
    public const EPSG_ETRS89_TM35FIN_N_E_PLUS_N60_HEIGHT = 'urn:ogc:def:crs:EPSG::3902';
864
865
    /**
866
     * ETRS89 / UTM zone 31N + DHHN92 height
867
     * Extent: Germany - onshore west of 6°E.
868
     */
869
    public const EPSG_ETRS89_UTM_ZONE_31N_PLUS_DHHN92_HEIGHT = 'urn:ogc:def:crs:EPSG::5554';
870
871
    /**
872
     * ETRS89 / UTM zone 31N + NN2000 height
873
     * Extent: Norway - onshore - west of 6°E.
874
     */
875
    public const EPSG_ETRS89_UTM_ZONE_31N_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5971';
876
877
    /**
878
     * ETRS89 / UTM zone 31N + NN54 height
879
     * Extent: Norway - onshore - west of 6°E.
880
     * Replaced by ETRS89 / UTM zone 31N + NN2000 height (compound CRS code 5971).
881
     */
882
    public const EPSG_ETRS89_UTM_ZONE_31N_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6171';
883
884
    /**
885
     * ETRS89 / UTM zone 32N + DHHN92 height
886
     * Extent: Germany - onshore between 6°E and 12°E.
887
     */
888
    public const EPSG_ETRS89_UTM_ZONE_32N_PLUS_DHHN92_HEIGHT = 'urn:ogc:def:crs:EPSG::5555';
889
890
    /**
891
     * ETRS89 / UTM zone 32N + DVR90 height
892
     * Extent: Denmark - onshore west of 12°E - Zealand, Jutland, Fuen and Lolland.
893
     */
894
    public const EPSG_ETRS89_UTM_ZONE_32N_PLUS_DVR90_HEIGHT = 'urn:ogc:def:crs:EPSG::7416';
895
896
    /**
897
     * ETRS89 / UTM zone 32N + NN2000 height
898
     * Extent: Norway - onshore - between 6°E and 12°E.
899
     */
900
    public const EPSG_ETRS89_UTM_ZONE_32N_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5972';
901
902
    /**
903
     * ETRS89 / UTM zone 32N + NN54 height
904
     * Extent: Norway - onshore - between 6°E and 12°E.
905
     * Replaced by ETRS89 / UTM zone 32N + NN2000 height (compound CRS code 5972).
906
     */
907
    public const EPSG_ETRS89_UTM_ZONE_32N_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6172';
908
909
    /**
910
     * ETRS89 / UTM zone 33N + DHHN92 height
911
     * Extent: Germany - onshore east of 12°E.
912
     */
913
    public const EPSG_ETRS89_UTM_ZONE_33N_PLUS_DHHN92_HEIGHT = 'urn:ogc:def:crs:EPSG::5556';
914
915
    /**
916
     * ETRS89 / UTM zone 33N + DVR90 height
917
     * Extent: Denmark - onshore east of 12°E - Zealand and Falster, Bornholm.
918
     */
919
    public const EPSG_ETRS89_UTM_ZONE_33N_PLUS_DVR90_HEIGHT = 'urn:ogc:def:crs:EPSG::7417';
920
921
    /**
922
     * ETRS89 / UTM zone 33N + NN2000 height
923
     * Extent: Norway - onshore - between 12°E and 18°E.
924
     */
925
    public const EPSG_ETRS89_UTM_ZONE_33N_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5973';
926
927
    /**
928
     * ETRS89 / UTM zone 33N + NN54 height
929
     * Extent: Norway - onshore - between 12°E and 18°E.
930
     * Replaced by ETRS89 / UTM zone 33N + NN2000 height (compound CRS code 5973).
931
     */
932
    public const EPSG_ETRS89_UTM_ZONE_33N_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6173';
933
934
    /**
935
     * ETRS89 / UTM zone 34N + NN2000 height
936
     * Extent: Norway - onshore - between 18°E and 24°E.
937
     */
938
    public const EPSG_ETRS89_UTM_ZONE_34N_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5974';
939
940
    /**
941
     * ETRS89 / UTM zone 34N + NN54 height
942
     * Extent: Norway - onshore - between 18°E and 24°E.
943
     * Replaced by ETRS89 / UTM zone 34N + NN2000 height (compound CRS code 5974).
944
     */
945
    public const EPSG_ETRS89_UTM_ZONE_34N_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6174';
946
947
    /**
948
     * ETRS89 / UTM zone 35N + NN2000 height
949
     * Extent: Norway - onshore - between 24°E and 30°E.
950
     */
951
    public const EPSG_ETRS89_UTM_ZONE_35N_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5975';
952
953
    /**
954
     * ETRS89 / UTM zone 35N + NN54 height
955
     * Extent: Norway - onshore - between 24°E and 30°E.
956
     * Replaced by ETRS89 / UTM zone 35N + NN2000 height (compound CRS code 5975).
957
     */
958
    public const EPSG_ETRS89_UTM_ZONE_35N_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6175';
959
960
    /**
961
     * ETRS89 / UTM zone 36N + NN2000 height
962
     * Extent: Norway - onshore - east of 30°E.
963
     */
964
    public const EPSG_ETRS89_UTM_ZONE_36N_PLUS_NN2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5976';
965
966
    /**
967
     * ETRS89 / UTM zone 36N + NN54 height
968
     * Extent: Norway - onshore - east of 30°E.
969
     * Replaced by ETRS89 / UTM zone 36N + NN2000 height (compound CRS code 5976).
970
     */
971
    public const EPSG_ETRS89_UTM_ZONE_36N_PLUS_NN54_HEIGHT = 'urn:ogc:def:crs:EPSG::6176';
972
973
    /**
974
     * EWR2 Grid + ODN height
975
     * Extent: United Kingdom (UK) - on or related to East West Rail (Phase 2) routes from Oxford to Bicester,
976
     * Bletchley and Bedford, and from Claydon Junction to Aylesbury and Princes Risborough.
977
     */
978
    public const EPSG_EWR2_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::9767';
979
980
    /**
981
     * FEH2010 + FCSVR10 height
982
     * Extent: Fehmarnbelt area of Denmark and Germany.
983
     */
984
    public const EPSG_FEH2010_PLUS_FCSVR10_HEIGHT = 'urn:ogc:def:crs:EPSG::9519';
985
986
    /**
987
     * FEH2010 / Fehmarnbelt TM + FCSVR10 height
988
     * Extent: Fehmarnbelt area of Denmark and Germany.
989
     */
990
    public const EPSG_FEH2010_FEHMARNBELT_TM_PLUS_FCSVR10_HEIGHT = 'urn:ogc:def:crs:EPSG::5598';
991
992
    /**
993
     * FNL22 Grid + ODN height
994
     * Extent: United Kingdom (UK) - on or related to the rail route from Inverness to Thurso and Wick.
995
     */
996
    public const EPSG_FNL22_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::9978';
997
998
    /**
999
     * GBK19 Grid + ODN height
1000
     * Extent: United Kingdom (UK) - on or related to the rail route from Glasgow to Kilmarnock via Barrhead and the
1001
     * branch to East Kilbride.
1002
     */
1003
    public const EPSG_GBK19_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::9457';
1004
1005
    /**
1006
     * GDA2020 + AHD height
1007
     * Extent: Australia - Australian Capital Territory, New South Wales, Northern Territory, Queensland, South
1008
     * Australia, Tasmania, Western Australia and Victoria - onshore. Christmas Island - onshore. Cocos and Keeling
1009
     * Islands - onshore.
1010
     */
1011
    public const EPSG_GDA2020_PLUS_AHD_HEIGHT = 'urn:ogc:def:crs:EPSG::9463';
1012
1013
    /**
1014
     * GDA2020 + AVWS height
1015
     * Extent: Australia including Lord Howe Island, Macquarie Island, Ashmore and Cartier Islands, Christmas Island,
1016
     * Cocos (Keeling) Islands, Norfolk Island. All onshore and offshore.
1017
     */
1018
    public const EPSG_GDA2020_PLUS_AVWS_HEIGHT = 'urn:ogc:def:crs:EPSG::9462';
1019
1020
    /**
1021
     * GDA94 + AHD height
1022
     * Extent: Australia - Australian Capital Territory, New South Wales, Northern Territory, Queensland, South
1023
     * Australia, Tasmania, Western Australia and Victoria - onshore. Christmas Island - onshore. Cocos and Keeling
1024
     * Islands - onshore.
1025
     */
1026
    public const EPSG_GDA94_PLUS_AHD_HEIGHT = 'urn:ogc:def:crs:EPSG::9464';
1027
1028
    /**
1029
     * GR96 + GVR2000 height
1030
     * Extent: Greenland - onshore and offshore between 59°N and 84°N and west of 10°W.
1031
     * Replaced by GR96 + GVR2016 height (CRS code 8350).
1032
     */
1033
    public const EPSG_GR96_PLUS_GVR2000_HEIGHT = 'urn:ogc:def:crs:EPSG::8349';
1034
1035
    /**
1036
     * GR96 + GVR2016 height
1037
     * Extent: Greenland - onshore and offshore between 58°N and 85°N and west of 7°W.
1038
     * Replaces GR96 + GVR2000 height (CRS code 8349).
1039
     */
1040
    public const EPSG_GR96_PLUS_GVR2016_HEIGHT = 'urn:ogc:def:crs:EPSG::8350';
1041
1042
    /**
1043
     * GWPBS22 Grid + ODN height
1044
     * Extent: United Kingdom (UK) - on or related to the rail route from London (Paddington) to Swansea.
1045
     */
1046
    public const EPSG_GWPBS22_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::10213';
1047
1048
    /**
1049
     * GWWAB22 Grid + ODN height
1050
     * Extent: United Kingdom (UK) - on or related to the rail routes around Cardiff and the valleys.
1051
     */
1052
    public const EPSG_GWWAB22_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::10218';
1053
1054
    /**
1055
     * GWWWA22 Grid + ODN height
1056
     * Extent: United Kingdom (UK) - on or related to the rail routes from Swansea to Pembroke Dock, Milford Haven and
1057
     * Fishguard.
1058
     */
1059
    public const EPSG_GWWWA22_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::10223';
1060
1061
    /**
1062
     * HS2 Survey Grid + HS2-VRF height
1063
     * Extent: United Kingdom (UK) - HS2 phases 1 and 2a railway corridor from London to Birmingham, Lichfield and
1064
     * Crewe.
1065
     * Realized by use of HS2TN15 transformation and HS2GM15 geoid model from ETRS89 OSNet v2009.
1066
     */
1067
    public const EPSG_HS2_SURVEY_GRID_PLUS_HS2_VRF_HEIGHT = 'urn:ogc:def:crs:EPSG::9306';
1068
1069
    /**
1070
     * HULLEE13 Grid + ODN height
1071
     * Extent: United Kingdom (UK) - on or related to the rail route from the Morley tunnel through Leeds to Hull.
1072
     */
1073
    public const EPSG_HULLEE13_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::9968';
1074
1075
    /**
1076
     * ISN2004 + ISH2004 height
1077
     * Extent: Iceland - onshore.
1078
     * Replaces ISN93 + ISH2004 height (CRS code 9948). Replaced by ISN2016 + ISH2004 height (CRS code 9950).
1079
     */
1080
    public const EPSG_ISN2004_PLUS_ISH2004_HEIGHT = 'urn:ogc:def:crs:EPSG::9949';
1081
1082
    /**
1083
     * ISN2004 / Lambert 2004 + ISH2004 height
1084
     * Extent: Iceland - onshore.
1085
     * Replaces ISN93 / Lambert 1993 + ISH2004 height (CRS code 9951). Replaced by ISN2016 / Lambert 2016 + ISH2004
1086
     * height (CRS code 9953).
1087
     */
1088
    public const EPSG_ISN2004_LAMBERT_2004_PLUS_ISH2004_HEIGHT = 'urn:ogc:def:crs:EPSG::9952';
1089
1090
    /**
1091
     * ISN2016 + ISH2004 height
1092
     * Extent: Iceland - onshore.
1093
     * Replaces ISN2004 + ISH2004 height (CRS code 9949).
1094
     */
1095
    public const EPSG_ISN2016_PLUS_ISH2004_HEIGHT = 'urn:ogc:def:crs:EPSG::9950';
1096
1097
    /**
1098
     * ISN2016 / Lambert 2016 + ISH2004 height
1099
     * Extent: Iceland - onshore.
1100
     * Replaces ISN2004 / Lambert 2004 + ISH2004 height (CRS code 9952).
1101
     */
1102
    public const EPSG_ISN2016_LAMBERT_2016_PLUS_ISH2004_HEIGHT = 'urn:ogc:def:crs:EPSG::9953';
1103
1104
    /**
1105
     * ISN93 + ISH2004 height
1106
     * Extent: Iceland - onshore.
1107
     * Replaced by ISN2004 + ISH2004 height (CRS code 9949).
1108
     */
1109
    public const EPSG_ISN93_PLUS_ISH2004_HEIGHT = 'urn:ogc:def:crs:EPSG::9948';
1110
1111
    /**
1112
     * ISN93 / Lambert 1993 + ISH2004 height
1113
     * Extent: Iceland - onshore.
1114
     * Replaced by ISN2004 / Lambert 2004 + ISH2004 height (CRS code 9952).
1115
     */
1116
    public const EPSG_ISN93_LAMBERT_1993_PLUS_ISH2004_HEIGHT = 'urn:ogc:def:crs:EPSG::9951';
1117
1118
    /**
1119
     * ITRF2005 + SA LLD height
1120
     * Extent: South Africa - mainland onshore.
1121
     */
1122
    public const EPSG_ITRF2005_PLUS_SA_LLD_HEIGHT = 'urn:ogc:def:crs:EPSG::9543';
1123
1124
    /**
1125
     * JGD2000 + JGD2000 (vertical) height
1126
     * Extent: Japan - onshore mainland - Hokkaido, Honshu, Shikoku, Kyushu.
1127
     * Replaces Tokyo + JSLD69 height and Tokyo + JSLD72 height (CRS codes 7414 and 6700) from April 2002. Replaced by
1128
     * JGD2011 + JGD2011 (vertical) height (CRS code 6697) with effect from 21st October 2011.
1129
     */
1130
    public const EPSG_JGD2000_PLUS_JGD2000_VERTICAL_HEIGHT = 'urn:ogc:def:crs:EPSG::6696';
1131
1132
    /**
1133
     * JGD2011 + JGD2011 (vertical) height
1134
     * Extent: Japan - onshore mainland - Hokkaido, Honshu, Shikoku, Kyushu.
1135
     * Replaces JGD2000 + JGD2000 (vertical) height (CRS code 6696) with effect from 21st October 2011.
1136
     */
1137
    public const EPSG_JGD2011_PLUS_JGD2011_VERTICAL_HEIGHT = 'urn:ogc:def:crs:EPSG::6697';
1138
1139
    /**
1140
     * JGD2011 / Japan Plane Rectangular CS I + JGD2011 (vertical) height
1141
     * Extent: Japan - onshore - Kyushu west of approximately 130°E - Nagasaki-ken.
1142
     */
1143
    public const EPSG_JGD2011_JAPAN_PLANE_RECTANGULAR_CS_I_PLUS_JGD2011_VERTICAL_HEIGHT = 'urn:ogc:def:crs:EPSG::10162';
1144
1145
    /**
1146
     * JGD2011 / Japan Plane Rectangular CS II + JGD2011 (vertical) height
1147
     * Extent: Japan - onshore - Kyushu east of approximately 130°E - Fukuoka-ken; Saga-ken; Kumamoto-ken; Oita-ken;
1148
     * Miyazaki-ken; Kagoshima-ken on Kyushu (except for area within Japan Plane Rectangular Coordinate System zone I).
1149
     */
1150
    public const EPSG_JGD2011_JAPAN_PLANE_RECTANGULAR_CS_II_PLUS_JGD2011_VERTICAL_HEIGHT = 'urn:ogc:def:crs:EPSG::10163';
1151
1152
    /**
1153
     * JGD2011 / Japan Plane Rectangular CS III + JGD2011 (vertical) height
1154
     * Extent: Japan - onshore - Honshu west of approximately 133°15'E - Yamaguchi-ken; Shimane-ken; Hiroshima-ken.
1155
     */
1156
    public const EPSG_JGD2011_JAPAN_PLANE_RECTANGULAR_CS_III_PLUS_JGD2011_VERTICAL_HEIGHT = 'urn:ogc:def:crs:EPSG::10164';
1157
1158
    /**
1159
     * JGD2011 / Japan Plane Rectangular CS IV + JGD2011 (vertical) height
1160
     * Extent: Japan - onshore - Shikoku - Kagawa-ken; Ehime-ken; Tokushima-ken; Kochi-ken.
1161
     */
1162
    public const EPSG_JGD2011_JAPAN_PLANE_RECTANGULAR_CS_IV_PLUS_JGD2011_VERTICAL_HEIGHT = 'urn:ogc:def:crs:EPSG::10165';
1163
1164
    /**
1165
     * JGD2011 / Japan Plane Rectangular CS IX + JGD2011 (vertical) height
1166
     * Extent: Japan - onshore - Honshu - Tokyo-to. (Excludes offshore island areas of Tokyo-to).
1167
     */
1168
    public const EPSG_JGD2011_JAPAN_PLANE_RECTANGULAR_CS_IX_PLUS_JGD2011_VERTICAL_HEIGHT = 'urn:ogc:def:crs:EPSG::10170';
1169
1170
    /**
1171
     * JGD2011 / Japan Plane Rectangular CS V + JGD2011 (vertical) height
1172
     * Extent: Japan - onshore - Honshu between approximately 133°15'E and 135°10'E - Hyogo-ken; Tottori-ken;
1173
     * Okayama-ken.
1174
     */
1175
    public const EPSG_JGD2011_JAPAN_PLANE_RECTANGULAR_CS_V_PLUS_JGD2011_VERTICAL_HEIGHT = 'urn:ogc:def:crs:EPSG::10166';
1176
1177
    /**
1178
     * JGD2011 / Japan Plane Rectangular CS VI + JGD2011 (vertical) height
1179
     * Extent: Japan - onshore - Honshu between approximately 135°10'E and 136°45'E - Kyoto-fu; Osaka-fu; Fukui-ken;
1180
     * Shiga-ken; Mie-ken; Nara-ken; Wakayama-ken.
1181
     */
1182
    public const EPSG_JGD2011_JAPAN_PLANE_RECTANGULAR_CS_VI_PLUS_JGD2011_VERTICAL_HEIGHT = 'urn:ogc:def:crs:EPSG::10167';
1183
1184
    /**
1185
     * JGD2011 / Japan Plane Rectangular CS VII + JGD2011 (vertical) height
1186
     * Extent: Japan - onshore - Honshu between approximately 136°15'E and 137°45'E - Ishikawa-ken; Toyama-ken;
1187
     * Gifu-ken; Aichi-ken.
1188
     */
1189
    public const EPSG_JGD2011_JAPAN_PLANE_RECTANGULAR_CS_VII_PLUS_JGD2011_VERTICAL_HEIGHT = 'urn:ogc:def:crs:EPSG::10168';
1190
1191
    /**
1192
     * JGD2011 / Japan Plane Rectangular CS VIII + JGD2011 (vertical) height
1193
     * Extent: Japan - onshore - Honshu between approximately 137°45'E and 139°E - Niigata-ken on Honshu; Nagano-ken;
1194
     * Yamanashi-ken; Shizuoka-ken.
1195
     */
1196
    public const EPSG_JGD2011_JAPAN_PLANE_RECTANGULAR_CS_VIII_PLUS_JGD2011_VERTICAL_HEIGHT = 'urn:ogc:def:crs:EPSG::10169';
1197
1198
    /**
1199
     * JGD2011 / Japan Plane Rectangular CS X + JGD2011 (vertical) height
1200
     * Extent: Japan - onshore - Honshu north of 38°N approximately - Aomori-ken; Akita-ken; Yamagata-ken; Iwate-ken;
1201
     * Miyagi-ken.
1202
     */
1203
    public const EPSG_JGD2011_JAPAN_PLANE_RECTANGULAR_CS_X_PLUS_JGD2011_VERTICAL_HEIGHT = 'urn:ogc:def:crs:EPSG::10171';
1204
1205
    /**
1206
     * JGD2011 / Japan Plane Rectangular CS XI + JGD2011 (vertical) height
1207
     * Extent: Japan - onshore - Hokkaido west of approximately 141°E - Otaru city; Usu-gun and Abuta-gun of
1208
     * Iburi-shicho; Hiyama-shicho; Shiribeshi-shicho; Oshima-shicho.
1209
     */
1210
    public const EPSG_JGD2011_JAPAN_PLANE_RECTANGULAR_CS_XI_PLUS_JGD2011_VERTICAL_HEIGHT = 'urn:ogc:def:crs:EPSG::10172';
1211
1212
    /**
1213
     * JGD2011 / Japan Plane Rectangular CS XII + JGD2011 (vertical) height
1214
     * Extent: Japan - onshore - Hokkaido between approximately 141°E and 143°E - Sapporo city; Asahikawa city;
1215
     * Wakkanai city; Rumoi city; Bibai city; Yubari city; Iwamizawa city; Tomakomai city; Muroran city; Shibetsu city;
1216
     * Nayoro city; Ashibetsu city; Akabira city; Mikasa city; Takikawa city; Sunagawa city; Ebetsu city; Chitose city;
1217
     * Utashinai city; Fukagawa city; Monbetsu city; Furano city; Noboribetsu city; Eniwa city; Ishikari-shicho;
1218
     * Monbetsu-gun of Abashiri-shicho; Kamikawa-shicho; Soya-shicho; Hidaka-shicho; Iburi-shicho (except Usu-gun and
1219
     * Abuta-gun); Sorachi-shicho; Rumoi-shicho.
1220
     */
1221
    public const EPSG_JGD2011_JAPAN_PLANE_RECTANGULAR_CS_XII_PLUS_JGD2011_VERTICAL_HEIGHT = 'urn:ogc:def:crs:EPSG::10173';
1222
1223
    /**
1224
     * JGD2011 / Japan Plane Rectangular CS XIII + JGD2011 (vertical) height
1225
     * Extent: Japan - onshore - Hokkaido east of approximately 143°E - Kitami city; Obihiro city; Kushiro city;
1226
     * Abashiri city; Nemuro city; Nemuro-shicho; Kushiro-shicho; Abashiri-shicho (except Monbetsu-gun);
1227
     * Tokachi-shicho.
1228
     */
1229
    public const EPSG_JGD2011_JAPAN_PLANE_RECTANGULAR_CS_XIII_PLUS_JGD2011_VERTICAL_HEIGHT = 'urn:ogc:def:crs:EPSG::10174';
1230
1231
    /**
1232
     * KKJ / Finland Uniform Coordinate System + N60 height
1233
     * Extent: Finland - onshore.
1234
     * Replaced by ETRS89 / TM35FIN(N,E) + N60 height (CRS code 3902).
1235
     */
1236
    public const EPSG_KKJ_FINLAND_UNIFORM_COORDINATE_SYSTEM_PLUS_N60_HEIGHT = 'urn:ogc:def:crs:EPSG::3901';
1237
1238
    /**
1239
     * KSA-GRF17 + KSA-VRF14 height
1240
     * Extent: Saudi Arabia - onshore.
1241
     */
1242
    public const EPSG_KSA_GRF17_PLUS_KSA_VRF14_HEIGHT = 'urn:ogc:def:crs:EPSG::9520';
1243
1244
    /**
1245
     * LUREF / Luxembourg TM + NG95 height
1246
     * Extent: Luxembourg.
1247
     * For purposes with lower height accuracy requirements, may be approximated (to 5-15cm in height) by projected 3D
1248
     * CRS code 9895.
1249
     */
1250
    public const EPSG_LUREF_LUXEMBOURG_TM_PLUS_NG95_HEIGHT = 'urn:ogc:def:crs:EPSG::9897';
1251
1252
    /**
1253
     * MALS09 Grid + ODN height
1254
     * Extent: United Kingdom (UK) - on or related to the rail route from London (Marylebone) to Leamington Spa.
1255
     */
1256
    public const EPSG_MALS09_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::10228';
1257
1258
    /**
1259
     * MGI + EVRF2000 Austria height
1260
     * Extent: Austria.
1261
     */
1262
    public const EPSG_MGI_PLUS_EVRF2000_AUSTRIA_HEIGHT = 'urn:ogc:def:crs:EPSG::9501';
1263
1264
    /**
1265
     * MML07 Grid + ODN height
1266
     * Extent: United Kingdom (UK) - on or related to the Midland Mainline rail route from Sheffield to London.
1267
     */
1268
    public const EPSG_MML07_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::9374';
1269
1270
    /**
1271
     * MOLDOR11 Grid + ODN height
1272
     * Extent: United Kingdom (UK) - on or related to the rail route from Manchester via Ordsall Lane and the Hope
1273
     * Valley to Dore Junction.
1274
     */
1275
    public const EPSG_MOLDOR11_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::9881';
1276
1277
    /**
1278
     * MRH21 Grid + ODN height
1279
     * Extent: United Kingdom (UK) - on or related to Midland Rail Hub, covering routes through Cardiff, Bristol,
1280
     * Gloucester, Derby, Birmingham, Leicester, and Lincoln.
1281
     */
1282
    public const EPSG_MRH21_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::9870';
1283
1284
    /**
1285
     * MWC18 Grid + ODN height
1286
     * Extent: United Kingdom (UK) - on or related to the rail route from Manchester via Wigan and Liverpool to
1287
     * Chester.
1288
     */
1289
    public const EPSG_MWC18_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::20003';
1290
1291
    /**
1292
     * NAD27 + NGVD29 height (ftUS)
1293
     * Extent: United States (USA) - CONUS onshore - Alabama; Arizona; Arkansas; California; Colorado; Connecticut;
1294
     * Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland;
1295
     * Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey;
1296
     * New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South
1297
     * Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin;
1298
     * Wyoming.
1299
     */
1300
    public const EPSG_NAD27_PLUS_NGVD29_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::7406';
1301
1302
    /**
1303
     * NAD27 / Texas North + NGVD29 height (ftUS)
1304
     * Extent: United States (USA) - Texas - counties of: Armstrong; Briscoe; Carson; Castro; Childress; Collingsworth;
1305
     * Dallam; Deaf Smith; Donley; Gray; Hall; Hansford; Hartley; Hemphill; Hutchinson; Lipscomb; Moore; Ochiltree;
1306
     * Oldham; Parmer; Potter; Randall; Roberts; Sherman; Swisher; Wheeler.
1307
     */
1308
    public const EPSG_NAD27_TEXAS_NORTH_PLUS_NGVD29_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::7407';
1309
1310
    /**
1311
     * NAD83 + NAVD88 height
1312
     * Extent: United States (USA) - CONUS and Alaska - onshore - Alabama; Alaska mainland; Arizona; Arkansas;
1313
     * California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky;
1314
     * Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska;
1315
     * Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon;
1316
     * Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington;
1317
     * West Virginia; Wisconsin; Wyoming.
1318
     */
1319
    public const EPSG_NAD83_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::5498';
1320
1321
    /**
1322
     * NAD83 / Alabama East + NAVD88 height
1323
     * Extent: United States (USA) - Alabama east of approximately 86°37'W - counties Barbour; Bullock; Calhoun;
1324
     * Chambers; Cherokee; Clay; Cleburne; Coffee; Coosa; Covington; Crenshaw; Dale; De Kalb; Elmore; Etowah; Geneva;
1325
     * Henry; Houston; Jackson; Lee; Macon; Madison; Marshall; Montgomery; Pike; Randolph; Russell; StClair; Talladega;
1326
     * Tallapoosa.
1327
     */
1328
    public const EPSG_NAD83_ALABAMA_EAST_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::8801';
1329
1330
    /**
1331
     * NAD83 / Alabama West + NAVD88 height
1332
     * Extent: United States (USA) - Alabama west of approximately 86°37'W - counties Autauga; Baldwin; Bibb; Blount;
1333
     * Butler; Chilton; Choctaw; Clarke; Colbert; Conecuh; Cullman; Dallas; Escambia; Fayette; Franklin; Greene; Hale;
1334
     * Jefferson; Lamar; Lauderdale; Lawrence; Limestone; Lowndes; Marengo; Marion; Mobile; Monroe; Morgan; Perry;
1335
     * Pickens; Shelby; Sumter; Tuscaloosa; Walker; Washington; Wilcox; Winston.
1336
     */
1337
    public const EPSG_NAD83_ALABAMA_WEST_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::8802';
1338
1339
    /**
1340
     * NAD83 / Alaska zone 1 + NAVD88 height
1341
     * Extent: United States (USA) - Alaska - east of 141°W; i.e. Panhandle.
1342
     */
1343
    public const EPSG_NAD83_ALASKA_ZONE_1_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::8803';
1344
1345
    /**
1346
     * NAD83 / Alaska zone 10 + NAVD88 height
1347
     * Extent: United States (USA) - Alaska - Aleutian Islands onshore.
1348
     */
1349
    public const EPSG_NAD83_ALASKA_ZONE_10_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::8812';
1350
1351
    /**
1352
     * NAD83 / Alaska zone 2 + NAVD88 height
1353
     * Extent: United States (USA) - Alaska - between 144°W and 141°W, onshore.
1354
     */
1355
    public const EPSG_NAD83_ALASKA_ZONE_2_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::8804';
1356
1357
    /**
1358
     * NAD83 / Alaska zone 3 + NAVD88 height
1359
     * Extent: United States (USA) - Alaska - between 148°W and 144°W.
1360
     */
1361
    public const EPSG_NAD83_ALASKA_ZONE_3_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::8805';
1362
1363
    /**
1364
     * NAD83 / Alaska zone 4 + NAVD88 height
1365
     * Extent: United States (USA) - Alaska - between 152°W and 148°W, onshore.
1366
     */
1367
    public const EPSG_NAD83_ALASKA_ZONE_4_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::8806';
1368
1369
    /**
1370
     * NAD83 / Alaska zone 5 + NAVD88 height
1371
     * Extent: United States (USA) - Alaska - between 156°W and 152°W.
1372
     */
1373
    public const EPSG_NAD83_ALASKA_ZONE_5_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::8807';
1374
1375
    /**
1376
     * NAD83 / Alaska zone 6 + NAVD88 height
1377
     * Extent: United States (USA) - Alaska - between 160°W and 156°W, onshore.
1378
     */
1379
    public const EPSG_NAD83_ALASKA_ZONE_6_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::8808';
1380
1381
    /**
1382
     * NAD83 / Alaska zone 7 + NAVD88 height
1383
     * Extent: United States (USA) - Alaska - between 164°W and 160°W, onshore.
1384
     */
1385
    public const EPSG_NAD83_ALASKA_ZONE_7_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::8809';
1386
1387
    /**
1388
     * NAD83 / Alaska zone 8 + NAVD88 height
1389
     * Extent: United States (USA) - Alaska onshore north of 54°30'N and between 168°W and 164°W.
1390
     */
1391
    public const EPSG_NAD83_ALASKA_ZONE_8_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::8810';
1392
1393
    /**
1394
     * NAD83 / Alaska zone 9 + NAVD88 height
1395
     * Extent: United States (USA) - Alaska onshore north of 54°30'N and west of 168°W.
1396
     */
1397
    public const EPSG_NAD83_ALASKA_ZONE_9_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::8811';
1398
1399
    /**
1400
     * NAD83 / Arizona Central (ft) + NAVD88 height (ft)
1401
     * Extent: United States (USA) - Arizona - counties Coconino; Maricopa; Pima; Pinal; Santa Cruz; Yavapai.
1402
     */
1403
    public const EPSG_NAD83_ARIZONA_CENTRAL_FT_PLUS_NAVD88_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::8701';
1404
1405
    /**
1406
     * NAD83 / Arizona East (ft) + NAVD88 height (ft)
1407
     * Extent: United States (USA) - Arizona - counties Apache; Cochise; Gila; Graham; Greenlee; Navajo.
1408
     */
1409
    public const EPSG_NAD83_ARIZONA_EAST_FT_PLUS_NAVD88_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::8700';
1410
1411
    /**
1412
     * NAD83 / Arizona West (ft) + NAVD88 height (ft)
1413
     * Extent: United States (USA) - Arizona - counties of La Paz; Mohave; Yuma.
1414
     */
1415
    public const EPSG_NAD83_ARIZONA_WEST_FT_PLUS_NAVD88_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::8702';
1416
1417
    /**
1418
     * NAD83 / Arkansas North (ftUS) + NAVD88 height (ftUS)
1419
     * Extent: United States (USA) - Arkansas - counties of Baxter; Benton; Boone; Carroll; Clay; Cleburne; Conway;
1420
     * Craighead; Crawford; Crittenden; Cross; Faulkner; Franklin; Fulton; Greene; Independence; Izard; Jackson;
1421
     * Johnson; Lawrence; Logan; Madison; Marion; Mississippi; Newton; Perry; Poinsett; Pope; Randolph; Scott; Searcy;
1422
     * Sebastian; Sharp; St Francis; Stone; Van Buren; Washington; White; Woodruff; Yell.
1423
     */
1424
    public const EPSG_NAD83_ARKANSAS_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8712';
1425
1426
    /**
1427
     * NAD83 / Arkansas South (ftUS) + NAVD88 height (ftUS)
1428
     * Extent: United States (USA) - Arkansas - counties Arkansas; Ashley; Bradley; Calhoun; Chicot; Clark; Cleveland;
1429
     * Columbia; Dallas; Desha; Drew; Garland; Grant; Hempstead; Hot Spring; Howard; Jefferson; Lafayette; Lee;
1430
     * Lincoln; Little River; Lonoke; Miller; Monroe; Montgomery; Nevada; Ouachita; Phillips; Pike; Polk; Prairie;
1431
     * Pulaski; Saline; Sevier; Union.
1432
     */
1433
    public const EPSG_NAD83_ARKANSAS_SOUTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8713';
1434
1435
    /**
1436
     * NAD83 / California zone 1 (ftUS) + NAVD88 height (ftUS)
1437
     * Extent: United States (USA) - California - counties Del Norte; Humboldt; Lassen; Modoc; Plumas; Shasta;
1438
     * Siskiyou; Tehama; Trinity.
1439
     */
1440
    public const EPSG_NAD83_CALIFORNIA_ZONE_1_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8714';
1441
1442
    /**
1443
     * NAD83 / California zone 2 (ftUS) + NAVD88 height (ftUS)
1444
     * Extent: United States (USA) - California - counties of Alpine; Amador; Butte; Colusa; El Dorado; Glenn; Lake;
1445
     * Mendocino; Napa; Nevada; Placer; Sacramento; Sierra; Solano; Sonoma; Sutter; Yolo; Yuba.
1446
     */
1447
    public const EPSG_NAD83_CALIFORNIA_ZONE_2_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8715';
1448
1449
    /**
1450
     * NAD83 / California zone 3 (ftUS) + NAVD88 height (ftUS)
1451
     * Extent: United States (USA) - California - counties Alameda; Calaveras; Contra Costa; Madera; Marin; Mariposa;
1452
     * Merced; Mono; San Francisco; San Joaquin; San Mateo; Santa Clara; Santa Cruz; Stanislaus; Tuolumne.
1453
     */
1454
    public const EPSG_NAD83_CALIFORNIA_ZONE_3_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8716';
1455
1456
    /**
1457
     * NAD83 / California zone 4 (ftUS) + NAVD88 height (ftUS)
1458
     * Extent: United States (USA) - California - counties Fresno; Inyo; Kings; Monterey; San Benito; Tulare.
1459
     */
1460
    public const EPSG_NAD83_CALIFORNIA_ZONE_4_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8717';
1461
1462
    /**
1463
     * NAD83 / California zone 5 (ftUS) + NAVD88 height (ftUS)
1464
     * Extent: United States (USA) - California - counties Kern; Los Angeles; San Bernardino; San Luis Obispo; Santa
1465
     * Barbara; Ventura.
1466
     */
1467
    public const EPSG_NAD83_CALIFORNIA_ZONE_5_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8718';
1468
1469
    /**
1470
     * NAD83 / California zone 6 (ftUS) + NAVD88 height (ftUS)
1471
     * Extent: United States (USA) - California - counties Imperial; Orange; Riverside; San Diego.
1472
     */
1473
    public const EPSG_NAD83_CALIFORNIA_ZONE_6_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8719';
1474
1475
    /**
1476
     * NAD83 / Colorado Central (ftUS) + NAVD88 height (ftUS)
1477
     * Extent: United States (USA) - Colorado - counties Arapahoe; Chaffee; Cheyenne; Clear Creek; Delta; Denver;
1478
     * Douglas; Eagle; El Paso; Elbert; Fremont; Garfield; Gunnison; Jefferson; Kit Carson; Lake; Lincoln; Mesa; Park;
1479
     * Pitkin; Summit; Teller.
1480
     */
1481
    public const EPSG_NAD83_COLORADO_CENTRAL_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8721';
1482
1483
    /**
1484
     * NAD83 / Colorado North (ftUS) + NAVD88 height (ftUS)
1485
     * Extent: United States (USA) - Colorado - counties Adams; Boulder; Gilpin; Grand; Jackson; Larimer; Logan;
1486
     * Moffat; Morgan; Phillips; Rio Blanco; Routt; Sedgwick; Washington; Weld; Yuma.
1487
     */
1488
    public const EPSG_NAD83_COLORADO_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8720';
1489
1490
    /**
1491
     * NAD83 / Colorado South (ftUS) + NAVD88 height (ftUS)
1492
     * Extent: United States (USA) - Colorado - counties Alamosa; Archuleta; Baca; Bent; Conejos; Costilla; Crowley;
1493
     * Custer; Dolores; Hinsdale; Huerfano; Kiowa; La Plata; Las Animas; Mineral; Montezuma; Montrose; Otero; Ouray;
1494
     * Prowers; Pueblo; Rio Grande; Saguache; San Juan; San Miguel.
1495
     */
1496
    public const EPSG_NAD83_COLORADO_SOUTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8722';
1497
1498
    /**
1499
     * NAD83 / Connecticut (ftUS) + NAVD88 height (ftUS)
1500
     * Extent: United States (USA) - Connecticut - counties of Fairfield; Hartford; Litchfield; Middlesex; New Haven;
1501
     * New London; Tolland; Windham.
1502
     */
1503
    public const EPSG_NAD83_CONNECTICUT_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8723';
1504
1505
    /**
1506
     * NAD83 / Delaware (ftUS) + NAVD88 height (ftUS)
1507
     * Extent: United States (USA) - Delaware - counties of Kent; New Castle; Sussex.
1508
     */
1509
    public const EPSG_NAD83_DELAWARE_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8724';
1510
1511
    /**
1512
     * NAD83 / Florida East (ftUS) + NAVD88 height (ftUS)
1513
     * Extent: United States (USA) - Florida - counties of Brevard; Broward; Clay; Collier; Dade; Duval; Flagler;
1514
     * Glades; Hendry; Highlands; Indian River; Lake; Martin; Monroe; Nassau; Okeechobee; Orange; Osceola; Palm Beach;
1515
     * Putnam; Seminole; St Johns; St Lucie; Volusia.
1516
     */
1517
    public const EPSG_NAD83_FLORIDA_EAST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8726';
1518
1519
    /**
1520
     * NAD83 / Florida North (ftUS) + NAVD88 height (ftUS)
1521
     * Extent: United States (USA) - Florida - counties of Alachua; Baker; Bay; Bradford; Calhoun; Columbia; Dixie;
1522
     * Escambia; Franklin; Gadsden; Gilchrist; Gulf; Hamilton; Holmes; Jackson; Jefferson; Lafayette; Leon; Liberty;
1523
     * Madison; Okaloosa; Santa Rosa; Suwannee; Taylor; Union; Wakulla; Walton; Washington.
1524
     */
1525
    public const EPSG_NAD83_FLORIDA_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8725';
1526
1527
    /**
1528
     * NAD83 / Florida West (ftUS) + NAVD88 height (ftUS)
1529
     * Extent: United States (USA) - Florida - counties of Charlotte; Citrus; De Soto; Hardee; Hernando; Hillsborough;
1530
     * Lee; Levy; Manatee; Marion; Pasco; Pinellas; Polk; Sarasota; Sumter.
1531
     */
1532
    public const EPSG_NAD83_FLORIDA_WEST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8727';
1533
1534
    /**
1535
     * NAD83 / Georgia East (ftUS) + NAVD88 height (ftUS)
1536
     * Extent: United States (USA) - Georgia - counties of Appling; Atkinson; Bacon; Baldwin; Brantley; Bryan; Bulloch;
1537
     * Burke; Camden; Candler; Charlton; Chatham; Clinch; Coffee; Columbia; Dodge; Echols; Effingham; Elbert; Emanuel;
1538
     * Evans; Franklin; Glascock; Glynn; Greene; Hancock; Hart; Jeff Davis; Jefferson; Jenkins; Johnson; Lanier;
1539
     * Laurens; Liberty; Lincoln; Long; Madison; McDuffie; McIntosh; Montgomery; Oglethorpe; Pierce; Richmond; Screven;
1540
     * Stephens; Taliaferro; Tattnall; Telfair; Toombs; Treutlen; Ware; Warren; Washington; Wayne; Wheeler; Wilkes;
1541
     * Wilkinson.
1542
     */
1543
    public const EPSG_NAD83_GEORGIA_EAST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8728';
1544
1545
    /**
1546
     * NAD83 / Georgia West (ftUS) + NAVD88 height (ftUS)
1547
     * Extent: United States (USA) - Georgia - counties of Baker; Banks; Barrow; Bartow; Ben Hill; Berrien; Bibb;
1548
     * Bleckley; Brooks; Butts; Calhoun; Carroll; Catoosa; Chattahoochee; Chattooga; Cherokee; Clarke; Clay; Clayton;
1549
     * Cobb; Colquitt; Cook; Coweta; Crawford; Crisp; Dade; Dawson; De Kalb; Decatur; Dooly; Dougherty; Douglas; Early;
1550
     * Fannin; Fayette; Floyd; Forsyth; Fulton; Gilmer; Gordon; Grady; Gwinnett; Habersham; Hall; Haralson; Harris;
1551
     * Heard; Henry; Houston; Irwin; Jackson; Jasper; Jones; Lamar; Lee; Lowndes; Lumpkin; Macon; Marion; Meriwether;
1552
     * Miller; Mitchell; Monroe; Morgan; Murray; Muscogee; Newton; Oconee; Paulding; Peach; Pickens; Pike; Polk;
1553
     * Pulaski; Putnam; Quitman; Rabun; Randolph; Rockdale; Schley; Seminole; Spalding; Stewart; Sumter; Talbot;
1554
     * Taylor; Terrell; Thomas; Tift; Towns; Troup; Turner; Twiggs; Union; Upson; Walker; Walton; Webster; White;
1555
     * Whitfield; Wilcox; Worth.
1556
     */
1557
    public const EPSG_NAD83_GEORGIA_WEST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8729';
1558
1559
    /**
1560
     * NAD83 / Idaho Central (ftUS) + NAVD88 height (ftUS)
1561
     * Extent: United States (USA) - Idaho - counties of Blaine; Butte; Camas; Cassia; Custer; Gooding; Jerome; Lemhi;
1562
     * Lincoln; Minidoka; Twin Falls.
1563
     */
1564
    public const EPSG_NAD83_IDAHO_CENTRAL_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8731';
1565
1566
    /**
1567
     * NAD83 / Idaho East (ftUS) + NAVD88 height (ftUS)
1568
     * Extent: United States (USA) - Idaho - counties of Bannock; Bear Lake; Bingham; Bonneville; Caribou; Clark;
1569
     * Franklin; Fremont; Jefferson; Madison; Oneida; Power; Teton.
1570
     */
1571
    public const EPSG_NAD83_IDAHO_EAST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8730';
1572
1573
    /**
1574
     * NAD83 / Idaho West (ftUS) + NAVD88 height (ftUS)
1575
     * Extent: United States (USA) - Idaho - counties of Ada; Adams; Benewah; Boise; Bonner; Boundary; Canyon;
1576
     * Clearwater; Elmore; Gem; Idaho; Kootenai; Latah; Lewis; Nez Perce; Owyhee; Payette; Shoshone; Valley;
1577
     * Washington.
1578
     */
1579
    public const EPSG_NAD83_IDAHO_WEST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8732';
1580
1581
    /**
1582
     * NAD83 / Illinois East (ftUS) + NAVD88 height (ftUS)
1583
     * Extent: United States (USA) - Illinois - counties of Boone; Champaign; Clark; Clay; Coles; Cook; Crawford;
1584
     * Cumberland; De Kalb; De Witt; Douglas; Du Page; Edgar; Edwards; Effingham; Fayette; Ford; Franklin; Gallatin;
1585
     * Grundy; Hamilton; Hardin; Iroquois; Jasper; Jefferson; Johnson; Kane; Kankakee; Kendall; La Salle; Lake;
1586
     * Lawrence; Livingston; Macon; Marion; Massac; McHenry; McLean; Moultrie; Piatt; Pope; Richland; Saline; Shelby;
1587
     * Vermilion; Wabash; Wayne; White; Will; Williamson.
1588
     */
1589
    public const EPSG_NAD83_ILLINOIS_EAST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8733';
1590
1591
    /**
1592
     * NAD83 / Illinois West (ftUS) + NAVD88 height (ftUS)
1593
     * Extent: United States (USA) - Illinois - counties of Adams; Alexander; Bond; Brown; Bureau; Calhoun; Carroll;
1594
     * Cass; Christian; Clinton; Fulton; Greene; Hancock; Henderson; Henry; Jackson; Jersey; Jo Daviess; Knox; Lee;
1595
     * Logan; Macoupin; Madison; Marshall; Mason; McDonough; Menard; Mercer; Monroe; Montgomery; Morgan; Ogle; Peoria;
1596
     * Perry; Pike; Pulaski; Putnam; Randolph; Rock Island; Sangamon; Schuyler; Scott; St Clair; Stark; Stephenson;
1597
     * Tazewell; Union; Warren; Washington; Whiteside; Winnebago; Woodford.
1598
     */
1599
    public const EPSG_NAD83_ILLINOIS_WEST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8734';
1600
1601
    /**
1602
     * NAD83 / Indiana East (ftUS) + NAVD88 height (ftUS)
1603
     * Extent: United States (USA) - Indiana - counties of Adams; Allen; Bartholomew; Blackford; Brown; Cass; Clark; De
1604
     * Kalb; Dearborn; Decatur; Delaware; Elkhart; Fayette; Floyd; Franklin; Fulton; Grant; Hamilton; Hancock;
1605
     * Harrison; Henry; Howard; Huntington; Jackson; Jay; Jefferson; Jennings; Johnson; Kosciusko; Lagrange; Madison;
1606
     * Marion; Marshall; Miami; Noble; Ohio; Randolph; Ripley; Rush; Scott; Shelby; St Joseph; Steuben; Switzerland;
1607
     * Tipton; Union; Wabash; Washington; Wayne; Wells; Whitley.
1608
     */
1609
    public const EPSG_NAD83_INDIANA_EAST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8735';
1610
1611
    /**
1612
     * NAD83 / Indiana West (ftUS) + NAVD88 height (ftUS)
1613
     * Extent: United States (USA) - Indiana - counties of Benton; Boone; Carroll; Clay; Clinton; Crawford; Daviess;
1614
     * Dubois; Fountain; Gibson; Greene; Hendricks; Jasper; Knox; La Porte; Lake; Lawrence; Martin; Monroe; Montgomery;
1615
     * Morgan; Newton; Orange; Owen; Parke; Perry; Pike; Porter; Posey; Pulaski; Putnam; Spencer; Starke; Sullivan;
1616
     * Tippecanoe; Vanderburgh; Vermillion; Vigo; Warren; Warrick; White.
1617
     */
1618
    public const EPSG_NAD83_INDIANA_WEST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8736';
1619
1620
    /**
1621
     * NAD83 / Iowa North (ftUS) + NAVD88 height (ftUS)
1622
     * Extent: United States (USA) - Iowa - counties of Allamakee; Benton; Black Hawk; Boone; Bremer; Buchanan; Buena
1623
     * Vista; Butler; Calhoun; Carroll; Cerro Gordo; Cherokee; Chickasaw; Clay; Clayton; Crawford; Delaware; Dickinson;
1624
     * Dubuque; Emmet; Fayette; Floyd; Franklin; Greene; Grundy; Hamilton; Hancock; Hardin; Howard; Humboldt; Ida;
1625
     * Jackson; Jones; Kossuth; Linn; Lyon; Marshall; Mitchell; Monona; O'Brien; Osceola; Palo Alto; Plymouth;
1626
     * Pocahontas; Sac; Sioux; Story; Tama; Webster; Winnebago; Winneshiek; Woodbury; Worth; Wright.
1627
     */
1628
    public const EPSG_NAD83_IOWA_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8737';
1629
1630
    /**
1631
     * NAD83 / Iowa South (ftUS) + NAVD88 height (ftUS)
1632
     * Extent: United States (USA) - Iowa - counties of Adair; Adams; Appanoose; Audubon; Cass; Cedar; Clarke; Clinton;
1633
     * Dallas; Davis; Decatur; Des Moines; Fremont; Guthrie; Harrison; Henry; Iowa; Jasper; Jefferson; Johnson; Keokuk;
1634
     * Lee; Louisa; Lucas; Madison; Mahaska; Marion; Mills; Monroe; Montgomery; Muscatine; Page; Polk; Pottawattamie;
1635
     * Poweshiek; Ringgold; Scott; Shelby; Taylor; Union; Van Buren; Wapello; Warren; Washington; Wayne.
1636
     */
1637
    public const EPSG_NAD83_IOWA_SOUTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8738';
1638
1639
    /**
1640
     * NAD83 / Kansas North (ftUS) + NAVD88 height (ftUS)
1641
     * Extent: United States (USA) - Kansas - counties of Atchison; Brown; Cheyenne; Clay; Cloud; Decatur; Dickinson;
1642
     * Doniphan; Douglas; Ellis; Ellsworth; Geary; Gove; Graham; Jackson; Jefferson; Jewell; Johnson; Leavenworth;
1643
     * Lincoln; Logan; Marshall; Mitchell; Morris; Nemaha; Norton; Osborne; Ottawa; Phillips; Pottawatomie; Rawlins;
1644
     * Republic; Riley; Rooks; Russell; Saline; Shawnee; Sheridan; Sherman; Smith; Thomas; Trego; Wabaunsee; Wallace;
1645
     * Washington; Wyandotte.
1646
     */
1647
    public const EPSG_NAD83_KANSAS_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8739';
1648
1649
    /**
1650
     * NAD83 / Kansas South (ftUS) + NAVD88 height (ftUS)
1651
     * Extent: United States (USA) - Kansas - counties of Allen; Anderson; Barber; Barton; Bourbon; Butler; Chase;
1652
     * Chautauqua; Cherokee; Clark; Coffey; Comanche; Cowley; Crawford; Edwards; Elk; Finney; Ford; Franklin; Grant;
1653
     * Gray; Greeley; Greenwood; Hamilton; Harper; Harvey; Haskell; Hodgeman; Kearny; Kingman; Kiowa; Labette; Lane;
1654
     * Linn; Lyon; Marion; McPherson; Meade; Miami; Montgomery; Morton; Neosho; Ness; Osage; Pawnee; Pratt; Reno; Rice;
1655
     * Rush; Scott; Sedgwick; Seward; Stafford; Stanton; Stevens; Sumner; Wichita; Wilson; Woodson.
1656
     */
1657
    public const EPSG_NAD83_KANSAS_SOUTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8740';
1658
1659
    /**
1660
     * NAD83 / Kentucky North (ftUS) + NAVD88 height (ftUS)
1661
     * Extent: United States (USA) - Kentucky - counties of Anderson; Bath; Boone; Bourbon; Boyd; Bracken; Bullitt;
1662
     * Campbell; Carroll; Carter; Clark; Elliott; Fayette; Fleming; Franklin; Gallatin; Grant; Greenup; Harrison;
1663
     * Henry; Jefferson; Jessamine; Kenton; Lawrence; Lewis; Mason; Menifee; Montgomery; Morgan; Nicholas; Oldham;
1664
     * Owen; Pendleton; Robertson; Rowan; Scott; Shelby; Spencer; Trimble; Woodford.
1665
     */
1666
    public const EPSG_NAD83_KENTUCKY_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8741';
1667
1668
    /**
1669
     * NAD83 / Kentucky South (ftUS) + NAVD88 height (ftUS)
1670
     * Extent: United States (USA) - Kentucky - counties of Adair; Allen; Ballard; Barren; Bell; Boyle; Breathitt;
1671
     * Breckinridge; Butler; Caldwell; Calloway; Carlisle; Casey; Christian; Clay; Clinton; Crittenden; Cumberland;
1672
     * Daviess; Edmonson; Estill; Floyd; Fulton; Garrard; Graves; Grayson; Green; Hancock; Hardin; Harlan; Hart;
1673
     * Henderson; Hickman; Hopkins; Jackson; Johnson; Knott; Knox; Larue; Laurel; Lee; Leslie; Letcher; Lincoln;
1674
     * Livingston; Logan; Lyon; Madison; Magoffin; Marion; Marshall; Martin; McCracken; McCreary; McLean; Meade;
1675
     * Mercer; Metcalfe; Monroe; Muhlenberg; Nelson; Ohio; Owsley; Perry; Pike; Powell; Pulaski; Rockcastle; Russell;
1676
     * Simpson; Taylor; Todd; Trigg; Union; Warren; Washington; Wayne; Webster; Whitley; Wolfe.
1677
     */
1678
    public const EPSG_NAD83_KENTUCKY_SOUTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8742';
1679
1680
    /**
1681
     * NAD83 / Louisiana North (ftUS) + NAVD88 height (ftUS)
1682
     * Extent: United States (USA) - Louisiana - counties of Avoyelles; Bienville; Bossier; Caddo; Caldwell; Catahoula;
1683
     * Claiborne; Concordia; De Soto; East Carroll; Franklin; Grant; Jackson; La Salle; Lincoln; Madison; Morehouse;
1684
     * Natchitoches; Ouachita; Rapides; Red River; Richland; Sabine; Tensas; Union; Vernon; Webster; West Carroll;
1685
     * Winn.
1686
     */
1687
    public const EPSG_NAD83_LOUISIANA_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8743';
1688
1689
    /**
1690
     * NAD83 / Louisiana South (ftUS) + NAVD88 height (ftUS)
1691
     * Extent: United States (USA) - Louisiana - counties of Acadia; Allen; Ascension; Assumption; Beauregard;
1692
     * Calcasieu; Cameron; East Baton Rouge; East Feliciana; Evangeline; Iberia; Iberville; Jefferson; Jefferson Davis;
1693
     * Lafayette; LaFourche; Livingston; Orleans; Plaquemines; Pointe Coupee; St Bernard; St Charles; St Helena; St
1694
     * James; St John the Baptist; St Landry; St Martin; St Mary; St Tammany; Tangipahoa; Terrebonne; Vermilion;
1695
     * Washington; West Baton Rouge; West Feliciana.
1696
     */
1697
    public const EPSG_NAD83_LOUISIANA_SOUTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8744';
1698
1699
    /**
1700
     * NAD83 / Maine East (ftUS) + NAVD88 height (ftUS)
1701
     * Extent: United States (USA) - Maine - counties of Aroostook; Hancock; Knox; Penobscot; Piscataquis; Waldo;
1702
     * Washington.
1703
     */
1704
    public const EPSG_NAD83_MAINE_EAST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8745';
1705
1706
    /**
1707
     * NAD83 / Maine West (ftUS) + NAVD88 height (ftUS)
1708
     * Extent: United States (USA) - Maine - counties of Androscoggin; Cumberland; Franklin; Kennebec; Lincoln; Oxford;
1709
     * Sagadahoc; Somerset; York.
1710
     */
1711
    public const EPSG_NAD83_MAINE_WEST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8746';
1712
1713
    /**
1714
     * NAD83 / Maryland (ftUS) + NAVD88 height (ftUS)
1715
     * Extent: United States (USA) - Maryland - counties of Allegany; Anne Arundel; Baltimore; Calvert; Caroline;
1716
     * Carroll; Cecil; Charles; Dorchester; Frederick; Garrett; Harford; Howard; Kent; Montgomery; Prince Georges;
1717
     * Queen Annes; Somerset; St Marys; Talbot; Washington; Wicomico; Worcester.
1718
     */
1719
    public const EPSG_NAD83_MARYLAND_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8747';
1720
1721
    /**
1722
     * NAD83 / Massachusetts Island (ftUS) + NAVD88 height (ftUS)
1723
     * Extent: United States (USA) - Massachusetts offshore - counties of Dukes; Nantucket.
1724
     */
1725
    public const EPSG_NAD83_MASSACHUSETTS_ISLAND_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8749';
1726
1727
    /**
1728
     * NAD83 / Massachusetts Mainland (ftUS) + NAVD88 height (ftUS)
1729
     * Extent: United States (USA) - Massachusetts onshore - counties of Barnstable; Berkshire; Bristol; Essex;
1730
     * Franklin; Hampden; Hampshire; Middlesex; Norfolk; Plymouth; Suffolk; Worcester.
1731
     */
1732
    public const EPSG_NAD83_MASSACHUSETTS_MAINLAND_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8748';
1733
1734
    /**
1735
     * NAD83 / Michigan Central (ft) + NAVD88 height (ft)
1736
     * Extent: United States (USA) - Michigan - counties of Alcona; Alpena; Antrim; Arenac; Benzie; Charlevoix;
1737
     * Cheboygan; Clare; Crawford; Emmet; Gladwin; Grand Traverse; Iosco; Kalkaska; Lake; Leelanau; Manistee; Mason;
1738
     * Missaukee; Montmorency; Ogemaw; Osceola; Oscoda; Otsego; Presque Isle; Roscommon; Wexford.
1739
     */
1740
    public const EPSG_NAD83_MICHIGAN_CENTRAL_FT_PLUS_NAVD88_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::8704';
1741
1742
    /**
1743
     * NAD83 / Michigan North (ft) + NAVD88 height (ft)
1744
     * Extent: United States (USA) - Michigan north of approximately 45°45'N - counties of Alger; Baraga; Chippewa;
1745
     * Delta; Dickinson; Gogebic; Houghton; Iron; Keweenaw; Luce; Mackinac; Marquette; Menominee; Ontonagon;
1746
     * Schoolcraft.
1747
     */
1748
    public const EPSG_NAD83_MICHIGAN_NORTH_FT_PLUS_NAVD88_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::8703';
1749
1750
    /**
1751
     * NAD83 / Michigan South (ft) + NAVD88 height (ft)
1752
     * Extent: United States (USA) - Michigan - counties of Allegan; Barry; Bay; Berrien; Branch; Calhoun; Cass;
1753
     * Clinton; Eaton; Genesee; Gratiot; Hillsdale; Huron; Ingham; Ionia; Isabella; Jackson; Kalamazoo; Kent; Lapeer;
1754
     * Lenawee; Livingston; Macomb; Mecosta; Midland; Monroe; Montcalm; Muskegon; Newaygo; Oakland; Oceana; Ottawa;
1755
     * Saginaw; Sanilac; Shiawassee; St Clair; St Joseph; Tuscola; Van Buren; Washtenaw; Wayne.
1756
     */
1757
    public const EPSG_NAD83_MICHIGAN_SOUTH_FT_PLUS_NAVD88_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::8705';
1758
1759
    /**
1760
     * NAD83 / Minnesota Central (ftUS) + NAVD88 height (ftUS)
1761
     * Extent: United States (USA) - Minnesota - counties of Aitkin; Becker; Benton; Carlton; Cass; Chisago; Clay; Crow
1762
     * Wing; Douglas; Grant; Hubbard; Isanti; Kanabec; Mille Lacs; Morrison; Otter Tail; Pine; Pope; Stearns; Stevens;
1763
     * Todd; Traverse; Wadena; Wilkin.
1764
     */
1765
    public const EPSG_NAD83_MINNESOTA_CENTRAL_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8751';
1766
1767
    /**
1768
     * NAD83 / Minnesota North (ftUS) + NAVD88 height (ftUS)
1769
     * Extent: United States (USA) - Minnesota - counties of Beltrami; Clearwater; Cook; Itasca; Kittson; Koochiching;
1770
     * Lake; Lake of the Woods; Mahnomen; Marshall; Norman; Pennington; Polk; Red Lake; Roseau; St Louis.
1771
     */
1772
    public const EPSG_NAD83_MINNESOTA_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8750';
1773
1774
    /**
1775
     * NAD83 / Minnesota South (ftUS) + NAVD88 height (ftUS)
1776
     * Extent: United States (USA) - Minnesota - counties of Anoka; Big Stone; Blue Earth; Brown; Carver; Chippewa;
1777
     * Cottonwood; Dakota; Dodge; Faribault; Fillmore; Freeborn; Goodhue; Hennepin; Houston; Jackson; Kandiyohi; Lac
1778
     * Qui Parle; Le Sueur; Lincoln; Lyon; Martin; McLeod; Meeker; Mower; Murray; Nicollet; Nobles; Olmsted; Pipestone;
1779
     * Ramsey; Redwood; Renville; Rice; Rock; Scott; Sherburne; Sibley; Steele; Swift; Wabasha; Waseca; Washington;
1780
     * Watonwan; Winona; Wright; Yellow Medicine.
1781
     */
1782
    public const EPSG_NAD83_MINNESOTA_SOUTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8752';
1783
1784
    /**
1785
     * NAD83 / Mississippi East (ftUS) + NAVD88 height (ftUS)
1786
     * Extent: United States (USA) - Mississippi - counties of Alcorn; Attala; Benton; Calhoun; Chickasaw; Choctaw;
1787
     * Clarke; Clay; Covington; Forrest; George; Greene; Hancock; Harrison; Itawamba; Jackson; Jasper; Jones; Kemper;
1788
     * Lafayette; Lamar; Lauderdale; Leake; Lee; Lowndes; Marshall; Monroe; Neshoba; Newton; Noxubee; Oktibbeha; Pearl
1789
     * River; Perry; Pontotoc; Prentiss; Scott; Smith; Stone; Tippah; Tishomingo; Union; Wayne; Webster; Winston.
1790
     */
1791
    public const EPSG_NAD83_MISSISSIPPI_EAST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8753';
1792
1793
    /**
1794
     * NAD83 / Mississippi West (ftUS) + NAVD88 height (ftUS)
1795
     * Extent: United States (USA) - Mississippi - counties of Adams; Amite; Bolivar; Carroll; Claiborne; Coahoma;
1796
     * Copiah; De Soto; Franklin; Grenada; Hinds; Holmes; Humphreys; Issaquena; Jefferson; Jefferson Davis; Lawrence;
1797
     * Leflore; Lincoln; Madison; Marion; Montgomery; Panola; Pike; Quitman; Rankin; Sharkey; Simpson; Sunflower;
1798
     * Tallahatchie; Tate; Tunica; Walthall; Warren; Washington; Wilkinson; Yalobusha; Yazoo.
1799
     */
1800
    public const EPSG_NAD83_MISSISSIPPI_WEST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8754';
1801
1802
    /**
1803
     * NAD83 / Missouri Central + NAVD88 height
1804
     * Extent: United States (USA) - Missouri - counties of Adair; Audrain; Benton; Boone; Callaway; Camden; Carroll;
1805
     * Chariton; Christian; Cole; Cooper; Dallas; Douglas; Greene; Grundy; Hickory; Howard; Howell; Knox; Laclede;
1806
     * Linn; Livingston; Macon; Maries; Mercer; Miller; Moniteau; Monroe; Morgan; Osage; Ozark; Pettis; Phelps; Polk;
1807
     * Pulaski; Putnam; Randolph; Saline; Schuyler; Scotland; Shelby; Stone; Sullivan; Taney; Texas; Webster; Wright.
1808
     */
1809
    public const EPSG_NAD83_MISSOURI_CENTRAL_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::8814';
1810
1811
    /**
1812
     * NAD83 / Missouri East + NAVD88 height
1813
     * Extent: United States (USA) - Missouri - counties of Bollinger; Butler; Cape Girardeau; Carter; Clark; Crawford;
1814
     * Dent; Dunklin; Franklin; Gasconade; Iron; Jefferson; Lewis; Lincoln; Madison; Marion; Mississippi; Montgomery;
1815
     * New Madrid; Oregon; Pemiscot; Perry; Pike; Ralls; Reynolds; Ripley; Scott; Shannon; St Charles; St Francois; St
1816
     * Louis; Ste. Genevieve; Stoddard; Warren; Washington; Wayne.
1817
     */
1818
    public const EPSG_NAD83_MISSOURI_EAST_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::8813';
1819
1820
    /**
1821
     * NAD83 / Missouri West + NAVD88 height
1822
     * Extent: United States (USA) - Missouri - counties of Andrew; Atchison; Barry; Barton; Bates; Buchanan; Caldwell;
1823
     * Cass; Cedar; Clay; Clinton; Dade; Daviess; De Kalb; Gentry; Harrison; Henry; Holt; Jackson; Jasper; Johnson;
1824
     * Lafayette; Lawrence; McDonald; Newton; Nodaway; Platte; Ray; St Clair; Vernon; Worth.
1825
     */
1826
    public const EPSG_NAD83_MISSOURI_WEST_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::8815';
1827
1828
    /**
1829
     * NAD83 / Montana (ft) + NAVD88 height (ft)
1830
     * Extent: United States (USA) - Montana - counties of Beaverhead; Big Horn; Blaine; Broadwater; Carbon; Carter;
1831
     * Cascade; Chouteau; Custer; Daniels; Dawson; Deer Lodge; Fallon; Fergus; Flathead; Gallatin; Garfield; Glacier;
1832
     * Golden Valley; Granite; Hill; Jefferson; Judith Basin; Lake; Lewis and Clark; Liberty; Lincoln; Madison; McCone;
1833
     * Meagher; Mineral; Missoula; Musselshell; Park; Petroleum; Phillips; Pondera; Powder River; Powell; Prairie;
1834
     * Ravalli; Richland; Roosevelt; Rosebud; Sanders; Sheridan; Silver Bow; Stillwater; Sweet Grass; Teton; Toole;
1835
     * Treasure; Valley; Wheatland; Wibaux; Yellowstone.
1836
     */
1837
    public const EPSG_NAD83_MONTANA_FT_PLUS_NAVD88_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::8706';
1838
1839
    /**
1840
     * NAD83 / Nebraska (ftUS) + NAVD88 height (ftUS)
1841
     * Extent: United States (USA) - Nebraska - counties of Adams; Antelope; Arthur; Banner; Blaine; Boone; Box Butte;
1842
     * Boyd; Brown; Buffalo; Burt; Butler; Cass; Cedar; Chase; Cherry; Cheyenne; Clay; Colfax; Cuming; Custer; Dakota;
1843
     * Dawes; Dawson; Deuel; Dixon; Dodge; Douglas; Dundy; Fillmore; Franklin; Frontier; Furnas; Gage; Garden;
1844
     * Garfield; Gosper; Grant; Greeley; Hall; Hamilton; Harlan; Hayes; Hitchcock; Holt; Hooker; Howard; Jefferson;
1845
     * Johnson; Kearney; Keith; Keya Paha; Kimball; Knox; Lancaster; Lincoln; Logan; Loup; Madison; McPherson; Merrick;
1846
     * Morrill; Nance; Nemaha; Nuckolls; Otoe; Pawnee; Perkins; Phelps; Pierce; Platte; Polk; Red Willow; Richardson;
1847
     * Rock; Saline; Sarpy; Saunders; Scotts Bluff; Seward; Sheridan; Sherman; Sioux; Stanton; Thayer; Thomas;
1848
     * Thurston; Valley; Washington; Wayne; Webster; Wheeler; York.
1849
     */
1850
    public const EPSG_NAD83_NEBRASKA_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8755';
1851
1852
    /**
1853
     * NAD83 / Nevada Central (ftUS) + NAVD88 height (ftUS)
1854
     * Extent: United States (USA) - Nevada - counties of Lander; Nye.
1855
     */
1856
    public const EPSG_NAD83_NEVADA_CENTRAL_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8757';
1857
1858
    /**
1859
     * NAD83 / Nevada East (ftUS) + NAVD88 height (ftUS)
1860
     * Extent: United States (USA) - Nevada - counties of Clark; Elko; Eureka; Lincoln; White Pine.
1861
     */
1862
    public const EPSG_NAD83_NEVADA_EAST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8756';
1863
1864
    /**
1865
     * NAD83 / Nevada West (ftUS) + NAVD88 height (ftUS)
1866
     * Extent: United States (USA) - Nevada - counties of Churchill; Douglas; Esmeralda; Humboldt; Lyon; Mineral;
1867
     * Pershing; Storey; Washoe.
1868
     */
1869
    public const EPSG_NAD83_NEVADA_WEST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8758';
1870
1871
    /**
1872
     * NAD83 / New Hampshire (ftUS) + NAVD88 height (ftUS)
1873
     * Extent: United States (USA) - New Hampshire - counties of Belknap; Carroll; Cheshire; Coos; Grafton;
1874
     * Hillsborough; Merrimack; Rockingham; Strafford; Sullivan.
1875
     */
1876
    public const EPSG_NAD83_NEW_HAMPSHIRE_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8759';
1877
1878
    /**
1879
     * NAD83 / New Jersey (ftUS) + NAVD88 height (ftUS)
1880
     * Extent: United States (USA) - New Jersey - counties of Atlantic; Bergen; Burlington; Camden; Cape May;
1881
     * Cumberland; Essex; Gloucester; Hudson; Hunterdon; Mercer; Middlesex; Monmouth; Morris; Ocean; Passaic; Salem;
1882
     * Somerset; Sussex; Union; Warren.
1883
     */
1884
    public const EPSG_NAD83_NEW_JERSEY_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8760';
1885
1886
    /**
1887
     * NAD83 / New Mexico Central (ftUS) + NAVD88 height (ftUS)
1888
     * Extent: United States (USA) - New Mexico - counties of Bernalillo; Dona Ana; Lincoln; Los Alamos; Otero; Rio
1889
     * Arriba; Sandoval; Santa Fe; Socorro; Taos; Torrance; Valencia.
1890
     */
1891
    public const EPSG_NAD83_NEW_MEXICO_CENTRAL_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8762';
1892
1893
    /**
1894
     * NAD83 / New Mexico East (ftUS) + NAVD88 height (ftUS)
1895
     * Extent: United States (USA) - New Mexico - counties of Chaves; Colfax; Curry; De Baca; Eddy; Guadalupe; Harding;
1896
     * Lea; Mora; Quay; Roosevelt; San Miguel; Union.
1897
     */
1898
    public const EPSG_NAD83_NEW_MEXICO_EAST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8761';
1899
1900
    /**
1901
     * NAD83 / New Mexico West (ftUS) + NAVD88 height (ftUS)
1902
     * Extent: United States (USA) - New Mexico - counties of Catron; Cibola; Grant; Hidalgo; Luna; McKinley; San Juan;
1903
     * Sierra.
1904
     */
1905
    public const EPSG_NAD83_NEW_MEXICO_WEST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8763';
1906
1907
    /**
1908
     * NAD83 / New York Central (ftUS) + NAVD88 height (ftUS)
1909
     * Extent: United States (USA) - New York - counties of Broome; Cayuga; Chemung; Chenango; Cortland; Jefferson;
1910
     * Lewis; Madison; Oneida; Onondaga; Ontario; Oswego; Schuyler; Seneca; Steuben; Tioga; Tompkins; Wayne; Yates.
1911
     */
1912
    public const EPSG_NAD83_NEW_YORK_CENTRAL_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8765';
1913
1914
    /**
1915
     * NAD83 / New York East (ftUS) + NAVD88 height (ftUS)
1916
     * Extent: United States (USA) - New York mainland - counties of Albany; Clinton; Columbia; Delaware; Dutchess;
1917
     * Essex; Franklin; Fulton; Greene; Hamilton; Herkimer; Montgomery; Orange; Otsego; Putnam; Rensselaer; Rockland;
1918
     * Saratoga; Schenectady; Schoharie; St Lawrence; Sullivan; Ulster; Warren; Washington; Westchester.
1919
     */
1920
    public const EPSG_NAD83_NEW_YORK_EAST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8764';
1921
1922
    /**
1923
     * NAD83 / New York Long Island (ftUS) + NAVD88 height (ftUS)
1924
     * Extent: United States (USA) - New York - counties of Bronx; Kings; Nassau; New York; Queens; Richmond; Suffolk.
1925
     */
1926
    public const EPSG_NAD83_NEW_YORK_LONG_ISLAND_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8767';
1927
1928
    /**
1929
     * NAD83 / New York West (ftUS) + NAVD88 height (ftUS)
1930
     * Extent: United States (USA) - New York - counties of Allegany; Cattaraugus; Chautauqua; Erie; Genesee;
1931
     * Livingston; Monroe; Niagara; Orleans; Wyoming.
1932
     */
1933
    public const EPSG_NAD83_NEW_YORK_WEST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8766';
1934
1935
    /**
1936
     * NAD83 / North Carolina (ftUS) + NAVD88 height (ftUS)
1937
     * Extent: United States (USA) - North Carolina - counties of Alamance; Alexander; Alleghany; Anson; Ashe; Avery;
1938
     * Beaufort; Bertie; Bladen; Brunswick; Buncombe; Burke; Cabarrus; Caldwell; Camden; Carteret; Caswell; Catawba;
1939
     * Chatham; Cherokee; Chowan; Clay; Cleveland; Columbus; Craven; Cumberland; Currituck; Dare; Davidson; Davie;
1940
     * Duplin; Durham; Edgecombe; Forsyth; Franklin; Gaston; Gates; Graham; Granville; Greene; Guilford; Halifax;
1941
     * Harnett; Haywood; Henderson; Hertford; Hoke; Hyde; Iredell; Jackson; Johnston; Jones; Lee; Lenoir; Lincoln;
1942
     * Macon; Madison; Martin; McDowell; Mecklenburg; Mitchell; Montgomery; Moore; Nash; New Hanover; Northampton;
1943
     * Onslow; Orange; Pamlico; Pasquotank; Pender; Perquimans; Person; Pitt; Polk; Randolph; Richmond; Robeson;
1944
     * Rockingham; Rowan; Rutherford; Sampson; Scotland; Stanly; Stokes; Surry; Swain; Transylvania; Tyrrell; Union;
1945
     * Vance; Wake; Warren; Washington; Watauga; Wayne; Wilkes; Wilson; Yadkin; Yancey.
1946
     */
1947
    public const EPSG_NAD83_NORTH_CAROLINA_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8768';
1948
1949
    /**
1950
     * NAD83 / North Dakota North (ft) + NAVD88 height (ft)
1951
     * Extent: United States (USA) - North Dakota - counties of Benson; Bottineau; Burke; Cavalier; Divide; Eddy;
1952
     * Foster; Grand Forks; Griggs; McHenry; McKenzie; McLean; Mountrial; Nelson; Pembina; Pierce; Ramsey; Renville;
1953
     * Rolette; Sheridan; Steele; Towner; Traill; Walsh; Ward; Wells; Williams.
1954
     */
1955
    public const EPSG_NAD83_NORTH_DAKOTA_NORTH_FT_PLUS_NAVD88_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::8707';
1956
1957
    /**
1958
     * NAD83 / North Dakota South (ft) + NAVD88 height (ft)
1959
     * Extent: United States (USA) - North Dakota - counties of Adams; Barnes; Billings; Bowman; Burleigh; Cass;
1960
     * Dickey; Dunn; Emmons; Golden Valley; Grant; Hettinger; Kidder; La Moure; Logan; McIntosh; Mercer; Morton;
1961
     * Oliver; Ransom; Richland; Sargent; Sioux; Slope; Stark; Stutsman.
1962
     */
1963
    public const EPSG_NAD83_NORTH_DAKOTA_SOUTH_FT_PLUS_NAVD88_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::8708';
1964
1965
    /**
1966
     * NAD83 / Ohio North (ftUS) + NAVD88 height (ftUS)
1967
     * Extent: United States (USA) - Ohio - counties of Allen;Ashland; Ashtabula; Auglaize; Carroll; Columbiana;
1968
     * Coshocton; Crawford; Cuyahoga; Defiance; Delaware; Erie; Fulton; Geauga; Hancock; Hardin; Harrison; Henry;
1969
     * Holmes; Huron; Jefferson; Knox; Lake; Logan; Lorain; Lucas; Mahoning; Marion; Medina; Mercer; Morrow; Ottawa;
1970
     * Paulding; Portage; Putnam; Richland; Sandusky; Seneca; Shelby; Stark; Summit; Trumbull; Tuscarawas; Union; Van
1971
     * Wert; Wayne; Williams; Wood; Wyandot.
1972
     */
1973
    public const EPSG_NAD83_OHIO_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8769';
1974
1975
    /**
1976
     * NAD83 / Ohio South (ftUS) + NAVD88 height (ftUS)
1977
     * Extent: United States (USA) - Ohio - counties of Adams; Athens; Belmont; Brown; Butler; Champaign; Clark;
1978
     * Clermont; Clinton; Darke; Fairfield; Fayette; Franklin; Gallia; Greene; Guernsey; Hamilton; Highland; Hocking;
1979
     * Jackson; Lawrence; Licking; Madison; Meigs; Miami; Monroe; Montgomery; Morgan; Muskingum; Noble; Perry;
1980
     * Pickaway; Pike; Preble; Ross; Scioto; Vinton; Warren; Washington.
1981
     */
1982
    public const EPSG_NAD83_OHIO_SOUTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8770';
1983
1984
    /**
1985
     * NAD83 / Oklahoma North (ftUS) + NAVD88 height (ftUS)
1986
     * Extent: United States (USA) - Oklahoma - counties of Adair; Alfalfa; Beaver; Blaine; Canadian; Cherokee;
1987
     * Cimarron; Craig; Creek; Custer; Delaware; Dewey; Ellis; Garfield; Grant; Harper; Kay; Kingfisher; Lincoln;
1988
     * Logan; Major; Mayes; Muskogee; Noble; Nowata; Okfuskee; Oklahoma; Okmulgee; Osage; Ottawa; Pawnee; Payne; Roger
1989
     * Mills; Rogers; Sequoyah; Texas; Tulsa; Wagoner; Washington; Woods; Woodward.
1990
     */
1991
    public const EPSG_NAD83_OKLAHOMA_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8771';
1992
1993
    /**
1994
     * NAD83 / Oklahoma South (ftUS) + NAVD88 height (ftUS)
1995
     * Extent: United States (USA) - Oklahoma - counties of Atoka; Beckham; Bryan; Caddo; Carter; Choctaw; Cleveland;
1996
     * Coal; Comanche; Cotton; Garvin; Grady; Greer; Harmon; Haskell; Hughes; Jackson; Jefferson; Johnston; Kiowa;
1997
     * Latimer; Le Flore; Love; Marshall; McClain; McCurtain; McIntosh; Murray; Pittsburg; Pontotoc; Pottawatomie;
1998
     * Pushmataha; Seminole; Stephens; Tillman; Washita.
1999
     */
2000
    public const EPSG_NAD83_OKLAHOMA_SOUTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8772';
2001
2002
    /**
2003
     * NAD83 / Oregon North (ft) + NAVD88 height (ft)
2004
     * Extent: United States (USA) - Oregon - counties of Baker; Benton; Clackamas; Clatsop; Columbia; Gilliam; Grant;
2005
     * Hood River; Jefferson; Lincoln; Linn; Marion; Morrow; Multnomah; Polk; Sherman; Tillamook; Umatilla; Union;
2006
     * Wallowa; Wasco; Washington; Wheeler; Yamhill.
2007
     */
2008
    public const EPSG_NAD83_OREGON_NORTH_FT_PLUS_NAVD88_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::8709';
2009
2010
    /**
2011
     * NAD83 / Oregon South (ft) + NAVD88 height (ft)
2012
     * Extent: United States (USA) - Oregon - counties of Coos; Crook; Curry; Deschutes; Douglas; Harney; Jackson;
2013
     * Josephine; Klamath; Lake; Lane; Malheur.
2014
     */
2015
    public const EPSG_NAD83_OREGON_SOUTH_FT_PLUS_NAVD88_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::8710';
2016
2017
    /**
2018
     * NAD83 / Pennsylvania North (ftUS) + NAVD88 height (ftUS)
2019
     * Extent: United States (USA) - Pennsylvania - counties of Bradford; Cameron; Carbon; Centre; Clarion; Clearfield;
2020
     * Clinton; Columbia; Crawford; Elk; Erie; Forest; Jefferson; Lackawanna; Luzerne; Lycoming; McKean; Mercer;
2021
     * Monroe; Montour; Northumberland; Pike; Potter; Sullivan; Susquehanna; Tioga; Union; Venango; Warren; Wayne;
2022
     * Wyoming.
2023
     */
2024
    public const EPSG_NAD83_PENNSYLVANIA_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8773';
2025
2026
    /**
2027
     * NAD83 / Pennsylvania South (ftUS) + NAVD88 height (ftUS)
2028
     * Extent: United States (USA) - Pennsylvania - counties of Adams; Allegheny; Armstrong; Beaver; Bedford; Berks;
2029
     * Blair; Bucks; Butler; Cambria; Chester; Cumberland; Dauphin; Delaware; Fayette; Franklin; Fulton; Greene;
2030
     * Huntingdon; Indiana; Juniata; Lancaster; Lawrence; Lebanon; Lehigh; Mifflin; Montgomery; Northampton; Perry;
2031
     * Philadelphia; Schuylkill; Snyder; Somerset; Washington; Westmoreland; York.
2032
     */
2033
    public const EPSG_NAD83_PENNSYLVANIA_SOUTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8774';
2034
2035
    /**
2036
     * NAD83 / Rhode Island (ftUS) + NAVD88 height (ftUS)
2037
     * Extent: United States (USA) - Rhode Island - counties of Bristol; Kent; Newport; Providence; Washington.
2038
     */
2039
    public const EPSG_NAD83_RHODE_ISLAND_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8775';
2040
2041
    /**
2042
     * NAD83 / South Carolina (ft) + NAVD88 height (ft)
2043
     * Extent: United States (USA) - South Carolina - counties of Abbeville; Aiken; Allendale; Anderson; Bamberg;
2044
     * Barnwell; Beaufort; Berkeley; Calhoun; Charleston; Cherokee; Chester; Chesterfield; Clarendon; Colleton;
2045
     * Darlington; Dillon; Dorchester; Edgefield; Fairfield; Florence; Georgetown; Greenville; Greenwood; Hampton;
2046
     * Horry; Jasper; Kershaw; Lancaster; Laurens; Lee; Lexington; Marion; Marlboro; McCormick; Newberry; Oconee;
2047
     * Orangeburg; Pickens; Richland; Saluda; Spartanburg; Sumter; Union; Williamsburg; York.
2048
     */
2049
    public const EPSG_NAD83_SOUTH_CAROLINA_FT_PLUS_NAVD88_HEIGHT_FT = 'urn:ogc:def:crs:EPSG::8711';
2050
2051
    /**
2052
     * NAD83 / South Dakota North (ftUS) + NAVD88 height (ftUS)
2053
     * Extent: United States (USA) - South Dakota - counties of Beadle; Brookings; Brown; Butte; Campbell; Clark;
2054
     * Codington; Corson; Day; Deuel; Dewey; Edmunds; Faulk; Grant; Hamlin; Hand; Harding; Hyde; Kingsbury; Lawrence;
2055
     * Marshall; McPherson; Meade; Perkins; Potter; Roberts; Spink; Sully; Walworth; Ziebach.
2056
     */
2057
    public const EPSG_NAD83_SOUTH_DAKOTA_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8776';
2058
2059
    /**
2060
     * NAD83 / South Dakota South (ftUS) + NAVD88 height (ftUS)
2061
     * Extent: United States (USA) - South Dakota - counties of Aurora; Bennett; Bon Homme; Brule; Buffalo; Charles
2062
     * Mix; Clay; Custer; Davison; Douglas; Fall River; Gregory; Haakon; Hanson; Hughes; Hutchinson; Jackson; Jerauld;
2063
     * Jones; Lake; Lincoln; Lyman; McCook; Mellette; Miner; Minnehaha; Moody; Pennington; Sanborn; Shannon; Stanley;
2064
     * Todd; Tripp; Turner; Union; Yankton.
2065
     */
2066
    public const EPSG_NAD83_SOUTH_DAKOTA_SOUTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8777';
2067
2068
    /**
2069
     * NAD83 / Tennessee (ftUS) + NAVD88 height (ftUS)
2070
     * Extent: United States (USA) - Tennessee - counties of Anderson; Bedford; Benton; Bledsoe; Blount; Bradley;
2071
     * Campbell; Cannon; Carroll; Carter; Cheatham; Chester; Claiborne; Clay; Cocke; Coffee; Crockett; Cumberland;
2072
     * Davidson; De Kalb; Decatur; Dickson; Dyer; Fayette; Fentress; Franklin; Gibson; Giles; Grainger; Greene; Grundy;
2073
     * Hamblen; Hamilton; Hancock; Hardeman; Hardin; Hawkins; Haywood; Henderson; Henry; Hickman; Houston; Humphreys;
2074
     * Jackson; Jefferson; Johnson; Knox; Lake; Lauderdale; Lawrence; Lewis; Lincoln; Loudon; Macon; Madison; Marion;
2075
     * Marshall; Maury; McMinn; McNairy; Meigs; Monroe; Montgomery; Moore; Morgan; Obion; Overton; Perry; Pickett;
2076
     * Polk; Putnam; Rhea; Roane; Robertson; Rutherford; Scott; Sequatchie; Sevier; Shelby; Smith; Stewart; Sullivan;
2077
     * Sumner; Tipton; Trousdale; Unicoi; Union; Van Buren; Warren; Washington; Wayne; Weakley; White; Williamson;
2078
     * Wilson.
2079
     */
2080
    public const EPSG_NAD83_TENNESSEE_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8778';
2081
2082
    /**
2083
     * NAD83 / Texas Central (ftUS) + NAVD88 height (ftUS)
2084
     * Extent: United States (USA) - Texas - counties of Anderson; Angelina; Bastrop; Bell; Blanco; Bosque; Brazos;
2085
     * Brown; Burleson; Burnet; Cherokee; Coke; Coleman; Comanche; Concho; Coryell; Crane; Crockett; Culberson; Ector;
2086
     * El Paso; Falls; Freestone; Gillespie; Glasscock; Grimes; Hamilton; Hardin; Houston; Hudspeth; Irion; Jasper;
2087
     * Jeff Davis; Kimble; Lampasas; Lee; Leon; Liberty; Limestone; Llano; Loving; Madison; Mason; McCulloch; McLennan;
2088
     * Menard; Midland; Milam; Mills; Montgomery; Nacogdoches; Newton; Orange; Pecos; Polk; Reagan; Reeves; Robertson;
2089
     * Runnels; Sabine; San Augustine; San Jacinto; San Saba; Schleicher; Shelby; Sterling; Sutton; Tom Green; Travis;
2090
     * Trinity; Tyler; Upton; Walker; Ward; Washington; Williamson; Winkler.
2091
     */
2092
    public const EPSG_NAD83_TEXAS_CENTRAL_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8781';
2093
2094
    /**
2095
     * NAD83 / Texas North (ftUS) + NAVD88 height (ftUS)
2096
     * Extent: United States (USA) - Texas - counties of: Armstrong; Briscoe; Carson; Castro; Childress; Collingsworth;
2097
     * Dallam; Deaf Smith; Donley; Gray; Hall; Hansford; Hartley; Hemphill; Hutchinson; Lipscomb; Moore; Ochiltree;
2098
     * Oldham; Parmer; Potter; Randall; Roberts; Sherman; Swisher; Wheeler.
2099
     */
2100
    public const EPSG_NAD83_TEXAS_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8779';
2101
2102
    /**
2103
     * NAD83 / Texas North Central (ftUS) + NAVD88 height (ftUS)
2104
     * Extent: United States (USA) - Texas - counties of: Andrews; Archer; Bailey; Baylor; Borden; Bowie; Callahan;
2105
     * Camp; Cass; Clay; Cochran; Collin; Cooke; Cottle; Crosby; Dallas; Dawson; Delta; Denton; Dickens; Eastland;
2106
     * Ellis; Erath; Fannin; Fisher; Floyd; Foard; Franklin; Gaines; Garza; Grayson; Gregg; Hale; Hardeman; Harrison;
2107
     * Haskell; Henderson; Hill; Hockley; Hood; Hopkins; Howard; Hunt; Jack; Johnson; Jones; Kaufman; Kent; King; Knox;
2108
     * Lamar; Lamb; Lubbock; Lynn; Marion; Martin; Mitchell; Montague; Morris; Motley; Navarro; Nolan; Palo Pinto;
2109
     * Panola; Parker; Rains; Red River; Rockwall; Rusk; Scurry; Shackelford; Smith; Somervell; Stephens; Stonewall;
2110
     * Tarrant; Taylor; Terry; Throckmorton; Titus; Upshur; Van Zandt; Wichita; Wilbarger; Wise; Wood; Yoakum; Young.
2111
     */
2112
    public const EPSG_NAD83_TEXAS_NORTH_CENTRAL_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8780';
2113
2114
    /**
2115
     * NAD83 / Texas South (ftUS) + NAVD88 height (ftUS)
2116
     * Extent: United States (USA) - Texas - counties of Brooks; Cameron; Duval; Hidalgo; Jim Hogg; Jim Wells; Kenedy;
2117
     * Kleberg; Nueces; San Patricio; Starr; Webb; Willacy; Zapata.
2118
     */
2119
    public const EPSG_NAD83_TEXAS_SOUTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8783';
2120
2121
    /**
2122
     * NAD83 / Texas South Central (ftUS) + NAVD88 height (ftUS)
2123
     * Extent: United States (USA) - Texas - counties of Aransas; Atascosa; Austin; Bandera; Bee; Bexar; Brazoria;
2124
     * Brewster; Caldwell; Calhoun; Chambers; Colorado; Comal; De Witt; Dimmit; Edwards; Fayette; Fort Bend; Frio;
2125
     * Galveston; Goliad; Gonzales; Guadalupe; Harris; Hays; Jackson; Jefferson; Karnes; Kendall; Kerr; Kinney; La
2126
     * Salle; Lavaca; Live Oak; Matagorda; Maverick; McMullen; Medina; Presidio; Real; Refugio; Terrell; Uvalde; Val
2127
     * Verde; Victoria; Waller; Wharton; Wilson; Zavala.
2128
     */
2129
    public const EPSG_NAD83_TEXAS_SOUTH_CENTRAL_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8782';
2130
2131
    /**
2132
     * NAD83 / Utah Central (ftUS) + NAVD88 height (ftUS)
2133
     * Extent: United States (USA) - Utah - counties of Carbon; Duchesne; Emery; Grand; Juab; Millard; Salt Lake;
2134
     * Sanpete; Sevier; Tooele; Uintah; Utah; Wasatch.
2135
     */
2136
    public const EPSG_NAD83_UTAH_CENTRAL_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8785';
2137
2138
    /**
2139
     * NAD83 / Utah North (ftUS) + NAVD88 height (ftUS)
2140
     * Extent: United States (USA) - Utah - counties of Box Elder; Cache; Daggett; Davis; Morgan; Rich; Summit; Weber.
2141
     */
2142
    public const EPSG_NAD83_UTAH_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8784';
2143
2144
    /**
2145
     * NAD83 / Utah South (ftUS) + NAVD88 height (ftUS)
2146
     * Extent: United States (USA) - Utah - counties of Beaver; Garfield; Iron; Kane; Piute; San Juan; Washington;
2147
     * Wayne.
2148
     */
2149
    public const EPSG_NAD83_UTAH_SOUTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8786';
2150
2151
    /**
2152
     * NAD83 / Vermont (ftUS) + NAVD88 height (ftUS)
2153
     * Extent: United States (USA) - Vermont - counties of Addison; Bennington; Caledonia; Chittenden; Essex; Franklin;
2154
     * Grand Isle; Lamoille; Orange; Orleans; Rutland; Washington; Windham; Windsor.
2155
     */
2156
    public const EPSG_NAD83_VERMONT_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8787';
2157
2158
    /**
2159
     * NAD83 / Virginia North (ftUS) + NAVD88 height (ftUS)
2160
     * Extent: United States (USA) - Virginia - counties of Arlington; Augusta; Bath; Caroline; Clarke; Culpeper;
2161
     * Fairfax; Fauquier; Frederick; Greene; Highland; King George; Loudoun; Madison; Orange; Page; Prince William;
2162
     * Rappahannock; Rockingham; Shenandoah; Spotsylvania; Stafford; Warren; Westmoreland.
2163
     */
2164
    public const EPSG_NAD83_VIRGINIA_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8788';
2165
2166
    /**
2167
     * NAD83 / Virginia South (ftUS) + NAVD88 height (ftUS)
2168
     * Extent: United States (USA) - Virginia - counties of Accomack; Albemarle; Alleghany; Amelia; Amherst;
2169
     * Appomattox; Bedford; Bland; Botetourt; Bristol; Brunswick; Buchanan; Buckingham; Campbell; Carroll; Charles
2170
     * City; Charlotte; Chesapeake; Chesterfield; Colonial Heights; Craig; Cumberland; Dickenson; Dinwiddie; Essex;
2171
     * Floyd; Fluvanna; Franklin; Giles; Gloucester; Goochland; Grayson; Greensville; Halifax; Hampton; Hanover;
2172
     * Henrico; Henry; Isle of Wight; James City; King and Queen; King William; Lancaster; Lee; Louisa; Lunenburg;
2173
     * Lynchburg; Mathews; Mecklenburg; Middlesex; Montgomery; Nelson; New Kent; Newport News; Norfolk; Northampton;
2174
     * Northumberland; Norton; Nottoway; Patrick; Petersburg; Pittsylvania; Portsmouth; Powhatan; Prince Edward; Prince
2175
     * George; Pulaski; Richmond; Roanoke; Rockbridge; Russell; Scott; Smyth; Southampton; Suffolk; Surry; Sussex;
2176
     * Tazewell; Washington; Wise; Wythe; York.
2177
     */
2178
    public const EPSG_NAD83_VIRGINIA_SOUTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8789';
2179
2180
    /**
2181
     * NAD83 / Washington North (ftUS) + NAVD88 height (ftUS)
2182
     * Extent: United States (USA) - Washington - counties of Chelan; Clallam; Douglas; Ferry; Grant north of
2183
     * approximately 47°30'N; Island; Jefferson; King; Kitsap; Lincoln; Okanogan; Pend Oreille; San Juan; Skagit;
2184
     * Snohomish; Spokane; Stevens; Whatcom.
2185
     */
2186
    public const EPSG_NAD83_WASHINGTON_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8790';
2187
2188
    /**
2189
     * NAD83 / Washington South (ftUS) + NAVD88 height (ftUS)
2190
     * Extent: United States (USA) - Washington - counties of Adams; Asotin; Benton; Clark; Columbia; Cowlitz;
2191
     * Franklin; Garfield; Grant south of approximately 47°30'N; Grays Harbor; Kittitas; Klickitat; Lewis; Mason;
2192
     * Pacific; Pierce; Skamania; Thurston; Wahkiakum; Walla Walla; Whitman; Yakima.
2193
     */
2194
    public const EPSG_NAD83_WASHINGTON_SOUTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8791';
2195
2196
    /**
2197
     * NAD83 / West Virginia North (ftUS) + NAVD88 height (ftUS)
2198
     * Extent: United States (USA) - West Virginia - counties of Barbour; Berkeley; Brooke; Doddridge; Grant;
2199
     * Hampshire; Hancock; Hardy; Harrison; Jefferson; Marion; Marshall; Mineral; Monongalia; Morgan; Ohio; Pleasants;
2200
     * Preston; Ritchie; Taylor; Tucker; Tyler; Wetzel; Wirt; Wood.
2201
     */
2202
    public const EPSG_NAD83_WEST_VIRGINIA_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8792';
2203
2204
    /**
2205
     * NAD83 / West Virginia South (ftUS) + NAVD88 height (ftUS)
2206
     * Extent: United States (USA) - West Virginia - counties of Boone; Braxton; Cabell; Calhoun; Clay; Fayette;
2207
     * Gilmer; Greenbrier; Jackson; Kanawha; Lewis; Lincoln; Logan; Mason; McDowell; Mercer; Mingo; Monroe; Nicholas;
2208
     * Pendleton; Pocahontas; Putnam; Raleigh; Randolph; Roane; Summers; Upshur; Wayne; Webster; Wyoming.
2209
     */
2210
    public const EPSG_NAD83_WEST_VIRGINIA_SOUTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8793';
2211
2212
    /**
2213
     * NAD83 / Wisconsin Central (ftUS) + NAVD88 height (ftUS)
2214
     * Extent: United States (USA) - Wisconsin - counties of Barron; Brown; Buffalo; Chippewa; Clark; Door; Dunn; Eau
2215
     * Claire; Jackson; Kewaunee; Langlade; Lincoln; Marathon; Marinette; Menominee; Oconto; Outagamie; Pepin; Pierce;
2216
     * Polk; Portage; Rusk; Shawano; St Croix; Taylor; Trempealeau; Waupaca; Wood.
2217
     */
2218
    public const EPSG_NAD83_WISCONSIN_CENTRAL_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8795';
2219
2220
    /**
2221
     * NAD83 / Wisconsin North (ftUS) + NAVD88 height (ftUS)
2222
     * Extent: United States (USA) - Wisconsin - counties of Ashland; Bayfield; Burnett; Douglas; Florence; Forest;
2223
     * Iron; Oneida; Price; Sawyer; Vilas; Washburn.
2224
     */
2225
    public const EPSG_NAD83_WISCONSIN_NORTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8794';
2226
2227
    /**
2228
     * NAD83 / Wisconsin South (ftUS) + NAVD88 height (ftUS)
2229
     * Extent: United States (USA) - Wisconsin - counties of Adams; Calumet; Columbia; Crawford; Dane; Dodge; Fond Du
2230
     * Lac; Grant; Green; Green Lake; Iowa; Jefferson; Juneau; Kenosha; La Crosse; Lafayette; Manitowoc; Marquette;
2231
     * Milwaukee; Monroe; Ozaukee; Racine; Richland; Rock; Sauk; Sheboygan; Vernon; Walworth; Washington; Waukesha;
2232
     * Waushara; Winnebago.
2233
     */
2234
    public const EPSG_NAD83_WISCONSIN_SOUTH_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8796';
2235
2236
    /**
2237
     * NAD83 / Wyoming East (ftUS) + NAVD88 height (ftUS)
2238
     * Extent: United States (USA) - Wyoming - counties of Albany; Campbell; Converse; Crook; Goshen; Laramie;
2239
     * Niobrara; Platte; Weston.
2240
     */
2241
    public const EPSG_NAD83_WYOMING_EAST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8797';
2242
2243
    /**
2244
     * NAD83 / Wyoming East Central (ftUS) + NAVD88 height (ftUS)
2245
     * Extent: United States (USA) - Wyoming - counties of Big Horn; Carbon; Johnson; Natrona; Sheridan; Washakie.
2246
     */
2247
    public const EPSG_NAD83_WYOMING_EAST_CENTRAL_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8798';
2248
2249
    /**
2250
     * NAD83 / Wyoming West (ftUS) + NAVD88 height (ftUS)
2251
     * Extent: United States (USA) - Wyoming - counties of Lincoln; Sublette; Teton; Uinta.
2252
     */
2253
    public const EPSG_NAD83_WYOMING_WEST_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8800';
2254
2255
    /**
2256
     * NAD83 / Wyoming West Central (ftUS) + NAVD88 height (ftUS)
2257
     * Extent: United States (USA) - Wyoming - counties of Fremont; Hot Springs; Park; Sweetwater.
2258
     */
2259
    public const EPSG_NAD83_WYOMING_WEST_CENTRAL_FTUS_PLUS_NAVD88_HEIGHT_FTUS = 'urn:ogc:def:crs:EPSG::8799';
2260
2261
    /**
2262
     * NAD83(2011) + NAVD88 height
2263
     * Extent: United States (USA) - CONUS and Alaska - onshore - Alabama; Alaska mainland; Arizona; Arkansas;
2264
     * California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky;
2265
     * Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska;
2266
     * Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon;
2267
     * Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington;
2268
     * West Virginia; Wisconsin; Wyoming.
2269
     * Replaces NAD83(NSRS2007) + NAVD88 height.
2270
     */
2271
    public const EPSG_NAD83_2011_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::6349';
2272
2273
    /**
2274
     * NAD83(2011) + PRVD02 height
2275
     * Extent: Puerto Rico - onshore.
2276
     */
2277
    public const EPSG_NAD83_2011_PLUS_PRVD02_HEIGHT = 'urn:ogc:def:crs:EPSG::9522';
2278
2279
    /**
2280
     * NAD83(2011) + VIVD09 height
2281
     * Extent: US Virgin Islands - onshore - St Croix, St John, and St Thomas.
2282
     */
2283
    public const EPSG_NAD83_2011_PLUS_VIVD09_HEIGHT = 'urn:ogc:def:crs:EPSG::9523';
2284
2285
    /**
2286
     * NAD83(CSRS) + CGVD2013(CGG2013) height
2287
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
2288
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
2289
     * Yukon.
2290
     */
2291
    public const EPSG_NAD83_CSRS_PLUS_CGVD2013_CGG2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6649';
2292
2293
    /**
2294
     * NAD83(CSRS) / UTM zone 10N + CGVD2013 height
2295
     * Extent: Canada between 126°W and 120°W, onshore and offshore south of 84°N - British Columbia, Northwest
2296
     * Territories, Yukon.
2297
     */
2298
    public const EPSG_NAD83_CSRS_UTM_ZONE_10N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6653';
2299
2300
    /**
2301
     * NAD83(CSRS) / UTM zone 11N + CGVD2013 height
2302
     * Extent: Canada between 120°W and 114°W onshore and offshore - Alberta, British Columbia, Northwest
2303
     * Territories, Nunavut.
2304
     */
2305
    public const EPSG_NAD83_CSRS_UTM_ZONE_11N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6654';
2306
2307
    /**
2308
     * NAD83(CSRS) / UTM zone 12N + CGVD2013 height
2309
     * Extent: Canada between 114°W and 108°W onshore and offshore - Alberta, Northwest Territories, Nunavut,
2310
     * Saskatchewan.
2311
     */
2312
    public const EPSG_NAD83_CSRS_UTM_ZONE_12N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6655';
2313
2314
    /**
2315
     * NAD83(CSRS) / UTM zone 13N + CGVD2013 height
2316
     * Extent: Canada between 108°W and 102°W onshore and offshore - Northwest Territories, Nunavut, Saskatchewan.
2317
     */
2318
    public const EPSG_NAD83_CSRS_UTM_ZONE_13N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6656';
2319
2320
    /**
2321
     * NAD83(CSRS) / UTM zone 14N + CGVD2013 height
2322
     * Extent: Canada between 102°W and 96°W, onshore and offshore south of 84°N - Manitoba, Nunavut, Saskatchewan.
2323
     */
2324
    public const EPSG_NAD83_CSRS_UTM_ZONE_14N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6657';
2325
2326
    /**
2327
     * NAD83(CSRS) / UTM zone 15N + CGVD2013 height
2328
     * Extent: Canada between 96°W and 90°W, onshore and offshore south of 84°N - Manitoba, Nunavut, Ontario.
2329
     */
2330
    public const EPSG_NAD83_CSRS_UTM_ZONE_15N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6658';
2331
2332
    /**
2333
     * NAD83(CSRS) / UTM zone 15N + CGVD2013a(2010) height
2334
     * Extent: Canada between 96°W and 90°W, onshore and offshore south of 84°N - Manitoba, Nunavut, Ontario.
2335
     * Replaces NAD83(CSRS) / UTM zone 15N + CGVD2013 height (CCRS code 6658).
2336
     */
2337
    public const EPSG_NAD83_CSRS_UTM_ZONE_15N_PLUS_CGVD2013A_2010_HEIGHT = 'urn:ogc:def:crs:EPSG::9715';
2338
2339
    /**
2340
     * NAD83(CSRS) / UTM zone 16N + CGVD2013 height
2341
     * Extent: Canada between 90°W and 84°W, onshore and offshore south of 84°N - Manitoba, Nunavut, Ontario.
2342
     */
2343
    public const EPSG_NAD83_CSRS_UTM_ZONE_16N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6659';
2344
2345
    /**
2346
     * NAD83(CSRS) / UTM zone 17N + CGVD2013 height
2347
     * Extent: Canada between 84°W and 78°W, onshore and offshore south of 84°N - Nunavut, Ontario and Quebec.
2348
     */
2349
    public const EPSG_NAD83_CSRS_UTM_ZONE_17N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6660';
2350
2351
    /**
2352
     * NAD83(CSRS) / UTM zone 18N + CGVD2013 height
2353
     * Extent: Canada between 78°W and 72°W, onshore and offshore south of 84°N - Nunavut, Ontario and Quebec.
2354
     */
2355
    public const EPSG_NAD83_CSRS_UTM_ZONE_18N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6661';
2356
2357
    /**
2358
     * NAD83(CSRS) / UTM zone 19N + CGVD2013 height
2359
     * Extent: Canada between 72°W and 66°W onshore and offshore - New Brunswick, Labrador, Nova Scotia, Nunavut,
2360
     * Quebec.
2361
     */
2362
    public const EPSG_NAD83_CSRS_UTM_ZONE_19N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6662';
2363
2364
    /**
2365
     * NAD83(CSRS) / UTM zone 20N + CGVD2013 height
2366
     * Extent: Canada between 66°W and 60°W onshore and offshore - New Brunswick, Labrador, Nova Scotia, Nunavut,
2367
     * Prince Edward Island, Quebec.
2368
     */
2369
    public const EPSG_NAD83_CSRS_UTM_ZONE_20N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6663';
2370
2371
    /**
2372
     * NAD83(CSRS) / UTM zone 21N + CGVD2013 height
2373
     * Extent: Canada between 60°W and 54°W - Newfoundland and Labrador; Nunavut; Quebec.
2374
     */
2375
    public const EPSG_NAD83_CSRS_UTM_ZONE_21N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6664';
2376
2377
    /**
2378
     * NAD83(CSRS) / UTM zone 22N + CGVD2013 height
2379
     * Extent: Canada between 54°W and 48°W onshore and offshore - Newfoundland and Labrador.
2380
     */
2381
    public const EPSG_NAD83_CSRS_UTM_ZONE_22N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6665';
2382
2383
    /**
2384
     * NAD83(CSRS) / UTM zone 23N + CGVD2013 height
2385
     * Extent: Canada offshore Atlantic - 48°W to 42°W.
2386
     */
2387
    public const EPSG_NAD83_CSRS_UTM_ZONE_23N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::9711';
2388
2389
    /**
2390
     * NAD83(CSRS) / UTM zone 24N + CGVD2013 height
2391
     * Extent: Canada offshore Atlantic - east of 42°W.
2392
     */
2393
    public const EPSG_NAD83_CSRS_UTM_ZONE_24N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::9714';
2394
2395
    /**
2396
     * NAD83(CSRS) / UTM zone 7N + CGVD2013 height
2397
     * Extent: Canada west of 138°W, onshore and offshore south of 84°N - British Columbia, Yukon.
2398
     */
2399
    public const EPSG_NAD83_CSRS_UTM_ZONE_7N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6650';
2400
2401
    /**
2402
     * NAD83(CSRS) / UTM zone 8N + CGVD2013 height
2403
     * Extent: Canada between 138°W and 132°W, onshore and offshore south of 84°N - British Columbia, Northwest
2404
     * Territories, Yukon.
2405
     */
2406
    public const EPSG_NAD83_CSRS_UTM_ZONE_8N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6651';
2407
2408
    /**
2409
     * NAD83(CSRS) / UTM zone 9N + CGVD2013 height
2410
     * Extent: Canada - between 132°W and 126°W, onshore and offshore south of 84°N - British Columbia, Northwest
2411
     * Territories, Yukon.
2412
     */
2413
    public const EPSG_NAD83_CSRS_UTM_ZONE_9N_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6652';
2414
2415
    /**
2416
     * NAD83(CSRS)v3 + CGVD2013a(1997) height
2417
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
2418
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
2419
     * Yukon.
2420
     */
2421
    public const EPSG_NAD83_CSRS_V3_PLUS_CGVD2013A_1997_HEIGHT = 'urn:ogc:def:crs:EPSG::20038';
2422
2423
    /**
2424
     * NAD83(CSRS)v4 + CGVD2013a(2002) height
2425
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
2426
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
2427
     * Yukon.
2428
     */
2429
    public const EPSG_NAD83_CSRS_V4_PLUS_CGVD2013A_2002_HEIGHT = 'urn:ogc:def:crs:EPSG::20037';
2430
2431
    /**
2432
     * NAD83(CSRS)v6 + CGVD2013a(2010) height
2433
     * Extent: Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and
2434
     * Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan;
2435
     * Yukon.
2436
     */
2437
    public const EPSG_NAD83_CSRS_V6_PLUS_CGVD2013A_2010_HEIGHT = 'urn:ogc:def:crs:EPSG::9544';
2438
2439
    /**
2440
     * NAD83(HARN) + NAVD88 height
2441
     * Extent: United States (USA) - CONUS onshore - Alabama; Arizona; Arkansas; California; Colorado; Connecticut;
2442
     * Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland;
2443
     * Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey;
2444
     * New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South
2445
     * Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin;
2446
     * Wyoming.
2447
     */
2448
    public const EPSG_NAD83_HARN_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::5499';
2449
2450
    /**
2451
     * NAD83(MA11) + GUVD04 height
2452
     * Extent: Guam - onshore.
2453
     */
2454
    public const EPSG_NAD83_MA11_PLUS_GUVD04_HEIGHT = 'urn:ogc:def:crs:EPSG::9524';
2455
2456
    /**
2457
     * NAD83(MA11) + NMVD03 height
2458
     * Extent: Northern Mariana Islands - onshore.
2459
     */
2460
    public const EPSG_NAD83_MA11_PLUS_NMVD03_HEIGHT = 'urn:ogc:def:crs:EPSG::9525';
2461
2462
    /**
2463
     * NAD83(NSRS2007) + NAVD88 height
2464
     * Extent: United States (USA) - CONUS onshore - Alabama; Arizona; Arkansas; California; Colorado; Connecticut;
2465
     * Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland;
2466
     * Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey;
2467
     * New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South
2468
     * Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin;
2469
     * Wyoming.
2470
     */
2471
    public const EPSG_NAD83_NSRS2007_PLUS_NAVD88_HEIGHT = 'urn:ogc:def:crs:EPSG::5500';
2472
2473
    /**
2474
     * NAD83(PA11) + ASVD02 height
2475
     * Extent: American Samoa - Tutuila island.
2476
     */
2477
    public const EPSG_NAD83_PA11_PLUS_ASVD02_HEIGHT = 'urn:ogc:def:crs:EPSG::9526';
2478
2479
    /**
2480
     * NTF (Paris) + NGF IGN69 height
2481
     * Extent: France - mainland onshore.
2482
     */
2483
    public const EPSG_NTF_PARIS_PLUS_NGF_IGN69_HEIGHT = 'urn:ogc:def:crs:EPSG::7400';
2484
2485
    /**
2486
     * NTF (Paris) / Lambert zone I + NGF-IGN69 height
2487
     * Extent: France mainland onshore north of 53.5 grads North (48°09'N).
2488
     */
2489
    public const EPSG_NTF_PARIS_LAMBERT_ZONE_I_PLUS_NGF_IGN69_HEIGHT = 'urn:ogc:def:crs:EPSG::5707';
2490
2491
    /**
2492
     * NTF (Paris) / Lambert zone II + NGF Lallemand height
2493
     * Extent: France - mainland onshore.
2494
     */
2495
    public const EPSG_NTF_PARIS_LAMBERT_ZONE_II_PLUS_NGF_LALLEMAND_HEIGHT = 'urn:ogc:def:crs:EPSG::7411';
2496
2497
    /**
2498
     * NTF (Paris) / Lambert zone II + NGF-IGN69 height
2499
     * Extent: France - mainland onshore.
2500
     */
2501
    public const EPSG_NTF_PARIS_LAMBERT_ZONE_II_PLUS_NGF_IGN69_HEIGHT = 'urn:ogc:def:crs:EPSG::7421';
2502
2503
    /**
2504
     * NTF (Paris) / Lambert zone III + NGF-IGN69 height
2505
     * Extent: France - mainland onshore south of 50.5 grads North (45°27'N).
2506
     */
2507
    public const EPSG_NTF_PARIS_LAMBERT_ZONE_III_PLUS_NGF_IGN69_HEIGHT = 'urn:ogc:def:crs:EPSG::7422';
2508
2509
    /**
2510
     * NTF (Paris) / Lambert zone IV + NGF-IGN78 height
2511
     * Extent: France - Corsica onshore.
2512
     */
2513
    public const EPSG_NTF_PARIS_LAMBERT_ZONE_IV_PLUS_NGF_IGN78_HEIGHT = 'urn:ogc:def:crs:EPSG::5708';
2514
2515
    /**
2516
     * NZGD2000 + NZVD2009 height
2517
     * Extent: New Zealand - onshore and offshore. Includes Antipodes Islands, Auckland Islands, Bounty Islands,
2518
     * Chatham Islands, Cambell Island, Kermadec Islands, Raoul Island and Snares Islands.
2519
     */
2520
    public const EPSG_NZGD2000_PLUS_NZVD2009_HEIGHT = 'urn:ogc:def:crs:EPSG::9527';
2521
2522
    /**
2523
     * NZGD2000 + NZVD2016 height
2524
     * Extent: New Zealand - onshore and offshore. Includes Antipodes Islands, Auckland Islands, Bounty Islands,
2525
     * Chatham Islands, Cambell Island, Kermadec Islands, Raoul Island and Snares Islands.
2526
     */
2527
    public const EPSG_NZGD2000_PLUS_NZVD2016_HEIGHT = 'urn:ogc:def:crs:EPSG::9528';
2528
2529
    /**
2530
     * OSGB36 / British National Grid + BI height
2531
     * Extent: United Kingdom (UK) - offshore to boundary of UKCS within 49°45'N to 61°N and 9°W to 2°E; onshore
2532
     * Great Britain (England, Wales and Scotland). Isle of Man onshore.
2533
     * BI height is based on an ensemble including ODN, ODN (Offshore) and island vertical datums.
2534
     */
2535
    public const EPSG_OSGB36_BRITISH_NATIONAL_GRID_PLUS_BI_HEIGHT = 'urn:ogc:def:crs:EPSG::9920';
2536
2537
    /**
2538
     * OSGB36 / British National Grid + ODN height
2539
     * Extent: United Kingdom (UK) - Great Britain onshore - England and Wales - mainland; Scotland - mainland and
2540
     * Inner Hebrides.
2541
     */
2542
    public const EPSG_OSGB36_BRITISH_NATIONAL_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::7405';
2543
2544
    /**
2545
     * OxWo08 Grid + ODN height
2546
     * Extent: United Kingdom (UK) - on or related to the rail route from Oxford to Worcester.
2547
     */
2548
    public const EPSG_OXWO08_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::10236';
2549
2550
    /**
2551
     * POSGAR 2007 + SRVN16 height
2552
     * Extent: Argentina - onshore.
2553
     */
2554
    public const EPSG_POSGAR_2007_PLUS_SRVN16_HEIGHT = 'urn:ogc:def:crs:EPSG::9521';
2555
2556
    /**
2557
     * PSHD93
2558
     * Extent: Oman - onshore. Includes Musandam and the Kuria Muria (Al Hallaniyah) islands.
2559
     */
2560
    public const EPSG_PSHD93 = 'urn:ogc:def:crs:EPSG::7410';
2561
2562
    /**
2563
     * RBEPP12 Grid + ODN height
2564
     * Extent: United Kingdom (UK) - on or related to the rail route from Reading via Newbury to Penzance.
2565
     */
2566
    public const EPSG_RBEPP12_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::10281';
2567
2568
    /**
2569
     * REGCAN95 + El Hierro height
2570
     * Extent: Spain - Canary Islands - El Hierro onshore.
2571
     */
2572
    public const EPSG_REGCAN95_PLUS_EL_HIERRO_HEIGHT = 'urn:ogc:def:crs:EPSG::9510';
2573
2574
    /**
2575
     * REGCAN95 + Fuerteventura height
2576
     * Extent: Spain - Canary Islands - Fuerteventura onshore.
2577
     */
2578
    public const EPSG_REGCAN95_PLUS_FUERTEVENTURA_HEIGHT = 'urn:ogc:def:crs:EPSG::9511';
2579
2580
    /**
2581
     * REGCAN95 + Gran Canaria height
2582
     * Extent: Spain - Canary Islands - Gran Canaria onshore.
2583
     */
2584
    public const EPSG_REGCAN95_PLUS_GRAN_CANARIA_HEIGHT = 'urn:ogc:def:crs:EPSG::9512';
2585
2586
    /**
2587
     * REGCAN95 + La Gomera height
2588
     * Extent: Spain - Canary Islands - La Gomera onshore.
2589
     */
2590
    public const EPSG_REGCAN95_PLUS_LA_GOMERA_HEIGHT = 'urn:ogc:def:crs:EPSG::9513';
2591
2592
    /**
2593
     * REGCAN95 + La Palma height
2594
     * Extent: Spain - Canary Islands - La Palma onshore.
2595
     */
2596
    public const EPSG_REGCAN95_PLUS_LA_PALMA_HEIGHT = 'urn:ogc:def:crs:EPSG::9514';
2597
2598
    /**
2599
     * REGCAN95 + Lanzarote height
2600
     * Extent: Spain - Canary Islands - Lanzarote onshore.
2601
     */
2602
    public const EPSG_REGCAN95_PLUS_LANZAROTE_HEIGHT = 'urn:ogc:def:crs:EPSG::9515';
2603
2604
    /**
2605
     * REGCAN95 + Tenerife height
2606
     * Extent: Spain - Canary Islands - Tenerife onshore.
2607
     */
2608
    public const EPSG_REGCAN95_PLUS_TENERIFE_HEIGHT = 'urn:ogc:def:crs:EPSG::9516';
2609
2610
    /**
2611
     * RGAF09 + Guadeloupe 1988 height
2612
     * Extent: Guadeloupe - onshore - Basse-Terre and Grande-Terre.
2613
     */
2614
    public const EPSG_RGAF09_PLUS_GUADELOUPE_1988_HEIGHT = 'urn:ogc:def:crs:EPSG::9531';
2615
2616
    /**
2617
     * RGAF09 + IGN 1988 LS height
2618
     * Extent: Guadeloupe - onshore - Les Saintes.
2619
     */
2620
    public const EPSG_RGAF09_PLUS_IGN_1988_LS_HEIGHT = 'urn:ogc:def:crs:EPSG::9532';
2621
2622
    /**
2623
     * RGAF09 + IGN 1988 MG height
2624
     * Extent: Guadeloupe - onshore - Marie-Galante.
2625
     */
2626
    public const EPSG_RGAF09_PLUS_IGN_1988_MG_HEIGHT = 'urn:ogc:def:crs:EPSG::9533';
2627
2628
    /**
2629
     * RGAF09 + IGN 1988 SB height
2630
     * Extent: Guadeloupe - onshore - St Barthelemy island.
2631
     */
2632
    public const EPSG_RGAF09_PLUS_IGN_1988_SB_HEIGHT = 'urn:ogc:def:crs:EPSG::9534';
2633
2634
    /**
2635
     * RGAF09 + IGN 1988 SM height
2636
     * Extent: Guadeloupe - onshore - St Martin island.
2637
     */
2638
    public const EPSG_RGAF09_PLUS_IGN_1988_SM_HEIGHT = 'urn:ogc:def:crs:EPSG::9535';
2639
2640
    /**
2641
     * RGAF09 + IGN 2008 LD height
2642
     * Extent: Guadeloupe - onshore - La Desirade.
2643
     */
2644
    public const EPSG_RGAF09_PLUS_IGN_2008_LD_HEIGHT = 'urn:ogc:def:crs:EPSG::9536';
2645
2646
    /**
2647
     * RGAF09 + Martinique 1987 height
2648
     * Extent: Martinique - onshore.
2649
     */
2650
    public const EPSG_RGAF09_PLUS_MARTINIQUE_1987_HEIGHT = 'urn:ogc:def:crs:EPSG::9537';
2651
2652
    /**
2653
     * RGF93 v1 / Lambert-93 + NGF-IGN69 height
2654
     * Extent: France - mainland onshore.
2655
     */
2656
    public const EPSG_RGF93_V1_LAMBERT_93_PLUS_NGF_IGN69_HEIGHT = 'urn:ogc:def:crs:EPSG::5698';
2657
2658
    /**
2659
     * RGF93 v1 / Lambert-93 + NGF-IGN78 height
2660
     * Extent: France - Corsica onshore.
2661
     */
2662
    public const EPSG_RGF93_V1_LAMBERT_93_PLUS_NGF_IGN78_HEIGHT = 'urn:ogc:def:crs:EPSG::5699';
2663
2664
    /**
2665
     * RGF93 v2 + NGF-IGN69 height
2666
     * Extent: France - mainland onshore.
2667
     */
2668
    public const EPSG_RGF93_V2_PLUS_NGF_IGN69_HEIGHT = 'urn:ogc:def:crs:EPSG::9538';
2669
2670
    /**
2671
     * RGF93 v2 + NGF-IGN78 height
2672
     * Extent: France - Corsica onshore.
2673
     */
2674
    public const EPSG_RGF93_V2_PLUS_NGF_IGN78_HEIGHT = 'urn:ogc:def:crs:EPSG::9539';
2675
2676
    /**
2677
     * RGF93 v2b + NGF-IGN69 height
2678
     * Extent: France - mainland onshore.
2679
     */
2680
    public const EPSG_RGF93_V2B_PLUS_NGF_IGN69_HEIGHT = 'urn:ogc:def:crs:EPSG::9785';
2681
2682
    /**
2683
     * RGFG95 + NGG1977 height
2684
     * Extent: French Guiana - onshore.
2685
     */
2686
    public const EPSG_RGFG95_PLUS_NGG1977_HEIGHT = 'urn:ogc:def:crs:EPSG::9530';
2687
2688
    /**
2689
     * RGNC91-93 + NGNC08 height
2690
     * Extent: New Caledonia - Belep, Grande Terre, Ile des Pins, Loyalty Islands (Lifou, Mare, Ouvea).
2691
     */
2692
    public const EPSG_RGNC91_93_PLUS_NGNC08_HEIGHT = 'urn:ogc:def:crs:EPSG::9540';
2693
2694
    /**
2695
     * RGSPM06 + Danger 1950 height
2696
     * Extent: St Pierre and Miquelon - onshore.
2697
     */
2698
    public const EPSG_RGSPM06_PLUS_DANGER_1950_HEIGHT = 'urn:ogc:def:crs:EPSG::9541';
2699
2700
    /**
2701
     * RRAF 1991 + IGN 2008 LD height
2702
     * Extent: Guadeloupe - onshore - La Desirade.
2703
     */
2704
    public const EPSG_RRAF_1991_PLUS_IGN_2008_LD_HEIGHT = 'urn:ogc:def:crs:EPSG::9542';
2705
2706
    /**
2707
     * RT90 + RH70 height
2708
     * Extent: Sweden - onshore.
2709
     * When combined with geoid model RN92 forms geographic 3D CRS RR92.
2710
     */
2711
    public const EPSG_RT90_PLUS_RH70_HEIGHT = 'urn:ogc:def:crs:EPSG::7404';
2712
2713
    /**
2714
     * SCM22 Grid + ODN height
2715
     * Extent: United Kingdom (UK) - on or related to the Scottish central mainline rail route from Motherwell through
2716
     * Perth and Pitlochry to Inverness.
2717
     */
2718
    public const EPSG_SCM22_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::9973';
2719
2720
    /**
2721
     * SHGD2015 + SHVD2015 height
2722
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
2723
     */
2724
    public const EPSG_SHGD2015_PLUS_SHVD2015_HEIGHT = 'urn:ogc:def:crs:EPSG::9517';
2725
2726
    /**
2727
     * SHMG2015 + SHVD2015 height
2728
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
2729
     */
2730
    public const EPSG_SHMG2015_PLUS_SHVD2015_HEIGHT = 'urn:ogc:def:crs:EPSG::7956';
2731
2732
    /**
2733
     * SMITB20 Grid + ODN height
2734
     * Extent: United Kingdom (UK) - on or related to the rail route from Okehampton to Penstone.
2735
     */
2736
    public const EPSG_SMITB20_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::10276';
2737
2738
    /**
2739
     * SRGI2013 + INAGeoid2020 v1 height
2740
     * Extent: Indonesia - onshore and offshore.
2741
     */
2742
    public const EPSG_SRGI2013_PLUS_INAGEOID2020_V1_HEIGHT = 'urn:ogc:def:crs:EPSG::9529';
2743
2744
    /**
2745
     * SRGI2013 + INAGeoid2020 v2 height
2746
     * Extent: Indonesia - onshore and offshore.
2747
     */
2748
    public const EPSG_SRGI2013_PLUS_INAGEOID2020_V2_HEIGHT = 'urn:ogc:def:crs:EPSG::20043';
2749
2750
    /**
2751
     * SVY21 + SHD height
2752
     * Extent: Singapore - onshore and offshore.
2753
     */
2754
    public const EPSG_SVY21_PLUS_SHD_HEIGHT = 'urn:ogc:def:crs:EPSG::6917';
2755
2756
    /**
2757
     * SVY21 / Singapore TM + SHD height
2758
     * Extent: Singapore - onshore and offshore.
2759
     */
2760
    public const EPSG_SVY21_SINGAPORE_TM_PLUS_SHD_HEIGHT = 'urn:ogc:def:crs:EPSG::6927';
2761
2762
    /**
2763
     * SWEREF99 + RH2000 height
2764
     * Extent: Sweden - onshore.
2765
     */
2766
    public const EPSG_SWEREF99_PLUS_RH2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5628';
2767
2768
    /**
2769
     * SWEREF99 12 00 + RH2000 height
2770
     * Extent: Sweden - communes west of approximately 12°45'E and south of approximately 60°N. See information
2771
     * source for map.
2772
     */
2773
    public const EPSG_SWEREF99_12_00_PLUS_RH2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5846';
2774
2775
    /**
2776
     * SWEREF99 13 30 + RH2000 height
2777
     * Extent: Sweden - communes between approximately 12°45'E and 14°15'E and south of approximately 62°10'N. See
2778
     * information source for map.
2779
     */
2780
    public const EPSG_SWEREF99_13_30_PLUS_RH2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5847';
2781
2782
    /**
2783
     * SWEREF99 14 15 + RH2000 height
2784
     * Extent: Sweden - communes west of approximately 15°E and between approximately 61°35'N and 64°25'N. See
2785
     * information source for map.
2786
     */
2787
    public const EPSG_SWEREF99_14_15_PLUS_RH2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5851';
2788
2789
    /**
2790
     * SWEREF99 15 00 + RH2000 height
2791
     * Extent: Sweden - communes between approximately 14°15'E and 15°45'E and south of approximately 61°30'N. See
2792
     * information source for map.
2793
     */
2794
    public const EPSG_SWEREF99_15_00_PLUS_RH2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5848';
2795
2796
    /**
2797
     * SWEREF99 15 45 + RH2000 height
2798
     * Extent: Sweden - communes between approximately 15°E and 16°30'E and between approximately 60°30'N and 65°N.
2799
     * See information source for map.
2800
     */
2801
    public const EPSG_SWEREF99_15_45_PLUS_RH2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5852';
2802
2803
    /**
2804
     * SWEREF99 16 30 + RH2000 height
2805
     * Extent: Sweden - communes between approximately 15°45'E and 17°15'E and south of approximately 62°20'N. See
2806
     * information source for map.
2807
     */
2808
    public const EPSG_SWEREF99_16_30_PLUS_RH2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5849';
2809
2810
    /**
2811
     * SWEREF99 17 15 + RH2000 height
2812
     * Extent: Sweden - communes between approximately 14°20'E and 18°50'E and between approximately 67°10'N and
2813
     * 62°05'N. See information source for map.
2814
     */
2815
    public const EPSG_SWEREF99_17_15_PLUS_RH2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5853';
2816
2817
    /**
2818
     * SWEREF99 18 00 + RH2000 height
2819
     * Extent: Sweden - communes east of approximately 17°15'E between approximately 60°40'N and 58°50'N. See
2820
     * information source for map.
2821
     */
2822
    public const EPSG_SWEREF99_18_00_PLUS_RH2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5850';
2823
2824
    /**
2825
     * SWEREF99 18 45 + RH2000 height
2826
     * Extent: Sweden - mainland communes between approximately 18°E and 19°30'E and between approximately 62°50'N
2827
     * and 66°N. Also Gotland. See information source for map.
2828
     */
2829
    public const EPSG_SWEREF99_18_45_PLUS_RH2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5854';
2830
2831
    /**
2832
     * SWEREF99 20 15 + RH2000 height
2833
     * Extent: Sweden - communes in Vaasterbotten east of approximately 19°30'E and (i) north of 63°30'N and (ii)
2834
     * south of approximately 65°05'N. Also Norbotten west of approximately 23°20'E. See information source for map.
2835
     */
2836
    public const EPSG_SWEREF99_20_15_PLUS_RH2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5855';
2837
2838
    /**
2839
     * SWEREF99 21 45 + RH2000 height
2840
     * Extent: Sweden - communes in Norbotten east of approximately 19°30'E and south of approximately 65°50'N. See
2841
     * information source for map.
2842
     */
2843
    public const EPSG_SWEREF99_21_45_PLUS_RH2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5856';
2844
2845
    /**
2846
     * SWEREF99 23 15 + RH2000 height
2847
     * Extent: Sweden - communes east of approximately 21°50'E. See information source for map.
2848
     */
2849
    public const EPSG_SWEREF99_23_15_PLUS_RH2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5857';
2850
2851
    /**
2852
     * SWEREF99 TM + RH2000 height
2853
     * Extent: Sweden - onshore.
2854
     */
2855
    public const EPSG_SWEREF99_TM_PLUS_RH2000_HEIGHT = 'urn:ogc:def:crs:EPSG::5845';
2856
2857
    /**
2858
     * SYC20 Grid + ODN height
2859
     * Extent: United Kingdom (UK) - on or related to the rail route from Shrewsbury to Crewe.
2860
     */
2861
    public const EPSG_SYC20_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::10241';
2862
2863
    /**
2864
     * ShAb07 Grid + ODN height
2865
     * Extent: United Kingdom (UK) - on or related to the rail route from Shrewsbury to Aberystwyth.
2866
     */
2867
    public const EPSG_SHAB07_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::10189';
2868
2869
    /**
2870
     * Slovenia 1996 + SVS2010 height
2871
     * Extent: Slovenia - onshore.
2872
     */
2873
    public const EPSG_SLOVENIA_1996_PLUS_SVS2010_HEIGHT = 'urn:ogc:def:crs:EPSG::10245';
2874
2875
    /**
2876
     * Slovenia 1996 / Slovene National Grid + SVS2010 height
2877
     * Extent: Slovenia - onshore.
2878
     */
2879
    public const EPSG_SLOVENIA_1996_SLOVENE_NATIONAL_GRID_PLUS_SVS2010_HEIGHT = 'urn:ogc:def:crs:EPSG::10246';
2880
2881
    /**
2882
     * St. Helena Tritan / UTM zone 30S + Tritan 2011 height
2883
     * Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.
2884
     */
2885
    public const EPSG_ST_HELENA_TRITAN_UTM_ZONE_30S_PLUS_TRITAN_2011_HEIGHT = 'urn:ogc:def:crs:EPSG::7955';
2886
2887
    /**
2888
     * TPEN11 Grid + ODN height
2889
     * Extent: United Kingdom (UK) - on or related to the Trans-Pennine rail route from Liverpool via Manchester to
2890
     * Bradford and Leeds.
2891
     */
2892
    public const EPSG_TPEN11_GRID_PLUS_ODN_HEIGHT = 'urn:ogc:def:crs:EPSG::9368';
2893
2894
    /**
2895
     * Tokyo + JSLD69 height
2896
     * Extent: Japan - onshore mainland - Honshu, Shikoku, Kyushu.
2897
     * Replaced by JGD2000 + JGD2000 (vertical) (CRS code 6696) from April 2002).
2898
     */
2899
    public const EPSG_TOKYO_PLUS_JSLD69_HEIGHT = 'urn:ogc:def:crs:EPSG::7414';
2900
2901
    /**
2902
     * Tokyo + JSLD72 height
2903
     * Extent: Japan - onshore mainland - Hokkaido.
2904
     * Replaced by JGD2000 + JGD2000 (vertical) (CRS code 6696) from April 2002).
2905
     */
2906
    public const EPSG_TOKYO_PLUS_JSLD72_HEIGHT = 'urn:ogc:def:crs:EPSG::6700';
2907
2908
    /**
2909
     * WGS 84 + EGM2008 height
2910
     * Extent: World.
2911
     */
2912
    public const EPSG_WGS_84_PLUS_EGM2008_HEIGHT = 'urn:ogc:def:crs:EPSG::9518';
2913
2914
    /**
2915
     * WGS 84 + EGM96 height
2916
     * Extent: World.
2917
     */
2918
    public const EPSG_WGS_84_PLUS_EGM96_HEIGHT = 'urn:ogc:def:crs:EPSG::9707';
2919
2920
    /**
2921
     * WGS 84 + MSL height
2922
     * Extent: World.
2923
     * Component vertical CRS is not specific to any location or epoch.
2924
     */
2925
    public const EPSG_WGS_84_PLUS_MSL_HEIGHT = 'urn:ogc:def:crs:EPSG::9705';
2926
2927
    /**
2928
     * WGS 84 / World Mercator + EGM2008 height
2929
     * Extent: World.
2930
     * Note: for preliminary concept visualisation only. Detailed design will require use of appropriate low-distortion
2931
     * local projected and vertical CRSs.
2932
     */
2933
    public const EPSG_WGS_84_WORLD_MERCATOR_PLUS_EGM2008_HEIGHT = 'urn:ogc:def:crs:EPSG::6893';
2934
2935
    /**
2936
     * @deprecated use EPSG_NAD83_CSRS_PLUS_CGVD2013_CGG2013_HEIGHT instead
2937
     */
2938
    public const EPSG_NAD83_CSRS_PLUS_CGVD2013_HEIGHT = 'urn:ogc:def:crs:EPSG::6649';
2939
2940
    /**
2941
     * @deprecated use EPSG_NAD83_CSRS_UTM_ZONE_15N_PLUS_CGVD2013A_2010_HEIGHT instead
2942
     */
2943
    public const EPSG_NAD83_CSRS_UTM_ZONE_15N_PLUS_CGVD2013A_HEIGHT = 'urn:ogc:def:crs:EPSG::9715';
2944
2945
    /**
2946
     * @deprecated use EPSG_NAD83_CSRS_V6_PLUS_CGVD2013A_2010_HEIGHT instead
2947
     */
2948
    public const EPSG_NAD83_CSRS_V6_PLUS_CGVD2013_CGG2013A_HEIGHT = 'urn:ogc:def:crs:EPSG::9544';
2949
2950
    /**
2951
     * @deprecated use EPSG_SRGI2013_PLUS_INAGEOID2020_V1_HEIGHT instead
2952
     */
2953
    public const EPSG_SRGI2013_PLUS_INAGEOID2020_HEIGHT = 'urn:ogc:def:crs:EPSG::9529';
2954
2955
    private static array $cachedObjects = [];
2956
2957
    private static array $supportedCache = [];
2958
2959
    private static array $projectedSridCache = [];
2960
2961
    private Geocentric|Geographic2D|Projected $horizontal;
0 ignored issues
show
Bug introduced by
The type PHPCoord\CoordinateReferenceSystem\Projected was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
2962
2963
    private Vertical $vertical;
2964
2965 50
    public function __construct(
2966
        string $srid,
2967
        Geocentric|Geographic2D|Projected $horizontal,
2968
        Vertical $vertical,
2969
        BoundingArea $boundingArea,
2970
        string $name = ''
2971
    ) {
2972 50
        $this->srid = $srid;
2973 50
        $this->horizontal = $horizontal;
2974 50
        $this->vertical = $vertical;
2975 50
        $this->boundingArea = $boundingArea;
2976 50
        $this->name = $name;
2977
    }
2978
2979 24
    public function getHorizontal(): Geocentric|Geographic2D|Projected
2980
    {
2981 24
        return $this->horizontal;
2982
    }
2983
2984 22
    public function getVertical(): Vertical
2985
    {
2986 22
        return $this->vertical;
2987
    }
2988
2989 103
    public static function fromSRID(string $srid): self
2990
    {
2991 103
        if (!isset(static::$sridData[$srid])) {
2992 9
            throw new UnknownCoordinateReferenceSystemException($srid);
2993
        }
2994
2995 94
        if (!self::$projectedSridCache) {
0 ignored issues
show
Bug Best Practice introduced by
The expression self::projectedSridCache 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...
2996 9
            self::$projectedSridCache = Projected::getSupportedSRIDs();
2997
        }
2998
2999 94
        if (!isset(self::$cachedObjects[$srid])) {
3000 50
            $data = static::$sridData[$srid];
3001
3002 50
            if (isset(self::$projectedSridCache[$data['horizontal_crs']])) {
3003 19
                $horizontalCRS = Projected::fromSRID($data['horizontal_crs']);
3004
            } else {
3005 31
                $horizontalCRS = Geographic2D::fromSRID($data['horizontal_crs']);
3006
            }
3007
3008 50
            self::$cachedObjects[$srid] = new self(
3009 50
                $srid,
3010 50
                $horizontalCRS,
3011 50
                Vertical::fromSRID($data['vertical_crs']),
3012 50
                BoundingArea::createFromExtentCodes($data['extent']),
3013 50
                $data['name']
3014 50
            );
3015
        }
3016
3017 94
        return self::$cachedObjects[$srid];
3018
    }
3019
3020 172
    public static function getSupportedSRIDs(): array
3021
    {
3022 172
        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...
3023 9
            foreach (static::$sridData as $srid => $data) {
3024 9
                self::$supportedCache[$srid] = $data['name'];
3025
            }
3026
        }
3027
3028 172
        return self::$supportedCache;
3029
    }
3030
3031
    public static function registerCustomCRS(string $srid, string $name, string $coordinateSystem, string $datum, array $extent): void
3032
    {
3033
        self::$sridData[$srid] = ['name' => $name, 'coordinate_system' => $coordinateSystem, 'datum' => $datum, 'extent' => $extent];
3034
        self::getSupportedSRIDs(); // init cache if not already
3035
        self::$supportedCache[$srid] = $name; // update cache
3036
    }
3037
3038
    /**
3039
     * @internal
3040
     * @return self[]
3041
     */
3042 2
    public static function findFromVertical(Vertical $vertical): array
3043
    {
3044 2
        $candidates = [];
3045 2
        foreach (self::$sridData as $srid => $data) {
3046 2
            if ($data['vertical_crs'] === $vertical->getSRID()) {
3047 2
                $candidates[$srid] = self::fromSRID($srid);
3048
            }
3049
        }
3050
3051 2
        return $candidates;
3052
    }
3053
}
3054