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