|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* PHPCoord. |
|
5
|
|
|
* |
|
6
|
|
|
* @author Doug Wright |
|
7
|
|
|
*/ |
|
8
|
|
|
declare(strict_types=1); |
|
9
|
|
|
|
|
10
|
|
|
namespace PHPCoord\Datum; |
|
11
|
|
|
|
|
12
|
|
|
use DateTimeInterface; |
|
13
|
|
|
use PHPCoord\Exception\UnknownDatumException; |
|
14
|
|
|
use PHPCoord\UnitOfMeasure\Time\Year; |
|
15
|
|
|
|
|
16
|
|
|
use function end; |
|
17
|
|
|
use function array_map; |
|
18
|
|
|
use function assert; |
|
19
|
|
|
|
|
20
|
|
|
class Datum |
|
21
|
|
|
{ |
|
22
|
|
|
/** |
|
23
|
|
|
* AIOC 1995 |
|
24
|
|
|
* Type: Vertical |
|
25
|
|
|
* Extent: Azerbaijan - Caspian offshore and onshore Sangachal terminal |
|
26
|
|
|
* Average level of Caspian Sea at the Oil Rocks tide gauge June-September 1995. |
|
27
|
|
|
* AIOC 1995 datum is 1.7m above Caspian datum and 26.3m below Baltic datum. |
|
28
|
|
|
*/ |
|
29
|
|
|
public const EPSG_AIOC_1995 = 'urn:ogc:def:datum:EPSG::5133'; |
|
30
|
|
|
|
|
31
|
|
|
/** |
|
32
|
|
|
* AbInvA96_2020 Intermediate Reference Frame |
|
33
|
|
|
* Type: Geodetic |
|
34
|
|
|
* Extent: UK - on or related to the A96 highway from Aberdeen to Inverness |
|
35
|
|
|
* Defined through the application of the AbInvA96_2000 NTv2 transformation (code 9386) to ETRS89 as realized |
|
36
|
|
|
* through OSNet v2009 CORS. |
|
37
|
|
|
* Created in 2020 to support intermediate CRS "AbInvA96_2020-IRF" in the emulation of the AbInvA96_2020 Snake map |
|
38
|
|
|
* projection. |
|
39
|
|
|
*/ |
|
40
|
|
|
public const EPSG_ABINVA96_2020_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1273'; |
|
41
|
|
|
|
|
42
|
|
|
/** |
|
43
|
|
|
* Abidjan 1987 |
|
44
|
|
|
* Type: Geodetic |
|
45
|
|
|
* Extent: Côte d'Ivoire (Ivory Coast) |
|
46
|
|
|
* Fundamental point: Abidjan I. Latitude: 5°18'51.01"N, longitude: 4°02'06.04"W (of Greenwich). |
|
47
|
|
|
*/ |
|
48
|
|
|
public const EPSG_ABIDJAN_1987 = 'urn:ogc:def:datum:EPSG::6143'; |
|
49
|
|
|
|
|
50
|
|
|
/** |
|
51
|
|
|
* Accra |
|
52
|
|
|
* Type: Geodetic |
|
53
|
|
|
* Extent: Ghana |
|
54
|
|
|
* Fundamental point: GCS Station 547. Latitude: 5°23'43.3"N, longitude: 0°11'52.3"W (of Greenwich). |
|
55
|
|
|
* Replaced in 1978 by Leigon datum (code 6250). |
|
56
|
|
|
*/ |
|
57
|
|
|
public const EPSG_ACCRA = 'urn:ogc:def:datum:EPSG::6168'; |
|
58
|
|
|
|
|
59
|
|
|
/** |
|
60
|
|
|
* Aden 1925 |
|
61
|
|
|
* Type: Geodetic |
|
62
|
|
|
* Extent: Yemen - South Yemen onshore mainland. |
|
63
|
|
|
*/ |
|
64
|
|
|
public const EPSG_ADEN_1925 = 'urn:ogc:def:datum:EPSG::1135'; |
|
65
|
|
|
|
|
66
|
|
|
/** |
|
67
|
|
|
* Adindan |
|
68
|
|
|
* Type: Geodetic |
|
69
|
|
|
* Extent: Eritrea; Ethiopia; South Sudan; Sudan |
|
70
|
|
|
* Fundamental point: Station 15; Adindan. Latitude: 22°10'07.110"N, longitude: 31°29'21.608"E (of Greenwich). |
|
71
|
|
|
* The 12th parallel traverse of 1966-70 (Point 58 datum, code 6620) is connected to the Blue Nile 1958 network in |
|
72
|
|
|
* western Sudan. This has given rise to misconceptions that the Blue Nile network is used in west Africa. |
|
73
|
|
|
*/ |
|
74
|
|
|
public const EPSG_ADINDAN = 'urn:ogc:def:datum:EPSG::6201'; |
|
75
|
|
|
|
|
76
|
|
|
/** |
|
77
|
|
|
* Afgooye |
|
78
|
|
|
* Type: Geodetic |
|
79
|
|
|
* Extent: Somalia - onshore. |
|
80
|
|
|
*/ |
|
81
|
|
|
public const EPSG_AFGOOYE = 'urn:ogc:def:datum:EPSG::6205'; |
|
82
|
|
|
|
|
83
|
|
|
/** |
|
84
|
|
|
* Agadez |
|
85
|
|
|
* Type: Geodetic |
|
86
|
|
|
* Extent: Niger. |
|
87
|
|
|
*/ |
|
88
|
|
|
public const EPSG_AGADEZ = 'urn:ogc:def:datum:EPSG::6206'; |
|
89
|
|
|
|
|
90
|
|
|
/** |
|
91
|
|
|
* Ain el Abd 1970 |
|
92
|
|
|
* Type: Geodetic |
|
93
|
|
|
* Extent: Bahrain, Kuwait and Saudi Arabia - onshore |
|
94
|
|
|
* Fundamental point: Ain El Abd. Latitude: 28°14'06.171"N, longitude: 48°16'20.906"E (of Greenwich). |
|
95
|
|
|
*/ |
|
96
|
|
|
public const EPSG_AIN_EL_ABD_1970 = 'urn:ogc:def:datum:EPSG::6204'; |
|
97
|
|
|
|
|
98
|
|
|
/** |
|
99
|
|
|
* Albanian 1987 |
|
100
|
|
|
* Type: Geodetic |
|
101
|
|
|
* Extent: Albania - onshore. |
|
102
|
|
|
*/ |
|
103
|
|
|
public const EPSG_ALBANIAN_1987 = 'urn:ogc:def:datum:EPSG::6191'; |
|
104
|
|
|
|
|
105
|
|
|
/** |
|
106
|
|
|
* Alboran |
|
107
|
|
|
* Type: Vertical |
|
108
|
|
|
* Extent: Spain - Alboran island - onshore |
|
109
|
|
|
* Mean Sea Level at Alboran harbour between 2017-01-01 and 2019-12-31. |
|
110
|
|
|
* Orthometric heights. |
|
111
|
|
|
*/ |
|
112
|
|
|
public const EPSG_ALBORAN = 'urn:ogc:def:datum:EPSG::1363'; |
|
113
|
|
|
|
|
114
|
|
|
/** |
|
115
|
|
|
* Alicante |
|
116
|
|
|
* Type: Vertical |
|
117
|
|
|
* Extent: Gibraltar - onshore; Spain - mainland onshore |
|
118
|
|
|
* Mean Sea Level at Alicante between 1870 and 1872. |
|
119
|
|
|
* Orthometric heights. |
|
120
|
|
|
*/ |
|
121
|
|
|
public const EPSG_ALICANTE = 'urn:ogc:def:datum:EPSG::5180'; |
|
122
|
|
|
|
|
123
|
|
|
/** |
|
124
|
|
|
* American Samoa 1962 |
|
125
|
|
|
* Type: Geodetic |
|
126
|
|
|
* Extent: American Samoa - Tutuila, Aunu'u, Ofu, Olesega and Ta'u islands |
|
127
|
|
|
* Fundamental point: Betty 13 eccentric. Latitude: 14°20'08.34"S, longitude: 170°42'52.25"W (of Greenwich). |
|
128
|
|
|
*/ |
|
129
|
|
|
public const EPSG_AMERICAN_SAMOA_1962 = 'urn:ogc:def:datum:EPSG::6169'; |
|
130
|
|
|
|
|
131
|
|
|
/** |
|
132
|
|
|
* American Samoa Vertical Datum of 2002 |
|
133
|
|
|
* Type: Vertical |
|
134
|
|
|
* Extent: American Samoa - Tutuila island |
|
135
|
|
|
* Mean sea level at Pago Pago harbor, Tutuila. Benchmark 1770000 S TIDAL = 1.364m relative to National Tidal Datum |
|
136
|
|
|
* Epoch 1983-2001. |
|
137
|
|
|
* Replaces Tutuila vertical datum of 1962 (datum code 1121). Replaced by Pago Pago local tidal datum (datum code |
|
138
|
|
|
* 1302) in March 2020 after ASVD02 benchmarks destroyed by earthquake activity. |
|
139
|
|
|
*/ |
|
140
|
|
|
public const EPSG_AMERICAN_SAMOA_VERTICAL_DATUM_OF_2002 = 'urn:ogc:def:datum:EPSG::1125'; |
|
141
|
|
|
|
|
142
|
|
|
/** |
|
143
|
|
|
* Amersfoort |
|
144
|
|
|
* Type: Geodetic |
|
145
|
|
|
* Extent: Netherlands - onshore, including Waddenzee, Dutch Wadden Islands and 12-mile offshore coastal zone |
|
146
|
|
|
* Originally defined through fundamental point Amersfoort, latitude 52°09'22.178"N, longitude 5°23'15.478"E (of |
|
147
|
|
|
* Greenwich). Since 2000-10-01 has been redefined as derived from ETRS89 by application of the official |
|
148
|
|
|
* transformation RDNAPTRANS(TM). |
|
149
|
|
|
*/ |
|
150
|
|
|
public const EPSG_AMERSFOORT = 'urn:ogc:def:datum:EPSG::6289'; |
|
151
|
|
|
|
|
152
|
|
|
/** |
|
153
|
|
|
* Ammassalik 1958 |
|
154
|
|
|
* Type: Geodetic |
|
155
|
|
|
* Extent: Greenland - Ammassalik area onshore. |
|
156
|
|
|
*/ |
|
157
|
|
|
public const EPSG_AMMASSALIK_1958 = 'urn:ogc:def:datum:EPSG::6196'; |
|
158
|
|
|
|
|
159
|
|
|
/** |
|
160
|
|
|
* Ancienne Triangulation Francaise (Paris) |
|
161
|
|
|
* Type: Geodetic |
|
162
|
|
|
* Extent: France - mainland onshore |
|
163
|
|
|
* Uses the RGS value for the Paris meridian. In Alsace, data suspected to be transformation of German network into |
|
164
|
|
|
* ATF. Replaced by Nouvelle Triangulation Francaise (Paris) (code 6807) which uses the 1936 IGN value for the |
|
165
|
|
|
* Paris meridian. |
|
166
|
|
|
*/ |
|
167
|
|
|
public const EPSG_ANCIENNE_TRIANGULATION_FRANCAISE_PARIS = 'urn:ogc:def:datum:EPSG::6901'; |
|
168
|
|
|
|
|
169
|
|
|
/** |
|
170
|
|
|
* Anguilla 1957 |
|
171
|
|
|
* Type: Geodetic |
|
172
|
|
|
* Extent: Anguilla - onshore |
|
173
|
|
|
* Fundamental point: station A4, Police. |
|
174
|
|
|
*/ |
|
175
|
|
|
public const EPSG_ANGUILLA_1957 = 'urn:ogc:def:datum:EPSG::6600'; |
|
176
|
|
|
|
|
177
|
|
|
/** |
|
178
|
|
|
* Antalya |
|
179
|
|
|
* Type: Vertical |
|
180
|
|
|
* Extent: Turkey - onshore |
|
181
|
|
|
* Mean sea Level at Antalya 1936-71. |
|
182
|
|
|
* Orthometric heights. |
|
183
|
|
|
*/ |
|
184
|
|
|
public const EPSG_ANTALYA = 'urn:ogc:def:datum:EPSG::5173'; |
|
185
|
|
|
|
|
186
|
|
|
/** |
|
187
|
|
|
* Antigua 1943 |
|
188
|
|
|
* Type: Geodetic |
|
189
|
|
|
* Extent: Antigua island - onshore |
|
190
|
|
|
* Fundamental point: station A14. |
|
191
|
|
|
*/ |
|
192
|
|
|
public const EPSG_ANTIGUA_1943 = 'urn:ogc:def:datum:EPSG::6601'; |
|
193
|
|
|
|
|
194
|
|
|
/** |
|
195
|
|
|
* Aratu |
|
196
|
|
|
* Type: Geodetic |
|
197
|
|
|
* Extent: Brazil - offshore south and east of a line intersecting the coast at 2°55'S; onshore Tucano basin. |
|
198
|
|
|
*/ |
|
199
|
|
|
public const EPSG_ARATU = 'urn:ogc:def:datum:EPSG::6208'; |
|
200
|
|
|
|
|
201
|
|
|
/** |
|
202
|
|
|
* Arc 1950 |
|
203
|
|
|
* Type: Geodetic |
|
204
|
|
|
* Extent: Botswana; Malawi; Zambia; Zimbabwe |
|
205
|
|
|
* Fundamental point: Buffelsfontein. Latitude: 33°59'32.000"S, longitude: 25°30'44.622"E (of Greenwich). |
|
206
|
|
|
*/ |
|
207
|
|
|
public const EPSG_ARC_1950 = 'urn:ogc:def:datum:EPSG::6209'; |
|
208
|
|
|
|
|
209
|
|
|
/** |
|
210
|
|
|
* Arc 1960 |
|
211
|
|
|
* Type: Geodetic |
|
212
|
|
|
* Extent: Burundi, Kenya, Rwanda, Tanzania and Uganda |
|
213
|
|
|
* Fundamental point: Buffelsfontein. Latitude: 33°59'32.000"S, longitude: 25°30'44.622"E (of Greenwich). |
|
214
|
|
|
*/ |
|
215
|
|
|
public const EPSG_ARC_1960 = 'urn:ogc:def:datum:EPSG::6210'; |
|
216
|
|
|
|
|
217
|
|
|
/** |
|
218
|
|
|
* Ascension Island 1958 |
|
219
|
|
|
* Type: Geodetic |
|
220
|
|
|
* Extent: St Helena, Ascension and Tristan da Cunha - Ascension Island - onshore. |
|
221
|
|
|
*/ |
|
222
|
|
|
public const EPSG_ASCENSION_ISLAND_1958 = 'urn:ogc:def:datum:EPSG::6712'; |
|
223
|
|
|
|
|
224
|
|
|
/** |
|
225
|
|
|
* Astro DOS 71 |
|
226
|
|
|
* Type: Geodetic |
|
227
|
|
|
* Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore |
|
228
|
|
|
* Fundamental point: DOS 71/4, Ladder Hill Fort, latitude: 15°55'30"S, longitude: 5°43'25"W (of Greenwich). |
|
229
|
|
|
*/ |
|
230
|
|
|
public const EPSG_ASTRO_DOS_71 = 'urn:ogc:def:datum:EPSG::6710'; |
|
231
|
|
|
|
|
232
|
|
|
/** |
|
233
|
|
|
* Auckland 1946 |
|
234
|
|
|
* Type: Vertical |
|
235
|
|
|
* Extent: New Zealand - North Island - Auckland vertical CRS area |
|
236
|
|
|
* MSL at Auckland harbour 1909-1923. |
|
237
|
|
|
*/ |
|
238
|
|
|
public const EPSG_AUCKLAND_1946 = 'urn:ogc:def:datum:EPSG::5157'; |
|
239
|
|
|
|
|
240
|
|
|
/** |
|
241
|
|
|
* Australian Antarctic Datum 1998 |
|
242
|
|
|
* Type: Geodetic |
|
243
|
|
|
* Extent: Antarctica between 45°E and 136°E and between 142°E and 160°E - Australian sector. |
|
244
|
|
|
*/ |
|
245
|
|
|
public const EPSG_AUSTRALIAN_ANTARCTIC_DATUM_1998 = 'urn:ogc:def:datum:EPSG::6176'; |
|
246
|
|
|
|
|
247
|
|
|
/** |
|
248
|
|
|
* Australian Geodetic Datum 1966 |
|
249
|
|
|
* Type: Geodetic |
|
250
|
|
|
* Extent: Australia. Papua New Guinea - onshore |
|
251
|
|
|
* Fundamental point: Johnson Memorial Cairn. Latitude: 25°56'54.5515"S, longitude: 133°12'30.0771"E (of |
|
252
|
|
|
* Greenwich). |
|
253
|
|
|
*/ |
|
254
|
|
|
public const EPSG_AUSTRALIAN_GEODETIC_DATUM_1966 = 'urn:ogc:def:datum:EPSG::6202'; |
|
255
|
|
|
|
|
256
|
|
|
/** |
|
257
|
|
|
* Australian Geodetic Datum 1984 |
|
258
|
|
|
* Type: Geodetic |
|
259
|
|
|
* Extent: Australia - Queensland, South Australia, Western Australia, federal areas offshore west of 129°E |
|
260
|
|
|
* Fundamental point: Johnson Memorial Cairn. Latitude: 25°56'54.5515"S, longitude: 133°12'30.0771"E (of |
|
261
|
|
|
* Greenwich). |
|
262
|
|
|
* Uses all data from 1966 adjustment with additional observations, improved software and a geoid model. |
|
263
|
|
|
*/ |
|
264
|
|
|
public const EPSG_AUSTRALIAN_GEODETIC_DATUM_1984 = 'urn:ogc:def:datum:EPSG::6203'; |
|
265
|
|
|
|
|
266
|
|
|
/** |
|
267
|
|
|
* Australian Height Datum |
|
268
|
|
|
* Type: Vertical |
|
269
|
|
|
* Extent: Australia - Australian Capital Territory, New South Wales, Northern Territory, Queensland, South |
|
270
|
|
|
* Australia, Tasmania, Western Australia and Victoria - onshore. Christmas Island - onshore. Cocos and Keeling |
|
271
|
|
|
* Islands - onshore |
|
272
|
|
|
* Mainland: MSL 1966-68 at 30 gauges around coast. Tasmania: MSL 1972 at Hobart and Burnie. Christmas Island: MSL |
|
273
|
|
|
* (details unspecified). Cocos and Keeling Islands: MSL (details unspecified). |
|
274
|
|
|
* Normal-orthometric heights. Initially defined for mainland only, with independent height datums for Australian |
|
275
|
|
|
* mainland, Tasmania, Christmas Island and Cocos and Keeling Islands. With introduction of AUSGeoid2020 in 2017, |
|
276
|
|
|
* all considered to be AHD. |
|
277
|
|
|
*/ |
|
278
|
|
|
public const EPSG_AUSTRALIAN_HEIGHT_DATUM = 'urn:ogc:def:datum:EPSG::5111'; |
|
279
|
|
|
|
|
280
|
|
|
/** |
|
281
|
|
|
* Australian Height Datum (Tasmania) |
|
282
|
|
|
* Type: Vertical |
|
283
|
|
|
* Extent: Australia - Tasmania mainland - onshore |
|
284
|
|
|
* MSL 1972 at Hobart and Burnie. |
|
285
|
|
|
*/ |
|
286
|
|
|
public const EPSG_AUSTRALIAN_HEIGHT_DATUM_TASMANIA = 'urn:ogc:def:datum:EPSG::5112'; |
|
287
|
|
|
|
|
288
|
|
|
/** |
|
289
|
|
|
* Australian Terrestrial Reference Frame 2014 |
|
290
|
|
|
* Type: Dynamic geodetic |
|
291
|
|
|
* Extent: Australia including Lord Howe Island, Macquarie Island, Ashmore and Cartier Islands, Christmas Island, |
|
292
|
|
|
* Cocos (Keeling) Islands, Norfolk Island |
|
293
|
|
|
* ITRF2014 at epoch 2020.0. |
|
294
|
|
|
* Densification of ITRF2014 in the Australian region. |
|
295
|
|
|
*/ |
|
296
|
|
|
public const EPSG_AUSTRALIAN_TERRESTRIAL_REFERENCE_FRAME_2014 = 'urn:ogc:def:datum:EPSG::1291'; |
|
297
|
|
|
|
|
298
|
|
|
/** |
|
299
|
|
|
* Australian Vertical Working Surface |
|
300
|
|
|
* Type: Vertical |
|
301
|
|
|
* Extent: Australia including Lord Howe Island, Macquarie Island, Ashmore and Cartier Islands, Christmas Island, |
|
302
|
|
|
* Cocos (Keeling) Islands, Norfolk Island |
|
303
|
|
|
* Realized by the Australian gravimetric quasi-geoid (AGQG). |
|
304
|
|
|
* Normal heights. Extends gravity-related heights to offshore. See AHD (datum code 5111) for cadastral survey or |
|
305
|
|
|
* local engineering survey including construction or mining. |
|
306
|
|
|
*/ |
|
307
|
|
|
public const EPSG_AUSTRALIAN_VERTICAL_WORKING_SURFACE = 'urn:ogc:def:datum:EPSG::1292'; |
|
308
|
|
|
|
|
309
|
|
|
/** |
|
310
|
|
|
* Autonomous Regions of Portugal 2008 |
|
311
|
|
|
* Type: Geodetic |
|
312
|
|
|
* Extent: Portugal - Azores and Madeira island groups and surrounding EEZ - Flores, Corvo; Graciosa, Terceira, Sao |
|
313
|
|
|
* Jorge, Pico, Faial; Sao Miguel, Santa Maria; Madeira, Porto Santo, Desertas; Selvagens |
|
314
|
|
|
* ITRF93 as derived from the 1994 TransAtlantic Network for Geodynamics and Oceanography (TANGO) project. |
|
315
|
|
|
* Replaces older classical datums for Azores and Madeira archipelagos. |
|
316
|
|
|
*/ |
|
317
|
|
|
public const EPSG_AUTONOMOUS_REGIONS_OF_PORTUGAL_2008 = 'urn:ogc:def:datum:EPSG::1041'; |
|
318
|
|
|
|
|
319
|
|
|
/** |
|
320
|
|
|
* Average Terrestrial System 1977 |
|
321
|
|
|
* Type: Geodetic |
|
322
|
|
|
* Extent: Canada - New Brunswick; Nova Scotia; Prince Edward Island |
|
323
|
|
|
* In use from 1979. To be phased out in late 1990's. |
|
324
|
|
|
*/ |
|
325
|
|
|
public const EPSG_AVERAGE_TERRESTRIAL_SYSTEM_1977 = 'urn:ogc:def:datum:EPSG::6122'; |
|
326
|
|
|
|
|
327
|
|
|
/** |
|
328
|
|
|
* Ayabelle Lighthouse |
|
329
|
|
|
* Type: Geodetic |
|
330
|
|
|
* Extent: Djibouti |
|
331
|
|
|
* Fundamental point: Ayabelle Lighthouse. |
|
332
|
|
|
*/ |
|
333
|
|
|
public const EPSG_AYABELLE_LIGHTHOUSE = 'urn:ogc:def:datum:EPSG::6713'; |
|
334
|
|
|
|
|
335
|
|
|
/** |
|
336
|
|
|
* Azores Central Islands 1948 |
|
337
|
|
|
* Type: Geodetic |
|
338
|
|
|
* Extent: Portugal - central Azores onshore - Faial, Graciosa, Pico, Sao Jorge, Terceira |
|
339
|
|
|
* Fundamental point: Graciosa south west base. Latitude: 39°03'54.934"N, longitude: 28°02'23.882"W (of |
|
340
|
|
|
* Greenwich). |
|
341
|
|
|
* Replaced by 1995 adjustment (datum code 6665). |
|
342
|
|
|
*/ |
|
343
|
|
|
public const EPSG_AZORES_CENTRAL_ISLANDS_1948 = 'urn:ogc:def:datum:EPSG::6183'; |
|
344
|
|
|
|
|
345
|
|
|
/** |
|
346
|
|
|
* Azores Central Islands 1995 |
|
347
|
|
|
* Type: Geodetic |
|
348
|
|
|
* Extent: Portugal - central Azores onshore - Faial, Graciosa, Pico, Sao Jorge, Terceira |
|
349
|
|
|
* Fundamental point: Graciosa south west base. Origin and orientation constrained to those of the 1948 adjustment. |
|
350
|
|
|
* Classical and GPS observations. Replaces 1948 adjustment (datum code 6183). |
|
351
|
|
|
*/ |
|
352
|
|
|
public const EPSG_AZORES_CENTRAL_ISLANDS_1995 = 'urn:ogc:def:datum:EPSG::6665'; |
|
353
|
|
|
|
|
354
|
|
|
/** |
|
355
|
|
|
* Azores Occidental Islands 1939 |
|
356
|
|
|
* Type: Geodetic |
|
357
|
|
|
* Extent: Portugal - western Azores onshore - Flores, Corvo |
|
358
|
|
|
* Fundamental point: Observatario Meteorologico Flores. |
|
359
|
|
|
*/ |
|
360
|
|
|
public const EPSG_AZORES_OCCIDENTAL_ISLANDS_1939 = 'urn:ogc:def:datum:EPSG::6182'; |
|
361
|
|
|
|
|
362
|
|
|
/** |
|
363
|
|
|
* Azores Oriental Islands 1940 |
|
364
|
|
|
* Type: Geodetic |
|
365
|
|
|
* Extent: Portugal - eastern Azores onshore - Sao Miguel, Santa Maria, Formigas |
|
366
|
|
|
* Fundamental point: Forte de São Bras. |
|
367
|
|
|
* Replaced by 1995 adjustment (datum code 6664). |
|
368
|
|
|
*/ |
|
369
|
|
|
public const EPSG_AZORES_ORIENTAL_ISLANDS_1940 = 'urn:ogc:def:datum:EPSG::6184'; |
|
370
|
|
|
|
|
371
|
|
|
/** |
|
372
|
|
|
* Azores Oriental Islands 1995 |
|
373
|
|
|
* Type: Geodetic |
|
374
|
|
|
* Extent: Portugal - eastern Azores onshore - Sao Miguel, Santa Maria, Formigas |
|
375
|
|
|
* Fundamental point: Forte de São Bras. Origin and orientation constrained to those of the 1940 adjustment. |
|
376
|
|
|
* Classical and GPS observations. Replaces 1940 adjustment (datum code 6184). |
|
377
|
|
|
*/ |
|
378
|
|
|
public const EPSG_AZORES_ORIENTAL_ISLANDS_1995 = 'urn:ogc:def:datum:EPSG::6664'; |
|
379
|
|
|
|
|
380
|
|
|
/** |
|
381
|
|
|
* BH_ETRS89 |
|
382
|
|
|
* Type: Geodetic |
|
383
|
|
|
* Extent: Bosnia and Herzegovina |
|
384
|
|
|
* Densification of ETRF2000 in Bosnia and Herzegovina at epoch 2011.307. |
|
385
|
|
|
* ETRS89 in Bosnia and Herzegovina, realized through the coordinates of 17 stations of the GNSS active FBiHPOS |
|
386
|
|
|
* network in conjunction with 17 stations of the Serbia SRPOS network. |
|
387
|
|
|
*/ |
|
388
|
|
|
public const EPSG_BH_ETRS89 = 'urn:ogc:def:datum:EPSG::1358'; |
|
389
|
|
|
|
|
390
|
|
|
/** |
|
391
|
|
|
* Baltic 1957 |
|
392
|
|
|
* Type: Vertical |
|
393
|
|
|
* Extent: Czechia; Slovakia |
|
394
|
|
|
* Datum: average water level at Kronstadt 1833. Network adjusted in 1957 as Uniform Precise Leveling Network of |
|
395
|
|
|
* Eastern Europe (EPNN). |
|
396
|
|
|
* Uses Normal heights. |
|
397
|
|
|
*/ |
|
398
|
|
|
public const EPSG_BALTIC_1957 = 'urn:ogc:def:datum:EPSG::1202'; |
|
399
|
|
|
|
|
400
|
|
|
/** |
|
401
|
|
|
* Baltic 1977 |
|
402
|
|
|
* Type: Vertical |
|
403
|
|
|
* Extent: Armenia; Azerbaijan; Belarus; Estonia - onshore; Georgia - onshore; Kazakhstan; Kyrgyzstan; Latvia - |
|
404
|
|
|
* onshore; Lithuania - onshore; Moldova; Russia - onshore; Tajikistan; Turkmenistan; Ukraine - onshore; Uzbekistan |
|
405
|
|
|
* Datum: average water level at Kronstadt 1833. Network adjusted in 1974-78 as Uniform Precise Leveling Network of |
|
406
|
|
|
* Eastern Europe (EPNN). |
|
407
|
|
|
* Uses Normal heights. Adjustment also included former Czechoslovakia but was not adopted there, the 1957 |
|
408
|
|
|
* adjustment being retained instead. |
|
409
|
|
|
*/ |
|
410
|
|
|
public const EPSG_BALTIC_1977 = 'urn:ogc:def:datum:EPSG::5105'; |
|
411
|
|
|
|
|
412
|
|
|
/** |
|
413
|
|
|
* Baltic 1980 |
|
414
|
|
|
* Type: Vertical |
|
415
|
|
|
* Extent: Hungary |
|
416
|
|
|
* Uses Normal heights. |
|
417
|
|
|
*/ |
|
418
|
|
|
public const EPSG_BALTIC_1980 = 'urn:ogc:def:datum:EPSG::5185'; |
|
419
|
|
|
|
|
420
|
|
|
/** |
|
421
|
|
|
* Baltic 1982 |
|
422
|
|
|
* Type: Vertical |
|
423
|
|
|
* Extent: Bulgaria - onshore |
|
424
|
|
|
* Network adjusted in 1982. Height at reference point Varna defined as 1958 value from the UPLN adjustment. Datum |
|
425
|
|
|
* at Kronstadt is mean sea level of Baltic in 1833. |
|
426
|
|
|
* Uses Normal heights. |
|
427
|
|
|
*/ |
|
428
|
|
|
public const EPSG_BALTIC_1982 = 'urn:ogc:def:datum:EPSG::5184'; |
|
429
|
|
|
|
|
430
|
|
|
/** |
|
431
|
|
|
* Baltic 1986 |
|
432
|
|
|
* Type: Vertical |
|
433
|
|
|
* Extent: Poland - onshore |
|
434
|
|
|
* Mean sea level of Baltic at Kronstadt in 1833. Network adjusted in 1982. |
|
435
|
|
|
* |
|
436
|
|
|
* Uses Normal heights. Adopted in 1986. |
|
437
|
|
|
*/ |
|
438
|
|
|
public const EPSG_BALTIC_1986 = 'urn:ogc:def:datum:EPSG::1296'; |
|
439
|
|
|
|
|
440
|
|
|
/** |
|
441
|
|
|
* Baltic Sea Chart Datum 2000 |
|
442
|
|
|
* Type: Vertical |
|
443
|
|
|
* Extent: Denmark, Estonia, Finland, Germany, Latvia, Lithuania, Norway, Poland, Russia and Sweden - offshore |
|
444
|
|
|
* Baltic Sea including Skagerrak east of 8°30'E, Kattegat, Gulf of Bothnia, and Gulf of Finland |
|
445
|
|
|
* Equipotential surface of the Earth’s gravity field based on the definitions for EVRS and ETRS89 with reference |
|
446
|
|
|
* epoch 2000.0 for the postglacial land uplift in Fennoscandia. Zero level is Normaal Amsterdams Peil (NAP). |
|
447
|
|
|
* Defined by the BSCD2000 model. |
|
448
|
|
|
* Realized at the national level through coordinates at reference epoch 2000.0 using existing national geodetic |
|
449
|
|
|
* infrastructure (see BSCD2000 Specifications document). |
|
450
|
|
|
*/ |
|
451
|
|
|
public const EPSG_BALTIC_SEA_CHART_DATUM_2000 = 'urn:ogc:def:datum:EPSG::1390'; |
|
452
|
|
|
|
|
453
|
|
|
/** |
|
454
|
|
|
* Bandar Abbas |
|
455
|
|
|
* Type: Vertical |
|
456
|
|
|
* Extent: Iran - onshore |
|
457
|
|
|
* Average sea level at Bandar Abbas 1995-2001. |
|
458
|
|
|
* Replaces Fao (datum code 5149) in Iran. |
|
459
|
|
|
*/ |
|
460
|
|
|
public const EPSG_BANDAR_ABBAS = 'urn:ogc:def:datum:EPSG::5150'; |
|
461
|
|
|
|
|
462
|
|
|
/** |
|
463
|
|
|
* Barbados 1938 |
|
464
|
|
|
* Type: Geodetic |
|
465
|
|
|
* Extent: Barbados - onshore |
|
466
|
|
|
* Fundamental point: HMS Challenger astro station M1, St. Anne's Tower. Latitude 13°04'32.53"N, longitude |
|
467
|
|
|
* 59°36'29.34"W (of Greenwich). |
|
468
|
|
|
*/ |
|
469
|
|
|
public const EPSG_BARBADOS_1938 = 'urn:ogc:def:datum:EPSG::6212'; |
|
470
|
|
|
|
|
471
|
|
|
/** |
|
472
|
|
|
* Batavia |
|
473
|
|
|
* Type: Geodetic |
|
474
|
|
|
* Extent: Indonesia - Bali, Java and western Sumatra onshore, offshore southern Java Sea, Madura Strait and |
|
475
|
|
|
* western Bali Sea |
|
476
|
|
|
* Fundamental point: Longitude at Batavia Astro. Station. Latitude: 6°07'39.522"S, longitude: 106°48'27.790"E |
|
477
|
|
|
* (of Greenwich). Latitude and azimuth at Genuk. |
|
478
|
|
|
*/ |
|
479
|
|
|
public const EPSG_BATAVIA = 'urn:ogc:def:datum:EPSG::6211'; |
|
480
|
|
|
|
|
481
|
|
|
/** |
|
482
|
|
|
* Batavia (Jakarta) |
|
483
|
|
|
* Type: Geodetic |
|
484
|
|
|
* Extent: Indonesia - onshore - Bali, Java and western Sumatra |
|
485
|
|
|
* Fundamental point: Longitude at Batavia astronomical station. Latitude: 6°07'39.522"S, longitude: 0°00'00.0"E |
|
486
|
|
|
* (of Jakarta). Latitude and azimuth at Genuk. |
|
487
|
|
|
*/ |
|
488
|
|
|
public const EPSG_BATAVIA_JAKARTA = 'urn:ogc:def:datum:EPSG::6813'; |
|
489
|
|
|
|
|
490
|
|
|
/** |
|
491
|
|
|
* Beduaram |
|
492
|
|
|
* Type: Geodetic |
|
493
|
|
|
* Extent: Niger - southeast. |
|
494
|
|
|
*/ |
|
495
|
|
|
public const EPSG_BEDUARAM = 'urn:ogc:def:datum:EPSG::6213'; |
|
496
|
|
|
|
|
497
|
|
|
/** |
|
498
|
|
|
* Beijing 1954 |
|
499
|
|
|
* Type: Geodetic |
|
500
|
|
|
* Extent: China |
|
501
|
|
|
* Pulkovo, transferred through Russian triangulation. |
|
502
|
|
|
* Scale determined through three baselines in northeast China. Discontinuities at boundaries of adjustment blocks. |
|
503
|
|
|
* From 1982 replaced by Xian 1980 and New Beijing. |
|
504
|
|
|
*/ |
|
505
|
|
|
public const EPSG_BEIJING_1954 = 'urn:ogc:def:datum:EPSG::6214'; |
|
506
|
|
|
|
|
507
|
|
|
/** |
|
508
|
|
|
* Bekaa Valley 1920 |
|
509
|
|
|
* Type: Geodetic |
|
510
|
|
|
* Extent: Lebanon - onshore. |
|
511
|
|
|
*/ |
|
512
|
|
|
public const EPSG_BEKAA_VALLEY_1920 = 'urn:ogc:def:datum:EPSG::1137'; |
|
513
|
|
|
|
|
514
|
|
|
/** |
|
515
|
|
|
* Belfast Lough |
|
516
|
|
|
* Type: Vertical |
|
517
|
|
|
* Extent: UK - Northern Ireland (Ulster) - onshore |
|
518
|
|
|
* Mean sea level between 1951 and 1956 at Clarendon Dock, Belfast. Initially realised through levelling network |
|
519
|
|
|
* adjustment, from 2002 redefined to be realised through OSGM geoid model. |
|
520
|
|
|
* Orthometric heights. Malin Head (datum code 5130) used for 1:50,000 and smaller mapping. |
|
521
|
|
|
*/ |
|
522
|
|
|
public const EPSG_BELFAST_LOUGH = 'urn:ogc:def:datum:EPSG::5131'; |
|
523
|
|
|
|
|
524
|
|
|
/** |
|
525
|
|
|
* Bellevue |
|
526
|
|
|
* Type: Geodetic |
|
527
|
|
|
* Extent: Vanuatu - southern islands - Aneityum, Efate, Erromango and Tanna |
|
528
|
|
|
* Datum covers all the major islands of Vanuatu in two different adjustment blocks, but practical usage is as |
|
529
|
|
|
* given in the area of use. |
|
530
|
|
|
*/ |
|
531
|
|
|
public const EPSG_BELLEVUE = 'urn:ogc:def:datum:EPSG::6714'; |
|
532
|
|
|
|
|
533
|
|
|
/** |
|
534
|
|
|
* Bermuda 1957 |
|
535
|
|
|
* Type: Geodetic |
|
536
|
|
|
* Extent: Bermuda - onshore |
|
537
|
|
|
* Fundamental point: Fort George base. Latitude 32°22'44.36"N, longitude 64°40'58.11"W (of Greenwich). |
|
538
|
|
|
*/ |
|
539
|
|
|
public const EPSG_BERMUDA_1957 = 'urn:ogc:def:datum:EPSG::6216'; |
|
540
|
|
|
|
|
541
|
|
|
/** |
|
542
|
|
|
* Bermuda 2000 |
|
543
|
|
|
* Type: Geodetic |
|
544
|
|
|
* Extent: Bermuda |
|
545
|
|
|
* ITRF96 at epoch 2000.0. |
|
546
|
|
|
*/ |
|
547
|
|
|
public const EPSG_BERMUDA_2000 = 'urn:ogc:def:datum:EPSG::6762'; |
|
548
|
|
|
|
|
549
|
|
|
/** |
|
550
|
|
|
* Bern 1938 |
|
551
|
|
|
* Type: Geodetic |
|
552
|
|
|
* Extent: Liechtenstein; Switzerland |
|
553
|
|
|
* Fundamental point: Old Bern observatory. Latitude: 46°57'07.890"N, longitude: 7°26'22.335"E (of Greenwich). |
|
554
|
|
|
* This redetermination of the coordinates of fundamental point is used for scientific purposes and as the |
|
555
|
|
|
* graticule overprinted on topographic maps constructed on the CH1903 / LV03 projected CS (code 21781). |
|
556
|
|
|
*/ |
|
557
|
|
|
public const EPSG_BERN_1938 = 'urn:ogc:def:datum:EPSG::6306'; |
|
558
|
|
|
|
|
559
|
|
|
/** |
|
560
|
|
|
* Bhutan National Geodetic Datum |
|
561
|
|
|
* Type: Geodetic |
|
562
|
|
|
* Extent: Bhutan |
|
563
|
|
|
* ITRF2000 at epoch 2003.87. |
|
564
|
|
|
*/ |
|
565
|
|
|
public const EPSG_BHUTAN_NATIONAL_GEODETIC_DATUM = 'urn:ogc:def:datum:EPSG::1058'; |
|
566
|
|
|
|
|
567
|
|
|
/** |
|
568
|
|
|
* Bioko |
|
569
|
|
|
* Type: Geodetic |
|
570
|
|
|
* Extent: Equatorial Guinea - Bioko onshore. |
|
571
|
|
|
*/ |
|
572
|
|
|
public const EPSG_BIOKO = 'urn:ogc:def:datum:EPSG::1136'; |
|
573
|
|
|
|
|
574
|
|
|
/** |
|
575
|
|
|
* Bissau |
|
576
|
|
|
* Type: Geodetic |
|
577
|
|
|
* Extent: Guinea-Bissau - onshore. |
|
578
|
|
|
*/ |
|
579
|
|
|
public const EPSG_BISSAU = 'urn:ogc:def:datum:EPSG::6165'; |
|
580
|
|
|
|
|
581
|
|
|
/** |
|
582
|
|
|
* Black Sea |
|
583
|
|
|
* Type: Vertical |
|
584
|
|
|
* Extent: Georgia |
|
585
|
|
|
* Black Sea datum is 0.4m below Baltic datum. |
|
586
|
|
|
*/ |
|
587
|
|
|
public const EPSG_BLACK_SEA = 'urn:ogc:def:datum:EPSG::5134'; |
|
588
|
|
|
|
|
589
|
|
|
/** |
|
590
|
|
|
* Bluff 1955 |
|
591
|
|
|
* Type: Vertical |
|
592
|
|
|
* Extent: New Zealand - South Island - Bluff vertical CRS area |
|
593
|
|
|
* MSL at Invercargill harbour over 8 years between 1918 and 1934. |
|
594
|
|
|
*/ |
|
595
|
|
|
public const EPSG_BLUFF_1955 = 'urn:ogc:def:datum:EPSG::5158'; |
|
596
|
|
|
|
|
597
|
|
|
/** |
|
598
|
|
|
* Bogota 1975 |
|
599
|
|
|
* Type: Geodetic |
|
600
|
|
|
* Extent: Colombia - mainland and offshore Caribbean |
|
601
|
|
|
* Fundamental point: Bogota observatory. Latitude: 4°35'56.570"N, longitude: 74°04'51.300"W (of Greenwich). |
|
602
|
|
|
* Replaces 1951 adjustment. Replaced by MAGNA-SIRGAS (datum code 6685). |
|
603
|
|
|
*/ |
|
604
|
|
|
public const EPSG_BOGOTA_1975 = 'urn:ogc:def:datum:EPSG::6218'; |
|
605
|
|
|
|
|
606
|
|
|
/** |
|
607
|
|
|
* Bogota 1975 (Bogota) |
|
608
|
|
|
* Type: Geodetic |
|
609
|
|
|
* Extent: Colombia - mainland onshore |
|
610
|
|
|
* Fundamental point: Bogota observatory. Latitude: 4°35'56.570"N, longitude: 0°E (of Bogota). |
|
611
|
|
|
*/ |
|
612
|
|
|
public const EPSG_BOGOTA_1975_BOGOTA = 'urn:ogc:def:datum:EPSG::6802'; |
|
613
|
|
|
|
|
614
|
|
|
/** |
|
615
|
|
|
* Bora Bora SAU 2001 |
|
616
|
|
|
* Type: Vertical |
|
617
|
|
|
* Extent: French Polynesia - Society Islands - Bora Bora |
|
618
|
|
|
* Fundamental benchmark: Vaitape quay SHOM benchmark B. |
|
619
|
|
|
* Included as part of NGPF - see datum code 5195. |
|
620
|
|
|
*/ |
|
621
|
|
|
public const EPSG_BORA_BORA_SAU_2001 = 'urn:ogc:def:datum:EPSG::5202'; |
|
622
|
|
|
|
|
623
|
|
|
/** |
|
624
|
|
|
* Brenner Base Tunnel 2000 |
|
625
|
|
|
* Type: Geodetic |
|
626
|
|
|
* Extent: Austria and Italy - on or related to the Brenner Base Tunnel rail route from Innsbruck to Fortezza |
|
627
|
|
|
* (Franzensfeste) |
|
628
|
|
|
* Realized through a network of stations aligned to [email protected]. |
|
629
|
|
|
* Network of BBT stations, including existing nearby stations of the Austrian AREF-TIREF network, the Italian |
|
630
|
|
|
* IGM95 network and the Trentino Alto Adige provincial cadastral control network. |
|
631
|
|
|
*/ |
|
632
|
|
|
public const EPSG_BRENNER_BASE_TUNNEL_2000 = 'urn:ogc:def:datum:EPSG::1367'; |
|
633
|
|
|
|
|
634
|
|
|
/** |
|
635
|
|
|
* British Isles height ensemble |
|
636
|
|
|
* Type: Ensemble |
|
637
|
|
|
* Extent: UK - offshore to boundary of UKCS within 49°45'N to 61°N and 9°W to 2°E; onshore Great Britain |
|
638
|
|
|
* (England, Wales and Scotland) and Northern Ireland. Ireland onshore. Isle of Man onshore |
|
639
|
|
|
* Ensemble of 9 independent vertical datums now all defined through OS geoid model OSGM15. |
|
640
|
|
|
* Orthometric heights. |
|
641
|
|
|
*/ |
|
642
|
|
|
public const EPSG_BRITISH_ISLES_HEIGHT_ENSEMBLE = 'urn:ogc:def:datum:EPSG::1288'; |
|
643
|
|
|
|
|
644
|
|
|
/** |
|
645
|
|
|
* Bukit Rimpah |
|
646
|
|
|
* Type: Geodetic |
|
647
|
|
|
* Extent: Indonesia - Banga and Belitung Islands |
|
648
|
|
|
* 2°00'40.16"S, 105°51'39.76"E (of Greenwich). |
|
649
|
|
|
*/ |
|
650
|
|
|
public const EPSG_BUKIT_RIMPAH = 'urn:ogc:def:datum:EPSG::6219'; |
|
651
|
|
|
|
|
652
|
|
|
/** |
|
653
|
|
|
* Bulgaria Geodetic System 2005 |
|
654
|
|
|
* Type: Geodetic |
|
655
|
|
|
* Extent: Bulgaria |
|
656
|
|
|
* Densification of ETRS89 realised through network of 112 permanent GNSS reference stations in [email protected]. |
|
657
|
|
|
* Adopted as official Bulgarian reference datum through decree 153 of 2010-07-29. |
|
658
|
|
|
*/ |
|
659
|
|
|
public const EPSG_BULGARIA_GEODETIC_SYSTEM_2005 = 'urn:ogc:def:datum:EPSG::1167'; |
|
660
|
|
|
|
|
661
|
|
|
/** |
|
662
|
|
|
* Bulgarian Height System 2005 |
|
663
|
|
|
* Type: Vertical |
|
664
|
|
|
* Extent: Bulgaria - onshore |
|
665
|
|
|
* Bulgarian realisation of EVRF2007. EVRF2007 heights of 58 points in Bulgaria held fixed. |
|
666
|
|
|
* Uses Normal heights. Adopted as official Bulgarian height reference datum through decree 153 of 2010-07-29. |
|
667
|
|
|
*/ |
|
668
|
|
|
public const EPSG_BULGARIAN_HEIGHT_SYSTEM_2005 = 'urn:ogc:def:datum:EPSG::1300'; |
|
669
|
|
|
|
|
670
|
|
|
/** |
|
671
|
|
|
* CH1903 |
|
672
|
|
|
* Type: Geodetic |
|
673
|
|
|
* Extent: Liechtenstein; Switzerland |
|
674
|
|
|
* Fundamental point: Old Bern observatory. Latitude: 46°57'08.660"N, longitude: 7°26'22.500"E (of Greenwich). |
|
675
|
|
|
*/ |
|
676
|
|
|
public const EPSG_CH1903 = 'urn:ogc:def:datum:EPSG::6149'; |
|
677
|
|
|
|
|
678
|
|
|
/** |
|
679
|
|
|
* CH1903 (Bern) |
|
680
|
|
|
* Type: Geodetic |
|
681
|
|
|
* Extent: Liechtenstein; Switzerland |
|
682
|
|
|
* Fundamental point: Old Bern observatory. Latitude: 46°57'08.660"N, longitude: 0°E (of Bern). |
|
683
|
|
|
*/ |
|
684
|
|
|
public const EPSG_CH1903_BERN = 'urn:ogc:def:datum:EPSG::6801'; |
|
685
|
|
|
|
|
686
|
|
|
/** |
|
687
|
|
|
* CH1903+ |
|
688
|
|
|
* Type: Geodetic |
|
689
|
|
|
* Extent: Liechtenstein; Switzerland |
|
690
|
|
|
* Fundamental point: Zimmerwald observatory. |
|
691
|
|
|
*/ |
|
692
|
|
|
public const EPSG_CH1903_PLUS = 'urn:ogc:def:datum:EPSG::6150'; |
|
693
|
|
|
|
|
694
|
|
|
/** |
|
695
|
|
|
* CNH22 Intermediate Reference Frame |
|
696
|
|
|
* Type: Geodetic |
|
697
|
|
|
* Extent: UK - on or related to the rail route from Crewe via Chester to Holyhead |
|
698
|
|
|
* Defined through the application of the CNH22 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
699
|
|
|
* Created in 2022 to support intermediate CRS CNH22-IRF in the emulation of the CNH22 Snake map projection. |
|
700
|
|
|
*/ |
|
701
|
|
|
public const EPSG_CNH22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1336'; |
|
702
|
|
|
|
|
703
|
|
|
/** |
|
704
|
|
|
* COV23 Intermediate Reference Frame |
|
705
|
|
|
* Type: Geodetic |
|
706
|
|
|
* Extent: UK - in and around the area of Coventry city centre and the route to Birmingham airport |
|
707
|
|
|
* Defined through the application of the COV23 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
708
|
|
|
* Created in 2023 to support intermediate CRS COV23-IRF in the emulation of the COV23 Snake map projection. |
|
709
|
|
|
*/ |
|
710
|
|
|
public const EPSG_COV23_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1366'; |
|
711
|
|
|
|
|
712
|
|
|
/** |
|
713
|
|
|
* CR-SIRGAS |
|
714
|
|
|
* Type: Geodetic |
|
715
|
|
|
* Extent: Costa Rica |
|
716
|
|
|
* ITRF2008 (IGb08) at epoch 2014.59. Network of 42 GNSS stations of the passive and active reference system. |
|
717
|
|
|
* Replaces CR05 from April 2018. |
|
718
|
|
|
*/ |
|
719
|
|
|
public const EPSG_CR_SIRGAS = 'urn:ogc:def:datum:EPSG::1225'; |
|
720
|
|
|
|
|
721
|
|
|
/** |
|
722
|
|
|
* CWS13 Intermediate Reference Frame |
|
723
|
|
|
* Type: Geodetic |
|
724
|
|
|
* Extent: UK - on or related to the rail route from from Chester via Wrexham to Shrewsbury |
|
725
|
|
|
* Defined through the application of the CWS13 NTv2 transformation (code 10197) to ETRS89 as realized through |
|
726
|
|
|
* OSNet v2009 CORS. |
|
727
|
|
|
* Created in 2022 to support intermediate CRS CWS13-IRF in the emulation of the CWS13 Snake map projection. |
|
728
|
|
|
*/ |
|
729
|
|
|
public const EPSG_CWS13_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1338'; |
|
730
|
|
|
|
|
731
|
|
|
/** |
|
732
|
|
|
* Cadastre 1997 |
|
733
|
|
|
* Type: Geodetic |
|
734
|
|
|
* Extent: Mayotte - onshore |
|
735
|
|
|
* Coordinates of 1 station of Combani 1950 adjustment held fixed. |
|
736
|
|
|
* Derived by adjustment of GPS-observed network which was constrained to Combani 1950 coordinates of one station. |
|
737
|
|
|
*/ |
|
738
|
|
|
public const EPSG_CADASTRE_1997 = 'urn:ogc:def:datum:EPSG::1037'; |
|
739
|
|
|
|
|
740
|
|
|
/** |
|
741
|
|
|
* Cagliari 1956 |
|
742
|
|
|
* Type: Vertical |
|
743
|
|
|
* Extent: Italy - Sardinia onshore |
|
744
|
|
|
* Mean Sea Level at Cagliari 1955-1957. |
|
745
|
|
|
* Orthometric heights. |
|
746
|
|
|
*/ |
|
747
|
|
|
public const EPSG_CAGLIARI_1956 = 'urn:ogc:def:datum:EPSG::1307'; |
|
748
|
|
|
|
|
749
|
|
|
/** |
|
750
|
|
|
* Cais da Figueirinha |
|
751
|
|
|
* Type: Vertical |
|
752
|
|
|
* Extent: Portugal - central Azores - Terceira island onshore |
|
753
|
|
|
* Mean Sea Level during 1951 at Cais da Figueirinha, Angra do Heroísmo. |
|
754
|
|
|
* Orthometric heights. |
|
755
|
|
|
*/ |
|
756
|
|
|
public const EPSG_CAIS_DA_FIGUEIRINHA = 'urn:ogc:def:datum:EPSG::1107'; |
|
757
|
|
|
|
|
758
|
|
|
/** |
|
759
|
|
|
* Cais da Madalena |
|
760
|
|
|
* Type: Vertical |
|
761
|
|
|
* Extent: Portugal - central Azores - Pico island onshore |
|
762
|
|
|
* Mean Sea Level during 1937 at Cais da Madalena. |
|
763
|
|
|
* Orthometric heights. |
|
764
|
|
|
*/ |
|
765
|
|
|
public const EPSG_CAIS_DA_MADALENA = 'urn:ogc:def:datum:EPSG::1105'; |
|
766
|
|
|
|
|
767
|
|
|
/** |
|
768
|
|
|
* Cais da Pontinha |
|
769
|
|
|
* Type: Vertical |
|
770
|
|
|
* Extent: Portugal - Madeira and Desertas islands - onshore |
|
771
|
|
|
* Mean Sea Level during 1913 at Cais da Pontinha, Funchal. |
|
772
|
|
|
* Orthometric heights. |
|
773
|
|
|
*/ |
|
774
|
|
|
public const EPSG_CAIS_DA_PONTINHA = 'urn:ogc:def:datum:EPSG::1101'; |
|
775
|
|
|
|
|
776
|
|
|
/** |
|
777
|
|
|
* Cais da Vila |
|
778
|
|
|
* Type: Vertical |
|
779
|
|
|
* Extent: Portugal - Porto Santo island (Madeira archipelago) onshore |
|
780
|
|
|
* Mean Sea Level during 1936 at Cais da Vila, Porto Santo. |
|
781
|
|
|
* Orthometric heights. |
|
782
|
|
|
*/ |
|
783
|
|
|
public const EPSG_CAIS_DA_VILA = 'urn:ogc:def:datum:EPSG::1102'; |
|
784
|
|
|
|
|
785
|
|
|
/** |
|
786
|
|
|
* Cais da Vila do Porto |
|
787
|
|
|
* Type: Vertical |
|
788
|
|
|
* Extent: Portugal - eastern Azores onshore - Santa Maria, Formigas |
|
789
|
|
|
* Mean Sea Level during 1965 at Cais da Vila, Porto. |
|
790
|
|
|
* Orthometric heights. |
|
791
|
|
|
*/ |
|
792
|
|
|
public const EPSG_CAIS_DA_VILA_DO_PORTO = 'urn:ogc:def:datum:EPSG::1109'; |
|
793
|
|
|
|
|
794
|
|
|
/** |
|
795
|
|
|
* Cais das Velas |
|
796
|
|
|
* Type: Vertical |
|
797
|
|
|
* Extent: Portugal - central Azores - Sao Jorge island onshore |
|
798
|
|
|
* Mean Sea Level during 1937 at Cais das Velas. |
|
799
|
|
|
* Orthometric heights. |
|
800
|
|
|
*/ |
|
801
|
|
|
public const EPSG_CAIS_DAS_VELAS = 'urn:ogc:def:datum:EPSG::1103'; |
|
802
|
|
|
|
|
803
|
|
|
/** |
|
804
|
|
|
* Camacupa 1948 |
|
805
|
|
|
* Type: Geodetic |
|
806
|
|
|
* Extent: Angola - Angola proper |
|
807
|
|
|
* Fundamental point: Campo de Aviaçao. Latitude: 12°01'09.070"S, Longitude = 17°27'19.800"E (of Greenwich). |
|
808
|
|
|
* Provisional adjustment, replaced in 2015 for onshore use by Camacupa 2015. |
|
809
|
|
|
*/ |
|
810
|
|
|
public const EPSG_CAMACUPA_1948 = 'urn:ogc:def:datum:EPSG::6220'; |
|
811
|
|
|
|
|
812
|
|
|
/** |
|
813
|
|
|
* Camacupa 2015 |
|
814
|
|
|
* Type: Geodetic |
|
815
|
|
|
* Extent: Angola |
|
816
|
|
|
* Fundamental point: Campo de Aviaçao. Latitude: 12°01'08.702"S, Longitude = 17°27'19.515"E (of Greenwich). |
|
817
|
|
|
* Second adjustment. Not used for offshore oil and gas exploration and production. |
|
818
|
|
|
*/ |
|
819
|
|
|
public const EPSG_CAMACUPA_2015 = 'urn:ogc:def:datum:EPSG::1217'; |
|
820
|
|
|
|
|
821
|
|
|
/** |
|
822
|
|
|
* Camp Area Astro |
|
823
|
|
|
* Type: Geodetic |
|
824
|
|
|
* Extent: Antarctica - McMurdo Sound, Camp McMurdo area. |
|
825
|
|
|
*/ |
|
826
|
|
|
public const EPSG_CAMP_AREA_ASTRO = 'urn:ogc:def:datum:EPSG::6715'; |
|
827
|
|
|
|
|
828
|
|
|
/** |
|
829
|
|
|
* Campo Inchauspe |
|
830
|
|
|
* Type: Geodetic |
|
831
|
|
|
* Extent: Argentina - mainland onshore and Atlantic offshore Tierra del Fuego |
|
832
|
|
|
* Fundamental point: Campo Inchauspe. Latitude: 35°58'16.56"S, longitude: 62°10'12.03"W (of Greenwich). |
|
833
|
|
|
*/ |
|
834
|
|
|
public const EPSG_CAMPO_INCHAUSPE = 'urn:ogc:def:datum:EPSG::6221'; |
|
835
|
|
|
|
|
836
|
|
|
/** |
|
837
|
|
|
* Canadian Geodetic Vertical Datum of 1928 |
|
838
|
|
|
* Type: Vertical |
|
839
|
|
|
* Extent: Canada - onshore - Alberta; British Columbia; Manitoba south of 59°N; New Brunswick; Newfoundland, |
|
840
|
|
|
* Labrador between 52°50’N and 54°30’N; Northwest Territories south west of a line between 60°40’N, |
|
841
|
|
|
* 110°W and the coast at 132°W; Nova Scotia; Ontario south of 52°20'N; Prince Edward Island; Quebec - mainland |
|
842
|
|
|
* south of 55°N and west of 64°W, north of 55°N between 70°W and 66°W, coastal area between 66°W and 64°W, |
|
843
|
|
|
* and Anticosta island; Saskatchewan south of 58°30’N; Yukon |
|
844
|
|
|
* Based on the mean sea level determined from several tidal gauges located in strategic areas of the country. |
|
845
|
|
|
* Supplemented by CGVD28(HTv2.0) (datum code 1384) outside area where levelling network exists. From November 2013 |
|
846
|
|
|
* replaced by CGVD2013 (datum code 1127). |
|
847
|
|
|
*/ |
|
848
|
|
|
public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_1928 = 'urn:ogc:def:datum:EPSG::5114'; |
|
849
|
|
|
|
|
850
|
|
|
/** |
|
851
|
|
|
* Canadian Geodetic Vertical Datum of 1928 (Height Transformation version 2.0) |
|
852
|
|
|
* Type: Vertical |
|
853
|
|
|
* Extent: Canada between 41°N and 84°N and west of 48°W - Alberta; British Columbia; Manitoba; New Brunswick; |
|
854
|
|
|
* Newfoundland and Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; |
|
855
|
|
|
* Saskatchewan; Yukon |
|
856
|
|
|
* Derived from CGG2000 gravimetric geoid fitted to 1926 benchmarks with CGVD28 levellng-based heights and |
|
857
|
|
|
* NAD83(CSRS)v3 ellipsoid heights at epoch 1997.00. Defined by the hybrid geoid model HTv2.0 (Height |
|
858
|
|
|
* Transformation version 2.0). |
|
859
|
|
|
* Orthometric heights. Defines CGVD28 where the CGVD28 levelling-based network (datum code 5114) does not exist. |
|
860
|
|
|
* Defines CGVD28(HTv2.0) throughout the HTv2.0 coverage. Both CGVD28 and CGVD28(HTv2.0) replaced by CGVD2013 |
|
861
|
|
|
* (datum code 1127). |
|
862
|
|
|
*/ |
|
863
|
|
|
public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_1928_HEIGHT_TRANSFORMATION_VERSION_2_0 = 'urn:ogc:def:datum:EPSG::1384'; |
|
864
|
|
|
|
|
865
|
|
|
/** |
|
866
|
|
|
* Canadian Geodetic Vertical Datum of 2013 (CGG2013) |
|
867
|
|
|
* Type: Vertical |
|
868
|
|
|
* Extent: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest |
|
869
|
|
|
* Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon |
|
870
|
|
|
* Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean |
|
871
|
|
|
* sea level for North America, realized through the Canadian gravimetric geoid (CGG) 2013 at epoch 2010.0. |
|
872
|
|
|
* Replaces CGVD28 from November 2013. Replaced by CGVD2013(CGG2013a) epoch 2010 from December 2015, supplemented |
|
873
|
|
|
* from February 2021 by snapshots of CGVD2013(CGG2013a) at epochs 1997.0 and 2002.0 (aligned with NAD83(CSRS) |
|
874
|
|
|
* realization epochs). |
|
875
|
|
|
*/ |
|
876
|
|
|
public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013 = 'urn:ogc:def:datum:EPSG::1127'; |
|
877
|
|
|
|
|
878
|
|
|
/** |
|
879
|
|
|
* Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 1997 |
|
880
|
|
|
* Type: Vertical |
|
881
|
|
|
* Extent: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest |
|
882
|
|
|
* Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon |
|
883
|
|
|
* Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean |
|
884
|
|
|
* sea level for North America, realized through the Canadian gravimetric geoid 2013a applied at epoch 1997.0. |
|
885
|
|
|
* CGVD2013(CGG2013a) is a static datum; however, heights referenced to it change with time, primarily due to |
|
886
|
|
|
* glacial isostasy. This datum supports CGVD2013(CGG2013a) heights at epoch 1997.0. Other snapshots are at epochs |
|
887
|
|
|
* 2002.0 and 2010.0. |
|
888
|
|
|
*/ |
|
889
|
|
|
public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A_EPOCH_1997 = 'urn:ogc:def:datum:EPSG::1326'; |
|
890
|
|
|
|
|
891
|
|
|
/** |
|
892
|
|
|
* Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 2002 |
|
893
|
|
|
* Type: Vertical |
|
894
|
|
|
* Extent: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest |
|
895
|
|
|
* Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon |
|
896
|
|
|
* Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean |
|
897
|
|
|
* sea level for North America, realized through the Canadian gravimetric geoid 2013a applied at epoch 2002. |
|
898
|
|
|
* CGVD2013(CGG2013a) is a static datum; however, heights referenced to it change with time, primarily due to |
|
899
|
|
|
* glacial isostasy. This datum supports CGVD2013(CGG2013a) heights at epoch 2002.0. Other snapshots are at epochs |
|
900
|
|
|
* 1997.0 and 2010.0. |
|
901
|
|
|
*/ |
|
902
|
|
|
public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A_EPOCH_2002 = 'urn:ogc:def:datum:EPSG::1325'; |
|
903
|
|
|
|
|
904
|
|
|
/** |
|
905
|
|
|
* Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 2010 |
|
906
|
|
|
* Type: Vertical |
|
907
|
|
|
* Extent: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest |
|
908
|
|
|
* Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon |
|
909
|
|
|
* Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean |
|
910
|
|
|
* sea level for North America, realized through CGG2013a at epoch 2010.0. Geoid velocity defined as zero with |
|
911
|
|
|
* respect to NAD83(CSRS). |
|
912
|
|
|
* Replaces CGVD2013(CGG2013). CGVD2013(CGG2013a) is a static datum. However heights referenced to it change with |
|
913
|
|
|
* time, primarily due to glacial isostasy. In practice static snapshots are used at epochs 2010.0 (this datum), |
|
914
|
|
|
* 2002.0 and 1997.0. |
|
915
|
|
|
*/ |
|
916
|
|
|
public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A_EPOCH_2010 = 'urn:ogc:def:datum:EPSG::1256'; |
|
917
|
|
|
|
|
918
|
|
|
/** |
|
919
|
|
|
* Cape |
|
920
|
|
|
* Type: Geodetic |
|
921
|
|
|
* Extent: Botswana; Eswatini (Swaziland); Lesotho; South Africa - mainland |
|
922
|
|
|
* Fundamental point: Buffelsfontein. Latitude: 33°59'32.000"S, longitude: 25°30'44.622"E (of Greenwich). |
|
923
|
|
|
*/ |
|
924
|
|
|
public const EPSG_CAPE = 'urn:ogc:def:datum:EPSG::6222'; |
|
925
|
|
|
|
|
926
|
|
|
/** |
|
927
|
|
|
* Cape Canaveral |
|
928
|
|
|
* Type: Geodetic |
|
929
|
|
|
* Extent: North America - onshore - Bahamas and USA - Florida (east) |
|
930
|
|
|
* Fundamental point: Central 1950. Latitude: 28°29'32.36555"N, longitude 80°34'38.77362"W (of Greenwich). |
|
931
|
|
|
*/ |
|
932
|
|
|
public const EPSG_CAPE_CANAVERAL = 'urn:ogc:def:datum:EPSG::6717'; |
|
933
|
|
|
|
|
934
|
|
|
/** |
|
935
|
|
|
* Carthage |
|
936
|
|
|
* Type: Geodetic |
|
937
|
|
|
* Extent: Tunisia |
|
938
|
|
|
* Fundamental point: Carthage. Latitude: 40.9464506g = 36°51'06.50"N, longitude: 8.8724368g E of Paris = |
|
939
|
|
|
* 10°19'20.72"E (of Greenwich). |
|
940
|
|
|
* Fundamental point astronomic coordinates determined in 1878. |
|
941
|
|
|
*/ |
|
942
|
|
|
public const EPSG_CARTHAGE = 'urn:ogc:def:datum:EPSG::6223'; |
|
943
|
|
|
|
|
944
|
|
|
/** |
|
945
|
|
|
* Carthage (Paris) |
|
946
|
|
|
* Type: Geodetic |
|
947
|
|
|
* Extent: Tunisia - onshore |
|
948
|
|
|
* Fundamental point: Carthage. Latitude: 40.9464506g N, longitude: 8.8724368g E (of Paris). |
|
949
|
|
|
* Fundamental point astronomic coordinates determined in 1878. |
|
950
|
|
|
*/ |
|
951
|
|
|
public const EPSG_CARTHAGE_PARIS = 'urn:ogc:def:datum:EPSG::6816'; |
|
952
|
|
|
|
|
953
|
|
|
/** |
|
954
|
|
|
* Cascais |
|
955
|
|
|
* Type: Vertical |
|
956
|
|
|
* Extent: Portugal - mainland - onshore |
|
957
|
|
|
* Mean Sea Level at Cascais 1938. |
|
958
|
|
|
* Orthometric heights. |
|
959
|
|
|
*/ |
|
960
|
|
|
public const EPSG_CASCAIS = 'urn:ogc:def:datum:EPSG::5178'; |
|
961
|
|
|
|
|
962
|
|
|
/** |
|
963
|
|
|
* Caspian Sea |
|
964
|
|
|
* Type: Vertical |
|
965
|
|
|
* Extent: Azerbaijan - offshore; Kazakhstan - offshore; Russia - Caspian Sea; Turkmenistan - offshore |
|
966
|
|
|
* Defined as -28.0m Baltic datum. |
|
967
|
|
|
*/ |
|
968
|
|
|
public const EPSG_CASPIAN_SEA = 'urn:ogc:def:datum:EPSG::5106'; |
|
969
|
|
|
|
|
970
|
|
|
/** |
|
971
|
|
|
* Catania 1965 |
|
972
|
|
|
* Type: Vertical |
|
973
|
|
|
* Extent: Italy - Sicily onshore |
|
974
|
|
|
* Mean Sea Level at Catania in 1965. |
|
975
|
|
|
* Orthometric heights. |
|
976
|
|
|
*/ |
|
977
|
|
|
public const EPSG_CATANIA_1965 = 'urn:ogc:def:datum:EPSG::1306'; |
|
978
|
|
|
|
|
979
|
|
|
/** |
|
980
|
|
|
* Cayman Brac Vertical Datum 1961 |
|
981
|
|
|
* Type: Vertical |
|
982
|
|
|
* Extent: Cayman Islands - Cayman Brac. |
|
983
|
|
|
*/ |
|
984
|
|
|
public const EPSG_CAYMAN_BRAC_VERTICAL_DATUM_1961 = 'urn:ogc:def:datum:EPSG::1099'; |
|
985
|
|
|
|
|
986
|
|
|
/** |
|
987
|
|
|
* Cayman Islands Geodetic Datum 2011 |
|
988
|
|
|
* Type: Geodetic |
|
989
|
|
|
* Extent: Cayman Islands. Includes Grand Cayman, Little Cayman and Cayman Brac |
|
990
|
|
|
* ITRF2005 at epoch 2011.0 |
|
991
|
|
|
* Replaces GCGD59 (datum code 6723) and SIGD61 (datum code 6726). |
|
992
|
|
|
*/ |
|
993
|
|
|
public const EPSG_CAYMAN_ISLANDS_GEODETIC_DATUM_2011 = 'urn:ogc:def:datum:EPSG::1100'; |
|
994
|
|
|
|
|
995
|
|
|
/** |
|
996
|
|
|
* Centre Spatial Guyanais 1967 |
|
997
|
|
|
* Type: Geodetic |
|
998
|
|
|
* Extent: French Guiana - coastal area |
|
999
|
|
|
* Fundamental point: Kourou-Diane. Latitude: 5°15'53.699"N, longitude: 52°48'09.149"W (of Greenwich). |
|
1000
|
|
|
* Replaced by RGFG95 (code 6624). |
|
1001
|
|
|
*/ |
|
1002
|
|
|
public const EPSG_CENTRE_SPATIAL_GUYANAIS_1967 = 'urn:ogc:def:datum:EPSG::6623'; |
|
1003
|
|
|
|
|
1004
|
|
|
/** |
|
1005
|
|
|
* Ceuta 2 |
|
1006
|
|
|
* Type: Vertical |
|
1007
|
|
|
* Extent: Spain - Ceuta onshore |
|
1008
|
|
|
* Mean Sea Level at Ceuta harbour between March 1944 and December 2006. |
|
1009
|
|
|
* Orthometric heights. Replaces an earlier vertical datum in Ceuta harbour measured between 1908 and 1927. |
|
1010
|
|
|
*/ |
|
1011
|
|
|
public const EPSG_CEUTA_2 = 'urn:ogc:def:datum:EPSG::1285'; |
|
1012
|
|
|
|
|
1013
|
|
|
/** |
|
1014
|
|
|
* Chart Datum Portugal |
|
1015
|
|
|
* Type: Vertical |
|
1016
|
|
|
* Extent: Portugal - offshore |
|
1017
|
|
|
* ZH is located below the level of the Lowest Astronomical Tide (LAT). |
|
1018
|
|
|
* . |
|
1019
|
|
|
*/ |
|
1020
|
|
|
public const EPSG_CHART_DATUM_PORTUGAL = 'urn:ogc:def:datum:EPSG::1361'; |
|
1021
|
|
|
|
|
1022
|
|
|
/** |
|
1023
|
|
|
* Chart Datum UK & Ireland VORF08 |
|
1024
|
|
|
* Type: Vertical |
|
1025
|
|
|
* Extent: Ireland and UK (including Isle of Man and Channel Islands) - inshore, nearshore and offshore |
|
1026
|
|
|
* CD UK & Ireland VORF08 is defined by the Vertical Offshore Reference Frame v2.11 2008. |
|
1027
|
|
|
* By international agreement, Chart Datum is defined as a level so low that the tide will not frequently fall |
|
1028
|
|
|
* below it. In the United Kingdom and Ireland, this level is normally the level of approximate Lowest Astronomical |
|
1029
|
|
|
* Tide. |
|
1030
|
|
|
*/ |
|
1031
|
|
|
public const EPSG_CHART_DATUM_UK_AND_IRELAND_VORF08 = 'urn:ogc:def:datum:EPSG::1331'; |
|
1032
|
|
|
|
|
1033
|
|
|
/** |
|
1034
|
|
|
* Chatham Islands Datum 1971 |
|
1035
|
|
|
* Type: Geodetic |
|
1036
|
|
|
* Extent: New Zealand - Chatham Islands group - onshore |
|
1037
|
|
|
* Replaced by Chatham Islands Datum 1979 (code 6673). |
|
1038
|
|
|
*/ |
|
1039
|
|
|
public const EPSG_CHATHAM_ISLANDS_DATUM_1971 = 'urn:ogc:def:datum:EPSG::6672'; |
|
1040
|
|
|
|
|
1041
|
|
|
/** |
|
1042
|
|
|
* Chatham Islands Datum 1979 |
|
1043
|
|
|
* Type: Geodetic |
|
1044
|
|
|
* Extent: New Zealand - Chatham Islands group - onshore |
|
1045
|
|
|
* Fundamental point: station Astro. Latitude: 43°57'23.60"S, longitude: 176°34'28.65"W (of Greenwich). |
|
1046
|
|
|
* Replaces Chatham Islands Datum 1971 (code 6672). Replaced by New Zealand Geodetic Datum 2000 (code 6167) from |
|
1047
|
|
|
* March 2000. |
|
1048
|
|
|
*/ |
|
1049
|
|
|
public const EPSG_CHATHAM_ISLANDS_DATUM_1979 = 'urn:ogc:def:datum:EPSG::6673'; |
|
1050
|
|
|
|
|
1051
|
|
|
/** |
|
1052
|
|
|
* China 2000 |
|
1053
|
|
|
* Type: Geodetic |
|
1054
|
|
|
* Extent: China |
|
1055
|
|
|
* ITRF97 at epoch 2000.0 |
|
1056
|
|
|
* Combined adjustment of astro-geodetic observations as used for Xian 1980 and GPS control network observed |
|
1057
|
|
|
* 2000-2003. Adopted July 2008. |
|
1058
|
|
|
*/ |
|
1059
|
|
|
public const EPSG_CHINA_2000 = 'urn:ogc:def:datum:EPSG::1043'; |
|
1060
|
|
|
|
|
1061
|
|
|
/** |
|
1062
|
|
|
* Chos Malal 1914 |
|
1063
|
|
|
* Type: Geodetic |
|
1064
|
|
|
* Extent: Argentina - Mendoza province, Neuquen province, western La Pampa province and western Rio Negro province |
|
1065
|
|
|
* Chos Malal police station. |
|
1066
|
|
|
* Also known as Quini-Huao. Replaced by Campo Inchauspe (code 6221) for topographic mapping, use for oil |
|
1067
|
|
|
* exploration and production continues. |
|
1068
|
|
|
*/ |
|
1069
|
|
|
public const EPSG_CHOS_MALAL_1914 = 'urn:ogc:def:datum:EPSG::6160'; |
|
1070
|
|
|
|
|
1071
|
|
|
/** |
|
1072
|
|
|
* Chua |
|
1073
|
|
|
* Type: Geodetic |
|
1074
|
|
|
* Extent: Brazil - south of 18°S and west of 54°W, plus Distrito Federal. Paraguay - north |
|
1075
|
|
|
* Fundamental point: Chua. Latitude: 19°45'41.160"S, longitude: 48°06'07.560"W (of Greenwich). |
|
1076
|
|
|
* The Chua origin and associated network is in Brazil with a connecting traverse through northern Paraguay. It was |
|
1077
|
|
|
* used in Brazil only as input into the Corrego Allegre adjustment and for government work in Distrito Federal. |
|
1078
|
|
|
*/ |
|
1079
|
|
|
public const EPSG_CHUA = 'urn:ogc:def:datum:EPSG::6224'; |
|
1080
|
|
|
|
|
1081
|
|
|
/** |
|
1082
|
|
|
* Cocos Islands 1965 |
|
1083
|
|
|
* Type: Geodetic |
|
1084
|
|
|
* Extent: Cocos (Keeling) Islands - onshore |
|
1085
|
|
|
* Fundamental point: Anna 1. |
|
1086
|
|
|
*/ |
|
1087
|
|
|
public const EPSG_COCOS_ISLANDS_1965 = 'urn:ogc:def:datum:EPSG::6708'; |
|
1088
|
|
|
|
|
1089
|
|
|
/** |
|
1090
|
|
|
* Combani 1950 |
|
1091
|
|
|
* Type: Geodetic |
|
1092
|
|
|
* Extent: Mayotte - onshore |
|
1093
|
|
|
* Combani South Base. |
|
1094
|
|
|
* Replaced by RGM04 and Cadastre 1997 (datum codes 1036-37). |
|
1095
|
|
|
*/ |
|
1096
|
|
|
public const EPSG_COMBANI_1950 = 'urn:ogc:def:datum:EPSG::6632'; |
|
1097
|
|
|
|
|
1098
|
|
|
/** |
|
1099
|
|
|
* Conakry 1905 |
|
1100
|
|
|
* Type: Geodetic |
|
1101
|
|
|
* Extent: Guinea - onshore |
|
1102
|
|
|
* Fundamental point: Conakry. Latitude: 10.573766g N, longitude: 17.833682g W (of Paris). |
|
1103
|
|
|
*/ |
|
1104
|
|
|
public const EPSG_CONAKRY_1905 = 'urn:ogc:def:datum:EPSG::6315'; |
|
1105
|
|
|
|
|
1106
|
|
|
/** |
|
1107
|
|
|
* Congo 1960 Pointe Noire |
|
1108
|
|
|
* Type: Geodetic |
|
1109
|
|
|
* Extent: Congo |
|
1110
|
|
|
* Fundamental point: Point Noire Astro. Latitude: 4°47'00.10"S, longitude: 11°51'01.55"E (of Greenwich). |
|
1111
|
|
|
*/ |
|
1112
|
|
|
public const EPSG_CONGO_1960_POINTE_NOIRE = 'urn:ogc:def:datum:EPSG::6282'; |
|
1113
|
|
|
|
|
1114
|
|
|
/** |
|
1115
|
|
|
* Constanta |
|
1116
|
|
|
* Type: Vertical |
|
1117
|
|
|
* Extent: Romania - onshore |
|
1118
|
|
|
* Mean Sea Level at Constanta. |
|
1119
|
|
|
* Normal-orthometric heights. |
|
1120
|
|
|
*/ |
|
1121
|
|
|
public const EPSG_CONSTANTA = 'urn:ogc:def:datum:EPSG::5179'; |
|
1122
|
|
|
|
|
1123
|
|
|
/** |
|
1124
|
|
|
* Copenhagen Commune Intermediate Datum |
|
1125
|
|
|
* Type: Geodetic |
|
1126
|
|
|
* Extent: Denmark - onshore - Copenhagen and surrounding area |
|
1127
|
|
|
* Arbitrary origin, apparently based on monument coordinates given in the Generalstabens System. |
|
1128
|
|
|
* Created in 2022 to support intermediate CRS KK-IRF in the transformation of coordinates between the historic |
|
1129
|
|
|
* Copenhagen Commune CRS and ETRS89. The data are reconstructions based on information synthesized in historical |
|
1130
|
|
|
* empirical transformations to ED50. |
|
1131
|
|
|
*/ |
|
1132
|
|
|
public const EPSG_COPENHAGEN_COMMUNE_INTERMEDIATE_DATUM = 'urn:ogc:def:datum:EPSG::1349'; |
|
1133
|
|
|
|
|
1134
|
|
|
/** |
|
1135
|
|
|
* Corrego Alegre 1961 |
|
1136
|
|
|
* Type: Geodetic |
|
1137
|
|
|
* Extent: Brazil - onshore - between 18°S and 27°30'S, also east of 54°W between 15°S and 18°S |
|
1138
|
|
|
* Fundamental point: Corrego Alegre. Latitude: 19°50'14.91"S, longitude: 48°57'41.98"W (of Greenwich). |
|
1139
|
|
|
* Replaced by Corrego Alegre 1970-72 (datum code 6225). NIMA gives coordinates of origin as latitude: |
|
1140
|
|
|
* 19°50'15.14"S, longitude: 48°57'42.75"W. |
|
1141
|
|
|
*/ |
|
1142
|
|
|
public const EPSG_CORREGO_ALEGRE_1961 = 'urn:ogc:def:datum:EPSG::1074'; |
|
1143
|
|
|
|
|
1144
|
|
|
/** |
|
1145
|
|
|
* Corrego Alegre 1970-72 |
|
1146
|
|
|
* Type: Geodetic |
|
1147
|
|
|
* Extent: Brazil - onshore - west of 54°W and south of 18°S; also south of 15°S between 54°W and 42°W; also |
|
1148
|
|
|
* east of 42°W |
|
1149
|
|
|
* Fundamental point: Corrego Alegre. Latitude: 19°50'14.91"S, longitude: 48°57'41.98"W (of Greenwich). |
|
1150
|
|
|
* Replaces 1961 adjustment (datum code 1074). Superseded by SAD69. NIMA gives coordinates of origin as latitude: |
|
1151
|
|
|
* 19°50'15.14"S, longitude: 48°57'42.75"W; these may refer to 1961 adjustment. |
|
1152
|
|
|
*/ |
|
1153
|
|
|
public const EPSG_CORREGO_ALEGRE_1970_72 = 'urn:ogc:def:datum:EPSG::6225'; |
|
1154
|
|
|
|
|
1155
|
|
|
/** |
|
1156
|
|
|
* Costa Rica 2005 |
|
1157
|
|
|
* Type: Geodetic |
|
1158
|
|
|
* Extent: Costa Rica |
|
1159
|
|
|
* ITRF2000 at epoch 2005.83. Network of 34 GPS stations throughout the country, five of which were connected to |
|
1160
|
|
|
* four Caribbean area ITRF stations. |
|
1161
|
|
|
* Replaces Ocotepeque (datum code 1070) in Costa Rica from March 2007. |
|
1162
|
|
|
*/ |
|
1163
|
|
|
public const EPSG_COSTA_RICA_2005 = 'urn:ogc:def:datum:EPSG::1065'; |
|
1164
|
|
|
|
|
1165
|
|
|
/** |
|
1166
|
|
|
* Croatian Terrestrial Reference System |
|
1167
|
|
|
* Type: Geodetic |
|
1168
|
|
|
* Extent: Croatia |
|
1169
|
|
|
* Densification of ETRS89 in Croatia at epoch 1995.55. |
|
1170
|
|
|
* Based on 78 control points with coordinates determined in ETRS89. |
|
1171
|
|
|
*/ |
|
1172
|
|
|
public const EPSG_CROATIAN_TERRESTRIAL_REFERENCE_SYSTEM = 'urn:ogc:def:datum:EPSG::6761'; |
|
1173
|
|
|
|
|
1174
|
|
|
/** |
|
1175
|
|
|
* Croatian Vertical Reference Datum 1971 |
|
1176
|
|
|
* Type: Vertical |
|
1177
|
|
|
* Extent: Croatia - onshore |
|
1178
|
|
|
* Mean sea level at five tide gauges in Dubrovnik, Split, Bakar, Rovinj and Kopar at epoch 1971.5 |
|
1179
|
|
|
* Replaces Trieste (datum code 1050). |
|
1180
|
|
|
*/ |
|
1181
|
|
|
public const EPSG_CROATIAN_VERTICAL_REFERENCE_DATUM_1971 = 'urn:ogc:def:datum:EPSG::5207'; |
|
1182
|
|
|
|
|
1183
|
|
|
/** |
|
1184
|
|
|
* Cyprus Geodetic Reference System 1993 |
|
1185
|
|
|
* Type: Geodetic |
|
1186
|
|
|
* Extent: Cyprus - onshore |
|
1187
|
|
|
* Station Chionistra (Mount Troodos). Network scale and orientation determined by connection of six stations to |
|
1188
|
|
|
* ITRF91 in Europe at epoch 1993.1. |
|
1189
|
|
|
* Survey plans and maps produced by DLS after 1993. |
|
1190
|
|
|
*/ |
|
1191
|
|
|
public const EPSG_CYPRUS_GEODETIC_REFERENCE_SYSTEM_1993 = 'urn:ogc:def:datum:EPSG::1112'; |
|
1192
|
|
|
|
|
1193
|
|
|
/** |
|
1194
|
|
|
* DIBA15 Intermediate Reference Frame |
|
1195
|
|
|
* Type: Geodetic |
|
1196
|
|
|
* Extent: UK - on or related to the rail route from Didcot to Banbury |
|
1197
|
|
|
* Defined through the application of the DIBA15 NTv2 transformation (code 10205) to ETRS89 as realized through |
|
1198
|
|
|
* OSNet v2009 CORS. |
|
1199
|
|
|
* Created in 2022 to support intermediate CRS DIBA15-IRF in the emulation of the DIBA15 Snake map projection. |
|
1200
|
|
|
*/ |
|
1201
|
|
|
public const EPSG_DIBA15_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1339'; |
|
1202
|
|
|
|
|
1203
|
|
|
/** |
|
1204
|
|
|
* Dabola 1981 |
|
1205
|
|
|
* Type: Geodetic |
|
1206
|
|
|
* Extent: Guinea - onshore. |
|
1207
|
|
|
*/ |
|
1208
|
|
|
public const EPSG_DABOLA_1981 = 'urn:ogc:def:datum:EPSG::6155'; |
|
1209
|
|
|
|
|
1210
|
|
|
/** |
|
1211
|
|
|
* Danger 1950 |
|
1212
|
|
|
* Type: Vertical |
|
1213
|
|
|
* Extent: St Pierre and Miquelon - onshore |
|
1214
|
|
|
* Marker near tide gauge at port of Saint Pierre. Height is 1.26 metres above zero of tide gauge. |
|
1215
|
|
|
*/ |
|
1216
|
|
|
public const EPSG_DANGER_1950 = 'urn:ogc:def:datum:EPSG::5190'; |
|
1217
|
|
|
|
|
1218
|
|
|
/** |
|
1219
|
|
|
* Dansk Normal Nul |
|
1220
|
|
|
* Type: Vertical |
|
1221
|
|
|
* Extent: Denmark - onshore |
|
1222
|
|
|
* Mean Sea Level at 10 gauges. |
|
1223
|
|
|
* Orthometric heights. |
|
1224
|
|
|
*/ |
|
1225
|
|
|
public const EPSG_DANSK_NORMAL_NUL = 'urn:ogc:def:datum:EPSG::5132'; |
|
1226
|
|
|
|
|
1227
|
|
|
/** |
|
1228
|
|
|
* Dansk Vertikal Reference 1990 (2000) |
|
1229
|
|
|
* Type: Vertical |
|
1230
|
|
|
* Extent: Denmark - onshore |
|
1231
|
|
|
* Benchmark at Århus cathedral referenced to mean sea level determined during 1990 at 10 tide gauges: Esbjerg, |
|
1232
|
|
|
* Fredericia, Frederikshavn, Gedser, Hirtshals, Hornbæk, Korsør, København, Slipshavn and Århus. |
|
1233
|
|
|
* Helmert orthometric heights. First realization of DVR90, based on levelling. |
|
1234
|
|
|
*/ |
|
1235
|
|
|
public const EPSG_DANSK_VERTIKAL_REFERENCE_1990_2000 = 'urn:ogc:def:datum:EPSG::5206'; |
|
1236
|
|
|
|
|
1237
|
|
|
/** |
|
1238
|
|
|
* Dansk Vertikal Reference 1990 (2002) |
|
1239
|
|
|
* Type: Vertical |
|
1240
|
|
|
* Extent: Denmark - onshore |
|
1241
|
|
|
* Benchmark at Århus cathedral referenced to mean sea level determined during 1990 at 10 tide gauges: Esbjerg, |
|
1242
|
|
|
* Fredericia, Frederikshavn, Gedser, Hirtshals, Hornbæk, Korsør, København, Slipshavn and Århus. |
|
1243
|
|
|
* First geoid-based realization of DVR90. Replaced by DVR90(2013). |
|
1244
|
|
|
*/ |
|
1245
|
|
|
public const EPSG_DANSK_VERTIKAL_REFERENCE_1990_2002 = 'urn:ogc:def:datum:EPSG::1368'; |
|
1246
|
|
|
|
|
1247
|
|
|
/** |
|
1248
|
|
|
* Dansk Vertikal Reference 1990 (2013) |
|
1249
|
|
|
* Type: Vertical |
|
1250
|
|
|
* Extent: Denmark - onshore |
|
1251
|
|
|
* Benchmark at Århus cathedral referenced to mean sea level determined during 1990 at 10 tide gauges: Esbjerg, |
|
1252
|
|
|
* Fredericia, Frederikshavn, Gedser, Hirtshals, Hornbæk, Korsør, København, Slipshavn and Århus. |
|
1253
|
|
|
* Second geoid-based realization of DVR90. Replaces DVR90(2002). Replaced by DVR90(2023). |
|
1254
|
|
|
*/ |
|
1255
|
|
|
public const EPSG_DANSK_VERTIKAL_REFERENCE_1990_2013 = 'urn:ogc:def:datum:EPSG::1369'; |
|
1256
|
|
|
|
|
1257
|
|
|
/** |
|
1258
|
|
|
* Dansk Vertikal Reference 1990 (2023) |
|
1259
|
|
|
* Type: Vertical |
|
1260
|
|
|
* Extent: Denmark - onshore |
|
1261
|
|
|
* Benchmark at Århus cathedral referenced to mean sea level determined during 1990 at 10 tide gauges: Esbjerg, |
|
1262
|
|
|
* Fredericia, Frederikshavn, Gedser, Hirtshals, Hornbæk, Korsør, København, Slipshavn and Århus. |
|
1263
|
|
|
* Second geoid-based realization of DVR90. Replaces DVR90(2013). |
|
1264
|
|
|
*/ |
|
1265
|
|
|
public const EPSG_DANSK_VERTIKAL_REFERENCE_1990_2023 = 'urn:ogc:def:datum:EPSG::1370'; |
|
1266
|
|
|
|
|
1267
|
|
|
/** |
|
1268
|
|
|
* Dansk Vertikal Reference 1990 ensemble |
|
1269
|
|
|
* Type: Ensemble |
|
1270
|
|
|
* Extent: Denmark - onshore. |
|
1271
|
|
|
*/ |
|
1272
|
|
|
public const EPSG_DANSK_VERTIKAL_REFERENCE_1990_ENSEMBLE = 'urn:ogc:def:datum:EPSG::1371'; |
|
1273
|
|
|
|
|
1274
|
|
|
/** |
|
1275
|
|
|
* Datum 73 |
|
1276
|
|
|
* Type: Geodetic |
|
1277
|
|
|
* Extent: Portugal - mainland - onshore |
|
1278
|
|
|
* Fundamental point: TF4, Melrica. Latitude: 39°41'37.30"N, longitude: 8°07'53.31"W (of Greenwich). |
|
1279
|
|
|
*/ |
|
1280
|
|
|
public const EPSG_DATUM_73 = 'urn:ogc:def:datum:EPSG::6274'; |
|
1281
|
|
|
|
|
1282
|
|
|
/** |
|
1283
|
|
|
* Datum Altimetrico de Costa Rica 1952 |
|
1284
|
|
|
* Type: Vertical |
|
1285
|
|
|
* Extent: Costa Rica - onshore |
|
1286
|
|
|
* Mean Sea Level 1941-1952 at Puntarenas. |
|
1287
|
|
|
* Orthometric heights. |
|
1288
|
|
|
*/ |
|
1289
|
|
|
public const EPSG_DATUM_ALTIMETRICO_DE_COSTA_RICA_1952 = 'urn:ogc:def:datum:EPSG::1226'; |
|
1290
|
|
|
|
|
1291
|
|
|
/** |
|
1292
|
|
|
* Datum Geodesi Nasional 1995 |
|
1293
|
|
|
* Type: Geodetic |
|
1294
|
|
|
* Extent: Indonesia |
|
1295
|
|
|
* ITRF91at epoch 1992.0. |
|
1296
|
|
|
* Replaces ID74 and all older datums. |
|
1297
|
|
|
*/ |
|
1298
|
|
|
public const EPSG_DATUM_GEODESI_NASIONAL_1995 = 'urn:ogc:def:datum:EPSG::6755'; |
|
1299
|
|
|
|
|
1300
|
|
|
/** |
|
1301
|
|
|
* Dealul Piscului 1930 |
|
1302
|
|
|
* Type: Geodetic |
|
1303
|
|
|
* Extent: Romania - onshore |
|
1304
|
|
|
* Fundamental point: latitude 44°24'33.9606"N, longitude 26°06'44.8772"E (of Greenwich). |
|
1305
|
|
|
* Replaced by Pulkovo 1942(58) (datum code 6179). |
|
1306
|
|
|
*/ |
|
1307
|
|
|
public const EPSG_DEALUL_PISCULUI_1930 = 'urn:ogc:def:datum:EPSG::6316'; |
|
1308
|
|
|
|
|
1309
|
|
|
/** |
|
1310
|
|
|
* Deception Island |
|
1311
|
|
|
* Type: Geodetic |
|
1312
|
|
|
* Extent: Antarctica - South Shetland Islands - Deception Island. |
|
1313
|
|
|
*/ |
|
1314
|
|
|
public const EPSG_DECEPTION_ISLAND = 'urn:ogc:def:datum:EPSG::6736'; |
|
1315
|
|
|
|
|
1316
|
|
|
/** |
|
1317
|
|
|
* Deir ez Zor |
|
1318
|
|
|
* Type: Geodetic |
|
1319
|
|
|
* Extent: Lebanon - onshore. Syrian Arab Republic - onshore |
|
1320
|
|
|
* Fundamental point: Trig. 254 Deir. Latitude: 35°21'49.975"N, longitude: 40°05'46.770"E (of Greenwich). |
|
1321
|
|
|
*/ |
|
1322
|
|
|
public const EPSG_DEIR_EZ_ZOR = 'urn:ogc:def:datum:EPSG::6227'; |
|
1323
|
|
|
|
|
1324
|
|
|
/** |
|
1325
|
|
|
* Denmark Lowest Astronomic Tide (2023) |
|
1326
|
|
|
* Type: Vertical |
|
1327
|
|
|
* Extent: Denmark - offshore |
|
1328
|
|
|
* Mean sea level as determined by updated satellite altimetry adjusted to LAT using coastal tide gauges and |
|
1329
|
|
|
* improved global tide models. Defined with respect to ETRS89 through the dklat_2023 hydroid model. |
|
1330
|
|
|
* Replaces DKLAT(2022). |
|
1331
|
|
|
*/ |
|
1332
|
|
|
public const EPSG_DENMARK_LOWEST_ASTRONOMIC_TIDE_2023 = 'urn:ogc:def:datum:EPSG::1375'; |
|
1333
|
|
|
|
|
1334
|
|
|
/** |
|
1335
|
|
|
* Denmark Lowest Astronomical Tide |
|
1336
|
|
|
* Type: Ensemble |
|
1337
|
|
|
* Extent: Denmark - offshore |
|
1338
|
|
|
* LAT as defined through any DKLAT hydroid model without distinction. |
|
1339
|
|
|
*/ |
|
1340
|
|
|
public const EPSG_DENMARK_LOWEST_ASTRONOMICAL_TIDE = 'urn:ogc:def:datum:EPSG::1377'; |
|
1341
|
|
|
|
|
1342
|
|
|
/** |
|
1343
|
|
|
* Denmark Lowest Astronomical Tide (2022) |
|
1344
|
|
|
* Type: Vertical |
|
1345
|
|
|
* Extent: Denmark - offshore |
|
1346
|
|
|
* Mean sea level as determined by satellite altimetry adjusted to LAT using coastal tide gauges and global tide |
|
1347
|
|
|
* models. Defined with respect to ETRS89 through the dklat_2022 hydroid model. |
|
1348
|
|
|
* Replaced by DKLAT(2023). |
|
1349
|
|
|
*/ |
|
1350
|
|
|
public const EPSG_DENMARK_LOWEST_ASTRONOMICAL_TIDE_2022 = 'urn:ogc:def:datum:EPSG::1373'; |
|
1351
|
|
|
|
|
1352
|
|
|
/** |
|
1353
|
|
|
* Denmark Mean Sea Level |
|
1354
|
|
|
* Type: Ensemble |
|
1355
|
|
|
* Extent: Denmark - offshore |
|
1356
|
|
|
* MSL as defined through any DKMSL hydroid model without distinction. |
|
1357
|
|
|
*/ |
|
1358
|
|
|
public const EPSG_DENMARK_MEAN_SEA_LEVEL = 'urn:ogc:def:datum:EPSG::1376'; |
|
1359
|
|
|
|
|
1360
|
|
|
/** |
|
1361
|
|
|
* Denmark Mean Sea Level (2022) |
|
1362
|
|
|
* Type: Vertical |
|
1363
|
|
|
* Extent: Denmark - offshore |
|
1364
|
|
|
* Mean sea level as determined by satellite altimetry and coastal tide gauges. Defined with respect to ETRS89 |
|
1365
|
|
|
* through the dkmsl_2022 hydroid model. |
|
1366
|
|
|
* Replaced by DKMSL(2023). |
|
1367
|
|
|
*/ |
|
1368
|
|
|
public const EPSG_DENMARK_MEAN_SEA_LEVEL_2022 = 'urn:ogc:def:datum:EPSG::1372'; |
|
1369
|
|
|
|
|
1370
|
|
|
/** |
|
1371
|
|
|
* Denmark Mean Sea Level (2023) |
|
1372
|
|
|
* Type: Vertical |
|
1373
|
|
|
* Extent: Denmark - offshore |
|
1374
|
|
|
* Mean sea level as determined by updated satellite altimetry and coastal tide gauges. Defined with respect to |
|
1375
|
|
|
* ETRS89 through the dkmsl_2023 hydroid model. |
|
1376
|
|
|
* Replaces DKMSL(2022). |
|
1377
|
|
|
*/ |
|
1378
|
|
|
public const EPSG_DENMARK_MEAN_SEA_LEVEL_2023 = 'urn:ogc:def:datum:EPSG::1374'; |
|
1379
|
|
|
|
|
1380
|
|
|
/** |
|
1381
|
|
|
* Deutsche Bahn Reference System |
|
1382
|
|
|
* Type: Geodetic |
|
1383
|
|
|
* Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen, |
|
1384
|
|
|
* Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt, |
|
1385
|
|
|
* Schleswig-Holstein, Thuringen |
|
1386
|
|
|
* Defined by transformation from ETRS89 (transformation code 5826) to be an average of DHDN realizations across |
|
1387
|
|
|
* all German states. |
|
1388
|
|
|
* In DB_REF2016 only the vertical CRS component is updated, the geodetic CRS component of DB_REF is unchanged. |
|
1389
|
|
|
*/ |
|
1390
|
|
|
public const EPSG_DEUTSCHE_BAHN_REFERENCE_SYSTEM = 'urn:ogc:def:datum:EPSG::1081'; |
|
1391
|
|
|
|
|
1392
|
|
|
/** |
|
1393
|
|
|
* Deutsches Hauptdreiecksnetz |
|
1394
|
|
|
* Type: Geodetic |
|
1395
|
|
|
* Extent: Germany - states of former West Germany onshore - Baden-Wurtemberg, Bayern, Bremen, Hamburg, Hessen, |
|
1396
|
|
|
* Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Schleswig-Holstein |
|
1397
|
|
|
* Fundamental point: Rauenberg. Latitude: 52°27'12.021"N, longitude: 13°22'04.928"E (of Greenwich). This |
|
1398
|
|
|
* station was destroyed in 1910 and the station at Potsdam substituted as the fundamental point. |
|
1399
|
|
|
*/ |
|
1400
|
|
|
public const EPSG_DEUTSCHES_HAUPTDREIECKSNETZ = 'urn:ogc:def:datum:EPSG::6314'; |
|
1401
|
|
|
|
|
1402
|
|
|
/** |
|
1403
|
|
|
* Deutsches Haupthoehennetz 1912 |
|
1404
|
|
|
* Type: Vertical |
|
1405
|
|
|
* Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen, |
|
1406
|
|
|
* Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt, |
|
1407
|
|
|
* Schleswig-Holstein, Thuringen |
|
1408
|
|
|
* Height of reference point "Normalnullpunkt" at Berlin Observatory defined as 37.000m above MSL in 1879 |
|
1409
|
|
|
* (transferred to benchmarks near Hoppegarten in Müncheberg in 1912). Datum at Normaal Amsterdams Peil (NAP) is |
|
1410
|
|
|
* mean high tide in 1684. |
|
1411
|
|
|
* Uses Normal-orthometric heights. |
|
1412
|
|
|
*/ |
|
1413
|
|
|
public const EPSG_DEUTSCHES_HAUPTHOEHENNETZ_1912 = 'urn:ogc:def:datum:EPSG::1161'; |
|
1414
|
|
|
|
|
1415
|
|
|
/** |
|
1416
|
|
|
* Deutsches Haupthoehennetz 1985 |
|
1417
|
|
|
* Type: Vertical |
|
1418
|
|
|
* Extent: Germany - states of former West Germany onshore - Baden-Wurtemberg, Bayern, Bremen, Hamburg, Hessen, |
|
1419
|
|
|
* Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Schleswig-Holstein |
|
1420
|
|
|
* Network adjusted in 1985. Height of reference point Wallenhorst defined as value from 1928 adjustment. Datum at |
|
1421
|
|
|
* Normaal Amsterdams Peil (NAP) is mean high tide in 1684. |
|
1422
|
|
|
* Replaced by DHHN92. Uses Normal-orthometric heights. |
|
1423
|
|
|
*/ |
|
1424
|
|
|
public const EPSG_DEUTSCHES_HAUPTHOEHENNETZ_1985 = 'urn:ogc:def:datum:EPSG::5182'; |
|
1425
|
|
|
|
|
1426
|
|
|
/** |
|
1427
|
|
|
* Deutsches Haupthoehennetz 1992 |
|
1428
|
|
|
* Type: Vertical |
|
1429
|
|
|
* Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen, |
|
1430
|
|
|
* Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt, |
|
1431
|
|
|
* Schleswig-Holstein, Thuringen |
|
1432
|
|
|
* Network adjusted in 1992. Geopotential number at reference point Wallenhorst defined as value from the |
|
1433
|
|
|
* UELN-73/86 adjustment. Datum at Normaal Amsterdams Peil (NAP) is mean high tide in 1684. |
|
1434
|
|
|
* Replaces DHHN85 in West Germany and SNN76 in East Germany. Uses Normal heights. |
|
1435
|
|
|
*/ |
|
1436
|
|
|
public const EPSG_DEUTSCHES_HAUPTHOEHENNETZ_1992 = 'urn:ogc:def:datum:EPSG::5181'; |
|
1437
|
|
|
|
|
1438
|
|
|
/** |
|
1439
|
|
|
* Deutsches Haupthoehennetz 2016 |
|
1440
|
|
|
* Type: Vertical |
|
1441
|
|
|
* Extent: Germany |
|
1442
|
|
|
* 2006-2012 levelling network adjusted to 72 points of the DHHN92. Datum at Normaal Amsterdams Peil (NAP) is mean |
|
1443
|
|
|
* high tide in 1684. Extension offshore defined by the GCG2016 quasi-geoid model (CT code 9925). |
|
1444
|
|
|
* Uses Normal heights in the mean tidal system. |
|
1445
|
|
|
*/ |
|
1446
|
|
|
public const EPSG_DEUTSCHES_HAUPTHOEHENNETZ_2016 = 'urn:ogc:def:datum:EPSG::1170'; |
|
1447
|
|
|
|
|
1448
|
|
|
/** |
|
1449
|
|
|
* Diego Garcia 1969 |
|
1450
|
|
|
* Type: Geodetic |
|
1451
|
|
|
* Extent: British Indian Ocean Territory - Chagos Archipelago - Diego Garcia |
|
1452
|
|
|
* Fundamental point: ISTS 073. |
|
1453
|
|
|
*/ |
|
1454
|
|
|
public const EPSG_DIEGO_GARCIA_1969 = 'urn:ogc:def:datum:EPSG::6724'; |
|
1455
|
|
|
|
|
1456
|
|
|
/** |
|
1457
|
|
|
* DoPw22 Intermediate Reference Frame |
|
1458
|
|
|
* Type: Geodetic |
|
1459
|
|
|
* Extent: UK - on or related to the rail route from Dovey Junction to Pwllheli |
|
1460
|
|
|
* Defined through the application of the DoPw22 NTv2 transformation to ETRS89 as realized through OSNet v2009 |
|
1461
|
|
|
* CORS. |
|
1462
|
|
|
* Created in 2022 to support intermediate CRS DoPw22-IRF in the emulation of the DoPw22 Snake map projection. |
|
1463
|
|
|
*/ |
|
1464
|
|
|
public const EPSG_DOPW22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1334'; |
|
1465
|
|
|
|
|
1466
|
|
|
/** |
|
1467
|
|
|
* Dominica 1945 |
|
1468
|
|
|
* Type: Geodetic |
|
1469
|
|
|
* Extent: Dominica - onshore |
|
1470
|
|
|
* Fundamental point: station M12. |
|
1471
|
|
|
*/ |
|
1472
|
|
|
public const EPSG_DOMINICA_1945 = 'urn:ogc:def:datum:EPSG::6602'; |
|
1473
|
|
|
|
|
1474
|
|
|
/** |
|
1475
|
|
|
* Douala 1948 |
|
1476
|
|
|
* Type: Geodetic |
|
1477
|
|
|
* Extent: Cameroon - coastal area |
|
1478
|
|
|
* South pillar of Douala base; 4°00'40.64"N, 9°42'30.41"E (of Greenwich). |
|
1479
|
|
|
* Replaced by Manoca 1962 datum (code 6193). |
|
1480
|
|
|
*/ |
|
1481
|
|
|
public const EPSG_DOUALA_1948 = 'urn:ogc:def:datum:EPSG::6192'; |
|
1482
|
|
|
|
|
1483
|
|
|
/** |
|
1484
|
|
|
* Douglas |
|
1485
|
|
|
* Type: Vertical |
|
1486
|
|
|
* Extent: Isle of Man - onshore |
|
1487
|
|
|
* Mean Sea Level at Douglas 1865. Initially realised through levelling network adjustment, from 2002 redefined to |
|
1488
|
|
|
* be realised through OSGM geoid model. |
|
1489
|
|
|
* Orthometric heights. |
|
1490
|
|
|
*/ |
|
1491
|
|
|
public const EPSG_DOUGLAS = 'urn:ogc:def:datum:EPSG::5148'; |
|
1492
|
|
|
|
|
1493
|
|
|
/** |
|
1494
|
|
|
* Dunedin 1958 |
|
1495
|
|
|
* Type: Vertical |
|
1496
|
|
|
* Extent: New Zealand - South Island - between approximately 44°S and 46°S - Dunedin vertical CRS area |
|
1497
|
|
|
* MSL at Dunedin harbour 1918-1937. |
|
1498
|
|
|
*/ |
|
1499
|
|
|
public const EPSG_DUNEDIN_1958 = 'urn:ogc:def:datum:EPSG::5159'; |
|
1500
|
|
|
|
|
1501
|
|
|
/** |
|
1502
|
|
|
* Dunedin-Bluff 1960 |
|
1503
|
|
|
* Type: Vertical |
|
1504
|
|
|
* Extent: New Zealand - South Island - Dunedin-Bluff vertical CRS area |
|
1505
|
|
|
* Common adjustment of Dunedin 1958 and Bluff 1955 networks. |
|
1506
|
|
|
*/ |
|
1507
|
|
|
public const EPSG_DUNEDIN_BLUFF_1960 = 'urn:ogc:def:datum:EPSG::1040'; |
|
1508
|
|
|
|
|
1509
|
|
|
/** |
|
1510
|
|
|
* Durres |
|
1511
|
|
|
* Type: Vertical |
|
1512
|
|
|
* Extent: Albania - onshore |
|
1513
|
|
|
* Mean Sea Level at Durres. |
|
1514
|
|
|
* Normal-orthometric heights. |
|
1515
|
|
|
*/ |
|
1516
|
|
|
public const EPSG_DURRES = 'urn:ogc:def:datum:EPSG::5175'; |
|
1517
|
|
|
|
|
1518
|
|
|
/** |
|
1519
|
|
|
* EBBWV14 Intermediate Reference Frame |
|
1520
|
|
|
* Type: Geodetic |
|
1521
|
|
|
* Extent: UK - on or related to the rail route from Newport (Park Junction) to Ebbw Vale |
|
1522
|
|
|
* Defined through the application of the EBBWV14 NTv2 transformation to ETRS89 as realized through OSNet v2009 |
|
1523
|
|
|
* CORS. |
|
1524
|
|
|
* Created in 2022 to support intermediate CRS "EBBWV14-IRF" in the emulation of the EBBWV14 Snake map projection. |
|
1525
|
|
|
*/ |
|
1526
|
|
|
public const EPSG_EBBWV14_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1319'; |
|
1527
|
|
|
|
|
1528
|
|
|
/** |
|
1529
|
|
|
* ECML14 Intermediate Reference Frame |
|
1530
|
|
|
* Type: Geodetic |
|
1531
|
|
|
* Extent: UK - on or related to the east coast mainline rail route from London (Kings Cross) via Newcastle to |
|
1532
|
|
|
* Edinburgh |
|
1533
|
|
|
* Defined through the application of the ECML14 NTv2 transformation from ETRS89 as realized through OSNet v2009 |
|
1534
|
|
|
* CORS. |
|
1535
|
|
|
* Created in 2024 to support intermediate CRS "ECML14-IRF" in the emulation of the ECML14 Snake map projection. |
|
1536
|
|
|
*/ |
|
1537
|
|
|
public const EPSG_ECML14_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1385'; |
|
1538
|
|
|
|
|
1539
|
|
|
/** |
|
1540
|
|
|
* ECML14_NB Intermediate Reference Frame |
|
1541
|
|
|
* Type: Geodetic |
|
1542
|
|
|
* Extent: UK - on or related to rail routes from Newcastle Central to Ashington via Benton North Junction, and the |
|
1543
|
|
|
* section from Bedlington to Morpeth |
|
1544
|
|
|
* Defined through the application of the ECML14_NB NTv2 transformation (code 9759) to ETRS89 as realized through |
|
1545
|
|
|
* OSNet v2009 CORS. |
|
1546
|
|
|
* Created in 2021 to support intermediate CRS "ECML14_NB-IRF" in the emulation of the ECML14_NB Snake map |
|
1547
|
|
|
* projection. |
|
1548
|
|
|
*/ |
|
1549
|
|
|
public const EPSG_ECML14_NB_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1310'; |
|
1550
|
|
|
|
|
1551
|
|
|
/** |
|
1552
|
|
|
* EGM2008 geoid |
|
1553
|
|
|
* Type: Vertical |
|
1554
|
|
|
* Extent: World |
|
1555
|
|
|
* Derived through EGM2008 geoid undulation model consisting of spherical harmonic coefficients to degree 2190 and |
|
1556
|
|
|
* order 2159 applied to the WGS 84 ellipsoid. |
|
1557
|
|
|
* Replaces EGM96 geoid (datum code 5171). See transformation codes 3858 and 3859 for 2.5x2.5 and 1x1 arc minute |
|
1558
|
|
|
* geoid undulation grid files derived from the spherical harmonic coefficients. |
|
1559
|
|
|
*/ |
|
1560
|
|
|
public const EPSG_EGM2008_GEOID = 'urn:ogc:def:datum:EPSG::1027'; |
|
1561
|
|
|
|
|
1562
|
|
|
/** |
|
1563
|
|
|
* EGM84 geoid |
|
1564
|
|
|
* Type: Vertical |
|
1565
|
|
|
* Extent: World |
|
1566
|
|
|
* Derived through EGM84 geoid undulation model consisting of spherical harmonic coefficients to degree and order |
|
1567
|
|
|
* 180 applied to the WGS 84 ellipsoid. |
|
1568
|
|
|
* Replaced by EGM96 geoid (datum code 5171). |
|
1569
|
|
|
*/ |
|
1570
|
|
|
public const EPSG_EGM84_GEOID = 'urn:ogc:def:datum:EPSG::5203'; |
|
1571
|
|
|
|
|
1572
|
|
|
/** |
|
1573
|
|
|
* EGM96 geoid |
|
1574
|
|
|
* Type: Vertical |
|
1575
|
|
|
* Extent: World |
|
1576
|
|
|
* Derived through EGM84 geoid undulation model consisting of spherical harmonic coefficients to degree and order |
|
1577
|
|
|
* 360 applied to the WGS 84 ellipsoid. |
|
1578
|
|
|
* Replaces EGM84 geoid (datum code 5203). Replaced by EGM2008 geoid (datum code 1027). |
|
1579
|
|
|
*/ |
|
1580
|
|
|
public const EPSG_EGM96_GEOID = 'urn:ogc:def:datum:EPSG::5171'; |
|
1581
|
|
|
|
|
1582
|
|
|
/** |
|
1583
|
|
|
* EOS21 Intermediate Reference Frame |
|
1584
|
|
|
* Type: Geodetic |
|
1585
|
|
|
* Extent: UK - on or related to the complex of rail routes in the East of Scotland, incorporating the route from |
|
1586
|
|
|
* Tweedbank through the Borders to Edinburgh; the line from Edinburgh to Aberdeen; routes via Kirkaldy and |
|
1587
|
|
|
* Cowdenbeath; and routes via Leuchars and Perth to Dundee |
|
1588
|
|
|
* Defined through the application of the EOS21 NTv2 transformation (code 9740) to ETRS89 as realized through OSNet |
|
1589
|
|
|
* v2009 CORS. |
|
1590
|
|
|
* Created in 2021 to support intermediate CRS "EOS21-IRF" in the emulation of the EOS21 Snake map projection. |
|
1591
|
|
|
*/ |
|
1592
|
|
|
public const EPSG_EOS21_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1308'; |
|
1593
|
|
|
|
|
1594
|
|
|
/** |
|
1595
|
|
|
* ETRF2000 Poland |
|
1596
|
|
|
* Type: Geodetic |
|
1597
|
|
|
* Extent: Poland |
|
1598
|
|
|
* Polish densification of ETRS89 realized through adjustment of ASG-EUPOS network constrained to 35 EPN stations |
|
1599
|
|
|
* in [email protected]. |
|
1600
|
|
|
* Adopted as official Polish reference frame from 2012-12-01 through Ordinance of the Council of Ministers of 15th |
|
1601
|
|
|
* November 2012 on the state system of spatial reference system. |
|
1602
|
|
|
*/ |
|
1603
|
|
|
public const EPSG_ETRF2000_POLAND = 'urn:ogc:def:datum:EPSG::1305'; |
|
1604
|
|
|
|
|
1605
|
|
|
/** |
|
1606
|
|
|
* ETRS89/DREF91 Realization 2016 |
|
1607
|
|
|
* Type: Geodetic |
|
1608
|
|
|
* Extent: Germany |
|
1609
|
|
|
* Realized by GNSS campaign 2008. Results were transformed from IGS05 epoch 2008.46 to ITRF2005 to ETRF2000, |
|
1610
|
|
|
* subsequently to ETRS89/DREF91 Realization 2002 (former German ETRS89 realization) by 3 rotation parameters. |
|
1611
|
|
|
* German national realization of ETRS89. Replaces ETRS89/DREF91 Realization 2002 from 2016-12-01. |
|
1612
|
|
|
*/ |
|
1613
|
|
|
public const EPSG_ETRS89_DREF91_REALIZATION_2016 = 'urn:ogc:def:datum:EPSG::1353'; |
|
1614
|
|
|
|
|
1615
|
|
|
/** |
|
1616
|
|
|
* EWR2 Intermediate Reference Frame |
|
1617
|
|
|
* Type: Geodetic |
|
1618
|
|
|
* Extent: UK - on or related to East West Rail (Phase 2) routes from Oxford to Bicester, Bletchley and Bedford, |
|
1619
|
|
|
* and from Claydon Junction to Aylesbury and Princes Risborough |
|
1620
|
|
|
* Defined through the application of the EWR2 NTv2 transformation (code 9763) to ETRS89 as realized through OSNet |
|
1621
|
|
|
* v2009 CORS. |
|
1622
|
|
|
* Created in 2021 to support intermediate CRS "EWR2-IRF" in the emulation of the EWR2 Snake map projection. |
|
1623
|
|
|
*/ |
|
1624
|
|
|
public const EPSG_EWR2_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1311'; |
|
1625
|
|
|
|
|
1626
|
|
|
/** |
|
1627
|
|
|
* Easter Island 1967 |
|
1628
|
|
|
* Type: Geodetic |
|
1629
|
|
|
* Extent: Chile - Easter Island onshore. |
|
1630
|
|
|
*/ |
|
1631
|
|
|
public const EPSG_EASTER_ISLAND_1967 = 'urn:ogc:def:datum:EPSG::6719'; |
|
1632
|
|
|
|
|
1633
|
|
|
/** |
|
1634
|
|
|
* Egypt 1907 |
|
1635
|
|
|
* Type: Geodetic |
|
1636
|
|
|
* Extent: Egypt |
|
1637
|
|
|
* Fundamental point: Station F1 (Venus). Latitude: 30°01'42.86"N, longitude: 31°16'33.60"E (of Greenwich). |
|
1638
|
|
|
*/ |
|
1639
|
|
|
public const EPSG_EGYPT_1907 = 'urn:ogc:def:datum:EPSG::6229'; |
|
1640
|
|
|
|
|
1641
|
|
|
/** |
|
1642
|
|
|
* Egypt 1930 |
|
1643
|
|
|
* Type: Geodetic |
|
1644
|
|
|
* Extent: Egypt - onshore |
|
1645
|
|
|
* Fundamental point: Station F1 (Venus). Latitude: 30°01'42.86"N, longitude: 31°16'37.05"E (of Greenwich). |
|
1646
|
|
|
* Note that Egypt 1930 uses the International 1924 ellipsoid, unlike the Egypt 1907 datum (code 6229) which uses |
|
1647
|
|
|
* the Helmert ellipsoid. Oil industry references to the Egypt 1930 datum name and the Helmert ellipsoid probably |
|
1648
|
|
|
* mean Egypt 1907 datum. |
|
1649
|
|
|
*/ |
|
1650
|
|
|
public const EPSG_EGYPT_1930 = 'urn:ogc:def:datum:EPSG::6199'; |
|
1651
|
|
|
|
|
1652
|
|
|
/** |
|
1653
|
|
|
* Egypt Gulf of Suez S-650 TL |
|
1654
|
|
|
* Type: Geodetic |
|
1655
|
|
|
* Extent: Egypt - Gulf of Suez |
|
1656
|
|
|
* Fundamental point: Station S-650 DMX. Adopted coordinates: latitude: 28°19'02.1907"N, longitude: |
|
1657
|
|
|
* 33°06'36.6344"E (of Greenwich). The proper Egypt 1907 coordinates for S-650 differ from these by about 20m. |
|
1658
|
|
|
* A coherent set of stations bordering the Gulf of Suez coordinated by Transit translocation ("TL") between 1980 |
|
1659
|
|
|
* and 1984. Based on incorrect Egypt 1907 values for origin station S-650. Differs from true Egypt 1907 by |
|
1660
|
|
|
* approximately 20m. |
|
1661
|
|
|
*/ |
|
1662
|
|
|
public const EPSG_EGYPT_GULF_OF_SUEZ_S_650_TL = 'urn:ogc:def:datum:EPSG::6706'; |
|
1663
|
|
|
|
|
1664
|
|
|
/** |
|
1665
|
|
|
* El Hierro |
|
1666
|
|
|
* Type: Vertical |
|
1667
|
|
|
* Extent: Spain - Canary Islands - El Hierro onshore |
|
1668
|
|
|
* Mean Sea Level at La Estaca harbour in 2000. |
|
1669
|
|
|
* Orthometric heights. |
|
1670
|
|
|
*/ |
|
1671
|
|
|
public const EPSG_EL_HIERRO = 'urn:ogc:def:datum:EPSG::1284'; |
|
1672
|
|
|
|
|
1673
|
|
|
/** |
|
1674
|
|
|
* Estonia 1992 |
|
1675
|
|
|
* Type: Geodetic |
|
1676
|
|
|
* Extent: Estonia - onshore |
|
1677
|
|
|
* Densification from 4 ETRS89 points. |
|
1678
|
|
|
* Based on ETRS89 as established during the 1992 Baltic campaign. Replaced by Estonia 1997 adjustment (code 6180). |
|
1679
|
|
|
*/ |
|
1680
|
|
|
public const EPSG_ESTONIA_1992 = 'urn:ogc:def:datum:EPSG::6133'; |
|
1681
|
|
|
|
|
1682
|
|
|
/** |
|
1683
|
|
|
* Estonia 1997 |
|
1684
|
|
|
* Type: Geodetic |
|
1685
|
|
|
* Extent: Estonia |
|
1686
|
|
|
* Densification of ETRS89 during EUREF-ESTONIA97 campaign through transformation from ITRF96 at epoch 1997.56. |
|
1687
|
|
|
* Replaces Estonia 1992 adjustment (code 6133). |
|
1688
|
|
|
*/ |
|
1689
|
|
|
public const EPSG_ESTONIA_1997 = 'urn:ogc:def:datum:EPSG::6180'; |
|
1690
|
|
|
|
|
1691
|
|
|
/** |
|
1692
|
|
|
* Estonian Height System 2000 |
|
1693
|
|
|
* Type: Vertical |
|
1694
|
|
|
* Extent: Estonia - onshore |
|
1695
|
|
|
* Estonian realisation of EVRF2007. Relevelling observed 2004-2013 and reduced to epoch 2000 using the NKG2005LU |
|
1696
|
|
|
* empirical land uplift model. EVRF2007 height of Poltsamaa fundamental bench mark (H=55.2114m) held fixed. |
|
1697
|
|
|
* Uses Normal heights. |
|
1698
|
|
|
*/ |
|
1699
|
|
|
public const EPSG_ESTONIAN_HEIGHT_SYSTEM_2000 = 'urn:ogc:def:datum:EPSG::1298'; |
|
1700
|
|
|
|
|
1701
|
|
|
/** |
|
1702
|
|
|
* European Datum 1950 |
|
1703
|
|
|
* Type: Geodetic |
|
1704
|
|
|
* Extent: Europe - west: Andorra; Cyprus; Denmark; Faroe Islands - onshore; France - offshore; Germany - offshore |
|
1705
|
|
|
* North Sea; Gibraltar; Greece - offshore; Israel - offshore; Italy including San Marino and Vatican City State; |
|
1706
|
|
|
* Ireland offshore; Malta; Netherlands - offshore; North Sea; Norway including Svalbard; Portugal - mainland - |
|
1707
|
|
|
* offshore; Spain - onshore; Turkey; United Kingdom - UKCS offshore east of 6°W including Channel Islands |
|
1708
|
|
|
* (Guernsey and Jersey). Egypt - Western Desert; Iraq - onshore; Jordan |
|
1709
|
|
|
* Fundamental point: Potsdam (Helmert Tower). Latitude: 52°22'51.4456"N, longitude: 13°03'58.9283"E (of |
|
1710
|
|
|
* Greenwich). |
|
1711
|
|
|
*/ |
|
1712
|
|
|
public const EPSG_EUROPEAN_DATUM_1950 = 'urn:ogc:def:datum:EPSG::6230'; |
|
1713
|
|
|
|
|
1714
|
|
|
/** |
|
1715
|
|
|
* European Datum 1950(1977) |
|
1716
|
|
|
* Type: Geodetic |
|
1717
|
|
|
* Extent: Iran |
|
1718
|
|
|
* Extension of ED50 over Iran. |
|
1719
|
|
|
* Sometimes referred to as ED50-ED77. |
|
1720
|
|
|
*/ |
|
1721
|
|
|
public const EPSG_EUROPEAN_DATUM_1950_1977 = 'urn:ogc:def:datum:EPSG::6154'; |
|
1722
|
|
|
|
|
1723
|
|
|
/** |
|
1724
|
|
|
* European Datum 1979 |
|
1725
|
|
|
* Type: Geodetic |
|
1726
|
|
|
* Extent: Europe - west |
|
1727
|
|
|
* Fundamental point: Potsdam (Helmert Tower). Latitude: 52°22'51.4456"N, longitude: 13°03'58.9283"E (of |
|
1728
|
|
|
* Greenwich). |
|
1729
|
|
|
* Replaced by 1987 adjustment. |
|
1730
|
|
|
*/ |
|
1731
|
|
|
public const EPSG_EUROPEAN_DATUM_1979 = 'urn:ogc:def:datum:EPSG::6668'; |
|
1732
|
|
|
|
|
1733
|
|
|
/** |
|
1734
|
|
|
* European Datum 1987 |
|
1735
|
|
|
* Type: Geodetic |
|
1736
|
|
|
* Extent: Europe - west |
|
1737
|
|
|
* Fundamental point: Potsdam (Helmert Tower). Latitude: 52°22'51.4456"N, longitude: 13°03'58.9283"E (of |
|
1738
|
|
|
* Greenwich). |
|
1739
|
|
|
*/ |
|
1740
|
|
|
public const EPSG_EUROPEAN_DATUM_1987 = 'urn:ogc:def:datum:EPSG::6231'; |
|
1741
|
|
|
|
|
1742
|
|
|
/** |
|
1743
|
|
|
* European Libyan Datum 1979 |
|
1744
|
|
|
* Type: Geodetic |
|
1745
|
|
|
* Extent: Libya |
|
1746
|
|
|
* Extension of ED50 over Libya. |
|
1747
|
|
|
*/ |
|
1748
|
|
|
public const EPSG_EUROPEAN_LIBYAN_DATUM_1979 = 'urn:ogc:def:datum:EPSG::6159'; |
|
1749
|
|
|
|
|
1750
|
|
|
/** |
|
1751
|
|
|
* European Terrestrial Reference Frame 1989 |
|
1752
|
|
|
* Type: Geodetic |
|
1753
|
|
|
* Extent: Europe - ETRF extent - approximately 16°W to 33°E and 33°N to 84°N |
|
1754
|
|
|
* Coincides with ITRF89 at epoch 1989.0. Fixed to the stable part of the Eurasian tectonic plate through 3 |
|
1755
|
|
|
* rotation rates derived from the AM02 geophysical model. |
|
1756
|
|
|
* Defined by transformation from ITRF89 (CT code 7932). Replaced by ETRF90 (datum code 1179). |
|
1757
|
|
|
*/ |
|
1758
|
|
|
public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1989 = 'urn:ogc:def:datum:EPSG::1178'; |
|
1759
|
|
|
|
|
1760
|
|
|
/** |
|
1761
|
|
|
* European Terrestrial Reference Frame 1990 |
|
1762
|
|
|
* Type: Geodetic |
|
1763
|
|
|
* Extent: Europe - ETRF extent - approximately 16°W to 33°E and 33°N to 84°N |
|
1764
|
|
|
* Coincides with ITRF90 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 |
|
1765
|
|
|
* translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the |
|
1766
|
|
|
* AM02 geophysical model. |
|
1767
|
|
|
* Defined by transformation from ITRF90 (CT code 7933). Replaces ETRF89 (datum code 1178). Replaced by ETRF91 |
|
1768
|
|
|
* (datum code 1180). |
|
1769
|
|
|
*/ |
|
1770
|
|
|
public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1990 = 'urn:ogc:def:datum:EPSG::1179'; |
|
1771
|
|
|
|
|
1772
|
|
|
/** |
|
1773
|
|
|
* European Terrestrial Reference Frame 1991 |
|
1774
|
|
|
* Type: Geodetic |
|
1775
|
|
|
* Extent: Europe - ETRF extent - approximately 16°W to 33°E and 33°N to 84°N |
|
1776
|
|
|
* Coincides with ITRF91 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 |
|
1777
|
|
|
* translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the |
|
1778
|
|
|
* AM02 geophysical model. |
|
1779
|
|
|
* Defined by transformation from ITRF91 (CT code 7934). Replaces ETRF90 (datum code 1179). Replaced by ETRF92 |
|
1780
|
|
|
* (datum code 1181). |
|
1781
|
|
|
*/ |
|
1782
|
|
|
public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1991 = 'urn:ogc:def:datum:EPSG::1180'; |
|
1783
|
|
|
|
|
1784
|
|
|
/** |
|
1785
|
|
|
* European Terrestrial Reference Frame 1992 |
|
1786
|
|
|
* Type: Geodetic |
|
1787
|
|
|
* Extent: Europe - ETRF extent - approximately 16°W to 33°E and 33°N to 84°N |
|
1788
|
|
|
* Coincides with ITRF92 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 |
|
1789
|
|
|
* translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the |
|
1790
|
|
|
* NNR-NUVEL-1 geophysical model. |
|
1791
|
|
|
* Defined by transformation from ITRF92 (CT code 7935). Replaces ETRF91 (datum code 1180). Replaced by ETRF93 |
|
1792
|
|
|
* (datum code 1182). |
|
1793
|
|
|
*/ |
|
1794
|
|
|
public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1992 = 'urn:ogc:def:datum:EPSG::1181'; |
|
1795
|
|
|
|
|
1796
|
|
|
/** |
|
1797
|
|
|
* European Terrestrial Reference Frame 1993 |
|
1798
|
|
|
* Type: Geodetic |
|
1799
|
|
|
* Extent: Europe - ETRF extent - approximately 16°W to 33°E and 33°N to 84°N |
|
1800
|
|
|
* Coincides with ITRF93 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 |
|
1801
|
|
|
* translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the |
|
1802
|
|
|
* ITRF93 velocity field. |
|
1803
|
|
|
* Defined by transformation from ITRF93 (CT code 7936). Replaces ETRF92 (datum code 1181). Replaced by ETRF94 |
|
1804
|
|
|
* (datum code 1183). |
|
1805
|
|
|
*/ |
|
1806
|
|
|
public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1993 = 'urn:ogc:def:datum:EPSG::1182'; |
|
1807
|
|
|
|
|
1808
|
|
|
/** |
|
1809
|
|
|
* European Terrestrial Reference Frame 1994 |
|
1810
|
|
|
* Type: Geodetic |
|
1811
|
|
|
* Extent: Europe - ETRF extent - approximately 16°W to 33°E and 33°N to 84°N |
|
1812
|
|
|
* Coincides with ITRF94 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 |
|
1813
|
|
|
* translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the |
|
1814
|
|
|
* NNR-NUVEL-1A geophysical model. |
|
1815
|
|
|
* Defined by transformation from ITRF94 (CT code 7937). Replaces ETRF93 (datum code 1182). Replaced by ETRF96 |
|
1816
|
|
|
* (datum code 1184). |
|
1817
|
|
|
*/ |
|
1818
|
|
|
public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1994 = 'urn:ogc:def:datum:EPSG::1183'; |
|
1819
|
|
|
|
|
1820
|
|
|
/** |
|
1821
|
|
|
* European Terrestrial Reference Frame 1996 |
|
1822
|
|
|
* Type: Geodetic |
|
1823
|
|
|
* Extent: Europe - ETRF extent - approximately 16°W to 33°E and 33°N to 84°N |
|
1824
|
|
|
* Coincides with ITRF96 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 |
|
1825
|
|
|
* translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the |
|
1826
|
|
|
* NNR-NUVEL-1A geophysical model. |
|
1827
|
|
|
* Defined by transformation from ITRF96 (CT code 7938). Replaces ETRF94 (datum code 1183). Replaced by ETRF97 |
|
1828
|
|
|
* (datum code 1185). |
|
1829
|
|
|
*/ |
|
1830
|
|
|
public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1996 = 'urn:ogc:def:datum:EPSG::1184'; |
|
1831
|
|
|
|
|
1832
|
|
|
/** |
|
1833
|
|
|
* European Terrestrial Reference Frame 1997 |
|
1834
|
|
|
* Type: Geodetic |
|
1835
|
|
|
* Extent: Europe - ETRF extent - approximately 16°W to 33°E and 33°N to 84°N |
|
1836
|
|
|
* Coincides with ITRF97 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 |
|
1837
|
|
|
* translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the |
|
1838
|
|
|
* NNR-NUVEL-1A geophysical model. |
|
1839
|
|
|
* Defined by transformation from ITRF97 (CT code 7939). Replaces ETRF96 (datum code 1184). Replaced by ETRF2000 |
|
1840
|
|
|
* (datum code 1186). |
|
1841
|
|
|
*/ |
|
1842
|
|
|
public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_1997 = 'urn:ogc:def:datum:EPSG::1185'; |
|
1843
|
|
|
|
|
1844
|
|
|
/** |
|
1845
|
|
|
* European Terrestrial Reference Frame 2000 |
|
1846
|
|
|
* Type: Geodetic |
|
1847
|
|
|
* Extent: Europe - ETRF extent - approximately 16°W to 33°E and 33°N to 84°N |
|
1848
|
|
|
* Coincides with ITRF2000 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 |
|
1849
|
|
|
* translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the |
|
1850
|
|
|
* ITRF2000 velocity field. |
|
1851
|
|
|
* Defined by transformation from ITRF2000 (CT 7940). Replaces ETRF97. On the publication of ETRF2005 the EUREF TWG |
|
1852
|
|
|
* recommended that ETRF2000 be the realization of ETRS89. ETRF2014 (code 1206) is technically superior to all |
|
1853
|
|
|
* earlier realizations of ETRS89. |
|
1854
|
|
|
*/ |
|
1855
|
|
|
public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_2000 = 'urn:ogc:def:datum:EPSG::1186'; |
|
1856
|
|
|
|
|
1857
|
|
|
/** |
|
1858
|
|
|
* European Terrestrial Reference Frame 2005 |
|
1859
|
|
|
* Type: Geodetic |
|
1860
|
|
|
* Extent: Europe - ETRF extent - approximately 16°W to 33°E and 33°N to 84°N |
|
1861
|
|
|
* Coincides with ITRF2005 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 |
|
1862
|
|
|
* translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the |
|
1863
|
|
|
* ITRF2005 velocity field. |
|
1864
|
|
|
* Defined by transformation from ITRF2005 (CT 5900). On publication in 2007 of this reference frame, the EUREF TWG |
|
1865
|
|
|
* recommended that ETRF2000 rather than this reference frame remained as the preferred realization of ETRS89. |
|
1866
|
|
|
* Replaced by ETRF2014 (code 1206). |
|
1867
|
|
|
*/ |
|
1868
|
|
|
public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_2005 = 'urn:ogc:def:datum:EPSG::1204'; |
|
1869
|
|
|
|
|
1870
|
|
|
/** |
|
1871
|
|
|
* European Terrestrial Reference Frame 2014 |
|
1872
|
|
|
* Type: Geodetic |
|
1873
|
|
|
* Extent: Europe - ETRF extent - approximately 16°W to 33°E and 33°N to 84°N |
|
1874
|
|
|
* Coincides with ITRF2014 at epoch 1989.0. Fixed to the stable part of the Eurasian tectonic plate through 3 |
|
1875
|
|
|
* rotation rates derived from the ITRF2014 velocity field. |
|
1876
|
|
|
* Defined by transformation from ITRF2014 (CT code 8366). Replaces ETRF2005 (datum code 1204). Technically |
|
1877
|
|
|
* superior to ETRF2000 (datum code 1186). |
|
1878
|
|
|
*/ |
|
1879
|
|
|
public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_2014 = 'urn:ogc:def:datum:EPSG::1206'; |
|
1880
|
|
|
|
|
1881
|
|
|
/** |
|
1882
|
|
|
* European Terrestrial Reference Frame 2020 |
|
1883
|
|
|
* Type: Geodetic |
|
1884
|
|
|
* Extent: Europe - ETRF extent - approximately 16°W to 33°E and 33°N to 84°N |
|
1885
|
|
|
* Coincides with ITRF2020 at epoch 1989.0. Fixed to the stable part of the Eurasian tectonic plate through 3 |
|
1886
|
|
|
* rotation rates derived from the ITRF2020 velocity field. |
|
1887
|
|
|
* Defined by transformation from ITRF2020 (CT code 10572). Replaces ETRF2014 (datum code 1206). Technically |
|
1888
|
|
|
* superior to ETRF2000 (datum code 1186). |
|
1889
|
|
|
*/ |
|
1890
|
|
|
public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_FRAME_2020 = 'urn:ogc:def:datum:EPSG::1382'; |
|
1891
|
|
|
|
|
1892
|
|
|
/** |
|
1893
|
|
|
* European Terrestrial Reference System 1989 ensemble |
|
1894
|
|
|
* Type: Ensemble |
|
1895
|
|
|
* Extent: Europe: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Czechia; Denmark; |
|
1896
|
|
|
* Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary; Ireland; Italy; Kosovo; Latvia; |
|
1897
|
|
|
* Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro; Netherlands; North Macedonia; Norway |
|
1898
|
|
|
* including Svalbard and Jan Mayen; Poland; Portugal - mainland; Romania; San Marino; Serbia; Slovakia; Slovenia; |
|
1899
|
|
|
* Spain - mainland and Balearic islands; Sweden; Switzerland; UK including Channel Islands and Isle of Man; |
|
1900
|
|
|
* Vatican City State |
|
1901
|
|
|
* Has been realized through ETRF89, ETRF90, ETRF91, ETRF92, ETRF93, ETRF94, ETRF96, ETRF97, ETRF2000, ETRF2005, |
|
1902
|
|
|
* ETRF2014 and ETRF2020. This 'ensemble' covers any or all of these realizations without distinction. |
|
1903
|
|
|
*/ |
|
1904
|
|
|
public const EPSG_EUROPEAN_TERRESTRIAL_REFERENCE_SYSTEM_1989_ENSEMBLE = 'urn:ogc:def:datum:EPSG::6258'; |
|
1905
|
|
|
|
|
1906
|
|
|
/** |
|
1907
|
|
|
* European Vertical Reference Frame 2000 |
|
1908
|
|
|
* Type: Vertical |
|
1909
|
|
|
* Extent: Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Croatia; Czechia; Denmark; |
|
1910
|
|
|
* Estonia; Finland; France - mainland; Germany; Gibraltar; Hungary; Italy - mainland and Sicily; Latvia; |
|
1911
|
|
|
* Liechtenstein; Lithuania; Luxembourg; Netherlands; Norway; Poland; Portugal - mainland; Romania; San Marino; |
|
1912
|
|
|
* Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; UK - Great Britain mainland; Vatican City State |
|
1913
|
|
|
* Height at Normaal Amsterdams Peil (NAP) is zero, defined through height at UELN bench mark 13600 (52°22'53"N |
|
1914
|
|
|
* 4°54'34"E) of 0.71599m. Datum at NAP is mean high tide in 1684. |
|
1915
|
|
|
* Realized by geopotential numbers and Normal heights of the United European Levelling Network. Replaced by |
|
1916
|
|
|
* EVRF2007 (datum code 5215). |
|
1917
|
|
|
*/ |
|
1918
|
|
|
public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2000 = 'urn:ogc:def:datum:EPSG::5129'; |
|
1919
|
|
|
|
|
1920
|
|
|
/** |
|
1921
|
|
|
* European Vertical Reference Frame 2000 Austria |
|
1922
|
|
|
* Type: Vertical |
|
1923
|
|
|
* Extent: Austria |
|
1924
|
|
|
* Geopotential numbers of the EVRF2000 (UELN95/98) node points in Austria converted to orthometric heights using a |
|
1925
|
|
|
* digital surface model. |
|
1926
|
|
|
* Geoid surface is smoother than the EVRF2000 quasigeoid. |
|
1927
|
|
|
*/ |
|
1928
|
|
|
public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2000_AUSTRIA = 'urn:ogc:def:datum:EPSG::1261'; |
|
1929
|
|
|
|
|
1930
|
|
|
/** |
|
1931
|
|
|
* European Vertical Reference Frame 2007 |
|
1932
|
|
|
* Type: Vertical |
|
1933
|
|
|
* Extent: Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Czechia; |
|
1934
|
|
|
* Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily; Latvia; |
|
1935
|
|
|
* Liechtenstein; Lithuania; Luxembourg; Netherlands; Norway; Poland; Portugal - mainland; Romania; San Marino; |
|
1936
|
|
|
* Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; UK - Great Britain mainland; Vatican City State |
|
1937
|
|
|
* Least squares fit to 13 stations of the EVRF2000 solution. Reduced to epoch 2000.0 for Nordic countries using |
|
1938
|
|
|
* the NKG2005LU uplift model. |
|
1939
|
|
|
* Realized by geopotential numbers and Normal heights of the United European Levelling Network. Replaces EVRF2000 |
|
1940
|
|
|
* (datum code 5129). Replaced by EVRF2019 (datum code 1274). |
|
1941
|
|
|
*/ |
|
1942
|
|
|
public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2007 = 'urn:ogc:def:datum:EPSG::5215'; |
|
1943
|
|
|
|
|
1944
|
|
|
/** |
|
1945
|
|
|
* European Vertical Reference Frame 2007 Poland |
|
1946
|
|
|
* Type: Vertical |
|
1947
|
|
|
* Extent: Poland - onshore |
|
1948
|
|
|
* Origin: Mean North Sea Level at Amsterdam tide gauge. Normal heights obtained from adjustment of precise |
|
1949
|
|
|
* leveling campaigns conducted during 1998 - 2012 reduced to epoch 2008.00. |
|
1950
|
|
|
* |
|
1951
|
|
|
* Uses Normal heights. |
|
1952
|
|
|
*/ |
|
1953
|
|
|
public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2007_POLAND = 'urn:ogc:def:datum:EPSG::1297'; |
|
1954
|
|
|
|
|
1955
|
|
|
/** |
|
1956
|
|
|
* European Vertical Reference Frame 2019 |
|
1957
|
|
|
* Type: Vertical |
|
1958
|
|
|
* Extent: Europe - onshore - Andorra; Austria; Belarus; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; |
|
1959
|
|
|
* Czechia; Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily; |
|
1960
|
|
|
* Latvia; Liechtenstein; Lithuania; Luxembourg; Netherlands; North Macedonia; Norway; Poland; Portugal - mainland; |
|
1961
|
|
|
* Romania; Russia – west of approximately 60°E; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden; |
|
1962
|
|
|
* Switzerland; UK - Great Britain mainland; Ukraine; Vatican City State |
|
1963
|
|
|
* Fixed to geopotential values of 12 stable stations of the EVRF2007 solution. Re-adjusted in September 2020. |
|
1964
|
|
|
* Reduced to epoch 2000.0 for Nordic countries and Russia using the NKG2016LU_lev uplift model and for Switzerland |
|
1965
|
|
|
* using CHVRF15 velocities. |
|
1966
|
|
|
* Following EVRS conventions, EVRF2019 is a zero-tide surface. Replaces EVRF2007 (datum code 5215). |
|
1967
|
|
|
*/ |
|
1968
|
|
|
public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2019 = 'urn:ogc:def:datum:EPSG::1274'; |
|
1969
|
|
|
|
|
1970
|
|
|
/** |
|
1971
|
|
|
* European Vertical Reference Frame 2019 mean tide |
|
1972
|
|
|
* Type: Vertical |
|
1973
|
|
|
* Extent: Europe - onshore - Andorra; Austria; Belarus; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; |
|
1974
|
|
|
* Czechia; Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily; |
|
1975
|
|
|
* Latvia; Liechtenstein; Lithuania; Luxembourg; Netherlands; North Macedonia; Norway; Poland; Portugal - mainland; |
|
1976
|
|
|
* Romania; Russia – west of approximately 60°E; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden; |
|
1977
|
|
|
* Switzerland; UK - Great Britain mainland; Ukraine; Vatican City State |
|
1978
|
|
|
* Derived from 2020-09 zero-tide EVRF2019 adjustment by Cmean = Czero + (0.28841*sin^2(phi)) + |
|
1979
|
|
|
* (0.00195*sin^4(phi)) - 0.09722 - 0.08432 kgal.m. The offset of 0.08432 forces the mean-tide height to the |
|
1980
|
|
|
* zero-tide height at the EVRF2000 origin in Amsterdam. |
|
1981
|
|
|
* Mean-tide surface, describing how water flows. See EVRF2019 (datum code 1274) for zero-tide surface which is |
|
1982
|
|
|
* consistent with ETRS conventions. |
|
1983
|
|
|
*/ |
|
1984
|
|
|
public const EPSG_EUROPEAN_VERTICAL_REFERENCE_FRAME_2019_MEAN_TIDE = 'urn:ogc:def:datum:EPSG::1287'; |
|
1985
|
|
|
|
|
1986
|
|
|
/** |
|
1987
|
|
|
* FNL22 Intermediate Reference Frame |
|
1988
|
|
|
* Type: Geodetic |
|
1989
|
|
|
* Extent: UK - on or related to the rail route from Inverness to Thurso and Wick |
|
1990
|
|
|
* Defined through the application of the FNL22 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
1991
|
|
|
* Created in 2022 to support intermediate CRS "FNL22" in the emulation of the FNL22 Snake map projection. |
|
1992
|
|
|
*/ |
|
1993
|
|
|
public const EPSG_FNL22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1321'; |
|
1994
|
|
|
|
|
1995
|
|
|
/** |
|
1996
|
|
|
* Fahud |
|
1997
|
|
|
* Type: Geodetic |
|
1998
|
|
|
* Extent: Oman - mainland onshore |
|
1999
|
|
|
* Fundamental point: Station NO68-024 Fahud. Latitude: 22°17'31.182"N, longitude: 56°29'18.820"E (of Greenwich). |
|
2000
|
|
|
* Replaced by PSD93 (code 6134). |
|
2001
|
|
|
*/ |
|
2002
|
|
|
public const EPSG_FAHUD = 'urn:ogc:def:datum:EPSG::6232'; |
|
2003
|
|
|
|
|
2004
|
|
|
/** |
|
2005
|
|
|
* Fahud Height Datum |
|
2006
|
|
|
* Type: Vertical |
|
2007
|
|
|
* Extent: Oman - mainland onshore |
|
2008
|
|
|
* Single MSL determination at Mina Al Fahal. |
|
2009
|
|
|
* Based on reciprocal trigonometric heighting. Replaced by PHD93 Datum (code 5123) in 1993. |
|
2010
|
|
|
*/ |
|
2011
|
|
|
public const EPSG_FAHUD_HEIGHT_DATUM = 'urn:ogc:def:datum:EPSG::5124'; |
|
2012
|
|
|
|
|
2013
|
|
|
/** |
|
2014
|
|
|
* Fair Isle |
|
2015
|
|
|
* Type: Vertical |
|
2016
|
|
|
* Extent: UK - Great Britain - Scotland - Fair Isle onshore |
|
2017
|
|
|
* Orthometric heights. |
|
2018
|
|
|
*/ |
|
2019
|
|
|
public const EPSG_FAIR_ISLE = 'urn:ogc:def:datum:EPSG::5139'; |
|
2020
|
|
|
|
|
2021
|
|
|
/** |
|
2022
|
|
|
* Famagusta 1960 |
|
2023
|
|
|
* Type: Vertical |
|
2024
|
|
|
* Extent: Cyprus - onshore |
|
2025
|
|
|
* Mean sea level at Famagusta Harbour. |
|
2026
|
|
|
* Orthometric heights. |
|
2027
|
|
|
*/ |
|
2028
|
|
|
public const EPSG_FAMAGUSTA_1960 = 'urn:ogc:def:datum:EPSG::1148'; |
|
2029
|
|
|
|
|
2030
|
|
|
/** |
|
2031
|
|
|
* Fao |
|
2032
|
|
|
* Type: Vertical |
|
2033
|
|
|
* Extent: Iraq - onshore southeast; Iran - onshore northern Gulf coast and west bordering southeast Iraq |
|
2034
|
|
|
* Established by Hunting Surveys for IPC. In Iran replaced by Bandar Abbas (code 5150). At time of record creation |
|
2035
|
|
|
* NIOC data in Ahwaz area still usually referenced to Fao. In Iraq replaced by Fao 1979 (code 1028). |
|
2036
|
|
|
*/ |
|
2037
|
|
|
public const EPSG_FAO = 'urn:ogc:def:datum:EPSG::5149'; |
|
2038
|
|
|
|
|
2039
|
|
|
/** |
|
2040
|
|
|
* Fao 1979 |
|
2041
|
|
|
* Type: Vertical |
|
2042
|
|
|
* Extent: Iraq - onshore |
|
2043
|
|
|
* Average sea level at Fao during two-year period in mid/late 1970s. |
|
2044
|
|
|
* Levelling network established by Polservice consortium. Replaces Fao (datum code 5149) in Iraq. |
|
2045
|
|
|
*/ |
|
2046
|
|
|
public const EPSG_FAO_1979 = 'urn:ogc:def:datum:EPSG::1028'; |
|
2047
|
|
|
|
|
2048
|
|
|
/** |
|
2049
|
|
|
* Faroe Datum 1954 |
|
2050
|
|
|
* Type: Geodetic |
|
2051
|
|
|
* Extent: Faroe Islands - onshore |
|
2052
|
|
|
* Astronomical observations at 3 points. |
|
2053
|
|
|
* Replaced by ED50 in late 1970's for all purposes other than cadastre. Replaced by fk89 for cadastre. |
|
2054
|
|
|
*/ |
|
2055
|
|
|
public const EPSG_FAROE_DATUM_1954 = 'urn:ogc:def:datum:EPSG::6741'; |
|
2056
|
|
|
|
|
2057
|
|
|
/** |
|
2058
|
|
|
* Faroe Islands Vertical Reference 2009 |
|
2059
|
|
|
* Type: Vertical |
|
2060
|
|
|
* Extent: Faroe Islands - onshore |
|
2061
|
|
|
* Mean Tidal Height System. |
|
2062
|
|
|
*/ |
|
2063
|
|
|
public const EPSG_FAROE_ISLANDS_VERTICAL_REFERENCE_2009 = 'urn:ogc:def:datum:EPSG::1059'; |
|
2064
|
|
|
|
|
2065
|
|
|
/** |
|
2066
|
|
|
* Fatu Iva 72 |
|
2067
|
|
|
* Type: Geodetic |
|
2068
|
|
|
* Extent: French Polynesia - Marquesas Islands - Fatu Hiva |
|
2069
|
|
|
* Fundamental point: Latitude: 9°25'58.00"S, longitude: 138°55'06.25"W (of Greenwich). |
|
2070
|
|
|
* Recomputed by IGN in 1972 using origin and observations of 1953-1955 Mission Hydrographique des Establissements |
|
2071
|
|
|
* Francais d'Oceanie (MHEFO 55). Replaced by RGPF (datum code 6687). |
|
2072
|
|
|
*/ |
|
2073
|
|
|
public const EPSG_FATU_IVA_72 = 'urn:ogc:def:datum:EPSG::6688'; |
|
2074
|
|
|
|
|
2075
|
|
|
/** |
|
2076
|
|
|
* Fehmarnbelt Datum 2010 |
|
2077
|
|
|
* Type: Geodetic |
|
2078
|
|
|
* Extent: Fehmarnbelt area of Denmark and Germany |
|
2079
|
|
|
* ITRF2005 at epoch 2010.14. |
|
2080
|
|
|
* Defined through coordinates of four permanant GNSS stations. |
|
2081
|
|
|
*/ |
|
2082
|
|
|
public const EPSG_FEHMARNBELT_DATUM_2010 = 'urn:ogc:def:datum:EPSG::1078'; |
|
2083
|
|
|
|
|
2084
|
|
|
/** |
|
2085
|
|
|
* Fehmarnbelt Vertical Reference 2010 |
|
2086
|
|
|
* Type: Vertical |
|
2087
|
|
|
* Extent: Fehmarnbelt area of Denmark and Germany |
|
2088
|
|
|
* Realised by precise levelling between tide gauges at Marienleuchte (Germany), Rodbyhavn (Denmark) and four |
|
2089
|
|
|
* Fehmarnbelt project GNSS stations. |
|
2090
|
|
|
*/ |
|
2091
|
|
|
public const EPSG_FEHMARNBELT_VERTICAL_REFERENCE_2010 = 'urn:ogc:def:datum:EPSG::1079'; |
|
2092
|
|
|
|
|
2093
|
|
|
/** |
|
2094
|
|
|
* Fiji 1956 |
|
2095
|
|
|
* Type: Geodetic |
|
2096
|
|
|
* Extent: Fiji - onshore - Vanua Levu, Taveuni, Viti Levu and and immediately adjacent smaller islands of Yasawa |
|
2097
|
|
|
* and Kandavu groups |
|
2098
|
|
|
* Latitude origin was obtained astronomically at station Rasusuva = 17°49'03.13"S, longitude origin was obtained |
|
2099
|
|
|
* astronomically at station Suva = 178°25'35.835"E (of Greenwich). |
|
2100
|
|
|
* For topographic mapping replaces Viti Levu 1912 and Vanua Levu 1915. Replaced by Fiji Geodetic Datum 1986. |
|
2101
|
|
|
*/ |
|
2102
|
|
|
public const EPSG_FIJI_1956 = 'urn:ogc:def:datum:EPSG::6721'; |
|
2103
|
|
|
|
|
2104
|
|
|
/** |
|
2105
|
|
|
* Fiji Geodetic Datum 1986 |
|
2106
|
|
|
* Type: Geodetic |
|
2107
|
|
|
* Extent: Fiji - onshore. Includes Viti Levu, Vanua Levu, Taveuni, the Yasawa Group, the Kadavu Group, the Lau |
|
2108
|
|
|
* Islands and Rotuma Islands |
|
2109
|
|
|
* NWL 9D coordinates of 6 stations on Vitu Levu and Vanua Levu. |
|
2110
|
|
|
* Replaces Viti Levu 1912, Vanua Levu 1915 and Fiji 1956. |
|
2111
|
|
|
*/ |
|
2112
|
|
|
public const EPSG_FIJI_GEODETIC_DATUM_1986 = 'urn:ogc:def:datum:EPSG::6720'; |
|
2113
|
|
|
|
|
2114
|
|
|
/** |
|
2115
|
|
|
* Final Datum 1958 |
|
2116
|
|
|
* Type: Geodetic |
|
2117
|
|
|
* Extent: Iran - Arwaz area and onshore Gulf coast west of 54°E, Lavan Island, offshore Balal field and South |
|
2118
|
|
|
* Pars blocks 2 and 3 |
|
2119
|
|
|
* Fundamental point: Maniyur. Latitude: 31°23'59.19"N, longitude: 48°32'31.38"E (of Greenwich). |
|
2120
|
|
|
* Network included in Nahrwan 1967 adjustment. |
|
2121
|
|
|
*/ |
|
2122
|
|
|
public const EPSG_FINAL_DATUM_1958 = 'urn:ogc:def:datum:EPSG::6132'; |
|
2123
|
|
|
|
|
2124
|
|
|
/** |
|
2125
|
|
|
* Flannan Isles |
|
2126
|
|
|
* Type: Vertical |
|
2127
|
|
|
* Extent: UK - Great Britain - Scotland - Flannan Isles onshore |
|
2128
|
|
|
* Orthometric heights. |
|
2129
|
|
|
*/ |
|
2130
|
|
|
public const EPSG_FLANNAN_ISLES = 'urn:ogc:def:datum:EPSG::5146'; |
|
2131
|
|
|
|
|
2132
|
|
|
/** |
|
2133
|
|
|
* Formentera |
|
2134
|
|
|
* Type: Vertical |
|
2135
|
|
|
* Extent: Spain - Balearic Islands - Formentera - onshore |
|
2136
|
|
|
* Mean Sea Level at La Sabina harbour between 2000-10-25 and 2001-04-18. |
|
2137
|
|
|
* Orthometric heights. |
|
2138
|
|
|
*/ |
|
2139
|
|
|
public const EPSG_FORMENTERA = 'urn:ogc:def:datum:EPSG::1362'; |
|
2140
|
|
|
|
|
2141
|
|
|
/** |
|
2142
|
|
|
* Fort Marigot |
|
2143
|
|
|
* Type: Geodetic |
|
2144
|
|
|
* Extent: Guadeloupe - onshore - St Martin and St Barthélemy islands |
|
2145
|
|
|
* Replaced by RRAF 1991 (datum code 1047). |
|
2146
|
|
|
*/ |
|
2147
|
|
|
public const EPSG_FORT_MARIGOT = 'urn:ogc:def:datum:EPSG::6621'; |
|
2148
|
|
|
|
|
2149
|
|
|
/** |
|
2150
|
|
|
* Foula |
|
2151
|
|
|
* Type: Vertical |
|
2152
|
|
|
* Extent: UK - Great Britain - Scotland - Foula onshore |
|
2153
|
|
|
* Orthometric heights. |
|
2154
|
|
|
*/ |
|
2155
|
|
|
public const EPSG_FOULA = 'urn:ogc:def:datum:EPSG::5141'; |
|
2156
|
|
|
|
|
2157
|
|
|
/** |
|
2158
|
|
|
* Fuerteventura |
|
2159
|
|
|
* Type: Vertical |
|
2160
|
|
|
* Extent: Spain - Canary Islands - Fuerteventura onshore |
|
2161
|
|
|
* Mean Sea Level at Puerto del Rosario harbour between 1999-09-08 and 2000-12-31. |
|
2162
|
|
|
* Orthometric heights. |
|
2163
|
|
|
*/ |
|
2164
|
|
|
public const EPSG_FUERTEVENTURA = 'urn:ogc:def:datum:EPSG::1279'; |
|
2165
|
|
|
|
|
2166
|
|
|
/** |
|
2167
|
|
|
* GBK19 Intermediate Reference Frame |
|
2168
|
|
|
* Type: Geodetic |
|
2169
|
|
|
* Extent: UK - on or related to the rail route from Glasgow to Kilmarnock via Barrhead and the branch to East |
|
2170
|
|
|
* Kilbride |
|
2171
|
|
|
* Defined through the application of the GBK19 NTv2 transformation (code 9454) to ETRS89 as realized through OSNet |
|
2172
|
|
|
* v2009 CORS. |
|
2173
|
|
|
* Created in 2020 to support intermediate CRS "GBK19-IRF" in the emulation of the combined GBK19 Snake map |
|
2174
|
|
|
* projection. |
|
2175
|
|
|
*/ |
|
2176
|
|
|
public const EPSG_GBK19_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1289'; |
|
2177
|
|
|
|
|
2178
|
|
|
/** |
|
2179
|
|
|
* GNTRANS |
|
2180
|
|
|
* Type: Vertical |
|
2181
|
|
|
* Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen, |
|
2182
|
|
|
* Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt, |
|
2183
|
|
|
* Schleswig-Holstein, Thuringen |
|
2184
|
|
|
* Surface defined by the EGG97 quasi-geoid model modified in GNTRANS to achieve absolute position optimised for |
|
2185
|
|
|
* use with DB_REF. |
|
2186
|
|
|
* Implemented in GNTRANS. The GNTRANS height surface is available only through the GNTRANS application. Replaced |
|
2187
|
|
|
* by the GNTRANS2016 height surface (datum code 1318). |
|
2188
|
|
|
*/ |
|
2189
|
|
|
public const EPSG_GNTRANS = 'urn:ogc:def:datum:EPSG::1316'; |
|
2190
|
|
|
|
|
2191
|
|
|
/** |
|
2192
|
|
|
* GNTRANS2016 |
|
2193
|
|
|
* Type: Vertical |
|
2194
|
|
|
* Extent: Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen, |
|
2195
|
|
|
* Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt, |
|
2196
|
|
|
* Schleswig-Holstein, Thuringen |
|
2197
|
|
|
* Surface defined by the GCG2016 quasi-geoid model applied to ETRS89. |
|
2198
|
|
|
* Approximates the national DHHN2016 levelling surface to around 1cm in lowlands and 2cm in high mountains, but |
|
2199
|
|
|
* unlike DHHN2016 it is defined by the GCG2016 geoid model. Like DHHN2016, uses Normal heights in the mean tide |
|
2200
|
|
|
* system. |
|
2201
|
|
|
*/ |
|
2202
|
|
|
public const EPSG_GNTRANS2016 = 'urn:ogc:def:datum:EPSG::1318'; |
|
2203
|
|
|
|
|
2204
|
|
|
/** |
|
2205
|
|
|
* GWPBS22 Intermediate Reference Frame |
|
2206
|
|
|
* Type: Geodetic |
|
2207
|
|
|
* Extent: UK - on or related to the rail route from London (Paddington) to Swansea |
|
2208
|
|
|
* Defined through the application of the GWPBS22 NTv2 transformation to ETRS89 as realized through OSNet v2009 |
|
2209
|
|
|
* CORS. |
|
2210
|
|
|
* Created in 2022 to support intermediate CRS GWPBS22-IRF in the emulation of the GWPBS22 Snake map projection. |
|
2211
|
|
|
*/ |
|
2212
|
|
|
public const EPSG_GWPBS22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1340'; |
|
2213
|
|
|
|
|
2214
|
|
|
/** |
|
2215
|
|
|
* GWWAB22 Intermediate Reference Frame |
|
2216
|
|
|
* Type: Geodetic |
|
2217
|
|
|
* Extent: UK - on or related to the rail routes around Cardiff and the valleys |
|
2218
|
|
|
* Defined through the application of the GWWAB22 NTv2 transformation to ETRS89 as realized through OSNet v2009 |
|
2219
|
|
|
* CORS. |
|
2220
|
|
|
* Created in 2022 to support intermediate CRS GWWAB22-IRF in the emulation of the GWWAB22 Snake map projection. |
|
2221
|
|
|
*/ |
|
2222
|
|
|
public const EPSG_GWWAB22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1341'; |
|
2223
|
|
|
|
|
2224
|
|
|
/** |
|
2225
|
|
|
* GWWWA22 Intermediate Reference Frame |
|
2226
|
|
|
* Type: Geodetic |
|
2227
|
|
|
* Extent: UK - on or related to the rail routes from Swansea to Pembroke Dock, Milford Haven and Fishguard |
|
2228
|
|
|
* Defined through the application of the GWWWA22 NTv2 transformation to ETRS89 as realized through OSNet v2009 |
|
2229
|
|
|
* CORS. |
|
2230
|
|
|
* Created in 2022 to support intermediate CRS GWWWA22-IRF in the emulation of the GWWWA22 Snake map projection. |
|
2231
|
|
|
*/ |
|
2232
|
|
|
public const EPSG_GWWWA22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1342'; |
|
2233
|
|
|
|
|
2234
|
|
|
/** |
|
2235
|
|
|
* Gambia |
|
2236
|
|
|
* Type: Geodetic |
|
2237
|
|
|
* Extent: Gambia - onshore. |
|
2238
|
|
|
*/ |
|
2239
|
|
|
public const EPSG_GAMBIA = 'urn:ogc:def:datum:EPSG::1139'; |
|
2240
|
|
|
|
|
2241
|
|
|
/** |
|
2242
|
|
|
* Gan 1970 |
|
2243
|
|
|
* Type: Geodetic |
|
2244
|
|
|
* Extent: Maldives - onshore |
|
2245
|
|
|
* In some references incorrectly named "Gandajika 1970". See datum code 6685. |
|
2246
|
|
|
*/ |
|
2247
|
|
|
public const EPSG_GAN_1970 = 'urn:ogc:def:datum:EPSG::6684'; |
|
2248
|
|
|
|
|
2249
|
|
|
/** |
|
2250
|
|
|
* Garoua |
|
2251
|
|
|
* Type: Geodetic |
|
2252
|
|
|
* Extent: Cameroon - Garoua area |
|
2253
|
|
|
* Fundamental point: IGN astronomical station and benchmark no. 16 at Tongo. Latitude 8°55'08.74"N, longitude |
|
2254
|
|
|
* 13°30'43.19"E (of Greenwich). |
|
2255
|
|
|
*/ |
|
2256
|
|
|
public const EPSG_GAROUA = 'urn:ogc:def:datum:EPSG::6197'; |
|
2257
|
|
|
|
|
2258
|
|
|
/** |
|
2259
|
|
|
* Gebrauchshohen ADRIA |
|
2260
|
|
|
* Type: Vertical |
|
2261
|
|
|
* Extent: Austria |
|
2262
|
|
|
* Reference point Hutbiegl defined relative to mean sea level at Trieste in 1875. |
|
2263
|
|
|
* Normal-orthometric heights. |
|
2264
|
|
|
*/ |
|
2265
|
|
|
public const EPSG_GEBRAUCHSHOHEN_ADRIA = 'urn:ogc:def:datum:EPSG::5176'; |
|
2266
|
|
|
|
|
2267
|
|
|
/** |
|
2268
|
|
|
* Generalstabens System Bornholm Intermediate Datum |
|
2269
|
|
|
* Type: Geodetic |
|
2270
|
|
|
* Extent: Denmark - Bornholm onshore |
|
2271
|
|
|
* The old Copenhagen Observatory at Rundetårn. Originally, longitudes were reckoned from the meridian through the |
|
2272
|
|
|
* observatory but in this reconstruction longitudes are referenced to the Greenwich meridian. |
|
2273
|
|
|
* Created in 2022 to support intermediate CRS GSB-IRF in the transformation of coordinates between the historic |
|
2274
|
|
|
* Generalstaben System and ETRS89. The data are reconstructions based on information synthesized in historical |
|
2275
|
|
|
* empirical transformations to ED50. |
|
2276
|
|
|
*/ |
|
2277
|
|
|
public const EPSG_GENERALSTABENS_SYSTEM_BORNHOLM_INTERMEDIATE_DATUM = 'urn:ogc:def:datum:EPSG::1348'; |
|
2278
|
|
|
|
|
2279
|
|
|
/** |
|
2280
|
|
|
* Generalstabens System Intermediate Datum |
|
2281
|
|
|
* Type: Geodetic |
|
2282
|
|
|
* Extent: Denmark - onshore Jutland, Funen, Zealand and Lolland |
|
2283
|
|
|
* The old Copenhagen Observatory at Rundetårn. Originally, longitudes were reckoned from the meridian through the |
|
2284
|
|
|
* observatory but in this reconstruction longitudes are referenced to the Greenwich meridian. |
|
2285
|
|
|
* Created in 2022 to support intermediate CRS GS-IRF in the transformation of coordinates between the historic |
|
2286
|
|
|
* Generalstaben System and ETRS89. The data are reconstructions based on information synthesized in historical |
|
2287
|
|
|
* empirical transformations to ED50. |
|
2288
|
|
|
*/ |
|
2289
|
|
|
public const EPSG_GENERALSTABENS_SYSTEM_INTERMEDIATE_DATUM = 'urn:ogc:def:datum:EPSG::1347'; |
|
2290
|
|
|
|
|
2291
|
|
|
/** |
|
2292
|
|
|
* Genoa 1942 |
|
2293
|
|
|
* Type: Vertical |
|
2294
|
|
|
* Extent: Italy - mainland (including San Marino and Vatican City State) and Sicily |
|
2295
|
|
|
* Mean Sea Level at Genoa (Ponte Morosini) 1937-1946. |
|
2296
|
|
|
* Orthometric heights. |
|
2297
|
|
|
*/ |
|
2298
|
|
|
public const EPSG_GENOA_1942 = 'urn:ogc:def:datum:EPSG::1051'; |
|
2299
|
|
|
|
|
2300
|
|
|
/** |
|
2301
|
|
|
* Geocentric Datum Brunei Darussalam 2009 |
|
2302
|
|
|
* Type: Geodetic |
|
2303
|
|
|
* Extent: Brunei Darussalam |
|
2304
|
|
|
* ITRF2005 at epoch 2009.45 |
|
2305
|
|
|
* Replaces use of Timbalai from July 2009. |
|
2306
|
|
|
*/ |
|
2307
|
|
|
public const EPSG_GEOCENTRIC_DATUM_BRUNEI_DARUSSALAM_2009 = 'urn:ogc:def:datum:EPSG::1056'; |
|
2308
|
|
|
|
|
2309
|
|
|
/** |
|
2310
|
|
|
* Geocentric Datum of Australia 1994 |
|
2311
|
|
|
* Type: Geodetic |
|
2312
|
|
|
* Extent: Australia including Lord Howe Island, Macquarie Island, Ashmore and Cartier Islands, Christmas Island, |
|
2313
|
|
|
* Cocos (Keeling) Islands, Norfolk Island |
|
2314
|
|
|
* ITRF92 at epoch 1994.0. |
|
2315
|
|
|
*/ |
|
2316
|
|
|
public const EPSG_GEOCENTRIC_DATUM_OF_AUSTRALIA_1994 = 'urn:ogc:def:datum:EPSG::6283'; |
|
2317
|
|
|
|
|
2318
|
|
|
/** |
|
2319
|
|
|
* Geocentric Datum of Australia 2020 |
|
2320
|
|
|
* Type: Geodetic |
|
2321
|
|
|
* Extent: Australia including Lord Howe Island, Macquarie Island, Ashmore and Cartier Islands, Christmas Island, |
|
2322
|
|
|
* Cocos (Keeling) Islands, Norfolk Island |
|
2323
|
|
|
* ITRF2014 at epoch 2020.0. |
|
2324
|
|
|
*/ |
|
2325
|
|
|
public const EPSG_GEOCENTRIC_DATUM_OF_AUSTRALIA_2020 = 'urn:ogc:def:datum:EPSG::1168'; |
|
2326
|
|
|
|
|
2327
|
|
|
/** |
|
2328
|
|
|
* Geodetic Datum of 1965 |
|
2329
|
|
|
* Type: Geodetic |
|
2330
|
|
|
* Extent: Ireland - onshore. UK - Northern Ireland (Ulster) - onshore |
|
2331
|
|
|
* Adjusted to best mean fit 9 stations of the OSNI 1952 primary adjustment in Northern Ireland plus the 1965 |
|
2332
|
|
|
* values of 3 stations in the Republic of Ireland. |
|
2333
|
|
|
* Differences from the 1965 adjustment (datum code 6299) are: average difference in Eastings 0.092m; average |
|
2334
|
|
|
* difference in Northings 0.108m; maximum vector difference 0.548m. |
|
2335
|
|
|
*/ |
|
2336
|
|
|
public const EPSG_GEODETIC_DATUM_OF_1965 = 'urn:ogc:def:datum:EPSG::6300'; |
|
2337
|
|
|
|
|
2338
|
|
|
/** |
|
2339
|
|
|
* Geodetic Datum of Malaysia 2000 |
|
2340
|
|
|
* Type: Geodetic |
|
2341
|
|
|
* Extent: Malaysia. Includes peninsular Malayasia, Sabah and Sarawak |
|
2342
|
|
|
* ITRF2000, epoch 2000.0. |
|
2343
|
|
|
* Replaces all older Malaysian datums. |
|
2344
|
|
|
*/ |
|
2345
|
|
|
public const EPSG_GEODETIC_DATUM_OF_MALAYSIA_2000 = 'urn:ogc:def:datum:EPSG::6742'; |
|
2346
|
|
|
|
|
2347
|
|
|
/** |
|
2348
|
|
|
* Geodezicheskaya Sistema Koordinat 2011 |
|
2349
|
|
|
* Type: Geodetic |
|
2350
|
|
|
* Extent: Russia |
|
2351
|
|
|
* Coordinates of the Russian fundamental astronomic-geodetic network (about 50 stations) at epoch 2011.0. |
|
2352
|
|
|
*/ |
|
2353
|
|
|
public const EPSG_GEODEZICHESKAYA_SISTEMA_KOORDINAT_2011 = 'urn:ogc:def:datum:EPSG::1159'; |
|
2354
|
|
|
|
|
2355
|
|
|
/** |
|
2356
|
|
|
* Gisborne 1926 |
|
2357
|
|
|
* Type: Vertical |
|
2358
|
|
|
* Extent: New Zealand - North Island - Gisborne vertical CRS area |
|
2359
|
|
|
* MSL at Gisborne harbour 1926. |
|
2360
|
|
|
*/ |
|
2361
|
|
|
public const EPSG_GISBORNE_1926 = 'urn:ogc:def:datum:EPSG::5160'; |
|
2362
|
|
|
|
|
2363
|
|
|
/** |
|
2364
|
|
|
* Gran Canaria |
|
2365
|
|
|
* Type: Vertical |
|
2366
|
|
|
* Extent: Spain - Canary Islands - Gran Canaria onshore |
|
2367
|
|
|
* Mean Sea Level at Las Palmas de Gran Canaria harbour between 1992 and 1997. |
|
2368
|
|
|
* Orthometric heights. |
|
2369
|
|
|
*/ |
|
2370
|
|
|
public const EPSG_GRAN_CANARIA = 'urn:ogc:def:datum:EPSG::1280'; |
|
2371
|
|
|
|
|
2372
|
|
|
/** |
|
2373
|
|
|
* Grand Cayman Geodetic Datum 1959 |
|
2374
|
|
|
* Type: Geodetic |
|
2375
|
|
|
* Extent: Cayman Islands - Grand Cayman |
|
2376
|
|
|
* Fundamental point: GC1. Latitude: 19°17'54.43"N, longitude: 81°22'37.17"W (of Greenwich). |
|
2377
|
|
|
* Replaced by CIGD11 (datum code 1100). |
|
2378
|
|
|
*/ |
|
2379
|
|
|
public const EPSG_GRAND_CAYMAN_GEODETIC_DATUM_1959 = 'urn:ogc:def:datum:EPSG::6723'; |
|
2380
|
|
|
|
|
2381
|
|
|
/** |
|
2382
|
|
|
* Grand Cayman Vertical Datum 1954 |
|
2383
|
|
|
* Type: Vertical |
|
2384
|
|
|
* Extent: Cayman Islands - Grand Cayman. |
|
2385
|
|
|
*/ |
|
2386
|
|
|
public const EPSG_GRAND_CAYMAN_VERTICAL_DATUM_1954 = 'urn:ogc:def:datum:EPSG::1097'; |
|
2387
|
|
|
|
|
2388
|
|
|
/** |
|
2389
|
|
|
* Grand Comoros |
|
2390
|
|
|
* Type: Geodetic |
|
2391
|
|
|
* Extent: Comoros - Njazidja (Grande Comore) |
|
2392
|
|
|
* Fundamental point: M'Tsaoueni. Latitude: 11°28'32.200"S, longitude: 43°15'42.315"E (of Greenwich). |
|
2393
|
|
|
*/ |
|
2394
|
|
|
public const EPSG_GRAND_COMOROS = 'urn:ogc:def:datum:EPSG::6646'; |
|
2395
|
|
|
|
|
2396
|
|
|
/** |
|
2397
|
|
|
* Greek |
|
2398
|
|
|
* Type: Geodetic |
|
2399
|
|
|
* Extent: Greece - onshore |
|
2400
|
|
|
* Fundamental point: Athens Observatory. Latitude 37°58'20.132"N, longitude 23°42'58.815"E (of Greenwich) |
|
2401
|
|
|
* See geodetic datum alias 6404. Used as basis of topographic mapping based on Hatt projection. Replaced by GGRS87 |
|
2402
|
|
|
* (code 6121). |
|
2403
|
|
|
*/ |
|
2404
|
|
|
public const EPSG_GREEK = 'urn:ogc:def:datum:EPSG::6120'; |
|
2405
|
|
|
|
|
2406
|
|
|
/** |
|
2407
|
|
|
* Greek (Athens) |
|
2408
|
|
|
* Type: Geodetic |
|
2409
|
|
|
* Extent: Greece - onshore |
|
2410
|
|
|
* Fundamental point: Athens Observatory. Latitude 37°58'20.132"N, longitude 0°E (of Athens). |
|
2411
|
|
|
* See geodetic datum alias 6404. Used as basis of topographic mapping based on Hatt projection. |
|
2412
|
|
|
*/ |
|
2413
|
|
|
public const EPSG_GREEK_ATHENS = 'urn:ogc:def:datum:EPSG::6815'; |
|
2414
|
|
|
|
|
2415
|
|
|
/** |
|
2416
|
|
|
* Greek Geodetic Reference System 1987 |
|
2417
|
|
|
* Type: Geodetic |
|
2418
|
|
|
* Extent: Greece - onshore |
|
2419
|
|
|
* Fundamental point: Dionysos. Latitude 38°04'33.8"N, longitude 23°55'51.0"E of Greenwich; geoid height 7.0 m. |
|
2420
|
|
|
* Replaced (old) Greek datum. Oil industry work based on ED50. |
|
2421
|
|
|
*/ |
|
2422
|
|
|
public const EPSG_GREEK_GEODETIC_REFERENCE_SYSTEM_1987 = 'urn:ogc:def:datum:EPSG::6121'; |
|
2423
|
|
|
|
|
2424
|
|
|
/** |
|
2425
|
|
|
* Greenland 1996 |
|
2426
|
|
|
* Type: Geodetic |
|
2427
|
|
|
* Extent: Greenland |
|
2428
|
|
|
* ITRF94 at epoch 1996.62 |
|
2429
|
|
|
* Replaces Ammassalik 1958, Qornoq 1927 and Scoresbysund 1952. |
|
2430
|
|
|
*/ |
|
2431
|
|
|
public const EPSG_GREENLAND_1996 = 'urn:ogc:def:datum:EPSG::6747'; |
|
2432
|
|
|
|
|
2433
|
|
|
/** |
|
2434
|
|
|
* Greenland Local Mean Sea Level (2022) |
|
2435
|
|
|
* Type: Vertical |
|
2436
|
|
|
* Extent: Greenland - onshore |
|
2437
|
|
|
* 77 disconnected local levelling nets introduced between 1945 and 1983 each tied to local mean sea level. |
|
2438
|
|
|
* GLLMSL has been introduced to accomodate transformations between older local height systems and the modern |
|
2439
|
|
|
* nation-wide height systems. In effect these datums are now defined by their transformation to GVR2016. |
|
2440
|
|
|
*/ |
|
2441
|
|
|
public const EPSG_GREENLAND_LOCAL_MEAN_SEA_LEVEL_2022 = 'urn:ogc:def:datum:EPSG::1378'; |
|
2442
|
|
|
|
|
2443
|
|
|
/** |
|
2444
|
|
|
* Greenland Lowest Astronomic Tide (2023) |
|
2445
|
|
|
* Type: Vertical |
|
2446
|
|
|
* Extent: Greenland - offshore |
|
2447
|
|
|
* Mean sea level as determined by satellite altimetry adjusted to LAT using coastal tide gauges and global tide |
|
2448
|
|
|
* models. Defined with respect to GR96 through the gllat_2023 hydroid model. |
|
2449
|
|
|
*/ |
|
2450
|
|
|
public const EPSG_GREENLAND_LOWEST_ASTRONOMIC_TIDE_2023 = 'urn:ogc:def:datum:EPSG::1388'; |
|
2451
|
|
|
|
|
2452
|
|
|
/** |
|
2453
|
|
|
* Greenland Mean Sea Level (2023) |
|
2454
|
|
|
* Type: Vertical |
|
2455
|
|
|
* Extent: Greenland - offshore |
|
2456
|
|
|
* Mean sea level as determined by satellite altimetry and coastal tide gauges. Defined with respect to GR96 |
|
2457
|
|
|
* through the glmsl_2023 hydroid model. |
|
2458
|
|
|
*/ |
|
2459
|
|
|
public const EPSG_GREENLAND_MEAN_SEA_LEVEL_2023 = 'urn:ogc:def:datum:EPSG::1387'; |
|
2460
|
|
|
|
|
2461
|
|
|
/** |
|
2462
|
|
|
* Greenland Vertical Reference 2000 |
|
2463
|
|
|
* Type: Vertical |
|
2464
|
|
|
* Extent: Greenland between 59°N and 84°N and west of 10°W |
|
2465
|
|
|
* Defined through the gravimetric geoid 2000 model locally aligned with MSL at a number of sites. |
|
2466
|
|
|
* Orthometric heights. Replaced by GVR2016. |
|
2467
|
|
|
*/ |
|
2468
|
|
|
public const EPSG_GREENLAND_VERTICAL_REFERENCE_2000 = 'urn:ogc:def:datum:EPSG::1199'; |
|
2469
|
|
|
|
|
2470
|
|
|
/** |
|
2471
|
|
|
* Greenland Vertical Reference 2016 |
|
2472
|
|
|
* Type: Vertical |
|
2473
|
|
|
* Extent: Greenland between 58°N and 85°N and west of 7°W |
|
2474
|
|
|
* Defined through the gravimetric geoid 2016 model locally aligned to MSL as measured at Nuuk during the 1960s. |
|
2475
|
|
|
* Orthometric heights. Replaces GVR2000. |
|
2476
|
|
|
*/ |
|
2477
|
|
|
public const EPSG_GREENLAND_VERTICAL_REFERENCE_2016 = 'urn:ogc:def:datum:EPSG::1200'; |
|
2478
|
|
|
|
|
2479
|
|
|
/** |
|
2480
|
|
|
* Grenada 1953 |
|
2481
|
|
|
* Type: Geodetic |
|
2482
|
|
|
* Extent: Grenada and southern Grenadine Islands - onshore |
|
2483
|
|
|
* Fundamental point: station GS8, Sante Marie. |
|
2484
|
|
|
*/ |
|
2485
|
|
|
public const EPSG_GRENADA_1953 = 'urn:ogc:def:datum:EPSG::6603'; |
|
2486
|
|
|
|
|
2487
|
|
|
/** |
|
2488
|
|
|
* Guadeloupe 1948 |
|
2489
|
|
|
* Type: Geodetic |
|
2490
|
|
|
* Extent: Guadeloupe - onshore - Basse-Terre, Grande-Terre, La Desirade, Marie-Galante, Les Saintes |
|
2491
|
|
|
* Replaced by RRAF 1991 (datum code 1047). |
|
2492
|
|
|
*/ |
|
2493
|
|
|
public const EPSG_GUADELOUPE_1948 = 'urn:ogc:def:datum:EPSG::6622'; |
|
2494
|
|
|
|
|
2495
|
|
|
/** |
|
2496
|
|
|
* Guadeloupe 1951 |
|
2497
|
|
|
* Type: Vertical |
|
2498
|
|
|
* Extent: Guadeloupe - onshore - Basse-Terre and Grande-Terre |
|
2499
|
|
|
* Mean sea level July 1947 to June 1948 at Pointe-Fouillole (Pointe-à-Pitre harbour). Origin = marker AO'-12 with |
|
2500
|
|
|
* height of 1.917m above msl. |
|
2501
|
|
|
* Orthometric heights. Replaced by Guadeloupe 1988 (datum code 5155). Guadeloupe 1951 height 0.00m is 0.629m above |
|
2502
|
|
|
* 1947-48 sounding datum. |
|
2503
|
|
|
*/ |
|
2504
|
|
|
public const EPSG_GUADELOUPE_1951 = 'urn:ogc:def:datum:EPSG::5193'; |
|
2505
|
|
|
|
|
2506
|
|
|
/** |
|
2507
|
|
|
* Guadeloupe 1988 |
|
2508
|
|
|
* Type: Vertical |
|
2509
|
|
|
* Extent: Guadeloupe - onshore - Basse-Terre and Grande-Terre |
|
2510
|
|
|
* Mean sea level July 1947 to June 1948 at Pointe-Fouillole (Pointe-à-Pitre harbour). Origin = marker GO-7 |
|
2511
|
|
|
* (formerly AO'-5) with defined height of 2.67m above msl adopted from 1951 value. Guadeloupe 1988 height 0.00m is |
|
2512
|
|
|
* 0.46m above 1984 sounding datum. |
|
2513
|
|
|
* Orthometric heights. Replaces Guadeloupe 1951 (datum code 5193). |
|
2514
|
|
|
*/ |
|
2515
|
|
|
public const EPSG_GUADELOUPE_1988 = 'urn:ogc:def:datum:EPSG::5155'; |
|
2516
|
|
|
|
|
2517
|
|
|
/** |
|
2518
|
|
|
* Guam 1963 |
|
2519
|
|
|
* Type: Geodetic |
|
2520
|
|
|
* Extent: Guam - onshore. Northern Mariana Islands - onshore |
|
2521
|
|
|
* Fundamental point: Tagcha. Latitude: 13°22'38.49"N, longitude: 144°45'51.56"E (of Greenwich). |
|
2522
|
|
|
* Replaced by NAD83(HARN). |
|
2523
|
|
|
*/ |
|
2524
|
|
|
public const EPSG_GUAM_1963 = 'urn:ogc:def:datum:EPSG::6675'; |
|
2525
|
|
|
|
|
2526
|
|
|
/** |
|
2527
|
|
|
* Guam Vertical Datum of 1963 |
|
2528
|
|
|
* Type: Vertical |
|
2529
|
|
|
* Extent: Guam - onshore |
|
2530
|
|
|
* Mean sea level at Apra harbor, Guam, 1949-1962. Benchmark NO 5 1949 = 0.599m. |
|
2531
|
|
|
* Replaced by Guam vertical datum of 2004 (datum code 1126). |
|
2532
|
|
|
*/ |
|
2533
|
|
|
public const EPSG_GUAM_VERTICAL_DATUM_OF_1963 = 'urn:ogc:def:datum:EPSG::1122'; |
|
2534
|
|
|
|
|
2535
|
|
|
/** |
|
2536
|
|
|
* Guam Vertical Datum of 2004 |
|
2537
|
|
|
* Type: Vertical |
|
2538
|
|
|
* Extent: Guam - onshore |
|
2539
|
|
|
* Mean sea level at Apra harbor, Guam. Benchmark 1630000 TIDAL 4 = 2.170m relative to US National Tidal Datum |
|
2540
|
|
|
* Epoch 1983-2001. MSL is 0.419m above MLLW and the BM is 2.589m above MLLW. |
|
2541
|
|
|
* Replaces Guam Vertical Datum of 1963 (datum code 1122). |
|
2542
|
|
|
*/ |
|
2543
|
|
|
public const EPSG_GUAM_VERTICAL_DATUM_OF_2004 = 'urn:ogc:def:datum:EPSG::1126'; |
|
2544
|
|
|
|
|
2545
|
|
|
/** |
|
2546
|
|
|
* Gulshan 303 |
|
2547
|
|
|
* Type: Geodetic |
|
2548
|
|
|
* Extent: Bangladesh |
|
2549
|
|
|
* Gulshan garden, Dhaka. |
|
2550
|
|
|
* Network of more than 140 control points observed and adjusted in 1995 by Japan International Cooperation Agency |
|
2551
|
|
|
* (JICA). |
|
2552
|
|
|
*/ |
|
2553
|
|
|
public const EPSG_GULSHAN_303 = 'urn:ogc:def:datum:EPSG::6682'; |
|
2554
|
|
|
|
|
2555
|
|
|
/** |
|
2556
|
|
|
* Gunung Segara |
|
2557
|
|
|
* Type: Geodetic |
|
2558
|
|
|
* Extent: Indonesia - Kalimantan - onshore east coastal area including Mahakam delta coastal and offshore shelf |
|
2559
|
|
|
* areas |
|
2560
|
|
|
* Station P5 (Gunung Segara). Latitude 0°32'12.83"S, longitude 117°08'48.47"E (of Greenwich). |
|
2561
|
|
|
*/ |
|
2562
|
|
|
public const EPSG_GUNUNG_SEGARA = 'urn:ogc:def:datum:EPSG::6613'; |
|
2563
|
|
|
|
|
2564
|
|
|
/** |
|
2565
|
|
|
* Gunung Segara (Jakarta) |
|
2566
|
|
|
* Type: Geodetic |
|
2567
|
|
|
* Extent: Indonesia - Kalimantan - onshore east coastal area including Mahakam delta coastal and offshore shelf |
|
2568
|
|
|
* areas |
|
2569
|
|
|
* Station P5 (Gunung Segara) 0°32'12.83"S, 117°08'48.47"E (of Greenwich). Longitude 8°20'20.68"E (of Jakarta). |
|
2570
|
|
|
*/ |
|
2571
|
|
|
public const EPSG_GUNUNG_SEGARA_JAKARTA = 'urn:ogc:def:datum:EPSG::6820'; |
|
2572
|
|
|
|
|
2573
|
|
|
/** |
|
2574
|
|
|
* Gusterberg (Ferro) |
|
2575
|
|
|
* Type: Geodetic |
|
2576
|
|
|
* Extent: Austria - Upper Austria and Salzburg provinces. Czechia - Bohemia |
|
2577
|
|
|
* Fundamental point: Gusterberg. Latitude: 48°02'18.47"N, longitude: 31°48'15.05"E (of Ferro). |
|
2578
|
|
|
*/ |
|
2579
|
|
|
public const EPSG_GUSTERBERG_FERRO = 'urn:ogc:def:datum:EPSG::1188'; |
|
2580
|
|
|
|
|
2581
|
|
|
/** |
|
2582
|
|
|
* HS2 Intermediate Reference Frame |
|
2583
|
|
|
* Type: Geodetic |
|
2584
|
|
|
* Extent: UK - HS2 phases 1 and 2a railway corridor from London to Birmingham, Lichfield and Crewe |
|
2585
|
|
|
* Defined through application of the HS2TN02 transformation to ETRS89 as realized through OSNet v2001 CORS. |
|
2586
|
|
|
* Subsequently realized through application of the HS2TN15 transformation to ETRS89 as realized through OSNet |
|
2587
|
|
|
* v2009 CORS. |
|
2588
|
|
|
* Created to support intermediate CRS "HS2-IRF" in the emulation of the HS2P1+14 Snake map projection. |
|
2589
|
|
|
*/ |
|
2590
|
|
|
public const EPSG_HS2_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1264'; |
|
2591
|
|
|
|
|
2592
|
|
|
/** |
|
2593
|
|
|
* HS2 Vertical Reference Frame |
|
2594
|
|
|
* Type: Vertical |
|
2595
|
|
|
* Extent: UK - HS2 phases 1 and 2a railway corridor from London to Birmingham, Lichfield and Crewe |
|
2596
|
|
|
* Equivalent to Ordnance Datum Newlyn as realized through OSNet v2001 and OSGM02. |
|
2597
|
|
|
* After introduction of OSNet v2009 CORS, OSTN15 and the OSGM15 geoid model, the HS2 VRF is maintained equivalent |
|
2598
|
|
|
* to OSNet v2001 and OSGM02 through HS2GM15 (code 9304). |
|
2599
|
|
|
*/ |
|
2600
|
|
|
public const EPSG_HS2_VERTICAL_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1265'; |
|
2601
|
|
|
|
|
2602
|
|
|
/** |
|
2603
|
|
|
* HULLEE13 Intermediate Reference Frame |
|
2604
|
|
|
* Type: Geodetic |
|
2605
|
|
|
* Extent: UK - on or related to the rail route from the Morley tunnel through Leeds to Hull |
|
2606
|
|
|
* Defined through the application of the HULLEE13 NTv2 transformation to ETRS89 as realized through OSNet v2009 |
|
2607
|
|
|
* CORS. |
|
2608
|
|
|
* Created in 2022 to support intermediate CRS "HULLEE13-IRF" in the emulation of the HULLEE13 Snake map |
|
2609
|
|
|
* projection. |
|
2610
|
|
|
*/ |
|
2611
|
|
|
public const EPSG_HULLEE13_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1317'; |
|
2612
|
|
|
|
|
2613
|
|
|
/** |
|
2614
|
|
|
* Ha Tien 1960 |
|
2615
|
|
|
* Type: Vertical |
|
2616
|
|
|
* Extent: Cambodia - mainland onshore; Vietnam - mainland onshore |
|
2617
|
|
|
* In Vietnam replaced by Hon Dau in 1992. |
|
2618
|
|
|
*/ |
|
2619
|
|
|
public const EPSG_HA_TIEN_1960 = 'urn:ogc:def:datum:EPSG::5125'; |
|
2620
|
|
|
|
|
2621
|
|
|
/** |
|
2622
|
|
|
* Hanoi 1972 |
|
2623
|
|
|
* Type: Geodetic |
|
2624
|
|
|
* Extent: Vietnam - onshore. |
|
2625
|
|
|
*/ |
|
2626
|
|
|
public const EPSG_HANOI_1972 = 'urn:ogc:def:datum:EPSG::6147'; |
|
2627
|
|
|
|
|
2628
|
|
|
/** |
|
2629
|
|
|
* Hartebeesthoek94 |
|
2630
|
|
|
* Type: Geodetic |
|
2631
|
|
|
* Extent: Eswatini (Swaziland); Lesotho; South Africa |
|
2632
|
|
|
* Coincident with ITRF91 at epoch 1994.0 at Hartebeesthoek astronomical observatory near Pretoria. |
|
2633
|
|
|
* Replaces Cape datum (code 6222). |
|
2634
|
|
|
*/ |
|
2635
|
|
|
public const EPSG_HARTEBEESTHOEK94 = 'urn:ogc:def:datum:EPSG::6148'; |
|
2636
|
|
|
|
|
2637
|
|
|
/** |
|
2638
|
|
|
* Helle 1954 |
|
2639
|
|
|
* Type: Geodetic |
|
2640
|
|
|
* Extent: Jan Mayen - onshore. |
|
2641
|
|
|
*/ |
|
2642
|
|
|
public const EPSG_HELLE_1954 = 'urn:ogc:def:datum:EPSG::6660'; |
|
2643
|
|
|
|
|
2644
|
|
|
/** |
|
2645
|
|
|
* Helsinki 1943 |
|
2646
|
|
|
* Type: Vertical |
|
2647
|
|
|
* Extent: Finland - onshore mainland south of approximately 66°N |
|
2648
|
|
|
* MSL at Helsinki during 1943. |
|
2649
|
|
|
* Uses orthometric heights. Effect of the land uplift during the 2nd national levelling was not taken into |
|
2650
|
|
|
* account. Replaced by N60 (datum code 5116). |
|
2651
|
|
|
*/ |
|
2652
|
|
|
public const EPSG_HELSINKI_1943 = 'urn:ogc:def:datum:EPSG::1213'; |
|
2653
|
|
|
|
|
2654
|
|
|
/** |
|
2655
|
|
|
* Helsinki 1960 |
|
2656
|
|
|
* Type: Vertical |
|
2657
|
|
|
* Extent: Finland - onshore |
|
2658
|
|
|
* MSL at Helsinki during 1960. |
|
2659
|
|
|
* Uses orthometric heights. Replaced by N2000 (datum code 1030). |
|
2660
|
|
|
*/ |
|
2661
|
|
|
public const EPSG_HELSINKI_1960 = 'urn:ogc:def:datum:EPSG::5116'; |
|
2662
|
|
|
|
|
2663
|
|
|
/** |
|
2664
|
|
|
* Herat North |
|
2665
|
|
|
* Type: Geodetic |
|
2666
|
|
|
* Extent: Afghanistan |
|
2667
|
|
|
* Fundamental point: Herat North. Latitude: 34°23'09.08"N, longitude: 64°10'58.94"E (of Greenwich). |
|
2668
|
|
|
*/ |
|
2669
|
|
|
public const EPSG_HERAT_NORTH = 'urn:ogc:def:datum:EPSG::6255'; |
|
2670
|
|
|
|
|
2671
|
|
|
/** |
|
2672
|
|
|
* High Water |
|
2673
|
|
|
* Type: Vertical |
|
2674
|
|
|
* Extent: World |
|
2675
|
|
|
* Not specific to any location or epoch. |
|
2676
|
|
|
* The highest water level reached at a place in one tidal cycle. When used on inland (non-tidal) waters it is |
|
2677
|
|
|
* generally defined as a level which the daily mean water level exceeds less than 5% of the time. |
|
2678
|
|
|
*/ |
|
2679
|
|
|
public const EPSG_HIGH_WATER = 'urn:ogc:def:datum:EPSG::1094'; |
|
2680
|
|
|
|
|
2681
|
|
|
/** |
|
2682
|
|
|
* Higher High Water Large Tide |
|
2683
|
|
|
* Type: Vertical |
|
2684
|
|
|
* Extent: World |
|
2685
|
|
|
* Not specific to any location or epoch. |
|
2686
|
|
|
* The average of the highest high waters, one from each of 19 years of observations. |
|
2687
|
|
|
*/ |
|
2688
|
|
|
public const EPSG_HIGHER_HIGH_WATER_LARGE_TIDE = 'urn:ogc:def:datum:EPSG::1084'; |
|
2689
|
|
|
|
|
2690
|
|
|
/** |
|
2691
|
|
|
* Highest Astronomical Tide |
|
2692
|
|
|
* Type: Vertical |
|
2693
|
|
|
* Extent: World |
|
2694
|
|
|
* Not specific to any location or epoch. |
|
2695
|
|
|
* The highest tide level which can be predicted to occur under average meteorological conditions and under any |
|
2696
|
|
|
* combination of astronomical conditions. |
|
2697
|
|
|
*/ |
|
2698
|
|
|
public const EPSG_HIGHEST_ASTRONOMICAL_TIDE = 'urn:ogc:def:datum:EPSG::1082'; |
|
2699
|
|
|
|
|
2700
|
|
|
/** |
|
2701
|
|
|
* Hito XVIII 1963 |
|
2702
|
|
|
* Type: Geodetic |
|
2703
|
|
|
* Extent: Chile - Tierra del Fuego, onshore; Argentina - Tierra del Fuego, Atlantic west of 66°W |
|
2704
|
|
|
* Chile-Argentina boundary survey. |
|
2705
|
|
|
* Used in Tierra del Fuego. |
|
2706
|
|
|
*/ |
|
2707
|
|
|
public const EPSG_HITO_XVIII_1963 = 'urn:ogc:def:datum:EPSG::6254'; |
|
2708
|
|
|
|
|
2709
|
|
|
/** |
|
2710
|
|
|
* Hjorsey 1955 |
|
2711
|
|
|
* Type: Geodetic |
|
2712
|
|
|
* Extent: Iceland - mainland |
|
2713
|
|
|
* Fundamental point: Latitude: 64°31'29.26"N, longitude: 22°22'05.84"W (of Greenwich). |
|
2714
|
|
|
*/ |
|
2715
|
|
|
public const EPSG_HJORSEY_1955 = 'urn:ogc:def:datum:EPSG::6658'; |
|
2716
|
|
|
|
|
2717
|
|
|
/** |
|
2718
|
|
|
* Hon Dau 1992 |
|
2719
|
|
|
* Type: Vertical |
|
2720
|
|
|
* Extent: Vietnam - mainland onshore |
|
2721
|
|
|
* Replaces Ha Tien in Vietnam. |
|
2722
|
|
|
*/ |
|
2723
|
|
|
public const EPSG_HON_DAU_1992 = 'urn:ogc:def:datum:EPSG::5126'; |
|
2724
|
|
|
|
|
2725
|
|
|
/** |
|
2726
|
|
|
* Hong Kong 1963 |
|
2727
|
|
|
* Type: Geodetic |
|
2728
|
|
|
* Extent: China - Hong Kong |
|
2729
|
|
|
* Fundamental point: Trig "Zero", 38.4 feet south along the transit circle of the Kowloon Observatory. Latitude |
|
2730
|
|
|
* 22°18'12.82"N, longitude 114°10'18.75"E (of Greenwich). |
|
2731
|
|
|
* Replaced by Hong Kong 1963(67) for military purposes only in 1967. Replaced by Hong Kong 1980. |
|
2732
|
|
|
*/ |
|
2733
|
|
|
public const EPSG_HONG_KONG_1963 = 'urn:ogc:def:datum:EPSG::6738'; |
|
2734
|
|
|
|
|
2735
|
|
|
/** |
|
2736
|
|
|
* Hong Kong 1963(67) |
|
2737
|
|
|
* Type: Geodetic |
|
2738
|
|
|
* Extent: China - Hong Kong |
|
2739
|
|
|
* Fundamental point: Trig "Zero", 38.4 feet south along the transit circle of the Kowloon Observatory. Latitude |
|
2740
|
|
|
* 22°18'12.82"N, longitude 114°10'18.75"E (of Greenwich). |
|
2741
|
|
|
* Replaces Hong Kong 1963 for military purposes only in 1967. Replaced by Hong Kong 1980. |
|
2742
|
|
|
*/ |
|
2743
|
|
|
public const EPSG_HONG_KONG_1963_67 = 'urn:ogc:def:datum:EPSG::6739'; |
|
2744
|
|
|
|
|
2745
|
|
|
/** |
|
2746
|
|
|
* Hong Kong 1980 |
|
2747
|
|
|
* Type: Geodetic |
|
2748
|
|
|
* Extent: China - Hong Kong |
|
2749
|
|
|
* Fundamental point: Trig "Zero", 38.4 feet south along the transit circle of the Kowloon Observatory. Latitude |
|
2750
|
|
|
* 22°18'12.82"N, longitude 114°10'18.75"E (of Greenwich). |
|
2751
|
|
|
* Replaces Hong Kong 1963 and Hong Kong 1963(67). |
|
2752
|
|
|
*/ |
|
2753
|
|
|
public const EPSG_HONG_KONG_1980 = 'urn:ogc:def:datum:EPSG::6611'; |
|
2754
|
|
|
|
|
2755
|
|
|
/** |
|
2756
|
|
|
* Hong Kong Chart Datum |
|
2757
|
|
|
* Type: Vertical |
|
2758
|
|
|
* Extent: China - Hong Kong - offshore |
|
2759
|
|
|
* Approximates to Lowest Astronomic Tide level (LAT). |
|
2760
|
|
|
* Chart datum is 0.15 metres below Hong Kong Principal Datum (code 5135) and 1.38m below MSL at Quarry Bay. |
|
2761
|
|
|
*/ |
|
2762
|
|
|
public const EPSG_HONG_KONG_CHART_DATUM = 'urn:ogc:def:datum:EPSG::5136'; |
|
2763
|
|
|
|
|
2764
|
|
|
/** |
|
2765
|
|
|
* Hong Kong Geodetic |
|
2766
|
|
|
* Type: Geodetic |
|
2767
|
|
|
* Extent: China - Hong Kong |
|
2768
|
|
|
* ITRF96 at epoch 1998.121 |
|
2769
|
|
|
* Locally sometimes referred to as ITRF96 or WGS 84, these are not strictly correct as it applies only at epoch |
|
2770
|
|
|
* 1998.121 and ignores subsequent tectonic plate motion. |
|
2771
|
|
|
*/ |
|
2772
|
|
|
public const EPSG_HONG_KONG_GEODETIC = 'urn:ogc:def:datum:EPSG::1209'; |
|
2773
|
|
|
|
|
2774
|
|
|
/** |
|
2775
|
|
|
* Hong Kong Principal Datum |
|
2776
|
|
|
* Type: Vertical |
|
2777
|
|
|
* Extent: China - Hong Kong - onshore |
|
2778
|
|
|
* 1.23m below the mean of 19 years (1965-83) observations of tide levels at North Point, Victoria Harbour. |
|
2779
|
|
|
*/ |
|
2780
|
|
|
public const EPSG_HONG_KONG_PRINCIPAL_DATUM = 'urn:ogc:def:datum:EPSG::5135'; |
|
2781
|
|
|
|
|
2782
|
|
|
/** |
|
2783
|
|
|
* Horta |
|
2784
|
|
|
* Type: Vertical |
|
2785
|
|
|
* Extent: Portugal - central Azores - Faial island onshore |
|
2786
|
|
|
* Mean Sea Level during 1935 at Horta. |
|
2787
|
|
|
* Orthometric heights. |
|
2788
|
|
|
*/ |
|
2789
|
|
|
public const EPSG_HORTA = 'urn:ogc:def:datum:EPSG::1104'; |
|
2790
|
|
|
|
|
2791
|
|
|
/** |
|
2792
|
|
|
* Hu Tzu Shan 1950 |
|
2793
|
|
|
* Type: Geodetic |
|
2794
|
|
|
* Extent: Taiwan, Republic of China - onshore - Taiwan Island, Penghu (Pescadores) Islands |
|
2795
|
|
|
* Fundamental point: Hu Tzu Shan. Latitude: 23°58'32.34"N, longitude: 120°58'25.975"E (of Greenwich). |
|
2796
|
|
|
*/ |
|
2797
|
|
|
public const EPSG_HU_TZU_SHAN_1950 = 'urn:ogc:def:datum:EPSG::6236'; |
|
2798
|
|
|
|
|
2799
|
|
|
/** |
|
2800
|
|
|
* Huahine SAU 2001 |
|
2801
|
|
|
* Type: Vertical |
|
2802
|
|
|
* Extent: French Polynesia - Society Islands - Huahine |
|
2803
|
|
|
* Fundamental benchmark: SHOM B3 |
|
2804
|
|
|
* Included as part of NGPF - see datum code 5195. |
|
2805
|
|
|
*/ |
|
2806
|
|
|
public const EPSG_HUAHINE_SAU_2001 = 'urn:ogc:def:datum:EPSG::5200'; |
|
2807
|
|
|
|
|
2808
|
|
|
/** |
|
2809
|
|
|
* Hughes 1980 |
|
2810
|
|
|
* Type: Geodetic |
|
2811
|
|
|
* Extent: World |
|
2812
|
|
|
* Centre of the Earth. |
|
2813
|
|
|
* Used in US Air Force Defense Meteorological Satellite Program (DMSP) Special Sensor Microwave Imager (SSM/I) and |
|
2814
|
|
|
* Special Sensor Microwave Imager/Sounder (SSMIS) processing software. |
|
2815
|
|
|
*/ |
|
2816
|
|
|
public const EPSG_HUGHES_1980 = 'urn:ogc:def:datum:EPSG::1359'; |
|
2817
|
|
|
|
|
2818
|
|
|
/** |
|
2819
|
|
|
* Hungarian Datum 1909 |
|
2820
|
|
|
* Type: Geodetic |
|
2821
|
|
|
* Extent: Hungary |
|
2822
|
|
|
* Fundamental point not given in information source, but presumably Szolohegy which is origin of later HD72. |
|
2823
|
|
|
* Replaced earlier HD1863 adjustment also on Bessel ellipsoid. Both HD1863 and HD1909 were originally on Ferro |
|
2824
|
|
|
* Prime Meridian but subsequently converted to Greenwich. Replaced by HD72 (datum code 6237). |
|
2825
|
|
|
*/ |
|
2826
|
|
|
public const EPSG_HUNGARIAN_DATUM_1909 = 'urn:ogc:def:datum:EPSG::1024'; |
|
2827
|
|
|
|
|
2828
|
|
|
/** |
|
2829
|
|
|
* Hungarian Datum 1972 |
|
2830
|
|
|
* Type: Geodetic |
|
2831
|
|
|
* Extent: Hungary |
|
2832
|
|
|
* Fundamental point: Szolohegy. Latitude: 47°17'32,6156"N, longitude 19°36'09.9865"E (of Greenwich); geoid |
|
2833
|
|
|
* height 6.56m. |
|
2834
|
|
|
* Replaced Hungarian Datum 1909 (EPSG datum code 1024). |
|
2835
|
|
|
*/ |
|
2836
|
|
|
public const EPSG_HUNGARIAN_DATUM_1972 = 'urn:ogc:def:datum:EPSG::6237'; |
|
2837
|
|
|
|
|
2838
|
|
|
/** |
|
2839
|
|
|
* IG05 Intermediate Datum |
|
2840
|
|
|
* Type: Geodetic |
|
2841
|
|
|
* Extent: Israel - onshore; Palestine Territory - onshore |
|
2842
|
|
|
* Defined by transformation from IGD05 at epoch 2004.75. |
|
2843
|
|
|
*/ |
|
2844
|
|
|
public const EPSG_IG05_INTERMEDIATE_DATUM = 'urn:ogc:def:datum:EPSG::1142'; |
|
2845
|
|
|
|
|
2846
|
|
|
/** |
|
2847
|
|
|
* IG05/12 Intermediate Datum |
|
2848
|
|
|
* Type: Geodetic |
|
2849
|
|
|
* Extent: Israel - onshore; Palestine Territory - onshore |
|
2850
|
|
|
* Defined by transformation from IGD05/12 at epoch 2012.00. |
|
2851
|
|
|
*/ |
|
2852
|
|
|
public const EPSG_IG05_12_INTERMEDIATE_DATUM = 'urn:ogc:def:datum:EPSG::1144'; |
|
2853
|
|
|
|
|
2854
|
|
|
/** |
|
2855
|
|
|
* IGC 1962 Arc of the 6th Parallel South |
|
2856
|
|
|
* Type: Geodetic |
|
2857
|
|
|
* Extent: The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse |
|
2858
|
|
|
* Coordinates of 3 stations determined with respect to Arc 1950: Mulungu 4°47'39.2325"S, 29°59'37.5864"E; |
|
2859
|
|
|
* Nyakawembe 4°14'57.3618"S, 29°42'52.8032"E; Kavula 4°35'15.8634"S, 29°41'14.2693"E (all longitude w.r.t. |
|
2860
|
|
|
* Greenwich). |
|
2861
|
|
|
*/ |
|
2862
|
|
|
public const EPSG_IGC_1962_ARC_OF_THE_6TH_PARALLEL_SOUTH = 'urn:ogc:def:datum:EPSG::6697'; |
|
2863
|
|
|
|
|
2864
|
|
|
/** |
|
2865
|
|
|
* IGN 1962 Kerguelen |
|
2866
|
|
|
* Type: Geodetic |
|
2867
|
|
|
* Extent: French Southern Territories - Kerguelen onshore |
|
2868
|
|
|
* K0 1949. |
|
2869
|
|
|
*/ |
|
2870
|
|
|
public const EPSG_IGN_1962_KERGUELEN = 'urn:ogc:def:datum:EPSG::6698'; |
|
2871
|
|
|
|
|
2872
|
|
|
/** |
|
2873
|
|
|
* IGN 1966 |
|
2874
|
|
|
* Type: Vertical |
|
2875
|
|
|
* Extent: French Polynesia - Society Islands - Tahiti |
|
2876
|
|
|
* Fundamental benchmark: RN501 |
|
2877
|
|
|
* Included as part of NGPF - see datum code 5195. |
|
2878
|
|
|
*/ |
|
2879
|
|
|
public const EPSG_IGN_1966 = 'urn:ogc:def:datum:EPSG::5196'; |
|
2880
|
|
|
|
|
2881
|
|
|
/** |
|
2882
|
|
|
* IGN 1988 LS |
|
2883
|
|
|
* Type: Vertical |
|
2884
|
|
|
* Extent: Guadeloupe - onshore - Les Saintes |
|
2885
|
|
|
* Mean sea level 1984 at Terre de Haut. Origin = marker O de -5 with defined height of 1.441m above msl. IGN 1988 |
|
2886
|
|
|
* LS height 0.00m is 0.46m above 1987 sounding datum; this approximately corresponds with msl at Pointe-à-Pitre |
|
2887
|
|
|
* (see datum code 5155, CRS 5757). |
|
2888
|
|
|
* Orthometric heights. |
|
2889
|
|
|
*/ |
|
2890
|
|
|
public const EPSG_IGN_1988_LS = 'urn:ogc:def:datum:EPSG::5210'; |
|
2891
|
|
|
|
|
2892
|
|
|
/** |
|
2893
|
|
|
* IGN 1988 MG |
|
2894
|
|
|
* Type: Vertical |
|
2895
|
|
|
* Extent: Guadeloupe - onshore - Marie-Galante |
|
2896
|
|
|
* Mean sea level 1987 at Grand-Bourg. Origin = marker M0-I with defined height of 0.832m above msl. IGN 1988 MG |
|
2897
|
|
|
* height 0.00m is 0.46m above 1987 sounding datum; this approximately corresponds with msl at Pointe-à-Pitre (see |
|
2898
|
|
|
* datum code 5155, CRS code 5757). |
|
2899
|
|
|
* Orthometric heights. |
|
2900
|
|
|
*/ |
|
2901
|
|
|
public const EPSG_IGN_1988_MG = 'urn:ogc:def:datum:EPSG::5211'; |
|
2902
|
|
|
|
|
2903
|
|
|
/** |
|
2904
|
|
|
* IGN 1988 SB |
|
2905
|
|
|
* Type: Vertical |
|
2906
|
|
|
* Extent: Guadeloupe - onshore - St Barthelemy island |
|
2907
|
|
|
* Mean sea level 1988 at port of Gustavia. Origin = marker A.ef-2 with defined height of 0.621m above msl. IGN |
|
2908
|
|
|
* 1988 SB height 0.00m deduced to be 0.201m above mean sea level at Pointe-à-Pitre. |
|
2909
|
|
|
* Orthometric heights. |
|
2910
|
|
|
*/ |
|
2911
|
|
|
public const EPSG_IGN_1988_SB = 'urn:ogc:def:datum:EPSG::5213'; |
|
2912
|
|
|
|
|
2913
|
|
|
/** |
|
2914
|
|
|
* IGN 1988 SM |
|
2915
|
|
|
* Type: Vertical |
|
2916
|
|
|
* Extent: Guadeloupe - onshore - St Martin island |
|
2917
|
|
|
* Mean sea level 1949-1950 deduced at Fort Marigot. Origin = marker AS-13 with defined height of 6.990m above msl. |
|
2918
|
|
|
* IGN 1988 SM height 0.00m deduced to be 0.41m above sounding datum. |
|
2919
|
|
|
* Orthometric heights. |
|
2920
|
|
|
*/ |
|
2921
|
|
|
public const EPSG_IGN_1988_SM = 'urn:ogc:def:datum:EPSG::5214'; |
|
2922
|
|
|
|
|
2923
|
|
|
/** |
|
2924
|
|
|
* IGN 1992 LD |
|
2925
|
|
|
* Type: Vertical |
|
2926
|
|
|
* Extent: Guadeloupe - onshore - La Desirade |
|
2927
|
|
|
* Mean sea level at Pointe-à-Pitre. Origin = marker A with defined height of 0.792m above msl. IGN 1992 LD height |
|
2928
|
|
|
* 0.00m is 0.629m above sounding datum at Pointe-à-Pitre. |
|
2929
|
|
|
* Orthometric heights. Replaced by IGN 2008 LD (datum code 1250). |
|
2930
|
|
|
*/ |
|
2931
|
|
|
public const EPSG_IGN_1992_LD = 'urn:ogc:def:datum:EPSG::5212'; |
|
2932
|
|
|
|
|
2933
|
|
|
/** |
|
2934
|
|
|
* IGN 2008 LD |
|
2935
|
|
|
* Type: Vertical |
|
2936
|
|
|
* Extent: Guadeloupe - onshore - La Desirade |
|
2937
|
|
|
* Mean sea level at Pointe-à-Pitre. Origin = IGN Marker 20A with defined height of 0.50 m above msl of 1987. |
|
2938
|
|
|
* Orthometric heights. Replaces IGN 1992 LD (datum code 5212). |
|
2939
|
|
|
*/ |
|
2940
|
|
|
public const EPSG_IGN_2008_LD = 'urn:ogc:def:datum:EPSG::1250'; |
|
2941
|
|
|
|
|
2942
|
|
|
/** |
|
2943
|
|
|
* IGN Astro 1960 |
|
2944
|
|
|
* Type: Geodetic |
|
2945
|
|
|
* Extent: Mauritania - onshore |
|
2946
|
|
|
* Realised through a set of independent astronomically-positioned points. |
|
2947
|
|
|
* Observed during 1959-1960. Independent points not connected through a network. Relative accuracy estimated at |
|
2948
|
|
|
* 50-100m. Replaced by Mauritania 1999 (datum code 6702). |
|
2949
|
|
|
*/ |
|
2950
|
|
|
public const EPSG_IGN_ASTRO_1960 = 'urn:ogc:def:datum:EPSG::6700'; |
|
2951
|
|
|
|
|
2952
|
|
|
/** |
|
2953
|
|
|
* IGN53 Mare |
|
2954
|
|
|
* Type: Geodetic |
|
2955
|
|
|
* Extent: New Caledonia - Loyalty Islands - Mare |
|
2956
|
|
|
* South-east end of the La Roche base. |
|
2957
|
|
|
*/ |
|
2958
|
|
|
public const EPSG_IGN53_MARE = 'urn:ogc:def:datum:EPSG::6641'; |
|
2959
|
|
|
|
|
2960
|
|
|
/** |
|
2961
|
|
|
* IGN56 Lifou |
|
2962
|
|
|
* Type: Geodetic |
|
2963
|
|
|
* Extent: New Caledonia - Loyalty Islands - Lifou |
|
2964
|
|
|
* South end of the Goume base. |
|
2965
|
|
|
*/ |
|
2966
|
|
|
public const EPSG_IGN56_LIFOU = 'urn:ogc:def:datum:EPSG::6633'; |
|
2967
|
|
|
|
|
2968
|
|
|
/** |
|
2969
|
|
|
* IGN63 Hiva Oa |
|
2970
|
|
|
* Type: Geodetic |
|
2971
|
|
|
* Extent: French Polynesia - Marquesas Islands - Hiva Oa and Tahuata |
|
2972
|
|
|
* Fundamental point: Atuona. Latitude: 9°48'27.20"S, longitude: 139°02'15.45"W (of Greenwich). |
|
2973
|
|
|
* Replaced by RGPF (datum code 6687). |
|
2974
|
|
|
*/ |
|
2975
|
|
|
public const EPSG_IGN63_HIVA_OA = 'urn:ogc:def:datum:EPSG::6689'; |
|
2976
|
|
|
|
|
2977
|
|
|
/** |
|
2978
|
|
|
* IGN72 Grande Terre |
|
2979
|
|
|
* Type: Geodetic |
|
2980
|
|
|
* Extent: New Caledonia - Grande Terre |
|
2981
|
|
|
* North end of Gomen base. |
|
2982
|
|
|
*/ |
|
2983
|
|
|
public const EPSG_IGN72_GRANDE_TERRE = 'urn:ogc:def:datum:EPSG::6634'; |
|
2984
|
|
|
|
|
2985
|
|
|
/** |
|
2986
|
|
|
* IGN72 Nuku Hiva |
|
2987
|
|
|
* Type: Geodetic |
|
2988
|
|
|
* Extent: French Polynesia - Marquesas Islands - Nuku Hiva, Ua Huka and Ua Pou |
|
2989
|
|
|
* Fundamental point: Taiohae. Latitude: 8°55'03.97"S, longitude: 140°05'36.24"W (of Greenwich). |
|
2990
|
|
|
* Replaced by RGPF (datum code 6687). |
|
2991
|
|
|
*/ |
|
2992
|
|
|
public const EPSG_IGN72_NUKU_HIVA = 'urn:ogc:def:datum:EPSG::6630'; |
|
2993
|
|
|
|
|
2994
|
|
|
/** |
|
2995
|
|
|
* IGS00 |
|
2996
|
|
|
* Type: Dynamic geodetic |
|
2997
|
|
|
* Extent: World |
|
2998
|
|
|
* Derived from ITRF2000 at epoch 1998.00 through a subset of 54 stable IGS station coordinates. Preserves the ITRF |
|
2999
|
|
|
* origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques. |
|
3000
|
|
|
* Used for IGS products from GPS week 1143 through GPS week 1252 (2001-12-02 through 2004-01-10). Replaces IGS97, |
|
3001
|
|
|
* replaced by IGb00. For all practical purposes coincident with ITRF2000. |
|
3002
|
|
|
*/ |
|
3003
|
|
|
public const EPSG_IGS00 = 'urn:ogc:def:datum:EPSG::1245'; |
|
3004
|
|
|
|
|
3005
|
|
|
/** |
|
3006
|
|
|
* IGS05 |
|
3007
|
|
|
* Type: Dynamic geodetic |
|
3008
|
|
|
* Extent: World |
|
3009
|
|
|
* Derived from ITRF2005 at epoch 2000.00 through a subset of 139 stable IGS station coordinates. Preserves the |
|
3010
|
|
|
* ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic |
|
3011
|
|
|
* techniques. |
|
3012
|
|
|
* Used for IGS products from GPS week 1400 through GPS week 1631 (2006-11-05 to 2011-04-16). Replaces IGb00, |
|
3013
|
|
|
* replaced by IGb08. For all practical purposes coincident with ITRF2005. |
|
3014
|
|
|
*/ |
|
3015
|
|
|
public const EPSG_IGS05 = 'urn:ogc:def:datum:EPSG::1247'; |
|
3016
|
|
|
|
|
3017
|
|
|
/** |
|
3018
|
|
|
* IGS08 |
|
3019
|
|
|
* Type: Dynamic geodetic |
|
3020
|
|
|
* Extent: World |
|
3021
|
|
|
* Derived from ITRF2008 at epoch 2005.00 through a subset of 232 stable IGS station coordinates. Preserves the |
|
3022
|
|
|
* ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic |
|
3023
|
|
|
* techniques. |
|
3024
|
|
|
* Used for IGS products from GPS week 1632 through GPS week 1708 (2011-04-17 through 2012-10-06). Replaces IGS05. |
|
3025
|
|
|
* Replaced by IGb08. For all practical purposes coincident with ITRF2008. |
|
3026
|
|
|
*/ |
|
3027
|
|
|
public const EPSG_IGS08 = 'urn:ogc:def:datum:EPSG::1141'; |
|
3028
|
|
|
|
|
3029
|
|
|
/** |
|
3030
|
|
|
* IGS14 |
|
3031
|
|
|
* Type: Dynamic geodetic |
|
3032
|
|
|
* Extent: World |
|
3033
|
|
|
* Derived from ITRF2014 at epoch 2010.00 through a subset of 252 stable IGS station coordinates. Preserves the |
|
3034
|
|
|
* ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic |
|
3035
|
|
|
* techniques. |
|
3036
|
|
|
* Used for IGS products from GPS week 1934 (2017-01-29) through GPS week 2105 (2020-05-16). Replaces IGb08, |
|
3037
|
|
|
* replaced by IGb14. For all practical purposes coincident with ITRF2014. |
|
3038
|
|
|
*/ |
|
3039
|
|
|
public const EPSG_IGS14 = 'urn:ogc:def:datum:EPSG::1191'; |
|
3040
|
|
|
|
|
3041
|
|
|
/** |
|
3042
|
|
|
* IGS20 |
|
3043
|
|
|
* Type: Dynamic geodetic |
|
3044
|
|
|
* Extent: World |
|
3045
|
|
|
* A subset of 332 stable, well-performing IGS stations from ITRF2020. |
|
3046
|
|
|
* Used for IGS products from GPS week 2238 (2022-11-27). Replaces IGb14. Compared to IGb14, IGS20 contains 98 new |
|
3047
|
|
|
* stations, mostly in previously sparsely covered areas, but with 25 IGb14 sites removed. For all practical |
|
3048
|
|
|
* purposes coincident with ITRF2020. |
|
3049
|
|
|
*/ |
|
3050
|
|
|
public const EPSG_IGS20 = 'urn:ogc:def:datum:EPSG::1333'; |
|
3051
|
|
|
|
|
3052
|
|
|
/** |
|
3053
|
|
|
* IGS97 |
|
3054
|
|
|
* Type: Dynamic geodetic |
|
3055
|
|
|
* Extent: World |
|
3056
|
|
|
* Derived from ITRF97 at epoch 1997.00 through a subset of stable IGS station coordinates. Preserves the ITRF |
|
3057
|
|
|
* origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques. |
|
3058
|
|
|
* Used for IGS products from GPS week 1065 through GPS week 1142 (2000-06-04 to 2001-12-01). Replaced by IGS00. |
|
3059
|
|
|
* For all practical purposes coincident with ITRF97. |
|
3060
|
|
|
*/ |
|
3061
|
|
|
public const EPSG_IGS97 = 'urn:ogc:def:datum:EPSG::1244'; |
|
3062
|
|
|
|
|
3063
|
|
|
/** |
|
3064
|
|
|
* IGb00 |
|
3065
|
|
|
* Type: Dynamic geodetic |
|
3066
|
|
|
* Extent: World |
|
3067
|
|
|
* Derived from ITRF2000 at epoch 1998.00 through a subset of 99 stable IGS station coordinates. Preserves the ITRF |
|
3068
|
|
|
* origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques. |
|
3069
|
|
|
* Used for IGS products from GPS week 1253 through GPS week 1399 (2004-01-11 to 2006-11-04). Replaces IGS00, |
|
3070
|
|
|
* replaced by IGS05. For all practical purposes coincident with ITRF2000. |
|
3071
|
|
|
*/ |
|
3072
|
|
|
public const EPSG_IGB00 = 'urn:ogc:def:datum:EPSG::1246'; |
|
3073
|
|
|
|
|
3074
|
|
|
/** |
|
3075
|
|
|
* IGb08 |
|
3076
|
|
|
* Type: Dynamic geodetic |
|
3077
|
|
|
* Extent: World |
|
3078
|
|
|
* Derived from ITRF2008 at epoch 2005.00 through a subset of 232 stable IGS station coordinates. Preserves the |
|
3079
|
|
|
* ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic |
|
3080
|
|
|
* techniques. |
|
3081
|
|
|
* Used for IGS products from GPS week 1709 through GPS week 1933 (2012-10-07 to 2017-01-28). Replaces IGS08, |
|
3082
|
|
|
* replaced by IGS14. For all practical purposes coincident with ITRF2008. |
|
3083
|
|
|
*/ |
|
3084
|
|
|
public const EPSG_IGB08 = 'urn:ogc:def:datum:EPSG::1248'; |
|
3085
|
|
|
|
|
3086
|
|
|
/** |
|
3087
|
|
|
* IGb14 |
|
3088
|
|
|
* Type: Dynamic geodetic |
|
3089
|
|
|
* Extent: World |
|
3090
|
|
|
* Daily IGS combined operational solutions of GPS weeks 730 to 2092. IGb14 is aligned in origin, scale and |
|
3091
|
|
|
* orientation to IGS14 via a subset of 233 selected stations. As IGS14 is aligned to ITRF2014, IGb14 is also |
|
3092
|
|
|
* aligned to ITRF2014. |
|
3093
|
|
|
* Used for IGS products from GPS week 2106 (2020-05-17). Replaces IGS14. Compared to IGS14, IGb14 benefits from 5 |
|
3094
|
|
|
* more years of input data, a revised discontinuity list and 9 additional stations. For all practical purposes |
|
3095
|
|
|
* coincident with ITRF2014. |
|
3096
|
|
|
*/ |
|
3097
|
|
|
public const EPSG_IGB14 = 'urn:ogc:def:datum:EPSG::1272'; |
|
3098
|
|
|
|
|
3099
|
|
|
/** |
|
3100
|
|
|
* IRENET95 |
|
3101
|
|
|
* Type: Geodetic |
|
3102
|
|
|
* Extent: Ireland - onshore. UK - Northern Ireland (Ulster) - onshore |
|
3103
|
|
|
* ETRS89 stations in Ireland |
|
3104
|
|
|
* Densification of ETRS89. |
|
3105
|
|
|
*/ |
|
3106
|
|
|
public const EPSG_IRENET95 = 'urn:ogc:def:datum:EPSG::6173'; |
|
3107
|
|
|
|
|
3108
|
|
|
/** |
|
3109
|
|
|
* Ibiza |
|
3110
|
|
|
* Type: Vertical |
|
3111
|
|
|
* Extent: Spain - Balearic Islands - Ibiza - onshore |
|
3112
|
|
|
* Mean Sea Level at Ibiza harbour between January 2003 and December 2005. |
|
3113
|
|
|
* Orthometric heights. |
|
3114
|
|
|
*/ |
|
3115
|
|
|
public const EPSG_IBIZA = 'urn:ogc:def:datum:EPSG::1277'; |
|
3116
|
|
|
|
|
3117
|
|
|
/** |
|
3118
|
|
|
* Indian 1954 |
|
3119
|
|
|
* Type: Geodetic |
|
3120
|
|
|
* Extent: Myanmar (Burma) - onshore; Thailand - onshore |
|
3121
|
|
|
* Extension of Kalianpur 1937 over Myanmar and Thailand. |
|
3122
|
|
|
*/ |
|
3123
|
|
|
public const EPSG_INDIAN_1954 = 'urn:ogc:def:datum:EPSG::6239'; |
|
3124
|
|
|
|
|
3125
|
|
|
/** |
|
3126
|
|
|
* Indian 1960 |
|
3127
|
|
|
* Type: Geodetic |
|
3128
|
|
|
* Extent: Cambodia - onshore; Vietnam Cuu Long basin |
|
3129
|
|
|
* DMA extension over IndoChina of the Indian 1954 network adjusted to better fit local geoid. |
|
3130
|
|
|
* Also known as Indian (DMA Reduced). |
|
3131
|
|
|
*/ |
|
3132
|
|
|
public const EPSG_INDIAN_1960 = 'urn:ogc:def:datum:EPSG::6131'; |
|
3133
|
|
|
|
|
3134
|
|
|
/** |
|
3135
|
|
|
* Indian 1975 |
|
3136
|
|
|
* Type: Geodetic |
|
3137
|
|
|
* Extent: Thailand - onshore plus offshore Gulf of Thailand |
|
3138
|
|
|
* Fundamental point: Khau Sakaerang. |
|
3139
|
|
|
*/ |
|
3140
|
|
|
public const EPSG_INDIAN_1975 = 'urn:ogc:def:datum:EPSG::6240'; |
|
3141
|
|
|
|
|
3142
|
|
|
/** |
|
3143
|
|
|
* Indian Spring Low Water |
|
3144
|
|
|
* Type: Vertical |
|
3145
|
|
|
* Extent: World |
|
3146
|
|
|
* Not specific to any location or epoch. |
|
3147
|
|
|
* The level below MSL equal to the sum of the amplitudes of the harmonic constituents M2, S2, K1 and O1. It |
|
3148
|
|
|
* approximates mean lower low water spring tides (MLLWS). |
|
3149
|
|
|
*/ |
|
3150
|
|
|
public const EPSG_INDIAN_SPRING_LOW_WATER = 'urn:ogc:def:datum:EPSG::1085'; |
|
3151
|
|
|
|
|
3152
|
|
|
/** |
|
3153
|
|
|
* Indonesian Datum 1974 |
|
3154
|
|
|
* Type: Geodetic |
|
3155
|
|
|
* Extent: Indonesia - onshore |
|
3156
|
|
|
* Fundamental point: Padang. Latitude: 0°56'38.414"S, longitude: 100°22' 8.804"E (of Greenwich). Ellipsoidal |
|
3157
|
|
|
* height 3.190m, gravity-related height 14.0m above mean sea level. |
|
3158
|
|
|
* Replaced by DGN95. |
|
3159
|
|
|
*/ |
|
3160
|
|
|
public const EPSG_INDONESIAN_DATUM_1974 = 'urn:ogc:def:datum:EPSG::6238'; |
|
3161
|
|
|
|
|
3162
|
|
|
/** |
|
3163
|
|
|
* Indonesian Geoid 2020 version 1 |
|
3164
|
|
|
* Type: Vertical |
|
3165
|
|
|
* Extent: Indonesia |
|
3166
|
|
|
* Defined by INAGeoid2020 gravimetric geoid model v1 applied to SRGI2013. |
|
3167
|
|
|
* Uses gravity data observed to 2019 fitted to control points on Java and Bali. |
|
3168
|
|
|
*/ |
|
3169
|
|
|
public const EPSG_INDONESIAN_GEOID_2020_VERSION_1 = 'urn:ogc:def:datum:EPSG::1294'; |
|
3170
|
|
|
|
|
3171
|
|
|
/** |
|
3172
|
|
|
* Indonesian Geoid 2020 version 2 |
|
3173
|
|
|
* Type: Vertical |
|
3174
|
|
|
* Extent: Indonesia |
|
3175
|
|
|
* Defined by INAGeoid2020 gravimetric geoid model v2 applied to SRGI2013. |
|
3176
|
|
|
* Uses gravity data observed to 2021 fitted to tide gauge benchmarks across Indonesia. |
|
3177
|
|
|
*/ |
|
3178
|
|
|
public const EPSG_INDONESIAN_GEOID_2020_VERSION_2 = 'urn:ogc:def:datum:EPSG::1328'; |
|
3179
|
|
|
|
|
3180
|
|
|
/** |
|
3181
|
|
|
* Instantaneous Water Level |
|
3182
|
|
|
* Type: Vertical |
|
3183
|
|
|
* Extent: World |
|
3184
|
|
|
* Instantaneous water level uncorrected for tide. |
|
3185
|
|
|
* Not specific to any location or epoch. |
|
3186
|
|
|
*/ |
|
3187
|
|
|
public const EPSG_INSTANTANEOUS_WATER_LEVEL = 'urn:ogc:def:datum:EPSG::5113'; |
|
3188
|
|
|
|
|
3189
|
|
|
/** |
|
3190
|
|
|
* Institut Geographique du Congo Belge 1955 |
|
3191
|
|
|
* Type: Geodetic |
|
3192
|
|
|
* Extent: The Democratic Republic of the Congo (Zaire) - Lower Congo (Bas Congo) |
|
3193
|
|
|
* Fundamental point: Yella east base. Latitude: 6°00'53.139"S, longitude: 12°58'29.287"E (of Greenwich). |
|
3194
|
|
|
* Replaced by IGC 1962 Arc of the 6th Parallel South, except for oil industry activities. |
|
3195
|
|
|
*/ |
|
3196
|
|
|
public const EPSG_INSTITUT_GEOGRAPHIQUE_DU_CONGO_BELGE_1955 = 'urn:ogc:def:datum:EPSG::6701'; |
|
3197
|
|
|
|
|
3198
|
|
|
/** |
|
3199
|
|
|
* International Great Lakes Datum 1955 |
|
3200
|
|
|
* Type: Vertical |
|
3201
|
|
|
* Extent: Canada and USA - Great Lakes basin and St Lawrence Seaway |
|
3202
|
|
|
* Mean water level 1941-1956 at Pointe-au-Père (Father's Point), Quebec. Benchmark 1248-G = 3.794m. |
|
3203
|
|
|
* Dynamic heights. Adopted in 1962. Replaced by IGLD 1985 in January 1992. |
|
3204
|
|
|
*/ |
|
3205
|
|
|
public const EPSG_INTERNATIONAL_GREAT_LAKES_DATUM_1955 = 'urn:ogc:def:datum:EPSG::5204'; |
|
3206
|
|
|
|
|
3207
|
|
|
/** |
|
3208
|
|
|
* International Great Lakes Datum 1985 |
|
3209
|
|
|
* Type: Vertical |
|
3210
|
|
|
* Extent: Canada and USA - Great Lakes basin and St Lawrence Seaway |
|
3211
|
|
|
* Mean water level 1970-1983 at Pointe-au-Père (Father's Point) and 1984-1988 at Rimouski, Quebec. Benchmark |
|
3212
|
|
|
* 1250-G = 6.273m. |
|
3213
|
|
|
* Dynamic heights. Replaces IGLD 1955 from January 1992. |
|
3214
|
|
|
*/ |
|
3215
|
|
|
public const EPSG_INTERNATIONAL_GREAT_LAKES_DATUM_1985 = 'urn:ogc:def:datum:EPSG::5205'; |
|
3216
|
|
|
|
|
3217
|
|
|
/** |
|
3218
|
|
|
* International Terrestrial Reference Frame 1988 |
|
3219
|
|
|
* Type: Dynamic geodetic |
|
3220
|
|
|
* Extent: World |
|
3221
|
|
|
* Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of |
|
3222
|
|
|
* 3-dimensional Cartesian station coordinates (SCS). |
|
3223
|
|
|
* Realization of the IERS Terrestrial Reference System (ITRS) at epoch 1988.0. Replaced by ITRF89 (code 6648). |
|
3224
|
|
|
*/ |
|
3225
|
|
|
public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1988 = 'urn:ogc:def:datum:EPSG::6647'; |
|
3226
|
|
|
|
|
3227
|
|
|
/** |
|
3228
|
|
|
* International Terrestrial Reference Frame 1989 |
|
3229
|
|
|
* Type: Dynamic geodetic |
|
3230
|
|
|
* Extent: World |
|
3231
|
|
|
* Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of |
|
3232
|
|
|
* 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0. |
|
3233
|
|
|
* Realization of the IERS Terrestrial Reference System (ITRS) from April 1991. Replaces ITRF88 (code 6647). |
|
3234
|
|
|
* Replaced by ITRF90 (code 6649). |
|
3235
|
|
|
*/ |
|
3236
|
|
|
public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1989 = 'urn:ogc:def:datum:EPSG::6648'; |
|
3237
|
|
|
|
|
3238
|
|
|
/** |
|
3239
|
|
|
* International Terrestrial Reference Frame 1990 |
|
3240
|
|
|
* Type: Dynamic geodetic |
|
3241
|
|
|
* Extent: World |
|
3242
|
|
|
* Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of |
|
3243
|
|
|
* 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0. |
|
3244
|
|
|
* Realization of the IERS Terrestrial Reference System (ITRS) from December 1991. Replaces ITRF89 (code 6648). |
|
3245
|
|
|
* Replaced by ITRF91 (code 6650). |
|
3246
|
|
|
*/ |
|
3247
|
|
|
public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1990 = 'urn:ogc:def:datum:EPSG::6649'; |
|
3248
|
|
|
|
|
3249
|
|
|
/** |
|
3250
|
|
|
* International Terrestrial Reference Frame 1991 |
|
3251
|
|
|
* Type: Dynamic geodetic |
|
3252
|
|
|
* Extent: World |
|
3253
|
|
|
* Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of |
|
3254
|
|
|
* 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0. |
|
3255
|
|
|
* Realization of the IERS Terrestrial Reference System (ITRS) from October 1992. Replaces ITRF90 (code 6649). |
|
3256
|
|
|
* Replaced by ITRF92 (code 6651). |
|
3257
|
|
|
*/ |
|
3258
|
|
|
public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1991 = 'urn:ogc:def:datum:EPSG::6650'; |
|
3259
|
|
|
|
|
3260
|
|
|
/** |
|
3261
|
|
|
* International Terrestrial Reference Frame 1992 |
|
3262
|
|
|
* Type: Dynamic geodetic |
|
3263
|
|
|
* Extent: World |
|
3264
|
|
|
* Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of 287 |
|
3265
|
|
|
* 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0. |
|
3266
|
|
|
* Realization of the IERS Terrestrial Reference System (ITRS) from October 1993. Replaces ITRF91 (code 6650). |
|
3267
|
|
|
* Replaced by ITRF93 (code 6652). |
|
3268
|
|
|
*/ |
|
3269
|
|
|
public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1992 = 'urn:ogc:def:datum:EPSG::6651'; |
|
3270
|
|
|
|
|
3271
|
|
|
/** |
|
3272
|
|
|
* International Terrestrial Reference Frame 1993 |
|
3273
|
|
|
* Type: Dynamic geodetic |
|
3274
|
|
|
* Extent: World |
|
3275
|
|
|
* Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of |
|
3276
|
|
|
* 3-dimensional Cartesian station coordinates (SCS) for epoch 1993.0. |
|
3277
|
|
|
* Realization of the IERS Terrestrial Reference System (ITRS) from October 1994. Replaces ITRF92 (code 6651). |
|
3278
|
|
|
* Replaced by ITRF94 (code 6653). |
|
3279
|
|
|
*/ |
|
3280
|
|
|
public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1993 = 'urn:ogc:def:datum:EPSG::6652'; |
|
3281
|
|
|
|
|
3282
|
|
|
/** |
|
3283
|
|
|
* International Terrestrial Reference Frame 1994 |
|
3284
|
|
|
* Type: Dynamic geodetic |
|
3285
|
|
|
* Extent: World |
|
3286
|
|
|
* Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of |
|
3287
|
|
|
* 3-dimensional Cartesian station coordinates (SCS) for epoch 1993.0. |
|
3288
|
|
|
* Realization of the IERS Terrestrial Reference System (ITRS) from March 1996. Replaces ITRF93 (code 6652). |
|
3289
|
|
|
* Replaced by ITRF96 (code 6654). |
|
3290
|
|
|
*/ |
|
3291
|
|
|
public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1994 = 'urn:ogc:def:datum:EPSG::6653'; |
|
3292
|
|
|
|
|
3293
|
|
|
/** |
|
3294
|
|
|
* International Terrestrial Reference Frame 1996 |
|
3295
|
|
|
* Type: Dynamic geodetic |
|
3296
|
|
|
* Extent: World |
|
3297
|
|
|
* Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of |
|
3298
|
|
|
* 3-dimensional Cartesian station coordinates (SCS) for epoch 1997.0. |
|
3299
|
|
|
* Realization of the IERS Terrestrial Reference System (ITRS) from May 1998. Replaces ITRF94 (code 6653). Replaced |
|
3300
|
|
|
* by ITRF97 (code 6655). |
|
3301
|
|
|
*/ |
|
3302
|
|
|
public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1996 = 'urn:ogc:def:datum:EPSG::6654'; |
|
3303
|
|
|
|
|
3304
|
|
|
/** |
|
3305
|
|
|
* International Terrestrial Reference Frame 1997 |
|
3306
|
|
|
* Type: Dynamic geodetic |
|
3307
|
|
|
* Extent: World |
|
3308
|
|
|
* Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of |
|
3309
|
|
|
* 3-dimensional Cartesian station coordinates (SCS) for epoch 1997.0. |
|
3310
|
|
|
* Realization of the IERS Terrestrial Reference System (ITRS) from May 1999. Replaces ITRF96 (code 6654). Replaced |
|
3311
|
|
|
* by ITRF2000 (code 6656). |
|
3312
|
|
|
*/ |
|
3313
|
|
|
public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_1997 = 'urn:ogc:def:datum:EPSG::6655'; |
|
3314
|
|
|
|
|
3315
|
|
|
/** |
|
3316
|
|
|
* International Terrestrial Reference Frame 2000 |
|
3317
|
|
|
* Type: Dynamic geodetic |
|
3318
|
|
|
* Extent: World |
|
3319
|
|
|
* Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of |
|
3320
|
|
|
* 3-dimensional Cartesian station coordinates (SCS) for epoch 1997.0. |
|
3321
|
|
|
* Realization of the IERS Terrestrial Reference System (ITRS) from 2004. Replaces ITRF97 (code 6655). Replaced by |
|
3322
|
|
|
* ITRF2005 (code 6896). |
|
3323
|
|
|
*/ |
|
3324
|
|
|
public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2000 = 'urn:ogc:def:datum:EPSG::6656'; |
|
3325
|
|
|
|
|
3326
|
|
|
/** |
|
3327
|
|
|
* International Terrestrial Reference Frame 2005 |
|
3328
|
|
|
* Type: Dynamic geodetic |
|
3329
|
|
|
* Extent: World |
|
3330
|
|
|
* Origin at geocentre, originally orientated to the BIH Terrestrial System at epoch 1984.0 then adjusted to ensure |
|
3331
|
|
|
* zero net rotation to earth's overall tectonic motion. Defined by time series of Cartesian station coordinates |
|
3332
|
|
|
* for epoch 2000.0. |
|
3333
|
|
|
* Realization of the IERS Terrestrial Reference System (ITRS) from September 2007. Replaces ITRF2000 (code 6656). |
|
3334
|
|
|
* Replaced by ITRF2008 (datum code 1061). |
|
3335
|
|
|
*/ |
|
3336
|
|
|
public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2005 = 'urn:ogc:def:datum:EPSG::6896'; |
|
3337
|
|
|
|
|
3338
|
|
|
/** |
|
3339
|
|
|
* International Terrestrial Reference Frame 2008 |
|
3340
|
|
|
* Type: Dynamic geodetic |
|
3341
|
|
|
* Extent: World |
|
3342
|
|
|
* Origin at geocentre. The ITRF2008 origin is defined in such a way that there are null translation parameters at |
|
3343
|
|
|
* epoch 2005.0 and null translation rates between the ITRF2008 and the ILRS SLR time series. |
|
3344
|
|
|
* Realization of the IERS Terrestrial Reference System (ITRS) from 2012. Replaces ITRF2005 (code 6896). |
|
3345
|
|
|
*/ |
|
3346
|
|
|
public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2008 = 'urn:ogc:def:datum:EPSG::1061'; |
|
3347
|
|
|
|
|
3348
|
|
|
/** |
|
3349
|
|
|
* International Terrestrial Reference Frame 2014 |
|
3350
|
|
|
* Type: Dynamic geodetic |
|
3351
|
|
|
* Extent: World |
|
3352
|
|
|
* Origin at geocentre. Origin = ILRS SLR long-term solution at epoch 2010.0. Zero scale and scale rate between |
|
3353
|
|
|
* ITRF2014 and the average of VLBI and SLR scales/rates. Orientation = ITRF2008@ 2010.0 with zero rotation rates |
|
3354
|
|
|
* between the ITRF2014 and ITRF2008. |
|
3355
|
|
|
* Realization of the IERS Terrestrial Reference System (ITRS). Replaces ITRF2008 (datum code 1061) from January |
|
3356
|
|
|
* 2016. Replaced by ITRF2020 (datum code 1322) from April 2022. |
|
3357
|
|
|
*/ |
|
3358
|
|
|
public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2014 = 'urn:ogc:def:datum:EPSG::1165'; |
|
3359
|
|
|
|
|
3360
|
|
|
/** |
|
3361
|
|
|
* International Terrestrial Reference Frame 2020 |
|
3362
|
|
|
* Type: Dynamic geodetic |
|
3363
|
|
|
* Extent: World |
|
3364
|
|
|
* Origin at geocentre. Origin = ILRS SLR long-term solution at epoch 2015.0. Zero scale and scale rate between |
|
3365
|
|
|
* ITRF2020 and the average of VLBI and SLR scales/rates. Orientation = ITRF2014@ 2015.0 with zero rotation rates |
|
3366
|
|
|
* between the ITRF2020 and ITRF2014. |
|
3367
|
|
|
* Realization of the IERS Terrestrial Reference System (ITRS). Replaces ITRF2014 (datum code 1165) from April |
|
3368
|
|
|
* 2022. |
|
3369
|
|
|
*/ |
|
3370
|
|
|
public const EPSG_INTERNATIONAL_TERRESTRIAL_REFERENCE_FRAME_2020 = 'urn:ogc:def:datum:EPSG::1322'; |
|
3371
|
|
|
|
|
3372
|
|
|
/** |
|
3373
|
|
|
* Iraq-Kuwait Boundary Datum 1992 |
|
3374
|
|
|
* Type: Geodetic |
|
3375
|
|
|
* Extent: Iraq - Kuwait boundary |
|
3376
|
|
|
* Four stations established between September and December 1991 determined by GPS and Doppler observations. |
|
3377
|
|
|
*/ |
|
3378
|
|
|
public const EPSG_IRAQ_KUWAIT_BOUNDARY_DATUM_1992 = 'urn:ogc:def:datum:EPSG::6667'; |
|
3379
|
|
|
|
|
3380
|
|
|
/** |
|
3381
|
|
|
* Iraqi Geospatial Reference System |
|
3382
|
|
|
* Type: Geodetic |
|
3383
|
|
|
* Extent: Iraq |
|
3384
|
|
|
* ITRF2000 at epoch 1997.0. |
|
3385
|
|
|
*/ |
|
3386
|
|
|
public const EPSG_IRAQI_GEOSPATIAL_REFERENCE_SYSTEM = 'urn:ogc:def:datum:EPSG::1029'; |
|
3387
|
|
|
|
|
3388
|
|
|
/** |
|
3389
|
|
|
* Islands Net 1993 |
|
3390
|
|
|
* Type: Geodetic |
|
3391
|
|
|
* Extent: Iceland |
|
3392
|
|
|
* ITRF93 at epoch 1993.6. |
|
3393
|
|
|
* Replaced by ISN2004 (datum code 1060). |
|
3394
|
|
|
*/ |
|
3395
|
|
|
public const EPSG_ISLANDS_NET_1993 = 'urn:ogc:def:datum:EPSG::6659'; |
|
3396
|
|
|
|
|
3397
|
|
|
/** |
|
3398
|
|
|
* Islands Net 2004 |
|
3399
|
|
|
* Type: Geodetic |
|
3400
|
|
|
* Extent: Iceland |
|
3401
|
|
|
* ITRF2000 at epoch 2004.6. |
|
3402
|
|
|
* Replaces ISN93 (datum code 6659). Replaced by ISN2016 (datum code 1087). |
|
3403
|
|
|
*/ |
|
3404
|
|
|
public const EPSG_ISLANDS_NET_2004 = 'urn:ogc:def:datum:EPSG::1060'; |
|
3405
|
|
|
|
|
3406
|
|
|
/** |
|
3407
|
|
|
* Islands Net 2016 |
|
3408
|
|
|
* Type: Geodetic |
|
3409
|
|
|
* Extent: Iceland |
|
3410
|
|
|
* ITRF2014 at epoch 2016.5. |
|
3411
|
|
|
* Replaces ISN2004 from September 2017. |
|
3412
|
|
|
*/ |
|
3413
|
|
|
public const EPSG_ISLANDS_NET_2016 = 'urn:ogc:def:datum:EPSG::1187'; |
|
3414
|
|
|
|
|
3415
|
|
|
/** |
|
3416
|
|
|
* Israel 1993 |
|
3417
|
|
|
* Type: Geodetic |
|
3418
|
|
|
* Extent: Israel - onshore; Palestine Territory - onshore |
|
3419
|
|
|
* Fundamental point: Latitude: 31°44'03.817"N, longitude: 35°12'16.261"E (of Greenwich). |
|
3420
|
|
|
* Replaces Palestine 1923 (datum code 6281). Replaced by IGD05 (datum code 1143). |
|
3421
|
|
|
*/ |
|
3422
|
|
|
public const EPSG_ISRAEL_1993 = 'urn:ogc:def:datum:EPSG::6141'; |
|
3423
|
|
|
|
|
3424
|
|
|
/** |
|
3425
|
|
|
* Israeli Geodetic Datum 2005 |
|
3426
|
|
|
* Type: Geodetic |
|
3427
|
|
|
* Extent: Israel |
|
3428
|
|
|
* Defined by coordinates of 13 Active Positioning Network (APN) stations in ITRF2000 at epoch 2004.75. A further |
|
3429
|
|
|
* five APN stations were added in 2006. |
|
3430
|
|
|
* Replaces Israel 1993 (datum code 6141). Replaced by IGD05/12 (datum code 1115). |
|
3431
|
|
|
*/ |
|
3432
|
|
|
public const EPSG_ISRAELI_GEODETIC_DATUM_2005 = 'urn:ogc:def:datum:EPSG::1114'; |
|
3433
|
|
|
|
|
3434
|
|
|
/** |
|
3435
|
|
|
* Israeli Geodetic Datum 2005(2012) |
|
3436
|
|
|
* Type: Geodetic |
|
3437
|
|
|
* Extent: Israel |
|
3438
|
|
|
* Datum updated in 2012 with four APN stations removed from definition. Coordinate epoch remains ITRF2000 at epoch |
|
3439
|
|
|
* 2004.75. |
|
3440
|
|
|
* Replaces IGD05 (datum code 1114). |
|
3441
|
|
|
*/ |
|
3442
|
|
|
public const EPSG_ISRAELI_GEODETIC_DATUM_2005_2012 = 'urn:ogc:def:datum:EPSG::1115'; |
|
3443
|
|
|
|
|
3444
|
|
|
/** |
|
3445
|
|
|
* Istituto Geografico Militaire 1995 |
|
3446
|
|
|
* Type: Geodetic |
|
3447
|
|
|
* Extent: Italy; San Marino, Vatican City State |
|
3448
|
|
|
* Densification of ETRF89 in Italy. Network of 1296 points observed 1992-1995 adjusted in 1996 constrained to 9 |
|
3449
|
|
|
* ETRF89 points at epoch 1989.0. By April 2021 the framework was composed of 3104 points of the fundamental |
|
3450
|
|
|
* network and 3819 densification points. |
|
3451
|
|
|
* Replaced by RDN2008 (datum code 1132) from 2011-11-10. |
|
3452
|
|
|
*/ |
|
3453
|
|
|
public const EPSG_ISTITUTO_GEOGRAFICO_MILITAIRE_1995 = 'urn:ogc:def:datum:EPSG::6670'; |
|
3454
|
|
|
|
|
3455
|
|
|
/** |
|
3456
|
|
|
* Iwo Jima 1945 |
|
3457
|
|
|
* Type: Geodetic |
|
3458
|
|
|
* Extent: Japan - Iwo Jima island |
|
3459
|
|
|
* Fundamental point: Beacon "E". |
|
3460
|
|
|
*/ |
|
3461
|
|
|
public const EPSG_IWO_JIMA_1945 = 'urn:ogc:def:datum:EPSG::6709'; |
|
3462
|
|
|
|
|
3463
|
|
|
/** |
|
3464
|
|
|
* Jamaica 1875 |
|
3465
|
|
|
* Type: Geodetic |
|
3466
|
|
|
* Extent: Jamaica - onshore |
|
3467
|
|
|
* Fundamental point: Fort Charles Flagstaff. Latitude: 17°55'55.800"N, longitude: 76°56'37.260"W (of Greenwich). |
|
3468
|
|
|
*/ |
|
3469
|
|
|
public const EPSG_JAMAICA_1875 = 'urn:ogc:def:datum:EPSG::6241'; |
|
3470
|
|
|
|
|
3471
|
|
|
/** |
|
3472
|
|
|
* Jamaica 1969 |
|
3473
|
|
|
* Type: Geodetic |
|
3474
|
|
|
* Extent: Jamaica - onshore |
|
3475
|
|
|
* Fundamental point: Fort Charles Flagstaff. Latitude: 17°55'55.800"N, longitude: 76°56'37.260"W (of Greenwich). |
|
3476
|
|
|
*/ |
|
3477
|
|
|
public const EPSG_JAMAICA_1969 = 'urn:ogc:def:datum:EPSG::6242'; |
|
3478
|
|
|
|
|
3479
|
|
|
/** |
|
3480
|
|
|
* Jamaica 2001 |
|
3481
|
|
|
* Type: Geodetic |
|
3482
|
|
|
* Extent: Jamaica. Includes Morant Cays and Pedro Cays |
|
3483
|
|
|
* Aligned to WGS 84. |
|
3484
|
|
|
*/ |
|
3485
|
|
|
public const EPSG_JAMAICA_2001 = 'urn:ogc:def:datum:EPSG::6758'; |
|
3486
|
|
|
|
|
3487
|
|
|
/** |
|
3488
|
|
|
* Jamestown 1971 |
|
3489
|
|
|
* Type: Vertical |
|
3490
|
|
|
* Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore |
|
3491
|
|
|
* MSL at Jamestown 1971 defined through elevation of triangulation station Astro DOS 71/4 Ladder Hill Fort being |
|
3492
|
|
|
* 267.858 metres above MSL. |
|
3493
|
|
|
*/ |
|
3494
|
|
|
public const EPSG_JAMESTOWN_1971 = 'urn:ogc:def:datum:EPSG::1175'; |
|
3495
|
|
|
|
|
3496
|
|
|
/** |
|
3497
|
|
|
* Japanese Geodetic Datum 2000 |
|
3498
|
|
|
* Type: Geodetic |
|
3499
|
|
|
* Extent: Japan |
|
3500
|
|
|
* ITRF94 at epoch 1997.0. Fundamental point: Tokyo-Taisho, latitude: 35°39'29.1572"N, longitude: |
|
3501
|
|
|
* 139°44'28.8759"E (of Greenwich). |
|
3502
|
|
|
* Instigated under amendment to the Japanese Surveying Law with effect from April 2002. Replaces Tokyo datum (code |
|
3503
|
|
|
* 6301). Replaced by JGD2011 (datum code 1128) with effect from 21st October 2011. |
|
3504
|
|
|
*/ |
|
3505
|
|
|
public const EPSG_JAPANESE_GEODETIC_DATUM_2000 = 'urn:ogc:def:datum:EPSG::6612'; |
|
3506
|
|
|
|
|
3507
|
|
|
/** |
|
3508
|
|
|
* Japanese Geodetic Datum 2000 (vertical) |
|
3509
|
|
|
* Type: Vertical |
|
3510
|
|
|
* Extent: Japan - onshore mainland - Hokkaido, Honshu, Shikoku, Kyushu |
|
3511
|
|
|
* 24.4140 metres above mean sea level Tokyo Bay. |
|
3512
|
|
|
* Orthometric heights. Replaces JSLD69 and JSLD72 with effect from April 2002. Replaced by JGD2011 (vertical) |
|
3513
|
|
|
* (datum code 1131) with effect from 21st October 2011. |
|
3514
|
|
|
*/ |
|
3515
|
|
|
public const EPSG_JAPANESE_GEODETIC_DATUM_2000_VERTICAL = 'urn:ogc:def:datum:EPSG::1130'; |
|
3516
|
|
|
|
|
3517
|
|
|
/** |
|
3518
|
|
|
* Japanese Geodetic Datum 2011 |
|
3519
|
|
|
* Type: Geodetic |
|
3520
|
|
|
* Extent: Japan |
|
3521
|
|
|
* ITRF94 at epoch 1997.0 except for northern Honshu area impacted by 2011 Tohoku earthquake which is ITRF2008 at |
|
3522
|
|
|
* epoch 2011.395. Fundamental point: Tokyo-Taisho, latitude: 35°39'29.1572"N, longitude: 139°44'28.8869"E (of |
|
3523
|
|
|
* Greenwich). |
|
3524
|
|
|
* Instigated under amendment to the Japanese Surveying Law with effect from 21st October 2011. Replaces JGD2000 |
|
3525
|
|
|
* (datum code 6612). |
|
3526
|
|
|
*/ |
|
3527
|
|
|
public const EPSG_JAPANESE_GEODETIC_DATUM_2011 = 'urn:ogc:def:datum:EPSG::1128'; |
|
3528
|
|
|
|
|
3529
|
|
|
/** |
|
3530
|
|
|
* Japanese Geodetic Datum 2011 (vertical) |
|
3531
|
|
|
* Type: Vertical |
|
3532
|
|
|
* Extent: Japan - onshore mainland - Hokkaido, Honshu, Shikoku, Kyushu |
|
3533
|
|
|
* 24.3900 metres above mean sea level Tokyo Bay. |
|
3534
|
|
|
* Orthometric heights. Replaces JGD2000 (vertical) (datum code 1130) with effect from 21st October 2011. |
|
3535
|
|
|
*/ |
|
3536
|
|
|
public const EPSG_JAPANESE_GEODETIC_DATUM_2011_VERTICAL = 'urn:ogc:def:datum:EPSG::1131'; |
|
3537
|
|
|
|
|
3538
|
|
|
/** |
|
3539
|
|
|
* Japanese Standard Levelling Datum 1969 |
|
3540
|
|
|
* Type: Vertical |
|
3541
|
|
|
* Extent: Japan - onshore mainland - Honshu, Shikoku, Kyushu |
|
3542
|
|
|
* 24.4140 metres above mean sea level Tokyo Bay. |
|
3543
|
|
|
* Normal-orthometric heights. Replaces JSLD49. Replaced by JGD2000 (vertical) (datum code 1130) from April 2002. |
|
3544
|
|
|
*/ |
|
3545
|
|
|
public const EPSG_JAPANESE_STANDARD_LEVELLING_DATUM_1969 = 'urn:ogc:def:datum:EPSG::5122'; |
|
3546
|
|
|
|
|
3547
|
|
|
/** |
|
3548
|
|
|
* Japanese Standard Levelling Datum 1972 |
|
3549
|
|
|
* Type: Vertical |
|
3550
|
|
|
* Extent: Japan - onshore mainland - Hokkaido |
|
3551
|
|
|
* Mean sea level Oshoro 1963-72. |
|
3552
|
|
|
* Normal-orthometric heights. Replaced by JGD2000 (vertical) (datum code 1130) with effect from April 2002. |
|
3553
|
|
|
*/ |
|
3554
|
|
|
public const EPSG_JAPANESE_STANDARD_LEVELLING_DATUM_1972 = 'urn:ogc:def:datum:EPSG::1129'; |
|
3555
|
|
|
|
|
3556
|
|
|
/** |
|
3557
|
|
|
* Johnston Island 1961 |
|
3558
|
|
|
* Type: Geodetic |
|
3559
|
|
|
* Extent: United States Minor Outlying Islands - Johnston Island. |
|
3560
|
|
|
*/ |
|
3561
|
|
|
public const EPSG_JOHNSTON_ISLAND_1961 = 'urn:ogc:def:datum:EPSG::6725'; |
|
3562
|
|
|
|
|
3563
|
|
|
/** |
|
3564
|
|
|
* Jouik 1961 |
|
3565
|
|
|
* Type: Geodetic |
|
3566
|
|
|
* Extent: Mauritania - coastal area north of Cape Timiris |
|
3567
|
|
|
* Replaced by Mauritania 1999 (datum code 6702). |
|
3568
|
|
|
*/ |
|
3569
|
|
|
public const EPSG_JOUIK_1961 = 'urn:ogc:def:datum:EPSG::6679'; |
|
3570
|
|
|
|
|
3571
|
|
|
/** |
|
3572
|
|
|
* KOC Construction Datum |
|
3573
|
|
|
* Type: Vertical |
|
3574
|
|
|
* Extent: Kuwait - onshore |
|
3575
|
|
|
* Approximately 1.52m below MSL. Created for the construction of the Mina al Ahmadi refinery. |
|
3576
|
|
|
*/ |
|
3577
|
|
|
public const EPSG_KOC_CONSTRUCTION_DATUM = 'urn:ogc:def:datum:EPSG::5188'; |
|
3578
|
|
|
|
|
3579
|
|
|
/** |
|
3580
|
|
|
* KOC Well Datum |
|
3581
|
|
|
* Type: Vertical |
|
3582
|
|
|
* Extent: Kuwait - onshore |
|
3583
|
|
|
* Approximately 3.22m above MSL. |
|
3584
|
|
|
*/ |
|
3585
|
|
|
public const EPSG_KOC_WELL_DATUM = 'urn:ogc:def:datum:EPSG::5187'; |
|
3586
|
|
|
|
|
3587
|
|
|
/** |
|
3588
|
|
|
* Kalianpur 1880 |
|
3589
|
|
|
* Type: Geodetic |
|
3590
|
|
|
* Extent: Bangladesh - onshore; India - mainland onshore; Myanmar (Burma) - onshore; Pakistan - onshore |
|
3591
|
|
|
* Fundamental point: Kalianpur. Latitude: 24°07'11.260"N, longitude: 77°39'17.570"E (of Greenwich). |
|
3592
|
|
|
* Includes 1916 extension into Burma (Myanmar). Replaced by 1937 adjustment. |
|
3593
|
|
|
*/ |
|
3594
|
|
|
public const EPSG_KALIANPUR_1880 = 'urn:ogc:def:datum:EPSG::6243'; |
|
3595
|
|
|
|
|
3596
|
|
|
/** |
|
3597
|
|
|
* Kalianpur 1937 |
|
3598
|
|
|
* Type: Geodetic |
|
3599
|
|
|
* Extent: Bangladesh - onshore; India - mainland onshore; Myanmar - onshore and Moattama area offshore; Pakistan - |
|
3600
|
|
|
* onshore |
|
3601
|
|
|
* Fundamental point: Kalianpur. Latitude: 24° 07'11.260"N, longitude: 77°39'17.570"E (of Greenwich). |
|
3602
|
|
|
* Replaces 1880 adjustment except for topographic mapping. Replaced in Bangladesh and Pakistan by 1962 metrication |
|
3603
|
|
|
* conversion and in India by 1975 metrication conversion. |
|
3604
|
|
|
*/ |
|
3605
|
|
|
public const EPSG_KALIANPUR_1937 = 'urn:ogc:def:datum:EPSG::6144'; |
|
3606
|
|
|
|
|
3607
|
|
|
/** |
|
3608
|
|
|
* Kalianpur 1962 |
|
3609
|
|
|
* Type: Geodetic |
|
3610
|
|
|
* Extent: Pakistan |
|
3611
|
|
|
* Fundamental point: Kalianpur. Latitude: 24° 07'11.260"N, longitude: 77°39'17.570"E (of Greenwich). |
|
3612
|
|
|
* 1937 adjustment rescaled by ratio metric conversions of Indian foot (1937) to Indian foot (1962). |
|
3613
|
|
|
*/ |
|
3614
|
|
|
public const EPSG_KALIANPUR_1962 = 'urn:ogc:def:datum:EPSG::6145'; |
|
3615
|
|
|
|
|
3616
|
|
|
/** |
|
3617
|
|
|
* Kalianpur 1975 |
|
3618
|
|
|
* Type: Geodetic |
|
3619
|
|
|
* Extent: India - mainland onshore |
|
3620
|
|
|
* Fundamental point: Kalianpur. Latitude: 24° 07'11.260"N, longitude: 77°39'17.570"E (of Greenwich). |
|
3621
|
|
|
* 1937 adjustment rescaled by ratio metric conversions of Indian foot (1937) to Indian foot (1975). |
|
3622
|
|
|
*/ |
|
3623
|
|
|
public const EPSG_KALIANPUR_1975 = 'urn:ogc:def:datum:EPSG::6146'; |
|
3624
|
|
|
|
|
3625
|
|
|
/** |
|
3626
|
|
|
* Kandawala |
|
3627
|
|
|
* Type: Geodetic |
|
3628
|
|
|
* Extent: Sri Lanka - onshore |
|
3629
|
|
|
* Fundamental point: Kandawala. Latitude: 7°14'06.838"N, longitude: 79°52'36.670"E. |
|
3630
|
|
|
*/ |
|
3631
|
|
|
public const EPSG_KANDAWALA = 'urn:ogc:def:datum:EPSG::6244'; |
|
3632
|
|
|
|
|
3633
|
|
|
/** |
|
3634
|
|
|
* Karbala 1979 |
|
3635
|
|
|
* Type: Geodetic |
|
3636
|
|
|
* Extent: Iraq - onshore |
|
3637
|
|
|
* Fundamental point: Karbala. Latitude: 32°34'14.4941"N, longitude: 44°00'49.6379"E. |
|
3638
|
|
|
* National geodetic network established by Polservice consortium. |
|
3639
|
|
|
*/ |
|
3640
|
|
|
public const EPSG_KARBALA_1979 = 'urn:ogc:def:datum:EPSG::6743'; |
|
3641
|
|
|
|
|
3642
|
|
|
/** |
|
3643
|
|
|
* Kartastokoordinaattijarjestelma (1966) |
|
3644
|
|
|
* Type: Geodetic |
|
3645
|
|
|
* Extent: Finland - onshore |
|
3646
|
|
|
* Adjustment with fundamental point SF31 based on ED50 transformed to best fit the older VVJ adjustment. |
|
3647
|
|
|
* Adopted in 1970. |
|
3648
|
|
|
*/ |
|
3649
|
|
|
public const EPSG_KARTASTOKOORDINAATTIJARJESTELMA_1966 = 'urn:ogc:def:datum:EPSG::6123'; |
|
3650
|
|
|
|
|
3651
|
|
|
/** |
|
3652
|
|
|
* Kasai 1953 |
|
3653
|
|
|
* Type: Geodetic |
|
3654
|
|
|
* Extent: The Democratic Republic of the Congo (Zaire) - Kasai - south of 5°S and east of 21°30'E |
|
3655
|
|
|
* Two stations of the Katanga triangulation with ellipsoid change applied: Kabila, latitude 6°58'34.023"S, |
|
3656
|
|
|
* longitude 23°50'24.028"E (of Greenwich); and Gandajika NW base, latitude 6°45'01.057"S, longitude |
|
3657
|
|
|
* 23°57'03.038"E (of Greenwich). |
|
3658
|
|
|
* Replaced by IGC 1962 Arc of the 6th Parallel South. |
|
3659
|
|
|
*/ |
|
3660
|
|
|
public const EPSG_KASAI_1953 = 'urn:ogc:def:datum:EPSG::6696'; |
|
3661
|
|
|
|
|
3662
|
|
|
/** |
|
3663
|
|
|
* Katanga 1955 |
|
3664
|
|
|
* Type: Geodetic |
|
3665
|
|
|
* Extent: The Democratic Republic of the Congo (Zaire) - Katanga |
|
3666
|
|
|
* Fundamental point: Tshinsenda A. Latitude: 12°30'31.568"S, longitude: 28°01'02.971"E (of Greenwich). |
|
3667
|
|
|
* Replaces earlier adjustments. |
|
3668
|
|
|
*/ |
|
3669
|
|
|
public const EPSG_KATANGA_1955 = 'urn:ogc:def:datum:EPSG::6695'; |
|
3670
|
|
|
|
|
3671
|
|
|
/** |
|
3672
|
|
|
* Kertau (RSO) |
|
3673
|
|
|
* Type: Geodetic |
|
3674
|
|
|
* Extent: Malaysia - West Malaysia; Singapore |
|
3675
|
|
|
* Adopts metric conversion of 0.914398 metres per yard exactly. This is a truncation of the Sears 1922 ratio. |
|
3676
|
|
|
*/ |
|
3677
|
|
|
public const EPSG_KERTAU_RSO = 'urn:ogc:def:datum:EPSG::6751'; |
|
3678
|
|
|
|
|
3679
|
|
|
/** |
|
3680
|
|
|
* Kertau 1968 |
|
3681
|
|
|
* Type: Geodetic |
|
3682
|
|
|
* Extent: Malaysia - West Malaysia east coast; Singapore |
|
3683
|
|
|
* Fundamental point: Kertau. Latitude: 3°27'50.710"N, longitude: 102°37'24.550"E (of Greenwich). |
|
3684
|
|
|
* Replaces MRT48 and earlier adjustments. Adopts metric conversion of 39.370113 inches per metre. Not used for |
|
3685
|
|
|
* 1969 metrication of RSO grid - see Kertau (RSO) (code 6751). |
|
3686
|
|
|
*/ |
|
3687
|
|
|
public const EPSG_KERTAU_1968 = 'urn:ogc:def:datum:EPSG::6245'; |
|
3688
|
|
|
|
|
3689
|
|
|
/** |
|
3690
|
|
|
* Kingdom of Saudi Arabia Geodetic Reference Frame 2017 |
|
3691
|
|
|
* Type: Geodetic |
|
3692
|
|
|
* Extent: Saudi Arabia |
|
3693
|
|
|
* ITRF2014 at epoch 2017.00. |
|
3694
|
|
|
* Realized by 333 GNSS stations in Saudi Arabia aligned to ITRF2014 through core network of 46 stations adjusted |
|
3695
|
|
|
* to 15 IGS stations. |
|
3696
|
|
|
*/ |
|
3697
|
|
|
public const EPSG_KINGDOM_OF_SAUDI_ARABIA_GEODETIC_REFERENCE_FRAME_2017 = 'urn:ogc:def:datum:EPSG::1268'; |
|
3698
|
|
|
|
|
3699
|
|
|
/** |
|
3700
|
|
|
* Kingdom of Saudi Arabia Vertical Reference Frame Jeddah 2014 |
|
3701
|
|
|
* Type: Vertical |
|
3702
|
|
|
* Extent: Saudi Arabia - onshore |
|
3703
|
|
|
* Jeddah tide gauge bench mark TGBM-B height of 1.7446m at 2014.75. |
|
3704
|
|
|
*/ |
|
3705
|
|
|
public const EPSG_KINGDOM_OF_SAUDI_ARABIA_VERTICAL_REFERENCE_FRAME_JEDDAH_2014 = 'urn:ogc:def:datum:EPSG::1269'; |
|
3706
|
|
|
|
|
3707
|
|
|
/** |
|
3708
|
|
|
* Kiunga |
|
3709
|
|
|
* Type: Vertical |
|
3710
|
|
|
* Extent: Papua New Guinea - onshore south of 5°S and west of 144°E |
|
3711
|
|
|
* PSM 9465 at Kiunga Airport. Propagated through bilinear interpolation of EGM2008 geoid model (transformation |
|
3712
|
|
|
* code 3858) reduced to PSM 9465 by offset of -3.0m. |
|
3713
|
|
|
*/ |
|
3714
|
|
|
public const EPSG_KIUNGA = 'urn:ogc:def:datum:EPSG::1151'; |
|
3715
|
|
|
|
|
3716
|
|
|
/** |
|
3717
|
|
|
* Korean Datum 1985 |
|
3718
|
|
|
* Type: Geodetic |
|
3719
|
|
|
* Extent: Republic of Korea (South Korea) - onshore |
|
3720
|
|
|
* Fundamental point: Suwon. Latitude 37°16'31.9034"N, longitude 127°03'05.1451"E of Greenwich. This is |
|
3721
|
|
|
* consistent with the Tokyo 1918 datum latitude and longitude. |
|
3722
|
|
|
* Replaces Tokyo 1918 (datum code 6301). Replaced by KGD2002 (datum code 6737). |
|
3723
|
|
|
*/ |
|
3724
|
|
|
public const EPSG_KOREAN_DATUM_1985 = 'urn:ogc:def:datum:EPSG::6162'; |
|
3725
|
|
|
|
|
3726
|
|
|
/** |
|
3727
|
|
|
* Korean Datum 1995 |
|
3728
|
|
|
* Type: Geodetic |
|
3729
|
|
|
* Extent: Republic of Korea (South Korea) - onshore. |
|
3730
|
|
|
*/ |
|
3731
|
|
|
public const EPSG_KOREAN_DATUM_1995 = 'urn:ogc:def:datum:EPSG::6166'; |
|
3732
|
|
|
|
|
3733
|
|
|
/** |
|
3734
|
|
|
* Korean Geodetic Datum 2002 |
|
3735
|
|
|
* Type: Geodetic |
|
3736
|
|
|
* Extent: Republic of Korea (South Korea) |
|
3737
|
|
|
* ITRF2000 at epoch 2002.0. |
|
3738
|
|
|
* KGD2002 is geocentric. |
|
3739
|
|
|
*/ |
|
3740
|
|
|
public const EPSG_KOREAN_GEODETIC_DATUM_2002 = 'urn:ogc:def:datum:EPSG::6737'; |
|
3741
|
|
|
|
|
3742
|
|
|
/** |
|
3743
|
|
|
* Korean Vertical Datum 1964 |
|
3744
|
|
|
* Type: Vertical |
|
3745
|
|
|
* Extent: Republic of Korea (South Korea) - onshore |
|
3746
|
|
|
* MSL 1913-1916 at Incheon Bay for mainland. For far offshore islands the MSL is determined through a local tide |
|
3747
|
|
|
* gauge. |
|
3748
|
|
|
*/ |
|
3749
|
|
|
public const EPSG_KOREAN_VERTICAL_DATUM_1964 = 'urn:ogc:def:datum:EPSG::1049'; |
|
3750
|
|
|
|
|
3751
|
|
|
/** |
|
3752
|
|
|
* Kosovo Reference System 2001 |
|
3753
|
|
|
* Type: Geodetic |
|
3754
|
|
|
* Extent: Kosovo |
|
3755
|
|
|
* Densification of ETRF97 in Kosovo at epoch 2001.25. |
|
3756
|
|
|
* First order network of 32 stations connected to 8 EUREF Permanant Network (EPN) stations observed march-April |
|
3757
|
|
|
* 2001. Densified in 2012. |
|
3758
|
|
|
*/ |
|
3759
|
|
|
public const EPSG_KOSOVO_REFERENCE_SYSTEM_2001 = 'urn:ogc:def:datum:EPSG::1251'; |
|
3760
|
|
|
|
|
3761
|
|
|
/** |
|
3762
|
|
|
* Kousseri |
|
3763
|
|
|
* Type: Geodetic |
|
3764
|
|
|
* Extent: Cameroon - N'Djamena area |
|
3765
|
|
|
* IGN astronomical station Dabanga; 11°55'05.9"N 14°38'40.8"E (of Greenwich). |
|
3766
|
|
|
*/ |
|
3767
|
|
|
public const EPSG_KOUSSERI = 'urn:ogc:def:datum:EPSG::6198'; |
|
3768
|
|
|
|
|
3769
|
|
|
/** |
|
3770
|
|
|
* Kumul 34 |
|
3771
|
|
|
* Type: Vertical |
|
3772
|
|
|
* Extent: Papua New Guinea - Papuan fold and thrust belt |
|
3773
|
|
|
* Kumul Platform Station 34. Propagated through bilinear interpolation of EGM96 geoid model (transformation code |
|
3774
|
|
|
* 10084) reduced to Kumul 34 by offset of -0.87m. |
|
3775
|
|
|
*/ |
|
3776
|
|
|
public const EPSG_KUMUL_34 = 'urn:ogc:def:datum:EPSG::1150'; |
|
3777
|
|
|
|
|
3778
|
|
|
/** |
|
3779
|
|
|
* Kusaie 1951 |
|
3780
|
|
|
* Type: Geodetic |
|
3781
|
|
|
* Extent: Federated States of Micronesia - Kosrae (Kusaie). |
|
3782
|
|
|
*/ |
|
3783
|
|
|
public const EPSG_KUSAIE_1951 = 'urn:ogc:def:datum:EPSG::6735'; |
|
3784
|
|
|
|
|
3785
|
|
|
/** |
|
3786
|
|
|
* Kuwait Oil Company |
|
3787
|
|
|
* Type: Geodetic |
|
3788
|
|
|
* Extent: Kuwait - onshore |
|
3789
|
|
|
* Fundamental point: K28. Latitude: 29°03'42.348"N, longitude: 48°08'42.558"E (of Greenwich). |
|
3790
|
|
|
*/ |
|
3791
|
|
|
public const EPSG_KUWAIT_OIL_COMPANY = 'urn:ogc:def:datum:EPSG::6246'; |
|
3792
|
|
|
|
|
3793
|
|
|
/** |
|
3794
|
|
|
* Kuwait PWD |
|
3795
|
|
|
* Type: Vertical |
|
3796
|
|
|
* Extent: Kuwait - onshore |
|
3797
|
|
|
* Mean Low Low Water (MLLW) at Kuwait City. |
|
3798
|
|
|
* Approximately 1.03m below MSL. |
|
3799
|
|
|
*/ |
|
3800
|
|
|
public const EPSG_KUWAIT_PWD = 'urn:ogc:def:datum:EPSG::5186'; |
|
3801
|
|
|
|
|
3802
|
|
|
/** |
|
3803
|
|
|
* Kuwait Utility |
|
3804
|
|
|
* Type: Geodetic |
|
3805
|
|
|
* Extent: Kuwait - Kuwait City. |
|
3806
|
|
|
*/ |
|
3807
|
|
|
public const EPSG_KUWAIT_UTILITY = 'urn:ogc:def:datum:EPSG::6319'; |
|
3808
|
|
|
|
|
3809
|
|
|
/** |
|
3810
|
|
|
* Kyrgyzstan Geodetic Datum 2006 |
|
3811
|
|
|
* Type: Geodetic |
|
3812
|
|
|
* Extent: Kyrgyzstan |
|
3813
|
|
|
* 6 stations of the Kyrgyzstan zero-order network tied to ITRF2005 at epoch 2006.70. |
|
3814
|
|
|
* The accuracy in the connection to ITRF2005 is estimated to be 5 mm in horizontal and 10-20 mm in height (95% |
|
3815
|
|
|
* confidence). |
|
3816
|
|
|
*/ |
|
3817
|
|
|
public const EPSG_KYRGYZSTAN_GEODETIC_DATUM_2006 = 'urn:ogc:def:datum:EPSG::1160'; |
|
3818
|
|
|
|
|
3819
|
|
|
/** |
|
3820
|
|
|
* La Canoa |
|
3821
|
|
|
* Type: Geodetic |
|
3822
|
|
|
* Extent: Venezuela - onshore |
|
3823
|
|
|
* Fundamental point: La Canoa. Latitude: 8°34'17.170"N, longitude: 63°51'34.880"W (of Greenwich). |
|
3824
|
|
|
* Origin and network incorporated within PSAD56 (datum code 6248). |
|
3825
|
|
|
*/ |
|
3826
|
|
|
public const EPSG_LA_CANOA = 'urn:ogc:def:datum:EPSG::6247'; |
|
3827
|
|
|
|
|
3828
|
|
|
/** |
|
3829
|
|
|
* La Gomera |
|
3830
|
|
|
* Type: Vertical |
|
3831
|
|
|
* Extent: Spain - Canary Islands - La Gomera onshore |
|
3832
|
|
|
* Mean Sea Level at San Sebastian de la Gomera harbour. |
|
3833
|
|
|
* Orthometric heights. |
|
3834
|
|
|
*/ |
|
3835
|
|
|
public const EPSG_LA_GOMERA = 'urn:ogc:def:datum:EPSG::1282'; |
|
3836
|
|
|
|
|
3837
|
|
|
/** |
|
3838
|
|
|
* La Palma |
|
3839
|
|
|
* Type: Vertical |
|
3840
|
|
|
* Extent: Spain - Canary Islands - La Palma onshore |
|
3841
|
|
|
* Mean Sea Level at Santa Cruz de la Palma harbour in 1997. |
|
3842
|
|
|
* Orthometric heights. |
|
3843
|
|
|
*/ |
|
3844
|
|
|
public const EPSG_LA_PALMA = 'urn:ogc:def:datum:EPSG::1283'; |
|
3845
|
|
|
|
|
3846
|
|
|
/** |
|
3847
|
|
|
* Lagos 1955 |
|
3848
|
|
|
* Type: Vertical |
|
3849
|
|
|
* Extent: Nigeria - onshore |
|
3850
|
|
|
* Mean sea level at Lagos, 1912-1928. |
|
3851
|
|
|
*/ |
|
3852
|
|
|
public const EPSG_LAGOS_1955 = 'urn:ogc:def:datum:EPSG::5194'; |
|
3853
|
|
|
|
|
3854
|
|
|
/** |
|
3855
|
|
|
* Lake |
|
3856
|
|
|
* Type: Geodetic |
|
3857
|
|
|
* Extent: Venezuela - Lake Maracaibo area, in lake |
|
3858
|
|
|
* Fundamental point: Maracaibo Cathedral. Latitude: 10°38'34.678"N, longitude: 71°36'20.224"W (of Greenwich). |
|
3859
|
|
|
*/ |
|
3860
|
|
|
public const EPSG_LAKE = 'urn:ogc:def:datum:EPSG::6249'; |
|
3861
|
|
|
|
|
3862
|
|
|
/** |
|
3863
|
|
|
* Landeshohennetz 1995 |
|
3864
|
|
|
* Type: Vertical |
|
3865
|
|
|
* Extent: Liechtenstein; Switzerland |
|
3866
|
|
|
* Origin at Repere Pierre du Niton (RPN) defined as 373.6 metres above msl. This value derived from msl at |
|
3867
|
|
|
* Marseille in 1897 through the French Lallemand network. |
|
3868
|
|
|
* Orthometric heights. For scientific purposes only, replaces LN02. |
|
3869
|
|
|
*/ |
|
3870
|
|
|
public const EPSG_LANDESHOHENNETZ_1995 = 'urn:ogc:def:datum:EPSG::5128'; |
|
3871
|
|
|
|
|
3872
|
|
|
/** |
|
3873
|
|
|
* Landesnivellement 1902 |
|
3874
|
|
|
* Type: Vertical |
|
3875
|
|
|
* Extent: Liechtenstein; Switzerland |
|
3876
|
|
|
* Origin at Repere Pierre du Niton (RPN) defined as 373.6 metres above msl. This value derived from msl at |
|
3877
|
|
|
* Marseille in 1897 through the French Lallemand network. |
|
3878
|
|
|
* Levelling observations not corrected for gravity field. For scientific purposes, replaced by LHHN95. |
|
3879
|
|
|
*/ |
|
3880
|
|
|
public const EPSG_LANDESNIVELLEMENT_1902 = 'urn:ogc:def:datum:EPSG::5127'; |
|
3881
|
|
|
|
|
3882
|
|
|
/** |
|
3883
|
|
|
* Landshaedarkerfi Islands 2004 |
|
3884
|
|
|
* Type: Vertical |
|
3885
|
|
|
* Extent: Iceland - onshore |
|
3886
|
|
|
* Adjustment is referenced to mean sea level at Reykjavík epoch 2004.6. |
|
3887
|
|
|
*/ |
|
3888
|
|
|
public const EPSG_LANDSHAEDARKERFI_ISLANDS_2004 = 'urn:ogc:def:datum:EPSG::1190'; |
|
3889
|
|
|
|
|
3890
|
|
|
/** |
|
3891
|
|
|
* Lanzarote |
|
3892
|
|
|
* Type: Vertical |
|
3893
|
|
|
* Extent: Spain - Canary Islands - Lanzarote onshore |
|
3894
|
|
|
* Mean Sea Level at Naos harbour, Arrecife, between 1994 and 1995. |
|
3895
|
|
|
* Orthometric heights. |
|
3896
|
|
|
*/ |
|
3897
|
|
|
public const EPSG_LANZAROTE = 'urn:ogc:def:datum:EPSG::1278'; |
|
3898
|
|
|
|
|
3899
|
|
|
/** |
|
3900
|
|
|
* Lao 1993 |
|
3901
|
|
|
* Type: Geodetic |
|
3902
|
|
|
* Extent: Laos |
|
3903
|
|
|
* Fundamental point: Lao 1982 coordinates of Pakxa pillar. Latitude: 18°23'57.0056"N, longitude: |
|
3904
|
|
|
* 103°38'41.8020"E (of Greenwich). Orientation parallel with WGS 84. |
|
3905
|
|
|
* Replaces Vientiane 1982. Replaced by Lao 1997. |
|
3906
|
|
|
*/ |
|
3907
|
|
|
public const EPSG_LAO_1993 = 'urn:ogc:def:datum:EPSG::6677'; |
|
3908
|
|
|
|
|
3909
|
|
|
/** |
|
3910
|
|
|
* Lao National Datum 1997 |
|
3911
|
|
|
* Type: Geodetic |
|
3912
|
|
|
* Extent: Laos |
|
3913
|
|
|
* Fundamental point: Vientiane (Nongteng) Astro Pillar. Latitude: 18°01'31.3480"N, longitude: 102°30'57.1376"E |
|
3914
|
|
|
* (of Greenwich). |
|
3915
|
|
|
* Replaces Lao 1993. |
|
3916
|
|
|
*/ |
|
3917
|
|
|
public const EPSG_LAO_NATIONAL_DATUM_1997 = 'urn:ogc:def:datum:EPSG::6678'; |
|
3918
|
|
|
|
|
3919
|
|
|
/** |
|
3920
|
|
|
* Latvian Height System 2000 |
|
3921
|
|
|
* Type: Vertical |
|
3922
|
|
|
* Extent: Latvia - onshore |
|
3923
|
|
|
* Latvian realisation of EVRF2007. Observed from 2000-2010 and reduced to epoch 2000.5 using empirical land uplift |
|
3924
|
|
|
* model of Latvia. EVRF2007 heights of 16 points around Latvia held fixed. |
|
3925
|
|
|
* Uses Normal heights. |
|
3926
|
|
|
*/ |
|
3927
|
|
|
public const EPSG_LATVIAN_HEIGHT_SYSTEM_2000 = 'urn:ogc:def:datum:EPSG::1162'; |
|
3928
|
|
|
|
|
3929
|
|
|
/** |
|
3930
|
|
|
* Latvian coordinate system 2020 |
|
3931
|
|
|
* Type: Geodetic |
|
3932
|
|
|
* Extent: Latvia |
|
3933
|
|
|
* Aligned with ETRF2014 at epoch 2020.28. Derived at 5 well-distributed base stations of the Latvian GNSS |
|
3934
|
|
|
* permanent network (LATREF) in IGb14, transformed to ETRF2014 using EUREF parameters (CT code 8366). |
|
3935
|
|
|
* LKS-2020 is the second national realization of ETRS89. Replaces LKS-92 (datum code 6661). |
|
3936
|
|
|
*/ |
|
3937
|
|
|
public const EPSG_LATVIAN_COORDINATE_SYSTEM_2020 = 'urn:ogc:def:datum:EPSG::1356'; |
|
3938
|
|
|
|
|
3939
|
|
|
/** |
|
3940
|
|
|
* Latvian geodetic coordinate system 1992 |
|
3941
|
|
|
* Type: Geodetic |
|
3942
|
|
|
* Extent: Latvia |
|
3943
|
|
|
* Constrained to 4 ETRS89 points in Latvia from the EUREF Baltic 1992 campaign. |
|
3944
|
|
|
* Densification of ETRS89 during the 1992 Baltic campaign. Replaced by Latvian coordinate system 2020 (datum code |
|
3945
|
|
|
* 1356). |
|
3946
|
|
|
*/ |
|
3947
|
|
|
public const EPSG_LATVIAN_GEODETIC_COORDINATE_SYSTEM_1992 = 'urn:ogc:def:datum:EPSG::6661'; |
|
3948
|
|
|
|
|
3949
|
|
|
/** |
|
3950
|
|
|
* Le Pouce 1934 |
|
3951
|
|
|
* Type: Geodetic |
|
3952
|
|
|
* Extent: Mauritius - mainland onshore |
|
3953
|
|
|
* Fundamental point: Le Pouce. Latitude: 20°11'42.25"S, longitude: 57°31'18.58"E (of Greenwich). |
|
3954
|
|
|
*/ |
|
3955
|
|
|
public const EPSG_LE_POUCE_1934 = 'urn:ogc:def:datum:EPSG::6699'; |
|
3956
|
|
|
|
|
3957
|
|
|
/** |
|
3958
|
|
|
* Leigon |
|
3959
|
|
|
* Type: Geodetic |
|
3960
|
|
|
* Extent: Ghana |
|
3961
|
|
|
* Fundamental point: GCS Station 121, Leigon. Latitude: 5°38'52.27"N, longitude: 0°11'46.08"W (of Greenwich). |
|
3962
|
|
|
* Replaced Accra datum (code 6168) from 1978. Coordinates at Leigon fundamental point defined as Accra datum |
|
3963
|
|
|
* values for that point. |
|
3964
|
|
|
*/ |
|
3965
|
|
|
public const EPSG_LEIGON = 'urn:ogc:def:datum:EPSG::6250'; |
|
3966
|
|
|
|
|
3967
|
|
|
/** |
|
3968
|
|
|
* Lerwick |
|
3969
|
|
|
* Type: Vertical |
|
3970
|
|
|
* Extent: UK - Great Britain - Scotland - Shetland Islands onshore |
|
3971
|
|
|
* Mean Sea Level at Lerwick 1979 correlated to pre-1900. Initially realised through levelling network adjustment, |
|
3972
|
|
|
* from 2002 redefined to be realised through OSGM geoid model. |
|
3973
|
|
|
* Orthometric heights. |
|
3974
|
|
|
*/ |
|
3975
|
|
|
public const EPSG_LERWICK = 'urn:ogc:def:datum:EPSG::5140'; |
|
3976
|
|
|
|
|
3977
|
|
|
/** |
|
3978
|
|
|
* Liberia 1964 |
|
3979
|
|
|
* Type: Geodetic |
|
3980
|
|
|
* Extent: Liberia - onshore |
|
3981
|
|
|
* Fundamental point: Robertsfield. Latitude: 6°13'53.02"N, longitude: 10°21'35.44"W (of Greenwich). |
|
3982
|
|
|
*/ |
|
3983
|
|
|
public const EPSG_LIBERIA_1964 = 'urn:ogc:def:datum:EPSG::6251'; |
|
3984
|
|
|
|
|
3985
|
|
|
/** |
|
3986
|
|
|
* Libyan Geodetic Datum 2006 |
|
3987
|
|
|
* Type: Geodetic |
|
3988
|
|
|
* Extent: Libya |
|
3989
|
|
|
* 5 stations tied to ITRF2000 through 8 days of continuous observations in May 2006. |
|
3990
|
|
|
* Replaces ELD79. |
|
3991
|
|
|
*/ |
|
3992
|
|
|
public const EPSG_LIBYAN_GEODETIC_DATUM_2006 = 'urn:ogc:def:datum:EPSG::6754'; |
|
3993
|
|
|
|
|
3994
|
|
|
/** |
|
3995
|
|
|
* Lisbon 1890 |
|
3996
|
|
|
* Type: Geodetic |
|
3997
|
|
|
* Extent: Portugal - mainland - onshore |
|
3998
|
|
|
* Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42'43.631"N, longitude: 9°07'54.862"W of Greenwich. |
|
3999
|
|
|
* Replaced by Lisbon 1937 adjustment (which uses International 1924 ellipsoid). |
|
4000
|
|
|
*/ |
|
4001
|
|
|
public const EPSG_LISBON_1890 = 'urn:ogc:def:datum:EPSG::6666'; |
|
4002
|
|
|
|
|
4003
|
|
|
/** |
|
4004
|
|
|
* Lisbon 1890 (Lisbon) |
|
4005
|
|
|
* Type: Geodetic |
|
4006
|
|
|
* Extent: Portugal - mainland - onshore |
|
4007
|
|
|
* Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42'43.631"N, longitude: 0°E (of Lisbon). |
|
4008
|
|
|
* Replaced by Lisbon 1937 adjustment (which uses International 1924 ellipsoid). |
|
4009
|
|
|
*/ |
|
4010
|
|
|
public const EPSG_LISBON_1890_LISBON = 'urn:ogc:def:datum:EPSG::6904'; |
|
4011
|
|
|
|
|
4012
|
|
|
/** |
|
4013
|
|
|
* Lisbon 1937 |
|
4014
|
|
|
* Type: Geodetic |
|
4015
|
|
|
* Extent: Portugal - mainland - onshore |
|
4016
|
|
|
* Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42'43.631"N, longitude: 9°07'54.862"W (of |
|
4017
|
|
|
* Greenwich). |
|
4018
|
|
|
* Replaces Lisbon 1890 adjustment (which used Bessel 1841 ellipsoid). |
|
4019
|
|
|
*/ |
|
4020
|
|
|
public const EPSG_LISBON_1937 = 'urn:ogc:def:datum:EPSG::6207'; |
|
4021
|
|
|
|
|
4022
|
|
|
/** |
|
4023
|
|
|
* Lisbon 1937 (Lisbon) |
|
4024
|
|
|
* Type: Geodetic |
|
4025
|
|
|
* Extent: Portugal - mainland - onshore |
|
4026
|
|
|
* Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42'43.631"N, longitude: 0°E (of Lisbon). |
|
4027
|
|
|
* Replaces Lisbon 1890 adjustment (which used Bessel 1841 ellipsoid). |
|
4028
|
|
|
*/ |
|
4029
|
|
|
public const EPSG_LISBON_1937_LISBON = 'urn:ogc:def:datum:EPSG::6803'; |
|
4030
|
|
|
|
|
4031
|
|
|
/** |
|
4032
|
|
|
* Lithuania 1994 (ETRS89) |
|
4033
|
|
|
* Type: Geodetic |
|
4034
|
|
|
* Extent: Lithuania |
|
4035
|
|
|
* Constrained to 4 ETRS89 points in Lithuania from the EUREF Baltic 1992 campaign. |
|
4036
|
|
|
* Densification of ETRS89 during the 1992 Baltic campaign. |
|
4037
|
|
|
*/ |
|
4038
|
|
|
public const EPSG_LITHUANIA_1994_ETRS89 = 'urn:ogc:def:datum:EPSG::6126'; |
|
4039
|
|
|
|
|
4040
|
|
|
/** |
|
4041
|
|
|
* Lithuanian Height System 2007 |
|
4042
|
|
|
* Type: Vertical |
|
4043
|
|
|
* Extent: Lithuania - onshore |
|
4044
|
|
|
* Lithuanian realisation of EVRF2007. EVRF2007 heights of 10 points in Lithuania held fixed. |
|
4045
|
|
|
* Uses Normal heights. |
|
4046
|
|
|
*/ |
|
4047
|
|
|
public const EPSG_LITHUANIAN_HEIGHT_SYSTEM_2007 = 'urn:ogc:def:datum:EPSG::1299'; |
|
4048
|
|
|
|
|
4049
|
|
|
/** |
|
4050
|
|
|
* Little Cayman Vertical Datum 1961 |
|
4051
|
|
|
* Type: Vertical |
|
4052
|
|
|
* Extent: Cayman Islands - Little Cayman. |
|
4053
|
|
|
*/ |
|
4054
|
|
|
public const EPSG_LITTLE_CAYMAN_VERTICAL_DATUM_1961 = 'urn:ogc:def:datum:EPSG::1098'; |
|
4055
|
|
|
|
|
4056
|
|
|
/** |
|
4057
|
|
|
* Local Tidal Datum at Pago Pago 2020 |
|
4058
|
|
|
* Type: Vertical |
|
4059
|
|
|
* Extent: American Samoa - Tutuila island |
|
4060
|
|
|
* MSL at Pago Pago 2011–2016. |
|
4061
|
|
|
* Normal-orthometric heights. Replaces ASVD02 (datum code 1125) in March 2020 after the ASVD02 benchmarks were |
|
4062
|
|
|
* destroyed by earthquake activity. |
|
4063
|
|
|
*/ |
|
4064
|
|
|
public const EPSG_LOCAL_TIDAL_DATUM_AT_PAGO_PAGO_2020 = 'urn:ogc:def:datum:EPSG::1302'; |
|
4065
|
|
|
|
|
4066
|
|
|
/** |
|
4067
|
|
|
* Locodjo 1965 |
|
4068
|
|
|
* Type: Geodetic |
|
4069
|
|
|
* Extent: Côte d'Ivoire (Ivory Coast) |
|
4070
|
|
|
* Fundamental point: T5 Banco. Latitude: 5°18'50.5"N, longitude: 4°02'05.1"W (of Greenwich). |
|
4071
|
|
|
*/ |
|
4072
|
|
|
public const EPSG_LOCODJO_1965 = 'urn:ogc:def:datum:EPSG::6142'; |
|
4073
|
|
|
|
|
4074
|
|
|
/** |
|
4075
|
|
|
* Loma Quintana |
|
4076
|
|
|
* Type: Geodetic |
|
4077
|
|
|
* Extent: Venezuela - onshore north of approximately 7°45'N |
|
4078
|
|
|
* Fundamental point: Loma Quintana. |
|
4079
|
|
|
* Replaced by La Canoa (code 6247). |
|
4080
|
|
|
*/ |
|
4081
|
|
|
public const EPSG_LOMA_QUINTANA = 'urn:ogc:def:datum:EPSG::6288'; |
|
4082
|
|
|
|
|
4083
|
|
|
/** |
|
4084
|
|
|
* Lome |
|
4085
|
|
|
* Type: Geodetic |
|
4086
|
|
|
* Extent: Togo. |
|
4087
|
|
|
*/ |
|
4088
|
|
|
public const EPSG_LOME = 'urn:ogc:def:datum:EPSG::6252'; |
|
4089
|
|
|
|
|
4090
|
|
|
/** |
|
4091
|
|
|
* Low Water |
|
4092
|
|
|
* Type: Vertical |
|
4093
|
|
|
* Extent: World |
|
4094
|
|
|
* Not specific to any location or epoch. |
|
4095
|
|
|
* The lowest level reached by the water surface in one tidal cycle. When used in inland (non-tidal) waters it is |
|
4096
|
|
|
* generally defined as a level which the daily mean water level would fall below less than 5% of the time. On a |
|
4097
|
|
|
* river it is a sloping surface. |
|
4098
|
|
|
*/ |
|
4099
|
|
|
public const EPSG_LOW_WATER = 'urn:ogc:def:datum:EPSG::1093'; |
|
4100
|
|
|
|
|
4101
|
|
|
/** |
|
4102
|
|
|
* Lower Low Water Large Tide |
|
4103
|
|
|
* Type: Vertical |
|
4104
|
|
|
* Extent: World |
|
4105
|
|
|
* Not specific to any location or epoch. |
|
4106
|
|
|
* The average of the lowest low waters, one from each of 19 years of observations. |
|
4107
|
|
|
*/ |
|
4108
|
|
|
public const EPSG_LOWER_LOW_WATER_LARGE_TIDE = 'urn:ogc:def:datum:EPSG::1083'; |
|
4109
|
|
|
|
|
4110
|
|
|
/** |
|
4111
|
|
|
* Lowest Astronomical Tide |
|
4112
|
|
|
* Type: Vertical |
|
4113
|
|
|
* Extent: World |
|
4114
|
|
|
* Not specific to any location or epoch. |
|
4115
|
|
|
* The lowest tide level which can be predicted to occur under average meteorological conditions and under any |
|
4116
|
|
|
* combination of astronomical conditions. |
|
4117
|
|
|
*/ |
|
4118
|
|
|
public const EPSG_LOWEST_ASTRONOMICAL_TIDE = 'urn:ogc:def:datum:EPSG::1080'; |
|
4119
|
|
|
|
|
4120
|
|
|
/** |
|
4121
|
|
|
* Lowest Astronomical Tide Netherlands |
|
4122
|
|
|
* Type: Vertical |
|
4123
|
|
|
* Extent: Netherlands - offshore North Sea and nearshore |
|
4124
|
|
|
* Surface defined through the nllat hydroid model applied to ETRS89. |
|
4125
|
|
|
* The lowest tide level which can be predicted to occur under average meteorological conditions and under any |
|
4126
|
|
|
* combination of astronomical conditions. |
|
4127
|
|
|
*/ |
|
4128
|
|
|
public const EPSG_LOWEST_ASTRONOMICAL_TIDE_NETHERLANDS = 'urn:ogc:def:datum:EPSG::1290'; |
|
4129
|
|
|
|
|
4130
|
|
|
/** |
|
4131
|
|
|
* Luxembourg Reference Frame |
|
4132
|
|
|
* Type: Geodetic |
|
4133
|
|
|
* Extent: Luxembourg |
|
4134
|
|
|
* Fundamental point of 1930 triangulation: northern station of Habay-la-Neuve baseline in Belgium. Latitude: |
|
4135
|
|
|
* 49°43'24.408"N, longitude: 5°38'22.470"E (of Greenwich). Since 2006 LUREF has been realized by GNSS station |
|
4136
|
|
|
* positions and transformation from ETRF. |
|
4137
|
|
|
* The transformation from ETRF 2000 first defining LUREF in 2006 has been recomputed in 2014 and 2020. |
|
4138
|
|
|
*/ |
|
4139
|
|
|
public const EPSG_LUXEMBOURG_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::6181'; |
|
4140
|
|
|
|
|
4141
|
|
|
/** |
|
4142
|
|
|
* Luzon 1911 |
|
4143
|
|
|
* Type: Geodetic |
|
4144
|
|
|
* Extent: Philippines - onshore |
|
4145
|
|
|
* Fundamental point: Balacan. Latitude: 13°33'41.000"N, longitude: 121°52'03.000"E (of Greenwich). |
|
4146
|
|
|
* Replaced by Philippine Reference system of 1992 (datum code 6683). |
|
4147
|
|
|
*/ |
|
4148
|
|
|
public const EPSG_LUZON_1911 = 'urn:ogc:def:datum:EPSG::6253'; |
|
4149
|
|
|
|
|
4150
|
|
|
/** |
|
4151
|
|
|
* Lyon Turin Ferroviaire 2004 |
|
4152
|
|
|
* Type: Geodetic |
|
4153
|
|
|
* Extent: France and Italy - on or related to the rail route from Lyon to Turin |
|
4154
|
|
|
* Densification of ETRS89 realised through network of 40 stations adjusted to 7 EUREF reference stations in |
|
4155
|
|
|
* [email protected]. |
|
4156
|
|
|
*/ |
|
4157
|
|
|
public const EPSG_LYON_TURIN_FERROVIAIRE_2004 = 'urn:ogc:def:datum:EPSG::1295'; |
|
4158
|
|
|
|
|
4159
|
|
|
/** |
|
4160
|
|
|
* Lyttelton 1937 |
|
4161
|
|
|
* Type: Vertical |
|
4162
|
|
|
* Extent: New Zealand - South Island - between approximately 41°20'S and 45°S - Lyttleton vertical CRS area |
|
4163
|
|
|
* MSL at Lyttelton harbour over 9 years between 1918 and 1933. |
|
4164
|
|
|
*/ |
|
4165
|
|
|
public const EPSG_LYTTELTON_1937 = 'urn:ogc:def:datum:EPSG::5161'; |
|
4166
|
|
|
|
|
4167
|
|
|
/** |
|
4168
|
|
|
* M'poraloko |
|
4169
|
|
|
* Type: Geodetic |
|
4170
|
|
|
* Extent: Gabon. |
|
4171
|
|
|
*/ |
|
4172
|
|
|
public const EPSG_MPORALOKO = 'urn:ogc:def:datum:EPSG::6266'; |
|
4173
|
|
|
|
|
4174
|
|
|
/** |
|
4175
|
|
|
* MALS09 Intermediate Reference Frame |
|
4176
|
|
|
* Type: Geodetic |
|
4177
|
|
|
* Extent: UK - on or related to the rail route from London (Marylebone) to Leamington Spa |
|
4178
|
|
|
* Defined through the application of the MALS09 NTv2 transformation to ETRS89 as realized through OSNet v2009 |
|
4179
|
|
|
* CORS. |
|
4180
|
|
|
* Created in 2022 to support intermediate CRS MALS09-IRF in the emulation of the MALS09 Snake map projection. |
|
4181
|
|
|
*/ |
|
4182
|
|
|
public const EPSG_MALS09_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1343'; |
|
4183
|
|
|
|
|
4184
|
|
|
/** |
|
4185
|
|
|
* MGI 1901 |
|
4186
|
|
|
* Type: Geodetic |
|
4187
|
|
|
* Extent: Bosnia and Herzegovina; Croatia - onshore; Kosovo; Montenegro - onshore; North Macedonia; Serbia; |
|
4188
|
|
|
* Slovenia - onshore |
|
4189
|
|
|
* Fundamental point: Hermannskogel. Latitude: 48°16'15.29"N, longitude: 16°17'55.04"E (of Greenwich). |
|
4190
|
|
|
* The longitude of the datum origin equates to the Albrecht 1902 value for the Ferro meridian of 17°39'46.02" |
|
4191
|
|
|
* west of Greenwich. Densified in 1948. |
|
4192
|
|
|
*/ |
|
4193
|
|
|
public const EPSG_MGI_1901 = 'urn:ogc:def:datum:EPSG::1031'; |
|
4194
|
|
|
|
|
4195
|
|
|
/** |
|
4196
|
|
|
* MML07 Intermediate Reference Frame |
|
4197
|
|
|
* Type: Geodetic |
|
4198
|
|
|
* Extent: UK - on or related to the Midland Mainline rail route from Sheffield to London |
|
4199
|
|
|
* Defined through the application of the MML07 NTv2 transformation (code 9369) to ETRS89 as realized through OSNet |
|
4200
|
|
|
* v2009 CORS. |
|
4201
|
|
|
* Created in 2020 to support intermediate CRS "MML07-IRF" in the emulation of the MML07 Snake map projection. |
|
4202
|
|
|
*/ |
|
4203
|
|
|
public const EPSG_MML07_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1271'; |
|
4204
|
|
|
|
|
4205
|
|
|
/** |
|
4206
|
|
|
* MOLDOR11 Intermediate Reference Frame |
|
4207
|
|
|
* Type: Geodetic |
|
4208
|
|
|
* Extent: UK - on or related to the rail route from Manchester via Ordsall Lane and the Hope Valley to Dore |
|
4209
|
|
|
* Junction |
|
4210
|
|
|
* Defined through the application of the MOLDOR11 NTv2 transformation (code 9878) to ETRS89 as realized through |
|
4211
|
|
|
* OSNet v2009 CORS. |
|
4212
|
|
|
* Created in 2021 to support intermediate CRS "MOLDOR11-IRF" in the emulation of the MOLDOR11 Snake map |
|
4213
|
|
|
* projection. |
|
4214
|
|
|
*/ |
|
4215
|
|
|
public const EPSG_MOLDOR11_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1315'; |
|
4216
|
|
|
|
|
4217
|
|
|
/** |
|
4218
|
|
|
* MOLDREF99 |
|
4219
|
|
|
* Type: Geodetic |
|
4220
|
|
|
* Extent: Moldova |
|
4221
|
|
|
* Densification of ETRS89. |
|
4222
|
|
|
*/ |
|
4223
|
|
|
public const EPSG_MOLDREF99 = 'urn:ogc:def:datum:EPSG::1032'; |
|
4224
|
|
|
|
|
4225
|
|
|
/** |
|
4226
|
|
|
* MOMRA Terrestrial Reference Frame 2000 |
|
4227
|
|
|
* Type: Geodetic |
|
4228
|
|
|
* Extent: Saudi Arabia |
|
4229
|
|
|
* ITRF2000 at epoch 2004.00. |
|
4230
|
|
|
* 13 CORS Fiducial Stations linked to 7 IGS stations by 10-day long GPS survey. |
|
4231
|
|
|
*/ |
|
4232
|
|
|
public const EPSG_MOMRA_TERRESTRIAL_REFERENCE_FRAME_2000 = 'urn:ogc:def:datum:EPSG::1218'; |
|
4233
|
|
|
|
|
4234
|
|
|
/** |
|
4235
|
|
|
* MOMRA Vertical Geodetic Control |
|
4236
|
|
|
* Type: Vertical |
|
4237
|
|
|
* Extent: Saudi Arabia - onshore |
|
4238
|
|
|
* Mean sea level Jeddah 1969. |
|
4239
|
|
|
*/ |
|
4240
|
|
|
public const EPSG_MOMRA_VERTICAL_GEODETIC_CONTROL = 'urn:ogc:def:datum:EPSG::1219'; |
|
4241
|
|
|
|
|
4242
|
|
|
/** |
|
4243
|
|
|
* MOP78 |
|
4244
|
|
|
* Type: Geodetic |
|
4245
|
|
|
* Extent: Wallis and Futuna - Wallis. |
|
4246
|
|
|
*/ |
|
4247
|
|
|
public const EPSG_MOP78 = 'urn:ogc:def:datum:EPSG::6639'; |
|
4248
|
|
|
|
|
4249
|
|
|
/** |
|
4250
|
|
|
* MRH21 Intermediate Reference Frame |
|
4251
|
|
|
* Type: Geodetic |
|
4252
|
|
|
* Extent: UK - on or related to Midland Rail Hub, covering routes through Cardiff, Bristol, Gloucester, Derby, |
|
4253
|
|
|
* Birmingham, Leicester, and Lincoln |
|
4254
|
|
|
* Defined through the application of the MRH21 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
4255
|
|
|
* Created in 2021 to support intermediate CRS "MRH21-IRF" in the emulation of the MRH21 Snake map projection. |
|
4256
|
|
|
*/ |
|
4257
|
|
|
public const EPSG_MRH21_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1314'; |
|
4258
|
|
|
|
|
4259
|
|
|
/** |
|
4260
|
|
|
* MWC18 Intermediate Reference Frame |
|
4261
|
|
|
* Type: Geodetic |
|
4262
|
|
|
* Extent: UK - on or related to the rail route from Manchester via Wigan and Liverpool to Chester |
|
4263
|
|
|
* Defined through the application of the MWC18 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
4264
|
|
|
* Created in 2022 to support intermediate CRS MWC18-IRF in the emulation of the MWC18 Snake map projection. |
|
4265
|
|
|
*/ |
|
4266
|
|
|
public const EPSG_MWC18_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1324'; |
|
4267
|
|
|
|
|
4268
|
|
|
/** |
|
4269
|
|
|
* Macao 1920 |
|
4270
|
|
|
* Type: Geodetic |
|
4271
|
|
|
* Extent: China - Macao |
|
4272
|
|
|
* Fundamental point: Avenida Conselheiro Borja base A, later transferred to Monte da Barra, latitude |
|
4273
|
|
|
* 22°11'03.139"N, longitude 113°31'43.625"E (of Greenwich). |
|
4274
|
|
|
* Replaces Macao 1907. In 1955 an adjustment made in 1940 was assessed to have unresolvable conflicts and the 1920 |
|
4275
|
|
|
* adjustment was reinstated. |
|
4276
|
|
|
*/ |
|
4277
|
|
|
public const EPSG_MACAO_1920 = 'urn:ogc:def:datum:EPSG::1207'; |
|
4278
|
|
|
|
|
4279
|
|
|
/** |
|
4280
|
|
|
* Macao Geodetic Datum 2008 |
|
4281
|
|
|
* Type: Geodetic |
|
4282
|
|
|
* Extent: China - Macao |
|
4283
|
|
|
* ITRF2005 at epoch 2008.38. |
|
4284
|
|
|
* Locally sometimes referred to as ITRF2005, this is not strictly correct as it applies only at epoch 2008.38 and |
|
4285
|
|
|
* ignores subsequent tectonic plate motion. |
|
4286
|
|
|
*/ |
|
4287
|
|
|
public const EPSG_MACAO_GEODETIC_DATUM_2008 = 'urn:ogc:def:datum:EPSG::1208'; |
|
4288
|
|
|
|
|
4289
|
|
|
/** |
|
4290
|
|
|
* Macao Height Datum |
|
4291
|
|
|
* Type: Vertical |
|
4292
|
|
|
* Extent: China - Macao |
|
4293
|
|
|
* Mean sea level Ma Kau Seak 1925-1964. |
|
4294
|
|
|
*/ |
|
4295
|
|
|
public const EPSG_MACAO_HEIGHT_DATUM = 'urn:ogc:def:datum:EPSG::1210'; |
|
4296
|
|
|
|
|
4297
|
|
|
/** |
|
4298
|
|
|
* Madrid 1870 (Madrid) |
|
4299
|
|
|
* Type: Geodetic |
|
4300
|
|
|
* Extent: Spain - mainland onshore |
|
4301
|
|
|
* Fundamental point: Retiro observatory, Madrid. |
|
4302
|
|
|
* Replaced by ED50. |
|
4303
|
|
|
*/ |
|
4304
|
|
|
public const EPSG_MADRID_1870_MADRID = 'urn:ogc:def:datum:EPSG::6903'; |
|
4305
|
|
|
|
|
4306
|
|
|
/** |
|
4307
|
|
|
* Madzansua |
|
4308
|
|
|
* Type: Geodetic |
|
4309
|
|
|
* Extent: Mozambique - west - Tete province |
|
4310
|
|
|
* Fundamental point: Madzansua. |
|
4311
|
|
|
* Replaced by transformation to Tete datum (datum code 6127). |
|
4312
|
|
|
*/ |
|
4313
|
|
|
public const EPSG_MADZANSUA = 'urn:ogc:def:datum:EPSG::6128'; |
|
4314
|
|
|
|
|
4315
|
|
|
/** |
|
4316
|
|
|
* Mahe 1971 |
|
4317
|
|
|
* Type: Geodetic |
|
4318
|
|
|
* Extent: Seychelles - Mahe Island |
|
4319
|
|
|
* Fundamental point: Station SITE. Latitude: 4°40'14.644"S, longitude: 55°28'44.488"E (of Greenwich). |
|
4320
|
|
|
* South East Island 1943 (datum code 1138) used for topographic mapping, cadastral and hydrographic survey. |
|
4321
|
|
|
*/ |
|
4322
|
|
|
public const EPSG_MAHE_1971 = 'urn:ogc:def:datum:EPSG::6256'; |
|
4323
|
|
|
|
|
4324
|
|
|
/** |
|
4325
|
|
|
* Makassar |
|
4326
|
|
|
* Type: Geodetic |
|
4327
|
|
|
* Extent: Indonesia - south west Sulawesi |
|
4328
|
|
|
* Fundamental point: station P1, Moncongloe. Latitude: 5°08'41.42"S, long 119°24'14.94"E (of Greenwich). |
|
4329
|
|
|
*/ |
|
4330
|
|
|
public const EPSG_MAKASSAR = 'urn:ogc:def:datum:EPSG::6257'; |
|
4331
|
|
|
|
|
4332
|
|
|
/** |
|
4333
|
|
|
* Makassar (Jakarta) |
|
4334
|
|
|
* Type: Geodetic |
|
4335
|
|
|
* Extent: Indonesia - south west Sulawesi |
|
4336
|
|
|
* Fundamental point: station P1, Moncongloe. Latitude 5°08'41.42"S, longitude 12°35'47.15"E (of Jakarta). |
|
4337
|
|
|
*/ |
|
4338
|
|
|
public const EPSG_MAKASSAR_JAKARTA = 'urn:ogc:def:datum:EPSG::6804'; |
|
4339
|
|
|
|
|
4340
|
|
|
/** |
|
4341
|
|
|
* Malin Head |
|
4342
|
|
|
* Type: Vertical |
|
4343
|
|
|
* Extent: Ireland - onshore. UK - Northern Ireland (Ulster) - onshore |
|
4344
|
|
|
* Mean sea level between January 1960 and December 1969. Initially realised through levelling network adjustment, |
|
4345
|
|
|
* from 2002 redefined to be realised through OSGM geoid model. |
|
4346
|
|
|
* Orthometric heights. |
|
4347
|
|
|
*/ |
|
4348
|
|
|
public const EPSG_MALIN_HEAD = 'urn:ogc:def:datum:EPSG::5130'; |
|
4349
|
|
|
|
|
4350
|
|
|
/** |
|
4351
|
|
|
* Mallorca |
|
4352
|
|
|
* Type: Vertical |
|
4353
|
|
|
* Extent: Spain - Balearic Islands - Mallorca onshore |
|
4354
|
|
|
* Mean Sea Level at Palma de Mallorca harbour between April 1997 and December 2006. |
|
4355
|
|
|
* Orthometric heights. |
|
4356
|
|
|
*/ |
|
4357
|
|
|
public const EPSG_MALLORCA = 'urn:ogc:def:datum:EPSG::1275'; |
|
4358
|
|
|
|
|
4359
|
|
|
/** |
|
4360
|
|
|
* Malongo 1987 |
|
4361
|
|
|
* Type: Geodetic |
|
4362
|
|
|
* Extent: Angola (Cabinda) - offshore; The Democratic Republic of the Congo (Zaire) - offshore |
|
4363
|
|
|
* Fundamental point: Station Y at Malongo base camp. Latitude: 5°23'30.810"S, longitude: 12°12'01.590"E (of |
|
4364
|
|
|
* Greenwich). |
|
4365
|
|
|
* Replaced Mhast (offshore) (code 6705) in 1987. Origin coordinates constrained to those of Mhast (offshore) but |
|
4366
|
|
|
* other station coordinates differ. References to "Mhast" since 1987 often should have stated "Malongo 1987". |
|
4367
|
|
|
*/ |
|
4368
|
|
|
public const EPSG_MALONGO_1987 = 'urn:ogc:def:datum:EPSG::6259'; |
|
4369
|
|
|
|
|
4370
|
|
|
/** |
|
4371
|
|
|
* Manoca 1962 |
|
4372
|
|
|
* Type: Geodetic |
|
4373
|
|
|
* Extent: Cameroon - coastal area |
|
4374
|
|
|
* Reservoir centre at the Manoca tower ("tube Suel"), 3°51'49.896"N, 9°36'49.347"E (of Greenwich). |
|
4375
|
|
|
* The intent of the Bukavu 1953 conference was to adopt the Clarke 1880 (RGS) ellipsoid (code 7012) but in |
|
4376
|
|
|
* practice this datum has used the IGN version. Replaces Douala 1948 (code 6192). |
|
4377
|
|
|
*/ |
|
4378
|
|
|
public const EPSG_MANOCA_1962 = 'urn:ogc:def:datum:EPSG::6193'; |
|
4379
|
|
|
|
|
4380
|
|
|
/** |
|
4381
|
|
|
* Maputo |
|
4382
|
|
|
* Type: Vertical |
|
4383
|
|
|
* Extent: Mozambique - onshore |
|
4384
|
|
|
* Mean sea level at Maputo. |
|
4385
|
|
|
*/ |
|
4386
|
|
|
public const EPSG_MAPUTO = 'urn:ogc:def:datum:EPSG::5121'; |
|
4387
|
|
|
|
|
4388
|
|
|
/** |
|
4389
|
|
|
* Marco Geocentrico Nacional de Referencia |
|
4390
|
|
|
* Type: Geodetic |
|
4391
|
|
|
* Extent: Colombia. Includes San Andres y Providencia, Malpelo Islands, Roncador Bank, Serrana Bank and Serranilla |
|
4392
|
|
|
* Bank |
|
4393
|
|
|
* Densification of SIRGAS95 (ITRF94 at epoch 1995.4) in Colombia. Bogota observatory coordinates: Latitude: |
|
4394
|
|
|
* 4°35'46.3215"N, longitude: 74°04'39.0285"W (of Greenwich). |
|
4395
|
|
|
* Densification of SIRGAS 1995 within Colombia. Replaces Bogota 1975 (datum code 6218). |
|
4396
|
|
|
*/ |
|
4397
|
|
|
public const EPSG_MARCO_GEOCENTRICO_NACIONAL_DE_REFERENCIA = 'urn:ogc:def:datum:EPSG::6686'; |
|
4398
|
|
|
|
|
4399
|
|
|
/** |
|
4400
|
|
|
* Marco Geocentrico Nacional de Referencia 2018 |
|
4401
|
|
|
* Type: Geodetic |
|
4402
|
|
|
* Extent: Colombia. Includes San Andres y Providencia, Malpelo Islands, Roncador Bank, Serrana Bank and Serranilla |
|
4403
|
|
|
* Bank |
|
4404
|
|
|
* Densification of ITRF2014 at epoch 2018.0 in Colombia. Bogota observatory coordinates: Latitude: |
|
4405
|
|
|
* 4°35'46.33160"N, longitude: 74°04'39.02797"W (of Greenwich). |
|
4406
|
|
|
* Active network referenced to [email protected] and passive network referenced to [email protected] updated to |
|
4407
|
|
|
* ITRF2014 using IERS transformations EPSG:7790 and EPSG:8075 respectively then VEMOS2009 velocity model applied |
|
4408
|
|
|
* to bring coordinates to epoch 2018.0. |
|
4409
|
|
|
*/ |
|
4410
|
|
|
public const EPSG_MARCO_GEOCENTRICO_NACIONAL_DE_REFERENCIA_2018 = 'urn:ogc:def:datum:EPSG::1329'; |
|
4411
|
|
|
|
|
4412
|
|
|
/** |
|
4413
|
|
|
* Marco Geodesico Nacional de Bolivia |
|
4414
|
|
|
* Type: Geodetic |
|
4415
|
|
|
* Extent: Bolivia |
|
4416
|
|
|
* IGS05 (ITRF2005) at epoch 2010.2. Densification of SIRGAS95 network in Bolivia, consisting of 125 passive |
|
4417
|
|
|
* geodetic stations and 8 continuous recording GPS stations. |
|
4418
|
|
|
* Densification of SIRGAS 1995 within Bolivia. Replaces PSAD56 (datum code 6248) in Bolivia. |
|
4419
|
|
|
*/ |
|
4420
|
|
|
public const EPSG_MARCO_GEODESICO_NACIONAL_DE_BOLIVIA = 'urn:ogc:def:datum:EPSG::1063'; |
|
4421
|
|
|
|
|
4422
|
|
|
/** |
|
4423
|
|
|
* Marcus Island 1952 |
|
4424
|
|
|
* Type: Geodetic |
|
4425
|
|
|
* Extent: Japan - onshore - Tokyo-to south of 28°N and east of 143°E - Minamitori-shima (Marcus Island) |
|
4426
|
|
|
* Marcus Island Astronomic Station. |
|
4427
|
|
|
*/ |
|
4428
|
|
|
public const EPSG_MARCUS_ISLAND_1952 = 'urn:ogc:def:datum:EPSG::6711'; |
|
4429
|
|
|
|
|
4430
|
|
|
/** |
|
4431
|
|
|
* Marshall Islands 1960 |
|
4432
|
|
|
* Type: Geodetic |
|
4433
|
|
|
* Extent: Marshall Islands - onshore. Wake atoll onshore. |
|
4434
|
|
|
*/ |
|
4435
|
|
|
public const EPSG_MARSHALL_ISLANDS_1960 = 'urn:ogc:def:datum:EPSG::6732'; |
|
4436
|
|
|
|
|
4437
|
|
|
/** |
|
4438
|
|
|
* Martinique 1938 |
|
4439
|
|
|
* Type: Geodetic |
|
4440
|
|
|
* Extent: Martinique - onshore |
|
4441
|
|
|
* Fundamental point: Fort Desaix. Latitude: 14°36'54.090"N, longitude: 61°04'04.030"W (of Greenwich). |
|
4442
|
|
|
* Replaced by RRAF 1991 (datum code 1047). |
|
4443
|
|
|
*/ |
|
4444
|
|
|
public const EPSG_MARTINIQUE_1938 = 'urn:ogc:def:datum:EPSG::6625'; |
|
4445
|
|
|
|
|
4446
|
|
|
/** |
|
4447
|
|
|
* Martinique 1955 |
|
4448
|
|
|
* Type: Vertical |
|
4449
|
|
|
* Extent: Martinique - onshore |
|
4450
|
|
|
* Mean sea level at Fort de France 1939. Marker DO-4-II on quay wall with elevation of 1.38m above msl. |
|
4451
|
|
|
* Orthometric heights. Replaced by Martinique 1987 (datum code 5154). |
|
4452
|
|
|
*/ |
|
4453
|
|
|
public const EPSG_MARTINIQUE_1955 = 'urn:ogc:def:datum:EPSG::5192'; |
|
4454
|
|
|
|
|
4455
|
|
|
/** |
|
4456
|
|
|
* Martinique 1987 |
|
4457
|
|
|
* Type: Vertical |
|
4458
|
|
|
* Extent: Martinique - onshore |
|
4459
|
|
|
* Mean sea level 1939 at Fort de France. Origin = marker Nbc2 on rebuilt quay wall with defined elevation of 1.38m |
|
4460
|
|
|
* above msl. Martinique 1987 height 0.00m is 0.56m above SHOM sounding datum. |
|
4461
|
|
|
* Orthometric heights. Replaces Martinique 1955 (datum code 5192). |
|
4462
|
|
|
*/ |
|
4463
|
|
|
public const EPSG_MARTINIQUE_1987 = 'urn:ogc:def:datum:EPSG::5154'; |
|
4464
|
|
|
|
|
4465
|
|
|
/** |
|
4466
|
|
|
* Massawa |
|
4467
|
|
|
* Type: Geodetic |
|
4468
|
|
|
* Extent: Eritrea. |
|
4469
|
|
|
*/ |
|
4470
|
|
|
public const EPSG_MASSAWA = 'urn:ogc:def:datum:EPSG::6262'; |
|
4471
|
|
|
|
|
4472
|
|
|
/** |
|
4473
|
|
|
* Maupiti 83 |
|
4474
|
|
|
* Type: Geodetic |
|
4475
|
|
|
* Extent: French Polynesia - Society Islands - Maupiti |
|
4476
|
|
|
* Fundamental point: Pitiahe South Base. Latitude: 16°28'28.942"S, longitude: 152°14'55.059"W (of Greenwich). |
|
4477
|
|
|
* Replaced by RGPF (datum code 6687). |
|
4478
|
|
|
*/ |
|
4479
|
|
|
public const EPSG_MAUPITI_83 = 'urn:ogc:def:datum:EPSG::6692'; |
|
4480
|
|
|
|
|
4481
|
|
|
/** |
|
4482
|
|
|
* Maupiti SAU 2001 |
|
4483
|
|
|
* Type: Vertical |
|
4484
|
|
|
* Extent: French Polynesia - Society Islands - Maupiti |
|
4485
|
|
|
* Fundamental benchmark: RN11 |
|
4486
|
|
|
* Included as part of NGPF - see datum code 5195. |
|
4487
|
|
|
*/ |
|
4488
|
|
|
public const EPSG_MAUPITI_SAU_2001 = 'urn:ogc:def:datum:EPSG::5199'; |
|
4489
|
|
|
|
|
4490
|
|
|
/** |
|
4491
|
|
|
* Mauritania 1999 |
|
4492
|
|
|
* Type: Geodetic |
|
4493
|
|
|
* Extent: Mauritania |
|
4494
|
|
|
* ITRF96 at epoch 1997.0 |
|
4495
|
|
|
* A network of 36 GPS stations tied to ITRF96, 8 of which are IGN 1962 astronomic points. |
|
4496
|
|
|
*/ |
|
4497
|
|
|
public const EPSG_MAURITANIA_1999 = 'urn:ogc:def:datum:EPSG::6702'; |
|
4498
|
|
|
|
|
4499
|
|
|
/** |
|
4500
|
|
|
* Mayotte 1950 |
|
4501
|
|
|
* Type: Vertical |
|
4502
|
|
|
* Extent: Mayotte - onshore |
|
4503
|
|
|
* IGN 1950 marker (height 0.0m) on southwest jetty at Dzaoudzi (Petite-Terre) is 2.18m above zero of tide gauge. |
|
4504
|
|
|
* SHOM 1953 marker on east (Issoufali) jetty at Dzaoudzi (height 4.74m) is the base for Mayotte heights. |
|
4505
|
|
|
* Datum transferred to benchmark RN0 with height of 2.774m above tide gauge on eastern jetty at Mamoudzou |
|
4506
|
|
|
* (Grand-Terre) in 1979. |
|
4507
|
|
|
*/ |
|
4508
|
|
|
public const EPSG_MAYOTTE_1950 = 'urn:ogc:def:datum:EPSG::5191'; |
|
4509
|
|
|
|
|
4510
|
|
|
/** |
|
4511
|
|
|
* Mean High Water |
|
4512
|
|
|
* Type: Vertical |
|
4513
|
|
|
* Extent: World |
|
4514
|
|
|
* Not specific to any location or epoch. |
|
4515
|
|
|
* The average height of the high waters over a 19-year period. |
|
4516
|
|
|
*/ |
|
4517
|
|
|
public const EPSG_MEAN_HIGH_WATER = 'urn:ogc:def:datum:EPSG::1092'; |
|
4518
|
|
|
|
|
4519
|
|
|
/** |
|
4520
|
|
|
* Mean High Water Spring Tides |
|
4521
|
|
|
* Type: Vertical |
|
4522
|
|
|
* Extent: World |
|
4523
|
|
|
* Not specific to any location or epoch. |
|
4524
|
|
|
* The average height of the high waters of spring tides. |
|
4525
|
|
|
*/ |
|
4526
|
|
|
public const EPSG_MEAN_HIGH_WATER_SPRING_TIDES = 'urn:ogc:def:datum:EPSG::1088'; |
|
4527
|
|
|
|
|
4528
|
|
|
/** |
|
4529
|
|
|
* Mean Higher High Water |
|
4530
|
|
|
* Type: Vertical |
|
4531
|
|
|
* Extent: World |
|
4532
|
|
|
* Not specific to any location or epoch. |
|
4533
|
|
|
* The average height of the higher high waters over a 19-year period. |
|
4534
|
|
|
*/ |
|
4535
|
|
|
public const EPSG_MEAN_HIGHER_HIGH_WATER = 'urn:ogc:def:datum:EPSG::1090'; |
|
4536
|
|
|
|
|
4537
|
|
|
/** |
|
4538
|
|
|
* Mean Low Water |
|
4539
|
|
|
* Type: Vertical |
|
4540
|
|
|
* Extent: World |
|
4541
|
|
|
* Not specific to any location or epoch. |
|
4542
|
|
|
* The average height of all low waters over a 19-year period. |
|
4543
|
|
|
*/ |
|
4544
|
|
|
public const EPSG_MEAN_LOW_WATER = 'urn:ogc:def:datum:EPSG::1091'; |
|
4545
|
|
|
|
|
4546
|
|
|
/** |
|
4547
|
|
|
* Mean Low Water Spring Tides |
|
4548
|
|
|
* Type: Vertical |
|
4549
|
|
|
* Extent: World |
|
4550
|
|
|
* Not specific to any location or epoch. |
|
4551
|
|
|
* The average height of the low waters of spring tides. |
|
4552
|
|
|
*/ |
|
4553
|
|
|
public const EPSG_MEAN_LOW_WATER_SPRING_TIDES = 'urn:ogc:def:datum:EPSG::1087'; |
|
4554
|
|
|
|
|
4555
|
|
|
/** |
|
4556
|
|
|
* Mean Lower Low Water |
|
4557
|
|
|
* Type: Vertical |
|
4558
|
|
|
* Extent: World |
|
4559
|
|
|
* Not specific to any location or epoch. |
|
4560
|
|
|
* The average height of the lower low waters over a 19-year period. |
|
4561
|
|
|
*/ |
|
4562
|
|
|
public const EPSG_MEAN_LOWER_LOW_WATER = 'urn:ogc:def:datum:EPSG::1089'; |
|
4563
|
|
|
|
|
4564
|
|
|
/** |
|
4565
|
|
|
* Mean Lower Low Water Spring Tides |
|
4566
|
|
|
* Type: Vertical |
|
4567
|
|
|
* Extent: World |
|
4568
|
|
|
* Not specific to any location or epoch. |
|
4569
|
|
|
* The average height of the lower low water spring tides. |
|
4570
|
|
|
*/ |
|
4571
|
|
|
public const EPSG_MEAN_LOWER_LOW_WATER_SPRING_TIDES = 'urn:ogc:def:datum:EPSG::1086'; |
|
4572
|
|
|
|
|
4573
|
|
|
/** |
|
4574
|
|
|
* Mean Sea Level |
|
4575
|
|
|
* Type: Vertical |
|
4576
|
|
|
* Extent: World |
|
4577
|
|
|
* Not specific to any location or epoch. |
|
4578
|
|
|
* The average height of the surface of the sea at a tide station for all stages of the tide over a 19-year period, |
|
4579
|
|
|
* usually determined from hourly height readings measured from a fixed predetermined reference level. Approximates |
|
4580
|
|
|
* geoid. |
|
4581
|
|
|
*/ |
|
4582
|
|
|
public const EPSG_MEAN_SEA_LEVEL = 'urn:ogc:def:datum:EPSG::5100'; |
|
4583
|
|
|
|
|
4584
|
|
|
/** |
|
4585
|
|
|
* Mean Sea Level Netherlands |
|
4586
|
|
|
* Type: Vertical |
|
4587
|
|
|
* Extent: Netherlands - offshore North Sea and nearshore |
|
4588
|
|
|
* Surface defined through the nlgeo geoid model applied to ETRS89. |
|
4589
|
|
|
* Coincides with NAP datum plane, extended offshore through the nlgeo geoid model. Approximates physical mean sea |
|
4590
|
|
|
* surface to a few decimetres. |
|
4591
|
|
|
*/ |
|
4592
|
|
|
public const EPSG_MEAN_SEA_LEVEL_NETHERLANDS = 'urn:ogc:def:datum:EPSG::1270'; |
|
4593
|
|
|
|
|
4594
|
|
|
/** |
|
4595
|
|
|
* Mean Sea Level UK & Ireland VORF08 |
|
4596
|
|
|
* Type: Vertical |
|
4597
|
|
|
* Extent: Ireland and UK (including Isle of Man and Channel Islands) - inshore, nearshore and offshore |
|
4598
|
|
|
* MSL UK & Ireland VORF08 is defined by the Vertical Offshore Reference Frame v2.11 2008. MSL UK & Ireland VORF08 |
|
4599
|
|
|
* is reduced to epoch 2000.0. |
|
4600
|
|
|
* OSGM05 model used. |
|
4601
|
|
|
*/ |
|
4602
|
|
|
public const EPSG_MEAN_SEA_LEVEL_UK_AND_IRELAND_VORF08 = 'urn:ogc:def:datum:EPSG::1330'; |
|
4603
|
|
|
|
|
4604
|
|
|
/** |
|
4605
|
|
|
* Melilla |
|
4606
|
|
|
* Type: Vertical |
|
4607
|
|
|
* Extent: Spain - Melilla onshore |
|
4608
|
|
|
* Mean Sea Level at Melilla harbour between 2008-01-01 and 2019-12-31. |
|
4609
|
|
|
* Orthometric heights. Replaces an earlier vertical datum in Ceuta harbour measured between 1908 and 1927. |
|
4610
|
|
|
*/ |
|
4611
|
|
|
public const EPSG_MELILLA = 'urn:ogc:def:datum:EPSG::1364'; |
|
4612
|
|
|
|
|
4613
|
|
|
/** |
|
4614
|
|
|
* Menorca |
|
4615
|
|
|
* Type: Vertical |
|
4616
|
|
|
* Extent: Spain - Balearic Islands - Menorca onshore |
|
4617
|
|
|
* Mean Sea Level at Ciutadella harbour between June 2007 and June 2008. |
|
4618
|
|
|
* Orthometric heights. |
|
4619
|
|
|
*/ |
|
4620
|
|
|
public const EPSG_MENORCA = 'urn:ogc:def:datum:EPSG::1276'; |
|
4621
|
|
|
|
|
4622
|
|
|
/** |
|
4623
|
|
|
* Merchich |
|
4624
|
|
|
* Type: Geodetic |
|
4625
|
|
|
* Extent: Africa - Morocco and Western Sahara - onshore |
|
4626
|
|
|
* Fundamental point: Merchich. Latitude: 33°26'59.672"N, longitude: 7°33'27.295"W (of Greenwich). |
|
4627
|
|
|
*/ |
|
4628
|
|
|
public const EPSG_MERCHICH = 'urn:ogc:def:datum:EPSG::6261'; |
|
4629
|
|
|
|
|
4630
|
|
|
/** |
|
4631
|
|
|
* Mexico ITRF2008 |
|
4632
|
|
|
* Type: Geodetic |
|
4633
|
|
|
* Extent: Mexico |
|
4634
|
|
|
* ITRF2008 at epoch 2010.00. |
|
4635
|
|
|
* Realised by a frame of 15 active GPS stations observed and adjusted in the ITRF2008. Includes ties to tide |
|
4636
|
|
|
* gauges. Replaces Mexico ITRF92 (datum code 1042). |
|
4637
|
|
|
*/ |
|
4638
|
|
|
public const EPSG_MEXICO_ITRF2008 = 'urn:ogc:def:datum:EPSG::1120'; |
|
4639
|
|
|
|
|
4640
|
|
|
/** |
|
4641
|
|
|
* Mexico ITRF92 |
|
4642
|
|
|
* Type: Geodetic |
|
4643
|
|
|
* Extent: Mexico |
|
4644
|
|
|
* ITRF1992 at epoch 1988.00. |
|
4645
|
|
|
* Realized by a frame of 15 active GPS stations observed and adjusted in the ITRF1992. Includes ties to tide |
|
4646
|
|
|
* gauges. Replaces NAD27 (datum code 6267). Replaced by Mexico ITRF2008 (datum code 1120) from December 2010. |
|
4647
|
|
|
*/ |
|
4648
|
|
|
public const EPSG_MEXICO_ITRF92 = 'urn:ogc:def:datum:EPSG::1042'; |
|
4649
|
|
|
|
|
4650
|
|
|
/** |
|
4651
|
|
|
* Mhast (offshore) |
|
4652
|
|
|
* Type: Geodetic |
|
4653
|
|
|
* Extent: Angola (Cabinda) - offshore; The Democratic Republic of the Congo (Zaire) - offshore |
|
4654
|
|
|
* Fundamental point: Station Y at Malongo base camp. Latitude: 5°23'30.810"S, longitude: 12°12'01.590"E (of |
|
4655
|
|
|
* Greenwich). |
|
4656
|
|
|
* Origin coordinates determined by Transit single point position using 32 passes and transformed from WGS72BE |
|
4657
|
|
|
* using transformation code 15790. Differs from Mhast (onshore) by approximately 10m. Replaced in 1987 by Malongo |
|
4658
|
|
|
* 1987 (code 6259). |
|
4659
|
|
|
*/ |
|
4660
|
|
|
public const EPSG_MHAST_OFFSHORE = 'urn:ogc:def:datum:EPSG::6705'; |
|
4661
|
|
|
|
|
4662
|
|
|
/** |
|
4663
|
|
|
* Mhast (onshore) |
|
4664
|
|
|
* Type: Geodetic |
|
4665
|
|
|
* Extent: Angola (Cabinda); The Democratic Republic of the Congo (Zaire) - onshore coastal area and offshore |
|
4666
|
|
|
* Probably adopted a Mhast 1951 coordinate set but associated an incorrect ellipsoid with it. |
|
4667
|
|
|
* Adopted by oil industry with intention of being Mhast 1951 (code 6703) but incorrectly (for Mhast 1951) used the |
|
4668
|
|
|
* International 1924 ellipsoid. This datum differs by about 400 metres from the Portuguese Mhast 1951 and Camacupa |
|
4669
|
|
|
* datums. |
|
4670
|
|
|
*/ |
|
4671
|
|
|
public const EPSG_MHAST_ONSHORE = 'urn:ogc:def:datum:EPSG::6704'; |
|
4672
|
|
|
|
|
4673
|
|
|
/** |
|
4674
|
|
|
* Midway 1961 |
|
4675
|
|
|
* Type: Geodetic |
|
4676
|
|
|
* Extent: United States Minor Outlying Islands - Midway Islands - Sand Island and Eastern Island. |
|
4677
|
|
|
*/ |
|
4678
|
|
|
public const EPSG_MIDWAY_1961 = 'urn:ogc:def:datum:EPSG::6727'; |
|
4679
|
|
|
|
|
4680
|
|
|
/** |
|
4681
|
|
|
* Militar-Geographische Institut |
|
4682
|
|
|
* Type: Geodetic |
|
4683
|
|
|
* Extent: Austria |
|
4684
|
|
|
* Fundamental point: Hermannskogel. Latitude: 48°16'15.29"N, longitude: 16°17'41.06"E (of Greenwich). |
|
4685
|
|
|
* The longitude of the datum origin equates to a value for the Ferro meridian of 17°40' exactly west of |
|
4686
|
|
|
* Greenwich. |
|
4687
|
|
|
*/ |
|
4688
|
|
|
public const EPSG_MILITAR_GEOGRAPHISCHE_INSTITUT = 'urn:ogc:def:datum:EPSG::6312'; |
|
4689
|
|
|
|
|
4690
|
|
|
/** |
|
4691
|
|
|
* Militar-Geographische Institut (Ferro) |
|
4692
|
|
|
* Type: Geodetic |
|
4693
|
|
|
* Extent: Austria. Bosnia and Herzegovina. Croatia - onshore. Kosovo. Montenegro - onshore. North Macedonia. |
|
4694
|
|
|
* Serbia. Slovenia - onshore |
|
4695
|
|
|
* Fundamental point: Hermannskogel. Latitude: 48°16'15.29"N, longitude: 33°57'41.06"E (of Ferro). |
|
4696
|
|
|
* Replaced by MGI in Austria and MGI 1901 in former Yugoslavia. |
|
4697
|
|
|
*/ |
|
4698
|
|
|
public const EPSG_MILITAR_GEOGRAPHISCHE_INSTITUT_FERRO = 'urn:ogc:def:datum:EPSG::6805'; |
|
4699
|
|
|
|
|
4700
|
|
|
/** |
|
4701
|
|
|
* Ministerio de Marina Norte |
|
4702
|
|
|
* Type: Geodetic |
|
4703
|
|
|
* Extent: Argentina - Tierra del Fuego onshore |
|
4704
|
|
|
* Developed by the Servicio de Hidrografia Naval. |
|
4705
|
|
|
*/ |
|
4706
|
|
|
public const EPSG_MINISTERIO_DE_MARINA_NORTE = 'urn:ogc:def:datum:EPSG::1258'; |
|
4707
|
|
|
|
|
4708
|
|
|
/** |
|
4709
|
|
|
* Ministerio de Marina Sur |
|
4710
|
|
|
* Type: Geodetic |
|
4711
|
|
|
* Extent: Argentina - Tierra del Fuego onshore |
|
4712
|
|
|
* Developed by the Servicio de Hidrografia Naval. |
|
4713
|
|
|
*/ |
|
4714
|
|
|
public const EPSG_MINISTERIO_DE_MARINA_SUR = 'urn:ogc:def:datum:EPSG::1259'; |
|
4715
|
|
|
|
|
4716
|
|
|
/** |
|
4717
|
|
|
* Minna |
|
4718
|
|
|
* Type: Geodetic |
|
4719
|
|
|
* Extent: Nigeria |
|
4720
|
|
|
* Fundamental point: Minna base station L40. Latitude: 9°38'08.87"N, longitude: 6°30'58.76"E (of Greenwich). |
|
4721
|
|
|
*/ |
|
4722
|
|
|
public const EPSG_MINNA = 'urn:ogc:def:datum:EPSG::6263'; |
|
4723
|
|
|
|
|
4724
|
|
|
/** |
|
4725
|
|
|
* Missao Hidrografico Angola y Sao Tome 1951 |
|
4726
|
|
|
* Type: Geodetic |
|
4727
|
|
|
* Extent: Angola - Cabinda |
|
4728
|
|
|
* Extension of Camacupa datum into Cabinda. |
|
4729
|
|
|
* A variation of this datum has been adopted by the oil industry but incorrectly using the International 1924 |
|
4730
|
|
|
* ellipsoid and not tied to the official Portuguese triangulation - see Mhast (onshore) and Mhast (offshore) |
|
4731
|
|
|
* (codes 6704 and 6705). |
|
4732
|
|
|
*/ |
|
4733
|
|
|
public const EPSG_MISSAO_HIDROGRAFICO_ANGOLA_Y_SAO_TOME_1951 = 'urn:ogc:def:datum:EPSG::6703'; |
|
4734
|
|
|
|
|
4735
|
|
|
/** |
|
4736
|
|
|
* Monte Mario |
|
4737
|
|
|
* Type: Geodetic |
|
4738
|
|
|
* Extent: Italy; San Marino, Vatican City State |
|
4739
|
|
|
* Fundamental point: Monte Mario. Latitude: 41°55'25.51"N, longitude: 12°27'08.4"E (of Greenwich). |
|
4740
|
|
|
* Replaced Genova datum, Bessel 1841 ellipsoid, from 1940. |
|
4741
|
|
|
*/ |
|
4742
|
|
|
public const EPSG_MONTE_MARIO = 'urn:ogc:def:datum:EPSG::6265'; |
|
4743
|
|
|
|
|
4744
|
|
|
/** |
|
4745
|
|
|
* Monte Mario (Rome) |
|
4746
|
|
|
* Type: Geodetic |
|
4747
|
|
|
* Extent: Italy; San Marino, Vatican City State |
|
4748
|
|
|
* Fundamental point: Monte Mario. Latitude: 41°55'25.51"N, longitude: 0°00' 00.00"E (of Rome). |
|
4749
|
|
|
* Replaced Genova datum, Bessel 1841 ellipsoid, from 1940. |
|
4750
|
|
|
*/ |
|
4751
|
|
|
public const EPSG_MONTE_MARIO_ROME = 'urn:ogc:def:datum:EPSG::6806'; |
|
4752
|
|
|
|
|
4753
|
|
|
/** |
|
4754
|
|
|
* Montserrat 1958 |
|
4755
|
|
|
* Type: Geodetic |
|
4756
|
|
|
* Extent: Montserrat - onshore |
|
4757
|
|
|
* Fundamental point: station M36. |
|
4758
|
|
|
*/ |
|
4759
|
|
|
public const EPSG_MONTSERRAT_1958 = 'urn:ogc:def:datum:EPSG::6604'; |
|
4760
|
|
|
|
|
4761
|
|
|
/** |
|
4762
|
|
|
* Moorea 87 |
|
4763
|
|
|
* Type: Geodetic |
|
4764
|
|
|
* Extent: French Polynesia - Society Islands - Moorea |
|
4765
|
|
|
* Two stations on Tahiti whose coordinates from the Tahiti 1979 adjustment were held fixed. |
|
4766
|
|
|
* Replaces Tahiti 52 (datum code 6628) in Moorea. Replaced by RGPF (datum code 6687). |
|
4767
|
|
|
*/ |
|
4768
|
|
|
public const EPSG_MOOREA_87 = 'urn:ogc:def:datum:EPSG::6691'; |
|
4769
|
|
|
|
|
4770
|
|
|
/** |
|
4771
|
|
|
* Moorea SAU 1981 |
|
4772
|
|
|
* Type: Vertical |
|
4773
|
|
|
* Extent: French Polynesia - Society Islands - Moorea |
|
4774
|
|
|
* Fundamental benchmark: RN225 |
|
4775
|
|
|
* Included as part of NGPF - see datum code 5195. |
|
4776
|
|
|
*/ |
|
4777
|
|
|
public const EPSG_MOOREA_SAU_1981 = 'urn:ogc:def:datum:EPSG::5197'; |
|
4778
|
|
|
|
|
4779
|
|
|
/** |
|
4780
|
|
|
* Moturiki 1953 |
|
4781
|
|
|
* Type: Vertical |
|
4782
|
|
|
* Extent: New Zealand - North Island - Moturiki vertical CRS area |
|
4783
|
|
|
* MSL at Moturiki Island February 1949 to December 1952. |
|
4784
|
|
|
*/ |
|
4785
|
|
|
public const EPSG_MOTURIKI_1953 = 'urn:ogc:def:datum:EPSG::5162'; |
|
4786
|
|
|
|
|
4787
|
|
|
/** |
|
4788
|
|
|
* Mount Dillon |
|
4789
|
|
|
* Type: Geodetic |
|
4790
|
|
|
* Extent: Trinidad and Tobago - Tobago - onshore |
|
4791
|
|
|
* Fundamental point: Mount Dillon triangulation station. Latitude: 11°15'07.843"N, longitude: 60°41'09.632"W (of |
|
4792
|
|
|
* Greenwich). |
|
4793
|
|
|
*/ |
|
4794
|
|
|
public const EPSG_MOUNT_DILLON = 'urn:ogc:def:datum:EPSG::6157'; |
|
4795
|
|
|
|
|
4796
|
|
|
/** |
|
4797
|
|
|
* Moznet (ITRF94) |
|
4798
|
|
|
* Type: Geodetic |
|
4799
|
|
|
* Extent: Mozambique |
|
4800
|
|
|
* ITRF94 at epoch 1996.9. |
|
4801
|
|
|
*/ |
|
4802
|
|
|
public const EPSG_MOZNET_ITRF94 = 'urn:ogc:def:datum:EPSG::6130'; |
|
4803
|
|
|
|
|
4804
|
|
|
/** |
|
4805
|
|
|
* N2000 |
|
4806
|
|
|
* Type: Vertical |
|
4807
|
|
|
* Extent: Finland - onshore |
|
4808
|
|
|
* Height at Metsaahovi (latitude 60.21762°N, longitude 24.39517°E) of 54.4233m related to EVRF2000 origin |
|
4809
|
|
|
* through Baltic Levelling Ring adjustment at epoch 2000.0. |
|
4810
|
|
|
* Realized through the third precise levelling network. Uses normal heights. Replaces N43 and N60 (datum codes |
|
4811
|
|
|
* 1213 and 5116). To account for isostatic land uplift use NKG2005 model. |
|
4812
|
|
|
*/ |
|
4813
|
|
|
public const EPSG_N2000 = 'urn:ogc:def:datum:EPSG::1030'; |
|
4814
|
|
|
|
|
4815
|
|
|
/** |
|
4816
|
|
|
* NAD83 (Continuously Operating Reference Station 1996) |
|
4817
|
|
|
* Type: Geodetic |
|
4818
|
|
|
* Extent: Puerto Rico. USA - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; |
|
4819
|
|
|
* Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; |
|
4820
|
|
|
* Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; |
|
4821
|
|
|
* New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; |
|
4822
|
|
|
* South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming. US |
|
4823
|
|
|
* Virgin Islands |
|
4824
|
|
|
* Defined by time-dependent transformations from ITRF (see CT codes 6864-6866). The ITRF realization used has been |
|
4825
|
|
|
* changed periodically; ITRF96 in years 1997 through 1999, ITRF97 in 2000 and 2001 and ITRF2000 from 2002. |
|
4826
|
|
|
* Replaced by NAD83(2011) from 2011-09-06. |
|
4827
|
|
|
*/ |
|
4828
|
|
|
public const EPSG_NAD83_CONTINUOUSLY_OPERATING_REFERENCE_STATION_1996 = 'urn:ogc:def:datum:EPSG::1133'; |
|
4829
|
|
|
|
|
4830
|
|
|
/** |
|
4831
|
|
|
* NAD83 (Federal Base Network) |
|
4832
|
|
|
* Type: Geodetic |
|
4833
|
|
|
* Extent: American Samoa - Tutuila, Aunu'u, Ofu, Olesega, Ta'u and Rose islands - onshore. Guam - onshore. |
|
4834
|
|
|
* Northern Mariana Islands - onshore. Puerto Rico - onshore. USA - CONUS - Alabama; Arizona; Arkansas; California; |
|
4835
|
|
|
* Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; |
|
4836
|
|
|
* Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New |
|
4837
|
|
|
* Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; |
|
4838
|
|
|
* Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West |
|
4839
|
|
|
* Virginia; Wisconsin; Wyoming - onshore plus Gulf of Mexico offshore continental shelf (GoM OCS). US Virgin |
|
4840
|
|
|
* Islands - onshore |
|
4841
|
|
|
* A collection of individual state-wide adjustments including GPS observations made between 1997 and 2004. |
|
4842
|
|
|
* In CA CT FL ID MA ME MT NC NH NJ NV NY OR RI SC TN VT WA and WI, replaces the early 1990s HARN adjustment. In |
|
4843
|
|
|
* rest of CONUS the difference between the HARN and FBN adjustments was under 5cm and the original HARN |
|
4844
|
|
|
* adjustments were adopted as NAD83(FBN). |
|
4845
|
|
|
*/ |
|
4846
|
|
|
public const EPSG_NAD83_FEDERAL_BASE_NETWORK = 'urn:ogc:def:datum:EPSG::1211'; |
|
4847
|
|
|
|
|
4848
|
|
|
/** |
|
4849
|
|
|
* NAD83 (High Accuracy Reference Network - Corrected) |
|
4850
|
|
|
* Type: Geodetic |
|
4851
|
|
|
* Extent: Puerto Rico and US Virgin Islands - onshore |
|
4852
|
|
|
* In PRVI replaces NAD83(HARN) to correct errors. Replaced by NAD83(FBN). |
|
4853
|
|
|
*/ |
|
4854
|
|
|
public const EPSG_NAD83_HIGH_ACCURACY_REFERENCE_NETWORK_CORRECTED = 'urn:ogc:def:datum:EPSG::1212'; |
|
4855
|
|
|
|
|
4856
|
|
|
/** |
|
4857
|
|
|
* NAD83 (High Accuracy Reference Network) |
|
4858
|
|
|
* Type: Geodetic |
|
4859
|
|
|
* Extent: American Samoa - onshore - Tutuila, Aunu'u, Ofu, Olesega, Ta'u and Rose islands. Guam - onshore. |
|
4860
|
|
|
* Northern Mariana Islands - onshore. Puerto Rico - onshore. USA - onshore Alabama, Alaska, Arizona, Arkansas, |
|
4861
|
|
|
* California, Colorado, Connecticut, Delaware, Florida, Georgia, Hawaii, Idaho, Illinois, Indiana, Iowa, Kansas, |
|
4862
|
|
|
* Kentucky, Louisiana, Maine, Maryland, Massachusetts, Michigan, Minnesota, Mississippi, Missouri, Montana, |
|
4863
|
|
|
* Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York, North Carolina, North Dakota, Ohio, Oklahoma, |
|
4864
|
|
|
* Oregon, Pennsylvania, Rhode Island, South Carolina, South Dakota, Tennessee, Texas, Utah, Vermont, Virginia, |
|
4865
|
|
|
* Washington, West Virginia, Wisconsin and Wyoming; offshore Gulf of Mexico continental shelf (GoM OCS). US Virgin |
|
4866
|
|
|
* Islands - onshore |
|
4867
|
|
|
* A collection of individual state-wide adjustments including GPS observations made between 1991 and 1996. |
|
4868
|
|
|
* In CONUS, American Samoa and Guam replaced by NAD83(FBN). In Alaska replaced by NAD83(NSRS2007). In Hawaii |
|
4869
|
|
|
* replaced by NAD83(PA11). In Puerto Rico and US Virgin Islands replaced by NAD83(HARN Corrected). |
|
4870
|
|
|
*/ |
|
4871
|
|
|
public const EPSG_NAD83_HIGH_ACCURACY_REFERENCE_NETWORK = 'urn:ogc:def:datum:EPSG::6152'; |
|
4872
|
|
|
|
|
4873
|
|
|
/** |
|
4874
|
|
|
* NAD83 (National Spatial Reference System 2007) |
|
4875
|
|
|
* Type: Geodetic |
|
4876
|
|
|
* Extent: Puerto Rico. USA - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; |
|
4877
|
|
|
* Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; |
|
4878
|
|
|
* Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; |
|
4879
|
|
|
* New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; |
|
4880
|
|
|
* South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming. US |
|
4881
|
|
|
* Virgin Islands |
|
4882
|
|
|
* Coordinates of 486 national continually operating reference system (CORS) and 195 collaborative GPS (CGPS) sites |
|
4883
|
|
|
* constrained to their CORS96 values, ITRF2000 at epoch 2002.0. |
|
4884
|
|
|
* Replaced by NAD83 (National Spatial Reference System 2011), datum code 1116. |
|
4885
|
|
|
*/ |
|
4886
|
|
|
public const EPSG_NAD83_NATIONAL_SPATIAL_REFERENCE_SYSTEM_2007 = 'urn:ogc:def:datum:EPSG::6759'; |
|
4887
|
|
|
|
|
4888
|
|
|
/** |
|
4889
|
|
|
* NAD83 (National Spatial Reference System 2011) |
|
4890
|
|
|
* Type: Geodetic |
|
4891
|
|
|
* Extent: Puerto Rico. USA - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; |
|
4892
|
|
|
* Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; |
|
4893
|
|
|
* Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; |
|
4894
|
|
|
* New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; |
|
4895
|
|
|
* South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming. US |
|
4896
|
|
|
* Virgin Islands |
|
4897
|
|
|
* Coordinates of a nationwide adjustment of 79,546 NGS "passive" control stations in CONUS and Alaska, constrained |
|
4898
|
|
|
* to 1,171 current CORS station coordinates at epoch 2010.0. |
|
4899
|
|
|
* Replaces NAD83(NSRS2007). Transformaton code 7807 from ITRF2008 is understood to underlay the CORS station |
|
4900
|
|
|
* coordinates. |
|
4901
|
|
|
*/ |
|
4902
|
|
|
public const EPSG_NAD83_NATIONAL_SPATIAL_REFERENCE_SYSTEM_2011 = 'urn:ogc:def:datum:EPSG::1116'; |
|
4903
|
|
|
|
|
4904
|
|
|
/** |
|
4905
|
|
|
* NAD83 (National Spatial Reference System MA11) |
|
4906
|
|
|
* Type: Geodetic |
|
4907
|
|
|
* Extent: Guam, Northern Mariana Islands and Palau; |
|
4908
|
|
|
* Coordinates of a nationwide adjustment including 171 NGS "passive" control stations constrained to 24 current |
|
4909
|
|
|
* Pacific CORS station coordinates at epoch 2010.0. |
|
4910
|
|
|
* Replaces NAD83(HARN) (GGN93) and NAD83(FBN) in Guam. ITRF2008 is understood to underlay the latest CORS station |
|
4911
|
|
|
* coordinates. |
|
4912
|
|
|
*/ |
|
4913
|
|
|
public const EPSG_NAD83_NATIONAL_SPATIAL_REFERENCE_SYSTEM_MA11 = 'urn:ogc:def:datum:EPSG::1118'; |
|
4914
|
|
|
|
|
4915
|
|
|
/** |
|
4916
|
|
|
* NAD83 (National Spatial Reference System PA11) |
|
4917
|
|
|
* Type: Geodetic |
|
4918
|
|
|
* Extent: American Samoa, Marshall Islands, USA - Hawaii, United States minor outlying islands; |
|
4919
|
|
|
* Coordinates of a nationwide adjustment including 345 NGS "passive" control stations constrained to 24 current |
|
4920
|
|
|
* Pacific CORS station coordinates at epoch 2010.0. |
|
4921
|
|
|
* Replaces NAD83(HARN) and NAD83(FBN) in Hawaii and American Samoa. ITRF2008 is understood to underlay the latest |
|
4922
|
|
|
* CORS station coordinates. |
|
4923
|
|
|
*/ |
|
4924
|
|
|
public const EPSG_NAD83_NATIONAL_SPATIAL_REFERENCE_SYSTEM_PA11 = 'urn:ogc:def:datum:EPSG::1117'; |
|
4925
|
|
|
|
|
4926
|
|
|
/** |
|
4927
|
|
|
* NAD83 Canadian Spatial Reference System |
|
4928
|
|
|
* Type: Geodetic |
|
4929
|
|
|
* Extent: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest |
|
4930
|
|
|
* Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon |
|
4931
|
|
|
* Includes all versions of NAD83(CSRS) from v2 [CSRS98] onwards without specific identification. As such it has an |
|
4932
|
|
|
* accuracy of approximately 1m. |
|
4933
|
|
|
*/ |
|
4934
|
|
|
public const EPSG_NAD83_CANADIAN_SPATIAL_REFERENCE_SYSTEM = 'urn:ogc:def:datum:EPSG::6140'; |
|
4935
|
|
|
|
|
4936
|
|
|
/** |
|
4937
|
|
|
* NEA74 Noumea |
|
4938
|
|
|
* Type: Geodetic |
|
4939
|
|
|
* Extent: New Caledonia - Grande Terre - Noumea district |
|
4940
|
|
|
* Noumea old signal station. |
|
4941
|
|
|
*/ |
|
4942
|
|
|
public const EPSG_NEA74_NOUMEA = 'urn:ogc:def:datum:EPSG::6644'; |
|
4943
|
|
|
|
|
4944
|
|
|
/** |
|
4945
|
|
|
* NGO 1948 |
|
4946
|
|
|
* Type: Geodetic |
|
4947
|
|
|
* Extent: Norway - onshore |
|
4948
|
|
|
* Fundamental point: Oslo observatory. Latitude: 59°54'43.7"N, longitude: 10°43'22.5"E (of Greenwich). |
|
4949
|
|
|
*/ |
|
4950
|
|
|
public const EPSG_NGO_1948 = 'urn:ogc:def:datum:EPSG::6273'; |
|
4951
|
|
|
|
|
4952
|
|
|
/** |
|
4953
|
|
|
* NGO 1948 (Oslo) |
|
4954
|
|
|
* Type: Geodetic |
|
4955
|
|
|
* Extent: Norway - onshore |
|
4956
|
|
|
* Fundamental point: Oslo observatory. Latitude: 59°54'43.7"N, longitude: 0°00'00.0"E (of Oslo). |
|
4957
|
|
|
*/ |
|
4958
|
|
|
public const EPSG_NGO_1948_OSLO = 'urn:ogc:def:datum:EPSG::6817'; |
|
4959
|
|
|
|
|
4960
|
|
|
/** |
|
4961
|
|
|
* NSIDC International 1924 Authalic Sphere |
|
4962
|
|
|
* Type: Geodetic |
|
4963
|
|
|
* Extent: World |
|
4964
|
|
|
* Created to support EASE-Grid v1. Note: for EASE-Grid v2, WGS 84 used. |
|
4965
|
|
|
*/ |
|
4966
|
|
|
public const EPSG_NSIDC_INTERNATIONAL_1924_AUTHALIC_SPHERE = 'urn:ogc:def:datum:EPSG::1360'; |
|
4967
|
|
|
|
|
4968
|
|
|
/** |
|
4969
|
|
|
* NSWC 9Z-2 |
|
4970
|
|
|
* Type: Geodetic |
|
4971
|
|
|
* Extent: World |
|
4972
|
|
|
* Transit precise ephemeris before 1991. |
|
4973
|
|
|
*/ |
|
4974
|
|
|
public const EPSG_NSWC_9Z_2 = 'urn:ogc:def:datum:EPSG::6276'; |
|
4975
|
|
|
|
|
4976
|
|
|
/** |
|
4977
|
|
|
* Nahrwan 1934 |
|
4978
|
|
|
* Type: Geodetic |
|
4979
|
|
|
* Extent: Iraq - onshore; Iran - onshore northern Gulf coast and west bordering southeast Iraq |
|
4980
|
|
|
* Fundamental point: Nahrwan south base. Latitude: 33°19'10.87"N, longitude: 44°43'25.54"E (of Greenwich). |
|
4981
|
|
|
* This adjustment later discovered to have a significant orientation error. In Iran replaced by FD58. In Iraq, |
|
4982
|
|
|
* replaced by Karbala 1979. |
|
4983
|
|
|
*/ |
|
4984
|
|
|
public const EPSG_NAHRWAN_1934 = 'urn:ogc:def:datum:EPSG::6744'; |
|
4985
|
|
|
|
|
4986
|
|
|
/** |
|
4987
|
|
|
* Nahrwan 1967 |
|
4988
|
|
|
* Type: Geodetic |
|
4989
|
|
|
* Extent: Arabian Gulf; Qatar - offshore; UAE - Abu Dhabi; Dubai; Sharjah; Ajman; Fujairah; Ras Al Kaimah; Umm Al |
|
4990
|
|
|
* Qaiwain |
|
4991
|
|
|
* Fundamental point: Nahrwan south base. Latitude: 33°19'10.87"N, longitude: 44°43'25.54"E (of Greenwich). |
|
4992
|
|
|
*/ |
|
4993
|
|
|
public const EPSG_NAHRWAN_1967 = 'urn:ogc:def:datum:EPSG::6270'; |
|
4994
|
|
|
|
|
4995
|
|
|
/** |
|
4996
|
|
|
* Nakhl-e Ghanem |
|
4997
|
|
|
* Type: Geodetic |
|
4998
|
|
|
* Extent: Iran - Kangan district |
|
4999
|
|
|
* Coordinates of two stations determined with respect to ITRF 2000 at epoch 2005.2: BMT1 latitude |
|
5000
|
|
|
* 27°42'09.8417"N, longitude 52°12'11.0362"E (of Greenwich); Total1 latitude 27°31'03.8896"N, longitude |
|
5001
|
|
|
* 52°36'13.1312"E (of Greenwich). |
|
5002
|
|
|
*/ |
|
5003
|
|
|
public const EPSG_NAKHL_E_GHANEM = 'urn:ogc:def:datum:EPSG::6693'; |
|
5004
|
|
|
|
|
5005
|
|
|
/** |
|
5006
|
|
|
* Naparima 1955 |
|
5007
|
|
|
* Type: Geodetic |
|
5008
|
|
|
* Extent: Trinidad and Tobago - Trinidad - onshore |
|
5009
|
|
|
* Fundamental point: Naparima. Latitude: 10°16'44.860"N, longitude: 61°27'34.620"W (of Greenwich). |
|
5010
|
|
|
* Extended to Tobago as Naparima 1972. (Note: Naparima 1972 is not used in Trinidad). |
|
5011
|
|
|
*/ |
|
5012
|
|
|
public const EPSG_NAPARIMA_1955 = 'urn:ogc:def:datum:EPSG::6158'; |
|
5013
|
|
|
|
|
5014
|
|
|
/** |
|
5015
|
|
|
* Naparima 1972 |
|
5016
|
|
|
* Type: Geodetic |
|
5017
|
|
|
* Extent: Trinidad and Tobago - Tobago - onshore |
|
5018
|
|
|
* Fundamental point: Naparima. Latitude: 10°16'44.860"N, longitude: 61°27'34.620"W (of Greenwich). |
|
5019
|
|
|
* Naparima 1972 is an extension to Tobago of the Naparima 1955 network of Trinidad. |
|
5020
|
|
|
*/ |
|
5021
|
|
|
public const EPSG_NAPARIMA_1972 = 'urn:ogc:def:datum:EPSG::6271'; |
|
5022
|
|
|
|
|
5023
|
|
|
/** |
|
5024
|
|
|
* Napier 1962 |
|
5025
|
|
|
* Type: Vertical |
|
5026
|
|
|
* Extent: New Zealand - North Island - Hawkes Bay meridional circuit and Napier vertical crs area |
|
5027
|
|
|
* MSL at Napier harbour. Period of derivation unknown. |
|
5028
|
|
|
*/ |
|
5029
|
|
|
public const EPSG_NAPIER_1962 = 'urn:ogc:def:datum:EPSG::5163'; |
|
5030
|
|
|
|
|
5031
|
|
|
/** |
|
5032
|
|
|
* National Geodetic Network |
|
5033
|
|
|
* Type: Geodetic |
|
5034
|
|
|
* Extent: Kuwait - onshore |
|
5035
|
|
|
* Replaces 1984 adjustment which used the WGS72 ellipsoid. |
|
5036
|
|
|
*/ |
|
5037
|
|
|
public const EPSG_NATIONAL_GEODETIC_NETWORK = 'urn:ogc:def:datum:EPSG::6318'; |
|
5038
|
|
|
|
|
5039
|
|
|
/** |
|
5040
|
|
|
* National Geodetic Vertical Datum 1929 |
|
5041
|
|
|
* Type: Vertical |
|
5042
|
|
|
* Extent: USA - CONUS onshore - Alabama; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; |
|
5043
|
|
|
* Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; |
|
5044
|
|
|
* Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; |
|
5045
|
|
|
* North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; |
|
5046
|
|
|
* Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming |
|
5047
|
|
|
* 26 tide gauges in the US and Canada. |
|
5048
|
|
|
* Normal orthometric heights. |
|
5049
|
|
|
*/ |
|
5050
|
|
|
public const EPSG_NATIONAL_GEODETIC_VERTICAL_DATUM_1929 = 'urn:ogc:def:datum:EPSG::5102'; |
|
5051
|
|
|
|
|
5052
|
|
|
/** |
|
5053
|
|
|
* National Vertical Datum 1992 |
|
5054
|
|
|
* Type: Vertical |
|
5055
|
|
|
* Extent: Bangladesh - onshore |
|
5056
|
|
|
* Mean Sea Level 1992-1994 at tidal station at Rangadia, Chittagong. |
|
5057
|
|
|
*/ |
|
5058
|
|
|
public const EPSG_NATIONAL_VERTICAL_DATUM_1992 = 'urn:ogc:def:datum:EPSG::1303'; |
|
5059
|
|
|
|
|
5060
|
|
|
/** |
|
5061
|
|
|
* Nelson 1955 |
|
5062
|
|
|
* Type: Vertical |
|
5063
|
|
|
* Extent: New Zealand - South Island - north of approximately 42°20'S - Nelson vertical CRS area |
|
5064
|
|
|
* MSL at Nelson harbour 1939-1942. |
|
5065
|
|
|
*/ |
|
5066
|
|
|
public const EPSG_NELSON_1955 = 'urn:ogc:def:datum:EPSG::5164'; |
|
5067
|
|
|
|
|
5068
|
|
|
/** |
|
5069
|
|
|
* Nepal 1981 |
|
5070
|
|
|
* Type: Geodetic |
|
5071
|
|
|
* Extent: Nepal |
|
5072
|
|
|
* Fundamental point: Station 12/157 Nagarkot. Latitude: 27°41'31.04"N, longitude: 85°31'20.23"E (of Greenwich). |
|
5073
|
|
|
*/ |
|
5074
|
|
|
public const EPSG_NEPAL_1981 = 'urn:ogc:def:datum:EPSG::1111'; |
|
5075
|
|
|
|
|
5076
|
|
|
/** |
|
5077
|
|
|
* New Beijing |
|
5078
|
|
|
* Type: Geodetic |
|
5079
|
|
|
* Extent: China - onshore |
|
5080
|
|
|
* Derived by conformal transformation of Xian 1980 adjustment onto Krassowsky ellipsoid. |
|
5081
|
|
|
* From 1982 replaces Beijing 1954. |
|
5082
|
|
|
*/ |
|
5083
|
|
|
public const EPSG_NEW_BEIJING = 'urn:ogc:def:datum:EPSG::1045'; |
|
5084
|
|
|
|
|
5085
|
|
|
/** |
|
5086
|
|
|
* New Zealand Geodetic Datum 1949 |
|
5087
|
|
|
* Type: Geodetic |
|
5088
|
|
|
* Extent: New Zealand - North Island, South Island, Stewart Island - onshore and nearshore |
|
5089
|
|
|
* Fundamental point: Papatahi. Latitude: 41°19' 8.900"S, longitude: 175°02'51.000"E (of Greenwich). |
|
5090
|
|
|
* Replaced by New Zealand Geodetic Datum 2000 (code 6167) from March 2000. |
|
5091
|
|
|
*/ |
|
5092
|
|
|
public const EPSG_NEW_ZEALAND_GEODETIC_DATUM_1949 = 'urn:ogc:def:datum:EPSG::6272'; |
|
5093
|
|
|
|
|
5094
|
|
|
/** |
|
5095
|
|
|
* New Zealand Geodetic Datum 2000 |
|
5096
|
|
|
* Type: Geodetic |
|
5097
|
|
|
* Extent: New Zealand. Includes Antipodes Islands, Auckland Islands, Bounty Islands, Chatham Islands, Cambell |
|
5098
|
|
|
* Island, Kermadec Islands, Raoul Island and Snares Islands |
|
5099
|
|
|
* Based on ITRF96 at epoch 2000.0 |
|
5100
|
|
|
* Replaces New Zealand Geodetic Datum 1949 (code 6272) and Chatham Islands Datum 1979 (code 6673) from March 2000. |
|
5101
|
|
|
*/ |
|
5102
|
|
|
public const EPSG_NEW_ZEALAND_GEODETIC_DATUM_2000 = 'urn:ogc:def:datum:EPSG::6167'; |
|
5103
|
|
|
|
|
5104
|
|
|
/** |
|
5105
|
|
|
* New Zealand Vertical Datum 2009 |
|
5106
|
|
|
* Type: Vertical |
|
5107
|
|
|
* Extent: New Zealand. Includes Antipodes Islands, Auckland Islands, Bounty Islands, Chatham Islands, Cambell |
|
5108
|
|
|
* Island, Kermadec Islands, Raoul Island and Snares Islands |
|
5109
|
|
|
* New Zealand Quasigeoid 2009 which is defined by the application of the NZ geoid 2009 grid to NZGD2000 |
|
5110
|
|
|
* ellipsoidal heights. See transformation code 4459. |
|
5111
|
|
|
*/ |
|
5112
|
|
|
public const EPSG_NEW_ZEALAND_VERTICAL_DATUM_2009 = 'urn:ogc:def:datum:EPSG::1039'; |
|
5113
|
|
|
|
|
5114
|
|
|
/** |
|
5115
|
|
|
* New Zealand Vertical Datum 2016 |
|
5116
|
|
|
* Type: Vertical |
|
5117
|
|
|
* Extent: New Zealand. Includes Antipodes Islands, Auckland Islands, Bounty Islands, Chatham Islands, Cambell |
|
5118
|
|
|
* Island, Kermadec Islands, Raoul Island and Snares Islands |
|
5119
|
|
|
* New Zealand quasigeoid 2016 which is defined by the application of the NZ geoid 2016 grid to NZGD2000 |
|
5120
|
|
|
* ellipsoidal heights. See transformation code 7840. |
|
5121
|
|
|
*/ |
|
5122
|
|
|
public const EPSG_NEW_ZEALAND_VERTICAL_DATUM_2016 = 'urn:ogc:def:datum:EPSG::1169'; |
|
5123
|
|
|
|
|
5124
|
|
|
/** |
|
5125
|
|
|
* Nivellement General Guyanais 1977 |
|
5126
|
|
|
* Type: Vertical |
|
5127
|
|
|
* Extent: French Guiana - onshore |
|
5128
|
|
|
* Mean sea level 1936 at Cayenne. Origin = marker BM35 on stone on St Francois battery, Cayenne, with defined |
|
5129
|
|
|
* elevation of 1.64m above msl. NGG1977 height 0.00m is 1.96m above sounding datum defined at Cayenne in 1936 by |
|
5130
|
|
|
* SHM. |
|
5131
|
|
|
* Orthometric heights. |
|
5132
|
|
|
*/ |
|
5133
|
|
|
public const EPSG_NIVELLEMENT_GENERAL_GUYANAIS_1977 = 'urn:ogc:def:datum:EPSG::5153'; |
|
5134
|
|
|
|
|
5135
|
|
|
/** |
|
5136
|
|
|
* Nivellement General de Nouvelle Caledonie |
|
5137
|
|
|
* Type: Vertical |
|
5138
|
|
|
* Extent: New Caledonia - Grande Terre |
|
5139
|
|
|
* Rivet AB01 established by SHOM (Service Hydrographique de la Marine) in 1937 on the Quai des Volontaires in |
|
5140
|
|
|
* Noumea. Height i: 1.885 metre above mean sea level. |
|
5141
|
|
|
* Orthometric heights. |
|
5142
|
|
|
*/ |
|
5143
|
|
|
public const EPSG_NIVELLEMENT_GENERAL_DE_NOUVELLE_CALEDONIE = 'urn:ogc:def:datum:EPSG::5151'; |
|
5144
|
|
|
|
|
5145
|
|
|
/** |
|
5146
|
|
|
* Nivellement General de Nouvelle Caledonie 2008 |
|
5147
|
|
|
* Type: Vertical |
|
5148
|
|
|
* Extent: New Caledonia - Belep, Grande Terre, Ile des Pins, Loyalty Islands (Lifou, Mare, Ouvea) |
|
5149
|
|
|
* Normal heights. |
|
5150
|
|
|
*/ |
|
5151
|
|
|
public const EPSG_NIVELLEMENT_GENERAL_DE_NOUVELLE_CALEDONIE_2008 = 'urn:ogc:def:datum:EPSG::1255'; |
|
5152
|
|
|
|
|
5153
|
|
|
/** |
|
5154
|
|
|
* Nivellement General de Polynesie Francaise |
|
5155
|
|
|
* Type: Vertical |
|
5156
|
|
|
* Extent: French Polynesia - Society Islands - Bora Bora, Huahine, Maupiti, Moorea, Raiatea, Tahaa and Tahiti |
|
5157
|
|
|
* The collection of heterogeneous levelling networks throughout the Society Islands of French Polynesia. |
|
5158
|
|
|
*/ |
|
5159
|
|
|
public const EPSG_NIVELLEMENT_GENERAL_DE_POLYNESIE_FRANCAISE = 'urn:ogc:def:datum:EPSG::5195'; |
|
5160
|
|
|
|
|
5161
|
|
|
/** |
|
5162
|
|
|
* Nivellement General de l'Algerie 2022 |
|
5163
|
|
|
* Type: Vertical |
|
5164
|
|
|
* Extent: Algeria - onshore |
|
5165
|
|
|
* Fundamental benchmark attached to the tide gauge at basin of Algiers old port with defined height of 1.1168m. |
|
5166
|
|
|
* Orthometric heights. |
|
5167
|
|
|
*/ |
|
5168
|
|
|
public const EPSG_NIVELLEMENT_GENERAL_DE_LALGERIE_2022 = 'urn:ogc:def:datum:EPSG::1354'; |
|
5169
|
|
|
|
|
5170
|
|
|
/** |
|
5171
|
|
|
* Nivellement General de la Corse 1948 |
|
5172
|
|
|
* Type: Vertical |
|
5173
|
|
|
* Extent: France - Corsica onshore |
|
5174
|
|
|
* Mean sea level at Ajaccio between 1912 and 1937. |
|
5175
|
|
|
* Replaced by IGN78 Corsica (datum 5120). |
|
5176
|
|
|
*/ |
|
5177
|
|
|
public const EPSG_NIVELLEMENT_GENERAL_DE_LA_CORSE_1948 = 'urn:ogc:def:datum:EPSG::5189'; |
|
5178
|
|
|
|
|
5179
|
|
|
/** |
|
5180
|
|
|
* Nivellement General de la France - IGN69 |
|
5181
|
|
|
* Type: Vertical |
|
5182
|
|
|
* Extent: France - mainland onshore |
|
5183
|
|
|
* Rivet number M.ac O-VIII on the Marseille tide gauge site, with the height fixed in 1897 at 1.661 metre above |
|
5184
|
|
|
* mean sea level between February 2nd 1885 and January 1st 1897. |
|
5185
|
|
|
* Uses Normal heights. |
|
5186
|
|
|
*/ |
|
5187
|
|
|
public const EPSG_NIVELLEMENT_GENERAL_DE_LA_FRANCE_IGN69 = 'urn:ogc:def:datum:EPSG::5119'; |
|
5188
|
|
|
|
|
5189
|
|
|
/** |
|
5190
|
|
|
* Nivellement General de la France - IGN78 |
|
5191
|
|
|
* Type: Vertical |
|
5192
|
|
|
* Extent: France - Corsica onshore |
|
5193
|
|
|
* Marker MM3 situated on the tide gauge site of Ajaccio. Height is 3.640 metre above mean sea level. |
|
5194
|
|
|
* Uses Normal heights. Replaces NGC (datum code 5189). |
|
5195
|
|
|
*/ |
|
5196
|
|
|
public const EPSG_NIVELLEMENT_GENERAL_DE_LA_FRANCE_IGN78 = 'urn:ogc:def:datum:EPSG::5120'; |
|
5197
|
|
|
|
|
5198
|
|
|
/** |
|
5199
|
|
|
* Nivellement General de la France - Lallemand |
|
5200
|
|
|
* Type: Vertical |
|
5201
|
|
|
* Extent: France - mainland onshore |
|
5202
|
|
|
* Rivet number M.ac O-VIII on the Marseille tide gauge site, with the height fixed in 1897 at 1.661 metre above |
|
5203
|
|
|
* mean sea level between February 2nd 1885 and January 1st 1897. |
|
5204
|
|
|
* Orthometric heights. |
|
5205
|
|
|
*/ |
|
5206
|
|
|
public const EPSG_NIVELLEMENT_GENERAL_DE_LA_FRANCE_LALLEMAND = 'urn:ogc:def:datum:EPSG::5118'; |
|
5207
|
|
|
|
|
5208
|
|
|
/** |
|
5209
|
|
|
* Nivellement General du Luxembourg 1995 |
|
5210
|
|
|
* Type: Vertical |
|
5211
|
|
|
* Extent: Luxembourg |
|
5212
|
|
|
* Reference point Wemperhardt defined as 528.030m above Normaal Amsterdams Peil (NAP). Datum at NAP is mean high |
|
5213
|
|
|
* tide in 1684. Network adjusted in 1995. |
|
5214
|
|
|
* Pseudo-orthometric heights. |
|
5215
|
|
|
*/ |
|
5216
|
|
|
public const EPSG_NIVELLEMENT_GENERAL_DU_LUXEMBOURG_1995 = 'urn:ogc:def:datum:EPSG::5172'; |
|
5217
|
|
|
|
|
5218
|
|
|
/** |
|
5219
|
|
|
* Nord Sahara 1959 |
|
5220
|
|
|
* Type: Geodetic |
|
5221
|
|
|
* Extent: Algeria |
|
5222
|
|
|
* Coordinates of primary network readjusted on ED50 datum and then transformed conformally to Clarke 1880 (RGS) |
|
5223
|
|
|
* ellipsoid. |
|
5224
|
|
|
* Adjustment includes Morocco and Tunisia but use only in Algeria. Within Algeria the adjustment is north of 32°N |
|
5225
|
|
|
* but use has been extended southwards in many disconnected projects, some based on independent astro stations |
|
5226
|
|
|
* rather than the geodetic network. |
|
5227
|
|
|
*/ |
|
5228
|
|
|
public const EPSG_NORD_SAHARA_1959 = 'urn:ogc:def:datum:EPSG::6307'; |
|
5229
|
|
|
|
|
5230
|
|
|
/** |
|
5231
|
|
|
* Normaal Amsterdams Peil |
|
5232
|
|
|
* Type: Vertical |
|
5233
|
|
|
* Extent: Netherlands |
|
5234
|
|
|
* Mean high tide at Amsterdam in 1684. Onshore NAP is defined by the published heights of benchmarks and since |
|
5235
|
|
|
* 2018 extended offshore defined by the application of the official transformation from ETRS89, RDNAPTRANS(TM). |
|
5236
|
|
|
* Orthometric heights. From 2018, use has been extended from Netherlands onshore to Netherlands onshore and |
|
5237
|
|
|
* offshore. |
|
5238
|
|
|
*/ |
|
5239
|
|
|
public const EPSG_NORMAAL_AMSTERDAMS_PEIL = 'urn:ogc:def:datum:EPSG::5109'; |
|
5240
|
|
|
|
|
5241
|
|
|
/** |
|
5242
|
|
|
* North American Datum 1927 |
|
5243
|
|
|
* Type: Geodetic |
|
5244
|
|
|
* Extent: North and central America: Antigua and Barbuda - onshore. Bahamas - onshore plus offshore over internal |
|
5245
|
|
|
* continental shelf only. Belize - onshore. British Virgin Islands - onshore. Canada onshore - Alberta, British |
|
5246
|
|
|
* Columbia, Manitoba, New Brunswick, Newfoundland and Labrador, Northwest Territories, Nova Scotia, Nunavut, |
|
5247
|
|
|
* Ontario, Prince Edward Island, Quebec, Saskatchewan and Yukon - plus offshore east coast. Cuba. El Salvador - |
|
5248
|
|
|
* onshore. Guatemala - onshore. Honduras - onshore. Panama - onshore. Puerto Rico - onshore. Mexico - onshore plus |
|
5249
|
|
|
* offshore east coast. Nicaragua - onshore. USA - Alabama, Alaska, Arizona, Arkansas, California, Colorado, |
|
5250
|
|
|
* Connecticut, Delaware, Florida, Georgia, Idaho, Illinois, Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, |
|
5251
|
|
|
* Maryland, Massachusetts, Michigan, Minnesota, Mississippi, Missouri, Montana, Nebraska, Nevada, New Hampshire, |
|
5252
|
|
|
* New Jersey, New Mexico, New York, North Carolina, North Dakota, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode |
|
5253
|
|
|
* Island, South Carolina, South Dakota, Tennessee, Texas, Utah, Vermont, Virginia, Washington, West Virginia, |
|
5254
|
|
|
* Wisconsin and Wyoming - plus offshore . US Virgin Islands - onshore |
|
5255
|
|
|
* Fundamental point: Meade's Ranch. Latitude: 39°13'26.686"N, longitude: 98°32'30.506"W (of Greenwich). |
|
5256
|
|
|
* In United States (USA) and Canada, replaced by North American Datum 1983 (NAD83) (code 6269) ; in Mexico, |
|
5257
|
|
|
* replaced by Mexican Datum of 1993 (code 1042). |
|
5258
|
|
|
*/ |
|
5259
|
|
|
public const EPSG_NORTH_AMERICAN_DATUM_1927 = 'urn:ogc:def:datum:EPSG::6267'; |
|
5260
|
|
|
|
|
5261
|
|
|
/** |
|
5262
|
|
|
* North American Datum 1927 (1976) |
|
5263
|
|
|
* Type: Geodetic |
|
5264
|
|
|
* Extent: Canada - Ontario |
|
5265
|
|
|
* Fundamental point: Meade's Ranch. Latitude: 39°13'26.686"N, longitude: 98°32'30.506"W (of Greenwich). |
|
5266
|
|
|
* NAD27(76) used in Ontario for all maps at scale 1/20 000 and larger; elsewhere in Canada for selected purposes. |
|
5267
|
|
|
*/ |
|
5268
|
|
|
public const EPSG_NORTH_AMERICAN_DATUM_1927_1976 = 'urn:ogc:def:datum:EPSG::6608'; |
|
5269
|
|
|
|
|
5270
|
|
|
/** |
|
5271
|
|
|
* North American Datum 1927 (CGQ77) |
|
5272
|
|
|
* Type: Geodetic |
|
5273
|
|
|
* Extent: Canada - Quebec |
|
5274
|
|
|
* Fundamental point: Meade's Ranch. Latitude: 39°13'26.686"N, longitude: 98°32'30.506"W (of Greenwich). |
|
5275
|
|
|
* NAD27 (CGQ77) used in Quebec for all maps at scale 1/20 000 and larger; generally for maps issued by the Quebec |
|
5276
|
|
|
* cartography office whose reference system is CGQ77. |
|
5277
|
|
|
*/ |
|
5278
|
|
|
public const EPSG_NORTH_AMERICAN_DATUM_1927_CGQ77 = 'urn:ogc:def:datum:EPSG::6609'; |
|
5279
|
|
|
|
|
5280
|
|
|
/** |
|
5281
|
|
|
* North American Datum 1983 |
|
5282
|
|
|
* Type: Geodetic |
|
5283
|
|
|
* Extent: North America: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; |
|
5284
|
|
|
* Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon. Puerto |
|
5285
|
|
|
* Rico. USA - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; |
|
5286
|
|
|
* Hawaii; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; |
|
5287
|
|
|
* Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; |
|
5288
|
|
|
* North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; |
|
5289
|
|
|
* Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming. US Virgin Islands. |
|
5290
|
|
|
* British Virgin Islands |
|
5291
|
|
|
* NAD83 Doppler Transit stations in NWL 9D were aligned with the BIH Conventional Terrestrial Reference Frame |
|
5292
|
|
|
* (BTS) at epoch 1984.0 using an internationally adopted transformation. NAD83 is now known to be non-geocentric |
|
5293
|
|
|
* by about 2.2 meters. |
|
5294
|
|
|
* Although the 1986 adjustment included connections to Greenland and Mexico, it has not been adopted there. In |
|
5295
|
|
|
* Canada and US, replaced NAD27. |
|
5296
|
|
|
*/ |
|
5297
|
|
|
public const EPSG_NORTH_AMERICAN_DATUM_1983 = 'urn:ogc:def:datum:EPSG::6269'; |
|
5298
|
|
|
|
|
5299
|
|
|
/** |
|
5300
|
|
|
* North American Datum of 1983 (CSRS) version 2 |
|
5301
|
|
|
* Type: Geodetic |
|
5302
|
|
|
* Extent: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest |
|
5303
|
|
|
* Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon |
|
5304
|
|
|
* Defined at reference epoch 1997.00 by a transformation from ITRF96 (see transformation code 8259). The frame is |
|
5305
|
|
|
* kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model. |
|
5306
|
|
|
* Published 1998-01-01; adopted by the Canadian federal government and the provincial governments of Alberta, |
|
5307
|
|
|
* Saskatchewan, Manitoba, Quebec, New Brunswick and Prince Edward Island. Replaces NAD83(CSRS96). Replaced by |
|
5308
|
|
|
* NAD83(CSRS)v3. |
|
5309
|
|
|
*/ |
|
5310
|
|
|
public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_2 = 'urn:ogc:def:datum:EPSG::1193'; |
|
5311
|
|
|
|
|
5312
|
|
|
/** |
|
5313
|
|
|
* North American Datum of 1983 (CSRS) version 3 |
|
5314
|
|
|
* Type: Geodetic |
|
5315
|
|
|
* Extent: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest |
|
5316
|
|
|
* Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon |
|
5317
|
|
|
* Defined at reference epoch 1997.00 by a transformation from ITRF97 (see transformation code 8260). The frame is |
|
5318
|
|
|
* kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model. |
|
5319
|
|
|
* Published 1999-01-01; adopted by the Canadian federal government (2000) and the provincial governments of |
|
5320
|
|
|
* British Columbia (CRD in 2000, all Victoria Island 2005), Ontario (2008) and Nova Scotia (2000). Replaces |
|
5321
|
|
|
* NAD83(CSRS)v2. Replaced by NAD83(CSRS)v4. |
|
5322
|
|
|
*/ |
|
5323
|
|
|
public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_3 = 'urn:ogc:def:datum:EPSG::1194'; |
|
5324
|
|
|
|
|
5325
|
|
|
/** |
|
5326
|
|
|
* North American Datum of 1983 (CSRS) version 4 |
|
5327
|
|
|
* Type: Geodetic |
|
5328
|
|
|
* Extent: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest |
|
5329
|
|
|
* Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon |
|
5330
|
|
|
* Defined at reference epoch 2002.00 by a transformation from ITRF2000 (see transformation code 8261). The frame |
|
5331
|
|
|
* is kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model. |
|
5332
|
|
|
* Published 2002-01-01; adopted by the Canadian federal government (2002) and the provincial governments of |
|
5333
|
|
|
* British Columbia (for mainland only, not Victoria Island) (2005) and Alberta (2004). Replaces NAD83(CSRS)v3. |
|
5334
|
|
|
* Replaced by NAD83(CSRS)v5. |
|
5335
|
|
|
*/ |
|
5336
|
|
|
public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_4 = 'urn:ogc:def:datum:EPSG::1195'; |
|
5337
|
|
|
|
|
5338
|
|
|
/** |
|
5339
|
|
|
* North American Datum of 1983 (CSRS) version 5 |
|
5340
|
|
|
* Type: Geodetic |
|
5341
|
|
|
* Extent: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest |
|
5342
|
|
|
* Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon |
|
5343
|
|
|
* Defined at reference epoch 2006.00 by a transformation from ITRF2005 (see transformation code 9227). The frame |
|
5344
|
|
|
* is kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model. |
|
5345
|
|
|
* Published 2007-01-01; adopted by the Canadian federal government in 2007. Replaces NAD83(CSRS)v4. Replaced by |
|
5346
|
|
|
* NAD83(CSRS)v6. |
|
5347
|
|
|
*/ |
|
5348
|
|
|
public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_5 = 'urn:ogc:def:datum:EPSG::1196'; |
|
5349
|
|
|
|
|
5350
|
|
|
/** |
|
5351
|
|
|
* North American Datum of 1983 (CSRS) version 6 |
|
5352
|
|
|
* Type: Geodetic |
|
5353
|
|
|
* Extent: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest |
|
5354
|
|
|
* Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon |
|
5355
|
|
|
* Defined at reference epoch 2010.00 by a transformation from ITRF2008 (see transformation code 8264). The frame |
|
5356
|
|
|
* is kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model. |
|
5357
|
|
|
* Published 2010-01-01; adopted by the Canadian government (2012) and the provincial governments of Manitoba |
|
5358
|
|
|
* (2014), Ontario (2013), Prince Edward Island (2014), Nova Scotia (2014) and Newfoundland (2012). Replaces |
|
5359
|
|
|
* NAD83(CSRSv5). Replaced by NAD83(CSRS)v7. |
|
5360
|
|
|
*/ |
|
5361
|
|
|
public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_6 = 'urn:ogc:def:datum:EPSG::1197'; |
|
5362
|
|
|
|
|
5363
|
|
|
/** |
|
5364
|
|
|
* North American Datum of 1983 (CSRS) version 7 |
|
5365
|
|
|
* Type: Geodetic |
|
5366
|
|
|
* Extent: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest |
|
5367
|
|
|
* Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon |
|
5368
|
|
|
* Defined at reference epoch 2010.00 by a transformation from ITRF2014 (see transformation code 8265). The frame |
|
5369
|
|
|
* is kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model. |
|
5370
|
|
|
* Published 2017-05-01; adopted by the Canadian federal government (2017) and the provincial governments of |
|
5371
|
|
|
* Alberta (2021) and Prince Edward Island (2020). Replaces NAD83(CSRS)v6. Replaced by NAD83(CSRS)v8. |
|
5372
|
|
|
*/ |
|
5373
|
|
|
public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_7 = 'urn:ogc:def:datum:EPSG::1198'; |
|
5374
|
|
|
|
|
5375
|
|
|
/** |
|
5376
|
|
|
* North American Datum of 1983 (CSRS) version 8 |
|
5377
|
|
|
* Type: Geodetic |
|
5378
|
|
|
* Extent: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest |
|
5379
|
|
|
* Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon |
|
5380
|
|
|
* Defined at reference epoch 2010.00 by a transformation from ITRF2020 (see transformation code 10415). The frame |
|
5381
|
|
|
* is kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model. |
|
5382
|
|
|
* Published 2022-11-27; adopted by the Canadian federal government (2023). Replaces NAD83(CSRS)v7. |
|
5383
|
|
|
*/ |
|
5384
|
|
|
public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS_VERSION_8 = 'urn:ogc:def:datum:EPSG::1365'; |
|
5385
|
|
|
|
|
5386
|
|
|
/** |
|
5387
|
|
|
* North American Datum of 1983 (CSRS96) |
|
5388
|
|
|
* Type: Geodetic |
|
5389
|
|
|
* Extent: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest |
|
5390
|
|
|
* Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon |
|
5391
|
|
|
* Defined at epoch 1988.0 by a transformation from ITRF92, the definition superseded by a transformation from |
|
5392
|
|
|
* ITRF93 and then by a transformation from ITRF94. (See transformation codes 8256-58). |
|
5393
|
|
|
* Adopted by the Canadian federal government from 1996-01-01. Replaces NAD83 [sometimes called NAD83(Original)]. |
|
5394
|
|
|
* Replaced by NAD83(CSRS)v2. |
|
5395
|
|
|
*/ |
|
5396
|
|
|
public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_CSRS96 = 'urn:ogc:def:datum:EPSG::1192'; |
|
5397
|
|
|
|
|
5398
|
|
|
/** |
|
5399
|
|
|
* North American Datum of 1983 (MARP00) |
|
5400
|
|
|
* Type: Geodetic |
|
5401
|
|
|
* Extent: Guam, Northern Mariana Islands and Palau; |
|
5402
|
|
|
* Defined by a time-dependent seven parameter transformation of ITRF2000 3D geocentric Cartesian coordinates and |
|
5403
|
|
|
* velocities at reference epoch 1993.62, aligned to the Mariana plate at other epochs based on an Euler pole |
|
5404
|
|
|
* rotation. |
|
5405
|
|
|
* Replaces NAD83(HARN) (GGN93) and NAD83(FBN) in Guam. Replaced by NAD83(MA11). |
|
5406
|
|
|
*/ |
|
5407
|
|
|
public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_MARP00 = 'urn:ogc:def:datum:EPSG::1221'; |
|
5408
|
|
|
|
|
5409
|
|
|
/** |
|
5410
|
|
|
* North American Datum of 1983 (PACP00) |
|
5411
|
|
|
* Type: Geodetic |
|
5412
|
|
|
* Extent: American Samoa, Marshall Islands, USA - Hawaii, United States minor outlying islands; |
|
5413
|
|
|
* Defined by a time-dependent seven parameter transformation of ITRF2000 3D geocentric Cartesian coordinates and |
|
5414
|
|
|
* velocities at reference epoch 1993.62, aligned to the Pacific plate at other epochs based on an Euler pole |
|
5415
|
|
|
* rotation. |
|
5416
|
|
|
* Replaces NAD83(HARN) and NAD83(FBN) in Hawaii and American Samoa. Replaced by NAD83(PA11). |
|
5417
|
|
|
*/ |
|
5418
|
|
|
public const EPSG_NORTH_AMERICAN_DATUM_OF_1983_PACP00 = 'urn:ogc:def:datum:EPSG::1249'; |
|
5419
|
|
|
|
|
5420
|
|
|
/** |
|
5421
|
|
|
* North American Vertical Datum 1988 |
|
5422
|
|
|
* Type: Vertical |
|
5423
|
|
|
* Extent: Mexico - onshore. USA - CONUS and Alaska - onshore - Alabama; Alaska; Arizona; Arkansas; California; |
|
5424
|
|
|
* Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; |
|
5425
|
|
|
* Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New |
|
5426
|
|
|
* Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; |
|
5427
|
|
|
* Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West |
|
5428
|
|
|
* Virginia; Wisconsin; Wyoming |
|
5429
|
|
|
* Mean water level 1970-1983 at Pointe-au-Père (Father's Point) and 1984-1988 at Rimouski, Quebec. Benchmark |
|
5430
|
|
|
* 1250-G = 6.273m. |
|
5431
|
|
|
* Helmert orthometric heights. |
|
5432
|
|
|
*/ |
|
5433
|
|
|
public const EPSG_NORTH_AMERICAN_VERTICAL_DATUM_1988 = 'urn:ogc:def:datum:EPSG::5103'; |
|
5434
|
|
|
|
|
5435
|
|
|
/** |
|
5436
|
|
|
* North Rona |
|
5437
|
|
|
* Type: Vertical |
|
5438
|
|
|
* Extent: UK - Great Britain - Scotland - North Rona onshore |
|
5439
|
|
|
* Orthometric heights. |
|
5440
|
|
|
*/ |
|
5441
|
|
|
public const EPSG_NORTH_RONA = 'urn:ogc:def:datum:EPSG::5143'; |
|
5442
|
|
|
|
|
5443
|
|
|
/** |
|
5444
|
|
|
* Northern Marianas Vertical Datum of 2003 |
|
5445
|
|
|
* Type: Vertical |
|
5446
|
|
|
* Extent: Northern Mariana Islands - onshore - Rota, Saipan and Tinian |
|
5447
|
|
|
* Mean sea level at Tanapag harbor, Saipan. Benchmark 1633227 TIDAL UH-2C = 1.657m relative to National Tidal |
|
5448
|
|
|
* Datum Epoch 1983-2001. Transferred to Rota (East Harbor, BM TIDAL 3 = 1.482m) and Tinian (Harbor BM TIDAL 1 = |
|
5449
|
|
|
* 2.361m). |
|
5450
|
|
|
* Replaces all earlier vertical datums on these islands. |
|
5451
|
|
|
*/ |
|
5452
|
|
|
public const EPSG_NORTHERN_MARIANAS_VERTICAL_DATUM_OF_2003 = 'urn:ogc:def:datum:EPSG::1119'; |
|
5453
|
|
|
|
|
5454
|
|
|
/** |
|
5455
|
|
|
* Norway Normal Null 1954 |
|
5456
|
|
|
* Type: Vertical |
|
5457
|
|
|
* Extent: Norway - onshore |
|
5458
|
|
|
* MSL defined by regression at 7 gauges with between 17 and 67 years observations. |
|
5459
|
|
|
* Includes initial NN1954 system and NNN1957 system. Former name retained. Normal-orthometric heights. Replaced by |
|
5460
|
|
|
* NN2000. |
|
5461
|
|
|
*/ |
|
5462
|
|
|
public const EPSG_NORWAY_NORMAL_NULL_1954 = 'urn:ogc:def:datum:EPSG::5174'; |
|
5463
|
|
|
|
|
5464
|
|
|
/** |
|
5465
|
|
|
* Norway Normal Null 2000 |
|
5466
|
|
|
* Type: Vertical |
|
5467
|
|
|
* Extent: Norway - onshore |
|
5468
|
|
|
* Adjustment is referenced to mean high tide at Amsterdams Peil in 1684. To account for land level movements |
|
5469
|
|
|
* caused by isostatic rebound, heights are reduced to epoch 2000.0 using values computed from the NKG2005LU uplift |
|
5470
|
|
|
* model. |
|
5471
|
|
|
* Replaces NN54. Uses Normal heights. |
|
5472
|
|
|
*/ |
|
5473
|
|
|
public const EPSG_NORWAY_NORMAL_NULL_2000 = 'urn:ogc:def:datum:EPSG::1096'; |
|
5474
|
|
|
|
|
5475
|
|
|
/** |
|
5476
|
|
|
* Norwegian Chart Datum |
|
5477
|
|
|
* Type: Vertical |
|
5478
|
|
|
* Extent: Norway (offshore) and Svalbard and Jan Mayen (offshore) |
|
5479
|
|
|
* LAT (sum of all harmonic constituents) with an added safety margin in areas where low water levels frequently |
|
5480
|
|
|
* deviate from LAT. The safety margin is 20 cm from Utsira to the Swedish border and 30 cm in the inner part of |
|
5481
|
|
|
* the Oslofjord (north of Drøbak). |
|
5482
|
|
|
* Prior to 2000-01-01 the definition of chart datum was Z0 = M2 + S2 + N2 + K2 + K1 + ½Sa plus safety margins (10 |
|
5483
|
|
|
* cm north of Hordaland, 20 cm in Hordaland, 30 cm from Rogaland to the Swedish border and 40 cm in the inner |
|
5484
|
|
|
* parts of the Oslofjord). |
|
5485
|
|
|
*/ |
|
5486
|
|
|
public const EPSG_NORWEGIAN_CHART_DATUM = 'urn:ogc:def:datum:EPSG::1301'; |
|
5487
|
|
|
|
|
5488
|
|
|
/** |
|
5489
|
|
|
* Not specified (based on Airy 1830 ellipsoid) |
|
5490
|
|
|
* Type: Geodetic |
|
5491
|
|
|
* Extent: World |
|
5492
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5493
|
|
|
* @deprecated |
|
5494
|
|
|
*/ |
|
5495
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_AIRY_1830_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6001'; |
|
5496
|
|
|
|
|
5497
|
|
|
/** |
|
5498
|
|
|
* Not specified (based on Airy Modified 1849 ellipsoid) |
|
5499
|
|
|
* Type: Geodetic |
|
5500
|
|
|
* Extent: World |
|
5501
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5502
|
|
|
* @deprecated |
|
5503
|
|
|
*/ |
|
5504
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_AIRY_MODIFIED_1849_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6002'; |
|
5505
|
|
|
|
|
5506
|
|
|
/** |
|
5507
|
|
|
* Not specified (based on Australian National Spheroid) |
|
5508
|
|
|
* Type: Geodetic |
|
5509
|
|
|
* Extent: World |
|
5510
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5511
|
|
|
* @deprecated |
|
5512
|
|
|
*/ |
|
5513
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_AUSTRALIAN_NATIONAL_SPHEROID = 'urn:ogc:def:datum:EPSG::6003'; |
|
5514
|
|
|
|
|
5515
|
|
|
/** |
|
5516
|
|
|
* Not specified (based on Average Terrestrial System 1977 ellipsoid) |
|
5517
|
|
|
* Type: Geodetic |
|
5518
|
|
|
* Extent: World |
|
5519
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5520
|
|
|
* @deprecated |
|
5521
|
|
|
*/ |
|
5522
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_AVERAGE_TERRESTRIAL_SYSTEM_1977_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6041'; |
|
5523
|
|
|
|
|
5524
|
|
|
/** |
|
5525
|
|
|
* Not specified (based on Bessel 1841 ellipsoid) |
|
5526
|
|
|
* Type: Geodetic |
|
5527
|
|
|
* Extent: World |
|
5528
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5529
|
|
|
* @deprecated |
|
5530
|
|
|
*/ |
|
5531
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_BESSEL_1841_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6004'; |
|
5532
|
|
|
|
|
5533
|
|
|
/** |
|
5534
|
|
|
* Not specified (based on Bessel Modified ellipsoid) |
|
5535
|
|
|
* Type: Geodetic |
|
5536
|
|
|
* Extent: World |
|
5537
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5538
|
|
|
* @deprecated |
|
5539
|
|
|
*/ |
|
5540
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_BESSEL_MODIFIED_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6005'; |
|
5541
|
|
|
|
|
5542
|
|
|
/** |
|
5543
|
|
|
* Not specified (based on Bessel Namibia ellipsoid) |
|
5544
|
|
|
* Type: Geodetic |
|
5545
|
|
|
* Extent: World |
|
5546
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5547
|
|
|
* @deprecated |
|
5548
|
|
|
*/ |
|
5549
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_BESSEL_NAMIBIA_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6006'; |
|
5550
|
|
|
|
|
5551
|
|
|
/** |
|
5552
|
|
|
* Not specified (based on Clarke 1858 ellipsoid) |
|
5553
|
|
|
* Type: Geodetic |
|
5554
|
|
|
* Extent: World |
|
5555
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5556
|
|
|
* @deprecated |
|
5557
|
|
|
*/ |
|
5558
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1858_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6007'; |
|
5559
|
|
|
|
|
5560
|
|
|
/** |
|
5561
|
|
|
* Not specified (based on Clarke 1866 Authalic Sphere) |
|
5562
|
|
|
* Type: Geodetic |
|
5563
|
|
|
* Extent: World |
|
5564
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5565
|
|
|
* @deprecated |
|
5566
|
|
|
*/ |
|
5567
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1866_AUTHALIC_SPHERE = 'urn:ogc:def:datum:EPSG::6052'; |
|
5568
|
|
|
|
|
5569
|
|
|
/** |
|
5570
|
|
|
* Not specified (based on Clarke 1866 ellipsoid) |
|
5571
|
|
|
* Type: Geodetic |
|
5572
|
|
|
* Extent: World |
|
5573
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5574
|
|
|
* @deprecated |
|
5575
|
|
|
*/ |
|
5576
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1866_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6008'; |
|
5577
|
|
|
|
|
5578
|
|
|
/** |
|
5579
|
|
|
* Not specified (based on Clarke 1880 (Arc) ellipsoid) |
|
5580
|
|
|
* Type: Geodetic |
|
5581
|
|
|
* Extent: World |
|
5582
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5583
|
|
|
* @deprecated |
|
5584
|
|
|
*/ |
|
5585
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_ARC_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6013'; |
|
5586
|
|
|
|
|
5587
|
|
|
/** |
|
5588
|
|
|
* Not specified (based on Clarke 1880 (Benoit) ellipsoid) |
|
5589
|
|
|
* Type: Geodetic |
|
5590
|
|
|
* Extent: World |
|
5591
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5592
|
|
|
* @deprecated |
|
5593
|
|
|
*/ |
|
5594
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_BENOIT_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6010'; |
|
5595
|
|
|
|
|
5596
|
|
|
/** |
|
5597
|
|
|
* Not specified (based on Clarke 1880 (IGN) ellipsoid) |
|
5598
|
|
|
* Type: Geodetic |
|
5599
|
|
|
* Extent: World |
|
5600
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5601
|
|
|
* @deprecated |
|
5602
|
|
|
*/ |
|
5603
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_IGN_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6011'; |
|
5604
|
|
|
|
|
5605
|
|
|
/** |
|
5606
|
|
|
* Not specified (based on Clarke 1880 (RGS) ellipsoid) |
|
5607
|
|
|
* Type: Geodetic |
|
5608
|
|
|
* Extent: World |
|
5609
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5610
|
|
|
* @deprecated |
|
5611
|
|
|
*/ |
|
5612
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_RGS_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6012'; |
|
5613
|
|
|
|
|
5614
|
|
|
/** |
|
5615
|
|
|
* Not specified (based on Clarke 1880 (SGA 1922) ellipsoid) |
|
5616
|
|
|
* Type: Geodetic |
|
5617
|
|
|
* Extent: World |
|
5618
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5619
|
|
|
* @deprecated |
|
5620
|
|
|
*/ |
|
5621
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_SGA_1922_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6014'; |
|
5622
|
|
|
|
|
5623
|
|
|
/** |
|
5624
|
|
|
* Not specified (based on Clarke 1880 ellipsoid) |
|
5625
|
|
|
* Type: Geodetic |
|
5626
|
|
|
* Extent: World |
|
5627
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5628
|
|
|
* @deprecated |
|
5629
|
|
|
*/ |
|
5630
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_CLARKE_1880_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6034'; |
|
5631
|
|
|
|
|
5632
|
|
|
/** |
|
5633
|
|
|
* Not specified (based on Everest (1830 Definition) ellipsoid) |
|
5634
|
|
|
* Type: Geodetic |
|
5635
|
|
|
* Extent: World |
|
5636
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5637
|
|
|
* @deprecated |
|
5638
|
|
|
*/ |
|
5639
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_DEFINITION_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6042'; |
|
5640
|
|
|
|
|
5641
|
|
|
/** |
|
5642
|
|
|
* Not specified (based on Everest 1830 (1937 Adjustment) ellipsoid) |
|
5643
|
|
|
* Type: Geodetic |
|
5644
|
|
|
* Extent: World |
|
5645
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5646
|
|
|
* @deprecated |
|
5647
|
|
|
*/ |
|
5648
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_1937_ADJUSTMENT_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6015'; |
|
5649
|
|
|
|
|
5650
|
|
|
/** |
|
5651
|
|
|
* Not specified (based on Everest 1830 (1962 Definition) ellipsoid) |
|
5652
|
|
|
* Type: Geodetic |
|
5653
|
|
|
* Extent: World |
|
5654
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5655
|
|
|
* @deprecated |
|
5656
|
|
|
*/ |
|
5657
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_1962_DEFINITION_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6044'; |
|
5658
|
|
|
|
|
5659
|
|
|
/** |
|
5660
|
|
|
* Not specified (based on Everest 1830 (1967 Definition) ellipsoid) |
|
5661
|
|
|
* Type: Geodetic |
|
5662
|
|
|
* Extent: World |
|
5663
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5664
|
|
|
* @deprecated |
|
5665
|
|
|
*/ |
|
5666
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_1967_DEFINITION_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6016'; |
|
5667
|
|
|
|
|
5668
|
|
|
/** |
|
5669
|
|
|
* Not specified (based on Everest 1830 (1975 Definition) ellipsoid) |
|
5670
|
|
|
* Type: Geodetic |
|
5671
|
|
|
* Extent: World |
|
5672
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5673
|
|
|
* @deprecated |
|
5674
|
|
|
*/ |
|
5675
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_1975_DEFINITION_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6045'; |
|
5676
|
|
|
|
|
5677
|
|
|
/** |
|
5678
|
|
|
* Not specified (based on Everest 1830 Modified ellipsoid) |
|
5679
|
|
|
* Type: Geodetic |
|
5680
|
|
|
* Extent: World |
|
5681
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5682
|
|
|
* @deprecated |
|
5683
|
|
|
*/ |
|
5684
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_EVEREST_1830_MODIFIED_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6018'; |
|
5685
|
|
|
|
|
5686
|
|
|
/** |
|
5687
|
|
|
* Not specified (based on GEM 10C ellipsoid) |
|
5688
|
|
|
* Type: Geodetic |
|
5689
|
|
|
* Extent: World |
|
5690
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5691
|
|
|
* @deprecated |
|
5692
|
|
|
*/ |
|
5693
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_GEM_10C_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6031'; |
|
5694
|
|
|
|
|
5695
|
|
|
/** |
|
5696
|
|
|
* Not specified (based on GRS 1967 ellipsoid) |
|
5697
|
|
|
* Type: Geodetic |
|
5698
|
|
|
* Extent: World |
|
5699
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5700
|
|
|
* @deprecated |
|
5701
|
|
|
*/ |
|
5702
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_GRS_1967_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6036'; |
|
5703
|
|
|
|
|
5704
|
|
|
/** |
|
5705
|
|
|
* Not specified (based on GRS 1980 Authalic Sphere) |
|
5706
|
|
|
* Type: Geodetic |
|
5707
|
|
|
* Extent: World |
|
5708
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5709
|
|
|
* @deprecated |
|
5710
|
|
|
*/ |
|
5711
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_GRS_1980_AUTHALIC_SPHERE = 'urn:ogc:def:datum:EPSG::6047'; |
|
5712
|
|
|
|
|
5713
|
|
|
/** |
|
5714
|
|
|
* Not specified (based on GRS 1980 ellipsoid) |
|
5715
|
|
|
* Type: Geodetic |
|
5716
|
|
|
* Extent: World |
|
5717
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5718
|
|
|
* @deprecated |
|
5719
|
|
|
*/ |
|
5720
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_GRS_1980_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6019'; |
|
5721
|
|
|
|
|
5722
|
|
|
/** |
|
5723
|
|
|
* Not specified (based on Helmert 1906 ellipsoid) |
|
5724
|
|
|
* Type: Geodetic |
|
5725
|
|
|
* Extent: World |
|
5726
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5727
|
|
|
* @deprecated |
|
5728
|
|
|
*/ |
|
5729
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_HELMERT_1906_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6020'; |
|
5730
|
|
|
|
|
5731
|
|
|
/** |
|
5732
|
|
|
* Not specified (based on Hughes 1980 ellipsoid) |
|
5733
|
|
|
* Type: Geodetic |
|
5734
|
|
|
* Extent: World |
|
5735
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5736
|
|
|
* @deprecated |
|
5737
|
|
|
*/ |
|
5738
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_HUGHES_1980_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6054'; |
|
5739
|
|
|
|
|
5740
|
|
|
/** |
|
5741
|
|
|
* Not specified (based on Indonesian National Spheroid) |
|
5742
|
|
|
* Type: Geodetic |
|
5743
|
|
|
* Extent: World |
|
5744
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5745
|
|
|
* @deprecated |
|
5746
|
|
|
*/ |
|
5747
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_INDONESIAN_NATIONAL_SPHEROID = 'urn:ogc:def:datum:EPSG::6021'; |
|
5748
|
|
|
|
|
5749
|
|
|
/** |
|
5750
|
|
|
* Not specified (based on International 1924 Authalic Sphere) |
|
5751
|
|
|
* Type: Geodetic |
|
5752
|
|
|
* Extent: World |
|
5753
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5754
|
|
|
* @deprecated |
|
5755
|
|
|
*/ |
|
5756
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_INTERNATIONAL_1924_AUTHALIC_SPHERE = 'urn:ogc:def:datum:EPSG::6053'; |
|
5757
|
|
|
|
|
5758
|
|
|
/** |
|
5759
|
|
|
* Not specified (based on International 1924 ellipsoid) |
|
5760
|
|
|
* Type: Geodetic |
|
5761
|
|
|
* Extent: World |
|
5762
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5763
|
|
|
* @deprecated |
|
5764
|
|
|
*/ |
|
5765
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_INTERNATIONAL_1924_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6022'; |
|
5766
|
|
|
|
|
5767
|
|
|
/** |
|
5768
|
|
|
* Not specified (based on Krassowsky 1940 ellipsoid) |
|
5769
|
|
|
* Type: Geodetic |
|
5770
|
|
|
* Extent: World |
|
5771
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5772
|
|
|
* @deprecated |
|
5773
|
|
|
*/ |
|
5774
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_KRASSOWSKY_1940_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6024'; |
|
5775
|
|
|
|
|
5776
|
|
|
/** |
|
5777
|
|
|
* Not specified (based on NWL 9D ellipsoid) |
|
5778
|
|
|
* Type: Geodetic |
|
5779
|
|
|
* Extent: World |
|
5780
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5781
|
|
|
* @deprecated |
|
5782
|
|
|
*/ |
|
5783
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_NWL_9D_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6025'; |
|
5784
|
|
|
|
|
5785
|
|
|
/** |
|
5786
|
|
|
* Not specified (based on OSU86F ellipsoid) |
|
5787
|
|
|
* Type: Geodetic |
|
5788
|
|
|
* Extent: World |
|
5789
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5790
|
|
|
* @deprecated |
|
5791
|
|
|
*/ |
|
5792
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_OSU86F_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6032'; |
|
5793
|
|
|
|
|
5794
|
|
|
/** |
|
5795
|
|
|
* Not specified (based on OSU91A ellipsoid) |
|
5796
|
|
|
* Type: Geodetic |
|
5797
|
|
|
* Extent: World |
|
5798
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5799
|
|
|
* @deprecated |
|
5800
|
|
|
*/ |
|
5801
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_OSU91A_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6033'; |
|
5802
|
|
|
|
|
5803
|
|
|
/** |
|
5804
|
|
|
* Not specified (based on Plessis 1817 ellipsoid) |
|
5805
|
|
|
* Type: Geodetic |
|
5806
|
|
|
* Extent: World |
|
5807
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5808
|
|
|
* @deprecated |
|
5809
|
|
|
*/ |
|
5810
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_PLESSIS_1817_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6027'; |
|
5811
|
|
|
|
|
5812
|
|
|
/** |
|
5813
|
|
|
* Not specified (based on Struve 1860 ellipsoid) |
|
5814
|
|
|
* Type: Geodetic |
|
5815
|
|
|
* Extent: World |
|
5816
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5817
|
|
|
* @deprecated |
|
5818
|
|
|
*/ |
|
5819
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_STRUVE_1860_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6028'; |
|
5820
|
|
|
|
|
5821
|
|
|
/** |
|
5822
|
|
|
* Not specified (based on WGS 72 ellipsoid) |
|
5823
|
|
|
* Type: Geodetic |
|
5824
|
|
|
* Extent: World |
|
5825
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5826
|
|
|
* @deprecated |
|
5827
|
|
|
*/ |
|
5828
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_WGS_72_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6043'; |
|
5829
|
|
|
|
|
5830
|
|
|
/** |
|
5831
|
|
|
* Not specified (based on WGS 84 ellipsoid) |
|
5832
|
|
|
* Type: Geodetic |
|
5833
|
|
|
* Extent: World |
|
5834
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5835
|
|
|
* @deprecated |
|
5836
|
|
|
*/ |
|
5837
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_WGS_84_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6030'; |
|
5838
|
|
|
|
|
5839
|
|
|
/** |
|
5840
|
|
|
* Not specified (based on War Office ellipsoid) |
|
5841
|
|
|
* Type: Geodetic |
|
5842
|
|
|
* Extent: World |
|
5843
|
|
|
* Included for coordinate reference systems where datum is unknown. |
|
5844
|
|
|
* @deprecated |
|
5845
|
|
|
*/ |
|
5846
|
|
|
public const EPSG_NOT_SPECIFIED_BASED_ON_WAR_OFFICE_ELLIPSOID = 'urn:ogc:def:datum:EPSG::6029'; |
|
5847
|
|
|
|
|
5848
|
|
|
/** |
|
5849
|
|
|
* Nouakchott 1965 |
|
5850
|
|
|
* Type: Geodetic |
|
5851
|
|
|
* Extent: Mauritania - coastal area south of Cape Timiris |
|
5852
|
|
|
* Nouakchott astronomical point. |
|
5853
|
|
|
* Triangulation limited to environs of Nouakchott. Extended in 1982 by satellite translocation from a single |
|
5854
|
|
|
* station "Ruines" to support Syledis chain for offshore operations. Replaced by Mauritania 1999 (datum code |
|
5855
|
|
|
* 6602). |
|
5856
|
|
|
*/ |
|
5857
|
|
|
public const EPSG_NOUAKCHOTT_1965 = 'urn:ogc:def:datum:EPSG::6680'; |
|
5858
|
|
|
|
|
5859
|
|
|
/** |
|
5860
|
|
|
* Nouvelle Triangulation Francaise |
|
5861
|
|
|
* Type: Geodetic |
|
5862
|
|
|
* Extent: France - onshore - mainland and Corsica |
|
5863
|
|
|
* Fundamental point: Pantheon. Latitude: 48°50'46.522"N, longitude: 2°20'48.667"E (of Greenwich). |
|
5864
|
|
|
*/ |
|
5865
|
|
|
public const EPSG_NOUVELLE_TRIANGULATION_FRANCAISE = 'urn:ogc:def:datum:EPSG::6275'; |
|
5866
|
|
|
|
|
5867
|
|
|
/** |
|
5868
|
|
|
* Nouvelle Triangulation Francaise (Paris) |
|
5869
|
|
|
* Type: Geodetic |
|
5870
|
|
|
* Extent: France - onshore - mainland and Corsica |
|
5871
|
|
|
* Fundamental point: Pantheon. Latitude: 54.273618g N, longitude: 0.0106921g E (of Paris). |
|
5872
|
|
|
*/ |
|
5873
|
|
|
public const EPSG_NOUVELLE_TRIANGULATION_FRANCAISE_PARIS = 'urn:ogc:def:datum:EPSG::6807'; |
|
5874
|
|
|
|
|
5875
|
|
|
/** |
|
5876
|
|
|
* OS (SN) 1980 |
|
5877
|
|
|
* Type: Geodetic |
|
5878
|
|
|
* Extent: Ireland - onshore. UK - onshore - England; Scotland; Wales; Northern Ireland. Isle of Man |
|
5879
|
|
|
* Fundamental point: Herstmonceux. Latitude: 50°51'55.271"N, longitude: 0°20'45.882"E (of Greenwich). |
|
5880
|
|
|
*/ |
|
5881
|
|
|
public const EPSG_OS_SN_1980 = 'urn:ogc:def:datum:EPSG::6279'; |
|
5882
|
|
|
|
|
5883
|
|
|
/** |
|
5884
|
|
|
* OSGB 1970 (SN) |
|
5885
|
|
|
* Type: Geodetic |
|
5886
|
|
|
* Extent: UK - Great Britain - England and Wales onshore, Scotland onshore and Western Isles nearshore including |
|
5887
|
|
|
* Sea of the Hebrides and The Minch; Isle of Man onshore |
|
5888
|
|
|
* Fundamental point: Herstmonceux. Latitude: 50°51'55.271"N, longitude: 0°20'45.882"E (of Greenwich). |
|
5889
|
|
|
*/ |
|
5890
|
|
|
public const EPSG_OSGB_1970_SN = 'urn:ogc:def:datum:EPSG::6278'; |
|
5891
|
|
|
|
|
5892
|
|
|
/** |
|
5893
|
|
|
* OSNI 1952 |
|
5894
|
|
|
* Type: Geodetic |
|
5895
|
|
|
* Extent: UK - Northern Ireland (Ulster) - onshore |
|
5896
|
|
|
* Position fixed to the coordinates from the 19th century Principle Triangulation of station Divis. Scale and |
|
5897
|
|
|
* orientation controlled by position of Principle Triangulation stations Knocklayd and Trostan. |
|
5898
|
|
|
* Replaced by Geodetic Datum of 1965 alias 1975 Mapping Adjustment or TM75 (datum code 6300). |
|
5899
|
|
|
*/ |
|
5900
|
|
|
public const EPSG_OSNI_1952 = 'urn:ogc:def:datum:EPSG::6188'; |
|
5901
|
|
|
|
|
5902
|
|
|
/** |
|
5903
|
|
|
* Observatario |
|
5904
|
|
|
* Type: Geodetic |
|
5905
|
|
|
* Extent: Mozambique - south |
|
5906
|
|
|
* Fundamental point: Campos Rodrigues observatory, Maputo. |
|
5907
|
|
|
* Replaced by transformation to Tete datum (datum code 6127). |
|
5908
|
|
|
*/ |
|
5909
|
|
|
public const EPSG_OBSERVATARIO = 'urn:ogc:def:datum:EPSG::6129'; |
|
5910
|
|
|
|
|
5911
|
|
|
/** |
|
5912
|
|
|
* Ocotepeque 1935 |
|
5913
|
|
|
* Type: Geodetic |
|
5914
|
|
|
* Extent: Costa Rica; El Salvador; Guatemala; Honduras; Nicaragua |
|
5915
|
|
|
* Fundamental point: Base Norte. Latitude: 14°26'20.168"N, longitude: 89°11'33.964"W. |
|
5916
|
|
|
* Replaced in Costa Rica by Costa Rica 2005 (CR05) from March 2007 and replaced in El Salvador by SIRGAS_ES2007 |
|
5917
|
|
|
* from August 2007. |
|
5918
|
|
|
*/ |
|
5919
|
|
|
public const EPSG_OCOTEPEQUE_1935 = 'urn:ogc:def:datum:EPSG::1070'; |
|
5920
|
|
|
|
|
5921
|
|
|
/** |
|
5922
|
|
|
* Old Hawaiian |
|
5923
|
|
|
* Type: Geodetic |
|
5924
|
|
|
* Extent: USA - Hawaii - main islands onshore |
|
5925
|
|
|
* Fundamental point: Oahu West Base Astro. Latitude: 21°18'13.89"N, longitude 157°50'55.79"W (of Greenwich) |
|
5926
|
|
|
* Hawaiian Islands were never on NAD27 but rather on Old Hawaiian Datum. NADCON conversion program provides |
|
5927
|
|
|
* transformation from Old Hawaiian Datum to NAD83 (original 1986 realization) but making the transformation appear |
|
5928
|
|
|
* to user as if from NAD27. |
|
5929
|
|
|
*/ |
|
5930
|
|
|
public const EPSG_OLD_HAWAIIAN = 'urn:ogc:def:datum:EPSG::6135'; |
|
5931
|
|
|
|
|
5932
|
|
|
/** |
|
5933
|
|
|
* Oman National Geodetic Datum 2014 |
|
5934
|
|
|
* Type: Geodetic |
|
5935
|
|
|
* Extent: Oman |
|
5936
|
|
|
* 20 stations of the Oman primary network tied to ITRF2008 at epoch 2013.15. |
|
5937
|
|
|
* Replaces WGS 84 (G873). Replaced by ONGD17. |
|
5938
|
|
|
*/ |
|
5939
|
|
|
public const EPSG_OMAN_NATIONAL_GEODETIC_DATUM_2014 = 'urn:ogc:def:datum:EPSG::1147'; |
|
5940
|
|
|
|
|
5941
|
|
|
/** |
|
5942
|
|
|
* Oman National Geodetic Datum 2017 |
|
5943
|
|
|
* Type: Geodetic |
|
5944
|
|
|
* Extent: Oman |
|
5945
|
|
|
* Oman primary network of 39 stations tied to ITRF2014 at epoch 2017.24. |
|
5946
|
|
|
* Replaces ONGD14 from March 2019. |
|
5947
|
|
|
*/ |
|
5948
|
|
|
public const EPSG_OMAN_NATIONAL_GEODETIC_DATUM_2017 = 'urn:ogc:def:datum:EPSG::1263'; |
|
5949
|
|
|
|
|
5950
|
|
|
/** |
|
5951
|
|
|
* One Tree Point 1964 |
|
5952
|
|
|
* Type: Vertical |
|
5953
|
|
|
* Extent: New Zealand - North Island - One Tree Point vertical CRS area |
|
5954
|
|
|
* MSL at Whangarei harbour 1960-1963. |
|
5955
|
|
|
*/ |
|
5956
|
|
|
public const EPSG_ONE_TREE_POINT_1964 = 'urn:ogc:def:datum:EPSG::5165'; |
|
5957
|
|
|
|
|
5958
|
|
|
/** |
|
5959
|
|
|
* Ordnance Datum Newlyn |
|
5960
|
|
|
* Type: Vertical |
|
5961
|
|
|
* Extent: UK - Great Britain onshore - England and Wales - mainland; Scotland - mainland and Inner Hebrides |
|
5962
|
|
|
* Mean Sea Level at Newlyn between 1915 and 1921. Initially realised through 1921 and then 1956 levelling network |
|
5963
|
|
|
* adjustments. From 2002 redefined to be realised through OSGM geoid models. |
|
5964
|
|
|
* Orthometric heights. |
|
5965
|
|
|
*/ |
|
5966
|
|
|
public const EPSG_ORDNANCE_DATUM_NEWLYN = 'urn:ogc:def:datum:EPSG::5101'; |
|
5967
|
|
|
|
|
5968
|
|
|
/** |
|
5969
|
|
|
* Ordnance Datum Newlyn (Offshore) |
|
5970
|
|
|
* Type: Vertical |
|
5971
|
|
|
* Extent: UK - offshore between 2km from shore and boundary of UKCS within 49°45'N to 61°N and 9°W to 2°E |
|
5972
|
|
|
* Defined by OSGM geoid model. |
|
5973
|
|
|
* Extension of Ordnance Datum Newlyn offshore through geoid model. Orthometric heights. |
|
5974
|
|
|
*/ |
|
5975
|
|
|
public const EPSG_ORDNANCE_DATUM_NEWLYN_OFFSHORE = 'urn:ogc:def:datum:EPSG::1164'; |
|
5976
|
|
|
|
|
5977
|
|
|
/** |
|
5978
|
|
|
* Ordnance Datum Newlyn (Orkney Isles) |
|
5979
|
|
|
* Type: Vertical |
|
5980
|
|
|
* Extent: UK - Great Britain - Scotland - Orkney Islands onshore |
|
5981
|
|
|
* Connected to Newlyn datum by triangulation from the British mainland. Initially realised through levelling |
|
5982
|
|
|
* network adjustment, from 2002 redefined to be realised through OSGM geoid model. |
|
5983
|
|
|
* Considered as separate from Newlyn because the accuracy of the trigonometric connection across the Pentland |
|
5984
|
|
|
* Firth does not meet geodetic levelling specifications. Orthometric heights. |
|
5985
|
|
|
*/ |
|
5986
|
|
|
public const EPSG_ORDNANCE_DATUM_NEWLYN_ORKNEY_ISLES = 'urn:ogc:def:datum:EPSG::5138'; |
|
5987
|
|
|
|
|
5988
|
|
|
/** |
|
5989
|
|
|
* Ordnance Survey of Great Britain 1936 |
|
5990
|
|
|
* Type: Geodetic |
|
5991
|
|
|
* Extent: UK - offshore to boundary of UKCS within 49°45'N to 61°N and 9°W to 2°E; onshore Great Britain |
|
5992
|
|
|
* (England, Wales and Scotland). Isle of Man onshore |
|
5993
|
|
|
* Prior to 2002 fundamental point: Herstmonceux, Latitude: 50°51'55.271"N, longitude: 0°20'45.882"E, |
|
5994
|
|
|
* triangulation adjustment started 1936, completed 1962. From April 2002 the datum is defined through the |
|
5995
|
|
|
* application of the OSTN transformation from ETRS89. |
|
5996
|
|
|
* The average accuracy of OSTN compared to the old triangulation network (down to 3rd order) is 0.1m. With the |
|
5997
|
|
|
* introduction of OSTN15, the area for OGSB36 has effectively been extended from Britain to cover the adjacent UK |
|
5998
|
|
|
* Continental Shelf. |
|
5999
|
|
|
*/ |
|
6000
|
|
|
public const EPSG_ORDNANCE_SURVEY_OF_GREAT_BRITAIN_1936 = 'urn:ogc:def:datum:EPSG::6277'; |
|
6001
|
|
|
|
|
6002
|
|
|
/** |
|
6003
|
|
|
* Ostend |
|
6004
|
|
|
* Type: Vertical |
|
6005
|
|
|
* Extent: Belgium - onshore |
|
6006
|
|
|
* Mean low water at Ostend 1855-78 transferred to benchmark GIKMN at Uccle. |
|
6007
|
|
|
* Realized through the second general levelling (DNG or TAW) 1981-1999. |
|
6008
|
|
|
*/ |
|
6009
|
|
|
public const EPSG_OSTEND = 'urn:ogc:def:datum:EPSG::5110'; |
|
6010
|
|
|
|
|
6011
|
|
|
/** |
|
6012
|
|
|
* Ostenfeld Intermediate Datum |
|
6013
|
|
|
* Type: Geodetic |
|
6014
|
|
|
* Extent: Denmark - onshore northern Schleswig and surrounding islands (i.e. Jutland south of the pre-1920 border |
|
6015
|
|
|
* near the Kongea river) |
|
6016
|
|
|
* Origin of historic system is near the German village Ostenfeld. This Danish reconstruction defined/derived |
|
6017
|
|
|
* through inversion of an older transformation. |
|
6018
|
|
|
* Created in 2022 to support intermediate CRS OS-IRF in the transformation of coordinates between the historic |
|
6019
|
|
|
* Ostenfeld system of Prussia and ETRS89. The data are reconstructions based on information synthesized in |
|
6020
|
|
|
* historical empirical transformations. |
|
6021
|
|
|
*/ |
|
6022
|
|
|
public const EPSG_OSTENFELD_INTERMEDIATE_DATUM = 'urn:ogc:def:datum:EPSG::1350'; |
|
6023
|
|
|
|
|
6024
|
|
|
/** |
|
6025
|
|
|
* OxWo08 Intermediate Reference Frame |
|
6026
|
|
|
* Type: Geodetic |
|
6027
|
|
|
* Extent: UK - on or related to the rail route from Oxford to Worcester |
|
6028
|
|
|
* Defined through the application of the OxWo08 NTv2 transformation to ETRS89 as realized through OSNet v2009 |
|
6029
|
|
|
* CORS. |
|
6030
|
|
|
* Created in 2022 to support intermediate CRS OxWo08-IRF in the emulation of the OxWo08 Snake map projection. |
|
6031
|
|
|
*/ |
|
6032
|
|
|
public const EPSG_OXWO08_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1344'; |
|
6033
|
|
|
|
|
6034
|
|
|
/** |
|
6035
|
|
|
* PDO Height Datum 1993 |
|
6036
|
|
|
* Type: Vertical |
|
6037
|
|
|
* Extent: Oman - onshore. Includes Musandam and the Kuria Muria (Al Hallaniyah) islands |
|
6038
|
|
|
* Misclosure between Muscat and Salalah less than .5 meters with differences from of up to 5 meters from old Fahud |
|
6039
|
|
|
* Datum. The PHD93 adjustment was initially known as the Spine. Replaces Fahud Vertical Datum (code 5124) from |
|
6040
|
|
|
* 1993. |
|
6041
|
|
|
*/ |
|
6042
|
|
|
public const EPSG_PDO_HEIGHT_DATUM_1993 = 'urn:ogc:def:datum:EPSG::5123'; |
|
6043
|
|
|
|
|
6044
|
|
|
/** |
|
6045
|
|
|
* PDO Survey Datum 1993 |
|
6046
|
|
|
* Type: Geodetic |
|
6047
|
|
|
* Extent: Oman - onshore. Includes Musandam and the Kuria Muria (Al Hallaniyah) islands |
|
6048
|
|
|
* Adjustment best fitted to Fahud network. |
|
6049
|
|
|
* Replaces Fahud datum (code 6232). Maximum differences to Fahud adjustment are 20 metres. |
|
6050
|
|
|
*/ |
|
6051
|
|
|
public const EPSG_PDO_SURVEY_DATUM_1993 = 'urn:ogc:def:datum:EPSG::6134'; |
|
6052
|
|
|
|
|
6053
|
|
|
/** |
|
6054
|
|
|
* PNG08 |
|
6055
|
|
|
* Type: Vertical |
|
6056
|
|
|
* Extent: Papua New Guinea - between 0°N and 12°S and 140°E and 158°E |
|
6057
|
|
|
* Mean sea level at 8 tide gauges around PNG, defined through application of PNG08 geoid model (transformation |
|
6058
|
|
|
* code 7655) to PNG94 (CRS code 5545). |
|
6059
|
|
|
*/ |
|
6060
|
|
|
public const EPSG_PNG08 = 'urn:ogc:def:datum:EPSG::1149'; |
|
6061
|
|
|
|
|
6062
|
|
|
/** |
|
6063
|
|
|
* Palestine 1923 |
|
6064
|
|
|
* Type: Geodetic |
|
6065
|
|
|
* Extent: Israel - onshore; Jordan; Palestine Territory - onshore |
|
6066
|
|
|
* Fundamental point: Point 82'M Jerusalem. Latitude: 31°44' 2.749"N, longitude: 35°12'43.490"E (of Greenwich). |
|
6067
|
|
|
*/ |
|
6068
|
|
|
public const EPSG_PALESTINE_1923 = 'urn:ogc:def:datum:EPSG::6281'; |
|
6069
|
|
|
|
|
6070
|
|
|
/** |
|
6071
|
|
|
* Pampa del Castillo |
|
6072
|
|
|
* Type: Geodetic |
|
6073
|
|
|
* Extent: Argentina - Chibut province south of approximately 42°30'S and Santa Cruz province north of |
|
6074
|
|
|
* approximately 50°20'S |
|
6075
|
|
|
* Replaced by Campo Inchauspe (code 6221) for topographic mapping, use for oil exploration and production in Golfo |
|
6076
|
|
|
* San Jorge basin (44°S to 47.5°S) continues. |
|
6077
|
|
|
*/ |
|
6078
|
|
|
public const EPSG_PAMPA_DEL_CASTILLO = 'urn:ogc:def:datum:EPSG::6161'; |
|
6079
|
|
|
|
|
6080
|
|
|
/** |
|
6081
|
|
|
* Panama-Colon 1911 |
|
6082
|
|
|
* Type: Geodetic |
|
6083
|
|
|
* Extent: Panama - onshore |
|
6084
|
|
|
* Fundamental point: Balboa Hill. Latitude: 09°04'57.637"N, longtitude: 79°43'50.313"W. |
|
6085
|
|
|
* Reports of the existence of an Ancon datum are probably erroneous, considering that the origin of the |
|
6086
|
|
|
* Panamá-Colón Datum of 1911 is at Balboa Hill and the access road up the hill is from the town of Ancon, Canal |
|
6087
|
|
|
* Zone. |
|
6088
|
|
|
*/ |
|
6089
|
|
|
public const EPSG_PANAMA_COLON_1911 = 'urn:ogc:def:datum:EPSG::1072'; |
|
6090
|
|
|
|
|
6091
|
|
|
/** |
|
6092
|
|
|
* Papua New Guinea Geodetic Datum 1994 |
|
6093
|
|
|
* Type: Geodetic |
|
6094
|
|
|
* Extent: Papua New Guinea. Includes Bismark archipelago, Louisade archipelago, Admiralty Islands, d'Entrecasteaux |
|
6095
|
|
|
* Islands, northern Solomon Islands, Trobriand Islands, New Britain, New Ireland, Woodlark, and associated islands |
|
6096
|
|
|
* ITRF92 at epoch 1994.0. |
|
6097
|
|
|
* Adopted 1996. Coincident with WGS 84 in 1994 but rapidly divergent due to significant tectonic motion in PNG. |
|
6098
|
|
|
*/ |
|
6099
|
|
|
public const EPSG_PAPUA_NEW_GUINEA_GEODETIC_DATUM_1994 = 'urn:ogc:def:datum:EPSG::1076'; |
|
6100
|
|
|
|
|
6101
|
|
|
/** |
|
6102
|
|
|
* Parametry Zemli 1990 |
|
6103
|
|
|
* Type: Dynamic geodetic |
|
6104
|
|
|
* Extent: World |
|
6105
|
|
|
* Defined through coordinates of stations of the satellite geodetic network (SGN) in Russia at epoch 1990.0. |
|
6106
|
|
|
* Replaced by PZ-90.02 from 2007-09-20. |
|
6107
|
|
|
*/ |
|
6108
|
|
|
public const EPSG_PARAMETRY_ZEMLI_1990 = 'urn:ogc:def:datum:EPSG::6740'; |
|
6109
|
|
|
|
|
6110
|
|
|
/** |
|
6111
|
|
|
* Parametry Zemli 1990.02 |
|
6112
|
|
|
* Type: Dynamic geodetic |
|
6113
|
|
|
* Extent: World |
|
6114
|
|
|
* Defined through coordinates of 33 stations of the satellite geodetic network (SGN) in Russia and Antarctica |
|
6115
|
|
|
* adjusted to a subset of 14 IGS stations in Russia at epoch 2002.0. The IGS station coordinates are considered to |
|
6116
|
|
|
* be equivalent to ITRF2000. |
|
6117
|
|
|
* Replaces PZ-90 from 2007-09-20. Replaced by PZ-90.11 from 2014-01-15. |
|
6118
|
|
|
*/ |
|
6119
|
|
|
public const EPSG_PARAMETRY_ZEMLI_1990_02 = 'urn:ogc:def:datum:EPSG::1157'; |
|
6120
|
|
|
|
|
6121
|
|
|
/** |
|
6122
|
|
|
* Parametry Zemli 1990.11 |
|
6123
|
|
|
* Type: Dynamic geodetic |
|
6124
|
|
|
* Extent: World |
|
6125
|
|
|
* Defined through coordinates of 33 stations of the satellite geodetic network (SGN) in Russia and Antarctica |
|
6126
|
|
|
* adjusted to a subset of 14 IGS stations in Russia at epoch 2010.0. The IGS station coordinates are considered to |
|
6127
|
|
|
* be equivalent to ITRF2008. |
|
6128
|
|
|
* Replaces PZ-90.02 from 2014-01-15. |
|
6129
|
|
|
*/ |
|
6130
|
|
|
public const EPSG_PARAMETRY_ZEMLI_1990_11 = 'urn:ogc:def:datum:EPSG::1158'; |
|
6131
|
|
|
|
|
6132
|
|
|
/** |
|
6133
|
|
|
* Peru96 |
|
6134
|
|
|
* Type: Geodetic |
|
6135
|
|
|
* Extent: Peru |
|
6136
|
|
|
* Densification of SIRGAS95 network (ITRF94 at epoch 1995.4) in Peru, consisting of 47 passive geodetic stations |
|
6137
|
|
|
* and 3 continuous recording GPS stations. |
|
6138
|
|
|
* Densification of SIRGAS 1995 within Peru. Replaces PSAD56 (datum code 6248) in Peru. |
|
6139
|
|
|
*/ |
|
6140
|
|
|
public const EPSG_PERU96 = 'urn:ogc:def:datum:EPSG::1067'; |
|
6141
|
|
|
|
|
6142
|
|
|
/** |
|
6143
|
|
|
* Petrels 1972 |
|
6144
|
|
|
* Type: Geodetic |
|
6145
|
|
|
* Extent: Antarctica - Adelie Land - Petrels island |
|
6146
|
|
|
* Fundamental point: Astro station DZ on Ile de Petrels. Latitude: 66°40'00"S, longitude: 140°00'46"E (of |
|
6147
|
|
|
* Greenwich). |
|
6148
|
|
|
*/ |
|
6149
|
|
|
public const EPSG_PETRELS_1972 = 'urn:ogc:def:datum:EPSG::6636'; |
|
6150
|
|
|
|
|
6151
|
|
|
/** |
|
6152
|
|
|
* Philippine Reference System 1992 |
|
6153
|
|
|
* Type: Geodetic |
|
6154
|
|
|
* Extent: Philippines |
|
6155
|
|
|
* Fundamental point: Balacan. Latitude: 13°33'41.000"N, longitude: 121°52'03.000"E (of Greenwich), |
|
6156
|
|
|
* geoid-ellipsoid separation 0.34m. |
|
6157
|
|
|
* Replaces Luzon 1911 datum (code 6253). |
|
6158
|
|
|
*/ |
|
6159
|
|
|
public const EPSG_PHILIPPINE_REFERENCE_SYSTEM_1992 = 'urn:ogc:def:datum:EPSG::6683'; |
|
6160
|
|
|
|
|
6161
|
|
|
/** |
|
6162
|
|
|
* Phoenix Islands 1966 |
|
6163
|
|
|
* Type: Geodetic |
|
6164
|
|
|
* Extent: Kiribati - Phoenix Islands: Kanton, Orona, McKean Atoll, Birnie Atoll, Phoenix Seamounts. |
|
6165
|
|
|
*/ |
|
6166
|
|
|
public const EPSG_PHOENIX_ISLANDS_1966 = 'urn:ogc:def:datum:EPSG::6716'; |
|
6167
|
|
|
|
|
6168
|
|
|
/** |
|
6169
|
|
|
* Pico de las Nieves 1968 |
|
6170
|
|
|
* Type: Geodetic |
|
6171
|
|
|
* Extent: Spain - Canary Islands onshore |
|
6172
|
|
|
* Pico de las Nieves mountain, Gran Canaria. The fundamental point is a different station to that for PN84. |
|
6173
|
|
|
* Replaced by PN84 only on western islands (El Hierro, La Gomera, La Palma and Tenerife). Both PN68 and PN84 |
|
6174
|
|
|
* replaced by REGCAN95. |
|
6175
|
|
|
*/ |
|
6176
|
|
|
public const EPSG_PICO_DE_LAS_NIEVES_1968 = 'urn:ogc:def:datum:EPSG::1286'; |
|
6177
|
|
|
|
|
6178
|
|
|
/** |
|
6179
|
|
|
* Pico de las Nieves 1984 |
|
6180
|
|
|
* Type: Geodetic |
|
6181
|
|
|
* Extent: Spain - Canary Islands - El Hierro, La Gomera, La Palma and Tenerife - onshore |
|
6182
|
|
|
* Pico de las Nieves mountain, Gran Canaria. The fundamental point is a different station to that for PN68. |
|
6183
|
|
|
* Replaces Pico de las Nieves 1968 (PN68) only on western islands (El Hierro, La Gomera, La Palma and Tenerife). |
|
6184
|
|
|
* Replaced by REGCAN95. |
|
6185
|
|
|
*/ |
|
6186
|
|
|
public const EPSG_PICO_DE_LAS_NIEVES_1984 = 'urn:ogc:def:datum:EPSG::6728'; |
|
6187
|
|
|
|
|
6188
|
|
|
/** |
|
6189
|
|
|
* Piraeus Harbour 1986 |
|
6190
|
|
|
* Type: Vertical |
|
6191
|
|
|
* Extent: Greece - onshore |
|
6192
|
|
|
* MSL determined during 1986. |
|
6193
|
|
|
*/ |
|
6194
|
|
|
public const EPSG_PIRAEUS_HARBOUR_1986 = 'urn:ogc:def:datum:EPSG::5115'; |
|
6195
|
|
|
|
|
6196
|
|
|
/** |
|
6197
|
|
|
* Pitcairn 1967 |
|
6198
|
|
|
* Type: Geodetic |
|
6199
|
|
|
* Extent: Pitcairn - Pitcairn Island |
|
6200
|
|
|
* Fundamental point: Pitcairn Astro. Latitude: 25°04'06.87"S, longitude: 130°06'47.83"W (of Greenwich). |
|
6201
|
|
|
* Replaced by Pitcairn 2006. |
|
6202
|
|
|
*/ |
|
6203
|
|
|
public const EPSG_PITCAIRN_1967 = 'urn:ogc:def:datum:EPSG::6729'; |
|
6204
|
|
|
|
|
6205
|
|
|
/** |
|
6206
|
|
|
* Pitcairn 2006 |
|
6207
|
|
|
* Type: Geodetic |
|
6208
|
|
|
* Extent: Pitcairn - Pitcairn Island |
|
6209
|
|
|
* Fundamental point: Pitcairn Astro. Latitude: 25°04'06.7894"S, longitude: 130°06'46.6816"W (of Greenwich), |
|
6210
|
|
|
* derived by single point GPS oberservations. |
|
6211
|
|
|
* Replaces Pitcairn 1967. |
|
6212
|
|
|
*/ |
|
6213
|
|
|
public const EPSG_PITCAIRN_2006 = 'urn:ogc:def:datum:EPSG::6763'; |
|
6214
|
|
|
|
|
6215
|
|
|
/** |
|
6216
|
|
|
* Point 58 |
|
6217
|
|
|
* Type: Geodetic |
|
6218
|
|
|
* Extent: Senegal - central, Mali - southwest, Burkina Faso - central, Niger - southwest, Nigeria - north, Chad - |
|
6219
|
|
|
* central. All in proximity to the parallel of latitude of 12°N |
|
6220
|
|
|
* Fundamental point: Point 58. Latitude: 12°52'44.045"N, longitude: 3°58'37.040"E (of Greenwich). |
|
6221
|
|
|
* Used as the basis for computation of the 12th Parallel traverse conducted 1966-70 from Senegal to Chad and |
|
6222
|
|
|
* connecting to the Blue Nile 1958 (Adindan) triangulation in Sudan. |
|
6223
|
|
|
*/ |
|
6224
|
|
|
public const EPSG_POINT_58 = 'urn:ogc:def:datum:EPSG::6620'; |
|
6225
|
|
|
|
|
6226
|
|
|
/** |
|
6227
|
|
|
* Pointe Geologie Perroud 1950 |
|
6228
|
|
|
* Type: Geodetic |
|
6229
|
|
|
* Extent: Antarctica - Adelie Land - coastal area between 136°E and 142°E |
|
6230
|
|
|
* Fundamental point: Astro station G.0 on Pointe Geologie. Latitude: 66°39'30"S, longitude: 140°01'00"E (of |
|
6231
|
|
|
* Greenwich). |
|
6232
|
|
|
*/ |
|
6233
|
|
|
public const EPSG_POINTE_GEOLOGIE_PERROUD_1950 = 'urn:ogc:def:datum:EPSG::6637'; |
|
6234
|
|
|
|
|
6235
|
|
|
/** |
|
6236
|
|
|
* Ponta Delgada |
|
6237
|
|
|
* Type: Vertical |
|
6238
|
|
|
* Extent: Portugal - eastern Azores - Sao Miguel island onshore |
|
6239
|
|
|
* Mean Sea Level during 1991 at Ponta Delgada. |
|
6240
|
|
|
* Orthometric heights. |
|
6241
|
|
|
*/ |
|
6242
|
|
|
public const EPSG_PONTA_DELGADA = 'urn:ogc:def:datum:EPSG::1110'; |
|
6243
|
|
|
|
|
6244
|
|
|
/** |
|
6245
|
|
|
* Poolbeg |
|
6246
|
|
|
* Type: Vertical |
|
6247
|
|
|
* Extent: Ireland - onshore. UK - Northern Ireland (Ulster) - onshore |
|
6248
|
|
|
* Low water mark of the spring tide on the 8 April 1837 at Poolbeg Lighthouse, Dublin. |
|
6249
|
|
|
* Topographic mapping before 1956 in Northern Ireland and 1970 in the Republic of Ireland. Replaced by Belfast |
|
6250
|
|
|
* Lough and Malin Head (datum codes 5130-31). |
|
6251
|
|
|
*/ |
|
6252
|
|
|
public const EPSG_POOLBEG = 'urn:ogc:def:datum:EPSG::5152'; |
|
6253
|
|
|
|
|
6254
|
|
|
/** |
|
6255
|
|
|
* Port Moresby 1996 |
|
6256
|
|
|
* Type: Vertical |
|
6257
|
|
|
* Extent: Papua New Guinea - onshore - Gulf province east of 144°24'E, Central province and National Capital |
|
6258
|
|
|
* District |
|
6259
|
|
|
* BM198 (adjacent to the Port Moresby tide gauge) height of 3.02 above MSL as determined by CSIRO in 1990. |
|
6260
|
|
|
* Propagated through bilinear interpolation of EGM96 geoid model (transformation code 10084) reduced by offset of |
|
6261
|
|
|
* -1.58m. |
|
6262
|
|
|
* Offset has been determined by static GNSS estimation of ellipsoid height of BM198. |
|
6263
|
|
|
*/ |
|
6264
|
|
|
public const EPSG_PORT_MORESBY_1996 = 'urn:ogc:def:datum:EPSG::1171'; |
|
6265
|
|
|
|
|
6266
|
|
|
/** |
|
6267
|
|
|
* Port Moresby 2008 |
|
6268
|
|
|
* Type: Vertical |
|
6269
|
|
|
* Extent: Papua New Guinea - onshore - Gulf province east of 144°24'E, Central province and National Capital |
|
6270
|
|
|
* District |
|
6271
|
|
|
* BM198 (adjacent to the Port Moresby tide gauge) height of 3.02 above MSL as determined by CSIRO in 1990. |
|
6272
|
|
|
* Propagated through bilinear interpolation of EGM2008 geoid model (transformation code 3858 or 3859) reduced by |
|
6273
|
|
|
* offset of -0.93m. |
|
6274
|
|
|
* Offset has been determined by static GNSS estimation of ellipsoid height of BM198 validated to a precision of 10 |
|
6275
|
|
|
* cm by short period tidal observations at Kerema wharf in 2010. |
|
6276
|
|
|
*/ |
|
6277
|
|
|
public const EPSG_PORT_MORESBY_2008 = 'urn:ogc:def:datum:EPSG::1172'; |
|
6278
|
|
|
|
|
6279
|
|
|
/** |
|
6280
|
|
|
* Porto Santo 1936 |
|
6281
|
|
|
* Type: Geodetic |
|
6282
|
|
|
* Extent: Portugal - Madeira, Porto Santo and Desertas islands - onshore |
|
6283
|
|
|
* SE Base on Porto Santo island. |
|
6284
|
|
|
* Replaced by 1995 adjustment (datum code 6663). For Selvagens see Selvagem Grande (code 6616). |
|
6285
|
|
|
*/ |
|
6286
|
|
|
public const EPSG_PORTO_SANTO_1936 = 'urn:ogc:def:datum:EPSG::6615'; |
|
6287
|
|
|
|
|
6288
|
|
|
/** |
|
6289
|
|
|
* Porto Santo 1995 |
|
6290
|
|
|
* Type: Geodetic |
|
6291
|
|
|
* Extent: Portugal - Madeira, Porto Santo and Desertas islands - onshore |
|
6292
|
|
|
* SE Base on Porto Santo island. Origin and orientation constrained to those of the 1936 adjustment. |
|
6293
|
|
|
* Classical and GPS observations. Replaces 1936 adjustment (datum code 6615). For Selvagens see Selvagem Grande |
|
6294
|
|
|
* (datum code 6616). |
|
6295
|
|
|
*/ |
|
6296
|
|
|
public const EPSG_PORTO_SANTO_1995 = 'urn:ogc:def:datum:EPSG::6663'; |
|
6297
|
|
|
|
|
6298
|
|
|
/** |
|
6299
|
|
|
* Posiciones Geodesicas Argentinas 1994 |
|
6300
|
|
|
* Type: Geodetic |
|
6301
|
|
|
* Extent: Argentina |
|
6302
|
|
|
* WGS 84 coordinates at time of survey of a geodetic network of 127 points defining the National Geodetic System |
|
6303
|
|
|
* (Sistema Geodésico Nacional). Surveyed between February and April 1993 and between March and May 1994. |
|
6304
|
|
|
* Adopted as defining the National Geodetic Reference Network from 9th May 1997. Technically, but not legally, |
|
6305
|
|
|
* replaced by POSGAR 98 (datum code 6190) until 15th May 2009 when legally replaced by POSGAR 2007 (datum code |
|
6306
|
|
|
* 1062). |
|
6307
|
|
|
*/ |
|
6308
|
|
|
public const EPSG_POSICIONES_GEODESICAS_ARGENTINAS_1994 = 'urn:ogc:def:datum:EPSG::6694'; |
|
6309
|
|
|
|
|
6310
|
|
|
/** |
|
6311
|
|
|
* Posiciones Geodesicas Argentinas 1998 |
|
6312
|
|
|
* Type: Geodetic |
|
6313
|
|
|
* Extent: Argentina |
|
6314
|
|
|
* A geodetic network of 136 high accuracy surveyed points. Densification of SIRGAS 1995; ITRF94 at epoch 1995.4. |
|
6315
|
|
|
* Replaced POSGAR 1994 (datum code 6694) for technical, but not legal, purposes. Replaced by POSGAR 2007 (datum |
|
6316
|
|
|
* code 1062) from May 2009. |
|
6317
|
|
|
*/ |
|
6318
|
|
|
public const EPSG_POSICIONES_GEODESICAS_ARGENTINAS_1998 = 'urn:ogc:def:datum:EPSG::6190'; |
|
6319
|
|
|
|
|
6320
|
|
|
/** |
|
6321
|
|
|
* Posiciones Geodesicas Argentinas 2007 |
|
6322
|
|
|
* Type: Geodetic |
|
6323
|
|
|
* Extent: Argentina |
|
6324
|
|
|
* Coordinates of the geodetic network of 211 high accuracy surveyed points (178 passive and 33 continuously |
|
6325
|
|
|
* operating) defining the National Geodetic System (Sistema Geodésico Nacional) based on ITRF2005 at epoch |
|
6326
|
|
|
* 2006.632. |
|
6327
|
|
|
* Adopted by order of the Director of the National Geographic Institute on 15th May 2009 as the new National |
|
6328
|
|
|
* Geodetic Reference Frame. Replaces POSGAR 94. |
|
6329
|
|
|
*/ |
|
6330
|
|
|
public const EPSG_POSICIONES_GEODESICAS_ARGENTINAS_2007 = 'urn:ogc:def:datum:EPSG::1062'; |
|
6331
|
|
|
|
|
6332
|
|
|
/** |
|
6333
|
|
|
* Potsdam Datum/83 |
|
6334
|
|
|
* Type: Geodetic |
|
6335
|
|
|
* Extent: Germany - Thuringen |
|
6336
|
|
|
* Fundamental point: Rauenberg. Latitude: 52°27'12.021"N, longitude: 13°22'04.928"E (of Greenwich). This station |
|
6337
|
|
|
* was destroyed in 1910 and the station at Potsdam substituted as the fundamental point. |
|
6338
|
|
|
* PD/83 is the realization of DHDN in Thuringen. It is the resultant of applying a transformation derived at 13 |
|
6339
|
|
|
* points on the border between East and West Germany to Pulkovo 1942/83 points in Thuringen. |
|
6340
|
|
|
*/ |
|
6341
|
|
|
public const EPSG_POTSDAM_DATUM_83 = 'urn:ogc:def:datum:EPSG::6746'; |
|
6342
|
|
|
|
|
6343
|
|
|
/** |
|
6344
|
|
|
* Principe |
|
6345
|
|
|
* Type: Geodetic |
|
6346
|
|
|
* Extent: Sao Tome and Principe - onshore - Principe |
|
6347
|
|
|
* Fundamental point: Morro do Papagaio. Latitude: 1°36'46.87"N, longitude: 7°23'39.65"E (of Greenwich). |
|
6348
|
|
|
*/ |
|
6349
|
|
|
public const EPSG_PRINCIPE = 'urn:ogc:def:datum:EPSG::1046'; |
|
6350
|
|
|
|
|
6351
|
|
|
/** |
|
6352
|
|
|
* Provisional South American Datum 1956 |
|
6353
|
|
|
* Type: Geodetic |
|
6354
|
|
|
* Extent: Aruba - onshore; Bolivia; Bonaire - onshore; Brazil - offshore - Amazon Cone shelf; Chile - onshore |
|
6355
|
|
|
* north of 43°30'S; Curacao - onshore; Ecuador - mainland onshore; Guyana - onshore; Peru - onshore; Venezuela - |
|
6356
|
|
|
* onshore |
|
6357
|
|
|
* Fundamental point: La Canoa. Latitude: 8°34'17.170"N, longitude: 63°51'34.880"W (of Greenwich). |
|
6358
|
|
|
* Same origin as La Canoa datum. |
|
6359
|
|
|
*/ |
|
6360
|
|
|
public const EPSG_PROVISIONAL_SOUTH_AMERICAN_DATUM_1956 = 'urn:ogc:def:datum:EPSG::6248'; |
|
6361
|
|
|
|
|
6362
|
|
|
/** |
|
6363
|
|
|
* Puerto Rico |
|
6364
|
|
|
* Type: Geodetic |
|
6365
|
|
|
* Extent: Puerto Rico, US Virgin Islands and British Virgin Islands - onshore |
|
6366
|
|
|
* Fundamental point: Cardona Island Lighthouse. Latitude:17°57'31.40"N, longitude: 66°38'07.53"W (of Greenwich). |
|
6367
|
|
|
* NADCON conversion program provides transformation from Puerto Rico Datum to NAD83 (original 1986 realization) |
|
6368
|
|
|
* but making the transformation appear to user as if from NAD27. |
|
6369
|
|
|
*/ |
|
6370
|
|
|
public const EPSG_PUERTO_RICO = 'urn:ogc:def:datum:EPSG::6139'; |
|
6371
|
|
|
|
|
6372
|
|
|
/** |
|
6373
|
|
|
* Puerto Rico Vertical Datum of 2002 |
|
6374
|
|
|
* Type: Vertical |
|
6375
|
|
|
* Extent: Puerto Rico - onshore |
|
6376
|
|
|
* Mean sea level at San Juan. Benchmark 9756371 A TIDAL = 1.334m relative to National Tidal Datum Epoch 1960-1978. |
|
6377
|
|
|
* Replaces all earlier vertical datums for Puerto Rico. |
|
6378
|
|
|
*/ |
|
6379
|
|
|
public const EPSG_PUERTO_RICO_VERTICAL_DATUM_OF_2002 = 'urn:ogc:def:datum:EPSG::1123'; |
|
6380
|
|
|
|
|
6381
|
|
|
/** |
|
6382
|
|
|
* Pulkovo 1942 |
|
6383
|
|
|
* Type: Geodetic |
|
6384
|
|
|
* Extent: Armenia; Azerbaijan; Belarus; Estonia - onshore; Georgia - onshore; Kazakhstan; Kyrgyzstan; Latvia - |
|
6385
|
|
|
* onshore; Lithuania - onshore; Moldova; Russia - onshore; Tajikistan; Turkmenistan; Ukraine - onshore; Uzbekistan |
|
6386
|
|
|
* Fundamental point: Pulkovo observatory. Latitude: 59°46'18.550"N, longitude: 30°19'42.090"E (of Greenwich). |
|
6387
|
|
|
*/ |
|
6388
|
|
|
public const EPSG_PULKOVO_1942 = 'urn:ogc:def:datum:EPSG::6284'; |
|
6389
|
|
|
|
|
6390
|
|
|
/** |
|
6391
|
|
|
* Pulkovo 1942(58) |
|
6392
|
|
|
* Type: Geodetic |
|
6393
|
|
|
* Extent: Onshore: Bulgaria, Czechia, Germany (former DDR), Hungary, Poland and Slovakia. Onshore and offshore: |
|
6394
|
|
|
* Albania and Romania |
|
6395
|
|
|
* Fundamental point: Pulkovo observatory. Latitude: 59°46'18.550"N, longitude: 30°19'42.090"E (of Greenwich). |
|
6396
|
|
|
* 1956 international adjustment of Uniform Astro-Geodetic Network of countries of central and eastern Europe. |
|
6397
|
|
|
* Locally densified during 1957 and 1958. |
|
6398
|
|
|
*/ |
|
6399
|
|
|
public const EPSG_PULKOVO_1942_58 = 'urn:ogc:def:datum:EPSG::6179'; |
|
6400
|
|
|
|
|
6401
|
|
|
/** |
|
6402
|
|
|
* Pulkovo 1942(83) |
|
6403
|
|
|
* Type: Geodetic |
|
6404
|
|
|
* Extent: Onshore Bulgaria, Czechia, Germany (former DDR), Hungary and Slovakia |
|
6405
|
|
|
* Fundamental point: Pulkovo observatory. Latitude: 59°46'18.550"N, longitude: 30°19'42.090"E (of Greenwich). |
|
6406
|
|
|
* 1983 international adjustment of Uniform Astro-Geodetic Network of countries of central and eastern Europe. |
|
6407
|
|
|
*/ |
|
6408
|
|
|
public const EPSG_PULKOVO_1942_83 = 'urn:ogc:def:datum:EPSG::6178'; |
|
6409
|
|
|
|
|
6410
|
|
|
/** |
|
6411
|
|
|
* Pulkovo 1995 |
|
6412
|
|
|
* Type: Geodetic |
|
6413
|
|
|
* Extent: Russia |
|
6414
|
|
|
* Fundamental point: Pulkovo observatory. Latitude: 59°46'15.359"N, longitude: 30°19'28.318"E (of Greenwich). |
|
6415
|
|
|
*/ |
|
6416
|
|
|
public const EPSG_PULKOVO_1995 = 'urn:ogc:def:datum:EPSG::6200'; |
|
6417
|
|
|
|
|
6418
|
|
|
/** |
|
6419
|
|
|
* Qatar 1948 |
|
6420
|
|
|
* Type: Geodetic |
|
6421
|
|
|
* Extent: Qatar - onshore |
|
6422
|
|
|
* Fundamental point: Sokey 0 M. Latitude: 25°22'56.500"N, longitude: 50°45'41.000"E (of Greenwich). |
|
6423
|
|
|
*/ |
|
6424
|
|
|
public const EPSG_QATAR_1948 = 'urn:ogc:def:datum:EPSG::6286'; |
|
6425
|
|
|
|
|
6426
|
|
|
/** |
|
6427
|
|
|
* Qatar 1974 |
|
6428
|
|
|
* Type: Geodetic |
|
6429
|
|
|
* Extent: Qatar |
|
6430
|
|
|
* Fundamental point: Station G3. |
|
6431
|
|
|
*/ |
|
6432
|
|
|
public const EPSG_QATAR_1974 = 'urn:ogc:def:datum:EPSG::6285'; |
|
6433
|
|
|
|
|
6434
|
|
|
/** |
|
6435
|
|
|
* Qatar National Datum 1995 |
|
6436
|
|
|
* Type: Geodetic |
|
6437
|
|
|
* Extent: Qatar - onshore |
|
6438
|
|
|
* Defined by transformation from WGS 84 - see coordinate operation code 1840. |
|
6439
|
|
|
*/ |
|
6440
|
|
|
public const EPSG_QATAR_NATIONAL_DATUM_1995 = 'urn:ogc:def:datum:EPSG::6614'; |
|
6441
|
|
|
|
|
6442
|
|
|
/** |
|
6443
|
|
|
* Qornoq 1927 |
|
6444
|
|
|
* Type: Geodetic |
|
6445
|
|
|
* Extent: Greenland - west coast onshore |
|
6446
|
|
|
* Fundamental point: Station 7008. Latitude: 64°31'06.27"N, longitude: 51°12'24.86"W (of Greenwich). |
|
6447
|
|
|
*/ |
|
6448
|
|
|
public const EPSG_QORNOQ_1927 = 'urn:ogc:def:datum:EPSG::6194'; |
|
6449
|
|
|
|
|
6450
|
|
|
/** |
|
6451
|
|
|
* RBEPP12 Intermediate Reference Frame |
|
6452
|
|
|
* Type: Geodetic |
|
6453
|
|
|
* Extent: UK - on or related to the rail route from Reading via Newbury to Penzance |
|
6454
|
|
|
* Defined through the application of the RBEPP12 NTv2 transformation to ETRS89 as realized through OSNet v2009 |
|
6455
|
|
|
* CORS. |
|
6456
|
|
|
* Created in 2022 to support intermediate CRS RBEPP12-IRF in the emulation of the RBEPP12 Snake map projection. |
|
6457
|
|
|
*/ |
|
6458
|
|
|
public const EPSG_RBEPP12_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1352'; |
|
6459
|
|
|
|
|
6460
|
|
|
/** |
|
6461
|
|
|
* Raiatea SAU 2001 |
|
6462
|
|
|
* Type: Vertical |
|
6463
|
|
|
* Extent: French Polynesia - Society Islands - Raiatea |
|
6464
|
|
|
* Fundamental benchmark: RN1 |
|
6465
|
|
|
* Included as part of NGPF - see datum code 5195. |
|
6466
|
|
|
*/ |
|
6467
|
|
|
public const EPSG_RAIATEA_SAU_2001 = 'urn:ogc:def:datum:EPSG::5198'; |
|
6468
|
|
|
|
|
6469
|
|
|
/** |
|
6470
|
|
|
* Ras Ghumays |
|
6471
|
|
|
* Type: Vertical |
|
6472
|
|
|
* Extent: UAE - Abu Dhabi onshore |
|
6473
|
|
|
* Mean Sea Level at Ras Ghumays 1978 and 1979. |
|
6474
|
|
|
* Orthometric heights. |
|
6475
|
|
|
*/ |
|
6476
|
|
|
public const EPSG_RAS_GHUMAYS = 'urn:ogc:def:datum:EPSG::1146'; |
|
6477
|
|
|
|
|
6478
|
|
|
/** |
|
6479
|
|
|
* Rassadiran |
|
6480
|
|
|
* Type: Geodetic |
|
6481
|
|
|
* Extent: Iran - Taheri refinery site |
|
6482
|
|
|
* Fundamental point: Total1. Latitude: 27°31'07.784"N, longitude: 52°36'12.741"E (of Greenwich). |
|
6483
|
|
|
*/ |
|
6484
|
|
|
public const EPSG_RASSADIRAN = 'urn:ogc:def:datum:EPSG::6153'; |
|
6485
|
|
|
|
|
6486
|
|
|
/** |
|
6487
|
|
|
* Rauenberg Datum/83 |
|
6488
|
|
|
* Type: Geodetic |
|
6489
|
|
|
* Extent: Germany - Sachsen |
|
6490
|
|
|
* Fundamental point: Rauenberg. Latitude: 52°27'12.021"N, longitude: 13°22'04.928"E (of Greenwich). This station |
|
6491
|
|
|
* was destroyed in 1910 and the station at Potsdam substituted as the fundamental point. |
|
6492
|
|
|
* RD/83 is the realization of DHDN in Saxony. It is the resultant of applying a transformation derived at 106 |
|
6493
|
|
|
* points throughout former East Germany to Pulkovo 1942/83 points in Saxony. |
|
6494
|
|
|
*/ |
|
6495
|
|
|
public const EPSG_RAUENBERG_DATUM_83 = 'urn:ogc:def:datum:EPSG::6745'; |
|
6496
|
|
|
|
|
6497
|
|
|
/** |
|
6498
|
|
|
* Red Geodesica Para Mineria en Chile |
|
6499
|
|
|
* Type: Dynamic geodetic |
|
6500
|
|
|
* Extent: Chile. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y Gomez |
|
6501
|
|
|
* Realized through 26 stations in the IGS (SIRGAS-CON) active reference station network in Chile. |
|
6502
|
|
|
*/ |
|
6503
|
|
|
public const EPSG_RED_GEODESICA_PARA_MINERIA_EN_CHILE = 'urn:ogc:def:datum:EPSG::1304'; |
|
6504
|
|
|
|
|
6505
|
|
|
/** |
|
6506
|
|
|
* Red Geodesica Venezolana |
|
6507
|
|
|
* Type: Geodetic |
|
6508
|
|
|
* Extent: Venezuela |
|
6509
|
|
|
* Realised by a frame of 67 stations observed in 1995 as a densification of the SIRGAS campaign and adjusted in |
|
6510
|
|
|
* the ITRF94 at epoch 1995.4. |
|
6511
|
|
|
*/ |
|
6512
|
|
|
public const EPSG_RED_GEODESICA_VENEZOLANA = 'urn:ogc:def:datum:EPSG::6189'; |
|
6513
|
|
|
|
|
6514
|
|
|
/** |
|
6515
|
|
|
* Red Geodesica de Canarias 1995 |
|
6516
|
|
|
* Type: Geodetic |
|
6517
|
|
|
* Extent: Spain - Canary Islands |
|
6518
|
|
|
* ITRF93 at epoch 1994.9 at VLBI station INTA at the Canary Spatial Centre (CEC) at Maspalomas on Grand Canary. |
|
6519
|
|
|
* Replaces Pico de las Nieves 1968 (PN68) and Pico de las Nieves 1984 (PN84). |
|
6520
|
|
|
*/ |
|
6521
|
|
|
public const EPSG_RED_GEODESICA_DE_CANARIAS_1995 = 'urn:ogc:def:datum:EPSG::1035'; |
|
6522
|
|
|
|
|
6523
|
|
|
/** |
|
6524
|
|
|
* Reference System de Angola 2013 |
|
6525
|
|
|
* Type: Geodetic |
|
6526
|
|
|
* Extent: Angola |
|
6527
|
|
|
* Network of 18 stations throughout Angola referenced to ITRF2008 @ 2010.90. |
|
6528
|
|
|
* Established through daily PPP solutions in GPS week G1610. |
|
6529
|
|
|
*/ |
|
6530
|
|
|
public const EPSG_REFERENCE_SYSTEM_DE_ANGOLA_2013 = 'urn:ogc:def:datum:EPSG::1220'; |
|
6531
|
|
|
|
|
6532
|
|
|
/** |
|
6533
|
|
|
* Reseau Geodesique Francais 1993 v1 |
|
6534
|
|
|
* Type: Geodetic |
|
6535
|
|
|
* Extent: France, mainland and Corsica (France métropolitaine including Corsica) |
|
6536
|
|
|
* Coincident with ETRS89 at epoch 1993.0. Derived from long-term GNSS observations at 23 points aligned to ETRF93. |
|
6537
|
|
|
* @ 1993.0 through fundamental points at Grasse, Toulouse and Brest. Network supplemented in 1994 and 1995 by |
|
6538
|
|
|
* approx. 1000 additional stations. |
|
6539
|
|
|
* RGF93 v1 is a realization of ETRS89. Replaced by RGF93 v2 (datum code 1312) from 2010-06-18. |
|
6540
|
|
|
*/ |
|
6541
|
|
|
public const EPSG_RESEAU_GEODESIQUE_FRANCAIS_1993_V1 = 'urn:ogc:def:datum:EPSG::6171'; |
|
6542
|
|
|
|
|
6543
|
|
|
/** |
|
6544
|
|
|
* Reseau Geodesique Francais 1993 v2 |
|
6545
|
|
|
* Type: Geodetic |
|
6546
|
|
|
* Extent: France, mainland and Corsica (France métropolitaine including Corsica) |
|
6547
|
|
|
* Aligned with ETRF2000 at epoch 2009.0. Based on the French GNSS permanent network (RGP) from 1998 to 2009, and |
|
6548
|
|
|
* the re-observation of the geodetic points of the French Reference Network (RRF) and French Base Network |
|
6549
|
|
|
* (RBF) from 2000 to 2011. |
|
6550
|
|
|
* RGF93 v2 is a realization of ETRS89. Replaces RGF93 v1 (datum code 6171) from 2010-06-18. Replaced by RGF93 v2b |
|
6551
|
|
|
* (datum code 1313) from 2021-01-05. |
|
6552
|
|
|
*/ |
|
6553
|
|
|
public const EPSG_RESEAU_GEODESIQUE_FRANCAIS_1993_V2 = 'urn:ogc:def:datum:EPSG::1312'; |
|
6554
|
|
|
|
|
6555
|
|
|
/** |
|
6556
|
|
|
* Reseau Geodesique Francais 1993 v2b |
|
6557
|
|
|
* Type: Geodetic |
|
6558
|
|
|
* Extent: France, mainland and Corsica (France métropolitaine including Corsica) |
|
6559
|
|
|
* Aligned with ETRF2000 at epoch 2019.0. Derived through reprocessing of the French GNSS permanent network (RGP) |
|
6560
|
|
|
* in IGS14. |
|
6561
|
|
|
* RGF93 v2b is a realization of ETRS89. Third realization of RGF93. Replaces RGF93 v2 (datum code 1312) from |
|
6562
|
|
|
* 2021-01-05. |
|
6563
|
|
|
*/ |
|
6564
|
|
|
public const EPSG_RESEAU_GEODESIQUE_FRANCAIS_1993_V2B = 'urn:ogc:def:datum:EPSG::1313'; |
|
6565
|
|
|
|
|
6566
|
|
|
/** |
|
6567
|
|
|
* Reseau Geodesique Francais Guyane 1995 |
|
6568
|
|
|
* Type: Geodetic |
|
6569
|
|
|
* Extent: French Guiana |
|
6570
|
|
|
* ITRF93 at epoch 1995.0 |
|
6571
|
|
|
* Replaces CSG67 (datum code 6623). |
|
6572
|
|
|
*/ |
|
6573
|
|
|
public const EPSG_RESEAU_GEODESIQUE_FRANCAIS_GUYANE_1995 = 'urn:ogc:def:datum:EPSG::6624'; |
|
6574
|
|
|
|
|
6575
|
|
|
/** |
|
6576
|
|
|
* Reseau Geodesique de Mayotte 2004 |
|
6577
|
|
|
* Type: Geodetic |
|
6578
|
|
|
* Extent: Mayotte |
|
6579
|
|
|
* ITRF2000 at epoch 2004.0 |
|
6580
|
|
|
* Replaces Combani 1950 (datum code 6632) except for cadastral purposes. (Cadastre 1997 (datum code 1037) used for |
|
6581
|
|
|
* cadastral purposes). |
|
6582
|
|
|
*/ |
|
6583
|
|
|
public const EPSG_RESEAU_GEODESIQUE_DE_MAYOTTE_2004 = 'urn:ogc:def:datum:EPSG::1036'; |
|
6584
|
|
|
|
|
6585
|
|
|
/** |
|
6586
|
|
|
* Reseau Geodesique de Nouvelle Caledonie 2015 |
|
6587
|
|
|
* Type: Geodetic |
|
6588
|
|
|
* Extent: New Caledonia. Isle de Pins, Loyalty Islands, Huon Islands, Belep archipelago, Chesterfield Islands, and |
|
6589
|
|
|
* Walpole |
|
6590
|
|
|
* Aligned with ITRF2008 at epoch 2015.0. |
|
6591
|
|
|
* Replaces RGNC91-93. |
|
6592
|
|
|
*/ |
|
6593
|
|
|
public const EPSG_RESEAU_GEODESIQUE_DE_NOUVELLE_CALEDONIE_2015 = 'urn:ogc:def:datum:EPSG::1357'; |
|
6594
|
|
|
|
|
6595
|
|
|
/** |
|
6596
|
|
|
* Reseau Geodesique de Nouvelle Caledonie 91-93 |
|
6597
|
|
|
* Type: Geodetic |
|
6598
|
|
|
* Extent: New Caledonia. Isle de Pins, Loyalty Islands, Huon Islands, Belep archipelago, Chesterfield Islands, and |
|
6599
|
|
|
* Walpole |
|
6600
|
|
|
* ITRF90 at epoch 1989.0. |
|
6601
|
|
|
* Replaced by RGNC15 (datum code 1357). |
|
6602
|
|
|
*/ |
|
6603
|
|
|
public const EPSG_RESEAU_GEODESIQUE_DE_NOUVELLE_CALEDONIE_91_93 = 'urn:ogc:def:datum:EPSG::6749'; |
|
6604
|
|
|
|
|
6605
|
|
|
/** |
|
6606
|
|
|
* Reseau Geodesique de Saint Pierre et Miquelon 2006 |
|
6607
|
|
|
* Type: Geodetic |
|
6608
|
|
|
* Extent: St Pierre and Miquelon |
|
6609
|
|
|
* ITRF2000 at epoch 2006.0 |
|
6610
|
|
|
* Replaces Saint Pierre et Miquelon 1950 (datum code 6638). |
|
6611
|
|
|
*/ |
|
6612
|
|
|
public const EPSG_RESEAU_GEODESIQUE_DE_SAINT_PIERRE_ET_MIQUELON_2006 = 'urn:ogc:def:datum:EPSG::1038'; |
|
6613
|
|
|
|
|
6614
|
|
|
/** |
|
6615
|
|
|
* Reseau Geodesique de Wallis et Futuna 1996 |
|
6616
|
|
|
* Type: Geodetic |
|
6617
|
|
|
* Extent: Wallis and Futuna - Uvea, Futuna, and Alofi |
|
6618
|
|
|
* Coincident with ITRF94 at epoch 1993.00. |
|
6619
|
|
|
*/ |
|
6620
|
|
|
public const EPSG_RESEAU_GEODESIQUE_DE_WALLIS_ET_FUTUNA_1996 = 'urn:ogc:def:datum:EPSG::1223'; |
|
6621
|
|
|
|
|
6622
|
|
|
/** |
|
6623
|
|
|
* Reseau Geodesique de la Polynesie Francaise |
|
6624
|
|
|
* Type: Geodetic |
|
6625
|
|
|
* Extent: French Polynesia. Includes Society archipelago, Tuamotu archipelago, Marquesas Islands, Gambier Islands |
|
6626
|
|
|
* and Austral Islands |
|
6627
|
|
|
* ITRF92 at epoch 1993.0. Densification by GPS of the Reference Network of French Polynesia, a coordinate set of |
|
6628
|
|
|
* 13 stations determined through DORIS observations. |
|
6629
|
|
|
* Replaces Tahaa 54 (datum code 6629), IGN 63 Hiva Oa (6689), IGN 72 Nuku Hiva (6630), Maupiti 83 (6692), MHEFO 55 |
|
6630
|
|
|
* (6688), Moorea 87 (6691) and Tahiti 79 (6690). |
|
6631
|
|
|
*/ |
|
6632
|
|
|
public const EPSG_RESEAU_GEODESIQUE_DE_LA_POLYNESIE_FRANCAISE = 'urn:ogc:def:datum:EPSG::6687'; |
|
6633
|
|
|
|
|
6634
|
|
|
/** |
|
6635
|
|
|
* Reseau Geodesique de la RDC 2005 |
|
6636
|
|
|
* Type: Geodetic |
|
6637
|
|
|
* Extent: The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto |
|
6638
|
|
|
* ITRF2000 at epoch 2005.4. |
|
6639
|
|
|
*/ |
|
6640
|
|
|
public const EPSG_RESEAU_GEODESIQUE_DE_LA_RDC_2005 = 'urn:ogc:def:datum:EPSG::1033'; |
|
6641
|
|
|
|
|
6642
|
|
|
/** |
|
6643
|
|
|
* Reseau Geodesique de la Reunion 1992 |
|
6644
|
|
|
* Type: Geodetic |
|
6645
|
|
|
* Extent: Reunion |
|
6646
|
|
|
* ITRF91 at epoch 1993.0 |
|
6647
|
|
|
* Replaces Piton des Neiges (code 6626). |
|
6648
|
|
|
*/ |
|
6649
|
|
|
public const EPSG_RESEAU_GEODESIQUE_DE_LA_REUNION_1992 = 'urn:ogc:def:datum:EPSG::6627'; |
|
6650
|
|
|
|
|
6651
|
|
|
/** |
|
6652
|
|
|
* Reseau Geodesique des Antilles Francaises 2009 |
|
6653
|
|
|
* Type: Geodetic |
|
6654
|
|
|
* Extent: French Antilles - Guadeloupe (including Grande Terre, Basse Terre, Marie Galante, Les Saintes, Iles de |
|
6655
|
|
|
* la Petite Terre, La Desirade); Martinique; St Barthélemy; St Martin |
|
6656
|
|
|
* ITRF2005 at epoch 2009.0 |
|
6657
|
|
|
* Replaces RRAF91 in Martinique and Guadeloupe. |
|
6658
|
|
|
*/ |
|
6659
|
|
|
public const EPSG_RESEAU_GEODESIQUE_DES_ANTILLES_FRANCAISES_2009 = 'urn:ogc:def:datum:EPSG::1073'; |
|
6660
|
|
|
|
|
6661
|
|
|
/** |
|
6662
|
|
|
* Reseau Geodesique des Terres Australes et Antarctiques Francaises 2007 |
|
6663
|
|
|
* Type: Geodetic |
|
6664
|
|
|
* Extent: French Southern Territories: Amsterdam and St Paul, Crozet, Europa and Kerguelen. Antarctica - Adelie |
|
6665
|
|
|
* Land coastal area |
|
6666
|
|
|
* ITRF2005 at epoch 2007.274 |
|
6667
|
|
|
* Replaces IGN 1963-64 on Amsterdam, Saint-Paul 1969 on St Paul, IGN64 on Crozet, MHM 1954 on Europa, IGN 1962 on |
|
6668
|
|
|
* Kerguelen, and Petrels 1972 and Perroud 1950 in Adelie Land. |
|
6669
|
|
|
*/ |
|
6670
|
|
|
public const EPSG_RESEAU_GEODESIQUE_DES_TERRES_AUSTRALES_ET_ANTARCTIQUES_FRANCAISES_2007 = 'urn:ogc:def:datum:EPSG::1113'; |
|
6671
|
|
|
|
|
6672
|
|
|
/** |
|
6673
|
|
|
* Reseau National Belge 1950 |
|
6674
|
|
|
* Type: Geodetic |
|
6675
|
|
|
* Extent: Belgium - onshore |
|
6676
|
|
|
* Fundamental point: Lommel (tower). Latitude: 51°13'47.334"N, longitude: 5°18'49.483"E (of Greenwich). |
|
6677
|
|
|
*/ |
|
6678
|
|
|
public const EPSG_RESEAU_NATIONAL_BELGE_1950 = 'urn:ogc:def:datum:EPSG::6215'; |
|
6679
|
|
|
|
|
6680
|
|
|
/** |
|
6681
|
|
|
* Reseau National Belge 1950 (Brussels) |
|
6682
|
|
|
* Type: Geodetic |
|
6683
|
|
|
* Extent: Belgium - onshore |
|
6684
|
|
|
* Fundamental point: Lommel (tower). Latitude: 51°13'47.334"N, longitude: 0°56'44.773"E (of Brussels). |
|
6685
|
|
|
*/ |
|
6686
|
|
|
public const EPSG_RESEAU_NATIONAL_BELGE_1950_BRUSSELS = 'urn:ogc:def:datum:EPSG::6809'; |
|
6687
|
|
|
|
|
6688
|
|
|
/** |
|
6689
|
|
|
* Reseau National Belge 1972 |
|
6690
|
|
|
* Type: Geodetic |
|
6691
|
|
|
* Extent: Belgium - onshore |
|
6692
|
|
|
* Fundamental point: Uccle observatory. Latitude: 50°47'57.704"N, longitude: 4°21'24.983"E (of Greenwich). |
|
6693
|
|
|
*/ |
|
6694
|
|
|
public const EPSG_RESEAU_NATIONAL_BELGE_1972 = 'urn:ogc:def:datum:EPSG::6313'; |
|
6695
|
|
|
|
|
6696
|
|
|
/** |
|
6697
|
|
|
* Reseau de Reference des Antilles Francaises 1991 |
|
6698
|
|
|
* Type: Geodetic |
|
6699
|
|
|
* Extent: French Antilles - Guadeloupe (including Grande Terre, Basse Terre, Marie Galante, Les Saintes, Iles de |
|
6700
|
|
|
* la Petite Terre, La Desirade); Martinique; St Barthélemy; St Martin |
|
6701
|
|
|
* WGS 84 coordinates of a single station determined during the 1988 Tango mission. |
|
6702
|
|
|
* Replaces Fort Marigot and Sainte Anne (datum codes 6621-22) in Guadeloupe and Fort Desaix (datum code 6625) in |
|
6703
|
|
|
* Martinique. Replaced by Reseau Geodesique des Antilles Francaises 2009 (datum code 1073). |
|
6704
|
|
|
*/ |
|
6705
|
|
|
public const EPSG_RESEAU_DE_REFERENCE_DES_ANTILLES_FRANCAISES_1991 = 'urn:ogc:def:datum:EPSG::1047'; |
|
6706
|
|
|
|
|
6707
|
|
|
/** |
|
6708
|
|
|
* Rete Dinamica Nazionale 2008 |
|
6709
|
|
|
* Type: Geodetic |
|
6710
|
|
|
* Extent: Italy; San Marino, Vatican City State |
|
6711
|
|
|
* Italian densification of ETRS89 realised through network of 99 permanent reference stations in [email protected]. |
|
6712
|
|
|
* Adopted as official Italian reference datum 10/11/2011. Replaces IGM95 (datum code 6670). |
|
6713
|
|
|
*/ |
|
6714
|
|
|
public const EPSG_RETE_DINAMICA_NAZIONALE_2008 = 'urn:ogc:def:datum:EPSG::1132'; |
|
6715
|
|
|
|
|
6716
|
|
|
/** |
|
6717
|
|
|
* Reunion 1947 |
|
6718
|
|
|
* Type: Geodetic |
|
6719
|
|
|
* Extent: Reunion - onshore |
|
6720
|
|
|
* Fundamental point: Piton des Neiges (Borne). Latitude: 21°05'13.119"S, longitude: 55°29'09.193"E (of |
|
6721
|
|
|
* Greenwich). |
|
6722
|
|
|
* Replaced by RGR92 (datum code 6627). |
|
6723
|
|
|
*/ |
|
6724
|
|
|
public const EPSG_REUNION_1947 = 'urn:ogc:def:datum:EPSG::6626'; |
|
6725
|
|
|
|
|
6726
|
|
|
/** |
|
6727
|
|
|
* Reunion 1989 |
|
6728
|
|
|
* Type: Vertical |
|
6729
|
|
|
* Extent: Reunion - onshore |
|
6730
|
|
|
* Mean sea level during part of November 1949 at port of Saint-Pierre. Origin = marker AB-100 with defined |
|
6731
|
|
|
* elevation of 13.808m above msl. |
|
6732
|
|
|
* Orthometric heights. Replaces Reunion IGN58. Value of marker AB-100 retains height from 1958 adjustment. |
|
6733
|
|
|
*/ |
|
6734
|
|
|
public const EPSG_REUNION_1989 = 'urn:ogc:def:datum:EPSG::5156'; |
|
6735
|
|
|
|
|
6736
|
|
|
/** |
|
6737
|
|
|
* Reykjavik 1900 |
|
6738
|
|
|
* Type: Geodetic |
|
6739
|
|
|
* Extent: Iceland - mainland |
|
6740
|
|
|
* Fundamental point: Latitude: 64°08'31.88"N, longitude: 21°55'51.15"W (of Greenwich). |
|
6741
|
|
|
*/ |
|
6742
|
|
|
public const EPSG_REYKJAVIK_1900 = 'urn:ogc:def:datum:EPSG::6657'; |
|
6743
|
|
|
|
|
6744
|
|
|
/** |
|
6745
|
|
|
* Rikets hojdsystem 1900 |
|
6746
|
|
|
* Type: Vertical |
|
6747
|
|
|
* Extent: Sweden - onshore |
|
6748
|
|
|
* Adjustment is referenced to mean sea level at Slussen, Stockholm. |
|
6749
|
|
|
* Realized through the first precise levelling network of 1886-1905. Replaced by RH70. |
|
6750
|
|
|
*/ |
|
6751
|
|
|
public const EPSG_RIKETS_HOJDSYSTEM_1900 = 'urn:ogc:def:datum:EPSG::5209'; |
|
6752
|
|
|
|
|
6753
|
|
|
/** |
|
6754
|
|
|
* Rikets hojdsystem 1970 |
|
6755
|
|
|
* Type: Vertical |
|
6756
|
|
|
* Extent: Sweden - onshore |
|
6757
|
|
|
* Adjustment is referenced to mean high tide at Amsterdams Peil in 1684. To account for land level movements |
|
6758
|
|
|
* caused by isostatic rebound, heights are reduced to epoch 1970.0 using uplift values computed from repeated |
|
6759
|
|
|
* levelling observations. |
|
6760
|
|
|
* Realized through the second precise levelling network of 1951-1967. Uses Normal heights. Replaces RH00. Replaced |
|
6761
|
|
|
* in 2005 by RH2000. |
|
6762
|
|
|
*/ |
|
6763
|
|
|
public const EPSG_RIKETS_HOJDSYSTEM_1970 = 'urn:ogc:def:datum:EPSG::5117'; |
|
6764
|
|
|
|
|
6765
|
|
|
/** |
|
6766
|
|
|
* Rikets hojdsystem 2000 |
|
6767
|
|
|
* Type: Vertical |
|
6768
|
|
|
* Extent: Sweden - onshore |
|
6769
|
|
|
* Adjustment is referenced to mean high tide at Amsterdams Peil in 1684. To account for land level movements |
|
6770
|
|
|
* caused by isostatic rebound, heights are reduced to epoch 2000.0 using values computed from the RH 2000 LU |
|
6771
|
|
|
* (=NKG2005LU) uplift model. |
|
6772
|
|
|
* Realized through the third precise levelling network of 1979-2003. Adopted in 2005, replacing RH70. Uses Normal |
|
6773
|
|
|
* heights. |
|
6774
|
|
|
*/ |
|
6775
|
|
|
public const EPSG_RIKETS_HOJDSYSTEM_2000 = 'urn:ogc:def:datum:EPSG::5208'; |
|
6776
|
|
|
|
|
6777
|
|
|
/** |
|
6778
|
|
|
* Rikets koordinatsystem 1990 |
|
6779
|
|
|
* Type: Geodetic |
|
6780
|
|
|
* Extent: Sweden |
|
6781
|
|
|
* Replaces RT38 adjustment (datum code 6308). |
|
6782
|
|
|
*/ |
|
6783
|
|
|
public const EPSG_RIKETS_KOORDINATSYSTEM_1990 = 'urn:ogc:def:datum:EPSG::6124'; |
|
6784
|
|
|
|
|
6785
|
|
|
/** |
|
6786
|
|
|
* Ross Sea Region Geodetic Datum 2000 |
|
6787
|
|
|
* Type: Geodetic |
|
6788
|
|
|
* Extent: Antarctica - Ross Sea Region - nominally between 160°E and 150°W but includes buffer on eastern |
|
6789
|
|
|
* hemisphere margin to include Transantarctic Mountains |
|
6790
|
|
|
* Based on ITRF96 at epoch 2000.0. |
|
6791
|
|
|
*/ |
|
6792
|
|
|
public const EPSG_ROSS_SEA_REGION_GEODETIC_DATUM_2000 = 'urn:ogc:def:datum:EPSG::6764'; |
|
6793
|
|
|
|
|
6794
|
|
|
/** |
|
6795
|
|
|
* SCM22 Intermediate Reference Frame |
|
6796
|
|
|
* Type: Geodetic |
|
6797
|
|
|
* Extent: UK - on or related to the Scottish central mainline rail route from Motherwell through Perth and |
|
6798
|
|
|
* Pitlochry to Inverness |
|
6799
|
|
|
* Defined through the application of the SCM22 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
6800
|
|
|
* Created in 2022 to support intermediate CRS "SCM22-IRF" in the emulation of the SCM22 Snake map projection. |
|
6801
|
|
|
*/ |
|
6802
|
|
|
public const EPSG_SCM22_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1320'; |
|
6803
|
|
|
|
|
6804
|
|
|
/** |
|
6805
|
|
|
* SIRGAS Continuously Operating Network DGF00P01 |
|
6806
|
|
|
* Type: Dynamic geodetic |
|
6807
|
|
|
* Extent: Latin America - Central America and South America |
|
6808
|
|
|
* Aligned to ITRF97 at epoch 2000.40. Realized by a frame of 31 continuously operating stations using GPS |
|
6809
|
|
|
* observations from June 1996 to February 2000. Velocity model VEMOS2003 used to propagate coordinates to the |
|
6810
|
|
|
* frame reference epoch. |
|
6811
|
|
|
* DGF00P01 is included in ITRF2000 as a regional densification for South America. Replaced by DGF01P01 (datum code |
|
6812
|
|
|
* 1228). |
|
6813
|
|
|
*/ |
|
6814
|
|
|
public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF00P01 = 'urn:ogc:def:datum:EPSG::1227'; |
|
6815
|
|
|
|
|
6816
|
|
|
/** |
|
6817
|
|
|
* SIRGAS Continuously Operating Network DGF01P01 |
|
6818
|
|
|
* Type: Dynamic geodetic |
|
6819
|
|
|
* Extent: Latin America - Central America and South America |
|
6820
|
|
|
* Aligned to ITRF2000 at epoch 2000.00. Realized by a frame of 48 continuously operating stations using GPS |
|
6821
|
|
|
* observations from June 1996 to April 2001. Velocity model VEMOS2003 used to propagate coordinates to the frame |
|
6822
|
|
|
* reference epoch. |
|
6823
|
|
|
* Replaces DGF00P01 (datum code 1227). Replaced by DGF01P02 (datum code 1229). |
|
6824
|
|
|
*/ |
|
6825
|
|
|
public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF01P01 = 'urn:ogc:def:datum:EPSG::1228'; |
|
6826
|
|
|
|
|
6827
|
|
|
/** |
|
6828
|
|
|
* SIRGAS Continuously Operating Network DGF01P02 |
|
6829
|
|
|
* Type: Dynamic geodetic |
|
6830
|
|
|
* Extent: Latin America - Central America and South America |
|
6831
|
|
|
* Aligned to ITRF2000 at epoch 1998.40. Realized by a frame of 49 continuously operating stations using GPS |
|
6832
|
|
|
* observations from June 1996 to October 2001. Velocity model VEMOS2003 used to propagate coordinates to the frame |
|
6833
|
|
|
* reference epoch. |
|
6834
|
|
|
* Replaces DGF01P01 (datum code 1228). Replaced by DGF02P01 (datum code 1230). |
|
6835
|
|
|
*/ |
|
6836
|
|
|
public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF01P02 = 'urn:ogc:def:datum:EPSG::1229'; |
|
6837
|
|
|
|
|
6838
|
|
|
/** |
|
6839
|
|
|
* SIRGAS Continuously Operating Network DGF02P01 |
|
6840
|
|
|
* Type: Dynamic geodetic |
|
6841
|
|
|
* Extent: Latin America - Central America and South America |
|
6842
|
|
|
* Aligned to ITRF2000 at epoch 2000.00. Realized by a frame of 53 continuously operating stations using GPS |
|
6843
|
|
|
* observations from June 1996 to July 2002. Velocity model VEMOS2003 used to propagate coordinates to the frame |
|
6844
|
|
|
* reference epoch. |
|
6845
|
|
|
* Replaces DGF01P02 (datum code 1229). Replaced by DGF04P01 (datum code 1331). |
|
6846
|
|
|
*/ |
|
6847
|
|
|
public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF02P01 = 'urn:ogc:def:datum:EPSG::1230'; |
|
6848
|
|
|
|
|
6849
|
|
|
/** |
|
6850
|
|
|
* SIRGAS Continuously Operating Network DGF04P01 |
|
6851
|
|
|
* Type: Dynamic geodetic |
|
6852
|
|
|
* Extent: Latin America - Central America and South America |
|
6853
|
|
|
* Aligned to ITRF2000 at epoch 2003.00. Realized by a frame of 69 continuously operating stations using GPS |
|
6854
|
|
|
* observations from June 1996 to July 2004. Velocity model VEMOS2003 used to propagate coordinates to the frame |
|
6855
|
|
|
* reference epoch. |
|
6856
|
|
|
* Replaces DGF02P01 (datum code 1230). Replaced by DGF05P01 (datum code 1232). |
|
6857
|
|
|
*/ |
|
6858
|
|
|
public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF04P01 = 'urn:ogc:def:datum:EPSG::1231'; |
|
6859
|
|
|
|
|
6860
|
|
|
/** |
|
6861
|
|
|
* SIRGAS Continuously Operating Network DGF05P01 |
|
6862
|
|
|
* Type: Dynamic geodetic |
|
6863
|
|
|
* Extent: Latin America - Central America and South America |
|
6864
|
|
|
* Aligned to ITRF2000 at epoch 2004.00. Realized by a frame of 95 continuously operating stations using GPS |
|
6865
|
|
|
* observations from June 1996 to September 2005. Velocity model VEMOS2003 used to propagate coordinates to the |
|
6866
|
|
|
* frame reference epoch. |
|
6867
|
|
|
* Replaces DGF04P01 (datum code 1231). Replaced by DGF06P01 (datum code 1233). |
|
6868
|
|
|
*/ |
|
6869
|
|
|
public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF05P01 = 'urn:ogc:def:datum:EPSG::1232'; |
|
6870
|
|
|
|
|
6871
|
|
|
/** |
|
6872
|
|
|
* SIRGAS Continuously Operating Network DGF06P01 |
|
6873
|
|
|
* Type: Dynamic geodetic |
|
6874
|
|
|
* Extent: Latin America - Central America and South America |
|
6875
|
|
|
* Aligned to ITRF2000 at epoch 2004.00. Realized by a frame of 94 continuously operating stations using GPS |
|
6876
|
|
|
* observations from June 1996 to June 2006. Velocity model VEMOS2003 used to propagate coordinates to the frame |
|
6877
|
|
|
* reference epoch. |
|
6878
|
|
|
* Replaces DGF05P01 (datum code 1232). Replaced by DGF07P01 (datum code 1234). |
|
6879
|
|
|
*/ |
|
6880
|
|
|
public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF06P01 = 'urn:ogc:def:datum:EPSG::1233'; |
|
6881
|
|
|
|
|
6882
|
|
|
/** |
|
6883
|
|
|
* SIRGAS Continuously Operating Network DGF07P01 |
|
6884
|
|
|
* Type: Dynamic geodetic |
|
6885
|
|
|
* Extent: Latin America - Central America and South America |
|
6886
|
|
|
* Aligned to IGS05 at epoch 2004.50. Realized by a frame of 106 continuously operating stations using GPS |
|
6887
|
|
|
* observations in 3 periods between December 2001 and October 2007. Velocity model VEMOS2003 used to propagate |
|
6888
|
|
|
* coordinates to the frame reference epoch. |
|
6889
|
|
|
* Replaces DGF06P01 (datum code 1233). Replaced by DGF08P01 (datum code 1235). |
|
6890
|
|
|
*/ |
|
6891
|
|
|
public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF07P01 = 'urn:ogc:def:datum:EPSG::1234'; |
|
6892
|
|
|
|
|
6893
|
|
|
/** |
|
6894
|
|
|
* SIRGAS Continuously Operating Network DGF08P01 |
|
6895
|
|
|
* Type: Dynamic geodetic |
|
6896
|
|
|
* Extent: Latin America - Central America and South America |
|
6897
|
|
|
* Aligned to IGS05 at epoch 2004.50. Realized by a frame of 126 continuously operating stations using GPS |
|
6898
|
|
|
* observations from December 2002 to March 2008. Velocity model VEMOS2003 used to propagate coordinates to the |
|
6899
|
|
|
* frame reference epoch. |
|
6900
|
|
|
* Replaces DGF07P01 (datum code 1234). Replaced by SIR09P01 (datum code 1236). |
|
6901
|
|
|
*/ |
|
6902
|
|
|
public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_DGF08P01 = 'urn:ogc:def:datum:EPSG::1235'; |
|
6903
|
|
|
|
|
6904
|
|
|
/** |
|
6905
|
|
|
* SIRGAS Continuously Operating Network SIR09P01 |
|
6906
|
|
|
* Type: Dynamic geodetic |
|
6907
|
|
|
* Extent: Latin America - Central America and South America |
|
6908
|
|
|
* Aligned to IGS05 at epoch 2005.00. Realized by a frame of 128 continuously operating stations using GPS |
|
6909
|
|
|
* observations from January 2000 to January 2009. Velocity model VEMOS2009 used to propagate coordinates to the |
|
6910
|
|
|
* frame reference epoch. |
|
6911
|
|
|
* Replaces DGF08P01 (datum code 1235). Replaced by SIR10P01 (datum code 1237). |
|
6912
|
|
|
*/ |
|
6913
|
|
|
public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR09P01 = 'urn:ogc:def:datum:EPSG::1236'; |
|
6914
|
|
|
|
|
6915
|
|
|
/** |
|
6916
|
|
|
* SIRGAS Continuously Operating Network SIR10P01 |
|
6917
|
|
|
* Type: Dynamic geodetic |
|
6918
|
|
|
* Extent: Latin America - Central America and South America |
|
6919
|
|
|
* Aligned to ITRF08 at epoch 2005.00. Realized by a frame of 183 continuously operating stations using GPS |
|
6920
|
|
|
* observations from January 2000 to June 2010. Velocity model VEMOS2009 used to propagate coordinates to the frame |
|
6921
|
|
|
* reference epoch. |
|
6922
|
|
|
* Replaces SIR09P01 (datum code 1236). Replaced by SIR11P01 (datum code 1238). |
|
6923
|
|
|
*/ |
|
6924
|
|
|
public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR10P01 = 'urn:ogc:def:datum:EPSG::1237'; |
|
6925
|
|
|
|
|
6926
|
|
|
/** |
|
6927
|
|
|
* SIRGAS Continuously Operating Network SIR11P01 |
|
6928
|
|
|
* Type: Dynamic geodetic |
|
6929
|
|
|
* Extent: Latin America - Central America and South America |
|
6930
|
|
|
* Aligned to ITRF08 at epoch 2005.00. Realized by a frame of 230 continuously operating stations using GPS |
|
6931
|
|
|
* observations from January 2000 to April 2011. Velocity model VEMOS2009 used to propagate coordinates to the |
|
6932
|
|
|
* frame reference epoch. |
|
6933
|
|
|
* Replaces SIR10P01 (datum code 1237). Replaced by SIR13P01 (datum code 1239). Last multi-year solution without |
|
6934
|
|
|
* the effects of the El Maule earthquake in February 2010. |
|
6935
|
|
|
*/ |
|
6936
|
|
|
public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR11P01 = 'urn:ogc:def:datum:EPSG::1238'; |
|
6937
|
|
|
|
|
6938
|
|
|
/** |
|
6939
|
|
|
* SIRGAS Continuously Operating Network SIR13P01 |
|
6940
|
|
|
* Type: Dynamic geodetic |
|
6941
|
|
|
* Extent: Latin America - Central America and South America |
|
6942
|
|
|
* Aligned to IGb08 at epoch 2012.00. Realized by a frame of 108 continuously operating stations using GPS |
|
6943
|
|
|
* observations from April 2010 to June 2013. Velocity model VEMOS2009 used to propagate coordinates to the frame |
|
6944
|
|
|
* reference epoch. |
|
6945
|
|
|
* Replaces SIR11P01 (datum code 1238). Replaced by SIR14P01 (datum code 1240). First multi-year solution after the |
|
6946
|
|
|
* El Maule earthquake of February 2010. |
|
6947
|
|
|
*/ |
|
6948
|
|
|
public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR13P01 = 'urn:ogc:def:datum:EPSG::1239'; |
|
6949
|
|
|
|
|
6950
|
|
|
/** |
|
6951
|
|
|
* SIRGAS Continuously Operating Network SIR14P01 |
|
6952
|
|
|
* Type: Dynamic geodetic |
|
6953
|
|
|
* Extent: Latin America - Central America and South America |
|
6954
|
|
|
* Aligned to IGb08 at epoch 2013.00. Realized by a frame of 242 continuously operating stations using GNSS |
|
6955
|
|
|
* observations from April 2010 to July 2014. Velocity model VEMOS2009 used to propagate coordinates to the frame |
|
6956
|
|
|
* reference epoch. |
|
6957
|
|
|
* Replaces SIR13P01 (datum code 1239). Replaced by SIR15P01 (datum code 1241). |
|
6958
|
|
|
*/ |
|
6959
|
|
|
public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR14P01 = 'urn:ogc:def:datum:EPSG::1240'; |
|
6960
|
|
|
|
|
6961
|
|
|
/** |
|
6962
|
|
|
* SIRGAS Continuously Operating Network SIR15P01 |
|
6963
|
|
|
* Type: Dynamic geodetic |
|
6964
|
|
|
* Extent: Latin America - Central America and South America |
|
6965
|
|
|
* Aligned to IGb08 at epoch 2013.00. Realized by a frame of 303 continuously operating stations using GNSS |
|
6966
|
|
|
* observations from March 2010 to April 2015. Velocity model VEMOS2015 used to propagate coordinates to the frame |
|
6967
|
|
|
* reference epoch. |
|
6968
|
|
|
* Replaces SIR14P01 (datum code 1240). Replaced by SIR17P01 (datum code 1242). |
|
6969
|
|
|
*/ |
|
6970
|
|
|
public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR15P01 = 'urn:ogc:def:datum:EPSG::1241'; |
|
6971
|
|
|
|
|
6972
|
|
|
/** |
|
6973
|
|
|
* SIRGAS Continuously Operating Network SIR17P01 |
|
6974
|
|
|
* Type: Dynamic geodetic |
|
6975
|
|
|
* Extent: Latin America - Central America and South America |
|
6976
|
|
|
* Aligned to IGS14 at epoch 2015.00. Realized by a frame of 345 continuously operating stations using GNSS |
|
6977
|
|
|
* observations from April 2011 to January 2017. Velocity model VEMOS2017 used to propagate coordinates to the |
|
6978
|
|
|
* frame reference epoch. |
|
6979
|
|
|
* Replaces SIR15P01 (datum code 1241). |
|
6980
|
|
|
*/ |
|
6981
|
|
|
public const EPSG_SIRGAS_CONTINUOUSLY_OPERATING_NETWORK_SIR17P01 = 'urn:ogc:def:datum:EPSG::1242'; |
|
6982
|
|
|
|
|
6983
|
|
|
/** |
|
6984
|
|
|
* SIRGAS-Chile realization 1 epoch 2002 |
|
6985
|
|
|
* Type: Geodetic |
|
6986
|
|
|
* Extent: Chile. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y Gomez |
|
6987
|
|
|
* ITRF2000 at epoch 2002.0. Densification of SIRGAS 2000 network in Chile, consisting of 650 monumented stations. |
|
6988
|
|
|
* Densification of SIRGAS 2000 within Chile. Replaces PSAD56 (datum code 6248) in Chile, HITO XVIII (datum code |
|
6989
|
|
|
* 6254) in Chilean Tierra del Fuego and Easter Island 1967 (datum code 6719) in Easter Island. Replaced by |
|
6990
|
|
|
* SIRGAS-Chile 2010 (datum code 1243). |
|
6991
|
|
|
*/ |
|
6992
|
|
|
public const EPSG_SIRGAS_CHILE_REALIZATION_1_EPOCH_2002 = 'urn:ogc:def:datum:EPSG::1064'; |
|
6993
|
|
|
|
|
6994
|
|
|
/** |
|
6995
|
|
|
* SIRGAS-Chile realization 2 epoch 2010 |
|
6996
|
|
|
* Type: Geodetic |
|
6997
|
|
|
* Extent: Chile. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y Gomez |
|
6998
|
|
|
* IGS08 at epoch 2010.00. Densification of SIRGAS-CON network in Chile, consisting of 120 monumented stations. |
|
6999
|
|
|
* Replaces SIRGAS-Chile realization 1 epoch 2002, following significant tectonic deformation. Replaced by |
|
7000
|
|
|
* SIRGAS-Chile realization 3 epoch 2013. |
|
7001
|
|
|
*/ |
|
7002
|
|
|
public const EPSG_SIRGAS_CHILE_REALIZATION_2_EPOCH_2010 = 'urn:ogc:def:datum:EPSG::1243'; |
|
7003
|
|
|
|
|
7004
|
|
|
/** |
|
7005
|
|
|
* SIRGAS-Chile realization 3 epoch 2013 |
|
7006
|
|
|
* Type: Geodetic |
|
7007
|
|
|
* Extent: Chile. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y Gomez |
|
7008
|
|
|
* IGb08 at epoch 2013.00. Densification of SIRGAS-CON network in Chile, consisting of 130 monumented stations. |
|
7009
|
|
|
* Replaces SIRGAS-Chile realization 2 epoch 2010, following significant tectonic deformation. Replaced by |
|
7010
|
|
|
* SIRGAS-Chile realization 4 epoch 2016. |
|
7011
|
|
|
*/ |
|
7012
|
|
|
public const EPSG_SIRGAS_CHILE_REALIZATION_3_EPOCH_2013 = 'urn:ogc:def:datum:EPSG::1252'; |
|
7013
|
|
|
|
|
7014
|
|
|
/** |
|
7015
|
|
|
* SIRGAS-Chile realization 4 epoch 2016 |
|
7016
|
|
|
* Type: Geodetic |
|
7017
|
|
|
* Extent: Chile. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y Gomez |
|
7018
|
|
|
* IGb08 at epoch 2016.00. Densification of SIRGAS-CON network in Chile, consisting of 200 monumented stations. |
|
7019
|
|
|
* Replaces SIRGAS-Chile realization 3 epoch 2013. Replaced by SIRGAS-Chile realization 5 epoch 2021 due to |
|
7020
|
|
|
* significant tectonic deformation. |
|
7021
|
|
|
*/ |
|
7022
|
|
|
public const EPSG_SIRGAS_CHILE_REALIZATION_4_EPOCH_2016 = 'urn:ogc:def:datum:EPSG::1253'; |
|
7023
|
|
|
|
|
7024
|
|
|
/** |
|
7025
|
|
|
* SIRGAS-Chile realization 5 epoch 2021 |
|
7026
|
|
|
* Type: Geodetic |
|
7027
|
|
|
* Extent: Chile. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y Gomez |
|
7028
|
|
|
* Densification of SIRGAS-CON network in Chile, consisting of 97 stations forming the active CORS network (RGN) |
|
7029
|
|
|
* referenced to IGb2014 (ITRF2014) at epoch 2021.00. Passive stations used in previous realizations have been |
|
7030
|
|
|
* removed from this solution. |
|
7031
|
|
|
* Replaces SIRGAS-Chile realization 4 epoch 2016 from August 2021 due to significant tectonic deformation. 24 |
|
7032
|
|
|
* additional active CORS used in this realization compared to that of 2016. |
|
7033
|
|
|
*/ |
|
7034
|
|
|
public const EPSG_SIRGAS_CHILE_REALIZATION_5_EPOCH_2021 = 'urn:ogc:def:datum:EPSG::1327'; |
|
7035
|
|
|
|
|
7036
|
|
|
/** |
|
7037
|
|
|
* SIRGAS-ROU98 |
|
7038
|
|
|
* Type: Geodetic |
|
7039
|
|
|
* Extent: Uruguay |
|
7040
|
|
|
* Densification of SIRGAS95 network in Uruguay, consisting of 17 passive geodetic stations and 3 continuous |
|
7041
|
|
|
* recording GPS stations. ITRF94 at epoch 1995.4. |
|
7042
|
|
|
* Densification of SIRGAS 1995 within Uruguay. Replaces Yacare (datum code 6309) in Uruguay. Uruguay documentation |
|
7043
|
|
|
* clearly states use of WGS 84 reference ellipsoid. |
|
7044
|
|
|
*/ |
|
7045
|
|
|
public const EPSG_SIRGAS_ROU98 = 'urn:ogc:def:datum:EPSG::1068'; |
|
7046
|
|
|
|
|
7047
|
|
|
/** |
|
7048
|
|
|
* SIRGAS_ES2007.8 |
|
7049
|
|
|
* Type: Geodetic |
|
7050
|
|
|
* Extent: El Salvador |
|
7051
|
|
|
* ITRF2005 at epoch 2007.85. Densification of SIRGAS-CON network in El Salvador, consisting of 38 monumented |
|
7052
|
|
|
* stations. |
|
7053
|
|
|
* SIRGAS-ES2007.8 is the national SIRGAS densification. |
|
7054
|
|
|
*/ |
|
7055
|
|
|
public const EPSG_SIRGAS_ES2007_8 = 'urn:ogc:def:datum:EPSG::1069'; |
|
7056
|
|
|
|
|
7057
|
|
|
/** |
|
7058
|
|
|
* SMITB20 Intermediate Reference Frame |
|
7059
|
|
|
* Type: Geodetic |
|
7060
|
|
|
* Extent: UK - on or related to the rail route from Okehampton to Penstone |
|
7061
|
|
|
* Defined through the application of the SMITB20 NTv2 transformation to ETRS89 as realized through OSNet v2009 |
|
7062
|
|
|
* CORS. |
|
7063
|
|
|
* Created in 2022 to support intermediate CRS SMITB20-IRF in the emulation of the SMITB20 Snake map projection. |
|
7064
|
|
|
*/ |
|
7065
|
|
|
public const EPSG_SMITB20_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1351'; |
|
7066
|
|
|
|
|
7067
|
|
|
/** |
|
7068
|
|
|
* ST71 Belep |
|
7069
|
|
|
* Type: Geodetic |
|
7070
|
|
|
* Extent: New Caledonia - Belep. |
|
7071
|
|
|
*/ |
|
7072
|
|
|
public const EPSG_ST71_BELEP = 'urn:ogc:def:datum:EPSG::6643'; |
|
7073
|
|
|
|
|
7074
|
|
|
/** |
|
7075
|
|
|
* ST84 Ile des Pins |
|
7076
|
|
|
* Type: Geodetic |
|
7077
|
|
|
* Extent: New Caledonia - Ile des Pins |
|
7078
|
|
|
* Fundamental point: Pic Nga. |
|
7079
|
|
|
*/ |
|
7080
|
|
|
public const EPSG_ST84_ILE_DES_PINS = 'urn:ogc:def:datum:EPSG::6642'; |
|
7081
|
|
|
|
|
7082
|
|
|
/** |
|
7083
|
|
|
* ST87 Ouvea |
|
7084
|
|
|
* Type: Geodetic |
|
7085
|
|
|
* Extent: New Caledonia - Loyalty Islands - Ouvea |
|
7086
|
|
|
* Ouloup. |
|
7087
|
|
|
*/ |
|
7088
|
|
|
public const EPSG_ST87_OUVEA = 'urn:ogc:def:datum:EPSG::6750'; |
|
7089
|
|
|
|
|
7090
|
|
|
/** |
|
7091
|
|
|
* SVY21 |
|
7092
|
|
|
* Type: Geodetic |
|
7093
|
|
|
* Extent: Singapore |
|
7094
|
|
|
* Fundamental point: Base 7 at Pierce Reservoir. Latitude: 1°22'02.9154"N, longitude: 103°49'31.9752"E (of |
|
7095
|
|
|
* Greenwich). |
|
7096
|
|
|
* Replaces Kertau 1968 for cadastral purposes from August 2004. |
|
7097
|
|
|
*/ |
|
7098
|
|
|
public const EPSG_SVY21 = 'urn:ogc:def:datum:EPSG::6757'; |
|
7099
|
|
|
|
|
7100
|
|
|
/** |
|
7101
|
|
|
* SWEREF99 |
|
7102
|
|
|
* Type: Geodetic |
|
7103
|
|
|
* Extent: Sweden |
|
7104
|
|
|
* Densification of ETRS89. |
|
7105
|
|
|
* The solution was calculated in ITRF97 epoch 1999.5, and has subsequently been corrected to ETRS89 in accordance |
|
7106
|
|
|
* with guidelines given by EUREF. |
|
7107
|
|
|
*/ |
|
7108
|
|
|
public const EPSG_SWEREF99 = 'urn:ogc:def:datum:EPSG::6619'; |
|
7109
|
|
|
|
|
7110
|
|
|
/** |
|
7111
|
|
|
* SYC20 Intermediate Reference Frame |
|
7112
|
|
|
* Type: Geodetic |
|
7113
|
|
|
* Extent: UK - on or related to the rail route from Shrewsbury to Crewe |
|
7114
|
|
|
* Defined through the application of the SYC20 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
7115
|
|
|
* Created in 2022 to support intermediate CRS SYC20-IRF in the emulation of the SYC20 Snake map projection. |
|
7116
|
|
|
*/ |
|
7117
|
|
|
public const EPSG_SYC20_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1345'; |
|
7118
|
|
|
|
|
7119
|
|
|
/** |
|
7120
|
|
|
* Saint Pierre et Miquelon 1950 |
|
7121
|
|
|
* Type: Geodetic |
|
7122
|
|
|
* Extent: St Pierre and Miquelon - onshore |
|
7123
|
|
|
* Replaced by RGSPM06 (datum code 1038). |
|
7124
|
|
|
*/ |
|
7125
|
|
|
public const EPSG_SAINT_PIERRE_ET_MIQUELON_1950 = 'urn:ogc:def:datum:EPSG::6638'; |
|
7126
|
|
|
|
|
7127
|
|
|
/** |
|
7128
|
|
|
* Santa Cruz da Graciosa |
|
7129
|
|
|
* Type: Vertical |
|
7130
|
|
|
* Extent: Portugal - central Azores - Graciosa island onshore |
|
7131
|
|
|
* Mean Sea Level during 1938 at Santa Cruz da Graciosa. |
|
7132
|
|
|
* Orthometric heights. |
|
7133
|
|
|
*/ |
|
7134
|
|
|
public const EPSG_SANTA_CRUZ_DA_GRACIOSA = 'urn:ogc:def:datum:EPSG::1106'; |
|
7135
|
|
|
|
|
7136
|
|
|
/** |
|
7137
|
|
|
* Santa Cruz das Flores |
|
7138
|
|
|
* Type: Vertical |
|
7139
|
|
|
* Extent: Portugal - western Azores onshore - Flores, Corvo |
|
7140
|
|
|
* Mean Sea Level during 1965 at Santa Cruz das Flores. |
|
7141
|
|
|
* Orthometric heights. |
|
7142
|
|
|
*/ |
|
7143
|
|
|
public const EPSG_SANTA_CRUZ_DAS_FLORES = 'urn:ogc:def:datum:EPSG::1108'; |
|
7144
|
|
|
|
|
7145
|
|
|
/** |
|
7146
|
|
|
* Santo 1965 |
|
7147
|
|
|
* Type: Geodetic |
|
7148
|
|
|
* Extent: Vanuatu - northern islands - Aese, Ambrym, Aoba, Epi, Espiritu Santo, Maewo, Malo, Malkula, Paama, |
|
7149
|
|
|
* Pentecost, Shepherd and Tutuba |
|
7150
|
|
|
* Datum covers all the major islands of Vanuatu in two different adjustment blocks, but practical usage is as |
|
7151
|
|
|
* given in the area of use. |
|
7152
|
|
|
*/ |
|
7153
|
|
|
public const EPSG_SANTO_1965 = 'urn:ogc:def:datum:EPSG::6730'; |
|
7154
|
|
|
|
|
7155
|
|
|
/** |
|
7156
|
|
|
* Sao Tome |
|
7157
|
|
|
* Type: Geodetic |
|
7158
|
|
|
* Extent: Sao Tome and Principe - onshore - Sao Tome |
|
7159
|
|
|
* Fundamental point: Fortaleza. Latitude: 0°20'49.02"N, longitude: 6°44'41.85"E (of Greenwich). |
|
7160
|
|
|
*/ |
|
7161
|
|
|
public const EPSG_SAO_TOME = 'urn:ogc:def:datum:EPSG::1044'; |
|
7162
|
|
|
|
|
7163
|
|
|
/** |
|
7164
|
|
|
* Sapper Hill 1943 |
|
7165
|
|
|
* Type: Geodetic |
|
7166
|
|
|
* Extent: Falkland Islands (Malvinas) - onshore. |
|
7167
|
|
|
*/ |
|
7168
|
|
|
public const EPSG_SAPPER_HILL_1943 = 'urn:ogc:def:datum:EPSG::6292'; |
|
7169
|
|
|
|
|
7170
|
|
|
/** |
|
7171
|
|
|
* Schwarzeck |
|
7172
|
|
|
* Type: Geodetic |
|
7173
|
|
|
* Extent: Namibia |
|
7174
|
|
|
* Fundamental point: Schwarzeck. Latitude: 22°45'35.820"S, longitude: 18°40'34.549"E (of Greenwich). Fixed |
|
7175
|
|
|
* during German South West Africa-British Bechuanaland boundary survey of 1898-1903. |
|
7176
|
|
|
*/ |
|
7177
|
|
|
public const EPSG_SCHWARZECK = 'urn:ogc:def:datum:EPSG::6293'; |
|
7178
|
|
|
|
|
7179
|
|
|
/** |
|
7180
|
|
|
* Scoresbysund 1952 |
|
7181
|
|
|
* Type: Geodetic |
|
7182
|
|
|
* Extent: Greenland - Scoresbysund area onshore. |
|
7183
|
|
|
*/ |
|
7184
|
|
|
public const EPSG_SCORESBYSUND_1952 = 'urn:ogc:def:datum:EPSG::6195'; |
|
7185
|
|
|
|
|
7186
|
|
|
/** |
|
7187
|
|
|
* Selvagem Grande |
|
7188
|
|
|
* Type: Geodetic |
|
7189
|
|
|
* Extent: Portugal - Selvagens islands (Madeira province) - onshore. |
|
7190
|
|
|
*/ |
|
7191
|
|
|
public const EPSG_SELVAGEM_GRANDE = 'urn:ogc:def:datum:EPSG::6616'; |
|
7192
|
|
|
|
|
7193
|
|
|
/** |
|
7194
|
|
|
* Serbian Reference Network 1998 |
|
7195
|
|
|
* Type: Geodetic |
|
7196
|
|
|
* Extent: Serbia including Vojvodina |
|
7197
|
|
|
* Densification of ETRS89 in Serbia at epoch 1998.7 based on coordinates of 6 stations in Serbia of Yugoslav |
|
7198
|
|
|
* Reference Frame (YUREF) 1998 campaign. |
|
7199
|
|
|
* Observed 1998-2003. |
|
7200
|
|
|
*/ |
|
7201
|
|
|
public const EPSG_SERBIAN_REFERENCE_NETWORK_1998 = 'urn:ogc:def:datum:EPSG::1034'; |
|
7202
|
|
|
|
|
7203
|
|
|
/** |
|
7204
|
|
|
* Serbian Spatial Reference System 2000 |
|
7205
|
|
|
* Type: Geodetic |
|
7206
|
|
|
* Extent: Serbia including Vojvodina |
|
7207
|
|
|
* Densification of ETRF2000 in Serbia at epoch 2010.63. |
|
7208
|
|
|
* Replaces SREF98. |
|
7209
|
|
|
*/ |
|
7210
|
|
|
public const EPSG_SERBIAN_SPATIAL_REFERENCE_SYSTEM_2000 = 'urn:ogc:def:datum:EPSG::1214'; |
|
7211
|
|
|
|
|
7212
|
|
|
/** |
|
7213
|
|
|
* Serbian Vertical Reference System 2012 |
|
7214
|
|
|
* Type: Vertical |
|
7215
|
|
|
* Extent: Serbia including Vojvodina |
|
7216
|
|
|
* Mean sea level of Adriatic Sea in 1971. |
|
7217
|
|
|
* Normal heights above quasi-geoid. In Serbia replaces Trieste (datum code 1050). |
|
7218
|
|
|
*/ |
|
7219
|
|
|
public const EPSG_SERBIAN_VERTICAL_REFERENCE_SYSTEM_2012 = 'urn:ogc:def:datum:EPSG::1216'; |
|
7220
|
|
|
|
|
7221
|
|
|
/** |
|
7222
|
|
|
* Serindung |
|
7223
|
|
|
* Type: Geodetic |
|
7224
|
|
|
* Extent: Indonesia - west Kalimantan - onshore coastal area |
|
7225
|
|
|
* Fundamental point: Ep A. Latitude: 1°06'10.60"N, longitude: 105°00'59.82"E (of Greenwich). |
|
7226
|
|
|
*/ |
|
7227
|
|
|
public const EPSG_SERINDUNG = 'urn:ogc:def:datum:EPSG::6295'; |
|
7228
|
|
|
|
|
7229
|
|
|
/** |
|
7230
|
|
|
* ShAb07 Intermediate Reference Frame |
|
7231
|
|
|
* Type: Geodetic |
|
7232
|
|
|
* Extent: UK - on or related to the rail route from Shrewsbury to Aberystwyth |
|
7233
|
|
|
* Defined through the application of the ShAb07 NTv2 transformation (code 10186) to ETRS89 as realized through |
|
7234
|
|
|
* OSNet v2009 CORS. |
|
7235
|
|
|
* Created in 2022 to support intermediate CRS ShAb07-IRF in the emulation of the ShAb07 Snake map projection. |
|
7236
|
|
|
*/ |
|
7237
|
|
|
public const EPSG_SHAB07_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1335'; |
|
7238
|
|
|
|
|
7239
|
|
|
/** |
|
7240
|
|
|
* Sibun Gorge 1922 |
|
7241
|
|
|
* Type: Geodetic |
|
7242
|
|
|
* Extent: Belize - onshore |
|
7243
|
|
|
* Latitude: 17º03'40.471"N, longitude: 88º37'54.687"W. |
|
7244
|
|
|
*/ |
|
7245
|
|
|
public const EPSG_SIBUN_GORGE_1922 = 'urn:ogc:def:datum:EPSG::1071'; |
|
7246
|
|
|
|
|
7247
|
|
|
/** |
|
7248
|
|
|
* Sierra Leone 1968 |
|
7249
|
|
|
* Type: Geodetic |
|
7250
|
|
|
* Extent: Sierra Leone - onshore |
|
7251
|
|
|
* Fundamental point: SLX2 Astro. Latitude: 8°27'17.567"N, longitude: 12°49'40.186"W (of Greenwich). |
|
7252
|
|
|
* Extension and readjustment with additional observations of 1960 network. Coordinates of 1960 stations change by |
|
7253
|
|
|
* less than 3 metres. |
|
7254
|
|
|
*/ |
|
7255
|
|
|
public const EPSG_SIERRA_LEONE_1968 = 'urn:ogc:def:datum:EPSG::6175'; |
|
7256
|
|
|
|
|
7257
|
|
|
/** |
|
7258
|
|
|
* Sierra Leone Colony 1924 |
|
7259
|
|
|
* Type: Geodetic |
|
7260
|
|
|
* Extent: Sierra Leone - Freetown Peninsula |
|
7261
|
|
|
* Fundamental point: Kortright. Latitude: 8°28'44.4"N, longitude: 13°13'03.81"W (of Greenwich). |
|
7262
|
|
|
*/ |
|
7263
|
|
|
public const EPSG_SIERRA_LEONE_COLONY_1924 = 'urn:ogc:def:datum:EPSG::6174'; |
|
7264
|
|
|
|
|
7265
|
|
|
/** |
|
7266
|
|
|
* Singapore Height Datum |
|
7267
|
|
|
* Type: Vertical |
|
7268
|
|
|
* Extent: Singapore |
|
7269
|
|
|
* Mean sea level determined at Victoria Dock tide gauge 1935-1937. |
|
7270
|
|
|
* Orthometric heights. Network readjusted in 2009. |
|
7271
|
|
|
*/ |
|
7272
|
|
|
public const EPSG_SINGAPORE_HEIGHT_DATUM = 'urn:ogc:def:datum:EPSG::1140'; |
|
7273
|
|
|
|
|
7274
|
|
|
/** |
|
7275
|
|
|
* Sistem Referensi Geospasial Indonesia 2013 |
|
7276
|
|
|
* Type: Dynamic geodetic |
|
7277
|
|
|
* Extent: Indonesia |
|
7278
|
|
|
* ITRF2008 at epoch 2012.0. |
|
7279
|
|
|
* Semi-dynamic datum. Geometric element of geodetic control network (JKG). Replaces DGN95 and all older datums. |
|
7280
|
|
|
*/ |
|
7281
|
|
|
public const EPSG_SISTEM_REFERENSI_GEOSPASIAL_INDONESIA_2013 = 'urn:ogc:def:datum:EPSG::1293'; |
|
7282
|
|
|
|
|
7283
|
|
|
/** |
|
7284
|
|
|
* Sistema Geodesico Nacional de Panama MACARIO SOLIS |
|
7285
|
|
|
* Type: Geodetic |
|
7286
|
|
|
* Extent: Panama |
|
7287
|
|
|
* ITRF2000 at epoch 2000.0. Densification of SIRGAS 2000 network in Panama, consisting of 20 GPS stations |
|
7288
|
|
|
* throughout the country. |
|
7289
|
|
|
*/ |
|
7290
|
|
|
public const EPSG_SISTEMA_GEODESICO_NACIONAL_DE_PANAMA_MACARIO_SOLIS = 'urn:ogc:def:datum:EPSG::1066'; |
|
7291
|
|
|
|
|
7292
|
|
|
/** |
|
7293
|
|
|
* Sistema de Referencia Geocentrico para America del Sur 1995 |
|
7294
|
|
|
* Type: Geodetic |
|
7295
|
|
|
* Extent: South America. Ecuador (mainland and Galapagos) |
|
7296
|
|
|
* ITRF94 at epoch 1995.4. |
|
7297
|
|
|
* Realized by a frame of 58 stations observed in 1995 and adjusted in ITRF94. Provisional NIMA adjustment |
|
7298
|
|
|
* reference epoch was 1995.42 but final report accepted value is 1995.40. Replaced by SIRGAS 2000. |
|
7299
|
|
|
*/ |
|
7300
|
|
|
public const EPSG_SISTEMA_DE_REFERENCIA_GEOCENTRICO_PARA_AMERICA_DEL_SUR_1995 = 'urn:ogc:def:datum:EPSG::6170'; |
|
7301
|
|
|
|
|
7302
|
|
|
/** |
|
7303
|
|
|
* Sistema de Referencia Geocentrico para las AmericaS 2000 |
|
7304
|
|
|
* Type: Geodetic |
|
7305
|
|
|
* Extent: Latin America - Central America and South America. Brazil |
|
7306
|
|
|
* ITRF2000 at epoch 2000.40. |
|
7307
|
|
|
* Realized by a frame of 184 stations observed in 2000 and adjusted in the ITRF2000. Includes ties to tide gauges. |
|
7308
|
|
|
* Replaces SIRGAS 1995 system for South America; expands SIRGAS to Central America. Name changed in 2001 for use |
|
7309
|
|
|
* in all of Latin America. |
|
7310
|
|
|
*/ |
|
7311
|
|
|
public const EPSG_SISTEMA_DE_REFERENCIA_GEOCENTRICO_PARA_LAS_AMERICAS_2000 = 'urn:ogc:def:datum:EPSG::6674'; |
|
7312
|
|
|
|
|
7313
|
|
|
/** |
|
7314
|
|
|
* Sistema de Referencia Vertical Nacional 2016 |
|
7315
|
|
|
* Type: Vertical |
|
7316
|
|
|
* Extent: Argentina - onshore |
|
7317
|
|
|
* Mean Sea Level 1923 at Mar del Plata defined at station 71 (C = 121.64978 m^2s^-2) = 12.43m for mainland, |
|
7318
|
|
|
* Ushuaia station PF1N(383) (C = 38.427 m^2s^-2) = 3.915m for Tierra del Fuego. These geopotential numbers |
|
7319
|
|
|
* correspond with historic values. |
|
7320
|
|
|
* Replaces SRVN71. |
|
7321
|
|
|
*/ |
|
7322
|
|
|
public const EPSG_SISTEMA_DE_REFERENCIA_VERTICAL_NACIONAL_2016 = 'urn:ogc:def:datum:EPSG::1260'; |
|
7323
|
|
|
|
|
7324
|
|
|
/** |
|
7325
|
|
|
* Sister Islands Geodetic Datum 1961 |
|
7326
|
|
|
* Type: Geodetic |
|
7327
|
|
|
* Extent: Cayman Islands - Little Cayman and Cayman Brac |
|
7328
|
|
|
* Fundamental point: LC5. Latitude: 19°39'46.324"N, longitude: 80°03'47.910"W (of Greenwich). |
|
7329
|
|
|
* Replaced by CIGD11 (datum code 1100). |
|
7330
|
|
|
*/ |
|
7331
|
|
|
public const EPSG_SISTER_ISLANDS_GEODETIC_DATUM_1961 = 'urn:ogc:def:datum:EPSG::6726'; |
|
7332
|
|
|
|
|
7333
|
|
|
/** |
|
7334
|
|
|
* Slovenia Geodetic Datum 1996 |
|
7335
|
|
|
* Type: Geodetic |
|
7336
|
|
|
* Extent: Slovenia |
|
7337
|
|
|
* Densification of ETRS89, based on ITRS89 at epoch 1995.55. |
|
7338
|
|
|
*/ |
|
7339
|
|
|
public const EPSG_SLOVENIA_GEODETIC_DATUM_1996 = 'urn:ogc:def:datum:EPSG::6765'; |
|
7340
|
|
|
|
|
7341
|
|
|
/** |
|
7342
|
|
|
* Slovenian Vertical System 2000 |
|
7343
|
|
|
* Type: Vertical |
|
7344
|
|
|
* Extent: Slovenia - onshore |
|
7345
|
|
|
* Reference point Ruse defined relative to mean sea level at Trieste in 1875. |
|
7346
|
|
|
* Normal-orthometric heights. Promulgated through the National Vertical Network adjustment of 1999. |
|
7347
|
|
|
*/ |
|
7348
|
|
|
public const EPSG_SLOVENIAN_VERTICAL_SYSTEM_2000 = 'urn:ogc:def:datum:EPSG::5177'; |
|
7349
|
|
|
|
|
7350
|
|
|
/** |
|
7351
|
|
|
* Slovenian Vertical System 2010 |
|
7352
|
|
|
* Type: Vertical |
|
7353
|
|
|
* Extent: Slovenia - onshore |
|
7354
|
|
|
* Mean sea level at Koper over 18.6 years, selected epoch is 2010-10-10. |
|
7355
|
|
|
* Normal heights. Replaces SVS2000 from 2019-01. |
|
7356
|
|
|
*/ |
|
7357
|
|
|
public const EPSG_SLOVENIAN_VERTICAL_SYSTEM_2010 = 'urn:ogc:def:datum:EPSG::1215'; |
|
7358
|
|
|
|
|
7359
|
|
|
/** |
|
7360
|
|
|
* Solomon 1968 |
|
7361
|
|
|
* Type: Geodetic |
|
7362
|
|
|
* Extent: Solomon Islands - onshore southern Solomon Islands, primarily Guadalcanal, Malaita, San Cristobel, Santa |
|
7363
|
|
|
* Isobel, Choiseul, Makira-Ulawa |
|
7364
|
|
|
* Fundamental point: GUX 1. |
|
7365
|
|
|
*/ |
|
7366
|
|
|
public const EPSG_SOLOMON_1968 = 'urn:ogc:def:datum:EPSG::6718'; |
|
7367
|
|
|
|
|
7368
|
|
|
/** |
|
7369
|
|
|
* Sonatrach Reference Frame 2020 |
|
7370
|
|
|
* Type: Geodetic |
|
7371
|
|
|
* Extent: Algeria |
|
7372
|
|
|
* Aligned with IGS14 at epoch 2020.15. RGSH2020 primary network of 22 stations throughout Algeria connected to 15 |
|
7373
|
|
|
* IGS stations. |
|
7374
|
|
|
* Internal accuracy of network is 6-8mm. |
|
7375
|
|
|
*/ |
|
7376
|
|
|
public const EPSG_SONATRACH_REFERENCE_FRAME_2020 = 'urn:ogc:def:datum:EPSG::1355'; |
|
7377
|
|
|
|
|
7378
|
|
|
/** |
|
7379
|
|
|
* South Africa Land Levelling Datum |
|
7380
|
|
|
* Type: Vertical |
|
7381
|
|
|
* Extent: South Africa - mainland onshore |
|
7382
|
|
|
* Mean Sea Level at Cape Town harbour 1900 and 1907, referred to Datum Benchmark BM1. |
|
7383
|
|
|
* Orthometric heights. |
|
7384
|
|
|
*/ |
|
7385
|
|
|
public const EPSG_SOUTH_AFRICA_LAND_LEVELLING_DATUM = 'urn:ogc:def:datum:EPSG::1262'; |
|
7386
|
|
|
|
|
7387
|
|
|
/** |
|
7388
|
|
|
* South American Datum 1969 |
|
7389
|
|
|
* Type: Geodetic |
|
7390
|
|
|
* Extent: Brazil. In rest of South America - onshore north of approximately 45°S and Tierra del Fuego |
|
7391
|
|
|
* Fundamental point: Chua. Geodetic latitude: 19°45'41.6527"S; geodetic longitude: 48°06'04.0639"W (of |
|
7392
|
|
|
* Greenwich). (Astronomic coordinates: Latitude 19°45'41.34"S +/- 0.05", longitude 48°06'07.80"W +/- 0.08"). |
|
7393
|
|
|
* SAD69 uses GRS 1967 ellipsoid but with 1/f to exactly 2 decimal places. In Brazil only, replaced by SAD69(96) |
|
7394
|
|
|
* (datum code 1075). |
|
7395
|
|
|
*/ |
|
7396
|
|
|
public const EPSG_SOUTH_AMERICAN_DATUM_1969 = 'urn:ogc:def:datum:EPSG::6618'; |
|
7397
|
|
|
|
|
7398
|
|
|
/** |
|
7399
|
|
|
* South American Datum 1969(96) |
|
7400
|
|
|
* Type: Geodetic |
|
7401
|
|
|
* Extent: Brazil. Includes Rocas, Fernando de Noronha archipelago, Trindade, Ihlas Martim Vaz and Sao Pedro e Sao |
|
7402
|
|
|
* Paulo |
|
7403
|
|
|
* Fundamental point: Chua. Geodetic latitude: 19°45'41.6527"S; geodetic longitude: 48°06'04.0639"W (of |
|
7404
|
|
|
* Greenwich). (Astronomic coordinates: Latitude 19°45'41.34"S +/- 0.05", longitude 48°06'07.80"W +/- 0.08"). |
|
7405
|
|
|
* SAD69 uses GRS 1967 ellipsoid but with 1/f to exactly 2 decimal places. Replaces original 1969 adjustment (datum |
|
7406
|
|
|
* code 6618) in Brazil. |
|
7407
|
|
|
*/ |
|
7408
|
|
|
public const EPSG_SOUTH_AMERICAN_DATUM_1969_96 = 'urn:ogc:def:datum:EPSG::1075'; |
|
7409
|
|
|
|
|
7410
|
|
|
/** |
|
7411
|
|
|
* South East Island 1943 |
|
7412
|
|
|
* Type: Geodetic |
|
7413
|
|
|
* Extent: Seychelles - Mahe, Silhouette, North, Aride Island, Praslin, La Digue and Frigate islands including |
|
7414
|
|
|
* adjacent smaller granitic islands on the Seychelles Bank, Bird Island and Denis Island |
|
7415
|
|
|
* Fundamental point: Challenger Astro near Port Victoria lighthouse. Latitude: 4°40'39.460"S, longitude: |
|
7416
|
|
|
* 55°32'00.166"E (of Greenwich). |
|
7417
|
|
|
* Network readjusted in 1958-59 and extended to Bird and Denis islands in 1975. |
|
7418
|
|
|
*/ |
|
7419
|
|
|
public const EPSG_SOUTH_EAST_ISLAND_1943 = 'urn:ogc:def:datum:EPSG::1138'; |
|
7420
|
|
|
|
|
7421
|
|
|
/** |
|
7422
|
|
|
* South Georgia 1968 |
|
7423
|
|
|
* Type: Geodetic |
|
7424
|
|
|
* Extent: South Georgia and the South Sandwich Islands - South Georgia onshore |
|
7425
|
|
|
* Fundamental point: ISTS 061. |
|
7426
|
|
|
*/ |
|
7427
|
|
|
public const EPSG_SOUTH_GEORGIA_1968 = 'urn:ogc:def:datum:EPSG::6722'; |
|
7428
|
|
|
|
|
7429
|
|
|
/** |
|
7430
|
|
|
* South Yemen |
|
7431
|
|
|
* Type: Geodetic |
|
7432
|
|
|
* Extent: Yemen - South Yemen onshore mainland. |
|
7433
|
|
|
*/ |
|
7434
|
|
|
public const EPSG_SOUTH_YEMEN = 'urn:ogc:def:datum:EPSG::6164'; |
|
7435
|
|
|
|
|
7436
|
|
|
/** |
|
7437
|
|
|
* Sri Lanka Datum 1999 |
|
7438
|
|
|
* Type: Geodetic |
|
7439
|
|
|
* Extent: Sri Lanka - onshore |
|
7440
|
|
|
* Fundamental point: ISM Diyatalawa. Latitude: 6°49'02.687"N, longitude: 80°57'40.880"E. |
|
7441
|
|
|
* Introduced in 2000. |
|
7442
|
|
|
*/ |
|
7443
|
|
|
public const EPSG_SRI_LANKA_DATUM_1999 = 'urn:ogc:def:datum:EPSG::1053'; |
|
7444
|
|
|
|
|
7445
|
|
|
/** |
|
7446
|
|
|
* Sri Lanka Vertical Datum |
|
7447
|
|
|
* Type: Vertical |
|
7448
|
|
|
* Extent: Sri Lanka - onshore |
|
7449
|
|
|
* MSL at Colombo 1884-1889. |
|
7450
|
|
|
* Normal-orthometric heights, but often referred to as "orthometric". |
|
7451
|
|
|
*/ |
|
7452
|
|
|
public const EPSG_SRI_LANKA_VERTICAL_DATUM = 'urn:ogc:def:datum:EPSG::1054'; |
|
7453
|
|
|
|
|
7454
|
|
|
/** |
|
7455
|
|
|
* St. George Island |
|
7456
|
|
|
* Type: Geodetic |
|
7457
|
|
|
* Extent: USA - Alaska - Pribilof Islands - St George Island |
|
7458
|
|
|
* Fundamental point latitude: 56°36'11.31"N, longitude: 169°32'36.00"W (of Greenwich). |
|
7459
|
|
|
* Many Alaskan islands were never on NAD27 but rather on independent datums. NADCON conversion program provides |
|
7460
|
|
|
* transformation from St. George Island Datum to NAD83 (original 1986 realization) - making the transformation |
|
7461
|
|
|
* appear to user as if from NAD27. |
|
7462
|
|
|
*/ |
|
7463
|
|
|
public const EPSG_ST_GEORGE_ISLAND = 'urn:ogc:def:datum:EPSG::6138'; |
|
7464
|
|
|
|
|
7465
|
|
|
/** |
|
7466
|
|
|
* St. Helena Geodetic Datum 2015 |
|
7467
|
|
|
* Type: Geodetic |
|
7468
|
|
|
* Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore |
|
7469
|
|
|
* ITRF2008 at epoch 2015.0. ITRF2008 coordinates (15°56'33.1198"S, 5°40'02.4412"W, 453.183m ellipsoid height) of |
|
7470
|
|
|
* Longwood IGS CORS station STHL on 1st January 2015. |
|
7471
|
|
|
* Developed by Richard Stanaway, Quickclose Pty Ltd, superseding Astro DOS 71 from 1st January 2016. |
|
7472
|
|
|
*/ |
|
7473
|
|
|
public const EPSG_ST_HELENA_GEODETIC_DATUM_2015 = 'urn:ogc:def:datum:EPSG::1174'; |
|
7474
|
|
|
|
|
7475
|
|
|
/** |
|
7476
|
|
|
* St. Helena Tritan |
|
7477
|
|
|
* Type: Geodetic |
|
7478
|
|
|
* Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore |
|
7479
|
|
|
* WGS 84(G1150) at epoch 2011.773. WGS 84 coordinates (15°56'33.1217"S, 5°40'02.4436"W, 453.288m ellipsoid |
|
7480
|
|
|
* height) of Longwood IGS CORS station STHL on 9th October 2011. |
|
7481
|
|
|
*/ |
|
7482
|
|
|
public const EPSG_ST_HELENA_TRITAN = 'urn:ogc:def:datum:EPSG::1173'; |
|
7483
|
|
|
|
|
7484
|
|
|
/** |
|
7485
|
|
|
* St. Helena Tritan Vertical Datum 2011 |
|
7486
|
|
|
* Type: Vertical |
|
7487
|
|
|
* Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore |
|
7488
|
|
|
* MSL defined by Longwood IGS station STHL reference level of 436.215m. |
|
7489
|
|
|
* Defined by offset of -17.073m applied to St. Helena Tritan ellipsiodal height (CRS code 7880). |
|
7490
|
|
|
*/ |
|
7491
|
|
|
public const EPSG_ST_HELENA_TRITAN_VERTICAL_DATUM_2011 = 'urn:ogc:def:datum:EPSG::1176'; |
|
7492
|
|
|
|
|
7493
|
|
|
/** |
|
7494
|
|
|
* St. Helena Vertical Datum 2015 |
|
7495
|
|
|
* Type: Vertical |
|
7496
|
|
|
* Extent: St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore |
|
7497
|
|
|
* Longwood IGS station STHL reference level of 436.312m. |
|
7498
|
|
|
* Defined by SHGEOID15 geoid model (transformation code 7891) applied to SHGD2015 (CRS code 7885). |
|
7499
|
|
|
*/ |
|
7500
|
|
|
public const EPSG_ST_HELENA_VERTICAL_DATUM_2015 = 'urn:ogc:def:datum:EPSG::1177'; |
|
7501
|
|
|
|
|
7502
|
|
|
/** |
|
7503
|
|
|
* St. Kilda |
|
7504
|
|
|
* Type: Vertical |
|
7505
|
|
|
* Extent: UK - Great Britain - Scotland - St Kilda onshore |
|
7506
|
|
|
* Orthometric heights. |
|
7507
|
|
|
*/ |
|
7508
|
|
|
public const EPSG_ST_KILDA = 'urn:ogc:def:datum:EPSG::5145'; |
|
7509
|
|
|
|
|
7510
|
|
|
/** |
|
7511
|
|
|
* St. Kitts 1955 |
|
7512
|
|
|
* Type: Geodetic |
|
7513
|
|
|
* Extent: St Kitts and Nevis - onshore |
|
7514
|
|
|
* Fundamental point: station K12. |
|
7515
|
|
|
*/ |
|
7516
|
|
|
public const EPSG_ST_KITTS_1955 = 'urn:ogc:def:datum:EPSG::6605'; |
|
7517
|
|
|
|
|
7518
|
|
|
/** |
|
7519
|
|
|
* St. Lawrence Island |
|
7520
|
|
|
* Type: Geodetic |
|
7521
|
|
|
* Extent: USA - Alaska - St Lawrence Island |
|
7522
|
|
|
* Many Alaskan islands were never on NAD27 but rather on independent datums. NADCON conversion program provides |
|
7523
|
|
|
* transformation from St. Lawrence Island Datum to NAD83 (original 1986 realization) - making the transformation |
|
7524
|
|
|
* appear to user as if from NAD27. |
|
7525
|
|
|
*/ |
|
7526
|
|
|
public const EPSG_ST_LAWRENCE_ISLAND = 'urn:ogc:def:datum:EPSG::6136'; |
|
7527
|
|
|
|
|
7528
|
|
|
/** |
|
7529
|
|
|
* St. Lucia 1955 |
|
7530
|
|
|
* Type: Geodetic |
|
7531
|
|
|
* Extent: St Lucia - onshore |
|
7532
|
|
|
* Fundamental point: station DCS3. |
|
7533
|
|
|
*/ |
|
7534
|
|
|
public const EPSG_ST_LUCIA_1955 = 'urn:ogc:def:datum:EPSG::6606'; |
|
7535
|
|
|
|
|
7536
|
|
|
/** |
|
7537
|
|
|
* St. Marys |
|
7538
|
|
|
* Type: Vertical |
|
7539
|
|
|
* Extent: UK - Great Britain - England - Isles of Scilly onshore |
|
7540
|
|
|
* Mean Sea Level at St. Marys 1887. Initially realised through levelling network adjustment, from 2002 redefined |
|
7541
|
|
|
* to be realised through OSGM geoid model. |
|
7542
|
|
|
* Orthometric heights. |
|
7543
|
|
|
*/ |
|
7544
|
|
|
public const EPSG_ST_MARYS = 'urn:ogc:def:datum:EPSG::5147'; |
|
7545
|
|
|
|
|
7546
|
|
|
/** |
|
7547
|
|
|
* St. Paul Island |
|
7548
|
|
|
* Type: Geodetic |
|
7549
|
|
|
* Extent: USA - Alaska - Pribilof Islands - St Paul Island |
|
7550
|
|
|
* Fundamental point latitude: 57°07'16.86"N, longitude: 170°16'24.00"W (of Greenwich). |
|
7551
|
|
|
* Many Alaskan islands were never on NAD27 but rather on independent datums. NADCON conversion program provides |
|
7552
|
|
|
* transformation from St. Paul Island Datum to NAD83 (original 1986 realization) - making the transformation |
|
7553
|
|
|
* appear to user as if from NAD27. |
|
7554
|
|
|
*/ |
|
7555
|
|
|
public const EPSG_ST_PAUL_ISLAND = 'urn:ogc:def:datum:EPSG::6137'; |
|
7556
|
|
|
|
|
7557
|
|
|
/** |
|
7558
|
|
|
* St. Stephen (Ferro) |
|
7559
|
|
|
* Type: Geodetic |
|
7560
|
|
|
* Extent: Austria - Lower Austria. Czechia - Moravia and Czech Silesia |
|
7561
|
|
|
* Fundamental point: St. Stephen's cathedral, Vienna. Latitude: 48°12'31.54"N, longitude: 34°02'27.32"E (of |
|
7562
|
|
|
* Ferro). |
|
7563
|
|
|
*/ |
|
7564
|
|
|
public const EPSG_ST_STEPHEN_FERRO = 'urn:ogc:def:datum:EPSG::1189'; |
|
7565
|
|
|
|
|
7566
|
|
|
/** |
|
7567
|
|
|
* St. Vincent 1945 |
|
7568
|
|
|
* Type: Geodetic |
|
7569
|
|
|
* Extent: St Vincent and the northern Grenadine Islands - onshore |
|
7570
|
|
|
* Fundamental point: station V1, Fort Charlotte. |
|
7571
|
|
|
*/ |
|
7572
|
|
|
public const EPSG_ST_VINCENT_1945 = 'urn:ogc:def:datum:EPSG::6607'; |
|
7573
|
|
|
|
|
7574
|
|
|
/** |
|
7575
|
|
|
* Staatlichen Nivellementnetzes 1976 |
|
7576
|
|
|
* Type: Vertical |
|
7577
|
|
|
* Extent: Germany - states of former East Germany - Berlin, Brandenburg; Mecklenburg-Vorpommern; Sachsen; |
|
7578
|
|
|
* Sachsen-Anhalt; Thuringen |
|
7579
|
|
|
* Network adjusted in 1976. Height at reference point Hoppegarten defined as 1957 value from the UPLN adjustment. |
|
7580
|
|
|
* Datum at Kronstadt is mean sea level of Baltic in 1833. |
|
7581
|
|
|
* Introduced in 1979. Uses Normal heights. Replaced by DHHN92. |
|
7582
|
|
|
*/ |
|
7583
|
|
|
public const EPSG_STAATLICHEN_NIVELLEMENTNETZES_1976 = 'urn:ogc:def:datum:EPSG::5183'; |
|
7584
|
|
|
|
|
7585
|
|
|
/** |
|
7586
|
|
|
* Stewart Island 1977 |
|
7587
|
|
|
* Type: Vertical |
|
7588
|
|
|
* Extent: New Zealand - Stewart Island |
|
7589
|
|
|
* MSL at 3-5 high and low tides at two different locations. |
|
7590
|
|
|
*/ |
|
7591
|
|
|
public const EPSG_STEWART_ISLAND_1977 = 'urn:ogc:def:datum:EPSG::5170'; |
|
7592
|
|
|
|
|
7593
|
|
|
/** |
|
7594
|
|
|
* Stockholm 1938 |
|
7595
|
|
|
* Type: Geodetic |
|
7596
|
|
|
* Extent: Sweden - onshore |
|
7597
|
|
|
* Fundamental point: Stockholm observatory. |
|
7598
|
|
|
* Replaced by RT90 adjustment (datum code 6124). |
|
7599
|
|
|
*/ |
|
7600
|
|
|
public const EPSG_STOCKHOLM_1938 = 'urn:ogc:def:datum:EPSG::6308'; |
|
7601
|
|
|
|
|
7602
|
|
|
/** |
|
7603
|
|
|
* Stockholm 1938 (Stockholm) |
|
7604
|
|
|
* Type: Geodetic |
|
7605
|
|
|
* Extent: Sweden - onshore |
|
7606
|
|
|
* Fundamental point: Stockholm observatory |
|
7607
|
|
|
* Replaced by RT90 adjustment (datum code 6124). |
|
7608
|
|
|
*/ |
|
7609
|
|
|
public const EPSG_STOCKHOLM_1938_STOCKHOLM = 'urn:ogc:def:datum:EPSG::6814'; |
|
7610
|
|
|
|
|
7611
|
|
|
/** |
|
7612
|
|
|
* Stornoway |
|
7613
|
|
|
* Type: Vertical |
|
7614
|
|
|
* Extent: UK - Great Britain - Scotland - Outer Hebrides onshore |
|
7615
|
|
|
* Mean Sea Level at Stornoway 1977 correlated to pre-1900. Initially realised through levelling network |
|
7616
|
|
|
* adjustment, from 2002 redefined to be realised through OSGM geoid model. |
|
7617
|
|
|
* Orthometric heights. |
|
7618
|
|
|
*/ |
|
7619
|
|
|
public const EPSG_STORNOWAY = 'urn:ogc:def:datum:EPSG::5144'; |
|
7620
|
|
|
|
|
7621
|
|
|
/** |
|
7622
|
|
|
* Sule Skerry |
|
7623
|
|
|
* Type: Vertical |
|
7624
|
|
|
* Extent: UK - Great Britain - Scotland - Sule Skerry onshore |
|
7625
|
|
|
* Orthometric heights. |
|
7626
|
|
|
*/ |
|
7627
|
|
|
public const EPSG_SULE_SKERRY = 'urn:ogc:def:datum:EPSG::5142'; |
|
7628
|
|
|
|
|
7629
|
|
|
/** |
|
7630
|
|
|
* Svalbard vertical datum 2006 |
|
7631
|
|
|
* Type: Vertical |
|
7632
|
|
|
* Extent: Arctic (Norway (Svalbard)) - between 81°10'N and 76°10'N |
|
7633
|
|
|
* Mean Sea Level (MSL) at Ny-Ålesund. The SVD2006 surface (arcgp-2006-sk) is the Arctic Gravity Project 2006 |
|
7634
|
|
|
* (arcgp-2006) surface adjusted to two benchmarks tied to the Ny-Ålesund tide gauge. arcgp-2006-sk=arcgp-2006 - |
|
7635
|
|
|
* 0.8986m. |
|
7636
|
|
|
*/ |
|
7637
|
|
|
public const EPSG_SVALBARD_VERTICAL_DATUM_2006 = 'urn:ogc:def:datum:EPSG::1323'; |
|
7638
|
|
|
|
|
7639
|
|
|
/** |
|
7640
|
|
|
* Swiss Terrestrial Reference System 1995 |
|
7641
|
|
|
* Type: Geodetic |
|
7642
|
|
|
* Extent: Liechtenstein; Switzerland |
|
7643
|
|
|
* ETRF89 at epoch 1993.0. |
|
7644
|
|
|
* First realized through CHTRF95 and subsequently CHTRF98, 2004, 2010 and 2016 with an aim to re-measure every 6 |
|
7645
|
|
|
* years. |
|
7646
|
|
|
*/ |
|
7647
|
|
|
public const EPSG_SWISS_TERRESTRIAL_REFERENCE_SYSTEM_1995 = 'urn:ogc:def:datum:EPSG::6151'; |
|
7648
|
|
|
|
|
7649
|
|
|
/** |
|
7650
|
|
|
* System 34 Jylland Intermediate Datum |
|
7651
|
|
|
* Type: Geodetic |
|
7652
|
|
|
* Extent: Denmark - Jutland and Funen - onshore |
|
7653
|
|
|
* S34 fundamental point: Agri Bavnehøj, latitude 56°13'48.217"N, longitude 2°02'22.629"W of Copenhagen meridian |
|
7654
|
|
|
* where FE=FN=200000m. This reconstruction's origin in central Zealand was obtained from inversion of an older |
|
7655
|
|
|
* polynomial transformation to ED50. |
|
7656
|
|
|
* Created in 2022 to support artificial CRS S34J-IRF in the transformation of coordinates between the historic CRS |
|
7657
|
|
|
* S34J and ETRS89. The data is a reconstruction based on information synthesized in historical empirical |
|
7658
|
|
|
* transformations to ED50. |
|
7659
|
|
|
*/ |
|
7660
|
|
|
public const EPSG_SYSTEM_34_JYLLAND_INTERMEDIATE_DATUM = 'urn:ogc:def:datum:EPSG::1332'; |
|
7661
|
|
|
|
|
7662
|
|
|
/** |
|
7663
|
|
|
* System 34 Sjaelland Intermediate Datum |
|
7664
|
|
|
* Type: Geodetic |
|
7665
|
|
|
* Extent: Denmark - Zealand and Lolland (onshore) |
|
7666
|
|
|
* S34 fundamental point: Agri Bavnehøj, latitude 56°13'48.217"N, longitude 2°02'22.629"W of Copenhagen meridian |
|
7667
|
|
|
* where FE=FN=200000m. This reconstruction's origin in central Zealand was obtained from inversion of an older |
|
7668
|
|
|
* polynomial transformation to ED50. |
|
7669
|
|
|
* Created in 2022 to support intermediate CRS S34S-IRF in the transformation of coordinates between the historic |
|
7670
|
|
|
* CRS S34S and ETRS89. The data is a reconstruction based on information synthesized in historical empirical |
|
7671
|
|
|
* transformations to ED50. |
|
7672
|
|
|
*/ |
|
7673
|
|
|
public const EPSG_SYSTEM_34_SJAELLAND_INTERMEDIATE_DATUM = 'urn:ogc:def:datum:EPSG::1337'; |
|
7674
|
|
|
|
|
7675
|
|
|
/** |
|
7676
|
|
|
* System 45 Bornholm Intermediate Datum |
|
7677
|
|
|
* Type: Geodetic |
|
7678
|
|
|
* Extent: Denmark - Bornholm onshore |
|
7679
|
|
|
* Pseudo origin south of Bornholm, obtained from inversion of an older transformation. The historical Danish |
|
7680
|
|
|
* System 45 was ad-hoc and not based on any formal datum and projection definitions. |
|
7681
|
|
|
* Created in 2022 to support intermediate CRS S45B-IRF in the transformation of coordinates between the historic |
|
7682
|
|
|
* CRS S45 and ETRS89. The data are reconstructions based on information synthesized in historical empirical |
|
7683
|
|
|
* transformations to ED50. |
|
7684
|
|
|
*/ |
|
7685
|
|
|
public const EPSG_SYSTEM_45_BORNHOLM_INTERMEDIATE_DATUM = 'urn:ogc:def:datum:EPSG::1346'; |
|
7686
|
|
|
|
|
7687
|
|
|
/** |
|
7688
|
|
|
* System of the Unified Trigonometrical Cadastral Network |
|
7689
|
|
|
* Type: Geodetic |
|
7690
|
|
|
* Extent: Czechia; Slovakia |
|
7691
|
|
|
* Modification of Austrian MGI datum, code 6312. |
|
7692
|
|
|
*/ |
|
7693
|
|
|
public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK = 'urn:ogc:def:datum:EPSG::6156'; |
|
7694
|
|
|
|
|
7695
|
|
|
/** |
|
7696
|
|
|
* System of the Unified Trigonometrical Cadastral Network (Ferro) |
|
7697
|
|
|
* Type: Geodetic |
|
7698
|
|
|
* Extent: Czechia; Slovakia |
|
7699
|
|
|
* Modification of Austrian MGI (Ferro) datum. |
|
7700
|
|
|
*/ |
|
7701
|
|
|
public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK_FERRO = 'urn:ogc:def:datum:EPSG::6818'; |
|
7702
|
|
|
|
|
7703
|
|
|
/** |
|
7704
|
|
|
* System of the Unified Trigonometrical Cadastral Network [JTSK03] |
|
7705
|
|
|
* Type: Geodetic |
|
7706
|
|
|
* Extent: Slovakia. |
|
7707
|
|
|
*/ |
|
7708
|
|
|
public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK_JTSK03 = 'urn:ogc:def:datum:EPSG::1201'; |
|
7709
|
|
|
|
|
7710
|
|
|
/** |
|
7711
|
|
|
* System of the Unified Trigonometrical Cadastral Network/05 |
|
7712
|
|
|
* Type: Geodetic |
|
7713
|
|
|
* Extent: Czechia |
|
7714
|
|
|
* Constrained to S-JTSK but realised through readjustment in projected CRS domain. Related to ETRS89 R05 |
|
7715
|
|
|
* realisation through transformation code 5226. |
|
7716
|
|
|
*/ |
|
7717
|
|
|
public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK_05 = 'urn:ogc:def:datum:EPSG::1052'; |
|
7718
|
|
|
|
|
7719
|
|
|
/** |
|
7720
|
|
|
* System of the Unified Trigonometrical Cadastral Network/05 (Ferro) |
|
7721
|
|
|
* Type: Geodetic |
|
7722
|
|
|
* Extent: Czechia |
|
7723
|
|
|
* Constrained to S-JTSK but realised through readjustment in projected CRS domain. |
|
7724
|
|
|
*/ |
|
7725
|
|
|
public const EPSG_SYSTEM_OF_THE_UNIFIED_TRIGONOMETRICAL_CADASTRAL_NETWORK_05_FERRO = 'urn:ogc:def:datum:EPSG::1055'; |
|
7726
|
|
|
|
|
7727
|
|
|
/** |
|
7728
|
|
|
* TM65 |
|
7729
|
|
|
* Type: Geodetic |
|
7730
|
|
|
* Extent: Ireland - onshore. UK - Northern Ireland (Ulster) - onshore |
|
7731
|
|
|
* Adjusted to best mean fit 12 stations of the OSNI 1952 primary adjustment. |
|
7732
|
|
|
* Differences between OSNI 1952 and TM65 at these stations are RMS 0.25m east, 0.23m north, maximum vector 0.57m. |
|
7733
|
|
|
* TM65 replaced by and not to be confused with Geodetic Datum of 1965 alias 1975 Mapping Adjustment or TM75 (datum |
|
7734
|
|
|
* code 6300). |
|
7735
|
|
|
*/ |
|
7736
|
|
|
public const EPSG_TM65 = 'urn:ogc:def:datum:EPSG::6299'; |
|
7737
|
|
|
|
|
7738
|
|
|
/** |
|
7739
|
|
|
* TPEN11 Intermediate Reference Frame |
|
7740
|
|
|
* Type: Geodetic |
|
7741
|
|
|
* Extent: UK - on or related to the Trans-Pennine rail route from Liverpool via Manchester to Bradford and Leeds |
|
7742
|
|
|
* Defined through the application of the TPEN11 NTv2 transformation (code 9365) to ETRS89 as realized through |
|
7743
|
|
|
* OSNet v2009 CORS. |
|
7744
|
|
|
* Created in 2020 to support intermediate CRS "TPEN11-IRF" in the emulation of the combined TPEN11 Snake and |
|
7745
|
|
|
* TPEN11ext Snake map projections. |
|
7746
|
|
|
*/ |
|
7747
|
|
|
public const EPSG_TPEN11_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1266'; |
|
7748
|
|
|
|
|
7749
|
|
|
/** |
|
7750
|
|
|
* Tahaa 54 |
|
7751
|
|
|
* Type: Geodetic |
|
7752
|
|
|
* Extent: French Polynesia - Society Islands - Bora Bora, Huahine, Raiatea and Tahaa |
|
7753
|
|
|
* Fundamental point: Tahaa East Base. Latitude: 16°33'20.97"S, longitude: 151°29'06.25"W (of Greenwich). |
|
7754
|
|
|
* Replaced by RGPF (datum code 6687). |
|
7755
|
|
|
*/ |
|
7756
|
|
|
public const EPSG_TAHAA_54 = 'urn:ogc:def:datum:EPSG::6629'; |
|
7757
|
|
|
|
|
7758
|
|
|
/** |
|
7759
|
|
|
* Tahaa SAU 2001 |
|
7760
|
|
|
* Type: Vertical |
|
7761
|
|
|
* Extent: French Polynesia - Society Islands - Tahaa |
|
7762
|
|
|
* Fundamental benchmark: RN16 |
|
7763
|
|
|
* Included as part of NGPF - see datum code 5195. |
|
7764
|
|
|
*/ |
|
7765
|
|
|
public const EPSG_TAHAA_SAU_2001 = 'urn:ogc:def:datum:EPSG::5201'; |
|
7766
|
|
|
|
|
7767
|
|
|
/** |
|
7768
|
|
|
* Tahiti 52 |
|
7769
|
|
|
* Type: Geodetic |
|
7770
|
|
|
* Extent: French Polynesia - Society Islands - Moorea and Tahiti |
|
7771
|
|
|
* Fundamental point: Tahiti North Base. Latitude: 17°38'10.0"S, longitude: 149°36'57.8"W (of Greenwich). |
|
7772
|
|
|
* Replaced by Tahiti 79 (datum code 6690) in Tahiti and Moorea 87 (code 6691) in Moorea. |
|
7773
|
|
|
*/ |
|
7774
|
|
|
public const EPSG_TAHITI_52 = 'urn:ogc:def:datum:EPSG::6628'; |
|
7775
|
|
|
|
|
7776
|
|
|
/** |
|
7777
|
|
|
* Tahiti 79 |
|
7778
|
|
|
* Type: Geodetic |
|
7779
|
|
|
* Extent: French Polynesia - Society Islands - Tahiti |
|
7780
|
|
|
* Fundamental point: Tahiti North Base. Latitude: 17°38'10.0"S, longitude: 149°36'57.8"W (of Greenwich). |
|
7781
|
|
|
* Replaces Tahiti 52 (datum code 6628) in Tahiti. Replaced by RGPF (datum code 6687). |
|
7782
|
|
|
*/ |
|
7783
|
|
|
public const EPSG_TAHITI_79 = 'urn:ogc:def:datum:EPSG::6690'; |
|
7784
|
|
|
|
|
7785
|
|
|
/** |
|
7786
|
|
|
* Taiwan Datum 1967 |
|
7787
|
|
|
* Type: Geodetic |
|
7788
|
|
|
* Extent: Taiwan, Republic of China - onshore - Taiwan Island, Penghu (Pescadores) Islands |
|
7789
|
|
|
* Fundamental point: Hu Tzu Shan. Latitude: 23°58'32.34"N, longitude: 120°58'25.975"E (of Greenwich). |
|
7790
|
|
|
* Adopted in 1980. TWD67 uses the GRS 1967 ellipsoid but with 1/f to exactly 2 decimal places. |
|
7791
|
|
|
*/ |
|
7792
|
|
|
public const EPSG_TAIWAN_DATUM_1967 = 'urn:ogc:def:datum:EPSG::1025'; |
|
7793
|
|
|
|
|
7794
|
|
|
/** |
|
7795
|
|
|
* Taiwan Datum 1997 |
|
7796
|
|
|
* Type: Geodetic |
|
7797
|
|
|
* Extent: Taiwan, Republic of China - Taiwan Island, Penghu (Pescadores) Islands |
|
7798
|
|
|
* ITRF94 at epoch 1997.0 |
|
7799
|
|
|
* Adopted in 1998. |
|
7800
|
|
|
*/ |
|
7801
|
|
|
public const EPSG_TAIWAN_DATUM_1997 = 'urn:ogc:def:datum:EPSG::1026'; |
|
7802
|
|
|
|
|
7803
|
|
|
/** |
|
7804
|
|
|
* Taiwan Vertical Datum 2001 |
|
7805
|
|
|
* Type: Vertical |
|
7806
|
|
|
* Extent: Taiwan, Republic of China - onshore - Taiwan Island |
|
7807
|
|
|
* Mean Sea Level at Keelung between 1957 and 1991. |
|
7808
|
|
|
* Orthometric heights. |
|
7809
|
|
|
*/ |
|
7810
|
|
|
public const EPSG_TAIWAN_VERTICAL_DATUM_2001 = 'urn:ogc:def:datum:EPSG::1224'; |
|
7811
|
|
|
|
|
7812
|
|
|
/** |
|
7813
|
|
|
* Tananarive 1925 |
|
7814
|
|
|
* Type: Geodetic |
|
7815
|
|
|
* Extent: Madagascar - onshore and nearshore |
|
7816
|
|
|
* Fundamental point: Tananarive observatory. Latitude: 18°55'02.10"S, longitude: 47°33'06.75"E (of Greenwich). |
|
7817
|
|
|
*/ |
|
7818
|
|
|
public const EPSG_TANANARIVE_1925 = 'urn:ogc:def:datum:EPSG::6297'; |
|
7819
|
|
|
|
|
7820
|
|
|
/** |
|
7821
|
|
|
* Tananarive 1925 (Paris) |
|
7822
|
|
|
* Type: Geodetic |
|
7823
|
|
|
* Extent: Madagascar - onshore |
|
7824
|
|
|
* Fundamental point: Tananarive observatory. Latitude: 21.0191667g S, longitude: 50.23849537g E (of Paris). |
|
7825
|
|
|
*/ |
|
7826
|
|
|
public const EPSG_TANANARIVE_1925_PARIS = 'urn:ogc:def:datum:EPSG::6810'; |
|
7827
|
|
|
|
|
7828
|
|
|
/** |
|
7829
|
|
|
* Tapi Aike |
|
7830
|
|
|
* Type: Geodetic |
|
7831
|
|
|
* Extent: Argentina - Santa Cruz province south of approximately 50°20'S |
|
7832
|
|
|
* Replaced by Campo Inchauspe (code 6221) for topographic mapping, use for oil exploration and production |
|
7833
|
|
|
* continues. |
|
7834
|
|
|
*/ |
|
7835
|
|
|
public const EPSG_TAPI_AIKE = 'urn:ogc:def:datum:EPSG::1257'; |
|
7836
|
|
|
|
|
7837
|
|
|
/** |
|
7838
|
|
|
* Taranaki 1970 |
|
7839
|
|
|
* Type: Vertical |
|
7840
|
|
|
* Extent: New Zealand - North Island - Taranaki vertical CRS area |
|
7841
|
|
|
* MSL at Taranaki harbour 1918-1921. |
|
7842
|
|
|
*/ |
|
7843
|
|
|
public const EPSG_TARANAKI_1970 = 'urn:ogc:def:datum:EPSG::5167'; |
|
7844
|
|
|
|
|
7845
|
|
|
/** |
|
7846
|
|
|
* Tararu 1952 |
|
7847
|
|
|
* Type: Vertical |
|
7848
|
|
|
* Extent: New Zealand - North Island - Tararu vertical CRS area |
|
7849
|
|
|
* MSL at Tararu Point 1922-1923. |
|
7850
|
|
|
*/ |
|
7851
|
|
|
public const EPSG_TARARU_1952 = 'urn:ogc:def:datum:EPSG::5166'; |
|
7852
|
|
|
|
|
7853
|
|
|
/** |
|
7854
|
|
|
* Tenerife |
|
7855
|
|
|
* Type: Vertical |
|
7856
|
|
|
* Extent: Spain - Canary Islands - Tenerife onshore |
|
7857
|
|
|
* Mean Sea Level at Santa Cruz de Tenerife harbour between 1960 and 1970. |
|
7858
|
|
|
* Orthometric heights. |
|
7859
|
|
|
*/ |
|
7860
|
|
|
public const EPSG_TENERIFE = 'urn:ogc:def:datum:EPSG::1281'; |
|
7861
|
|
|
|
|
7862
|
|
|
/** |
|
7863
|
|
|
* Tern Island 1961 |
|
7864
|
|
|
* Type: Geodetic |
|
7865
|
|
|
* Extent: USA - Hawaii - Tern Island and Sorel Atoll |
|
7866
|
|
|
* Fundamental point: station FRIG on tern island, station B4 on Sorol Atoll. |
|
7867
|
|
|
* Two independent astronomic determinations considered to be consistent through adoption of common transformation |
|
7868
|
|
|
* to WGS 84 (see tfm code 15795). |
|
7869
|
|
|
*/ |
|
7870
|
|
|
public const EPSG_TERN_ISLAND_1961 = 'urn:ogc:def:datum:EPSG::6707'; |
|
7871
|
|
|
|
|
7872
|
|
|
/** |
|
7873
|
|
|
* Tete |
|
7874
|
|
|
* Type: Geodetic |
|
7875
|
|
|
* Extent: Mozambique - onshore |
|
7876
|
|
|
* Fundamental point: Tete. |
|
7877
|
|
|
*/ |
|
7878
|
|
|
public const EPSG_TETE = 'urn:ogc:def:datum:EPSG::6127'; |
|
7879
|
|
|
|
|
7880
|
|
|
/** |
|
7881
|
|
|
* Timbalai 1948 |
|
7882
|
|
|
* Type: Geodetic |
|
7883
|
|
|
* Extent: Brunei; Malaysia - East Malaysia (Sabah; Sarawak) |
|
7884
|
|
|
* Fundamental point: Station P85 at Timbalai. Latitude: 5°17' 3.548"N, longitude: 115°10'56.409"E (of |
|
7885
|
|
|
* Greenwich). |
|
7886
|
|
|
* In 1968, the original adjustment was densified in Sarawak and extended to Sabah. |
|
7887
|
|
|
*/ |
|
7888
|
|
|
public const EPSG_TIMBALAI_1948 = 'urn:ogc:def:datum:EPSG::6298'; |
|
7889
|
|
|
|
|
7890
|
|
|
/** |
|
7891
|
|
|
* Tokyo |
|
7892
|
|
|
* Type: Geodetic |
|
7893
|
|
|
* Extent: Japan - onshore; North Korea - onshore; South Korea - onshore |
|
7894
|
|
|
* Fundamental point: Nikon-Keido-Genten. Latitude: 35°39'17.5148"N, longitude: 139°44'40.5020"E (of Greenwich). |
|
7895
|
|
|
* Longitude derived in 1918. |
|
7896
|
|
|
* In Japan, replaces Tokyo 1892 (code 1048) and replaced by Japanese Geodetic Datum 2000 (code 6611). In Korea |
|
7897
|
|
|
* used only for geodetic applications before being replaced by Korean 1985 (code 6162). |
|
7898
|
|
|
*/ |
|
7899
|
|
|
public const EPSG_TOKYO = 'urn:ogc:def:datum:EPSG::6301'; |
|
7900
|
|
|
|
|
7901
|
|
|
/** |
|
7902
|
|
|
* Tokyo 1892 |
|
7903
|
|
|
* Type: Geodetic |
|
7904
|
|
|
* Extent: Japan - onshore; North Korea - onshore; South Korea - onshore |
|
7905
|
|
|
* Fundamental point: Nikon-Keido-Genten. Latitude: 35°39'17.5148"N, longitude: 139°44'30.0970"E (of Greenwich). |
|
7906
|
|
|
* Longitude derived in 1892. |
|
7907
|
|
|
* Extended from Japan to Korea in 1898. In Japan replaced by Tokyo 1918 (datum code 6301). In South Korea replaced |
|
7908
|
|
|
* by Tokyo 1918 (code 6301) only for geodetic purposes; for all other purposes replaced by Korean 1985 (code |
|
7909
|
|
|
* 6162). |
|
7910
|
|
|
*/ |
|
7911
|
|
|
public const EPSG_TOKYO_1892 = 'urn:ogc:def:datum:EPSG::1048'; |
|
7912
|
|
|
|
|
7913
|
|
|
/** |
|
7914
|
|
|
* Tonga Geodetic Datum 2005 |
|
7915
|
|
|
* Type: Geodetic |
|
7916
|
|
|
* Extent: Tonga |
|
7917
|
|
|
* Based on ITRF2000 at epoch 2005.0. |
|
7918
|
|
|
*/ |
|
7919
|
|
|
public const EPSG_TONGA_GEODETIC_DATUM_2005 = 'urn:ogc:def:datum:EPSG::1095'; |
|
7920
|
|
|
|
|
7921
|
|
|
/** |
|
7922
|
|
|
* Trieste |
|
7923
|
|
|
* Type: Vertical |
|
7924
|
|
|
* Extent: Bosnia and Herzegovina; Croatia - onshore; Kosovo; Montenegro - onshore; North Macedonia; Serbia; |
|
7925
|
|
|
* Slovenia - onshore |
|
7926
|
|
|
* Reference point HM1(BV1)-Trieste defined relative to mean sea level at Trieste in 1875. |
|
7927
|
|
|
* Normal-orthometric heights. In Croatia replaced by HVRS71 (datum code 5207). |
|
7928
|
|
|
*/ |
|
7929
|
|
|
public const EPSG_TRIESTE = 'urn:ogc:def:datum:EPSG::1050'; |
|
7930
|
|
|
|
|
7931
|
|
|
/** |
|
7932
|
|
|
* Trinidad 1903 |
|
7933
|
|
|
* Type: Geodetic |
|
7934
|
|
|
* Extent: Trinidad and Tobago - Trinidad |
|
7935
|
|
|
* Station 00, Harbour Master's Flagstaff, Port of Spain. |
|
7936
|
|
|
* Trinidad 1903 / Trinidad Grid coordinates (Clarke's links): 333604.30 E, 436366.91 N (Latitude: 10°38'39.01"N, |
|
7937
|
|
|
* Longitude: 61°30'38.00"W of Greenwich). |
|
7938
|
|
|
*/ |
|
7939
|
|
|
public const EPSG_TRINIDAD_1903 = 'urn:ogc:def:datum:EPSG::6302'; |
|
7940
|
|
|
|
|
7941
|
|
|
/** |
|
7942
|
|
|
* Tristan 1968 |
|
7943
|
|
|
* Type: Geodetic |
|
7944
|
|
|
* Extent: St Helena, Ascension and Tristan da Cunha - Tristan da Cunha island group including Tristan, |
|
7945
|
|
|
* Inaccessible, Nightingale, Middle and Stoltenhoff Islands. |
|
7946
|
|
|
*/ |
|
7947
|
|
|
public const EPSG_TRISTAN_1968 = 'urn:ogc:def:datum:EPSG::6734'; |
|
7948
|
|
|
|
|
7949
|
|
|
/** |
|
7950
|
|
|
* Trucial Coast 1948 |
|
7951
|
|
|
* Type: Geodetic |
|
7952
|
|
|
* Extent: UAE - Abu Dhabi onshore and Dubai onshore |
|
7953
|
|
|
* Fundamental point: TC1. Latitude: 25°23'50.190"N, longitude: 55°26'43.950"E (of Greenwich). |
|
7954
|
|
|
*/ |
|
7955
|
|
|
public const EPSG_TRUCIAL_COAST_1948 = 'urn:ogc:def:datum:EPSG::6303'; |
|
7956
|
|
|
|
|
7957
|
|
|
/** |
|
7958
|
|
|
* Turkish National Reference Frame |
|
7959
|
|
|
* Type: Geodetic |
|
7960
|
|
|
* Extent: Turkey |
|
7961
|
|
|
* ITRF96 at epoch 2005.0. |
|
7962
|
|
|
*/ |
|
7963
|
|
|
public const EPSG_TURKISH_NATIONAL_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1057'; |
|
7964
|
|
|
|
|
7965
|
|
|
/** |
|
7966
|
|
|
* Tutuila Vertical Datum of 1962 |
|
7967
|
|
|
* Type: Vertical |
|
7968
|
|
|
* Extent: American Samoa - Tutuila island |
|
7969
|
|
|
* Mean sea level at Pago Pago harbor, Tutuila, over 10 years 1949-1955 and 1957-1959. Benchmark NO 2 1948 = |
|
7970
|
|
|
* 7.67ftUS. |
|
7971
|
|
|
* Replaced by American Samoa Vertical Datum of 2002 (datum code 1125). |
|
7972
|
|
|
*/ |
|
7973
|
|
|
public const EPSG_TUTUILA_VERTICAL_DATUM_OF_1962 = 'urn:ogc:def:datum:EPSG::1121'; |
|
7974
|
|
|
|
|
7975
|
|
|
/** |
|
7976
|
|
|
* Ukraine 2000 |
|
7977
|
|
|
* Type: Geodetic |
|
7978
|
|
|
* Extent: Ukraine |
|
7979
|
|
|
* Orientation and scale constrained to be same as ITRF2000 at epoch 2005.0. Position is minimised deviation |
|
7980
|
|
|
* between reference ellipsoid and quasigeoid in territory of Ukraine. |
|
7981
|
|
|
*/ |
|
7982
|
|
|
public const EPSG_UKRAINE_2000 = 'urn:ogc:def:datum:EPSG::1077'; |
|
7983
|
|
|
|
|
7984
|
|
|
/** |
|
7985
|
|
|
* Vanua Levu 1915 |
|
7986
|
|
|
* Type: Geodetic |
|
7987
|
|
|
* Extent: Fiji - Vanua Levu and Taveuni |
|
7988
|
|
|
* Latitude origin was obtained astronomically at station Numuiloa = 16°23'38.36"S, longitude origin was obtained |
|
7989
|
|
|
* astronomically at station Suva = 178°25'35.835"E. |
|
7990
|
|
|
* For topographic mapping, replaced by Fiji 1956. For other purposes, replaced by Fiji 1986. |
|
7991
|
|
|
*/ |
|
7992
|
|
|
public const EPSG_VANUA_LEVU_1915 = 'urn:ogc:def:datum:EPSG::6748'; |
|
7993
|
|
|
|
|
7994
|
|
|
/** |
|
7995
|
|
|
* Vientiane 1982 |
|
7996
|
|
|
* Type: Geodetic |
|
7997
|
|
|
* Extent: Laos |
|
7998
|
|
|
* Fundamental point: Vientiane (Nongteng) Astro Pillar. Latitude: 18°01'31.6301"N, longitude: 102°30'56.6999"E |
|
7999
|
|
|
* (of Greenwich). |
|
8000
|
|
|
* Replaced by Lao 1993. |
|
8001
|
|
|
*/ |
|
8002
|
|
|
public const EPSG_VIENTIANE_1982 = 'urn:ogc:def:datum:EPSG::6676'; |
|
8003
|
|
|
|
|
8004
|
|
|
/** |
|
8005
|
|
|
* Vietnam 2000 |
|
8006
|
|
|
* Type: Geodetic |
|
8007
|
|
|
* Extent: Vietnam - onshore |
|
8008
|
|
|
* Point N00, located in the premises of the Land Administration Research Institute, Hoang Quoc Viet Street, Hanoi. |
|
8009
|
|
|
* Replaces Hanoi 1972. |
|
8010
|
|
|
*/ |
|
8011
|
|
|
public const EPSG_VIETNAM_2000 = 'urn:ogc:def:datum:EPSG::6756'; |
|
8012
|
|
|
|
|
8013
|
|
|
/** |
|
8014
|
|
|
* Virgin Islands Vertical Datum of 2009 |
|
8015
|
|
|
* Type: Vertical |
|
8016
|
|
|
* Extent: US Virgin Islands - onshore - St Croix, St John, and St Thomas |
|
8017
|
|
|
* Mean sea level for National Tidal Datum Epoch 1983–2001 at (i) Lime Tree Bay, St. Croix (BM 9751401 M = |
|
8018
|
|
|
* 3.111m) , (ii) Lameshur Bay, St. John (BM 9751381 TIDAL A = 1.077m) , and (iii) Charlotte Amalie, St. Thomas (BM |
|
8019
|
|
|
* 9751639 F = 1.552m). |
|
8020
|
|
|
* Replaces all earlier vertical datums on these islands. |
|
8021
|
|
|
*/ |
|
8022
|
|
|
public const EPSG_VIRGIN_ISLANDS_VERTICAL_DATUM_OF_2009 = 'urn:ogc:def:datum:EPSG::1124'; |
|
8023
|
|
|
|
|
8024
|
|
|
/** |
|
8025
|
|
|
* Viti Levu 1912 |
|
8026
|
|
|
* Type: Geodetic |
|
8027
|
|
|
* Extent: Fiji - Viti Levu island |
|
8028
|
|
|
* Latitude origin was obtained astronomically at station Monavatu = 17°53'28.285"S, longitude origin was obtained |
|
8029
|
|
|
* astronomically at station Suva = 178°25'35.835"E. |
|
8030
|
|
|
* For topographic mapping, replaced by Fiji 1956. For other purposes, replaced by Fiji 1986. |
|
8031
|
|
|
*/ |
|
8032
|
|
|
public const EPSG_VITI_LEVU_1912 = 'urn:ogc:def:datum:EPSG::6752'; |
|
8033
|
|
|
|
|
8034
|
|
|
/** |
|
8035
|
|
|
* Voirol 1875 |
|
8036
|
|
|
* Type: Geodetic |
|
8037
|
|
|
* Extent: Algeria - onshore north of 32°N |
|
8038
|
|
|
* Fundamental point: Voirol. Latitude: 36°45'07.927"N, longitude: 3°02'49.435"E of Greenwich. Uses RGS (and old |
|
8039
|
|
|
* IGN) value of 2°20'13.95"for Greenwich-Paris meridian difference. |
|
8040
|
|
|
* Replaced by Voirol 1879 (code 6671). |
|
8041
|
|
|
*/ |
|
8042
|
|
|
public const EPSG_VOIROL_1875 = 'urn:ogc:def:datum:EPSG::6304'; |
|
8043
|
|
|
|
|
8044
|
|
|
/** |
|
8045
|
|
|
* Voirol 1875 (Paris) |
|
8046
|
|
|
* Type: Geodetic |
|
8047
|
|
|
* Extent: Algeria - onshore north of 32°N |
|
8048
|
|
|
* Fundamental point: Voirol. Latitude: 40.83578 grads N, longitude: 0.78873 grads E (of Paris). |
|
8049
|
|
|
*/ |
|
8050
|
|
|
public const EPSG_VOIROL_1875_PARIS = 'urn:ogc:def:datum:EPSG::6811'; |
|
8051
|
|
|
|
|
8052
|
|
|
/** |
|
8053
|
|
|
* Voirol 1879 |
|
8054
|
|
|
* Type: Geodetic |
|
8055
|
|
|
* Extent: Algeria - onshore north of 32°N |
|
8056
|
|
|
* Fundamental point: Voirol. Latitude: 36°45'08.199"N, longitude: 3°02'49.435"E (of Greenwich). Uses RGS (and |
|
8057
|
|
|
* old IGN) value of 2°20'13.95"for Greenwich-Paris meridian difference. |
|
8058
|
|
|
* Replaces Voirol 1875 (code 6304). |
|
8059
|
|
|
*/ |
|
8060
|
|
|
public const EPSG_VOIROL_1879 = 'urn:ogc:def:datum:EPSG::6671'; |
|
8061
|
|
|
|
|
8062
|
|
|
/** |
|
8063
|
|
|
* Voirol 1879 (Paris) |
|
8064
|
|
|
* Type: Geodetic |
|
8065
|
|
|
* Extent: Algeria - onshore north of 32°N |
|
8066
|
|
|
* Fundamental point: Voirol. Latitude: 40.835864 grads N, longitude: 0.788735 grads E (of Paris). |
|
8067
|
|
|
* Replaces Voirol 1875 (Paris) (code 6811). |
|
8068
|
|
|
*/ |
|
8069
|
|
|
public const EPSG_VOIROL_1879_PARIS = 'urn:ogc:def:datum:EPSG::6821'; |
|
8070
|
|
|
|
|
8071
|
|
|
/** |
|
8072
|
|
|
* WC05 Intermediate Reference Frame |
|
8073
|
|
|
* Type: Geodetic |
|
8074
|
|
|
* Extent: UK - on or related to the west coast mainline rail route from London (Euston) via Carlisle to Glasgow |
|
8075
|
|
|
* Defined through the application of the WC05 NTv2 transformation from ETRS89 as realized through OSNet v2009 |
|
8076
|
|
|
* CORS. |
|
8077
|
|
|
* Created in 2024 to support intermediate CRS "WC05-IRF" in the emulation of the WC05 Snake map projection. |
|
8078
|
|
|
*/ |
|
8079
|
|
|
public const EPSG_WC05_INTERMEDIATE_REFERENCE_FRAME = 'urn:ogc:def:datum:EPSG::1386'; |
|
8080
|
|
|
|
|
8081
|
|
|
/** |
|
8082
|
|
|
* WGS 72 Transit Broadcast Ephemeris |
|
8083
|
|
|
* Type: Dynamic geodetic |
|
8084
|
|
|
* Extent: World |
|
8085
|
|
|
* Alleged datum for use with Transit broadcast ephemeris prior to 1989. Relationship to WGS 72 has changed over |
|
8086
|
|
|
* time. |
|
8087
|
|
|
*/ |
|
8088
|
|
|
public const EPSG_WGS_72_TRANSIT_BROADCAST_EPHEMERIS = 'urn:ogc:def:datum:EPSG::6324'; |
|
8089
|
|
|
|
|
8090
|
|
|
/** |
|
8091
|
|
|
* Waitangi (Chatham Island) 1959 |
|
8092
|
|
|
* Type: Vertical |
|
8093
|
|
|
* Extent: New Zealand - Chatham Island - onshore |
|
8094
|
|
|
* MSL at Waitangi harbour collected in 1959. |
|
8095
|
|
|
*/ |
|
8096
|
|
|
public const EPSG_WAITANGI_CHATHAM_ISLAND_1959 = 'urn:ogc:def:datum:EPSG::5169'; |
|
8097
|
|
|
|
|
8098
|
|
|
/** |
|
8099
|
|
|
* Wake Island 1952 |
|
8100
|
|
|
* Type: Geodetic |
|
8101
|
|
|
* Extent: Wake atoll - onshore. |
|
8102
|
|
|
*/ |
|
8103
|
|
|
public const EPSG_WAKE_ISLAND_1952 = 'urn:ogc:def:datum:EPSG::6733'; |
|
8104
|
|
|
|
|
8105
|
|
|
/** |
|
8106
|
|
|
* Wellington 1953 |
|
8107
|
|
|
* Type: Vertical |
|
8108
|
|
|
* Extent: New Zealand - North Island - Wellington vertical CRS area |
|
8109
|
|
|
* MSL at Wellington harbour 1909-1946. |
|
8110
|
|
|
*/ |
|
8111
|
|
|
public const EPSG_WELLINGTON_1953 = 'urn:ogc:def:datum:EPSG::5168'; |
|
8112
|
|
|
|
|
8113
|
|
|
/** |
|
8114
|
|
|
* Wiener Null |
|
8115
|
|
|
* Type: Vertical |
|
8116
|
|
|
* Extent: Austria - Vienna city state |
|
8117
|
|
|
* Historic benchmark on the Schwedenbrücke over an artificial channel of River Danube (Donaukanal) with GHA |
|
8118
|
|
|
* height of 156.680m. |
|
8119
|
|
|
*/ |
|
8120
|
|
|
public const EPSG_WIENER_NULL = 'urn:ogc:def:datum:EPSG::1267'; |
|
8121
|
|
|
|
|
8122
|
|
|
/** |
|
8123
|
|
|
* World Geodetic System 1966 |
|
8124
|
|
|
* Type: Dynamic geodetic |
|
8125
|
|
|
* Extent: World |
|
8126
|
|
|
* Developed from a worldwide distribution of terrestrial and geodetic satellite observations and defined through a |
|
8127
|
|
|
* set of station coordinates. |
|
8128
|
|
|
* A worldwide 5° × 5° mean free air gravity anomaly field provided the basic data for producing the WGS 66 |
|
8129
|
|
|
* gravimetric geoid. Replaced by WGS 72. |
|
8130
|
|
|
*/ |
|
8131
|
|
|
public const EPSG_WORLD_GEODETIC_SYSTEM_1966 = 'urn:ogc:def:datum:EPSG::6760'; |
|
8132
|
|
|
|
|
8133
|
|
|
/** |
|
8134
|
|
|
* World Geodetic System 1972 |
|
8135
|
|
|
* Type: Dynamic geodetic |
|
8136
|
|
|
* Extent: World |
|
8137
|
|
|
* Developed from a worldwide distribution of terrestrial and geodetic satellite observations and defined through a |
|
8138
|
|
|
* set of station coordinates. |
|
8139
|
|
|
* Used by GPS before 1987. For Transit satellite positioning see also WGS 72BE. |
|
8140
|
|
|
*/ |
|
8141
|
|
|
public const EPSG_WORLD_GEODETIC_SYSTEM_1972 = 'urn:ogc:def:datum:EPSG::6322'; |
|
8142
|
|
|
|
|
8143
|
|
|
/** |
|
8144
|
|
|
* World Geodetic System 1984 (G1150) |
|
8145
|
|
|
* Type: Dynamic geodetic |
|
8146
|
|
|
* Extent: World |
|
8147
|
|
|
* Defined through coordinates of 17 GPS tracking stations adjusted to a subset of 49 IGS stations. Observations |
|
8148
|
|
|
* made in February 2001. The reference epoch for ITRF2000 is 1997.0; station coordinates were transformed to |
|
8149
|
|
|
* 2001.0 using IERS station velocities. |
|
8150
|
|
|
* Replaces World Geodetic System 1984 (G873) from 2002-01-20. Replaced by World Geodetic System 1984 (G1674) from |
|
8151
|
|
|
* 2012-02-08. |
|
8152
|
|
|
*/ |
|
8153
|
|
|
public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G1150 = 'urn:ogc:def:datum:EPSG::1154'; |
|
8154
|
|
|
|
|
8155
|
|
|
/** |
|
8156
|
|
|
* World Geodetic System 1984 (G1674) |
|
8157
|
|
|
* Type: Dynamic geodetic |
|
8158
|
|
|
* Extent: World |
|
8159
|
|
|
* Defined through coordinates of 15 GPS tracking stations adjusted to a subset of IGS stations at epoch 2005.0. |
|
8160
|
|
|
* The IGS station coordinates are considered to be equivalent to ITRF2008. |
|
8161
|
|
|
* Replaces World Geodetic System 1984 (G1150) from 2012-02-08. Replaced by World Geodetic System 1984 (G1762) from |
|
8162
|
|
|
* 2013-10-16. |
|
8163
|
|
|
*/ |
|
8164
|
|
|
public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G1674 = 'urn:ogc:def:datum:EPSG::1155'; |
|
8165
|
|
|
|
|
8166
|
|
|
/** |
|
8167
|
|
|
* World Geodetic System 1984 (G1762) |
|
8168
|
|
|
* Type: Dynamic geodetic |
|
8169
|
|
|
* Extent: World |
|
8170
|
|
|
* Defined through coordinates of 19 GPS tracking stations adjusted to a subset of IGb08 stations at epoch 2005.0 |
|
8171
|
|
|
* using observations made in May 2013. The IGb08 coordinates are considered to be equivalent to ITRF2008. |
|
8172
|
|
|
* Replaces WGS 84 (G1674) from 2013-10-16. Frame was redesignated WGS 84 (G1762') after coordinates of 7 NGA |
|
8173
|
|
|
* tracking stations were changed following station moves and antenna updates 2014-08 to 2015-06. Replaced by WGS |
|
8174
|
|
|
* 84 (G2139) from 2021-01-03. |
|
8175
|
|
|
*/ |
|
8176
|
|
|
public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G1762 = 'urn:ogc:def:datum:EPSG::1156'; |
|
8177
|
|
|
|
|
8178
|
|
|
/** |
|
8179
|
|
|
* World Geodetic System 1984 (G2139) |
|
8180
|
|
|
* Type: Dynamic geodetic |
|
8181
|
|
|
* Extent: World |
|
8182
|
|
|
* Defined through coordinates of 19 GPS tracking stations aligned with a subset of IGb14 stations at epoch 2016.0. |
|
8183
|
|
|
* The IGb14 station coordinates are considered to be equivalent to ITRF2014. |
|
8184
|
|
|
* Replaces World Geodetic System 1984 (G1762) from 2021-01-03. Tracking station coordinate changes on 2021-03-28 |
|
8185
|
|
|
* when NGA implemented IGS definition of antenna phase centre offset. Replaced by World Geodetic System 1984 |
|
8186
|
|
|
* (G2296) from 2024-01-07. |
|
8187
|
|
|
*/ |
|
8188
|
|
|
public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G2139 = 'urn:ogc:def:datum:EPSG::1309'; |
|
8189
|
|
|
|
|
8190
|
|
|
/** |
|
8191
|
|
|
* World Geodetic System 1984 (G2296) |
|
8192
|
|
|
* Type: Dynamic geodetic |
|
8193
|
|
|
* Extent: World |
|
8194
|
|
|
* Aligned to IGS20 through a 7.4 year (2016-01 to 2023-05) time series of daily positions and derived velocities |
|
8195
|
|
|
* of the 17 WGS 84 tracking stations, determined by Precise Point Positioning (PPP) using IGS precise orbits, |
|
8196
|
|
|
* clocks and antenna calibrations. |
|
8197
|
|
|
* WGS 84 (G2296) is considered to be aligned to IGS20 and ITRF2020 at all epochs. Replaces World Geodetic System |
|
8198
|
|
|
* 1984 (G2139) from 2024-01-07. |
|
8199
|
|
|
*/ |
|
8200
|
|
|
public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G2296 = 'urn:ogc:def:datum:EPSG::1383'; |
|
8201
|
|
|
|
|
8202
|
|
|
/** |
|
8203
|
|
|
* World Geodetic System 1984 (G730) |
|
8204
|
|
|
* Type: Dynamic geodetic |
|
8205
|
|
|
* Extent: World |
|
8206
|
|
|
* Defined through coordinates of 10 GPS tracking stations adjusted to a subset of ITRF92 stations at epoch 1994.0. |
|
8207
|
|
|
* The reference epoch for ITRF92 is 1988.0; the ITRF92 station coordinates were transformed to 1994.0 using the |
|
8208
|
|
|
* NNR-NUVEL1 plate motion model. |
|
8209
|
|
|
* Replaces the original Transit-derived World Geodetic System 1984 from 1994-06-29. Replaced by World Geodetic |
|
8210
|
|
|
* System 1984 (G873) from 1997-01-29. |
|
8211
|
|
|
*/ |
|
8212
|
|
|
public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G730 = 'urn:ogc:def:datum:EPSG::1152'; |
|
8213
|
|
|
|
|
8214
|
|
|
/** |
|
8215
|
|
|
* World Geodetic System 1984 (G873) |
|
8216
|
|
|
* Type: Dynamic geodetic |
|
8217
|
|
|
* Extent: World |
|
8218
|
|
|
* Defined through coordinates of 13 GPS tracking stations adjusted to a subset of ITRF94 stations at epoch 1997.0. |
|
8219
|
|
|
* The reference epoch for the adjustment was 1994.0 and the coordinates were propagated to 1997.0 using the |
|
8220
|
|
|
* NNR-NUVEL-1A plate motion model. |
|
8221
|
|
|
* Replaces World Geodetic System 1984 (G730) from 1997-01-29. Replaced by World Geodetic System 1984 (G1150) from |
|
8222
|
|
|
* 2002-01-20. |
|
8223
|
|
|
*/ |
|
8224
|
|
|
public const EPSG_WORLD_GEODETIC_SYSTEM_1984_G873 = 'urn:ogc:def:datum:EPSG::1153'; |
|
8225
|
|
|
|
|
8226
|
|
|
/** |
|
8227
|
|
|
* World Geodetic System 1984 (Transit) |
|
8228
|
|
|
* Type: Dynamic geodetic |
|
8229
|
|
|
* Extent: World |
|
8230
|
|
|
* Defined through coordinates of 5 GPS tracking stations in the Transit doppler positioning NSWC 9Z-2 reference |
|
8231
|
|
|
* frame transformed to be aligned to the BIH Conventional Terrestrial Reference Frame (BTS) at epoch 1984.0. |
|
8232
|
|
|
* The NSWC 9Z-2 origin shifted by -4.5 m along the Z-axis, scale changed by -0.6 x 10E-6 and the reference |
|
8233
|
|
|
* meridian rotated westward by 0.814" to be aligned to the BTS at epoch 1984.0. Replaced by World Geodetic System |
|
8234
|
|
|
* 1984 (G730) from 1994-06-29. |
|
8235
|
|
|
*/ |
|
8236
|
|
|
public const EPSG_WORLD_GEODETIC_SYSTEM_1984_TRANSIT = 'urn:ogc:def:datum:EPSG::1166'; |
|
8237
|
|
|
|
|
8238
|
|
|
/** |
|
8239
|
|
|
* World Geodetic System 1984 ensemble |
|
8240
|
|
|
* Type: Ensemble |
|
8241
|
|
|
* Extent: World |
|
8242
|
|
|
* EPSG::6326 has been the then current realization. No distinction is made between the original and subsequent |
|
8243
|
|
|
* (G730, G873, G1150, G1674, G1762, G2139 and G2296) WGS 84 frames. Since 1997, WGS 84 has been maintained within |
|
8244
|
|
|
* 10cm of the then current ITRF. |
|
8245
|
|
|
*/ |
|
8246
|
|
|
public const EPSG_WORLD_GEODETIC_SYSTEM_1984_ENSEMBLE = 'urn:ogc:def:datum:EPSG::6326'; |
|
8247
|
|
|
|
|
8248
|
|
|
/** |
|
8249
|
|
|
* Xian 1980 |
|
8250
|
|
|
* Type: Geodetic |
|
8251
|
|
|
* Extent: China - onshore |
|
8252
|
|
|
* Xian observatory. |
|
8253
|
|
|
*/ |
|
8254
|
|
|
public const EPSG_XIAN_1980 = 'urn:ogc:def:datum:EPSG::6610'; |
|
8255
|
|
|
|
|
8256
|
|
|
/** |
|
8257
|
|
|
* Yacare |
|
8258
|
|
|
* Type: Geodetic |
|
8259
|
|
|
* Extent: Uruguay - onshore |
|
8260
|
|
|
* Fundamental point: Yacare. Latitude: 30°35'53.68"S, longitude: 57°25'01.30"W (of Greenwich). |
|
8261
|
|
|
*/ |
|
8262
|
|
|
public const EPSG_YACARE = 'urn:ogc:def:datum:EPSG::6309'; |
|
8263
|
|
|
|
|
8264
|
|
|
/** |
|
8265
|
|
|
* Yellow Sea 1956 |
|
8266
|
|
|
* Type: Vertical |
|
8267
|
|
|
* Extent: China - onshore |
|
8268
|
|
|
* 2 years tide readings at Qingdao. |
|
8269
|
|
|
* Replaced by Yellow Sea 1985 datum. |
|
8270
|
|
|
*/ |
|
8271
|
|
|
public const EPSG_YELLOW_SEA_1956 = 'urn:ogc:def:datum:EPSG::5104'; |
|
8272
|
|
|
|
|
8273
|
|
|
/** |
|
8274
|
|
|
* Yellow Sea 1985 |
|
8275
|
|
|
* Type: Vertical |
|
8276
|
|
|
* Extent: China - onshore |
|
8277
|
|
|
* 20 years tide readings at Qingdao. |
|
8278
|
|
|
* Replaces Yellow Sea 1956 datum. |
|
8279
|
|
|
*/ |
|
8280
|
|
|
public const EPSG_YELLOW_SEA_1985 = 'urn:ogc:def:datum:EPSG::5137'; |
|
8281
|
|
|
|
|
8282
|
|
|
/** |
|
8283
|
|
|
* Yemen National Geodetic Network 1996 |
|
8284
|
|
|
* Type: Geodetic |
|
8285
|
|
|
* Extent: Yemen |
|
8286
|
|
|
* Sana'a IGN reference marker. |
|
8287
|
|
|
*/ |
|
8288
|
|
|
public const EPSG_YEMEN_NATIONAL_GEODETIC_NETWORK_1996 = 'urn:ogc:def:datum:EPSG::6163'; |
|
8289
|
|
|
|
|
8290
|
|
|
/** |
|
8291
|
|
|
* Yoff |
|
8292
|
|
|
* Type: Geodetic |
|
8293
|
|
|
* Extent: Senegal |
|
8294
|
|
|
* Fundamental point: Yoff. Latitude: 14°44'41.62"N, longitude: 17°29'07.02"W (of Greenwich). |
|
8295
|
|
|
*/ |
|
8296
|
|
|
public const EPSG_YOFF = 'urn:ogc:def:datum:EPSG::6310'; |
|
8297
|
|
|
|
|
8298
|
|
|
/** |
|
8299
|
|
|
* Zanderij |
|
8300
|
|
|
* Type: Geodetic |
|
8301
|
|
|
* Extent: Suriname. |
|
8302
|
|
|
*/ |
|
8303
|
|
|
public const EPSG_ZANDERIJ = 'urn:ogc:def:datum:EPSG::6311'; |
|
8304
|
|
|
|
|
8305
|
|
|
/** |
|
8306
|
|
|
* Fk89 |
|
8307
|
|
|
* Type: Geodetic |
|
8308
|
|
|
* Extent: Faroe Islands - onshore |
|
8309
|
|
|
* Replaces FD54 for cadastre. |
|
8310
|
|
|
*/ |
|
8311
|
|
|
public const EPSG_FK89 = 'urn:ogc:def:datum:EPSG::6753'; |
|
8312
|
|
|
|
|
8313
|
|
|
/** |
|
8314
|
|
|
* @deprecated use EPSG_LUXEMBOURG_REFERENCE_FRAME instead |
|
8315
|
|
|
*/ |
|
8316
|
|
|
public const EPSG_LUXEMBOURG_1930 = 'urn:ogc:def:datum:EPSG::6181'; |
|
8317
|
|
|
|
|
8318
|
|
|
/** |
|
8319
|
|
|
* @deprecated use EPSG_NIVELLEMENT_GENERAL_DU_LUXEMBOURG_1995 instead |
|
8320
|
|
|
*/ |
|
8321
|
|
|
public const EPSG_NIVELLEMENT_GENERAL_DU_LUXEMBOURG = 'urn:ogc:def:datum:EPSG::5172'; |
|
8322
|
|
|
|
|
8323
|
|
|
/** |
|
8324
|
|
|
* @deprecated use EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A_EPOCH_2010 instead |
|
8325
|
|
|
*/ |
|
8326
|
|
|
public const EPSG_CANADIAN_GEODETIC_VERTICAL_DATUM_OF_2013_CGG2013A = 'urn:ogc:def:datum:EPSG::1256'; |
|
8327
|
|
|
|
|
8328
|
|
|
/** |
|
8329
|
|
|
* @deprecated use EPSG_INDONESIAN_GEOID_2020_VERSION_1 instead |
|
8330
|
|
|
*/ |
|
8331
|
|
|
public const EPSG_INDONESIAN_GEOID_2020 = 'urn:ogc:def:datum:EPSG::1294'; |
|
8332
|
|
|
|
|
8333
|
|
|
/** |
|
8334
|
|
|
* @deprecated use EPSG_LATVIAN_GEODETIC_COORDINATE_SYSTEM_1992 instead |
|
8335
|
|
|
*/ |
|
8336
|
|
|
public const EPSG_LATVIA_1992 = 'urn:ogc:def:datum:EPSG::6661'; |
|
8337
|
|
|
|
|
8338
|
|
|
/** |
|
8339
|
|
|
* @deprecated use EPSG_KOREAN_VERTICAL_DATUM_1964 instead |
|
8340
|
|
|
*/ |
|
8341
|
|
|
public const EPSG_INCHEON = 'urn:ogc:def:datum:EPSG::1049'; |
|
8342
|
|
|
|
|
8343
|
|
|
/** |
|
8344
|
|
|
* @deprecated use EPSG_KOREAN_GEODETIC_DATUM_2002 instead |
|
8345
|
|
|
*/ |
|
8346
|
|
|
public const EPSG_GEOCENTRIC_DATUM_OF_KOREA = 'urn:ogc:def:datum:EPSG::6737'; |
|
8347
|
|
|
|
|
8348
|
|
|
/** |
|
8349
|
|
|
* @deprecated use EPSG_CAIS_DA_FIGUEIRINHA instead |
|
8350
|
|
|
*/ |
|
8351
|
|
|
public const EPSG_CAIS_DA_FIGUEIRINHA_ANGRA_DO_HEROISMO = 'urn:ogc:def:datum:EPSG::1107'; |
|
8352
|
|
|
|
|
8353
|
|
|
/** |
|
8354
|
|
|
* @deprecated use EPSG_CAIS_DA_PONTINHA instead |
|
8355
|
|
|
*/ |
|
8356
|
|
|
public const EPSG_CAIS_DA_PONTINHA_FUNCHAL = 'urn:ogc:def:datum:EPSG::1101'; |
|
8357
|
|
|
|
|
8358
|
|
|
/** |
|
8359
|
|
|
* @deprecated use EPSG_CAIS_DA_VILA instead |
|
8360
|
|
|
*/ |
|
8361
|
|
|
public const EPSG_CAIS_DA_VILA_PORTO_SANTO = 'urn:ogc:def:datum:EPSG::1102'; |
|
8362
|
|
|
|
|
8363
|
|
|
/** |
|
8364
|
|
|
* @deprecated use EPSG_DANSK_VERTIKAL_REFERENCE_1990_2000 instead |
|
8365
|
|
|
*/ |
|
8366
|
|
|
public const EPSG_DANSK_VERTIKAL_REFERENCE_1990 = 'urn:ogc:def:datum:EPSG::5206'; |
|
8367
|
|
|
|
|
8368
|
|
|
/** |
|
8369
|
|
|
* @var array<string, array{name: string, type: string, ellipsoid: ?string, prime_meridian: ?string, frame_reference_epoch: float|DateTimeInterface|null, ensemble?: array<string>, help: string}> |
|
8370
|
|
|
*/ |
|
8371
|
|
|
protected static array $sridData = [ |
|
8372
|
|
|
'urn:ogc:def:datum:EPSG::1024' => [ |
|
8373
|
|
|
'name' => 'Hungarian Datum 1909', |
|
8374
|
|
|
'type' => 'geodetic', |
|
8375
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
8376
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8377
|
|
|
'conventional_rs' => null, |
|
8378
|
|
|
'frame_reference_epoch' => null, |
|
8379
|
|
|
'anchor_epoch' => null, |
|
8380
|
|
|
'extent_name' => 'Hungary', |
|
8381
|
|
|
'help' => 'Fundamental point not given in information source, but presumably Szolohegy which is origin of later HD72. |
|
8382
|
|
|
Replaced earlier HD1863 adjustment also on Bessel ellipsoid. Both HD1863 and HD1909 were originally on Ferro Prime Meridian but subsequently converted to Greenwich. Replaced by HD72 (datum code 6237).', |
|
8383
|
|
|
], |
|
8384
|
|
|
'urn:ogc:def:datum:EPSG::1025' => [ |
|
8385
|
|
|
'name' => 'Taiwan Datum 1967', |
|
8386
|
|
|
'type' => 'geodetic', |
|
8387
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7050', |
|
8388
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8389
|
|
|
'conventional_rs' => null, |
|
8390
|
|
|
'frame_reference_epoch' => null, |
|
8391
|
|
|
'anchor_epoch' => null, |
|
8392
|
|
|
'extent_name' => 'Taiwan - onshore - mainland and Penghu', |
|
8393
|
|
|
'help' => 'Fundamental point: Hu Tzu Shan. Latitude: 23°58\'32.34"N, longitude: 120°58\'25.975"E (of Greenwich). |
|
8394
|
|
|
Adopted in 1980. TWD67 uses the GRS 1967 ellipsoid but with 1/f to exactly 2 decimal places.', |
|
8395
|
|
|
], |
|
8396
|
|
|
'urn:ogc:def:datum:EPSG::1026' => [ |
|
8397
|
|
|
'name' => 'Taiwan Datum 1997', |
|
8398
|
|
|
'type' => 'geodetic', |
|
8399
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8400
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8401
|
|
|
'conventional_rs' => null, |
|
8402
|
|
|
'frame_reference_epoch' => null, |
|
8403
|
|
|
'anchor_epoch' => null, |
|
8404
|
|
|
'extent_name' => 'Taiwan', |
|
8405
|
|
|
'help' => 'ITRF94 at epoch 1997.0 |
|
8406
|
|
|
Adopted in 1998.', |
|
8407
|
|
|
], |
|
8408
|
|
|
'urn:ogc:def:datum:EPSG::1027' => [ |
|
8409
|
|
|
'name' => 'EGM2008 geoid', |
|
8410
|
|
|
'type' => 'vertical', |
|
8411
|
|
|
'ellipsoid' => null, |
|
8412
|
|
|
'prime_meridian' => null, |
|
8413
|
|
|
'conventional_rs' => null, |
|
8414
|
|
|
'frame_reference_epoch' => null, |
|
8415
|
|
|
'anchor_epoch' => null, |
|
8416
|
|
|
'extent_name' => 'World', |
|
8417
|
|
|
'help' => 'Derived through EGM2008 geoid undulation model consisting of spherical harmonic coefficients to degree 2190 and order 2159 applied to the WGS 84 ellipsoid. |
|
8418
|
|
|
Replaces EGM96 geoid (datum code 5171). See transformation codes 3858 and 3859 for 2.5x2.5 and 1x1 arc minute geoid undulation grid files derived from the spherical harmonic coefficients.', |
|
8419
|
|
|
], |
|
8420
|
|
|
'urn:ogc:def:datum:EPSG::1028' => [ |
|
8421
|
|
|
'name' => 'Fao 1979', |
|
8422
|
|
|
'type' => 'vertical', |
|
8423
|
|
|
'ellipsoid' => null, |
|
8424
|
|
|
'prime_meridian' => null, |
|
8425
|
|
|
'conventional_rs' => null, |
|
8426
|
|
|
'frame_reference_epoch' => null, |
|
8427
|
|
|
'anchor_epoch' => null, |
|
8428
|
|
|
'extent_name' => 'Iraq - onshore', |
|
8429
|
|
|
'help' => 'Average sea level at Fao during two-year period in mid/late 1970s. |
|
8430
|
|
|
Levelling network established by Polservice consortium. Replaces Fao (datum code 5149) in Iraq.', |
|
8431
|
|
|
], |
|
8432
|
|
|
'urn:ogc:def:datum:EPSG::1029' => [ |
|
8433
|
|
|
'name' => 'Iraqi Geospatial Reference System', |
|
8434
|
|
|
'type' => 'geodetic', |
|
8435
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8436
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8437
|
|
|
'conventional_rs' => null, |
|
8438
|
|
|
'frame_reference_epoch' => null, |
|
8439
|
|
|
'anchor_epoch' => null, |
|
8440
|
|
|
'extent_name' => 'Iraq', |
|
8441
|
|
|
'help' => 'ITRF2000 at epoch 1997.0 |
|
8442
|
|
|
', |
|
8443
|
|
|
], |
|
8444
|
|
|
'urn:ogc:def:datum:EPSG::1030' => [ |
|
8445
|
|
|
'name' => 'N2000', |
|
8446
|
|
|
'type' => 'vertical', |
|
8447
|
|
|
'ellipsoid' => null, |
|
8448
|
|
|
'prime_meridian' => null, |
|
8449
|
|
|
'conventional_rs' => null, |
|
8450
|
|
|
'frame_reference_epoch' => null, |
|
8451
|
|
|
'anchor_epoch' => null, |
|
8452
|
|
|
'extent_name' => 'Finland - onshore', |
|
8453
|
|
|
'help' => 'Height at Metsaahovi (latitude 60.21762°N, longitude 24.39517°E) of 54.4233m related to EVRF2000 origin through Baltic Levelling Ring adjustment at epoch 2000.0. |
|
8454
|
|
|
Realized through the third precise levelling network. Uses normal heights. Replaces N43 and N60 (datum codes 1213 and 5116). To account for isostatic land uplift use NKG2005 model.', |
|
8455
|
|
|
], |
|
8456
|
|
|
'urn:ogc:def:datum:EPSG::1031' => [ |
|
8457
|
|
|
'name' => 'MGI 1901', |
|
8458
|
|
|
'type' => 'geodetic', |
|
8459
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
8460
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8461
|
|
|
'conventional_rs' => null, |
|
8462
|
|
|
'frame_reference_epoch' => null, |
|
8463
|
|
|
'anchor_epoch' => null, |
|
8464
|
|
|
'extent_name' => 'Europe - former Yugoslavia onshore', |
|
8465
|
|
|
'help' => 'Fundamental point: Hermannskogel. Latitude: 48°16\'15.29"N, longitude: 16°17\'55.04"E (of Greenwich). |
|
8466
|
|
|
The longitude of the datum origin equates to the Albrecht 1902 value for the Ferro meridian of 17°39\'46.02" west of Greenwich. Densified in 1948.', |
|
8467
|
|
|
], |
|
8468
|
|
|
'urn:ogc:def:datum:EPSG::1032' => [ |
|
8469
|
|
|
'name' => 'MOLDREF99', |
|
8470
|
|
|
'type' => 'geodetic', |
|
8471
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8472
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8473
|
|
|
'conventional_rs' => null, |
|
8474
|
|
|
'frame_reference_epoch' => null, |
|
8475
|
|
|
'anchor_epoch' => null, |
|
8476
|
|
|
'extent_name' => 'Moldova', |
|
8477
|
|
|
'help' => 'Densification of ETRS89. |
|
8478
|
|
|
', |
|
8479
|
|
|
], |
|
8480
|
|
|
'urn:ogc:def:datum:EPSG::1033' => [ |
|
8481
|
|
|
'name' => 'Reseau Geodesique de la RDC 2005', |
|
8482
|
|
|
'type' => 'geodetic', |
|
8483
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8484
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8485
|
|
|
'conventional_rs' => null, |
|
8486
|
|
|
'frame_reference_epoch' => null, |
|
8487
|
|
|
'anchor_epoch' => null, |
|
8488
|
|
|
'extent_name' => 'Congo DR (Zaire) - south', |
|
8489
|
|
|
'help' => 'ITRF2000 at epoch 2005.4. |
|
8490
|
|
|
', |
|
8491
|
|
|
], |
|
8492
|
|
|
'urn:ogc:def:datum:EPSG::1034' => [ |
|
8493
|
|
|
'name' => 'Serbian Reference Network 1998', |
|
8494
|
|
|
'type' => 'geodetic', |
|
8495
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8496
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8497
|
|
|
'conventional_rs' => null, |
|
8498
|
|
|
'frame_reference_epoch' => null, |
|
8499
|
|
|
'anchor_epoch' => null, |
|
8500
|
|
|
'extent_name' => 'Serbia', |
|
8501
|
|
|
'help' => 'Densification of ETRS89 in Serbia at epoch 1998.7 based on coordinates of 6 stations in Serbia of Yugoslav Reference Frame (YUREF) 1998 campaign. |
|
8502
|
|
|
Observed 1998-2003.', |
|
8503
|
|
|
], |
|
8504
|
|
|
'urn:ogc:def:datum:EPSG::1035' => [ |
|
8505
|
|
|
'name' => 'Red Geodesica de Canarias 1995', |
|
8506
|
|
|
'type' => 'geodetic', |
|
8507
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8508
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8509
|
|
|
'conventional_rs' => null, |
|
8510
|
|
|
'frame_reference_epoch' => null, |
|
8511
|
|
|
'anchor_epoch' => null, |
|
8512
|
|
|
'extent_name' => 'Spain - Canary Islands', |
|
8513
|
|
|
'help' => 'ITRF93 at epoch 1994.9 at VLBI station INTA at the Canary Spatial Centre (CEC) at Maspalomas on Grand Canary. |
|
8514
|
|
|
Replaces Pico de las Nieves 1968 (PN68) and Pico de las Nieves 1984 (PN84).', |
|
8515
|
|
|
], |
|
8516
|
|
|
'urn:ogc:def:datum:EPSG::1036' => [ |
|
8517
|
|
|
'name' => 'Reseau Geodesique de Mayotte 2004', |
|
8518
|
|
|
'type' => 'geodetic', |
|
8519
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8520
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8521
|
|
|
'conventional_rs' => null, |
|
8522
|
|
|
'frame_reference_epoch' => null, |
|
8523
|
|
|
'anchor_epoch' => null, |
|
8524
|
|
|
'extent_name' => 'Mayotte', |
|
8525
|
|
|
'help' => 'ITRF2000 at epoch 2004.0 |
|
8526
|
|
|
Replaces Combani 1950 (datum code 6632) except for cadastral purposes. (Cadastre 1997 (datum code 1037) used for cadastral purposes).', |
|
8527
|
|
|
], |
|
8528
|
|
|
'urn:ogc:def:datum:EPSG::1037' => [ |
|
8529
|
|
|
'name' => 'Cadastre 1997', |
|
8530
|
|
|
'type' => 'geodetic', |
|
8531
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
8532
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8533
|
|
|
'conventional_rs' => null, |
|
8534
|
|
|
'frame_reference_epoch' => null, |
|
8535
|
|
|
'anchor_epoch' => null, |
|
8536
|
|
|
'extent_name' => 'Mayotte - onshore', |
|
8537
|
|
|
'help' => 'Coordinates of 1 station of Combani 1950 adjustment held fixed. |
|
8538
|
|
|
Derived by adjustment of GPS-observed network which was constrained to Combani 1950 coordinates of one station.', |
|
8539
|
|
|
], |
|
8540
|
|
|
'urn:ogc:def:datum:EPSG::1038' => [ |
|
8541
|
|
|
'name' => 'Reseau Geodesique de Saint Pierre et Miquelon 2006', |
|
8542
|
|
|
'type' => 'geodetic', |
|
8543
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8544
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8545
|
|
|
'conventional_rs' => null, |
|
8546
|
|
|
'frame_reference_epoch' => null, |
|
8547
|
|
|
'anchor_epoch' => null, |
|
8548
|
|
|
'extent_name' => 'St Pierre and Miquelon', |
|
8549
|
|
|
'help' => 'ITRF2000 at epoch 2006.0 |
|
8550
|
|
|
Replaces Saint Pierre et Miquelon 1950 (datum code 6638).', |
|
8551
|
|
|
], |
|
8552
|
|
|
'urn:ogc:def:datum:EPSG::1039' => [ |
|
8553
|
|
|
'name' => 'New Zealand Vertical Datum 2009', |
|
8554
|
|
|
'type' => 'vertical', |
|
8555
|
|
|
'ellipsoid' => null, |
|
8556
|
|
|
'prime_meridian' => null, |
|
8557
|
|
|
'conventional_rs' => null, |
|
8558
|
|
|
'frame_reference_epoch' => null, |
|
8559
|
|
|
'anchor_epoch' => null, |
|
8560
|
|
|
'extent_name' => 'New Zealand', |
|
8561
|
|
|
'help' => 'New Zealand Quasigeoid 2009 which is defined by the application of the NZ geoid 2009 grid to NZGD2000 ellipsoidal heights. See transformation code 4459. |
|
8562
|
|
|
', |
|
8563
|
|
|
], |
|
8564
|
|
|
'urn:ogc:def:datum:EPSG::1040' => [ |
|
8565
|
|
|
'name' => 'Dunedin-Bluff 1960', |
|
8566
|
|
|
'type' => 'vertical', |
|
8567
|
|
|
'ellipsoid' => null, |
|
8568
|
|
|
'prime_meridian' => null, |
|
8569
|
|
|
'conventional_rs' => null, |
|
8570
|
|
|
'frame_reference_epoch' => null, |
|
8571
|
|
|
'anchor_epoch' => null, |
|
8572
|
|
|
'extent_name' => 'New Zealand - South Island - Dunedin-Bluff vcrs', |
|
8573
|
|
|
'help' => 'Common adjustment of Dunedin 1958 and Bluff 1955 networks. |
|
8574
|
|
|
', |
|
8575
|
|
|
], |
|
8576
|
|
|
'urn:ogc:def:datum:EPSG::1041' => [ |
|
8577
|
|
|
'name' => 'Autonomous Regions of Portugal 2008', |
|
8578
|
|
|
'type' => 'geodetic', |
|
8579
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8580
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8581
|
|
|
'conventional_rs' => null, |
|
8582
|
|
|
'frame_reference_epoch' => null, |
|
8583
|
|
|
'anchor_epoch' => null, |
|
8584
|
|
|
'extent_name' => 'Portugal - Azores and Madeira', |
|
8585
|
|
|
'help' => 'ITRF93 as derived from the 1994 TransAtlantic Network for Geodynamics and Oceanography (TANGO) project. |
|
8586
|
|
|
Replaces older classical datums for Azores and Madeira archipelagos.', |
|
8587
|
|
|
], |
|
8588
|
|
|
'urn:ogc:def:datum:EPSG::1042' => [ |
|
8589
|
|
|
'name' => 'Mexico ITRF92', |
|
8590
|
|
|
'type' => 'geodetic', |
|
8591
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8592
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8593
|
|
|
'conventional_rs' => null, |
|
8594
|
|
|
'frame_reference_epoch' => null, |
|
8595
|
|
|
'anchor_epoch' => null, |
|
8596
|
|
|
'extent_name' => 'Mexico', |
|
8597
|
|
|
'help' => 'ITRF1992 at epoch 1988.00. |
|
8598
|
|
|
Realized by a frame of 15 active GPS stations observed and adjusted in the ITRF1992. Includes ties to tide gauges. Replaces NAD27 (datum code 6267). Replaced by Mexico ITRF2008 (datum code 1120) from December 2010.', |
|
8599
|
|
|
], |
|
8600
|
|
|
'urn:ogc:def:datum:EPSG::1043' => [ |
|
8601
|
|
|
'name' => 'China 2000', |
|
8602
|
|
|
'type' => 'geodetic', |
|
8603
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::1024', |
|
8604
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8605
|
|
|
'conventional_rs' => null, |
|
8606
|
|
|
'frame_reference_epoch' => null, |
|
8607
|
|
|
'anchor_epoch' => null, |
|
8608
|
|
|
'extent_name' => 'China', |
|
8609
|
|
|
'help' => 'ITRF97 at epoch 2000.0 |
|
8610
|
|
|
Combined adjustment of astro-geodetic observations as used for Xian 1980 and GPS control network observed 2000-2003. Adopted July 2008.', |
|
8611
|
|
|
], |
|
8612
|
|
|
'urn:ogc:def:datum:EPSG::1044' => [ |
|
8613
|
|
|
'name' => 'Sao Tome', |
|
8614
|
|
|
'type' => 'geodetic', |
|
8615
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
8616
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8617
|
|
|
'conventional_rs' => null, |
|
8618
|
|
|
'frame_reference_epoch' => null, |
|
8619
|
|
|
'anchor_epoch' => null, |
|
8620
|
|
|
'extent_name' => 'Sao Tome and Principe - onshore - Sao Tome', |
|
8621
|
|
|
'help' => 'Fundamental point: Fortaleza. Latitude: 0°20\'49.02"N, longitude: 6°44\'41.85"E (of Greenwich). |
|
8622
|
|
|
', |
|
8623
|
|
|
], |
|
8624
|
|
|
'urn:ogc:def:datum:EPSG::1045' => [ |
|
8625
|
|
|
'name' => 'New Beijing', |
|
8626
|
|
|
'type' => 'geodetic', |
|
8627
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024', |
|
8628
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8629
|
|
|
'conventional_rs' => null, |
|
8630
|
|
|
'frame_reference_epoch' => null, |
|
8631
|
|
|
'anchor_epoch' => null, |
|
8632
|
|
|
'extent_name' => 'China - onshore', |
|
8633
|
|
|
'help' => 'Derived by conformal transformation of Xian 1980 adjustment onto Krassowsky ellipsoid. |
|
8634
|
|
|
From 1982 replaces Beijing 1954.', |
|
8635
|
|
|
], |
|
8636
|
|
|
'urn:ogc:def:datum:EPSG::1046' => [ |
|
8637
|
|
|
'name' => 'Principe', |
|
8638
|
|
|
'type' => 'geodetic', |
|
8639
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
8640
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8641
|
|
|
'conventional_rs' => null, |
|
8642
|
|
|
'frame_reference_epoch' => null, |
|
8643
|
|
|
'anchor_epoch' => null, |
|
8644
|
|
|
'extent_name' => 'Sao Tome and Principe - onshore - Principe', |
|
8645
|
|
|
'help' => 'Fundamental point: Morro do Papagaio. Latitude: 1°36\'46.87"N, longitude: 7°23\'39.65"E (of Greenwich). |
|
8646
|
|
|
', |
|
8647
|
|
|
], |
|
8648
|
|
|
'urn:ogc:def:datum:EPSG::1047' => [ |
|
8649
|
|
|
'name' => 'Reseau de Reference des Antilles Francaises 1991', |
|
8650
|
|
|
'type' => 'geodetic', |
|
8651
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8652
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8653
|
|
|
'conventional_rs' => null, |
|
8654
|
|
|
'frame_reference_epoch' => null, |
|
8655
|
|
|
'anchor_epoch' => null, |
|
8656
|
|
|
'extent_name' => 'Caribbean - French Antilles', |
|
8657
|
|
|
'help' => 'WGS 84 coordinates of a single station determined during the 1988 Tango mission. |
|
8658
|
|
|
Replaces Fort Marigot and Sainte Anne (datum codes 6621-22) in Guadeloupe and Fort Desaix (datum code 6625) in Martinique. Replaced by Reseau Geodesique des Antilles Francaises 2009 (datum code 1073).', |
|
8659
|
|
|
], |
|
8660
|
|
|
'urn:ogc:def:datum:EPSG::1048' => [ |
|
8661
|
|
|
'name' => 'Tokyo 1892', |
|
8662
|
|
|
'type' => 'geodetic', |
|
8663
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
8664
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8665
|
|
|
'conventional_rs' => null, |
|
8666
|
|
|
'frame_reference_epoch' => null, |
|
8667
|
|
|
'anchor_epoch' => null, |
|
8668
|
|
|
'extent_name' => 'Asia - Japan and Korea', |
|
8669
|
|
|
'help' => 'Fundamental point: Nikon-Keido-Genten. Latitude: 35°39\'17.5148"N, longitude: 139°44\'30.0970"E (of Greenwich). Longitude derived in 1892. |
|
8670
|
|
|
Extended from Japan to Korea in 1898. In Japan replaced by Tokyo 1918 (datum code 6301). In South Korea replaced by Tokyo 1918 (code 6301) only for geodetic purposes; for all other purposes replaced by Korean 1985 (code 6162).', |
|
8671
|
|
|
], |
|
8672
|
|
|
'urn:ogc:def:datum:EPSG::1049' => [ |
|
8673
|
|
|
'name' => 'Korean Vertical Datum 1964', |
|
8674
|
|
|
'type' => 'vertical', |
|
8675
|
|
|
'ellipsoid' => null, |
|
8676
|
|
|
'prime_meridian' => null, |
|
8677
|
|
|
'conventional_rs' => null, |
|
8678
|
|
|
'frame_reference_epoch' => null, |
|
8679
|
|
|
'anchor_epoch' => null, |
|
8680
|
|
|
'extent_name' => 'Korea, Republic of (South Korea) - onshore', |
|
8681
|
|
|
'help' => 'MSL 1913-1916 at Incheon Bay for mainland. For far offshore islands the MSL is determined through a local tide gauge. |
|
8682
|
|
|
', |
|
8683
|
|
|
], |
|
8684
|
|
|
'urn:ogc:def:datum:EPSG::1050' => [ |
|
8685
|
|
|
'name' => 'Trieste', |
|
8686
|
|
|
'type' => 'vertical', |
|
8687
|
|
|
'ellipsoid' => null, |
|
8688
|
|
|
'prime_meridian' => null, |
|
8689
|
|
|
'conventional_rs' => null, |
|
8690
|
|
|
'frame_reference_epoch' => null, |
|
8691
|
|
|
'anchor_epoch' => null, |
|
8692
|
|
|
'extent_name' => 'Europe - former Yugoslavia onshore', |
|
8693
|
|
|
'help' => 'Reference point HM1(BV1)-Trieste defined relative to mean sea level at Trieste in 1875. |
|
8694
|
|
|
Normal-orthometric heights. In Croatia replaced by HVRS71 (datum code 5207).', |
|
8695
|
|
|
], |
|
8696
|
|
|
'urn:ogc:def:datum:EPSG::1051' => [ |
|
8697
|
|
|
'name' => 'Genoa 1942', |
|
8698
|
|
|
'type' => 'vertical', |
|
8699
|
|
|
'ellipsoid' => null, |
|
8700
|
|
|
'prime_meridian' => null, |
|
8701
|
|
|
'conventional_rs' => null, |
|
8702
|
|
|
'frame_reference_epoch' => null, |
|
8703
|
|
|
'anchor_epoch' => null, |
|
8704
|
|
|
'extent_name' => 'Italy - mainland and Sicily', |
|
8705
|
|
|
'help' => 'Mean Sea Level at Genoa (Ponte Morosini) 1937-1946. |
|
8706
|
|
|
Orthometric heights.', |
|
8707
|
|
|
], |
|
8708
|
|
|
'urn:ogc:def:datum:EPSG::1052' => [ |
|
8709
|
|
|
'name' => 'System of the Unified Trigonometrical Cadastral Network/05', |
|
8710
|
|
|
'type' => 'geodetic', |
|
8711
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
8712
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8713
|
|
|
'conventional_rs' => null, |
|
8714
|
|
|
'frame_reference_epoch' => null, |
|
8715
|
|
|
'anchor_epoch' => null, |
|
8716
|
|
|
'extent_name' => 'Czechia', |
|
8717
|
|
|
'help' => 'Constrained to S-JTSK but realised through readjustment in projected CRS domain. Related to ETRS89 R05 realisation through transformation code 5226. |
|
8718
|
|
|
', |
|
8719
|
|
|
], |
|
8720
|
|
|
'urn:ogc:def:datum:EPSG::1053' => [ |
|
8721
|
|
|
'name' => 'Sri Lanka Datum 1999', |
|
8722
|
|
|
'type' => 'geodetic', |
|
8723
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015', |
|
8724
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8725
|
|
|
'conventional_rs' => null, |
|
8726
|
|
|
'frame_reference_epoch' => null, |
|
8727
|
|
|
'anchor_epoch' => null, |
|
8728
|
|
|
'extent_name' => 'Sri Lanka - onshore', |
|
8729
|
|
|
'help' => 'Fundamental point: ISM Diyatalawa. Latitude: 6°49\'02.687"N, longitude: 80°57\'40.880"E. |
|
8730
|
|
|
Introduced in 2000.', |
|
8731
|
|
|
], |
|
8732
|
|
|
'urn:ogc:def:datum:EPSG::1054' => [ |
|
8733
|
|
|
'name' => 'Sri Lanka Vertical Datum', |
|
8734
|
|
|
'type' => 'vertical', |
|
8735
|
|
|
'ellipsoid' => null, |
|
8736
|
|
|
'prime_meridian' => null, |
|
8737
|
|
|
'conventional_rs' => null, |
|
8738
|
|
|
'frame_reference_epoch' => null, |
|
8739
|
|
|
'anchor_epoch' => null, |
|
8740
|
|
|
'extent_name' => 'Sri Lanka - onshore', |
|
8741
|
|
|
'help' => 'MSL at Colombo 1884-1889. |
|
8742
|
|
|
Normal-orthometric heights, but often referred to as "orthometric".', |
|
8743
|
|
|
], |
|
8744
|
|
|
'urn:ogc:def:datum:EPSG::1055' => [ |
|
8745
|
|
|
'name' => 'System of the Unified Trigonometrical Cadastral Network/05 (Ferro)', |
|
8746
|
|
|
'type' => 'geodetic', |
|
8747
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
8748
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909', |
|
8749
|
|
|
'conventional_rs' => null, |
|
8750
|
|
|
'frame_reference_epoch' => null, |
|
8751
|
|
|
'anchor_epoch' => null, |
|
8752
|
|
|
'extent_name' => 'Czechia', |
|
8753
|
|
|
'help' => 'Constrained to S-JTSK but realised through readjustment in projected CRS domain. |
|
8754
|
|
|
', |
|
8755
|
|
|
], |
|
8756
|
|
|
'urn:ogc:def:datum:EPSG::1056' => [ |
|
8757
|
|
|
'name' => 'Geocentric Datum Brunei Darussalam 2009', |
|
8758
|
|
|
'type' => 'geodetic', |
|
8759
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8760
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8761
|
|
|
'conventional_rs' => null, |
|
8762
|
|
|
'frame_reference_epoch' => null, |
|
8763
|
|
|
'anchor_epoch' => null, |
|
8764
|
|
|
'extent_name' => 'Brunei', |
|
8765
|
|
|
'help' => 'ITRF2005 at epoch 2009.45 |
|
8766
|
|
|
Replaces use of Timbalai from July 2009.', |
|
8767
|
|
|
], |
|
8768
|
|
|
'urn:ogc:def:datum:EPSG::1057' => [ |
|
8769
|
|
|
'name' => 'Turkish National Reference Frame', |
|
8770
|
|
|
'type' => 'geodetic', |
|
8771
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8772
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8773
|
|
|
'conventional_rs' => null, |
|
8774
|
|
|
'frame_reference_epoch' => null, |
|
8775
|
|
|
'anchor_epoch' => null, |
|
8776
|
|
|
'extent_name' => 'Turkey', |
|
8777
|
|
|
'help' => 'ITRF96 at epoch 2005.0 |
|
8778
|
|
|
', |
|
8779
|
|
|
], |
|
8780
|
|
|
'urn:ogc:def:datum:EPSG::1058' => [ |
|
8781
|
|
|
'name' => 'Bhutan National Geodetic Datum', |
|
8782
|
|
|
'type' => 'geodetic', |
|
8783
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8784
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8785
|
|
|
'conventional_rs' => null, |
|
8786
|
|
|
'frame_reference_epoch' => null, |
|
8787
|
|
|
'anchor_epoch' => null, |
|
8788
|
|
|
'extent_name' => 'Bhutan', |
|
8789
|
|
|
'help' => 'ITRF2000 at epoch 2003.87 |
|
8790
|
|
|
', |
|
8791
|
|
|
], |
|
8792
|
|
|
'urn:ogc:def:datum:EPSG::1059' => [ |
|
8793
|
|
|
'name' => 'Faroe Islands Vertical Reference 2009', |
|
8794
|
|
|
'type' => 'vertical', |
|
8795
|
|
|
'ellipsoid' => null, |
|
8796
|
|
|
'prime_meridian' => null, |
|
8797
|
|
|
'conventional_rs' => null, |
|
8798
|
|
|
'frame_reference_epoch' => null, |
|
8799
|
|
|
'anchor_epoch' => null, |
|
8800
|
|
|
'extent_name' => 'Faroe Islands - onshore', |
|
8801
|
|
|
'help' => ' |
|
8802
|
|
|
Mean Tidal Height System.', |
|
8803
|
|
|
], |
|
8804
|
|
|
'urn:ogc:def:datum:EPSG::1060' => [ |
|
8805
|
|
|
'name' => 'Islands Net 2004', |
|
8806
|
|
|
'type' => 'geodetic', |
|
8807
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8808
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8809
|
|
|
'conventional_rs' => null, |
|
8810
|
|
|
'frame_reference_epoch' => null, |
|
8811
|
|
|
'anchor_epoch' => null, |
|
8812
|
|
|
'extent_name' => 'Iceland', |
|
8813
|
|
|
'help' => 'ITRF2000 at epoch 2004.6. |
|
8814
|
|
|
Replaces ISN93 (datum code 6659). Replaced by ISN2016 (datum code 1087).', |
|
8815
|
|
|
], |
|
8816
|
|
|
'urn:ogc:def:datum:EPSG::1061' => [ |
|
8817
|
|
|
'name' => 'International Terrestrial Reference Frame 2008', |
|
8818
|
|
|
'type' => 'dynamic geodetic', |
|
8819
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8820
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8821
|
|
|
'conventional_rs' => null, |
|
8822
|
|
|
'frame_reference_epoch' => 2005.0, |
|
8823
|
|
|
'anchor_epoch' => null, |
|
8824
|
|
|
'extent_name' => 'World', |
|
8825
|
|
|
'help' => 'Origin at geocentre. The ITRF2008 origin is defined in such a way that there are null translation parameters at epoch 2005.0 and null translation rates between the ITRF2008 and the ILRS SLR time series. |
|
8826
|
|
|
Realization of the IERS Terrestrial Reference System (ITRS) from 2012. Replaces ITRF2005 (code 6896).', |
|
8827
|
|
|
], |
|
8828
|
|
|
'urn:ogc:def:datum:EPSG::1062' => [ |
|
8829
|
|
|
'name' => 'Posiciones Geodesicas Argentinas 2007', |
|
8830
|
|
|
'type' => 'geodetic', |
|
8831
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
8832
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8833
|
|
|
'conventional_rs' => null, |
|
8834
|
|
|
'frame_reference_epoch' => null, |
|
8835
|
|
|
'anchor_epoch' => null, |
|
8836
|
|
|
'extent_name' => 'Argentina', |
|
8837
|
|
|
'help' => 'Coordinates of the geodetic network of 211 high accuracy surveyed points (178 passive and 33 continuously operating) defining the National Geodetic System (Sistema Geodésico Nacional) based on ITRF2005 at epoch 2006.632. |
|
8838
|
|
|
Adopted by order of the Director of the National Geographic Institute on 15th May 2009 as the new National Geodetic Reference Frame. Replaces POSGAR 94.', |
|
8839
|
|
|
], |
|
8840
|
|
|
'urn:ogc:def:datum:EPSG::1063' => [ |
|
8841
|
|
|
'name' => 'Marco Geodesico Nacional de Bolivia', |
|
8842
|
|
|
'type' => 'geodetic', |
|
8843
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8844
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8845
|
|
|
'conventional_rs' => null, |
|
8846
|
|
|
'frame_reference_epoch' => null, |
|
8847
|
|
|
'anchor_epoch' => null, |
|
8848
|
|
|
'extent_name' => 'Bolivia', |
|
8849
|
|
|
'help' => 'IGS05 (ITRF2005) at epoch 2010.2. Densification of SIRGAS95 network in Bolivia, consisting of 125 passive geodetic stations and 8 continuous recording GPS stations. |
|
8850
|
|
|
Densification of SIRGAS 1995 within Bolivia. Replaces PSAD56 (datum code 6248) in Bolivia.', |
|
8851
|
|
|
], |
|
8852
|
|
|
'urn:ogc:def:datum:EPSG::1064' => [ |
|
8853
|
|
|
'name' => 'SIRGAS-Chile realization 1 epoch 2002', |
|
8854
|
|
|
'type' => 'geodetic', |
|
8855
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8856
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8857
|
|
|
'conventional_rs' => null, |
|
8858
|
|
|
'frame_reference_epoch' => null, |
|
8859
|
|
|
'anchor_epoch' => null, |
|
8860
|
|
|
'extent_name' => 'Chile', |
|
8861
|
|
|
'help' => 'ITRF2000 at epoch 2002.0. Densification of SIRGAS 2000 network in Chile, consisting of 650 monumented stations. |
|
8862
|
|
|
Densification of SIRGAS 2000 within Chile. Replaces PSAD56 (datum code 6248) in Chile, HITO XVIII (datum code 6254) in Chilean Tierra del Fuego and Easter Island 1967 (datum code 6719) in Easter Island. Replaced by SIRGAS-Chile 2010 (datum code 1243).', |
|
8863
|
|
|
], |
|
8864
|
|
|
'urn:ogc:def:datum:EPSG::1065' => [ |
|
8865
|
|
|
'name' => 'Costa Rica 2005', |
|
8866
|
|
|
'type' => 'geodetic', |
|
8867
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
8868
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8869
|
|
|
'conventional_rs' => null, |
|
8870
|
|
|
'frame_reference_epoch' => null, |
|
8871
|
|
|
'anchor_epoch' => null, |
|
8872
|
|
|
'extent_name' => 'Costa Rica', |
|
8873
|
|
|
'help' => 'ITRF2000 at epoch 2005.83. Network of 34 GPS stations throughout the country, five of which were connected to four Caribbean area ITRF stations. |
|
8874
|
|
|
Replaces Ocotepeque (datum code 1070) in Costa Rica from March 2007.', |
|
8875
|
|
|
], |
|
8876
|
|
|
'urn:ogc:def:datum:EPSG::1066' => [ |
|
8877
|
|
|
'name' => 'Sistema Geodesico Nacional de Panama MACARIO SOLIS', |
|
8878
|
|
|
'type' => 'geodetic', |
|
8879
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8880
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8881
|
|
|
'conventional_rs' => null, |
|
8882
|
|
|
'frame_reference_epoch' => null, |
|
8883
|
|
|
'anchor_epoch' => null, |
|
8884
|
|
|
'extent_name' => 'Panama', |
|
8885
|
|
|
'help' => 'ITRF2000 at epoch 2000.0. Densification of SIRGAS 2000 network in Panama, consisting of 20 GPS stations throughout the country. |
|
8886
|
|
|
', |
|
8887
|
|
|
], |
|
8888
|
|
|
'urn:ogc:def:datum:EPSG::1067' => [ |
|
8889
|
|
|
'name' => 'Peru96', |
|
8890
|
|
|
'type' => 'geodetic', |
|
8891
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8892
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8893
|
|
|
'conventional_rs' => null, |
|
8894
|
|
|
'frame_reference_epoch' => null, |
|
8895
|
|
|
'anchor_epoch' => null, |
|
8896
|
|
|
'extent_name' => 'Peru', |
|
8897
|
|
|
'help' => 'Densification of SIRGAS95 network (ITRF94 at epoch 1995.4) in Peru, consisting of 47 passive geodetic stations and 3 continuous recording GPS stations. |
|
8898
|
|
|
Densification of SIRGAS 1995 within Peru. Replaces PSAD56 (datum code 6248) in Peru.', |
|
8899
|
|
|
], |
|
8900
|
|
|
'urn:ogc:def:datum:EPSG::1068' => [ |
|
8901
|
|
|
'name' => 'SIRGAS-ROU98', |
|
8902
|
|
|
'type' => 'geodetic', |
|
8903
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
8904
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8905
|
|
|
'conventional_rs' => null, |
|
8906
|
|
|
'frame_reference_epoch' => null, |
|
8907
|
|
|
'anchor_epoch' => null, |
|
8908
|
|
|
'extent_name' => 'Uruguay', |
|
8909
|
|
|
'help' => 'Densification of SIRGAS95 network in Uruguay, consisting of 17 passive geodetic stations and 3 continuous recording GPS stations. ITRF94 at epoch 1995.4. |
|
8910
|
|
|
Densification of SIRGAS 1995 within Uruguay. Replaces Yacare (datum code 6309) in Uruguay. Uruguay documentation clearly states use of WGS 84 reference ellipsoid.', |
|
8911
|
|
|
], |
|
8912
|
|
|
'urn:ogc:def:datum:EPSG::1069' => [ |
|
8913
|
|
|
'name' => 'SIRGAS_ES2007.8', |
|
8914
|
|
|
'type' => 'geodetic', |
|
8915
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8916
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8917
|
|
|
'conventional_rs' => null, |
|
8918
|
|
|
'frame_reference_epoch' => null, |
|
8919
|
|
|
'anchor_epoch' => null, |
|
8920
|
|
|
'extent_name' => 'El Salvador', |
|
8921
|
|
|
'help' => 'ITRF2005 at epoch 2007.85. Densification of SIRGAS-CON network in El Salvador, consisting of 38 monumented stations. |
|
8922
|
|
|
SIRGAS-ES2007.8 is the national SIRGAS densification.', |
|
8923
|
|
|
], |
|
8924
|
|
|
'urn:ogc:def:datum:EPSG::1070' => [ |
|
8925
|
|
|
'name' => 'Ocotepeque 1935', |
|
8926
|
|
|
'type' => 'geodetic', |
|
8927
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
8928
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8929
|
|
|
'conventional_rs' => null, |
|
8930
|
|
|
'frame_reference_epoch' => null, |
|
8931
|
|
|
'anchor_epoch' => null, |
|
8932
|
|
|
'extent_name' => 'Central America - Guatemala to Costa Rica', |
|
8933
|
|
|
'help' => 'Fundamental point: Base Norte. Latitude: 14°26\'20.168"N, longitude: 89°11\'33.964"W. |
|
8934
|
|
|
Replaced in Costa Rica by Costa Rica 2005 (CR05) from March 2007 and replaced in El Salvador by SIRGAS_ES2007 from August 2007.', |
|
8935
|
|
|
], |
|
8936
|
|
|
'urn:ogc:def:datum:EPSG::1071' => [ |
|
8937
|
|
|
'name' => 'Sibun Gorge 1922', |
|
8938
|
|
|
'type' => 'geodetic', |
|
8939
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007', |
|
8940
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8941
|
|
|
'conventional_rs' => null, |
|
8942
|
|
|
'frame_reference_epoch' => null, |
|
8943
|
|
|
'anchor_epoch' => null, |
|
8944
|
|
|
'extent_name' => 'Belize - onshore', |
|
8945
|
|
|
'help' => 'Latitude: 17º03\'40.471"N, longitude: 88º37\'54.687"W. |
|
8946
|
|
|
', |
|
8947
|
|
|
], |
|
8948
|
|
|
'urn:ogc:def:datum:EPSG::1072' => [ |
|
8949
|
|
|
'name' => 'Panama-Colon 1911', |
|
8950
|
|
|
'type' => 'geodetic', |
|
8951
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
8952
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8953
|
|
|
'conventional_rs' => null, |
|
8954
|
|
|
'frame_reference_epoch' => null, |
|
8955
|
|
|
'anchor_epoch' => null, |
|
8956
|
|
|
'extent_name' => 'Panama - onshore', |
|
8957
|
|
|
'help' => 'Fundamental point: Balboa Hill. Latitude: 09°04\'57.637"N, longtitude: 79°43\'50.313"W. |
|
8958
|
|
|
Reports of the existence of an Ancon datum are probably erroneous, considering that the origin of the Panamá-Colón Datum of 1911 is at Balboa Hill and the access road up the hill is from the town of Ancon, Canal Zone.', |
|
8959
|
|
|
], |
|
8960
|
|
|
'urn:ogc:def:datum:EPSG::1073' => [ |
|
8961
|
|
|
'name' => 'Reseau Geodesique des Antilles Francaises 2009', |
|
8962
|
|
|
'type' => 'geodetic', |
|
8963
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
8964
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8965
|
|
|
'conventional_rs' => null, |
|
8966
|
|
|
'frame_reference_epoch' => null, |
|
8967
|
|
|
'anchor_epoch' => null, |
|
8968
|
|
|
'extent_name' => 'Caribbean - French Antilles', |
|
8969
|
|
|
'help' => 'ITRF2005 at epoch 2009.0 |
|
8970
|
|
|
Replaces RRAF91 in Martinique and Guadeloupe.', |
|
8971
|
|
|
], |
|
8972
|
|
|
'urn:ogc:def:datum:EPSG::1074' => [ |
|
8973
|
|
|
'name' => 'Corrego Alegre 1961', |
|
8974
|
|
|
'type' => 'geodetic', |
|
8975
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
8976
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8977
|
|
|
'conventional_rs' => null, |
|
8978
|
|
|
'frame_reference_epoch' => null, |
|
8979
|
|
|
'anchor_epoch' => null, |
|
8980
|
|
|
'extent_name' => 'Brazil - Corrego Alegre 1961', |
|
8981
|
|
|
'help' => 'Fundamental point: Corrego Alegre. Latitude: 19°50\'14.91"S, longitude: 48°57\'41.98"W (of Greenwich). |
|
8982
|
|
|
Replaced by Corrego Alegre 1970-72 (datum code 6225). NIMA gives coordinates of origin as latitude: 19°50\'15.14"S, longitude: 48°57\'42.75"W.', |
|
8983
|
|
|
], |
|
8984
|
|
|
'urn:ogc:def:datum:EPSG::1075' => [ |
|
8985
|
|
|
'name' => 'South American Datum 1969(96)', |
|
8986
|
|
|
'type' => 'geodetic', |
|
8987
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7050', |
|
8988
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
8989
|
|
|
'conventional_rs' => null, |
|
8990
|
|
|
'frame_reference_epoch' => null, |
|
8991
|
|
|
'anchor_epoch' => null, |
|
8992
|
|
|
'extent_name' => 'Brazil', |
|
8993
|
|
|
'help' => 'Fundamental point: Chua. Geodetic latitude: 19°45\'41.6527"S; geodetic longitude: 48°06\'04.0639"W (of Greenwich). (Astronomic coordinates: Latitude 19°45\'41.34"S +/- 0.05", longitude 48°06\'07.80"W +/- 0.08"). |
|
8994
|
|
|
SAD69 uses GRS 1967 ellipsoid but with 1/f to exactly 2 decimal places. Replaces original 1969 adjustment (datum code 6618) in Brazil.', |
|
8995
|
|
|
], |
|
8996
|
|
|
'urn:ogc:def:datum:EPSG::1076' => [ |
|
8997
|
|
|
'name' => 'Papua New Guinea Geodetic Datum 1994', |
|
8998
|
|
|
'type' => 'geodetic', |
|
8999
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
9000
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9001
|
|
|
'conventional_rs' => null, |
|
9002
|
|
|
'frame_reference_epoch' => null, |
|
9003
|
|
|
'anchor_epoch' => null, |
|
9004
|
|
|
'extent_name' => 'Papua New Guinea', |
|
9005
|
|
|
'help' => 'ITRF92 at epoch 1994.0. |
|
9006
|
|
|
Adopted 1996. Coincident with WGS 84 in 1994 but rapidly divergent due to significant tectonic motion in PNG.', |
|
9007
|
|
|
], |
|
9008
|
|
|
'urn:ogc:def:datum:EPSG::1077' => [ |
|
9009
|
|
|
'name' => 'Ukraine 2000', |
|
9010
|
|
|
'type' => 'geodetic', |
|
9011
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024', |
|
9012
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9013
|
|
|
'conventional_rs' => null, |
|
9014
|
|
|
'frame_reference_epoch' => null, |
|
9015
|
|
|
'anchor_epoch' => null, |
|
9016
|
|
|
'extent_name' => 'Ukraine', |
|
9017
|
|
|
'help' => 'Orientation and scale constrained to be same as ITRF2000 at epoch 2005.0. Position is minimised deviation between reference ellipsoid and quasigeoid in territory of Ukraine. |
|
9018
|
|
|
', |
|
9019
|
|
|
], |
|
9020
|
|
|
'urn:ogc:def:datum:EPSG::1078' => [ |
|
9021
|
|
|
'name' => 'Fehmarnbelt Datum 2010', |
|
9022
|
|
|
'type' => 'geodetic', |
|
9023
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
9024
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9025
|
|
|
'conventional_rs' => null, |
|
9026
|
|
|
'frame_reference_epoch' => null, |
|
9027
|
|
|
'anchor_epoch' => null, |
|
9028
|
|
|
'extent_name' => 'Europe - Fehmarnbelt outer', |
|
9029
|
|
|
'help' => 'ITRF2005 at epoch 2010.14. |
|
9030
|
|
|
Defined through coordinates of four permanant GNSS stations.', |
|
9031
|
|
|
], |
|
9032
|
|
|
'urn:ogc:def:datum:EPSG::1079' => [ |
|
9033
|
|
|
'name' => 'Fehmarnbelt Vertical Reference 2010', |
|
9034
|
|
|
'type' => 'vertical', |
|
9035
|
|
|
'ellipsoid' => null, |
|
9036
|
|
|
'prime_meridian' => null, |
|
9037
|
|
|
'conventional_rs' => null, |
|
9038
|
|
|
'frame_reference_epoch' => null, |
|
9039
|
|
|
'anchor_epoch' => null, |
|
9040
|
|
|
'extent_name' => 'Europe - Fehmarnbelt inner', |
|
9041
|
|
|
'help' => 'Realised by precise levelling between tide gauges at Marienleuchte (Germany), Rodbyhavn (Denmark) and four Fehmarnbelt project GNSS stations. |
|
9042
|
|
|
', |
|
9043
|
|
|
], |
|
9044
|
|
|
'urn:ogc:def:datum:EPSG::1080' => [ |
|
9045
|
|
|
'name' => 'Lowest Astronomical Tide', |
|
9046
|
|
|
'type' => 'vertical', |
|
9047
|
|
|
'ellipsoid' => null, |
|
9048
|
|
|
'prime_meridian' => null, |
|
9049
|
|
|
'conventional_rs' => null, |
|
9050
|
|
|
'frame_reference_epoch' => null, |
|
9051
|
|
|
'anchor_epoch' => null, |
|
9052
|
|
|
'extent_name' => 'World', |
|
9053
|
|
|
'help' => 'Not specific to any location or epoch. |
|
9054
|
|
|
The lowest tide level which can be predicted to occur under average meteorological conditions and under any combination of astronomical conditions.', |
|
9055
|
|
|
], |
|
9056
|
|
|
'urn:ogc:def:datum:EPSG::1081' => [ |
|
9057
|
|
|
'name' => 'Deutsche Bahn Reference System', |
|
9058
|
|
|
'type' => 'geodetic', |
|
9059
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
9060
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9061
|
|
|
'conventional_rs' => null, |
|
9062
|
|
|
'frame_reference_epoch' => null, |
|
9063
|
|
|
'anchor_epoch' => null, |
|
9064
|
|
|
'extent_name' => 'Germany - onshore', |
|
9065
|
|
|
'help' => 'Defined by transformation from ETRS89 (transformation code 5826) to be an average of DHDN realizations across all German states. |
|
9066
|
|
|
In DB_REF2016 only the vertical CRS component is updated, the geodetic CRS component of DB_REF is unchanged.', |
|
9067
|
|
|
], |
|
9068
|
|
|
'urn:ogc:def:datum:EPSG::1082' => [ |
|
9069
|
|
|
'name' => 'Highest Astronomical Tide', |
|
9070
|
|
|
'type' => 'vertical', |
|
9071
|
|
|
'ellipsoid' => null, |
|
9072
|
|
|
'prime_meridian' => null, |
|
9073
|
|
|
'conventional_rs' => null, |
|
9074
|
|
|
'frame_reference_epoch' => null, |
|
9075
|
|
|
'anchor_epoch' => null, |
|
9076
|
|
|
'extent_name' => 'World', |
|
9077
|
|
|
'help' => 'Not specific to any location or epoch. |
|
9078
|
|
|
The highest tide level which can be predicted to occur under average meteorological conditions and under any combination of astronomical conditions.', |
|
9079
|
|
|
], |
|
9080
|
|
|
'urn:ogc:def:datum:EPSG::1083' => [ |
|
9081
|
|
|
'name' => 'Lower Low Water Large Tide', |
|
9082
|
|
|
'type' => 'vertical', |
|
9083
|
|
|
'ellipsoid' => null, |
|
9084
|
|
|
'prime_meridian' => null, |
|
9085
|
|
|
'conventional_rs' => null, |
|
9086
|
|
|
'frame_reference_epoch' => null, |
|
9087
|
|
|
'anchor_epoch' => null, |
|
9088
|
|
|
'extent_name' => 'World', |
|
9089
|
|
|
'help' => 'Not specific to any location or epoch. |
|
9090
|
|
|
The average of the lowest low waters, one from each of 19 years of observations.', |
|
9091
|
|
|
], |
|
9092
|
|
|
'urn:ogc:def:datum:EPSG::1084' => [ |
|
9093
|
|
|
'name' => 'Higher High Water Large Tide', |
|
9094
|
|
|
'type' => 'vertical', |
|
9095
|
|
|
'ellipsoid' => null, |
|
9096
|
|
|
'prime_meridian' => null, |
|
9097
|
|
|
'conventional_rs' => null, |
|
9098
|
|
|
'frame_reference_epoch' => null, |
|
9099
|
|
|
'anchor_epoch' => null, |
|
9100
|
|
|
'extent_name' => 'World', |
|
9101
|
|
|
'help' => 'Not specific to any location or epoch. |
|
9102
|
|
|
The average of the highest high waters, one from each of 19 years of observations.', |
|
9103
|
|
|
], |
|
9104
|
|
|
'urn:ogc:def:datum:EPSG::1085' => [ |
|
9105
|
|
|
'name' => 'Indian Spring Low Water', |
|
9106
|
|
|
'type' => 'vertical', |
|
9107
|
|
|
'ellipsoid' => null, |
|
9108
|
|
|
'prime_meridian' => null, |
|
9109
|
|
|
'conventional_rs' => null, |
|
9110
|
|
|
'frame_reference_epoch' => null, |
|
9111
|
|
|
'anchor_epoch' => null, |
|
9112
|
|
|
'extent_name' => 'World', |
|
9113
|
|
|
'help' => 'Not specific to any location or epoch. |
|
9114
|
|
|
The level below MSL equal to the sum of the amplitudes of the harmonic constituents M2, S2, K1 and O1. It approximates mean lower low water spring tides (MLLWS).', |
|
9115
|
|
|
], |
|
9116
|
|
|
'urn:ogc:def:datum:EPSG::1086' => [ |
|
9117
|
|
|
'name' => 'Mean Lower Low Water Spring Tides', |
|
9118
|
|
|
'type' => 'vertical', |
|
9119
|
|
|
'ellipsoid' => null, |
|
9120
|
|
|
'prime_meridian' => null, |
|
9121
|
|
|
'conventional_rs' => null, |
|
9122
|
|
|
'frame_reference_epoch' => null, |
|
9123
|
|
|
'anchor_epoch' => null, |
|
9124
|
|
|
'extent_name' => 'World', |
|
9125
|
|
|
'help' => 'Not specific to any location or epoch. |
|
9126
|
|
|
The average height of the lower low water spring tides.', |
|
9127
|
|
|
], |
|
9128
|
|
|
'urn:ogc:def:datum:EPSG::1087' => [ |
|
9129
|
|
|
'name' => 'Mean Low Water Spring Tides', |
|
9130
|
|
|
'type' => 'vertical', |
|
9131
|
|
|
'ellipsoid' => null, |
|
9132
|
|
|
'prime_meridian' => null, |
|
9133
|
|
|
'conventional_rs' => null, |
|
9134
|
|
|
'frame_reference_epoch' => null, |
|
9135
|
|
|
'anchor_epoch' => null, |
|
9136
|
|
|
'extent_name' => 'World', |
|
9137
|
|
|
'help' => 'Not specific to any location or epoch. |
|
9138
|
|
|
The average height of the low waters of spring tides.', |
|
9139
|
|
|
], |
|
9140
|
|
|
'urn:ogc:def:datum:EPSG::1088' => [ |
|
9141
|
|
|
'name' => 'Mean High Water Spring Tides', |
|
9142
|
|
|
'type' => 'vertical', |
|
9143
|
|
|
'ellipsoid' => null, |
|
9144
|
|
|
'prime_meridian' => null, |
|
9145
|
|
|
'conventional_rs' => null, |
|
9146
|
|
|
'frame_reference_epoch' => null, |
|
9147
|
|
|
'anchor_epoch' => null, |
|
9148
|
|
|
'extent_name' => 'World', |
|
9149
|
|
|
'help' => 'Not specific to any location or epoch. |
|
9150
|
|
|
The average height of the high waters of spring tides.', |
|
9151
|
|
|
], |
|
9152
|
|
|
'urn:ogc:def:datum:EPSG::1089' => [ |
|
9153
|
|
|
'name' => 'Mean Lower Low Water', |
|
9154
|
|
|
'type' => 'vertical', |
|
9155
|
|
|
'ellipsoid' => null, |
|
9156
|
|
|
'prime_meridian' => null, |
|
9157
|
|
|
'conventional_rs' => null, |
|
9158
|
|
|
'frame_reference_epoch' => null, |
|
9159
|
|
|
'anchor_epoch' => null, |
|
9160
|
|
|
'extent_name' => 'World', |
|
9161
|
|
|
'help' => 'Not specific to any location or epoch. |
|
9162
|
|
|
The average height of the lower low waters over a 19-year period.', |
|
9163
|
|
|
], |
|
9164
|
|
|
'urn:ogc:def:datum:EPSG::1090' => [ |
|
9165
|
|
|
'name' => 'Mean Higher High Water', |
|
9166
|
|
|
'type' => 'vertical', |
|
9167
|
|
|
'ellipsoid' => null, |
|
9168
|
|
|
'prime_meridian' => null, |
|
9169
|
|
|
'conventional_rs' => null, |
|
9170
|
|
|
'frame_reference_epoch' => null, |
|
9171
|
|
|
'anchor_epoch' => null, |
|
9172
|
|
|
'extent_name' => 'World', |
|
9173
|
|
|
'help' => 'Not specific to any location or epoch. |
|
9174
|
|
|
The average height of the higher high waters over a 19-year period.', |
|
9175
|
|
|
], |
|
9176
|
|
|
'urn:ogc:def:datum:EPSG::1091' => [ |
|
9177
|
|
|
'name' => 'Mean Low Water', |
|
9178
|
|
|
'type' => 'vertical', |
|
9179
|
|
|
'ellipsoid' => null, |
|
9180
|
|
|
'prime_meridian' => null, |
|
9181
|
|
|
'conventional_rs' => null, |
|
9182
|
|
|
'frame_reference_epoch' => null, |
|
9183
|
|
|
'anchor_epoch' => null, |
|
9184
|
|
|
'extent_name' => 'World', |
|
9185
|
|
|
'help' => 'Not specific to any location or epoch. |
|
9186
|
|
|
The average height of all low waters over a 19-year period.', |
|
9187
|
|
|
], |
|
9188
|
|
|
'urn:ogc:def:datum:EPSG::1092' => [ |
|
9189
|
|
|
'name' => 'Mean High Water', |
|
9190
|
|
|
'type' => 'vertical', |
|
9191
|
|
|
'ellipsoid' => null, |
|
9192
|
|
|
'prime_meridian' => null, |
|
9193
|
|
|
'conventional_rs' => null, |
|
9194
|
|
|
'frame_reference_epoch' => null, |
|
9195
|
|
|
'anchor_epoch' => null, |
|
9196
|
|
|
'extent_name' => 'World', |
|
9197
|
|
|
'help' => 'Not specific to any location or epoch. |
|
9198
|
|
|
The average height of the high waters over a 19-year period.', |
|
9199
|
|
|
], |
|
9200
|
|
|
'urn:ogc:def:datum:EPSG::1093' => [ |
|
9201
|
|
|
'name' => 'Low Water', |
|
9202
|
|
|
'type' => 'vertical', |
|
9203
|
|
|
'ellipsoid' => null, |
|
9204
|
|
|
'prime_meridian' => null, |
|
9205
|
|
|
'conventional_rs' => null, |
|
9206
|
|
|
'frame_reference_epoch' => null, |
|
9207
|
|
|
'anchor_epoch' => null, |
|
9208
|
|
|
'extent_name' => 'World', |
|
9209
|
|
|
'help' => 'Not specific to any location or epoch. |
|
9210
|
|
|
The lowest level reached by the water surface in one tidal cycle. When used in inland (non-tidal) waters it is generally defined as a level which the daily mean water level would fall below less than 5% of the time. On a river it is a sloping surface.', |
|
9211
|
|
|
], |
|
9212
|
|
|
'urn:ogc:def:datum:EPSG::1094' => [ |
|
9213
|
|
|
'name' => 'High Water', |
|
9214
|
|
|
'type' => 'vertical', |
|
9215
|
|
|
'ellipsoid' => null, |
|
9216
|
|
|
'prime_meridian' => null, |
|
9217
|
|
|
'conventional_rs' => null, |
|
9218
|
|
|
'frame_reference_epoch' => null, |
|
9219
|
|
|
'anchor_epoch' => null, |
|
9220
|
|
|
'extent_name' => 'World', |
|
9221
|
|
|
'help' => 'Not specific to any location or epoch. |
|
9222
|
|
|
The highest water level reached at a place in one tidal cycle. When used on inland (non-tidal) waters it is generally defined as a level which the daily mean water level exceeds less than 5% of the time.', |
|
9223
|
|
|
], |
|
9224
|
|
|
'urn:ogc:def:datum:EPSG::1095' => [ |
|
9225
|
|
|
'name' => 'Tonga Geodetic Datum 2005', |
|
9226
|
|
|
'type' => 'geodetic', |
|
9227
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
9228
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9229
|
|
|
'conventional_rs' => null, |
|
9230
|
|
|
'frame_reference_epoch' => null, |
|
9231
|
|
|
'anchor_epoch' => null, |
|
9232
|
|
|
'extent_name' => 'Tonga', |
|
9233
|
|
|
'help' => 'Based on ITRF2000 at epoch 2005.0 |
|
9234
|
|
|
', |
|
9235
|
|
|
], |
|
9236
|
|
|
'urn:ogc:def:datum:EPSG::1096' => [ |
|
9237
|
|
|
'name' => 'Norway Normal Null 2000', |
|
9238
|
|
|
'type' => 'vertical', |
|
9239
|
|
|
'ellipsoid' => null, |
|
9240
|
|
|
'prime_meridian' => null, |
|
9241
|
|
|
'conventional_rs' => null, |
|
9242
|
|
|
'frame_reference_epoch' => 2000.0, |
|
9243
|
|
|
'anchor_epoch' => null, |
|
9244
|
|
|
'extent_name' => 'Norway - onshore', |
|
9245
|
|
|
'help' => 'Adjustment is referenced to mean high tide at Amsterdams Peil in 1684. To account for land level movements caused by isostatic rebound, heights are reduced to epoch 2000.0 using values computed from the NKG2005LU uplift model. |
|
9246
|
|
|
Replaces NN54. Uses Normal heights.', |
|
9247
|
|
|
], |
|
9248
|
|
|
'urn:ogc:def:datum:EPSG::1097' => [ |
|
9249
|
|
|
'name' => 'Grand Cayman Vertical Datum 1954', |
|
9250
|
|
|
'type' => 'vertical', |
|
9251
|
|
|
'ellipsoid' => null, |
|
9252
|
|
|
'prime_meridian' => null, |
|
9253
|
|
|
'conventional_rs' => null, |
|
9254
|
|
|
'frame_reference_epoch' => null, |
|
9255
|
|
|
'anchor_epoch' => null, |
|
9256
|
|
|
'extent_name' => 'Cayman Islands - Grand Cayman', |
|
9257
|
|
|
'help' => ' |
|
9258
|
|
|
', |
|
9259
|
|
|
], |
|
9260
|
|
|
'urn:ogc:def:datum:EPSG::1098' => [ |
|
9261
|
|
|
'name' => 'Little Cayman Vertical Datum 1961', |
|
9262
|
|
|
'type' => 'vertical', |
|
9263
|
|
|
'ellipsoid' => null, |
|
9264
|
|
|
'prime_meridian' => null, |
|
9265
|
|
|
'conventional_rs' => null, |
|
9266
|
|
|
'frame_reference_epoch' => null, |
|
9267
|
|
|
'anchor_epoch' => null, |
|
9268
|
|
|
'extent_name' => 'Cayman Islands - Little Cayman', |
|
9269
|
|
|
'help' => ' |
|
9270
|
|
|
', |
|
9271
|
|
|
], |
|
9272
|
|
|
'urn:ogc:def:datum:EPSG::1099' => [ |
|
9273
|
|
|
'name' => 'Cayman Brac Vertical Datum 1961', |
|
9274
|
|
|
'type' => 'vertical', |
|
9275
|
|
|
'ellipsoid' => null, |
|
9276
|
|
|
'prime_meridian' => null, |
|
9277
|
|
|
'conventional_rs' => null, |
|
9278
|
|
|
'frame_reference_epoch' => null, |
|
9279
|
|
|
'anchor_epoch' => null, |
|
9280
|
|
|
'extent_name' => 'Cayman Islands - Cayman Brac', |
|
9281
|
|
|
'help' => ' |
|
9282
|
|
|
', |
|
9283
|
|
|
], |
|
9284
|
|
|
'urn:ogc:def:datum:EPSG::1100' => [ |
|
9285
|
|
|
'name' => 'Cayman Islands Geodetic Datum 2011', |
|
9286
|
|
|
'type' => 'geodetic', |
|
9287
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
9288
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9289
|
|
|
'conventional_rs' => null, |
|
9290
|
|
|
'frame_reference_epoch' => null, |
|
9291
|
|
|
'anchor_epoch' => null, |
|
9292
|
|
|
'extent_name' => 'Cayman Islands', |
|
9293
|
|
|
'help' => 'ITRF2005 at epoch 2011.0 |
|
9294
|
|
|
Replaces GCGD59 (datum code 6723) and SIGD61 (datum code 6726).', |
|
9295
|
|
|
], |
|
9296
|
|
|
'urn:ogc:def:datum:EPSG::1101' => [ |
|
9297
|
|
|
'name' => 'Cais da Pontinha', |
|
9298
|
|
|
'type' => 'vertical', |
|
9299
|
|
|
'ellipsoid' => null, |
|
9300
|
|
|
'prime_meridian' => null, |
|
9301
|
|
|
'conventional_rs' => null, |
|
9302
|
|
|
'frame_reference_epoch' => null, |
|
9303
|
|
|
'anchor_epoch' => null, |
|
9304
|
|
|
'extent_name' => 'Portugal - Madeira and Desertas islands onshore', |
|
9305
|
|
|
'help' => 'Mean Sea Level during 1913 at Cais da Pontinha, Funchal. |
|
9306
|
|
|
Orthometric heights.', |
|
9307
|
|
|
], |
|
9308
|
|
|
'urn:ogc:def:datum:EPSG::1102' => [ |
|
9309
|
|
|
'name' => 'Cais da Vila', |
|
9310
|
|
|
'type' => 'vertical', |
|
9311
|
|
|
'ellipsoid' => null, |
|
9312
|
|
|
'prime_meridian' => null, |
|
9313
|
|
|
'conventional_rs' => null, |
|
9314
|
|
|
'frame_reference_epoch' => null, |
|
9315
|
|
|
'anchor_epoch' => null, |
|
9316
|
|
|
'extent_name' => 'Portugal - Porto Santo island onshore', |
|
9317
|
|
|
'help' => 'Mean Sea Level during 1936 at Cais da Vila, Porto Santo. |
|
9318
|
|
|
Orthometric heights.', |
|
9319
|
|
|
], |
|
9320
|
|
|
'urn:ogc:def:datum:EPSG::1103' => [ |
|
9321
|
|
|
'name' => 'Cais das Velas', |
|
9322
|
|
|
'type' => 'vertical', |
|
9323
|
|
|
'ellipsoid' => null, |
|
9324
|
|
|
'prime_meridian' => null, |
|
9325
|
|
|
'conventional_rs' => null, |
|
9326
|
|
|
'frame_reference_epoch' => null, |
|
9327
|
|
|
'anchor_epoch' => null, |
|
9328
|
|
|
'extent_name' => 'Portugal - Azores C - S Jorge onshore', |
|
9329
|
|
|
'help' => 'Mean Sea Level during 1937 at Cais das Velas. |
|
9330
|
|
|
Orthometric heights.', |
|
9331
|
|
|
], |
|
9332
|
|
|
'urn:ogc:def:datum:EPSG::1104' => [ |
|
9333
|
|
|
'name' => 'Horta', |
|
9334
|
|
|
'type' => 'vertical', |
|
9335
|
|
|
'ellipsoid' => null, |
|
9336
|
|
|
'prime_meridian' => null, |
|
9337
|
|
|
'conventional_rs' => null, |
|
9338
|
|
|
'frame_reference_epoch' => null, |
|
9339
|
|
|
'anchor_epoch' => null, |
|
9340
|
|
|
'extent_name' => 'Portugal - Azores C - Faial onshore', |
|
9341
|
|
|
'help' => 'Mean Sea Level during 1935 at Horta. |
|
9342
|
|
|
Orthometric heights.', |
|
9343
|
|
|
], |
|
9344
|
|
|
'urn:ogc:def:datum:EPSG::1105' => [ |
|
9345
|
|
|
'name' => 'Cais da Madalena', |
|
9346
|
|
|
'type' => 'vertical', |
|
9347
|
|
|
'ellipsoid' => null, |
|
9348
|
|
|
'prime_meridian' => null, |
|
9349
|
|
|
'conventional_rs' => null, |
|
9350
|
|
|
'frame_reference_epoch' => null, |
|
9351
|
|
|
'anchor_epoch' => null, |
|
9352
|
|
|
'extent_name' => 'Portugal - Azores C - Pico onshore', |
|
9353
|
|
|
'help' => 'Mean Sea Level during 1937 at Cais da Madalena. |
|
9354
|
|
|
Orthometric heights.', |
|
9355
|
|
|
], |
|
9356
|
|
|
'urn:ogc:def:datum:EPSG::1106' => [ |
|
9357
|
|
|
'name' => 'Santa Cruz da Graciosa', |
|
9358
|
|
|
'type' => 'vertical', |
|
9359
|
|
|
'ellipsoid' => null, |
|
9360
|
|
|
'prime_meridian' => null, |
|
9361
|
|
|
'conventional_rs' => null, |
|
9362
|
|
|
'frame_reference_epoch' => null, |
|
9363
|
|
|
'anchor_epoch' => null, |
|
9364
|
|
|
'extent_name' => 'Portugal - Azores C - Graciosa onshore', |
|
9365
|
|
|
'help' => 'Mean Sea Level during 1938 at Santa Cruz da Graciosa. |
|
9366
|
|
|
Orthometric heights.', |
|
9367
|
|
|
], |
|
9368
|
|
|
'urn:ogc:def:datum:EPSG::1107' => [ |
|
9369
|
|
|
'name' => 'Cais da Figueirinha', |
|
9370
|
|
|
'type' => 'vertical', |
|
9371
|
|
|
'ellipsoid' => null, |
|
9372
|
|
|
'prime_meridian' => null, |
|
9373
|
|
|
'conventional_rs' => null, |
|
9374
|
|
|
'frame_reference_epoch' => null, |
|
9375
|
|
|
'anchor_epoch' => null, |
|
9376
|
|
|
'extent_name' => 'Portugal - Azores C - Terceira onshore', |
|
9377
|
|
|
'help' => 'Mean Sea Level during 1951 at Cais da Figueirinha, Angra do Heroísmo. |
|
9378
|
|
|
Orthometric heights.', |
|
9379
|
|
|
], |
|
9380
|
|
|
'urn:ogc:def:datum:EPSG::1108' => [ |
|
9381
|
|
|
'name' => 'Santa Cruz das Flores', |
|
9382
|
|
|
'type' => 'vertical', |
|
9383
|
|
|
'ellipsoid' => null, |
|
9384
|
|
|
'prime_meridian' => null, |
|
9385
|
|
|
'conventional_rs' => null, |
|
9386
|
|
|
'frame_reference_epoch' => null, |
|
9387
|
|
|
'anchor_epoch' => null, |
|
9388
|
|
|
'extent_name' => 'Portugal - Azores W - onshore', |
|
9389
|
|
|
'help' => 'Mean Sea Level during 1965 at Santa Cruz das Flores. |
|
9390
|
|
|
Orthometric heights.', |
|
9391
|
|
|
], |
|
9392
|
|
|
'urn:ogc:def:datum:EPSG::1109' => [ |
|
9393
|
|
|
'name' => 'Cais da Vila do Porto', |
|
9394
|
|
|
'type' => 'vertical', |
|
9395
|
|
|
'ellipsoid' => null, |
|
9396
|
|
|
'prime_meridian' => null, |
|
9397
|
|
|
'conventional_rs' => null, |
|
9398
|
|
|
'frame_reference_epoch' => null, |
|
9399
|
|
|
'anchor_epoch' => null, |
|
9400
|
|
|
'extent_name' => 'Portugal - Azores E onshore - Santa Maria and Formigas', |
|
9401
|
|
|
'help' => 'Mean Sea Level during 1965 at Cais da Vila, Porto. |
|
9402
|
|
|
Orthometric heights.', |
|
9403
|
|
|
], |
|
9404
|
|
|
'urn:ogc:def:datum:EPSG::1110' => [ |
|
9405
|
|
|
'name' => 'Ponta Delgada', |
|
9406
|
|
|
'type' => 'vertical', |
|
9407
|
|
|
'ellipsoid' => null, |
|
9408
|
|
|
'prime_meridian' => null, |
|
9409
|
|
|
'conventional_rs' => null, |
|
9410
|
|
|
'frame_reference_epoch' => null, |
|
9411
|
|
|
'anchor_epoch' => null, |
|
9412
|
|
|
'extent_name' => 'Portugal - Azores E - S Miguel onshore', |
|
9413
|
|
|
'help' => 'Mean Sea Level during 1991 at Ponta Delgada. |
|
9414
|
|
|
Orthometric heights.', |
|
9415
|
|
|
], |
|
9416
|
|
|
'urn:ogc:def:datum:EPSG::1111' => [ |
|
9417
|
|
|
'name' => 'Nepal 1981', |
|
9418
|
|
|
'type' => 'geodetic', |
|
9419
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015', |
|
9420
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9421
|
|
|
'conventional_rs' => null, |
|
9422
|
|
|
'frame_reference_epoch' => null, |
|
9423
|
|
|
'anchor_epoch' => null, |
|
9424
|
|
|
'extent_name' => 'Nepal', |
|
9425
|
|
|
'help' => 'Fundamental point: Station 12/157 Nagarkot. Latitude: 27°41\'31.04"N, longitude: 85°31\'20.23"E (of Greenwich). |
|
9426
|
|
|
', |
|
9427
|
|
|
], |
|
9428
|
|
|
'urn:ogc:def:datum:EPSG::1112' => [ |
|
9429
|
|
|
'name' => 'Cyprus Geodetic Reference System 1993', |
|
9430
|
|
|
'type' => 'geodetic', |
|
9431
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
9432
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9433
|
|
|
'conventional_rs' => null, |
|
9434
|
|
|
'frame_reference_epoch' => null, |
|
9435
|
|
|
'anchor_epoch' => null, |
|
9436
|
|
|
'extent_name' => 'Cyprus - onshore', |
|
9437
|
|
|
'help' => 'Station Chionistra (Mount Troodos). Network scale and orientation determined by connection of six stations to ITRF91 in Europe at epoch 1993.1. |
|
9438
|
|
|
Survey plans and maps produced by DLS after 1993.', |
|
9439
|
|
|
], |
|
9440
|
|
|
'urn:ogc:def:datum:EPSG::1113' => [ |
|
9441
|
|
|
'name' => 'Reseau Geodesique des Terres Australes et Antarctiques Francaises 2007', |
|
9442
|
|
|
'type' => 'geodetic', |
|
9443
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
9444
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9445
|
|
|
'conventional_rs' => null, |
|
9446
|
|
|
'frame_reference_epoch' => null, |
|
9447
|
|
|
'anchor_epoch' => null, |
|
9448
|
|
|
'extent_name' => 'French Southern and Antarctic Territories', |
|
9449
|
|
|
'help' => 'ITRF2005 at epoch 2007.274 |
|
9450
|
|
|
Replaces IGN 1963-64 on Amsterdam, Saint-Paul 1969 on St Paul, IGN64 on Crozet, MHM 1954 on Europa, IGN 1962 on Kerguelen, and Petrels 1972 and Perroud 1950 in Adelie Land.', |
|
9451
|
|
|
], |
|
9452
|
|
|
'urn:ogc:def:datum:EPSG::1114' => [ |
|
9453
|
|
|
'name' => 'Israeli Geodetic Datum 2005', |
|
9454
|
|
|
'type' => 'geodetic', |
|
9455
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
9456
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9457
|
|
|
'conventional_rs' => null, |
|
9458
|
|
|
'frame_reference_epoch' => null, |
|
9459
|
|
|
'anchor_epoch' => null, |
|
9460
|
|
|
'extent_name' => 'Israel', |
|
9461
|
|
|
'help' => 'Defined by coordinates of 13 Active Positioning Network (APN) stations in ITRF2000 at epoch 2004.75. A further five APN stations were added in 2006. |
|
9462
|
|
|
Replaces Israel 1993 (datum code 6141). Replaced by IGD05/12 (datum code 1115).', |
|
9463
|
|
|
], |
|
9464
|
|
|
'urn:ogc:def:datum:EPSG::1115' => [ |
|
9465
|
|
|
'name' => 'Israeli Geodetic Datum 2005(2012)', |
|
9466
|
|
|
'type' => 'geodetic', |
|
9467
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
9468
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9469
|
|
|
'conventional_rs' => null, |
|
9470
|
|
|
'frame_reference_epoch' => null, |
|
9471
|
|
|
'anchor_epoch' => null, |
|
9472
|
|
|
'extent_name' => 'Israel', |
|
9473
|
|
|
'help' => 'Datum updated in 2012 with four APN stations removed from definition. Coordinate epoch remains ITRF2000 at epoch 2004.75. |
|
9474
|
|
|
Replaces IGD05 (datum code 1114).', |
|
9475
|
|
|
], |
|
9476
|
|
|
'urn:ogc:def:datum:EPSG::1116' => [ |
|
9477
|
|
|
'name' => 'NAD83 (National Spatial Reference System 2011)', |
|
9478
|
|
|
'type' => 'geodetic', |
|
9479
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
9480
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9481
|
|
|
'conventional_rs' => null, |
|
9482
|
|
|
'frame_reference_epoch' => null, |
|
9483
|
|
|
'anchor_epoch' => null, |
|
9484
|
|
|
'extent_name' => 'USA - CONUS and Alaska; PRVI', |
|
9485
|
|
|
'help' => 'Coordinates of a nationwide adjustment of 79,546 NGS "passive" control stations in CONUS and Alaska, constrained to 1,171 current CORS station coordinates at epoch 2010.0. |
|
9486
|
|
|
Replaces NAD83(NSRS2007). Transformaton code 7807 from ITRF2008 is understood to underlay the CORS station coordinates.', |
|
9487
|
|
|
], |
|
9488
|
|
|
'urn:ogc:def:datum:EPSG::1117' => [ |
|
9489
|
|
|
'name' => 'NAD83 (National Spatial Reference System PA11)', |
|
9490
|
|
|
'type' => 'geodetic', |
|
9491
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
9492
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9493
|
|
|
'conventional_rs' => null, |
|
9494
|
|
|
'frame_reference_epoch' => null, |
|
9495
|
|
|
'anchor_epoch' => null, |
|
9496
|
|
|
'extent_name' => 'Pacific - US interests Pacific plate', |
|
9497
|
|
|
'help' => 'Coordinates of a nationwide adjustment including 345 NGS "passive" control stations constrained to 24 current Pacific CORS station coordinates at epoch 2010.0. |
|
9498
|
|
|
Replaces NAD83(HARN) and NAD83(FBN) in Hawaii and American Samoa. ITRF2008 is understood to underlay the latest CORS station coordinates.', |
|
9499
|
|
|
], |
|
9500
|
|
|
'urn:ogc:def:datum:EPSG::1118' => [ |
|
9501
|
|
|
'name' => 'NAD83 (National Spatial Reference System MA11)', |
|
9502
|
|
|
'type' => 'geodetic', |
|
9503
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
9504
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9505
|
|
|
'conventional_rs' => null, |
|
9506
|
|
|
'frame_reference_epoch' => null, |
|
9507
|
|
|
'anchor_epoch' => null, |
|
9508
|
|
|
'extent_name' => 'Pacific - US interests Mariana plate', |
|
9509
|
|
|
'help' => 'Coordinates of a nationwide adjustment including 171 NGS "passive" control stations constrained to 24 current Pacific CORS station coordinates at epoch 2010.0. |
|
9510
|
|
|
Replaces NAD83(HARN) (GGN93) and NAD83(FBN) in Guam. ITRF2008 is understood to underlay the latest CORS station coordinates.', |
|
9511
|
|
|
], |
|
9512
|
|
|
'urn:ogc:def:datum:EPSG::1119' => [ |
|
9513
|
|
|
'name' => 'Northern Marianas Vertical Datum of 2003', |
|
9514
|
|
|
'type' => 'vertical', |
|
9515
|
|
|
'ellipsoid' => null, |
|
9516
|
|
|
'prime_meridian' => null, |
|
9517
|
|
|
'conventional_rs' => null, |
|
9518
|
|
|
'frame_reference_epoch' => null, |
|
9519
|
|
|
'anchor_epoch' => null, |
|
9520
|
|
|
'extent_name' => 'Northern Mariana Islands - Rota, Saipan and Tinian', |
|
9521
|
|
|
'help' => 'Mean sea level at Tanapag harbor, Saipan. Benchmark 1633227 TIDAL UH-2C = 1.657m relative to National Tidal Datum Epoch 1983-2001. Transferred to Rota (East Harbor, BM TIDAL 3 = 1.482m) and Tinian (Harbor BM TIDAL 1 = 2.361m). |
|
9522
|
|
|
Replaces all earlier vertical datums on these islands.', |
|
9523
|
|
|
], |
|
9524
|
|
|
'urn:ogc:def:datum:EPSG::1120' => [ |
|
9525
|
|
|
'name' => 'Mexico ITRF2008', |
|
9526
|
|
|
'type' => 'geodetic', |
|
9527
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
9528
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9529
|
|
|
'conventional_rs' => null, |
|
9530
|
|
|
'frame_reference_epoch' => null, |
|
9531
|
|
|
'anchor_epoch' => null, |
|
9532
|
|
|
'extent_name' => 'Mexico', |
|
9533
|
|
|
'help' => 'ITRF2008 at epoch 2010.00. |
|
9534
|
|
|
Realised by a frame of 15 active GPS stations observed and adjusted in the ITRF2008. Includes ties to tide gauges. Replaces Mexico ITRF92 (datum code 1042).', |
|
9535
|
|
|
], |
|
9536
|
|
|
'urn:ogc:def:datum:EPSG::1121' => [ |
|
9537
|
|
|
'name' => 'Tutuila Vertical Datum of 1962', |
|
9538
|
|
|
'type' => 'vertical', |
|
9539
|
|
|
'ellipsoid' => null, |
|
9540
|
|
|
'prime_meridian' => null, |
|
9541
|
|
|
'conventional_rs' => null, |
|
9542
|
|
|
'frame_reference_epoch' => null, |
|
9543
|
|
|
'anchor_epoch' => null, |
|
9544
|
|
|
'extent_name' => 'American Samoa - Tutuila island', |
|
9545
|
|
|
'help' => 'Mean sea level at Pago Pago harbor, Tutuila, over 10 years 1949-1955 and 1957-1959. Benchmark NO 2 1948 = 7.67ftUS. |
|
9546
|
|
|
Replaced by American Samoa Vertical Datum of 2002 (datum code 1125).', |
|
9547
|
|
|
], |
|
9548
|
|
|
'urn:ogc:def:datum:EPSG::1122' => [ |
|
9549
|
|
|
'name' => 'Guam Vertical Datum of 1963', |
|
9550
|
|
|
'type' => 'vertical', |
|
9551
|
|
|
'ellipsoid' => null, |
|
9552
|
|
|
'prime_meridian' => null, |
|
9553
|
|
|
'conventional_rs' => null, |
|
9554
|
|
|
'frame_reference_epoch' => null, |
|
9555
|
|
|
'anchor_epoch' => null, |
|
9556
|
|
|
'extent_name' => 'Guam - onshore', |
|
9557
|
|
|
'help' => 'Mean sea level at Apra harbor, Guam, 1949-1962. Benchmark NO 5 1949 = 0.599m. |
|
9558
|
|
|
Replaced by Guam vertical datum of 2004 (datum code 1126).', |
|
9559
|
|
|
], |
|
9560
|
|
|
'urn:ogc:def:datum:EPSG::1123' => [ |
|
9561
|
|
|
'name' => 'Puerto Rico Vertical Datum of 2002', |
|
9562
|
|
|
'type' => 'vertical', |
|
9563
|
|
|
'ellipsoid' => null, |
|
9564
|
|
|
'prime_meridian' => null, |
|
9565
|
|
|
'conventional_rs' => null, |
|
9566
|
|
|
'frame_reference_epoch' => null, |
|
9567
|
|
|
'anchor_epoch' => null, |
|
9568
|
|
|
'extent_name' => 'Puerto Rico - onshore', |
|
9569
|
|
|
'help' => 'Mean sea level at San Juan. Benchmark 9756371 A TIDAL = 1.334m relative to National Tidal Datum Epoch 1960-1978. |
|
9570
|
|
|
Replaces all earlier vertical datums for Puerto Rico.', |
|
9571
|
|
|
], |
|
9572
|
|
|
'urn:ogc:def:datum:EPSG::1124' => [ |
|
9573
|
|
|
'name' => 'Virgin Islands Vertical Datum of 2009', |
|
9574
|
|
|
'type' => 'vertical', |
|
9575
|
|
|
'ellipsoid' => null, |
|
9576
|
|
|
'prime_meridian' => null, |
|
9577
|
|
|
'conventional_rs' => null, |
|
9578
|
|
|
'frame_reference_epoch' => null, |
|
9579
|
|
|
'anchor_epoch' => null, |
|
9580
|
|
|
'extent_name' => 'Virgin Islands, US - onshore', |
|
9581
|
|
|
'help' => 'Mean sea level for National Tidal Datum Epoch 1983–2001 at (i) Lime Tree Bay, St. Croix (BM 9751401 M = 3.111m) , (ii) Lameshur Bay, St. John (BM 9751381 TIDAL A = 1.077m) , and (iii) Charlotte Amalie, St. Thomas (BM 9751639 F = 1.552m). |
|
9582
|
|
|
Replaces all earlier vertical datums on these islands.', |
|
9583
|
|
|
], |
|
9584
|
|
|
'urn:ogc:def:datum:EPSG::1125' => [ |
|
9585
|
|
|
'name' => 'American Samoa Vertical Datum of 2002', |
|
9586
|
|
|
'type' => 'vertical', |
|
9587
|
|
|
'ellipsoid' => null, |
|
9588
|
|
|
'prime_meridian' => null, |
|
9589
|
|
|
'conventional_rs' => null, |
|
9590
|
|
|
'frame_reference_epoch' => null, |
|
9591
|
|
|
'anchor_epoch' => null, |
|
9592
|
|
|
'extent_name' => 'American Samoa - Tutuila island', |
|
9593
|
|
|
'help' => 'Mean sea level at Pago Pago harbor, Tutuila. Benchmark 1770000 S TIDAL = 1.364m relative to National Tidal Datum Epoch 1983-2001. |
|
9594
|
|
|
Replaces Tutuila vertical datum of 1962 (datum code 1121). Replaced by Pago Pago local tidal datum (datum code 1302) in March 2020 after ASVD02 benchmarks destroyed by earthquake activity.', |
|
9595
|
|
|
], |
|
9596
|
|
|
'urn:ogc:def:datum:EPSG::1126' => [ |
|
9597
|
|
|
'name' => 'Guam Vertical Datum of 2004', |
|
9598
|
|
|
'type' => 'vertical', |
|
9599
|
|
|
'ellipsoid' => null, |
|
9600
|
|
|
'prime_meridian' => null, |
|
9601
|
|
|
'conventional_rs' => null, |
|
9602
|
|
|
'frame_reference_epoch' => null, |
|
9603
|
|
|
'anchor_epoch' => null, |
|
9604
|
|
|
'extent_name' => 'Guam - onshore', |
|
9605
|
|
|
'help' => 'Mean sea level at Apra harbor, Guam. Benchmark 1630000 TIDAL 4 = 2.170m relative to US National Tidal Datum Epoch 1983-2001. MSL is 0.419m above MLLW and the BM is 2.589m above MLLW. |
|
9606
|
|
|
Replaces Guam Vertical Datum of 1963 (datum code 1122).', |
|
9607
|
|
|
], |
|
9608
|
|
|
'urn:ogc:def:datum:EPSG::1127' => [ |
|
9609
|
|
|
'name' => 'Canadian Geodetic Vertical Datum of 2013 (CGG2013)', |
|
9610
|
|
|
'type' => 'vertical', |
|
9611
|
|
|
'ellipsoid' => null, |
|
9612
|
|
|
'prime_meridian' => null, |
|
9613
|
|
|
'conventional_rs' => null, |
|
9614
|
|
|
'frame_reference_epoch' => null, |
|
9615
|
|
|
'anchor_epoch' => null, |
|
9616
|
|
|
'extent_name' => 'Canada', |
|
9617
|
|
|
'help' => 'Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean sea level for North America, realized through the Canadian gravimetric geoid (CGG) 2013 at epoch 2010.0. |
|
9618
|
|
|
Replaces CGVD28 from November 2013. Replaced by CGVD2013(CGG2013a) epoch 2010 from December 2015, supplemented from February 2021 by snapshots of CGVD2013(CGG2013a) at epochs 1997.0 and 2002.0 (aligned with NAD83(CSRS) realization epochs).', |
|
9619
|
|
|
], |
|
9620
|
|
|
'urn:ogc:def:datum:EPSG::1128' => [ |
|
9621
|
|
|
'name' => 'Japanese Geodetic Datum 2011', |
|
9622
|
|
|
'type' => 'geodetic', |
|
9623
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
9624
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9625
|
|
|
'conventional_rs' => null, |
|
9626
|
|
|
'frame_reference_epoch' => null, |
|
9627
|
|
|
'anchor_epoch' => null, |
|
9628
|
|
|
'extent_name' => 'Japan', |
|
9629
|
|
|
'help' => 'ITRF94 at epoch 1997.0 except for northern Honshu area impacted by 2011 Tohoku earthquake which is ITRF2008 at epoch 2011.395. Fundamental point: Tokyo-Taisho, latitude: 35°39\'29.1572"N, longitude: 139°44\'28.8869"E (of Greenwich). |
|
9630
|
|
|
Instigated under amendment to the Japanese Surveying Law with effect from 21st October 2011. Replaces JGD2000 (datum code 6612).', |
|
9631
|
|
|
], |
|
9632
|
|
|
'urn:ogc:def:datum:EPSG::1129' => [ |
|
9633
|
|
|
'name' => 'Japanese Standard Levelling Datum 1972', |
|
9634
|
|
|
'type' => 'vertical', |
|
9635
|
|
|
'ellipsoid' => null, |
|
9636
|
|
|
'prime_meridian' => null, |
|
9637
|
|
|
'conventional_rs' => null, |
|
9638
|
|
|
'frame_reference_epoch' => null, |
|
9639
|
|
|
'anchor_epoch' => null, |
|
9640
|
|
|
'extent_name' => 'Japan - onshore - Hokkaido', |
|
9641
|
|
|
'help' => 'Mean sea level Oshoro 1963-72. |
|
9642
|
|
|
Normal-orthometric heights. Replaced by JGD2000 (vertical) (datum code 1130) with effect from April 2002.', |
|
9643
|
|
|
], |
|
9644
|
|
|
'urn:ogc:def:datum:EPSG::1130' => [ |
|
9645
|
|
|
'name' => 'Japanese Geodetic Datum 2000 (vertical)', |
|
9646
|
|
|
'type' => 'vertical', |
|
9647
|
|
|
'ellipsoid' => null, |
|
9648
|
|
|
'prime_meridian' => null, |
|
9649
|
|
|
'conventional_rs' => null, |
|
9650
|
|
|
'frame_reference_epoch' => null, |
|
9651
|
|
|
'anchor_epoch' => null, |
|
9652
|
|
|
'extent_name' => 'Japan - onshore mainland', |
|
9653
|
|
|
'help' => '24.4140 metres above mean sea level Tokyo Bay. |
|
9654
|
|
|
Orthometric heights. Replaces JSLD69 and JSLD72 with effect from April 2002. Replaced by JGD2011 (vertical) (datum code 1131) with effect from 21st October 2011.', |
|
9655
|
|
|
], |
|
9656
|
|
|
'urn:ogc:def:datum:EPSG::1131' => [ |
|
9657
|
|
|
'name' => 'Japanese Geodetic Datum 2011 (vertical)', |
|
9658
|
|
|
'type' => 'vertical', |
|
9659
|
|
|
'ellipsoid' => null, |
|
9660
|
|
|
'prime_meridian' => null, |
|
9661
|
|
|
'conventional_rs' => null, |
|
9662
|
|
|
'frame_reference_epoch' => null, |
|
9663
|
|
|
'anchor_epoch' => null, |
|
9664
|
|
|
'extent_name' => 'Japan - onshore mainland', |
|
9665
|
|
|
'help' => '24.3900 metres above mean sea level Tokyo Bay. |
|
9666
|
|
|
Orthometric heights. Replaces JGD2000 (vertical) (datum code 1130) with effect from 21st October 2011.', |
|
9667
|
|
|
], |
|
9668
|
|
|
'urn:ogc:def:datum:EPSG::1132' => [ |
|
9669
|
|
|
'name' => 'Rete Dinamica Nazionale 2008', |
|
9670
|
|
|
'type' => 'geodetic', |
|
9671
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
9672
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9673
|
|
|
'conventional_rs' => null, |
|
9674
|
|
|
'frame_reference_epoch' => null, |
|
9675
|
|
|
'anchor_epoch' => null, |
|
9676
|
|
|
'extent_name' => 'Italy - including San Marino and Vatican', |
|
9677
|
|
|
'help' => 'Italian densification of ETRS89 realised through network of 99 permanent reference stations in [email protected]. |
|
9678
|
|
|
Adopted as official Italian reference datum 10/11/2011. Replaces IGM95 (datum code 6670).', |
|
9679
|
|
|
], |
|
9680
|
|
|
'urn:ogc:def:datum:EPSG::1133' => [ |
|
9681
|
|
|
'name' => 'NAD83 (Continuously Operating Reference Station 1996)', |
|
9682
|
|
|
'type' => 'geodetic', |
|
9683
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
9684
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9685
|
|
|
'conventional_rs' => null, |
|
9686
|
|
|
'frame_reference_epoch' => null, |
|
9687
|
|
|
'anchor_epoch' => null, |
|
9688
|
|
|
'extent_name' => 'USA - CONUS and Alaska; PRVI', |
|
9689
|
|
|
'help' => 'Defined by time-dependent transformations from ITRF (see CT codes 6864-6866). The ITRF realization used has been changed periodically; ITRF96 in years 1997 through 1999, ITRF97 in 2000 and 2001 and ITRF2000 from 2002. |
|
9690
|
|
|
Replaced by NAD83(2011) from 2011-09-06.', |
|
9691
|
|
|
], |
|
9692
|
|
|
'urn:ogc:def:datum:EPSG::1135' => [ |
|
9693
|
|
|
'name' => 'Aden 1925', |
|
9694
|
|
|
'type' => 'geodetic', |
|
9695
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
9696
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9697
|
|
|
'conventional_rs' => null, |
|
9698
|
|
|
'frame_reference_epoch' => null, |
|
9699
|
|
|
'anchor_epoch' => null, |
|
9700
|
|
|
'extent_name' => 'Yemen - South Yemen - mainland', |
|
9701
|
|
|
'help' => ' |
|
9702
|
|
|
', |
|
9703
|
|
|
], |
|
9704
|
|
|
'urn:ogc:def:datum:EPSG::1136' => [ |
|
9705
|
|
|
'name' => 'Bioko', |
|
9706
|
|
|
'type' => 'geodetic', |
|
9707
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
9708
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9709
|
|
|
'conventional_rs' => null, |
|
9710
|
|
|
'frame_reference_epoch' => null, |
|
9711
|
|
|
'anchor_epoch' => null, |
|
9712
|
|
|
'extent_name' => 'Equatorial Guinea - Bioko', |
|
9713
|
|
|
'help' => ' |
|
9714
|
|
|
', |
|
9715
|
|
|
], |
|
9716
|
|
|
'urn:ogc:def:datum:EPSG::1137' => [ |
|
9717
|
|
|
'name' => 'Bekaa Valley 1920', |
|
9718
|
|
|
'type' => 'geodetic', |
|
9719
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
9720
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9721
|
|
|
'conventional_rs' => null, |
|
9722
|
|
|
'frame_reference_epoch' => null, |
|
9723
|
|
|
'anchor_epoch' => null, |
|
9724
|
|
|
'extent_name' => 'Lebanon - onshore', |
|
9725
|
|
|
'help' => ' |
|
9726
|
|
|
', |
|
9727
|
|
|
], |
|
9728
|
|
|
'urn:ogc:def:datum:EPSG::1138' => [ |
|
9729
|
|
|
'name' => 'South East Island 1943', |
|
9730
|
|
|
'type' => 'geodetic', |
|
9731
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
9732
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9733
|
|
|
'conventional_rs' => null, |
|
9734
|
|
|
'frame_reference_epoch' => null, |
|
9735
|
|
|
'anchor_epoch' => null, |
|
9736
|
|
|
'extent_name' => 'Seychelles - Seychelles Bank', |
|
9737
|
|
|
'help' => 'Fundamental point: Challenger Astro near Port Victoria lighthouse. Latitude: 4°40\'39.460"S, longitude: 55°32\'00.166"E (of Greenwich). |
|
9738
|
|
|
Network readjusted in 1958-59 and extended to Bird and Denis islands in 1975.', |
|
9739
|
|
|
], |
|
9740
|
|
|
'urn:ogc:def:datum:EPSG::1139' => [ |
|
9741
|
|
|
'name' => 'Gambia', |
|
9742
|
|
|
'type' => 'geodetic', |
|
9743
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
9744
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9745
|
|
|
'conventional_rs' => null, |
|
9746
|
|
|
'frame_reference_epoch' => null, |
|
9747
|
|
|
'anchor_epoch' => null, |
|
9748
|
|
|
'extent_name' => 'Gambia - onshore', |
|
9749
|
|
|
'help' => ' |
|
9750
|
|
|
', |
|
9751
|
|
|
], |
|
9752
|
|
|
'urn:ogc:def:datum:EPSG::1140' => [ |
|
9753
|
|
|
'name' => 'Singapore Height Datum', |
|
9754
|
|
|
'type' => 'vertical', |
|
9755
|
|
|
'ellipsoid' => null, |
|
9756
|
|
|
'prime_meridian' => null, |
|
9757
|
|
|
'conventional_rs' => null, |
|
9758
|
|
|
'frame_reference_epoch' => null, |
|
9759
|
|
|
'anchor_epoch' => null, |
|
9760
|
|
|
'extent_name' => 'Singapore', |
|
9761
|
|
|
'help' => 'Mean sea level determined at Victoria Dock tide gauge 1935-1937. |
|
9762
|
|
|
Orthometric heights. Network readjusted in 2009.', |
|
9763
|
|
|
], |
|
9764
|
|
|
'urn:ogc:def:datum:EPSG::1141' => [ |
|
9765
|
|
|
'name' => 'IGS08', |
|
9766
|
|
|
'type' => 'dynamic geodetic', |
|
9767
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
9768
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9769
|
|
|
'conventional_rs' => null, |
|
9770
|
|
|
'frame_reference_epoch' => 2005.0, |
|
9771
|
|
|
'anchor_epoch' => null, |
|
9772
|
|
|
'extent_name' => 'World', |
|
9773
|
|
|
'help' => 'Derived from ITRF2008 at epoch 2005.00 through a subset of 232 stable IGS station coordinates. Preserves the ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques. |
|
9774
|
|
|
Used for IGS products from GPS week 1632 through GPS week 1708 (2011-04-17 through 2012-10-06). Replaces IGS05. Replaced by IGb08. For all practical purposes coincident with ITRF2008.', |
|
9775
|
|
|
], |
|
9776
|
|
|
'urn:ogc:def:datum:EPSG::1142' => [ |
|
9777
|
|
|
'name' => 'IG05 Intermediate Datum', |
|
9778
|
|
|
'type' => 'geodetic', |
|
9779
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
9780
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9781
|
|
|
'conventional_rs' => null, |
|
9782
|
|
|
'frame_reference_epoch' => null, |
|
9783
|
|
|
'anchor_epoch' => null, |
|
9784
|
|
|
'extent_name' => 'Asia - Middle East - Israel and Palestine Territory onshore', |
|
9785
|
|
|
'help' => 'Defined by transformation from IGD05 at epoch 2004.75. |
|
9786
|
|
|
', |
|
9787
|
|
|
], |
|
9788
|
|
|
'urn:ogc:def:datum:EPSG::1144' => [ |
|
9789
|
|
|
'name' => 'IG05/12 Intermediate Datum', |
|
9790
|
|
|
'type' => 'geodetic', |
|
9791
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
9792
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9793
|
|
|
'conventional_rs' => null, |
|
9794
|
|
|
'frame_reference_epoch' => null, |
|
9795
|
|
|
'anchor_epoch' => null, |
|
9796
|
|
|
'extent_name' => 'Asia - Middle East - Israel and Palestine Territory onshore', |
|
9797
|
|
|
'help' => 'Defined by transformation from IGD05/12 at epoch 2012.00. |
|
9798
|
|
|
', |
|
9799
|
|
|
], |
|
9800
|
|
|
'urn:ogc:def:datum:EPSG::1146' => [ |
|
9801
|
|
|
'name' => 'Ras Ghumays', |
|
9802
|
|
|
'type' => 'vertical', |
|
9803
|
|
|
'ellipsoid' => null, |
|
9804
|
|
|
'prime_meridian' => null, |
|
9805
|
|
|
'conventional_rs' => null, |
|
9806
|
|
|
'frame_reference_epoch' => null, |
|
9807
|
|
|
'anchor_epoch' => null, |
|
9808
|
|
|
'extent_name' => 'UAE - Abu Dhabi - onshore', |
|
9809
|
|
|
'help' => 'Mean Sea Level at Ras Ghumays 1978 and 1979. |
|
9810
|
|
|
Orthometric heights.', |
|
9811
|
|
|
], |
|
9812
|
|
|
'urn:ogc:def:datum:EPSG::1147' => [ |
|
9813
|
|
|
'name' => 'Oman National Geodetic Datum 2014', |
|
9814
|
|
|
'type' => 'geodetic', |
|
9815
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
9816
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9817
|
|
|
'conventional_rs' => null, |
|
9818
|
|
|
'frame_reference_epoch' => null, |
|
9819
|
|
|
'anchor_epoch' => null, |
|
9820
|
|
|
'extent_name' => 'Oman', |
|
9821
|
|
|
'help' => '20 stations of the Oman primary network tied to ITRF2008 at epoch 2013.15. |
|
9822
|
|
|
Replaces WGS 84 (G873). Replaced by ONGD17.', |
|
9823
|
|
|
], |
|
9824
|
|
|
'urn:ogc:def:datum:EPSG::1148' => [ |
|
9825
|
|
|
'name' => 'Famagusta 1960', |
|
9826
|
|
|
'type' => 'vertical', |
|
9827
|
|
|
'ellipsoid' => null, |
|
9828
|
|
|
'prime_meridian' => null, |
|
9829
|
|
|
'conventional_rs' => null, |
|
9830
|
|
|
'frame_reference_epoch' => null, |
|
9831
|
|
|
'anchor_epoch' => null, |
|
9832
|
|
|
'extent_name' => 'Cyprus - onshore', |
|
9833
|
|
|
'help' => 'Mean sea level at Famagusta Harbour. |
|
9834
|
|
|
Orthometric heights.', |
|
9835
|
|
|
], |
|
9836
|
|
|
'urn:ogc:def:datum:EPSG::1149' => [ |
|
9837
|
|
|
'name' => 'PNG08', |
|
9838
|
|
|
'type' => 'vertical', |
|
9839
|
|
|
'ellipsoid' => null, |
|
9840
|
|
|
'prime_meridian' => null, |
|
9841
|
|
|
'conventional_rs' => null, |
|
9842
|
|
|
'frame_reference_epoch' => null, |
|
9843
|
|
|
'anchor_epoch' => null, |
|
9844
|
|
|
'extent_name' => 'Papua New Guinea - 0°N to 12°S and 140°E to 158°E', |
|
9845
|
|
|
'help' => 'Mean sea level at 8 tide gauges around PNG, defined through application of PNG08 geoid model (transformation code 7655) to PNG94 (CRS code 5545). |
|
9846
|
|
|
', |
|
9847
|
|
|
], |
|
9848
|
|
|
'urn:ogc:def:datum:EPSG::1150' => [ |
|
9849
|
|
|
'name' => 'Kumul 34', |
|
9850
|
|
|
'type' => 'vertical', |
|
9851
|
|
|
'ellipsoid' => null, |
|
9852
|
|
|
'prime_meridian' => null, |
|
9853
|
|
|
'conventional_rs' => null, |
|
9854
|
|
|
'frame_reference_epoch' => null, |
|
9855
|
|
|
'anchor_epoch' => null, |
|
9856
|
|
|
'extent_name' => 'Papua New Guinea - PFTB', |
|
9857
|
|
|
'help' => 'Kumul Platform Station 34. Propagated through bilinear interpolation of EGM96 geoid model (transformation code 10084) reduced to Kumul 34 by offset of -0.87m. |
|
9858
|
|
|
', |
|
9859
|
|
|
], |
|
9860
|
|
|
'urn:ogc:def:datum:EPSG::1151' => [ |
|
9861
|
|
|
'name' => 'Kiunga', |
|
9862
|
|
|
'type' => 'vertical', |
|
9863
|
|
|
'ellipsoid' => null, |
|
9864
|
|
|
'prime_meridian' => null, |
|
9865
|
|
|
'conventional_rs' => null, |
|
9866
|
|
|
'frame_reference_epoch' => null, |
|
9867
|
|
|
'anchor_epoch' => null, |
|
9868
|
|
|
'extent_name' => 'Papua New Guinea - onshore south of 5°S and west of 144°E', |
|
9869
|
|
|
'help' => 'PSM 9465 at Kiunga Airport. Propagated through bilinear interpolation of EGM2008 geoid model (transformation code 3858) reduced to PSM 9465 by offset of -3.0m. |
|
9870
|
|
|
', |
|
9871
|
|
|
], |
|
9872
|
|
|
'urn:ogc:def:datum:EPSG::1152' => [ |
|
9873
|
|
|
'name' => 'World Geodetic System 1984 (G730)', |
|
9874
|
|
|
'type' => 'dynamic geodetic', |
|
9875
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
9876
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9877
|
|
|
'conventional_rs' => 1024, |
|
9878
|
|
|
'frame_reference_epoch' => 1994.0, |
|
9879
|
|
|
'anchor_epoch' => null, |
|
9880
|
|
|
'extent_name' => 'World', |
|
9881
|
|
|
'help' => 'Defined through coordinates of 10 GPS tracking stations adjusted to a subset of ITRF92 stations at epoch 1994.0. The reference epoch for ITRF92 is 1988.0; the ITRF92 station coordinates were transformed to 1994.0 using the NNR-NUVEL1 plate motion model. |
|
9882
|
|
|
Replaces the original Transit-derived World Geodetic System 1984 from 1994-06-29. Replaced by World Geodetic System 1984 (G873) from 1997-01-29.', |
|
9883
|
|
|
], |
|
9884
|
|
|
'urn:ogc:def:datum:EPSG::1153' => [ |
|
9885
|
|
|
'name' => 'World Geodetic System 1984 (G873)', |
|
9886
|
|
|
'type' => 'dynamic geodetic', |
|
9887
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
9888
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9889
|
|
|
'conventional_rs' => 1024, |
|
9890
|
|
|
'frame_reference_epoch' => 1997.0, |
|
9891
|
|
|
'anchor_epoch' => null, |
|
9892
|
|
|
'extent_name' => 'World', |
|
9893
|
|
|
'help' => 'Defined through coordinates of 13 GPS tracking stations adjusted to a subset of ITRF94 stations at epoch 1997.0. The reference epoch for the adjustment was 1994.0 and the coordinates were propagated to 1997.0 using the NNR-NUVEL-1A plate motion model. |
|
9894
|
|
|
Replaces World Geodetic System 1984 (G730) from 1997-01-29. Replaced by World Geodetic System 1984 (G1150) from 2002-01-20.', |
|
9895
|
|
|
], |
|
9896
|
|
|
'urn:ogc:def:datum:EPSG::1154' => [ |
|
9897
|
|
|
'name' => 'World Geodetic System 1984 (G1150)', |
|
9898
|
|
|
'type' => 'dynamic geodetic', |
|
9899
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
9900
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9901
|
|
|
'conventional_rs' => 1024, |
|
9902
|
|
|
'frame_reference_epoch' => 2001.0, |
|
9903
|
|
|
'anchor_epoch' => null, |
|
9904
|
|
|
'extent_name' => 'World', |
|
9905
|
|
|
'help' => 'Defined through coordinates of 17 GPS tracking stations adjusted to a subset of 49 IGS stations. Observations made in February 2001. The reference epoch for ITRF2000 is 1997.0; station coordinates were transformed to 2001.0 using IERS station velocities. |
|
9906
|
|
|
Replaces World Geodetic System 1984 (G873) from 2002-01-20. Replaced by World Geodetic System 1984 (G1674) from 2012-02-08.', |
|
9907
|
|
|
], |
|
9908
|
|
|
'urn:ogc:def:datum:EPSG::1155' => [ |
|
9909
|
|
|
'name' => 'World Geodetic System 1984 (G1674)', |
|
9910
|
|
|
'type' => 'dynamic geodetic', |
|
9911
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
9912
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9913
|
|
|
'conventional_rs' => 1024, |
|
9914
|
|
|
'frame_reference_epoch' => 2005.0, |
|
9915
|
|
|
'anchor_epoch' => null, |
|
9916
|
|
|
'extent_name' => 'World', |
|
9917
|
|
|
'help' => 'Defined through coordinates of 15 GPS tracking stations adjusted to a subset of IGS stations at epoch 2005.0. The IGS station coordinates are considered to be equivalent to ITRF2008. |
|
9918
|
|
|
Replaces World Geodetic System 1984 (G1150) from 2012-02-08. Replaced by World Geodetic System 1984 (G1762) from 2013-10-16.', |
|
9919
|
|
|
], |
|
9920
|
|
|
'urn:ogc:def:datum:EPSG::1156' => [ |
|
9921
|
|
|
'name' => 'World Geodetic System 1984 (G1762)', |
|
9922
|
|
|
'type' => 'dynamic geodetic', |
|
9923
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
9924
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9925
|
|
|
'conventional_rs' => 1024, |
|
9926
|
|
|
'frame_reference_epoch' => 2005.0, |
|
9927
|
|
|
'anchor_epoch' => null, |
|
9928
|
|
|
'extent_name' => 'World', |
|
9929
|
|
|
'help' => 'Defined through coordinates of 19 GPS tracking stations adjusted to a subset of IGb08 stations at epoch 2005.0 using observations made in May 2013. The IGb08 coordinates are considered to be equivalent to ITRF2008. |
|
9930
|
|
|
Replaces WGS 84 (G1674) from 2013-10-16. Frame was redesignated WGS 84 (G1762\') after coordinates of 7 NGA tracking stations were changed following station moves and antenna updates 2014-08 to 2015-06. Replaced by WGS 84 (G2139) from 2021-01-03.', |
|
9931
|
|
|
], |
|
9932
|
|
|
'urn:ogc:def:datum:EPSG::1157' => [ |
|
9933
|
|
|
'name' => 'Parametry Zemli 1990.02', |
|
9934
|
|
|
'type' => 'dynamic geodetic', |
|
9935
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7054', |
|
9936
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9937
|
|
|
'conventional_rs' => null, |
|
9938
|
|
|
'frame_reference_epoch' => 2002.0, |
|
9939
|
|
|
'anchor_epoch' => null, |
|
9940
|
|
|
'extent_name' => 'World', |
|
9941
|
|
|
'help' => 'Defined through coordinates of 33 stations of the satellite geodetic network (SGN) in Russia and Antarctica adjusted to a subset of 14 IGS stations in Russia at epoch 2002.0. The IGS station coordinates are considered to be equivalent to ITRF2000. |
|
9942
|
|
|
Replaces PZ-90 from 2007-09-20. Replaced by PZ-90.11 from 2014-01-15.', |
|
9943
|
|
|
], |
|
9944
|
|
|
'urn:ogc:def:datum:EPSG::1158' => [ |
|
9945
|
|
|
'name' => 'Parametry Zemli 1990.11', |
|
9946
|
|
|
'type' => 'dynamic geodetic', |
|
9947
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7054', |
|
9948
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9949
|
|
|
'conventional_rs' => null, |
|
9950
|
|
|
'frame_reference_epoch' => 2010.0, |
|
9951
|
|
|
'anchor_epoch' => null, |
|
9952
|
|
|
'extent_name' => 'World', |
|
9953
|
|
|
'help' => 'Defined through coordinates of 33 stations of the satellite geodetic network (SGN) in Russia and Antarctica adjusted to a subset of 14 IGS stations in Russia at epoch 2010.0. The IGS station coordinates are considered to be equivalent to ITRF2008. |
|
9954
|
|
|
Replaces PZ-90.02 from 2014-01-15.', |
|
9955
|
|
|
], |
|
9956
|
|
|
'urn:ogc:def:datum:EPSG::1159' => [ |
|
9957
|
|
|
'name' => 'Geodezicheskaya Sistema Koordinat 2011', |
|
9958
|
|
|
'type' => 'geodetic', |
|
9959
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::1025', |
|
9960
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9961
|
|
|
'conventional_rs' => null, |
|
9962
|
|
|
'frame_reference_epoch' => null, |
|
9963
|
|
|
'anchor_epoch' => null, |
|
9964
|
|
|
'extent_name' => 'Russia', |
|
9965
|
|
|
'help' => 'Coordinates of the Russian fundamental astronomic-geodetic network (about 50 stations) at epoch 2011.0 |
|
9966
|
|
|
', |
|
9967
|
|
|
], |
|
9968
|
|
|
'urn:ogc:def:datum:EPSG::1160' => [ |
|
9969
|
|
|
'name' => 'Kyrgyzstan Geodetic Datum 2006', |
|
9970
|
|
|
'type' => 'geodetic', |
|
9971
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
9972
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
9973
|
|
|
'conventional_rs' => null, |
|
9974
|
|
|
'frame_reference_epoch' => null, |
|
9975
|
|
|
'anchor_epoch' => null, |
|
9976
|
|
|
'extent_name' => 'Kyrgyzstan', |
|
9977
|
|
|
'help' => '6 stations of the Kyrgyzstan zero-order network tied to ITRF2005 at epoch 2006.70. |
|
9978
|
|
|
The accuracy in the connection to ITRF2005 is estimated to be 5 mm in horizontal and 10-20 mm in height (95% confidence).', |
|
9979
|
|
|
], |
|
9980
|
|
|
'urn:ogc:def:datum:EPSG::1161' => [ |
|
9981
|
|
|
'name' => 'Deutsches Haupthoehennetz 1912', |
|
9982
|
|
|
'type' => 'vertical', |
|
9983
|
|
|
'ellipsoid' => null, |
|
9984
|
|
|
'prime_meridian' => null, |
|
9985
|
|
|
'conventional_rs' => null, |
|
9986
|
|
|
'frame_reference_epoch' => null, |
|
9987
|
|
|
'anchor_epoch' => null, |
|
9988
|
|
|
'extent_name' => 'Germany - onshore', |
|
9989
|
|
|
'help' => 'Height of reference point "Normalnullpunkt" at Berlin Observatory defined as 37.000m above MSL in 1879 (transferred to benchmarks near Hoppegarten in Müncheberg in 1912). Datum at Normaal Amsterdams Peil (NAP) is mean high tide in 1684. |
|
9990
|
|
|
Uses Normal-orthometric heights.', |
|
9991
|
|
|
], |
|
9992
|
|
|
'urn:ogc:def:datum:EPSG::1162' => [ |
|
9993
|
|
|
'name' => 'Latvian Height System 2000', |
|
9994
|
|
|
'type' => 'vertical', |
|
9995
|
|
|
'ellipsoid' => null, |
|
9996
|
|
|
'prime_meridian' => null, |
|
9997
|
|
|
'conventional_rs' => null, |
|
9998
|
|
|
'frame_reference_epoch' => null, |
|
9999
|
|
|
'anchor_epoch' => null, |
|
10000
|
|
|
'extent_name' => 'Latvia - onshore', |
|
10001
|
|
|
'help' => 'Latvian realisation of EVRF2007. Observed from 2000-2010 and reduced to epoch 2000.5 using empirical land uplift model of Latvia. EVRF2007 heights of 16 points around Latvia held fixed. |
|
10002
|
|
|
Uses Normal heights.', |
|
10003
|
|
|
], |
|
10004
|
|
|
'urn:ogc:def:datum:EPSG::1164' => [ |
|
10005
|
|
|
'name' => 'Ordnance Datum Newlyn (Offshore)', |
|
10006
|
|
|
'type' => 'vertical', |
|
10007
|
|
|
'ellipsoid' => null, |
|
10008
|
|
|
'prime_meridian' => null, |
|
10009
|
|
|
'conventional_rs' => 1026, |
|
10010
|
|
|
'frame_reference_epoch' => null, |
|
10011
|
|
|
'anchor_epoch' => null, |
|
10012
|
|
|
'extent_name' => 'UK - offshore 49°45\'N to 61°N, 9°W to 2°E', |
|
10013
|
|
|
'help' => 'Defined by OSGM geoid model. |
|
10014
|
|
|
Extension of Ordnance Datum Newlyn offshore through geoid model. Orthometric heights.', |
|
10015
|
|
|
], |
|
10016
|
|
|
'urn:ogc:def:datum:EPSG::1165' => [ |
|
10017
|
|
|
'name' => 'International Terrestrial Reference Frame 2014', |
|
10018
|
|
|
'type' => 'dynamic geodetic', |
|
10019
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10020
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10021
|
|
|
'conventional_rs' => null, |
|
10022
|
|
|
'frame_reference_epoch' => 2010.0, |
|
10023
|
|
|
'anchor_epoch' => null, |
|
10024
|
|
|
'extent_name' => 'World', |
|
10025
|
|
|
'help' => 'Origin at geocentre. Origin = ILRS SLR long-term solution at epoch 2010.0. Zero scale and scale rate between ITRF2014 and the average of VLBI and SLR scales/rates. Orientation = ITRF2008@ 2010.0 with zero rotation rates between the ITRF2014 and ITRF2008. |
|
10026
|
|
|
Realization of the IERS Terrestrial Reference System (ITRS). Replaces ITRF2008 (datum code 1061) from January 2016. Replaced by ITRF2020 (datum code 1322) from April 2022.', |
|
10027
|
|
|
], |
|
10028
|
|
|
'urn:ogc:def:datum:EPSG::1166' => [ |
|
10029
|
|
|
'name' => 'World Geodetic System 1984 (Transit)', |
|
10030
|
|
|
'type' => 'dynamic geodetic', |
|
10031
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
10032
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10033
|
|
|
'conventional_rs' => 1024, |
|
10034
|
|
|
'frame_reference_epoch' => 1984.0, |
|
10035
|
|
|
'anchor_epoch' => null, |
|
10036
|
|
|
'extent_name' => 'World', |
|
10037
|
|
|
'help' => 'Defined through coordinates of 5 GPS tracking stations in the Transit doppler positioning NSWC 9Z-2 reference frame transformed to be aligned to the BIH Conventional Terrestrial Reference Frame (BTS) at epoch 1984.0. |
|
10038
|
|
|
The NSWC 9Z-2 origin shifted by -4.5 m along the Z-axis, scale changed by -0.6 x 10E-6 and the reference meridian rotated westward by 0.814" to be aligned to the BTS at epoch 1984.0. Replaced by World Geodetic System 1984 (G730) from 1994-06-29.', |
|
10039
|
|
|
], |
|
10040
|
|
|
'urn:ogc:def:datum:EPSG::1167' => [ |
|
10041
|
|
|
'name' => 'Bulgaria Geodetic System 2005', |
|
10042
|
|
|
'type' => 'geodetic', |
|
10043
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10044
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10045
|
|
|
'conventional_rs' => null, |
|
10046
|
|
|
'frame_reference_epoch' => null, |
|
10047
|
|
|
'anchor_epoch' => null, |
|
10048
|
|
|
'extent_name' => 'Bulgaria', |
|
10049
|
|
|
'help' => 'Densification of ETRS89 realised through network of 112 permanent GNSS reference stations in [email protected]. |
|
10050
|
|
|
Adopted as official Bulgarian reference datum through decree 153 of 2010-07-29.', |
|
10051
|
|
|
], |
|
10052
|
|
|
'urn:ogc:def:datum:EPSG::1168' => [ |
|
10053
|
|
|
'name' => 'Geocentric Datum of Australia 2020', |
|
10054
|
|
|
'type' => 'geodetic', |
|
10055
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10056
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10057
|
|
|
'conventional_rs' => null, |
|
10058
|
|
|
'frame_reference_epoch' => null, |
|
10059
|
|
|
'anchor_epoch' => null, |
|
10060
|
|
|
'extent_name' => 'Australia - GDA', |
|
10061
|
|
|
'help' => 'ITRF2014 at epoch 2020.0. |
|
10062
|
|
|
', |
|
10063
|
|
|
], |
|
10064
|
|
|
'urn:ogc:def:datum:EPSG::1169' => [ |
|
10065
|
|
|
'name' => 'New Zealand Vertical Datum 2016', |
|
10066
|
|
|
'type' => 'vertical', |
|
10067
|
|
|
'ellipsoid' => null, |
|
10068
|
|
|
'prime_meridian' => null, |
|
10069
|
|
|
'conventional_rs' => null, |
|
10070
|
|
|
'frame_reference_epoch' => null, |
|
10071
|
|
|
'anchor_epoch' => null, |
|
10072
|
|
|
'extent_name' => 'New Zealand', |
|
10073
|
|
|
'help' => 'New Zealand quasigeoid 2016 which is defined by the application of the NZ geoid 2016 grid to NZGD2000 ellipsoidal heights. See transformation code 7840. |
|
10074
|
|
|
', |
|
10075
|
|
|
], |
|
10076
|
|
|
'urn:ogc:def:datum:EPSG::1170' => [ |
|
10077
|
|
|
'name' => 'Deutsches Haupthoehennetz 2016', |
|
10078
|
|
|
'type' => 'vertical', |
|
10079
|
|
|
'ellipsoid' => null, |
|
10080
|
|
|
'prime_meridian' => null, |
|
10081
|
|
|
'conventional_rs' => null, |
|
10082
|
|
|
'frame_reference_epoch' => null, |
|
10083
|
|
|
'anchor_epoch' => null, |
|
10084
|
|
|
'extent_name' => 'Germany', |
|
10085
|
|
|
'help' => '2006-2012 levelling network adjusted to 72 points of the DHHN92. Datum at Normaal Amsterdams Peil (NAP) is mean high tide in 1684. Extension offshore defined by the GCG2016 quasi-geoid model (CT code 9925). |
|
10086
|
|
|
Uses Normal heights in the mean tidal system.', |
|
10087
|
|
|
], |
|
10088
|
|
|
'urn:ogc:def:datum:EPSG::1171' => [ |
|
10089
|
|
|
'name' => 'Port Moresby 1996', |
|
10090
|
|
|
'type' => 'vertical', |
|
10091
|
|
|
'ellipsoid' => null, |
|
10092
|
|
|
'prime_meridian' => null, |
|
10093
|
|
|
'conventional_rs' => null, |
|
10094
|
|
|
'frame_reference_epoch' => null, |
|
10095
|
|
|
'anchor_epoch' => null, |
|
10096
|
|
|
'extent_name' => 'Papua New Guinea - onshore - Central province and Gulf province east of 144°E', |
|
10097
|
|
|
'help' => 'BM198 (adjacent to the Port Moresby tide gauge) height of 3.02 above MSL as determined by CSIRO in 1990. Propagated through bilinear interpolation of EGM96 geoid model (transformation code 10084) reduced by offset of -1.58m. |
|
10098
|
|
|
Offset has been determined by static GNSS estimation of ellipsoid height of BM198.', |
|
10099
|
|
|
], |
|
10100
|
|
|
'urn:ogc:def:datum:EPSG::1172' => [ |
|
10101
|
|
|
'name' => 'Port Moresby 2008', |
|
10102
|
|
|
'type' => 'vertical', |
|
10103
|
|
|
'ellipsoid' => null, |
|
10104
|
|
|
'prime_meridian' => null, |
|
10105
|
|
|
'conventional_rs' => null, |
|
10106
|
|
|
'frame_reference_epoch' => null, |
|
10107
|
|
|
'anchor_epoch' => null, |
|
10108
|
|
|
'extent_name' => 'Papua New Guinea - onshore - Central province and Gulf province east of 144°E', |
|
10109
|
|
|
'help' => 'BM198 (adjacent to the Port Moresby tide gauge) height of 3.02 above MSL as determined by CSIRO in 1990. Propagated through bilinear interpolation of EGM2008 geoid model (transformation code 3858 or 3859) reduced by offset of -0.93m. |
|
10110
|
|
|
Offset has been determined by static GNSS estimation of ellipsoid height of BM198 validated to a precision of 10 cm by short period tidal observations at Kerema wharf in 2010.', |
|
10111
|
|
|
], |
|
10112
|
|
|
'urn:ogc:def:datum:EPSG::1173' => [ |
|
10113
|
|
|
'name' => 'St. Helena Tritan', |
|
10114
|
|
|
'type' => 'geodetic', |
|
10115
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
10116
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10117
|
|
|
'conventional_rs' => null, |
|
10118
|
|
|
'frame_reference_epoch' => null, |
|
10119
|
|
|
'anchor_epoch' => null, |
|
10120
|
|
|
'extent_name' => 'St Helena - St Helena Island', |
|
10121
|
|
|
'help' => 'WGS 84(G1150) at epoch 2011.773. WGS 84 coordinates (15°56\'33.1217"S, 5°40\'02.4436"W, 453.288m ellipsoid height) of Longwood IGS CORS station STHL on 9th October 2011 |
|
10122
|
|
|
', |
|
10123
|
|
|
], |
|
10124
|
|
|
'urn:ogc:def:datum:EPSG::1174' => [ |
|
10125
|
|
|
'name' => 'St. Helena Geodetic Datum 2015', |
|
10126
|
|
|
'type' => 'geodetic', |
|
10127
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10128
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10129
|
|
|
'conventional_rs' => null, |
|
10130
|
|
|
'frame_reference_epoch' => null, |
|
10131
|
|
|
'anchor_epoch' => null, |
|
10132
|
|
|
'extent_name' => 'St Helena - St Helena Island', |
|
10133
|
|
|
'help' => 'ITRF2008 at epoch 2015.0. ITRF2008 coordinates (15°56\'33.1198"S, 5°40\'02.4412"W, 453.183m ellipsoid height) of Longwood IGS CORS station STHL on 1st January 2015. |
|
10134
|
|
|
Developed by Richard Stanaway, Quickclose Pty Ltd, superseding Astro DOS 71 from 1st January 2016.', |
|
10135
|
|
|
], |
|
10136
|
|
|
'urn:ogc:def:datum:EPSG::1175' => [ |
|
10137
|
|
|
'name' => 'Jamestown 1971', |
|
10138
|
|
|
'type' => 'vertical', |
|
10139
|
|
|
'ellipsoid' => null, |
|
10140
|
|
|
'prime_meridian' => null, |
|
10141
|
|
|
'conventional_rs' => null, |
|
10142
|
|
|
'frame_reference_epoch' => null, |
|
10143
|
|
|
'anchor_epoch' => null, |
|
10144
|
|
|
'extent_name' => 'St Helena - St Helena Island', |
|
10145
|
|
|
'help' => 'MSL at Jamestown 1971 defined through elevation of triangulation station Astro DOS 71/4 Ladder Hill Fort being 267.858 metres above MSL. |
|
10146
|
|
|
', |
|
10147
|
|
|
], |
|
10148
|
|
|
'urn:ogc:def:datum:EPSG::1176' => [ |
|
10149
|
|
|
'name' => 'St. Helena Tritan Vertical Datum 2011', |
|
10150
|
|
|
'type' => 'vertical', |
|
10151
|
|
|
'ellipsoid' => null, |
|
10152
|
|
|
'prime_meridian' => null, |
|
10153
|
|
|
'conventional_rs' => null, |
|
10154
|
|
|
'frame_reference_epoch' => null, |
|
10155
|
|
|
'anchor_epoch' => null, |
|
10156
|
|
|
'extent_name' => 'St Helena - St Helena Island', |
|
10157
|
|
|
'help' => 'MSL defined by Longwood IGS station STHL reference level of 436.215m. |
|
10158
|
|
|
Defined by offset of -17.073m applied to St. Helena Tritan ellipsiodal height (CRS code 7880).', |
|
10159
|
|
|
], |
|
10160
|
|
|
'urn:ogc:def:datum:EPSG::1177' => [ |
|
10161
|
|
|
'name' => 'St. Helena Vertical Datum 2015', |
|
10162
|
|
|
'type' => 'vertical', |
|
10163
|
|
|
'ellipsoid' => null, |
|
10164
|
|
|
'prime_meridian' => null, |
|
10165
|
|
|
'conventional_rs' => null, |
|
10166
|
|
|
'frame_reference_epoch' => null, |
|
10167
|
|
|
'anchor_epoch' => null, |
|
10168
|
|
|
'extent_name' => 'St Helena - St Helena Island', |
|
10169
|
|
|
'help' => 'Longwood IGS station STHL reference level of 436.312m. |
|
10170
|
|
|
Defined by SHGEOID15 geoid model (transformation code 7891) applied to SHGD2015 (CRS code 7885).', |
|
10171
|
|
|
], |
|
10172
|
|
|
'urn:ogc:def:datum:EPSG::1178' => [ |
|
10173
|
|
|
'name' => 'European Terrestrial Reference Frame 1989', |
|
10174
|
|
|
'type' => 'geodetic', |
|
10175
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10176
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10177
|
|
|
'conventional_rs' => 1025, |
|
10178
|
|
|
'frame_reference_epoch' => null, |
|
10179
|
|
|
'anchor_epoch' => null, |
|
10180
|
|
|
'extent_name' => 'Europe - ETRF', |
|
10181
|
|
|
'help' => 'Coincides with ITRF89 at epoch 1989.0. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the AM02 geophysical model. |
|
10182
|
|
|
Defined by transformation from ITRF89 (CT code 7932). Replaced by ETRF90 (datum code 1179).', |
|
10183
|
|
|
], |
|
10184
|
|
|
'urn:ogc:def:datum:EPSG::1179' => [ |
|
10185
|
|
|
'name' => 'European Terrestrial Reference Frame 1990', |
|
10186
|
|
|
'type' => 'geodetic', |
|
10187
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10188
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10189
|
|
|
'conventional_rs' => 1025, |
|
10190
|
|
|
'frame_reference_epoch' => null, |
|
10191
|
|
|
'anchor_epoch' => null, |
|
10192
|
|
|
'extent_name' => 'Europe - ETRF', |
|
10193
|
|
|
'help' => 'Coincides with ITRF90 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the AM02 geophysical model. |
|
10194
|
|
|
Defined by transformation from ITRF90 (CT code 7933). Replaces ETRF89 (datum code 1178). Replaced by ETRF91 (datum code 1180).', |
|
10195
|
|
|
], |
|
10196
|
|
|
'urn:ogc:def:datum:EPSG::1180' => [ |
|
10197
|
|
|
'name' => 'European Terrestrial Reference Frame 1991', |
|
10198
|
|
|
'type' => 'geodetic', |
|
10199
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10200
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10201
|
|
|
'conventional_rs' => 1025, |
|
10202
|
|
|
'frame_reference_epoch' => null, |
|
10203
|
|
|
'anchor_epoch' => null, |
|
10204
|
|
|
'extent_name' => 'Europe - ETRF', |
|
10205
|
|
|
'help' => 'Coincides with ITRF91 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the AM02 geophysical model. |
|
10206
|
|
|
Defined by transformation from ITRF91 (CT code 7934). Replaces ETRF90 (datum code 1179). Replaced by ETRF92 (datum code 1181).', |
|
10207
|
|
|
], |
|
10208
|
|
|
'urn:ogc:def:datum:EPSG::1181' => [ |
|
10209
|
|
|
'name' => 'European Terrestrial Reference Frame 1992', |
|
10210
|
|
|
'type' => 'geodetic', |
|
10211
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10212
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10213
|
|
|
'conventional_rs' => 1025, |
|
10214
|
|
|
'frame_reference_epoch' => null, |
|
10215
|
|
|
'anchor_epoch' => null, |
|
10216
|
|
|
'extent_name' => 'Europe - ETRF', |
|
10217
|
|
|
'help' => 'Coincides with ITRF92 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the NNR-NUVEL-1 geophysical model. |
|
10218
|
|
|
Defined by transformation from ITRF92 (CT code 7935). Replaces ETRF91 (datum code 1180). Replaced by ETRF93 (datum code 1182).', |
|
10219
|
|
|
], |
|
10220
|
|
|
'urn:ogc:def:datum:EPSG::1182' => [ |
|
10221
|
|
|
'name' => 'European Terrestrial Reference Frame 1993', |
|
10222
|
|
|
'type' => 'geodetic', |
|
10223
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10224
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10225
|
|
|
'conventional_rs' => 1025, |
|
10226
|
|
|
'frame_reference_epoch' => null, |
|
10227
|
|
|
'anchor_epoch' => null, |
|
10228
|
|
|
'extent_name' => 'Europe - ETRF', |
|
10229
|
|
|
'help' => 'Coincides with ITRF93 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the ITRF93 velocity field. |
|
10230
|
|
|
Defined by transformation from ITRF93 (CT code 7936). Replaces ETRF92 (datum code 1181). Replaced by ETRF94 (datum code 1183).', |
|
10231
|
|
|
], |
|
10232
|
|
|
'urn:ogc:def:datum:EPSG::1183' => [ |
|
10233
|
|
|
'name' => 'European Terrestrial Reference Frame 1994', |
|
10234
|
|
|
'type' => 'geodetic', |
|
10235
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10236
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10237
|
|
|
'conventional_rs' => 1025, |
|
10238
|
|
|
'frame_reference_epoch' => null, |
|
10239
|
|
|
'anchor_epoch' => null, |
|
10240
|
|
|
'extent_name' => 'Europe - ETRF', |
|
10241
|
|
|
'help' => 'Coincides with ITRF94 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the NNR-NUVEL-1A geophysical model. |
|
10242
|
|
|
Defined by transformation from ITRF94 (CT code 7937). Replaces ETRF93 (datum code 1182). Replaced by ETRF96 (datum code 1184).', |
|
10243
|
|
|
], |
|
10244
|
|
|
'urn:ogc:def:datum:EPSG::1184' => [ |
|
10245
|
|
|
'name' => 'European Terrestrial Reference Frame 1996', |
|
10246
|
|
|
'type' => 'geodetic', |
|
10247
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10248
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10249
|
|
|
'conventional_rs' => 1025, |
|
10250
|
|
|
'frame_reference_epoch' => null, |
|
10251
|
|
|
'anchor_epoch' => null, |
|
10252
|
|
|
'extent_name' => 'Europe - ETRF', |
|
10253
|
|
|
'help' => 'Coincides with ITRF96 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the NNR-NUVEL-1A geophysical model. |
|
10254
|
|
|
Defined by transformation from ITRF96 (CT code 7938). Replaces ETRF94 (datum code 1183). Replaced by ETRF97 (datum code 1185).', |
|
10255
|
|
|
], |
|
10256
|
|
|
'urn:ogc:def:datum:EPSG::1185' => [ |
|
10257
|
|
|
'name' => 'European Terrestrial Reference Frame 1997', |
|
10258
|
|
|
'type' => 'geodetic', |
|
10259
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10260
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10261
|
|
|
'conventional_rs' => 1025, |
|
10262
|
|
|
'frame_reference_epoch' => null, |
|
10263
|
|
|
'anchor_epoch' => null, |
|
10264
|
|
|
'extent_name' => 'Europe - ETRF', |
|
10265
|
|
|
'help' => 'Coincides with ITRF97 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the NNR-NUVEL-1A geophysical model. |
|
10266
|
|
|
Defined by transformation from ITRF97 (CT code 7939). Replaces ETRF96 (datum code 1184). Replaced by ETRF2000 (datum code 1186).', |
|
10267
|
|
|
], |
|
10268
|
|
|
'urn:ogc:def:datum:EPSG::1186' => [ |
|
10269
|
|
|
'name' => 'European Terrestrial Reference Frame 2000', |
|
10270
|
|
|
'type' => 'geodetic', |
|
10271
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10272
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10273
|
|
|
'conventional_rs' => 1025, |
|
10274
|
|
|
'frame_reference_epoch' => null, |
|
10275
|
|
|
'anchor_epoch' => null, |
|
10276
|
|
|
'extent_name' => 'Europe - ETRF', |
|
10277
|
|
|
'help' => 'Coincides with ITRF2000 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the ITRF2000 velocity field. |
|
10278
|
|
|
Defined by transformation from ITRF2000 (CT 7940). Replaces ETRF97. On the publication of ETRF2005 the EUREF TWG recommended that ETRF2000 be the realization of ETRS89. ETRF2014 (code 1206) is technically superior to all earlier realizations of ETRS89.', |
|
10279
|
|
|
], |
|
10280
|
|
|
'urn:ogc:def:datum:EPSG::1187' => [ |
|
10281
|
|
|
'name' => 'Islands Net 2016', |
|
10282
|
|
|
'type' => 'geodetic', |
|
10283
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10284
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10285
|
|
|
'conventional_rs' => null, |
|
10286
|
|
|
'frame_reference_epoch' => null, |
|
10287
|
|
|
'anchor_epoch' => null, |
|
10288
|
|
|
'extent_name' => 'Iceland', |
|
10289
|
|
|
'help' => 'ITRF2014 at epoch 2016.5. |
|
10290
|
|
|
Replaces ISN2004 from September 2017.', |
|
10291
|
|
|
], |
|
10292
|
|
|
'urn:ogc:def:datum:EPSG::1188' => [ |
|
10293
|
|
|
'name' => 'Gusterberg (Ferro)', |
|
10294
|
|
|
'type' => 'geodetic', |
|
10295
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::1026', |
|
10296
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909', |
|
10297
|
|
|
'conventional_rs' => null, |
|
10298
|
|
|
'frame_reference_epoch' => null, |
|
10299
|
|
|
'anchor_epoch' => null, |
|
10300
|
|
|
'extent_name' => 'Europe - Upper Austria, Salzburg and Bohemia', |
|
10301
|
|
|
'help' => 'Fundamental point: Gusterberg. Latitude: 48°02\'18.47"N, longitude: 31°48\'15.05"E (of Ferro). |
|
10302
|
|
|
', |
|
10303
|
|
|
], |
|
10304
|
|
|
'urn:ogc:def:datum:EPSG::1189' => [ |
|
10305
|
|
|
'name' => 'St. Stephen (Ferro)', |
|
10306
|
|
|
'type' => 'geodetic', |
|
10307
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::1026', |
|
10308
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909', |
|
10309
|
|
|
'conventional_rs' => null, |
|
10310
|
|
|
'frame_reference_epoch' => null, |
|
10311
|
|
|
'anchor_epoch' => null, |
|
10312
|
|
|
'extent_name' => 'Europe - Lower Austria and Moravia', |
|
10313
|
|
|
'help' => 'Fundamental point: St. Stephen\'s cathedral, Vienna. Latitude: 48°12\'31.54"N, longitude: 34°02\'27.32"E (of Ferro). |
|
10314
|
|
|
', |
|
10315
|
|
|
], |
|
10316
|
|
|
'urn:ogc:def:datum:EPSG::1190' => [ |
|
10317
|
|
|
'name' => 'Landshaedarkerfi Islands 2004', |
|
10318
|
|
|
'type' => 'vertical', |
|
10319
|
|
|
'ellipsoid' => null, |
|
10320
|
|
|
'prime_meridian' => null, |
|
10321
|
|
|
'conventional_rs' => null, |
|
10322
|
|
|
'frame_reference_epoch' => null, |
|
10323
|
|
|
'anchor_epoch' => null, |
|
10324
|
|
|
'extent_name' => 'Iceland - onshore', |
|
10325
|
|
|
'help' => 'Adjustment is referenced to mean sea level at Reykjavík epoch 2004.6. |
|
10326
|
|
|
', |
|
10327
|
|
|
], |
|
10328
|
|
|
'urn:ogc:def:datum:EPSG::1191' => [ |
|
10329
|
|
|
'name' => 'IGS14', |
|
10330
|
|
|
'type' => 'dynamic geodetic', |
|
10331
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10332
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10333
|
|
|
'conventional_rs' => null, |
|
10334
|
|
|
'frame_reference_epoch' => 2010.0, |
|
10335
|
|
|
'anchor_epoch' => null, |
|
10336
|
|
|
'extent_name' => 'World', |
|
10337
|
|
|
'help' => 'Derived from ITRF2014 at epoch 2010.00 through a subset of 252 stable IGS station coordinates. Preserves the ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques. |
|
10338
|
|
|
Used for IGS products from GPS week 1934 (2017-01-29) through GPS week 2105 (2020-05-16). Replaces IGb08, replaced by IGb14. For all practical purposes coincident with ITRF2014.', |
|
10339
|
|
|
], |
|
10340
|
|
|
'urn:ogc:def:datum:EPSG::1192' => [ |
|
10341
|
|
|
'name' => 'North American Datum of 1983 (CSRS96)', |
|
10342
|
|
|
'type' => 'geodetic', |
|
10343
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10344
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10345
|
|
|
'conventional_rs' => null, |
|
10346
|
|
|
'frame_reference_epoch' => null, |
|
10347
|
|
|
'anchor_epoch' => null, |
|
10348
|
|
|
'extent_name' => 'Canada', |
|
10349
|
|
|
'help' => 'Defined at epoch 1988.0 by a transformation from ITRF92, the definition superseded by a transformation from ITRF93 and then by a transformation from ITRF94. (See transformation codes 8256-58). |
|
10350
|
|
|
Adopted by the Canadian federal government from 1996-01-01. Replaces NAD83 [sometimes called NAD83(Original)]. Replaced by NAD83(CSRS)v2.', |
|
10351
|
|
|
], |
|
10352
|
|
|
'urn:ogc:def:datum:EPSG::1193' => [ |
|
10353
|
|
|
'name' => 'North American Datum of 1983 (CSRS) version 2', |
|
10354
|
|
|
'type' => 'geodetic', |
|
10355
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10356
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10357
|
|
|
'conventional_rs' => null, |
|
10358
|
|
|
'frame_reference_epoch' => null, |
|
10359
|
|
|
'anchor_epoch' => 1997.0, |
|
10360
|
|
|
'extent_name' => 'Canada', |
|
10361
|
|
|
'help' => 'Defined at reference epoch 1997.00 by a transformation from ITRF96 (see transformation code 8259). The frame is kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model. |
|
10362
|
|
|
Published 1998-01-01; adopted by the Canadian federal government and the provincial governments of Alberta, Saskatchewan, Manitoba, Quebec, New Brunswick and Prince Edward Island. Replaces NAD83(CSRS96). Replaced by NAD83(CSRS)v3.', |
|
10363
|
|
|
], |
|
10364
|
|
|
'urn:ogc:def:datum:EPSG::1194' => [ |
|
10365
|
|
|
'name' => 'North American Datum of 1983 (CSRS) version 3', |
|
10366
|
|
|
'type' => 'geodetic', |
|
10367
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10368
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10369
|
|
|
'conventional_rs' => null, |
|
10370
|
|
|
'frame_reference_epoch' => null, |
|
10371
|
|
|
'anchor_epoch' => 1997.0, |
|
10372
|
|
|
'extent_name' => 'Canada', |
|
10373
|
|
|
'help' => 'Defined at reference epoch 1997.00 by a transformation from ITRF97 (see transformation code 8260). The frame is kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model. |
|
10374
|
|
|
Published 1999-01-01; adopted by the Canadian federal government (2000) and the provincial governments of British Columbia (CRD in 2000, all Victoria Island 2005), Ontario (2008) and Nova Scotia (2000). Replaces NAD83(CSRS)v2. Replaced by NAD83(CSRS)v4.', |
|
10375
|
|
|
], |
|
10376
|
|
|
'urn:ogc:def:datum:EPSG::1195' => [ |
|
10377
|
|
|
'name' => 'North American Datum of 1983 (CSRS) version 4', |
|
10378
|
|
|
'type' => 'geodetic', |
|
10379
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10380
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10381
|
|
|
'conventional_rs' => null, |
|
10382
|
|
|
'frame_reference_epoch' => null, |
|
10383
|
|
|
'anchor_epoch' => 2002.0, |
|
10384
|
|
|
'extent_name' => 'Canada', |
|
10385
|
|
|
'help' => 'Defined at reference epoch 2002.00 by a transformation from ITRF2000 (see transformation code 8261). The frame is kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model. |
|
10386
|
|
|
Published 2002-01-01; adopted by the Canadian federal government (2002) and the provincial governments of British Columbia (for mainland only, not Victoria Island) (2005) and Alberta (2004). Replaces NAD83(CSRS)v3. Replaced by NAD83(CSRS)v5.', |
|
10387
|
|
|
], |
|
10388
|
|
|
'urn:ogc:def:datum:EPSG::1196' => [ |
|
10389
|
|
|
'name' => 'North American Datum of 1983 (CSRS) version 5', |
|
10390
|
|
|
'type' => 'geodetic', |
|
10391
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10392
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10393
|
|
|
'conventional_rs' => null, |
|
10394
|
|
|
'frame_reference_epoch' => null, |
|
10395
|
|
|
'anchor_epoch' => 2006.0, |
|
10396
|
|
|
'extent_name' => 'Canada', |
|
10397
|
|
|
'help' => 'Defined at reference epoch 2006.00 by a transformation from ITRF2005 (see transformation code 9227). The frame is kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model. |
|
10398
|
|
|
Published 2007-01-01; adopted by the Canadian federal government in 2007. Replaces NAD83(CSRS)v4. Replaced by NAD83(CSRS)v6.', |
|
10399
|
|
|
], |
|
10400
|
|
|
'urn:ogc:def:datum:EPSG::1197' => [ |
|
10401
|
|
|
'name' => 'North American Datum of 1983 (CSRS) version 6', |
|
10402
|
|
|
'type' => 'geodetic', |
|
10403
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10404
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10405
|
|
|
'conventional_rs' => null, |
|
10406
|
|
|
'frame_reference_epoch' => null, |
|
10407
|
|
|
'anchor_epoch' => 2010.0, |
|
10408
|
|
|
'extent_name' => 'Canada', |
|
10409
|
|
|
'help' => 'Defined at reference epoch 2010.00 by a transformation from ITRF2008 (see transformation code 8264). The frame is kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model. |
|
10410
|
|
|
Published 2010-01-01; adopted by the Canadian government (2012) and the provincial governments of Manitoba (2014), Ontario (2013), Prince Edward Island (2014), Nova Scotia (2014) and Newfoundland (2012). Replaces NAD83(CSRSv5). Replaced by NAD83(CSRS)v7.', |
|
10411
|
|
|
], |
|
10412
|
|
|
'urn:ogc:def:datum:EPSG::1198' => [ |
|
10413
|
|
|
'name' => 'North American Datum of 1983 (CSRS) version 7', |
|
10414
|
|
|
'type' => 'geodetic', |
|
10415
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10416
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10417
|
|
|
'conventional_rs' => null, |
|
10418
|
|
|
'frame_reference_epoch' => null, |
|
10419
|
|
|
'anchor_epoch' => 2010.0, |
|
10420
|
|
|
'extent_name' => 'Canada', |
|
10421
|
|
|
'help' => 'Defined at reference epoch 2010.00 by a transformation from ITRF2014 (see transformation code 8265). The frame is kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model. |
|
10422
|
|
|
Published 2017-05-01; adopted by the Canadian federal government (2017) and the provincial governments of Alberta (2021) and Prince Edward Island (2020). Replaces NAD83(CSRS)v6. Replaced by NAD83(CSRS)v8.', |
|
10423
|
|
|
], |
|
10424
|
|
|
'urn:ogc:def:datum:EPSG::1199' => [ |
|
10425
|
|
|
'name' => 'Greenland Vertical Reference 2000', |
|
10426
|
|
|
'type' => 'vertical', |
|
10427
|
|
|
'ellipsoid' => null, |
|
10428
|
|
|
'prime_meridian' => null, |
|
10429
|
|
|
'conventional_rs' => null, |
|
10430
|
|
|
'frame_reference_epoch' => null, |
|
10431
|
|
|
'anchor_epoch' => null, |
|
10432
|
|
|
'extent_name' => 'Greenland - 59°N to 84°N', |
|
10433
|
|
|
'help' => 'Defined through the gravimetric geoid 2000 model locally aligned with MSL at a number of sites. |
|
10434
|
|
|
Orthometric heights. Replaced by GVR2016.', |
|
10435
|
|
|
], |
|
10436
|
|
|
'urn:ogc:def:datum:EPSG::1200' => [ |
|
10437
|
|
|
'name' => 'Greenland Vertical Reference 2016', |
|
10438
|
|
|
'type' => 'vertical', |
|
10439
|
|
|
'ellipsoid' => null, |
|
10440
|
|
|
'prime_meridian' => null, |
|
10441
|
|
|
'conventional_rs' => null, |
|
10442
|
|
|
'frame_reference_epoch' => null, |
|
10443
|
|
|
'anchor_epoch' => null, |
|
10444
|
|
|
'extent_name' => 'Greenland - 58°N to 85°N', |
|
10445
|
|
|
'help' => 'Defined through the gravimetric geoid 2016 model locally aligned to MSL as measured at Nuuk during the 1960s. |
|
10446
|
|
|
Orthometric heights. Replaces GVR2000.', |
|
10447
|
|
|
], |
|
10448
|
|
|
'urn:ogc:def:datum:EPSG::1201' => [ |
|
10449
|
|
|
'name' => 'System of the Unified Trigonometrical Cadastral Network [JTSK03]', |
|
10450
|
|
|
'type' => 'geodetic', |
|
10451
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
10452
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10453
|
|
|
'conventional_rs' => null, |
|
10454
|
|
|
'frame_reference_epoch' => null, |
|
10455
|
|
|
'anchor_epoch' => null, |
|
10456
|
|
|
'extent_name' => 'Slovakia', |
|
10457
|
|
|
'help' => ' |
|
10458
|
|
|
', |
|
10459
|
|
|
], |
|
10460
|
|
|
'urn:ogc:def:datum:EPSG::1202' => [ |
|
10461
|
|
|
'name' => 'Baltic 1957', |
|
10462
|
|
|
'type' => 'vertical', |
|
10463
|
|
|
'ellipsoid' => null, |
|
10464
|
|
|
'prime_meridian' => null, |
|
10465
|
|
|
'conventional_rs' => null, |
|
10466
|
|
|
'frame_reference_epoch' => null, |
|
10467
|
|
|
'anchor_epoch' => null, |
|
10468
|
|
|
'extent_name' => 'Europe - Czechoslovakia', |
|
10469
|
|
|
'help' => 'Datum: average water level at Kronstadt 1833. Network adjusted in 1957 as Uniform Precise Leveling Network of Eastern Europe (EPNN). |
|
10470
|
|
|
Uses Normal heights.', |
|
10471
|
|
|
], |
|
10472
|
|
|
'urn:ogc:def:datum:EPSG::1204' => [ |
|
10473
|
|
|
'name' => 'European Terrestrial Reference Frame 2005', |
|
10474
|
|
|
'type' => 'geodetic', |
|
10475
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10476
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10477
|
|
|
'conventional_rs' => 1025, |
|
10478
|
|
|
'frame_reference_epoch' => null, |
|
10479
|
|
|
'anchor_epoch' => null, |
|
10480
|
|
|
'extent_name' => 'Europe - ETRF', |
|
10481
|
|
|
'help' => 'Coincides with ITRF2005 in orientation and scale at epoch 1989.0 realigned to ITRF89 at epoch 1989.0 using 3 translations. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the ITRF2005 velocity field. |
|
10482
|
|
|
Defined by transformation from ITRF2005 (CT 5900). On publication in 2007 of this reference frame, the EUREF TWG recommended that ETRF2000 rather than this reference frame remained as the preferred realization of ETRS89. Replaced by ETRF2014 (code 1206).', |
|
10483
|
|
|
], |
|
10484
|
|
|
'urn:ogc:def:datum:EPSG::1206' => [ |
|
10485
|
|
|
'name' => 'European Terrestrial Reference Frame 2014', |
|
10486
|
|
|
'type' => 'geodetic', |
|
10487
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10488
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10489
|
|
|
'conventional_rs' => 1025, |
|
10490
|
|
|
'frame_reference_epoch' => null, |
|
10491
|
|
|
'anchor_epoch' => null, |
|
10492
|
|
|
'extent_name' => 'Europe - ETRF', |
|
10493
|
|
|
'help' => 'Coincides with ITRF2014 at epoch 1989.0. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the ITRF2014 velocity field. |
|
10494
|
|
|
Defined by transformation from ITRF2014 (CT code 8366). Replaces ETRF2005 (datum code 1204). Technically superior to ETRF2000 (datum code 1186).', |
|
10495
|
|
|
], |
|
10496
|
|
|
'urn:ogc:def:datum:EPSG::1207' => [ |
|
10497
|
|
|
'name' => 'Macao 1920', |
|
10498
|
|
|
'type' => 'geodetic', |
|
10499
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
10500
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10501
|
|
|
'conventional_rs' => null, |
|
10502
|
|
|
'frame_reference_epoch' => null, |
|
10503
|
|
|
'anchor_epoch' => null, |
|
10504
|
|
|
'extent_name' => 'China - Macao', |
|
10505
|
|
|
'help' => 'Fundamental point: Avenida Conselheiro Borja base A, later transferred to Monte da Barra, latitude 22°11\'03.139"N, longitude 113°31\'43.625"E (of Greenwich). |
|
10506
|
|
|
Replaces Macao 1907. In 1955 an adjustment made in 1940 was assessed to have unresolvable conflicts and the 1920 adjustment was reinstated.', |
|
10507
|
|
|
], |
|
10508
|
|
|
'urn:ogc:def:datum:EPSG::1208' => [ |
|
10509
|
|
|
'name' => 'Macao Geodetic Datum 2008', |
|
10510
|
|
|
'type' => 'geodetic', |
|
10511
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10512
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10513
|
|
|
'conventional_rs' => null, |
|
10514
|
|
|
'frame_reference_epoch' => null, |
|
10515
|
|
|
'anchor_epoch' => null, |
|
10516
|
|
|
'extent_name' => 'China - Macao', |
|
10517
|
|
|
'help' => 'ITRF2005 at epoch 2008.38. |
|
10518
|
|
|
Locally sometimes referred to as ITRF2005, this is not strictly correct as it applies only at epoch 2008.38 and ignores subsequent tectonic plate motion.', |
|
10519
|
|
|
], |
|
10520
|
|
|
'urn:ogc:def:datum:EPSG::1209' => [ |
|
10521
|
|
|
'name' => 'Hong Kong Geodetic', |
|
10522
|
|
|
'type' => 'geodetic', |
|
10523
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10524
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10525
|
|
|
'conventional_rs' => null, |
|
10526
|
|
|
'frame_reference_epoch' => null, |
|
10527
|
|
|
'anchor_epoch' => null, |
|
10528
|
|
|
'extent_name' => 'China - Hong Kong', |
|
10529
|
|
|
'help' => 'ITRF96 at epoch 1998.121 |
|
10530
|
|
|
Locally sometimes referred to as ITRF96 or WGS 84, these are not strictly correct as it applies only at epoch 1998.121 and ignores subsequent tectonic plate motion.', |
|
10531
|
|
|
], |
|
10532
|
|
|
'urn:ogc:def:datum:EPSG::1210' => [ |
|
10533
|
|
|
'name' => 'Macao Height Datum', |
|
10534
|
|
|
'type' => 'vertical', |
|
10535
|
|
|
'ellipsoid' => null, |
|
10536
|
|
|
'prime_meridian' => null, |
|
10537
|
|
|
'conventional_rs' => null, |
|
10538
|
|
|
'frame_reference_epoch' => null, |
|
10539
|
|
|
'anchor_epoch' => null, |
|
10540
|
|
|
'extent_name' => 'China - Macao', |
|
10541
|
|
|
'help' => 'Mean sea level Ma Kau Seak 1925-1964. |
|
10542
|
|
|
', |
|
10543
|
|
|
], |
|
10544
|
|
|
'urn:ogc:def:datum:EPSG::1211' => [ |
|
10545
|
|
|
'name' => 'NAD83 (Federal Base Network)', |
|
10546
|
|
|
'type' => 'geodetic', |
|
10547
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10548
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10549
|
|
|
'conventional_rs' => null, |
|
10550
|
|
|
'frame_reference_epoch' => null, |
|
10551
|
|
|
'anchor_epoch' => null, |
|
10552
|
|
|
'extent_name' => 'USA - FBN', |
|
10553
|
|
|
'help' => 'A collection of individual state-wide adjustments including GPS observations made between 1997 and 2004. |
|
10554
|
|
|
In CA CT FL ID MA ME MT NC NH NJ NV NY OR RI SC TN VT WA and WI, replaces the early 1990s HARN adjustment. In rest of CONUS the difference between the HARN and FBN adjustments was under 5cm and the original HARN adjustments were adopted as NAD83(FBN).', |
|
10555
|
|
|
], |
|
10556
|
|
|
'urn:ogc:def:datum:EPSG::1212' => [ |
|
10557
|
|
|
'name' => 'NAD83 (High Accuracy Reference Network - Corrected)', |
|
10558
|
|
|
'type' => 'geodetic', |
|
10559
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10560
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10561
|
|
|
'conventional_rs' => null, |
|
10562
|
|
|
'frame_reference_epoch' => null, |
|
10563
|
|
|
'anchor_epoch' => null, |
|
10564
|
|
|
'extent_name' => 'Caribbean - Puerto Rico and US Virgin Islands - onshore', |
|
10565
|
|
|
'help' => ' |
|
10566
|
|
|
In PRVI replaces NAD83(HARN) to correct errors. Replaced by NAD83(FBN).', |
|
10567
|
|
|
], |
|
10568
|
|
|
'urn:ogc:def:datum:EPSG::1213' => [ |
|
10569
|
|
|
'name' => 'Helsinki 1943', |
|
10570
|
|
|
'type' => 'vertical', |
|
10571
|
|
|
'ellipsoid' => null, |
|
10572
|
|
|
'prime_meridian' => null, |
|
10573
|
|
|
'conventional_rs' => null, |
|
10574
|
|
|
'frame_reference_epoch' => null, |
|
10575
|
|
|
'anchor_epoch' => null, |
|
10576
|
|
|
'extent_name' => 'Finland - mainland south of 66°N', |
|
10577
|
|
|
'help' => 'MSL at Helsinki during 1943. |
|
10578
|
|
|
Uses orthometric heights. Effect of the land uplift during the 2nd national levelling was not taken into account. Replaced by N60 (datum code 5116).', |
|
10579
|
|
|
], |
|
10580
|
|
|
'urn:ogc:def:datum:EPSG::1214' => [ |
|
10581
|
|
|
'name' => 'Serbian Spatial Reference System 2000', |
|
10582
|
|
|
'type' => 'geodetic', |
|
10583
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10584
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10585
|
|
|
'conventional_rs' => null, |
|
10586
|
|
|
'frame_reference_epoch' => null, |
|
10587
|
|
|
'anchor_epoch' => null, |
|
10588
|
|
|
'extent_name' => 'Serbia', |
|
10589
|
|
|
'help' => 'Densification of ETRF2000 in Serbia at epoch 2010.63. |
|
10590
|
|
|
Replaces SREF98.', |
|
10591
|
|
|
], |
|
10592
|
|
|
'urn:ogc:def:datum:EPSG::1215' => [ |
|
10593
|
|
|
'name' => 'Slovenian Vertical System 2010', |
|
10594
|
|
|
'type' => 'vertical', |
|
10595
|
|
|
'ellipsoid' => null, |
|
10596
|
|
|
'prime_meridian' => null, |
|
10597
|
|
|
'conventional_rs' => null, |
|
10598
|
|
|
'frame_reference_epoch' => null, |
|
10599
|
|
|
'anchor_epoch' => null, |
|
10600
|
|
|
'extent_name' => 'Slovenia - onshore', |
|
10601
|
|
|
'help' => 'Mean sea level at Koper over 18.6 years, selected epoch is 2010-10-10. |
|
10602
|
|
|
Normal heights. Replaces SVS2000 from 2019-01.', |
|
10603
|
|
|
], |
|
10604
|
|
|
'urn:ogc:def:datum:EPSG::1216' => [ |
|
10605
|
|
|
'name' => 'Serbian Vertical Reference System 2012', |
|
10606
|
|
|
'type' => 'vertical', |
|
10607
|
|
|
'ellipsoid' => null, |
|
10608
|
|
|
'prime_meridian' => null, |
|
10609
|
|
|
'conventional_rs' => null, |
|
10610
|
|
|
'frame_reference_epoch' => null, |
|
10611
|
|
|
'anchor_epoch' => null, |
|
10612
|
|
|
'extent_name' => 'Serbia', |
|
10613
|
|
|
'help' => 'Mean sea level of Adriatic Sea in 1971. |
|
10614
|
|
|
Normal heights above quasi-geoid. In Serbia replaces Trieste (datum code 1050).', |
|
10615
|
|
|
], |
|
10616
|
|
|
'urn:ogc:def:datum:EPSG::1217' => [ |
|
10617
|
|
|
'name' => 'Camacupa 2015', |
|
10618
|
|
|
'type' => 'geodetic', |
|
10619
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
10620
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10621
|
|
|
'conventional_rs' => null, |
|
10622
|
|
|
'frame_reference_epoch' => null, |
|
10623
|
|
|
'anchor_epoch' => null, |
|
10624
|
|
|
'extent_name' => 'Angola', |
|
10625
|
|
|
'help' => 'Fundamental point: Campo de Aviaçao. Latitude: 12°01\'08.702"S, Longitude = 17°27\'19.515"E (of Greenwich). |
|
10626
|
|
|
Second adjustment. Not used for offshore oil and gas exploration and production.', |
|
10627
|
|
|
], |
|
10628
|
|
|
'urn:ogc:def:datum:EPSG::1218' => [ |
|
10629
|
|
|
'name' => 'MOMRA Terrestrial Reference Frame 2000', |
|
10630
|
|
|
'type' => 'geodetic', |
|
10631
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10632
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10633
|
|
|
'conventional_rs' => null, |
|
10634
|
|
|
'frame_reference_epoch' => null, |
|
10635
|
|
|
'anchor_epoch' => null, |
|
10636
|
|
|
'extent_name' => 'Saudi Arabia', |
|
10637
|
|
|
'help' => 'ITRF2000 at epoch 2004.00. |
|
10638
|
|
|
13 CORS Fiducial Stations linked to 7 IGS stations by 10-day long GPS survey.', |
|
10639
|
|
|
], |
|
10640
|
|
|
'urn:ogc:def:datum:EPSG::1219' => [ |
|
10641
|
|
|
'name' => 'MOMRA Vertical Geodetic Control', |
|
10642
|
|
|
'type' => 'vertical', |
|
10643
|
|
|
'ellipsoid' => null, |
|
10644
|
|
|
'prime_meridian' => null, |
|
10645
|
|
|
'conventional_rs' => null, |
|
10646
|
|
|
'frame_reference_epoch' => null, |
|
10647
|
|
|
'anchor_epoch' => null, |
|
10648
|
|
|
'extent_name' => 'Saudi Arabia - onshore', |
|
10649
|
|
|
'help' => 'Mean sea level Jeddah 1969. |
|
10650
|
|
|
', |
|
10651
|
|
|
], |
|
10652
|
|
|
'urn:ogc:def:datum:EPSG::1220' => [ |
|
10653
|
|
|
'name' => 'Reference System de Angola 2013', |
|
10654
|
|
|
'type' => 'geodetic', |
|
10655
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10656
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10657
|
|
|
'conventional_rs' => null, |
|
10658
|
|
|
'frame_reference_epoch' => null, |
|
10659
|
|
|
'anchor_epoch' => null, |
|
10660
|
|
|
'extent_name' => 'Angola', |
|
10661
|
|
|
'help' => 'Network of 18 stations throughout Angola referenced to ITRF2008 @ 2010.90. |
|
10662
|
|
|
Established through daily PPP solutions in GPS week G1610.', |
|
10663
|
|
|
], |
|
10664
|
|
|
'urn:ogc:def:datum:EPSG::1221' => [ |
|
10665
|
|
|
'name' => 'North American Datum of 1983 (MARP00)', |
|
10666
|
|
|
'type' => 'geodetic', |
|
10667
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10668
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10669
|
|
|
'conventional_rs' => null, |
|
10670
|
|
|
'frame_reference_epoch' => null, |
|
10671
|
|
|
'anchor_epoch' => null, |
|
10672
|
|
|
'extent_name' => 'Pacific - US interests Mariana plate', |
|
10673
|
|
|
'help' => 'Defined by a time-dependent seven parameter transformation of ITRF2000 3D geocentric Cartesian coordinates and velocities at reference epoch 1993.62, aligned to the Mariana plate at other epochs based on an Euler pole rotation. |
|
10674
|
|
|
Replaces NAD83(HARN) (GGN93) and NAD83(FBN) in Guam. Replaced by NAD83(MA11).', |
|
10675
|
|
|
], |
|
10676
|
|
|
'urn:ogc:def:datum:EPSG::1223' => [ |
|
10677
|
|
|
'name' => 'Reseau Geodesique de Wallis et Futuna 1996', |
|
10678
|
|
|
'type' => 'geodetic', |
|
10679
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10680
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10681
|
|
|
'conventional_rs' => null, |
|
10682
|
|
|
'frame_reference_epoch' => null, |
|
10683
|
|
|
'anchor_epoch' => null, |
|
10684
|
|
|
'extent_name' => 'Wallis and Futuna', |
|
10685
|
|
|
'help' => 'Coincident with ITRF94 at epoch 1993.00. |
|
10686
|
|
|
', |
|
10687
|
|
|
], |
|
10688
|
|
|
'urn:ogc:def:datum:EPSG::1224' => [ |
|
10689
|
|
|
'name' => 'Taiwan Vertical Datum 2001', |
|
10690
|
|
|
'type' => 'vertical', |
|
10691
|
|
|
'ellipsoid' => null, |
|
10692
|
|
|
'prime_meridian' => null, |
|
10693
|
|
|
'conventional_rs' => null, |
|
10694
|
|
|
'frame_reference_epoch' => null, |
|
10695
|
|
|
'anchor_epoch' => null, |
|
10696
|
|
|
'extent_name' => 'Taiwan - onshore - mainland', |
|
10697
|
|
|
'help' => 'Mean Sea Level at Keelung between 1957 and 1991. |
|
10698
|
|
|
Orthometric heights.', |
|
10699
|
|
|
], |
|
10700
|
|
|
'urn:ogc:def:datum:EPSG::1225' => [ |
|
10701
|
|
|
'name' => 'CR-SIRGAS', |
|
10702
|
|
|
'type' => 'geodetic', |
|
10703
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10704
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10705
|
|
|
'conventional_rs' => null, |
|
10706
|
|
|
'frame_reference_epoch' => null, |
|
10707
|
|
|
'anchor_epoch' => null, |
|
10708
|
|
|
'extent_name' => 'Costa Rica', |
|
10709
|
|
|
'help' => 'ITRF2008 (IGb08) at epoch 2014.59. Network of 42 GNSS stations of the passive and active reference system. |
|
10710
|
|
|
Replaces CR05 from April 2018.', |
|
10711
|
|
|
], |
|
10712
|
|
|
'urn:ogc:def:datum:EPSG::1226' => [ |
|
10713
|
|
|
'name' => 'Datum Altimetrico de Costa Rica 1952', |
|
10714
|
|
|
'type' => 'vertical', |
|
10715
|
|
|
'ellipsoid' => null, |
|
10716
|
|
|
'prime_meridian' => null, |
|
10717
|
|
|
'conventional_rs' => null, |
|
10718
|
|
|
'frame_reference_epoch' => null, |
|
10719
|
|
|
'anchor_epoch' => null, |
|
10720
|
|
|
'extent_name' => 'Costa Rica - onshore', |
|
10721
|
|
|
'help' => 'Mean Sea Level 1941-1952 at Puntarenas. |
|
10722
|
|
|
Orthometric heights.', |
|
10723
|
|
|
], |
|
10724
|
|
|
'urn:ogc:def:datum:EPSG::1227' => [ |
|
10725
|
|
|
'name' => 'SIRGAS Continuously Operating Network DGF00P01', |
|
10726
|
|
|
'type' => 'dynamic geodetic', |
|
10727
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10728
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10729
|
|
|
'conventional_rs' => null, |
|
10730
|
|
|
'frame_reference_epoch' => 2000.4, |
|
10731
|
|
|
'anchor_epoch' => null, |
|
10732
|
|
|
'extent_name' => 'Latin America - Central America and South America', |
|
10733
|
|
|
'help' => 'Aligned to ITRF97 at epoch 2000.40. Realized by a frame of 31 continuously operating stations using GPS observations from June 1996 to February 2000. Velocity model VEMOS2003 used to propagate coordinates to the frame reference epoch. |
|
10734
|
|
|
DGF00P01 is included in ITRF2000 as a regional densification for South America. Replaced by DGF01P01 (datum code 1228).', |
|
10735
|
|
|
], |
|
10736
|
|
|
'urn:ogc:def:datum:EPSG::1228' => [ |
|
10737
|
|
|
'name' => 'SIRGAS Continuously Operating Network DGF01P01', |
|
10738
|
|
|
'type' => 'dynamic geodetic', |
|
10739
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10740
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10741
|
|
|
'conventional_rs' => null, |
|
10742
|
|
|
'frame_reference_epoch' => 2000.0, |
|
10743
|
|
|
'anchor_epoch' => null, |
|
10744
|
|
|
'extent_name' => 'Latin America - Central America and South America', |
|
10745
|
|
|
'help' => 'Aligned to ITRF2000 at epoch 2000.00. Realized by a frame of 48 continuously operating stations using GPS observations from June 1996 to April 2001. Velocity model VEMOS2003 used to propagate coordinates to the frame reference epoch. |
|
10746
|
|
|
Replaces DGF00P01 (datum code 1227). Replaced by DGF01P02 (datum code 1229).', |
|
10747
|
|
|
], |
|
10748
|
|
|
'urn:ogc:def:datum:EPSG::1229' => [ |
|
10749
|
|
|
'name' => 'SIRGAS Continuously Operating Network DGF01P02', |
|
10750
|
|
|
'type' => 'dynamic geodetic', |
|
10751
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10752
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10753
|
|
|
'conventional_rs' => null, |
|
10754
|
|
|
'frame_reference_epoch' => 1998.4, |
|
10755
|
|
|
'anchor_epoch' => null, |
|
10756
|
|
|
'extent_name' => 'Latin America - Central America and South America', |
|
10757
|
|
|
'help' => 'Aligned to ITRF2000 at epoch 1998.40. Realized by a frame of 49 continuously operating stations using GPS observations from June 1996 to October 2001. Velocity model VEMOS2003 used to propagate coordinates to the frame reference epoch. |
|
10758
|
|
|
Replaces DGF01P01 (datum code 1228). Replaced by DGF02P01 (datum code 1230).', |
|
10759
|
|
|
], |
|
10760
|
|
|
'urn:ogc:def:datum:EPSG::1230' => [ |
|
10761
|
|
|
'name' => 'SIRGAS Continuously Operating Network DGF02P01', |
|
10762
|
|
|
'type' => 'dynamic geodetic', |
|
10763
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10764
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10765
|
|
|
'conventional_rs' => null, |
|
10766
|
|
|
'frame_reference_epoch' => 2000.0, |
|
10767
|
|
|
'anchor_epoch' => null, |
|
10768
|
|
|
'extent_name' => 'Latin America - Central America and South America', |
|
10769
|
|
|
'help' => 'Aligned to ITRF2000 at epoch 2000.00. Realized by a frame of 53 continuously operating stations using GPS observations from June 1996 to July 2002. Velocity model VEMOS2003 used to propagate coordinates to the frame reference epoch. |
|
10770
|
|
|
Replaces DGF01P02 (datum code 1229). Replaced by DGF04P01 (datum code 1331).', |
|
10771
|
|
|
], |
|
10772
|
|
|
'urn:ogc:def:datum:EPSG::1231' => [ |
|
10773
|
|
|
'name' => 'SIRGAS Continuously Operating Network DGF04P01', |
|
10774
|
|
|
'type' => 'dynamic geodetic', |
|
10775
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10776
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10777
|
|
|
'conventional_rs' => null, |
|
10778
|
|
|
'frame_reference_epoch' => 2003.0, |
|
10779
|
|
|
'anchor_epoch' => null, |
|
10780
|
|
|
'extent_name' => 'Latin America - Central America and South America', |
|
10781
|
|
|
'help' => 'Aligned to ITRF2000 at epoch 2003.00. Realized by a frame of 69 continuously operating stations using GPS observations from June 1996 to July 2004. Velocity model VEMOS2003 used to propagate coordinates to the frame reference epoch. |
|
10782
|
|
|
Replaces DGF02P01 (datum code 1230). Replaced by DGF05P01 (datum code 1232).', |
|
10783
|
|
|
], |
|
10784
|
|
|
'urn:ogc:def:datum:EPSG::1232' => [ |
|
10785
|
|
|
'name' => 'SIRGAS Continuously Operating Network DGF05P01', |
|
10786
|
|
|
'type' => 'dynamic geodetic', |
|
10787
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10788
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10789
|
|
|
'conventional_rs' => null, |
|
10790
|
|
|
'frame_reference_epoch' => 2004.0, |
|
10791
|
|
|
'anchor_epoch' => null, |
|
10792
|
|
|
'extent_name' => 'Latin America - Central America and South America', |
|
10793
|
|
|
'help' => 'Aligned to ITRF2000 at epoch 2004.00. Realized by a frame of 95 continuously operating stations using GPS observations from June 1996 to September 2005. Velocity model VEMOS2003 used to propagate coordinates to the frame reference epoch. |
|
10794
|
|
|
Replaces DGF04P01 (datum code 1231). Replaced by DGF06P01 (datum code 1233).', |
|
10795
|
|
|
], |
|
10796
|
|
|
'urn:ogc:def:datum:EPSG::1233' => [ |
|
10797
|
|
|
'name' => 'SIRGAS Continuously Operating Network DGF06P01', |
|
10798
|
|
|
'type' => 'dynamic geodetic', |
|
10799
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10800
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10801
|
|
|
'conventional_rs' => null, |
|
10802
|
|
|
'frame_reference_epoch' => 2004.0, |
|
10803
|
|
|
'anchor_epoch' => null, |
|
10804
|
|
|
'extent_name' => 'Latin America - Central America and South America', |
|
10805
|
|
|
'help' => 'Aligned to ITRF2000 at epoch 2004.00. Realized by a frame of 94 continuously operating stations using GPS observations from June 1996 to June 2006. Velocity model VEMOS2003 used to propagate coordinates to the frame reference epoch. |
|
10806
|
|
|
Replaces DGF05P01 (datum code 1232). Replaced by DGF07P01 (datum code 1234).', |
|
10807
|
|
|
], |
|
10808
|
|
|
'urn:ogc:def:datum:EPSG::1234' => [ |
|
10809
|
|
|
'name' => 'SIRGAS Continuously Operating Network DGF07P01', |
|
10810
|
|
|
'type' => 'dynamic geodetic', |
|
10811
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10812
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10813
|
|
|
'conventional_rs' => null, |
|
10814
|
|
|
'frame_reference_epoch' => 2004.5, |
|
10815
|
|
|
'anchor_epoch' => null, |
|
10816
|
|
|
'extent_name' => 'Latin America - Central America and South America', |
|
10817
|
|
|
'help' => 'Aligned to IGS05 at epoch 2004.50. Realized by a frame of 106 continuously operating stations using GPS observations in 3 periods between December 2001 and October 2007. Velocity model VEMOS2003 used to propagate coordinates to the frame reference epoch. |
|
10818
|
|
|
Replaces DGF06P01 (datum code 1233). Replaced by DGF08P01 (datum code 1235).', |
|
10819
|
|
|
], |
|
10820
|
|
|
'urn:ogc:def:datum:EPSG::1235' => [ |
|
10821
|
|
|
'name' => 'SIRGAS Continuously Operating Network DGF08P01', |
|
10822
|
|
|
'type' => 'dynamic geodetic', |
|
10823
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10824
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10825
|
|
|
'conventional_rs' => null, |
|
10826
|
|
|
'frame_reference_epoch' => 2004.5, |
|
10827
|
|
|
'anchor_epoch' => null, |
|
10828
|
|
|
'extent_name' => 'Latin America - Central America and South America', |
|
10829
|
|
|
'help' => 'Aligned to IGS05 at epoch 2004.50. Realized by a frame of 126 continuously operating stations using GPS observations from December 2002 to March 2008. Velocity model VEMOS2003 used to propagate coordinates to the frame reference epoch. |
|
10830
|
|
|
Replaces DGF07P01 (datum code 1234). Replaced by SIR09P01 (datum code 1236).', |
|
10831
|
|
|
], |
|
10832
|
|
|
'urn:ogc:def:datum:EPSG::1236' => [ |
|
10833
|
|
|
'name' => 'SIRGAS Continuously Operating Network SIR09P01', |
|
10834
|
|
|
'type' => 'dynamic geodetic', |
|
10835
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10836
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10837
|
|
|
'conventional_rs' => null, |
|
10838
|
|
|
'frame_reference_epoch' => 2005.0, |
|
10839
|
|
|
'anchor_epoch' => null, |
|
10840
|
|
|
'extent_name' => 'Latin America - Central America and South America', |
|
10841
|
|
|
'help' => 'Aligned to IGS05 at epoch 2005.00. Realized by a frame of 128 continuously operating stations using GPS observations from January 2000 to January 2009. Velocity model VEMOS2009 used to propagate coordinates to the frame reference epoch. |
|
10842
|
|
|
Replaces DGF08P01 (datum code 1235). Replaced by SIR10P01 (datum code 1237).', |
|
10843
|
|
|
], |
|
10844
|
|
|
'urn:ogc:def:datum:EPSG::1237' => [ |
|
10845
|
|
|
'name' => 'SIRGAS Continuously Operating Network SIR10P01', |
|
10846
|
|
|
'type' => 'dynamic geodetic', |
|
10847
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10848
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10849
|
|
|
'conventional_rs' => null, |
|
10850
|
|
|
'frame_reference_epoch' => 2005.0, |
|
10851
|
|
|
'anchor_epoch' => null, |
|
10852
|
|
|
'extent_name' => 'Latin America - Central America and South America', |
|
10853
|
|
|
'help' => 'Aligned to ITRF08 at epoch 2005.00. Realized by a frame of 183 continuously operating stations using GPS observations from January 2000 to June 2010. Velocity model VEMOS2009 used to propagate coordinates to the frame reference epoch. |
|
10854
|
|
|
Replaces SIR09P01 (datum code 1236). Replaced by SIR11P01 (datum code 1238).', |
|
10855
|
|
|
], |
|
10856
|
|
|
'urn:ogc:def:datum:EPSG::1238' => [ |
|
10857
|
|
|
'name' => 'SIRGAS Continuously Operating Network SIR11P01', |
|
10858
|
|
|
'type' => 'dynamic geodetic', |
|
10859
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10860
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10861
|
|
|
'conventional_rs' => null, |
|
10862
|
|
|
'frame_reference_epoch' => 2005.0, |
|
10863
|
|
|
'anchor_epoch' => null, |
|
10864
|
|
|
'extent_name' => 'Latin America - Central America and South America', |
|
10865
|
|
|
'help' => 'Aligned to ITRF08 at epoch 2005.00. Realized by a frame of 230 continuously operating stations using GPS observations from January 2000 to April 2011. Velocity model VEMOS2009 used to propagate coordinates to the frame reference epoch. |
|
10866
|
|
|
Replaces SIR10P01 (datum code 1237). Replaced by SIR13P01 (datum code 1239). Last multi-year solution without the effects of the El Maule earthquake in February 2010.', |
|
10867
|
|
|
], |
|
10868
|
|
|
'urn:ogc:def:datum:EPSG::1239' => [ |
|
10869
|
|
|
'name' => 'SIRGAS Continuously Operating Network SIR13P01', |
|
10870
|
|
|
'type' => 'dynamic geodetic', |
|
10871
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10872
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10873
|
|
|
'conventional_rs' => null, |
|
10874
|
|
|
'frame_reference_epoch' => 2012.0, |
|
10875
|
|
|
'anchor_epoch' => null, |
|
10876
|
|
|
'extent_name' => 'Latin America - Central America and South America', |
|
10877
|
|
|
'help' => 'Aligned to IGb08 at epoch 2012.00. Realized by a frame of 108 continuously operating stations using GPS observations from April 2010 to June 2013. Velocity model VEMOS2009 used to propagate coordinates to the frame reference epoch. |
|
10878
|
|
|
Replaces SIR11P01 (datum code 1238). Replaced by SIR14P01 (datum code 1240). First multi-year solution after the El Maule earthquake of February 2010.', |
|
10879
|
|
|
], |
|
10880
|
|
|
'urn:ogc:def:datum:EPSG::1240' => [ |
|
10881
|
|
|
'name' => 'SIRGAS Continuously Operating Network SIR14P01', |
|
10882
|
|
|
'type' => 'dynamic geodetic', |
|
10883
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10884
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10885
|
|
|
'conventional_rs' => null, |
|
10886
|
|
|
'frame_reference_epoch' => 2013.0, |
|
10887
|
|
|
'anchor_epoch' => null, |
|
10888
|
|
|
'extent_name' => 'Latin America - Central America and South America', |
|
10889
|
|
|
'help' => 'Aligned to IGb08 at epoch 2013.00. Realized by a frame of 242 continuously operating stations using GNSS observations from April 2010 to July 2014. Velocity model VEMOS2009 used to propagate coordinates to the frame reference epoch. |
|
10890
|
|
|
Replaces SIR13P01 (datum code 1239). Replaced by SIR15P01 (datum code 1241).', |
|
10891
|
|
|
], |
|
10892
|
|
|
'urn:ogc:def:datum:EPSG::1241' => [ |
|
10893
|
|
|
'name' => 'SIRGAS Continuously Operating Network SIR15P01', |
|
10894
|
|
|
'type' => 'dynamic geodetic', |
|
10895
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10896
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10897
|
|
|
'conventional_rs' => null, |
|
10898
|
|
|
'frame_reference_epoch' => 2013.0, |
|
10899
|
|
|
'anchor_epoch' => null, |
|
10900
|
|
|
'extent_name' => 'Latin America - Central America and South America', |
|
10901
|
|
|
'help' => 'Aligned to IGb08 at epoch 2013.00. Realized by a frame of 303 continuously operating stations using GNSS observations from March 2010 to April 2015. Velocity model VEMOS2015 used to propagate coordinates to the frame reference epoch. |
|
10902
|
|
|
Replaces SIR14P01 (datum code 1240). Replaced by SIR17P01 (datum code 1242).', |
|
10903
|
|
|
], |
|
10904
|
|
|
'urn:ogc:def:datum:EPSG::1242' => [ |
|
10905
|
|
|
'name' => 'SIRGAS Continuously Operating Network SIR17P01', |
|
10906
|
|
|
'type' => 'dynamic geodetic', |
|
10907
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10908
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10909
|
|
|
'conventional_rs' => null, |
|
10910
|
|
|
'frame_reference_epoch' => 2015.0, |
|
10911
|
|
|
'anchor_epoch' => null, |
|
10912
|
|
|
'extent_name' => 'Latin America - Central America and South America', |
|
10913
|
|
|
'help' => 'Aligned to IGS14 at epoch 2015.00. Realized by a frame of 345 continuously operating stations using GNSS observations from April 2011 to January 2017. Velocity model VEMOS2017 used to propagate coordinates to the frame reference epoch. |
|
10914
|
|
|
Replaces SIR15P01 (datum code 1241).', |
|
10915
|
|
|
], |
|
10916
|
|
|
'urn:ogc:def:datum:EPSG::1243' => [ |
|
10917
|
|
|
'name' => 'SIRGAS-Chile realization 2 epoch 2010', |
|
10918
|
|
|
'type' => 'geodetic', |
|
10919
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10920
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10921
|
|
|
'conventional_rs' => null, |
|
10922
|
|
|
'frame_reference_epoch' => null, |
|
10923
|
|
|
'anchor_epoch' => null, |
|
10924
|
|
|
'extent_name' => 'Chile', |
|
10925
|
|
|
'help' => 'IGS08 at epoch 2010.00. Densification of SIRGAS-CON network in Chile, consisting of 120 monumented stations. |
|
10926
|
|
|
Replaces SIRGAS-Chile realization 1 epoch 2002, following significant tectonic deformation. Replaced by SIRGAS-Chile realization 3 epoch 2013.', |
|
10927
|
|
|
], |
|
10928
|
|
|
'urn:ogc:def:datum:EPSG::1244' => [ |
|
10929
|
|
|
'name' => 'IGS97', |
|
10930
|
|
|
'type' => 'dynamic geodetic', |
|
10931
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10932
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10933
|
|
|
'conventional_rs' => null, |
|
10934
|
|
|
'frame_reference_epoch' => 1997.0, |
|
10935
|
|
|
'anchor_epoch' => null, |
|
10936
|
|
|
'extent_name' => 'World', |
|
10937
|
|
|
'help' => 'Derived from ITRF97 at epoch 1997.00 through a subset of stable IGS station coordinates. Preserves the ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques. |
|
10938
|
|
|
Used for IGS products from GPS week 1065 through GPS week 1142 (2000-06-04 to 2001-12-01). Replaced by IGS00. For all practical purposes coincident with ITRF97.', |
|
10939
|
|
|
], |
|
10940
|
|
|
'urn:ogc:def:datum:EPSG::1245' => [ |
|
10941
|
|
|
'name' => 'IGS00', |
|
10942
|
|
|
'type' => 'dynamic geodetic', |
|
10943
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10944
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10945
|
|
|
'conventional_rs' => null, |
|
10946
|
|
|
'frame_reference_epoch' => 1998.0, |
|
10947
|
|
|
'anchor_epoch' => null, |
|
10948
|
|
|
'extent_name' => 'World', |
|
10949
|
|
|
'help' => 'Derived from ITRF2000 at epoch 1998.00 through a subset of 54 stable IGS station coordinates. Preserves the ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques. |
|
10950
|
|
|
Used for IGS products from GPS week 1143 through GPS week 1252 (2001-12-02 through 2004-01-10). Replaces IGS97, replaced by IGb00. For all practical purposes coincident with ITRF2000.', |
|
10951
|
|
|
], |
|
10952
|
|
|
'urn:ogc:def:datum:EPSG::1246' => [ |
|
10953
|
|
|
'name' => 'IGb00', |
|
10954
|
|
|
'type' => 'dynamic geodetic', |
|
10955
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10956
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10957
|
|
|
'conventional_rs' => null, |
|
10958
|
|
|
'frame_reference_epoch' => 1998.0, |
|
10959
|
|
|
'anchor_epoch' => null, |
|
10960
|
|
|
'extent_name' => 'World', |
|
10961
|
|
|
'help' => 'Derived from ITRF2000 at epoch 1998.00 through a subset of 99 stable IGS station coordinates. Preserves the ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques. |
|
10962
|
|
|
Used for IGS products from GPS week 1253 through GPS week 1399 (2004-01-11 to 2006-11-04). Replaces IGS00, replaced by IGS05. For all practical purposes coincident with ITRF2000.', |
|
10963
|
|
|
], |
|
10964
|
|
|
'urn:ogc:def:datum:EPSG::1247' => [ |
|
10965
|
|
|
'name' => 'IGS05', |
|
10966
|
|
|
'type' => 'dynamic geodetic', |
|
10967
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10968
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10969
|
|
|
'conventional_rs' => null, |
|
10970
|
|
|
'frame_reference_epoch' => 2000.0, |
|
10971
|
|
|
'anchor_epoch' => null, |
|
10972
|
|
|
'extent_name' => 'World', |
|
10973
|
|
|
'help' => 'Derived from ITRF2005 at epoch 2000.00 through a subset of 139 stable IGS station coordinates. Preserves the ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques. |
|
10974
|
|
|
Used for IGS products from GPS week 1400 through GPS week 1631 (2006-11-05 to 2011-04-16). Replaces IGb00, replaced by IGb08. For all practical purposes coincident with ITRF2005.', |
|
10975
|
|
|
], |
|
10976
|
|
|
'urn:ogc:def:datum:EPSG::1248' => [ |
|
10977
|
|
|
'name' => 'IGb08', |
|
10978
|
|
|
'type' => 'dynamic geodetic', |
|
10979
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10980
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10981
|
|
|
'conventional_rs' => null, |
|
10982
|
|
|
'frame_reference_epoch' => 2005.0, |
|
10983
|
|
|
'anchor_epoch' => null, |
|
10984
|
|
|
'extent_name' => 'World', |
|
10985
|
|
|
'help' => 'Derived from ITRF2008 at epoch 2005.00 through a subset of 232 stable IGS station coordinates. Preserves the ITRF origin, orientation and scale, but without any distortions introduced from non-GNSS space-geodetic techniques. |
|
10986
|
|
|
Used for IGS products from GPS week 1709 through GPS week 1933 (2012-10-07 to 2017-01-28). Replaces IGS08, replaced by IGS14. For all practical purposes coincident with ITRF2008.', |
|
10987
|
|
|
], |
|
10988
|
|
|
'urn:ogc:def:datum:EPSG::1249' => [ |
|
10989
|
|
|
'name' => 'North American Datum of 1983 (PACP00)', |
|
10990
|
|
|
'type' => 'geodetic', |
|
10991
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
10992
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
10993
|
|
|
'conventional_rs' => null, |
|
10994
|
|
|
'frame_reference_epoch' => null, |
|
10995
|
|
|
'anchor_epoch' => null, |
|
10996
|
|
|
'extent_name' => 'Pacific - US interests Pacific plate', |
|
10997
|
|
|
'help' => 'Defined by a time-dependent seven parameter transformation of ITRF2000 3D geocentric Cartesian coordinates and velocities at reference epoch 1993.62, aligned to the Pacific plate at other epochs based on an Euler pole rotation. |
|
10998
|
|
|
Replaces NAD83(HARN) and NAD83(FBN) in Hawaii and American Samoa. Replaced by NAD83(PA11).', |
|
10999
|
|
|
], |
|
11000
|
|
|
'urn:ogc:def:datum:EPSG::1250' => [ |
|
11001
|
|
|
'name' => 'IGN 2008 LD', |
|
11002
|
|
|
'type' => 'vertical', |
|
11003
|
|
|
'ellipsoid' => null, |
|
11004
|
|
|
'prime_meridian' => null, |
|
11005
|
|
|
'conventional_rs' => null, |
|
11006
|
|
|
'frame_reference_epoch' => null, |
|
11007
|
|
|
'anchor_epoch' => null, |
|
11008
|
|
|
'extent_name' => 'Guadeloupe - La Desirade - onshore', |
|
11009
|
|
|
'help' => 'Mean sea level at Pointe-à-Pitre. Origin = IGN Marker 20A with defined height of 0.50 m above msl of 1987. |
|
11010
|
|
|
Orthometric heights. Replaces IGN 1992 LD (datum code 5212).', |
|
11011
|
|
|
], |
|
11012
|
|
|
'urn:ogc:def:datum:EPSG::1251' => [ |
|
11013
|
|
|
'name' => 'Kosovo Reference System 2001', |
|
11014
|
|
|
'type' => 'geodetic', |
|
11015
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11016
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11017
|
|
|
'conventional_rs' => null, |
|
11018
|
|
|
'frame_reference_epoch' => null, |
|
11019
|
|
|
'anchor_epoch' => null, |
|
11020
|
|
|
'extent_name' => 'Kosovo', |
|
11021
|
|
|
'help' => 'Densification of ETRF97 in Kosovo at epoch 2001.25. |
|
11022
|
|
|
First order network of 32 stations connected to 8 EUREF Permanant Network (EPN) stations observed march-April 2001. Densified in 2012.', |
|
11023
|
|
|
], |
|
11024
|
|
|
'urn:ogc:def:datum:EPSG::1252' => [ |
|
11025
|
|
|
'name' => 'SIRGAS-Chile realization 3 epoch 2013', |
|
11026
|
|
|
'type' => 'geodetic', |
|
11027
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11028
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11029
|
|
|
'conventional_rs' => null, |
|
11030
|
|
|
'frame_reference_epoch' => null, |
|
11031
|
|
|
'anchor_epoch' => null, |
|
11032
|
|
|
'extent_name' => 'Chile', |
|
11033
|
|
|
'help' => 'IGb08 at epoch 2013.00. Densification of SIRGAS-CON network in Chile, consisting of 130 monumented stations. |
|
11034
|
|
|
Replaces SIRGAS-Chile realization 2 epoch 2010, following significant tectonic deformation. Replaced by SIRGAS-Chile realization 4 epoch 2016.', |
|
11035
|
|
|
], |
|
11036
|
|
|
'urn:ogc:def:datum:EPSG::1253' => [ |
|
11037
|
|
|
'name' => 'SIRGAS-Chile realization 4 epoch 2016', |
|
11038
|
|
|
'type' => 'geodetic', |
|
11039
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11040
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11041
|
|
|
'conventional_rs' => null, |
|
11042
|
|
|
'frame_reference_epoch' => null, |
|
11043
|
|
|
'anchor_epoch' => null, |
|
11044
|
|
|
'extent_name' => 'Chile', |
|
11045
|
|
|
'help' => 'IGb08 at epoch 2016.00. Densification of SIRGAS-CON network in Chile, consisting of 200 monumented stations. |
|
11046
|
|
|
Replaces SIRGAS-Chile realization 3 epoch 2013. Replaced by SIRGAS-Chile realization 5 epoch 2021 due to significant tectonic deformation.', |
|
11047
|
|
|
], |
|
11048
|
|
|
'urn:ogc:def:datum:EPSG::1255' => [ |
|
11049
|
|
|
'name' => 'Nivellement General de Nouvelle Caledonie 2008', |
|
11050
|
|
|
'type' => 'vertical', |
|
11051
|
|
|
'ellipsoid' => null, |
|
11052
|
|
|
'prime_meridian' => null, |
|
11053
|
|
|
'conventional_rs' => null, |
|
11054
|
|
|
'frame_reference_epoch' => null, |
|
11055
|
|
|
'anchor_epoch' => null, |
|
11056
|
|
|
'extent_name' => 'New Caledonia - Belep, Grande Terre, Ile des Pins, Loyalty Islands', |
|
11057
|
|
|
'help' => ' |
|
11058
|
|
|
Normal heights.', |
|
11059
|
|
|
], |
|
11060
|
|
|
'urn:ogc:def:datum:EPSG::1256' => [ |
|
11061
|
|
|
'name' => 'Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 2010', |
|
11062
|
|
|
'type' => 'vertical', |
|
11063
|
|
|
'ellipsoid' => null, |
|
11064
|
|
|
'prime_meridian' => null, |
|
11065
|
|
|
'conventional_rs' => null, |
|
11066
|
|
|
'frame_reference_epoch' => null, |
|
11067
|
|
|
'anchor_epoch' => 2010.0, |
|
11068
|
|
|
'extent_name' => 'Canada', |
|
11069
|
|
|
'help' => 'Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean sea level for North America, realized through CGG2013a at epoch 2010.0. Geoid velocity defined as zero with respect to NAD83(CSRS). |
|
11070
|
|
|
Replaces CGVD2013(CGG2013). CGVD2013(CGG2013a) is a static datum. However heights referenced to it change with time, primarily due to glacial isostasy. In practice static snapshots are used at epochs 2010.0 (this datum), 2002.0 and 1997.0.', |
|
11071
|
|
|
], |
|
11072
|
|
|
'urn:ogc:def:datum:EPSG::1257' => [ |
|
11073
|
|
|
'name' => 'Tapi Aike', |
|
11074
|
|
|
'type' => 'geodetic', |
|
11075
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
11076
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11077
|
|
|
'conventional_rs' => null, |
|
11078
|
|
|
'frame_reference_epoch' => null, |
|
11079
|
|
|
'anchor_epoch' => null, |
|
11080
|
|
|
'extent_name' => 'Argentina - south Santa Cruz', |
|
11081
|
|
|
'help' => ' |
|
11082
|
|
|
Replaced by Campo Inchauspe (code 6221) for topographic mapping, use for oil exploration and production continues.', |
|
11083
|
|
|
], |
|
11084
|
|
|
'urn:ogc:def:datum:EPSG::1258' => [ |
|
11085
|
|
|
'name' => 'Ministerio de Marina Norte', |
|
11086
|
|
|
'type' => 'geodetic', |
|
11087
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
11088
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11089
|
|
|
'conventional_rs' => null, |
|
11090
|
|
|
'frame_reference_epoch' => null, |
|
11091
|
|
|
'anchor_epoch' => null, |
|
11092
|
|
|
'extent_name' => 'Argentina - Tierra del Fuego onshore', |
|
11093
|
|
|
'help' => ' |
|
11094
|
|
|
Developed by the Servicio de Hidrografia Naval.', |
|
11095
|
|
|
], |
|
11096
|
|
|
'urn:ogc:def:datum:EPSG::1259' => [ |
|
11097
|
|
|
'name' => 'Ministerio de Marina Sur', |
|
11098
|
|
|
'type' => 'geodetic', |
|
11099
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
11100
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11101
|
|
|
'conventional_rs' => null, |
|
11102
|
|
|
'frame_reference_epoch' => null, |
|
11103
|
|
|
'anchor_epoch' => null, |
|
11104
|
|
|
'extent_name' => 'Argentina - Tierra del Fuego onshore', |
|
11105
|
|
|
'help' => ' |
|
11106
|
|
|
Developed by the Servicio de Hidrografia Naval.', |
|
11107
|
|
|
], |
|
11108
|
|
|
'urn:ogc:def:datum:EPSG::1260' => [ |
|
11109
|
|
|
'name' => 'Sistema de Referencia Vertical Nacional 2016', |
|
11110
|
|
|
'type' => 'vertical', |
|
11111
|
|
|
'ellipsoid' => null, |
|
11112
|
|
|
'prime_meridian' => null, |
|
11113
|
|
|
'conventional_rs' => null, |
|
11114
|
|
|
'frame_reference_epoch' => null, |
|
11115
|
|
|
'anchor_epoch' => null, |
|
11116
|
|
|
'extent_name' => 'Argentina - onshore', |
|
11117
|
|
|
'help' => 'Mean Sea Level 1923 at Mar del Plata defined at station 71 (C = 121.64978 m^2s^-2) = 12.43m for mainland, Ushuaia station PF1N(383) (C = 38.427 m^2s^-2) = 3.915m for Tierra del Fuego. These geopotential numbers correspond with historic values. |
|
11118
|
|
|
Replaces SRVN71.', |
|
11119
|
|
|
], |
|
11120
|
|
|
'urn:ogc:def:datum:EPSG::1261' => [ |
|
11121
|
|
|
'name' => 'European Vertical Reference Frame 2000 Austria', |
|
11122
|
|
|
'type' => 'vertical', |
|
11123
|
|
|
'ellipsoid' => null, |
|
11124
|
|
|
'prime_meridian' => null, |
|
11125
|
|
|
'conventional_rs' => null, |
|
11126
|
|
|
'frame_reference_epoch' => null, |
|
11127
|
|
|
'anchor_epoch' => null, |
|
11128
|
|
|
'extent_name' => 'Austria', |
|
11129
|
|
|
'help' => 'Geopotential numbers of the EVRF2000 (UELN95/98) node points in Austria converted to orthometric heights using a digital surface model. |
|
11130
|
|
|
Geoid surface is smoother than the EVRF2000 quasigeoid.', |
|
11131
|
|
|
], |
|
11132
|
|
|
'urn:ogc:def:datum:EPSG::1262' => [ |
|
11133
|
|
|
'name' => 'South Africa Land Levelling Datum', |
|
11134
|
|
|
'type' => 'vertical', |
|
11135
|
|
|
'ellipsoid' => null, |
|
11136
|
|
|
'prime_meridian' => null, |
|
11137
|
|
|
'conventional_rs' => null, |
|
11138
|
|
|
'frame_reference_epoch' => null, |
|
11139
|
|
|
'anchor_epoch' => null, |
|
11140
|
|
|
'extent_name' => 'South Africa - onshore', |
|
11141
|
|
|
'help' => 'Mean Sea Level at Cape Town harbour 1900 and 1907, referred to Datum Benchmark BM1. |
|
11142
|
|
|
Orthometric heights.', |
|
11143
|
|
|
], |
|
11144
|
|
|
'urn:ogc:def:datum:EPSG::1263' => [ |
|
11145
|
|
|
'name' => 'Oman National Geodetic Datum 2017', |
|
11146
|
|
|
'type' => 'geodetic', |
|
11147
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11148
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11149
|
|
|
'conventional_rs' => null, |
|
11150
|
|
|
'frame_reference_epoch' => null, |
|
11151
|
|
|
'anchor_epoch' => null, |
|
11152
|
|
|
'extent_name' => 'Oman', |
|
11153
|
|
|
'help' => 'Oman primary network of 39 stations tied to ITRF2014 at epoch 2017.24. |
|
11154
|
|
|
Replaces ONGD14 from March 2019.', |
|
11155
|
|
|
], |
|
11156
|
|
|
'urn:ogc:def:datum:EPSG::1264' => [ |
|
11157
|
|
|
'name' => 'HS2 Intermediate Reference Frame', |
|
11158
|
|
|
'type' => 'geodetic', |
|
11159
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11160
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11161
|
|
|
'conventional_rs' => null, |
|
11162
|
|
|
'frame_reference_epoch' => null, |
|
11163
|
|
|
'anchor_epoch' => null, |
|
11164
|
|
|
'extent_name' => 'UK - London to Birmingham and Crewe', |
|
11165
|
|
|
'help' => 'Defined through application of the HS2TN02 transformation to ETRS89 as realized through OSNet v2001 CORS. Subsequently realized through application of the HS2TN15 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
11166
|
|
|
Created to support intermediate CRS "HS2-IRF" in the emulation of the HS2P1+14 Snake map projection.', |
|
11167
|
|
|
], |
|
11168
|
|
|
'urn:ogc:def:datum:EPSG::1265' => [ |
|
11169
|
|
|
'name' => 'HS2 Vertical Reference Frame', |
|
11170
|
|
|
'type' => 'vertical', |
|
11171
|
|
|
'ellipsoid' => null, |
|
11172
|
|
|
'prime_meridian' => null, |
|
11173
|
|
|
'conventional_rs' => null, |
|
11174
|
|
|
'frame_reference_epoch' => null, |
|
11175
|
|
|
'anchor_epoch' => null, |
|
11176
|
|
|
'extent_name' => 'UK - London to Birmingham and Crewe', |
|
11177
|
|
|
'help' => 'Equivalent to Ordnance Datum Newlyn as realized through OSNet v2001 and OSGM02. |
|
11178
|
|
|
After introduction of OSNet v2009 CORS, OSTN15 and the OSGM15 geoid model, the HS2 VRF is maintained equivalent to OSNet v2001 and OSGM02 through HS2GM15 (code 9304).', |
|
11179
|
|
|
], |
|
11180
|
|
|
'urn:ogc:def:datum:EPSG::1266' => [ |
|
11181
|
|
|
'name' => 'TPEN11 Intermediate Reference Frame', |
|
11182
|
|
|
'type' => 'geodetic', |
|
11183
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11184
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11185
|
|
|
'conventional_rs' => null, |
|
11186
|
|
|
'frame_reference_epoch' => null, |
|
11187
|
|
|
'anchor_epoch' => null, |
|
11188
|
|
|
'extent_name' => 'UK - Liverpool to Leeds', |
|
11189
|
|
|
'help' => 'Defined through the application of the TPEN11 NTv2 transformation (code 9365) to ETRS89 as realized through OSNet v2009 CORS. |
|
11190
|
|
|
Created in 2020 to support intermediate CRS "TPEN11-IRF" in the emulation of the combined TPEN11 Snake and TPEN11ext Snake map projections.', |
|
11191
|
|
|
], |
|
11192
|
|
|
'urn:ogc:def:datum:EPSG::1267' => [ |
|
11193
|
|
|
'name' => 'Wiener Null', |
|
11194
|
|
|
'type' => 'vertical', |
|
11195
|
|
|
'ellipsoid' => null, |
|
11196
|
|
|
'prime_meridian' => null, |
|
11197
|
|
|
'conventional_rs' => null, |
|
11198
|
|
|
'frame_reference_epoch' => null, |
|
11199
|
|
|
'anchor_epoch' => null, |
|
11200
|
|
|
'extent_name' => 'Austria - Vienna', |
|
11201
|
|
|
'help' => 'Historic benchmark on the Schwedenbrücke over an artificial channel of River Danube (Donaukanal) with GHA height of 156.680m. |
|
11202
|
|
|
', |
|
11203
|
|
|
], |
|
11204
|
|
|
'urn:ogc:def:datum:EPSG::1268' => [ |
|
11205
|
|
|
'name' => 'Kingdom of Saudi Arabia Geodetic Reference Frame 2017', |
|
11206
|
|
|
'type' => 'geodetic', |
|
11207
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11208
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11209
|
|
|
'conventional_rs' => null, |
|
11210
|
|
|
'frame_reference_epoch' => null, |
|
11211
|
|
|
'anchor_epoch' => null, |
|
11212
|
|
|
'extent_name' => 'Saudi Arabia', |
|
11213
|
|
|
'help' => 'ITRF2014 at epoch 2017.00. |
|
11214
|
|
|
Realized by 333 GNSS stations in Saudi Arabia aligned to ITRF2014 through core network of 46 stations adjusted to 15 IGS stations.', |
|
11215
|
|
|
], |
|
11216
|
|
|
'urn:ogc:def:datum:EPSG::1269' => [ |
|
11217
|
|
|
'name' => 'Kingdom of Saudi Arabia Vertical Reference Frame Jeddah 2014', |
|
11218
|
|
|
'type' => 'vertical', |
|
11219
|
|
|
'ellipsoid' => null, |
|
11220
|
|
|
'prime_meridian' => null, |
|
11221
|
|
|
'conventional_rs' => null, |
|
11222
|
|
|
'frame_reference_epoch' => null, |
|
11223
|
|
|
'anchor_epoch' => null, |
|
11224
|
|
|
'extent_name' => 'Saudi Arabia - onshore', |
|
11225
|
|
|
'help' => 'Jeddah tide gauge bench mark TGBM-B height of 1.7446m at 2014.75. |
|
11226
|
|
|
', |
|
11227
|
|
|
], |
|
11228
|
|
|
'urn:ogc:def:datum:EPSG::1270' => [ |
|
11229
|
|
|
'name' => 'Mean Sea Level Netherlands', |
|
11230
|
|
|
'type' => 'vertical', |
|
11231
|
|
|
'ellipsoid' => null, |
|
11232
|
|
|
'prime_meridian' => null, |
|
11233
|
|
|
'conventional_rs' => null, |
|
11234
|
|
|
'frame_reference_epoch' => null, |
|
11235
|
|
|
'anchor_epoch' => null, |
|
11236
|
|
|
'extent_name' => 'Netherlands - offshore and nearshore ', |
|
11237
|
|
|
'help' => 'Surface defined through the nlgeo geoid model applied to ETRS89. |
|
11238
|
|
|
Coincides with NAP datum plane, extended offshore through the nlgeo geoid model. Approximates physical mean sea surface to a few decimetres.', |
|
11239
|
|
|
], |
|
11240
|
|
|
'urn:ogc:def:datum:EPSG::1271' => [ |
|
11241
|
|
|
'name' => 'MML07 Intermediate Reference Frame', |
|
11242
|
|
|
'type' => 'geodetic', |
|
11243
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11244
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11245
|
|
|
'conventional_rs' => null, |
|
11246
|
|
|
'frame_reference_epoch' => null, |
|
11247
|
|
|
'anchor_epoch' => null, |
|
11248
|
|
|
'extent_name' => 'UK - London to Sheffield', |
|
11249
|
|
|
'help' => 'Defined through the application of the MML07 NTv2 transformation (code 9369) to ETRS89 as realized through OSNet v2009 CORS. |
|
11250
|
|
|
Created in 2020 to support intermediate CRS "MML07-IRF" in the emulation of the MML07 Snake map projection.', |
|
11251
|
|
|
], |
|
11252
|
|
|
'urn:ogc:def:datum:EPSG::1272' => [ |
|
11253
|
|
|
'name' => 'IGb14', |
|
11254
|
|
|
'type' => 'dynamic geodetic', |
|
11255
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11256
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11257
|
|
|
'conventional_rs' => null, |
|
11258
|
|
|
'frame_reference_epoch' => 2010.0, |
|
11259
|
|
|
'anchor_epoch' => null, |
|
11260
|
|
|
'extent_name' => 'World', |
|
11261
|
|
|
'help' => 'Daily IGS combined operational solutions of GPS weeks 730 to 2092. IGb14 is aligned in origin, scale and orientation to IGS14 via a subset of 233 selected stations. As IGS14 is aligned to ITRF2014, IGb14 is also aligned to ITRF2014. |
|
11262
|
|
|
Used for IGS products from GPS week 2106 (2020-05-17). Replaces IGS14. Compared to IGS14, IGb14 benefits from 5 more years of input data, a revised discontinuity list and 9 additional stations. For all practical purposes coincident with ITRF2014.', |
|
11263
|
|
|
], |
|
11264
|
|
|
'urn:ogc:def:datum:EPSG::1273' => [ |
|
11265
|
|
|
'name' => 'AbInvA96_2020 Intermediate Reference Frame', |
|
11266
|
|
|
'type' => 'geodetic', |
|
11267
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11268
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11269
|
|
|
'conventional_rs' => null, |
|
11270
|
|
|
'frame_reference_epoch' => null, |
|
11271
|
|
|
'anchor_epoch' => null, |
|
11272
|
|
|
'extent_name' => 'UK - Aberdeen to Inverness', |
|
11273
|
|
|
'help' => 'Defined through the application of the AbInvA96_2000 NTv2 transformation (code 9386) to ETRS89 as realized through OSNet v2009 CORS. |
|
11274
|
|
|
Created in 2020 to support intermediate CRS "AbInvA96_2020-IRF" in the emulation of the AbInvA96_2020 Snake map projection.', |
|
11275
|
|
|
], |
|
11276
|
|
|
'urn:ogc:def:datum:EPSG::1274' => [ |
|
11277
|
|
|
'name' => 'European Vertical Reference Frame 2019', |
|
11278
|
|
|
'type' => 'vertical', |
|
11279
|
|
|
'ellipsoid' => null, |
|
11280
|
|
|
'prime_meridian' => null, |
|
11281
|
|
|
'conventional_rs' => null, |
|
11282
|
|
|
'frame_reference_epoch' => null, |
|
11283
|
|
|
'anchor_epoch' => null, |
|
11284
|
|
|
'extent_name' => 'Europe - EVRF2019', |
|
11285
|
|
|
'help' => 'Fixed to geopotential values of 12 stable stations of the EVRF2007 solution. Re-adjusted in September 2020. Reduced to epoch 2000.0 for Nordic countries and Russia using the NKG2016LU_lev uplift model and for Switzerland using CHVRF15 velocities. |
|
11286
|
|
|
Following EVRS conventions, EVRF2019 is a zero-tide surface. Replaces EVRF2007 (datum code 5215).', |
|
11287
|
|
|
], |
|
11288
|
|
|
'urn:ogc:def:datum:EPSG::1275' => [ |
|
11289
|
|
|
'name' => 'Mallorca', |
|
11290
|
|
|
'type' => 'vertical', |
|
11291
|
|
|
'ellipsoid' => null, |
|
11292
|
|
|
'prime_meridian' => null, |
|
11293
|
|
|
'conventional_rs' => null, |
|
11294
|
|
|
'frame_reference_epoch' => null, |
|
11295
|
|
|
'anchor_epoch' => null, |
|
11296
|
|
|
'extent_name' => 'Spain - Balearic Islands - Mallorca', |
|
11297
|
|
|
'help' => 'Mean Sea Level at Palma de Mallorca harbour between April 1997 and December 2006. |
|
11298
|
|
|
Orthometric heights.', |
|
11299
|
|
|
], |
|
11300
|
|
|
'urn:ogc:def:datum:EPSG::1276' => [ |
|
11301
|
|
|
'name' => 'Menorca', |
|
11302
|
|
|
'type' => 'vertical', |
|
11303
|
|
|
'ellipsoid' => null, |
|
11304
|
|
|
'prime_meridian' => null, |
|
11305
|
|
|
'conventional_rs' => null, |
|
11306
|
|
|
'frame_reference_epoch' => null, |
|
11307
|
|
|
'anchor_epoch' => null, |
|
11308
|
|
|
'extent_name' => 'Spain - Balearic Islands - Menorca', |
|
11309
|
|
|
'help' => 'Mean Sea Level at Ciutadella harbour between June 2007 and June 2008. |
|
11310
|
|
|
Orthometric heights.', |
|
11311
|
|
|
], |
|
11312
|
|
|
'urn:ogc:def:datum:EPSG::1277' => [ |
|
11313
|
|
|
'name' => 'Ibiza', |
|
11314
|
|
|
'type' => 'vertical', |
|
11315
|
|
|
'ellipsoid' => null, |
|
11316
|
|
|
'prime_meridian' => null, |
|
11317
|
|
|
'conventional_rs' => null, |
|
11318
|
|
|
'frame_reference_epoch' => null, |
|
11319
|
|
|
'anchor_epoch' => null, |
|
11320
|
|
|
'extent_name' => 'Spain - Balearic Islands - Ibiza', |
|
11321
|
|
|
'help' => 'Mean Sea Level at Ibiza harbour between January 2003 and December 2005. |
|
11322
|
|
|
Orthometric heights.', |
|
11323
|
|
|
], |
|
11324
|
|
|
'urn:ogc:def:datum:EPSG::1278' => [ |
|
11325
|
|
|
'name' => 'Lanzarote', |
|
11326
|
|
|
'type' => 'vertical', |
|
11327
|
|
|
'ellipsoid' => null, |
|
11328
|
|
|
'prime_meridian' => null, |
|
11329
|
|
|
'conventional_rs' => null, |
|
11330
|
|
|
'frame_reference_epoch' => null, |
|
11331
|
|
|
'anchor_epoch' => null, |
|
11332
|
|
|
'extent_name' => 'Spain - Canary Islands - Lanzarote', |
|
11333
|
|
|
'help' => 'Mean Sea Level at Naos harbour, Arrecife, between 1994 and 1995. |
|
11334
|
|
|
Orthometric heights.', |
|
11335
|
|
|
], |
|
11336
|
|
|
'urn:ogc:def:datum:EPSG::1279' => [ |
|
11337
|
|
|
'name' => 'Fuerteventura', |
|
11338
|
|
|
'type' => 'vertical', |
|
11339
|
|
|
'ellipsoid' => null, |
|
11340
|
|
|
'prime_meridian' => null, |
|
11341
|
|
|
'conventional_rs' => null, |
|
11342
|
|
|
'frame_reference_epoch' => null, |
|
11343
|
|
|
'anchor_epoch' => null, |
|
11344
|
|
|
'extent_name' => 'Spain - Canary Islands - Fuerteventura', |
|
11345
|
|
|
'help' => 'Mean Sea Level at Puerto del Rosario harbour between 1999-09-08 and 2000-12-31. |
|
11346
|
|
|
Orthometric heights.', |
|
11347
|
|
|
], |
|
11348
|
|
|
'urn:ogc:def:datum:EPSG::1280' => [ |
|
11349
|
|
|
'name' => 'Gran Canaria', |
|
11350
|
|
|
'type' => 'vertical', |
|
11351
|
|
|
'ellipsoid' => null, |
|
11352
|
|
|
'prime_meridian' => null, |
|
11353
|
|
|
'conventional_rs' => null, |
|
11354
|
|
|
'frame_reference_epoch' => null, |
|
11355
|
|
|
'anchor_epoch' => null, |
|
11356
|
|
|
'extent_name' => 'Spain - Canary Islands - Gran Canaria', |
|
11357
|
|
|
'help' => 'Mean Sea Level at Las Palmas de Gran Canaria harbour between 1992 and 1997. |
|
11358
|
|
|
Orthometric heights.', |
|
11359
|
|
|
], |
|
11360
|
|
|
'urn:ogc:def:datum:EPSG::1281' => [ |
|
11361
|
|
|
'name' => 'Tenerife', |
|
11362
|
|
|
'type' => 'vertical', |
|
11363
|
|
|
'ellipsoid' => null, |
|
11364
|
|
|
'prime_meridian' => null, |
|
11365
|
|
|
'conventional_rs' => null, |
|
11366
|
|
|
'frame_reference_epoch' => null, |
|
11367
|
|
|
'anchor_epoch' => null, |
|
11368
|
|
|
'extent_name' => 'Spain - Canary Islands - Tenerife', |
|
11369
|
|
|
'help' => 'Mean Sea Level at Santa Cruz de Tenerife harbour between 1960 and 1970. |
|
11370
|
|
|
Orthometric heights.', |
|
11371
|
|
|
], |
|
11372
|
|
|
'urn:ogc:def:datum:EPSG::1282' => [ |
|
11373
|
|
|
'name' => 'La Gomera', |
|
11374
|
|
|
'type' => 'vertical', |
|
11375
|
|
|
'ellipsoid' => null, |
|
11376
|
|
|
'prime_meridian' => null, |
|
11377
|
|
|
'conventional_rs' => null, |
|
11378
|
|
|
'frame_reference_epoch' => null, |
|
11379
|
|
|
'anchor_epoch' => null, |
|
11380
|
|
|
'extent_name' => 'Spain - Canary Islands - La Gomera', |
|
11381
|
|
|
'help' => 'Mean Sea Level at San Sebastian de la Gomera harbour. |
|
11382
|
|
|
Orthometric heights.', |
|
11383
|
|
|
], |
|
11384
|
|
|
'urn:ogc:def:datum:EPSG::1283' => [ |
|
11385
|
|
|
'name' => 'La Palma', |
|
11386
|
|
|
'type' => 'vertical', |
|
11387
|
|
|
'ellipsoid' => null, |
|
11388
|
|
|
'prime_meridian' => null, |
|
11389
|
|
|
'conventional_rs' => null, |
|
11390
|
|
|
'frame_reference_epoch' => null, |
|
11391
|
|
|
'anchor_epoch' => null, |
|
11392
|
|
|
'extent_name' => 'Spain - Canary Islands - La Palma', |
|
11393
|
|
|
'help' => 'Mean Sea Level at Santa Cruz de la Palma harbour in 1997. |
|
11394
|
|
|
Orthometric heights.', |
|
11395
|
|
|
], |
|
11396
|
|
|
'urn:ogc:def:datum:EPSG::1284' => [ |
|
11397
|
|
|
'name' => 'El Hierro', |
|
11398
|
|
|
'type' => 'vertical', |
|
11399
|
|
|
'ellipsoid' => null, |
|
11400
|
|
|
'prime_meridian' => null, |
|
11401
|
|
|
'conventional_rs' => null, |
|
11402
|
|
|
'frame_reference_epoch' => null, |
|
11403
|
|
|
'anchor_epoch' => null, |
|
11404
|
|
|
'extent_name' => 'Spain - Canary Islands - El Hierro', |
|
11405
|
|
|
'help' => 'Mean Sea Level at La Estaca harbour in 2000. |
|
11406
|
|
|
Orthometric heights.', |
|
11407
|
|
|
], |
|
11408
|
|
|
'urn:ogc:def:datum:EPSG::1285' => [ |
|
11409
|
|
|
'name' => 'Ceuta 2', |
|
11410
|
|
|
'type' => 'vertical', |
|
11411
|
|
|
'ellipsoid' => null, |
|
11412
|
|
|
'prime_meridian' => null, |
|
11413
|
|
|
'conventional_rs' => null, |
|
11414
|
|
|
'frame_reference_epoch' => null, |
|
11415
|
|
|
'anchor_epoch' => null, |
|
11416
|
|
|
'extent_name' => 'Spain - Ceuta', |
|
11417
|
|
|
'help' => 'Mean Sea Level at Ceuta harbour between March 1944 and December 2006. |
|
11418
|
|
|
Orthometric heights. Replaces an earlier vertical datum in Ceuta harbour measured between 1908 and 1927.', |
|
11419
|
|
|
], |
|
11420
|
|
|
'urn:ogc:def:datum:EPSG::1286' => [ |
|
11421
|
|
|
'name' => 'Pico de las Nieves 1968', |
|
11422
|
|
|
'type' => 'geodetic', |
|
11423
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
11424
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11425
|
|
|
'conventional_rs' => null, |
|
11426
|
|
|
'frame_reference_epoch' => null, |
|
11427
|
|
|
'anchor_epoch' => null, |
|
11428
|
|
|
'extent_name' => 'Spain - Canary Islands onshore', |
|
11429
|
|
|
'help' => 'Pico de las Nieves mountain, Gran Canaria. The fundamental point is a different station to that for PN84. |
|
11430
|
|
|
Replaced by PN84 only on western islands (El Hierro, La Gomera, La Palma and Tenerife). Both PN68 and PN84 replaced by REGCAN95.', |
|
11431
|
|
|
], |
|
11432
|
|
|
'urn:ogc:def:datum:EPSG::1287' => [ |
|
11433
|
|
|
'name' => 'European Vertical Reference Frame 2019 mean tide', |
|
11434
|
|
|
'type' => 'vertical', |
|
11435
|
|
|
'ellipsoid' => null, |
|
11436
|
|
|
'prime_meridian' => null, |
|
11437
|
|
|
'conventional_rs' => null, |
|
11438
|
|
|
'frame_reference_epoch' => null, |
|
11439
|
|
|
'anchor_epoch' => null, |
|
11440
|
|
|
'extent_name' => 'Europe - EVRF2019', |
|
11441
|
|
|
'help' => 'Derived from 2020-09 zero-tide EVRF2019 adjustment by Cmean = Czero + (0.28841*sin^2(phi)) + (0.00195*sin^4(phi)) - 0.09722 - 0.08432 kgal.m. The offset of 0.08432 forces the mean-tide height to the zero-tide height at the EVRF2000 origin in Amsterdam. |
|
11442
|
|
|
Mean-tide surface, describing how water flows. See EVRF2019 (datum code 1274) for zero-tide surface which is consistent with ETRS conventions.', |
|
11443
|
|
|
], |
|
11444
|
|
|
'urn:ogc:def:datum:EPSG::1288' => [ |
|
11445
|
|
|
'name' => 'British Isles height ensemble', |
|
11446
|
|
|
'type' => 'ensemble', |
|
11447
|
|
|
'ellipsoid' => null, |
|
11448
|
|
|
'prime_meridian' => null, |
|
11449
|
|
|
'conventional_rs' => null, |
|
11450
|
|
|
'frame_reference_epoch' => null, |
|
11451
|
|
|
'anchor_epoch' => null, |
|
11452
|
|
|
'extent_name' => 'Europe - British Isles - UK and Ireland onshore, UKCS', |
|
11453
|
|
|
'ensemble' => [ |
|
11454
|
|
|
'urn:ogc:def:datum:EPSG::5130', |
|
11455
|
|
|
'urn:ogc:def:datum:EPSG::5131', |
|
11456
|
|
|
'urn:ogc:def:datum:EPSG::5101', |
|
11457
|
|
|
'urn:ogc:def:datum:EPSG::1164', |
|
11458
|
|
|
'urn:ogc:def:datum:EPSG::5138', |
|
11459
|
|
|
'urn:ogc:def:datum:EPSG::5140', |
|
11460
|
|
|
'urn:ogc:def:datum:EPSG::5144', |
|
11461
|
|
|
'urn:ogc:def:datum:EPSG::5148', |
|
11462
|
|
|
'urn:ogc:def:datum:EPSG::5147', |
|
11463
|
|
|
], |
|
11464
|
|
|
'help' => 'Ensemble of 9 independent vertical datums now all defined through OS geoid model OSGM15. |
|
11465
|
|
|
Orthometric heights.', |
|
11466
|
|
|
], |
|
11467
|
|
|
'urn:ogc:def:datum:EPSG::1289' => [ |
|
11468
|
|
|
'name' => 'GBK19 Intermediate Reference Frame', |
|
11469
|
|
|
'type' => 'geodetic', |
|
11470
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11471
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11472
|
|
|
'conventional_rs' => null, |
|
11473
|
|
|
'frame_reference_epoch' => null, |
|
11474
|
|
|
'anchor_epoch' => null, |
|
11475
|
|
|
'extent_name' => 'UK - Glasgow to Kilmarnock', |
|
11476
|
|
|
'help' => 'Defined through the application of the GBK19 NTv2 transformation (code 9454) to ETRS89 as realized through OSNet v2009 CORS. |
|
11477
|
|
|
Created in 2020 to support intermediate CRS "GBK19-IRF" in the emulation of the combined GBK19 Snake map projection.', |
|
11478
|
|
|
], |
|
11479
|
|
|
'urn:ogc:def:datum:EPSG::1290' => [ |
|
11480
|
|
|
'name' => 'Lowest Astronomical Tide Netherlands', |
|
11481
|
|
|
'type' => 'vertical', |
|
11482
|
|
|
'ellipsoid' => null, |
|
11483
|
|
|
'prime_meridian' => null, |
|
11484
|
|
|
'conventional_rs' => null, |
|
11485
|
|
|
'frame_reference_epoch' => null, |
|
11486
|
|
|
'anchor_epoch' => null, |
|
11487
|
|
|
'extent_name' => 'Netherlands - offshore and nearshore ', |
|
11488
|
|
|
'help' => 'Surface defined through the nllat hydroid model applied to ETRS89. |
|
11489
|
|
|
The lowest tide level which can be predicted to occur under average meteorological conditions and under any combination of astronomical conditions.', |
|
11490
|
|
|
], |
|
11491
|
|
|
'urn:ogc:def:datum:EPSG::1291' => [ |
|
11492
|
|
|
'name' => 'Australian Terrestrial Reference Frame 2014', |
|
11493
|
|
|
'type' => 'dynamic geodetic', |
|
11494
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11495
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11496
|
|
|
'conventional_rs' => null, |
|
11497
|
|
|
'frame_reference_epoch' => 2020.0, |
|
11498
|
|
|
'anchor_epoch' => null, |
|
11499
|
|
|
'extent_name' => 'Australia - GDA', |
|
11500
|
|
|
'help' => 'ITRF2014 at epoch 2020.0. |
|
11501
|
|
|
Densification of ITRF2014 in the Australian region.', |
|
11502
|
|
|
], |
|
11503
|
|
|
'urn:ogc:def:datum:EPSG::1292' => [ |
|
11504
|
|
|
'name' => 'Australian Vertical Working Surface', |
|
11505
|
|
|
'type' => 'vertical', |
|
11506
|
|
|
'ellipsoid' => null, |
|
11507
|
|
|
'prime_meridian' => null, |
|
11508
|
|
|
'conventional_rs' => null, |
|
11509
|
|
|
'frame_reference_epoch' => null, |
|
11510
|
|
|
'anchor_epoch' => null, |
|
11511
|
|
|
'extent_name' => 'Australia - GDA', |
|
11512
|
|
|
'help' => 'Realized by the Australian gravimetric quasi-geoid (AGQG). |
|
11513
|
|
|
Normal heights. Extends gravity-related heights to offshore. See AHD (datum code 5111) for cadastral survey or local engineering survey including construction or mining.', |
|
11514
|
|
|
], |
|
11515
|
|
|
'urn:ogc:def:datum:EPSG::1293' => [ |
|
11516
|
|
|
'name' => 'Sistem Referensi Geospasial Indonesia 2013', |
|
11517
|
|
|
'type' => 'dynamic geodetic', |
|
11518
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
11519
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11520
|
|
|
'conventional_rs' => null, |
|
11521
|
|
|
'frame_reference_epoch' => 2012.0, |
|
11522
|
|
|
'anchor_epoch' => null, |
|
11523
|
|
|
'extent_name' => 'Indonesia', |
|
11524
|
|
|
'help' => 'ITRF2008 at epoch 2012.0. |
|
11525
|
|
|
Semi-dynamic datum. Geometric element of geodetic control network (JKG). Replaces DGN95 and all older datums.', |
|
11526
|
|
|
], |
|
11527
|
|
|
'urn:ogc:def:datum:EPSG::1294' => [ |
|
11528
|
|
|
'name' => 'Indonesian Geoid 2020 version 1', |
|
11529
|
|
|
'type' => 'vertical', |
|
11530
|
|
|
'ellipsoid' => null, |
|
11531
|
|
|
'prime_meridian' => null, |
|
11532
|
|
|
'conventional_rs' => null, |
|
11533
|
|
|
'frame_reference_epoch' => null, |
|
11534
|
|
|
'anchor_epoch' => null, |
|
11535
|
|
|
'extent_name' => 'Indonesia', |
|
11536
|
|
|
'help' => 'Defined by INAGeoid2020 gravimetric geoid model v1 applied to SRGI2013. |
|
11537
|
|
|
Uses gravity data observed to 2019 fitted to control points on Java and Bali.', |
|
11538
|
|
|
], |
|
11539
|
|
|
'urn:ogc:def:datum:EPSG::1295' => [ |
|
11540
|
|
|
'name' => 'Lyon Turin Ferroviaire 2004', |
|
11541
|
|
|
'type' => 'geodetic', |
|
11542
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11543
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11544
|
|
|
'conventional_rs' => null, |
|
11545
|
|
|
'frame_reference_epoch' => null, |
|
11546
|
|
|
'anchor_epoch' => null, |
|
11547
|
|
|
'extent_name' => 'Europe - Lyon-Turin', |
|
11548
|
|
|
'help' => 'Densification of ETRS89 realised through network of 40 stations adjusted to 7 EUREF reference stations in [email protected]. |
|
11549
|
|
|
', |
|
11550
|
|
|
], |
|
11551
|
|
|
'urn:ogc:def:datum:EPSG::1296' => [ |
|
11552
|
|
|
'name' => 'Baltic 1986', |
|
11553
|
|
|
'type' => 'vertical', |
|
11554
|
|
|
'ellipsoid' => null, |
|
11555
|
|
|
'prime_meridian' => null, |
|
11556
|
|
|
'conventional_rs' => null, |
|
11557
|
|
|
'frame_reference_epoch' => null, |
|
11558
|
|
|
'anchor_epoch' => null, |
|
11559
|
|
|
'extent_name' => 'Poland - onshore', |
|
11560
|
|
|
'help' => 'Mean sea level of Baltic at Kronstadt in 1833. Network adjusted in 1982. |
|
11561
|
|
|
|
|
11562
|
|
|
Uses Normal heights. Adopted in 1986.', |
|
11563
|
|
|
], |
|
11564
|
|
|
'urn:ogc:def:datum:EPSG::1297' => [ |
|
11565
|
|
|
'name' => 'European Vertical Reference Frame 2007 Poland', |
|
11566
|
|
|
'type' => 'vertical', |
|
11567
|
|
|
'ellipsoid' => null, |
|
11568
|
|
|
'prime_meridian' => null, |
|
11569
|
|
|
'conventional_rs' => null, |
|
11570
|
|
|
'frame_reference_epoch' => null, |
|
11571
|
|
|
'anchor_epoch' => null, |
|
11572
|
|
|
'extent_name' => 'Poland - onshore', |
|
11573
|
|
|
'help' => 'Origin: Mean North Sea Level at Amsterdam tide gauge. Normal heights obtained from adjustment of precise leveling campaigns conducted during 1998 - 2012 reduced to epoch 2008.00. |
|
11574
|
|
|
|
|
11575
|
|
|
Uses Normal heights.', |
|
11576
|
|
|
], |
|
11577
|
|
|
'urn:ogc:def:datum:EPSG::1298' => [ |
|
11578
|
|
|
'name' => 'Estonian Height System 2000', |
|
11579
|
|
|
'type' => 'vertical', |
|
11580
|
|
|
'ellipsoid' => null, |
|
11581
|
|
|
'prime_meridian' => null, |
|
11582
|
|
|
'conventional_rs' => null, |
|
11583
|
|
|
'frame_reference_epoch' => null, |
|
11584
|
|
|
'anchor_epoch' => null, |
|
11585
|
|
|
'extent_name' => 'Estonia - onshore', |
|
11586
|
|
|
'help' => 'Estonian realisation of EVRF2007. Relevelling observed 2004-2013 and reduced to epoch 2000 using the NKG2005LU empirical land uplift model. EVRF2007 height of Poltsamaa fundamental bench mark (H=55.2114m) held fixed. |
|
11587
|
|
|
Uses Normal heights.', |
|
11588
|
|
|
], |
|
11589
|
|
|
'urn:ogc:def:datum:EPSG::1299' => [ |
|
11590
|
|
|
'name' => 'Lithuanian Height System 2007', |
|
11591
|
|
|
'type' => 'vertical', |
|
11592
|
|
|
'ellipsoid' => null, |
|
11593
|
|
|
'prime_meridian' => null, |
|
11594
|
|
|
'conventional_rs' => null, |
|
11595
|
|
|
'frame_reference_epoch' => null, |
|
11596
|
|
|
'anchor_epoch' => null, |
|
11597
|
|
|
'extent_name' => 'Lithuania - onshore', |
|
11598
|
|
|
'help' => 'Lithuanian realisation of EVRF2007. EVRF2007 heights of 10 points in Lithuania held fixed. |
|
11599
|
|
|
Uses Normal heights.', |
|
11600
|
|
|
], |
|
11601
|
|
|
'urn:ogc:def:datum:EPSG::1300' => [ |
|
11602
|
|
|
'name' => 'Bulgarian Height System 2005', |
|
11603
|
|
|
'type' => 'vertical', |
|
11604
|
|
|
'ellipsoid' => null, |
|
11605
|
|
|
'prime_meridian' => null, |
|
11606
|
|
|
'conventional_rs' => null, |
|
11607
|
|
|
'frame_reference_epoch' => null, |
|
11608
|
|
|
'anchor_epoch' => null, |
|
11609
|
|
|
'extent_name' => 'Bulgaria - onshore', |
|
11610
|
|
|
'help' => 'Bulgarian realisation of EVRF2007. EVRF2007 heights of 58 points in Bulgaria held fixed. |
|
11611
|
|
|
Uses Normal heights. Adopted as official Bulgarian height reference datum through decree 153 of 2010-07-29.', |
|
11612
|
|
|
], |
|
11613
|
|
|
'urn:ogc:def:datum:EPSG::1301' => [ |
|
11614
|
|
|
'name' => 'Norwegian Chart Datum', |
|
11615
|
|
|
'type' => 'vertical', |
|
11616
|
|
|
'ellipsoid' => null, |
|
11617
|
|
|
'prime_meridian' => null, |
|
11618
|
|
|
'conventional_rs' => null, |
|
11619
|
|
|
'frame_reference_epoch' => null, |
|
11620
|
|
|
'anchor_epoch' => null, |
|
11621
|
|
|
'extent_name' => 'Norway, Svalbard and Jan Mayen - offshore', |
|
11622
|
|
|
'help' => 'LAT (sum of all harmonic constituents) with an added safety margin in areas where low water levels frequently deviate from LAT. The safety margin is 20 cm from Utsira to the Swedish border and 30 cm in the inner part of the Oslofjord (north of Drøbak). |
|
11623
|
|
|
Prior to 2000-01-01 the definition of chart datum was Z0 = M2 + S2 + N2 + K2 + K1 + ½Sa plus safety margins (10 cm north of Hordaland, 20 cm in Hordaland, 30 cm from Rogaland to the Swedish border and 40 cm in the inner parts of the Oslofjord).', |
|
11624
|
|
|
], |
|
11625
|
|
|
'urn:ogc:def:datum:EPSG::1302' => [ |
|
11626
|
|
|
'name' => 'Local Tidal Datum at Pago Pago 2020', |
|
11627
|
|
|
'type' => 'vertical', |
|
11628
|
|
|
'ellipsoid' => null, |
|
11629
|
|
|
'prime_meridian' => null, |
|
11630
|
|
|
'conventional_rs' => null, |
|
11631
|
|
|
'frame_reference_epoch' => null, |
|
11632
|
|
|
'anchor_epoch' => null, |
|
11633
|
|
|
'extent_name' => 'American Samoa - Tutuila island', |
|
11634
|
|
|
'help' => 'MSL at Pago Pago 2011–2016. |
|
11635
|
|
|
Normal-orthometric heights. Replaces ASVD02 (datum code 1125) in March 2020 after the ASVD02 benchmarks were destroyed by earthquake activity.', |
|
11636
|
|
|
], |
|
11637
|
|
|
'urn:ogc:def:datum:EPSG::1303' => [ |
|
11638
|
|
|
'name' => 'National Vertical Datum 1992', |
|
11639
|
|
|
'type' => 'vertical', |
|
11640
|
|
|
'ellipsoid' => null, |
|
11641
|
|
|
'prime_meridian' => null, |
|
11642
|
|
|
'conventional_rs' => null, |
|
11643
|
|
|
'frame_reference_epoch' => null, |
|
11644
|
|
|
'anchor_epoch' => null, |
|
11645
|
|
|
'extent_name' => 'Bangladesh - onshore', |
|
11646
|
|
|
'help' => 'Mean Sea Level 1992-1994 at tidal station at Rangadia, Chittagong. |
|
11647
|
|
|
', |
|
11648
|
|
|
], |
|
11649
|
|
|
'urn:ogc:def:datum:EPSG::1304' => [ |
|
11650
|
|
|
'name' => 'Red Geodesica Para Mineria en Chile', |
|
11651
|
|
|
'type' => 'dynamic geodetic', |
|
11652
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11653
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11654
|
|
|
'conventional_rs' => null, |
|
11655
|
|
|
'frame_reference_epoch' => 2019.0, |
|
11656
|
|
|
'anchor_epoch' => null, |
|
11657
|
|
|
'extent_name' => 'Chile', |
|
11658
|
|
|
'help' => 'Realized through 26 stations in the IGS (SIRGAS-CON) active reference station network in Chile. |
|
11659
|
|
|
', |
|
11660
|
|
|
], |
|
11661
|
|
|
'urn:ogc:def:datum:EPSG::1305' => [ |
|
11662
|
|
|
'name' => 'ETRF2000 Poland', |
|
11663
|
|
|
'type' => 'geodetic', |
|
11664
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11665
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11666
|
|
|
'conventional_rs' => null, |
|
11667
|
|
|
'frame_reference_epoch' => null, |
|
11668
|
|
|
'anchor_epoch' => null, |
|
11669
|
|
|
'extent_name' => 'Poland', |
|
11670
|
|
|
'help' => 'Polish densification of ETRS89 realized through adjustment of ASG-EUPOS network constrained to 35 EPN stations in [email protected]. |
|
11671
|
|
|
Adopted as official Polish reference frame from 2012-12-01 through Ordinance of the Council of Ministers of 15th November 2012 on the state system of spatial reference system.', |
|
11672
|
|
|
], |
|
11673
|
|
|
'urn:ogc:def:datum:EPSG::1306' => [ |
|
11674
|
|
|
'name' => 'Catania 1965', |
|
11675
|
|
|
'type' => 'vertical', |
|
11676
|
|
|
'ellipsoid' => null, |
|
11677
|
|
|
'prime_meridian' => null, |
|
11678
|
|
|
'conventional_rs' => null, |
|
11679
|
|
|
'frame_reference_epoch' => null, |
|
11680
|
|
|
'anchor_epoch' => null, |
|
11681
|
|
|
'extent_name' => 'Italy - Sicily onshore', |
|
11682
|
|
|
'help' => 'Mean Sea Level at Catania in 1965. |
|
11683
|
|
|
Orthometric heights.', |
|
11684
|
|
|
], |
|
11685
|
|
|
'urn:ogc:def:datum:EPSG::1307' => [ |
|
11686
|
|
|
'name' => 'Cagliari 1956', |
|
11687
|
|
|
'type' => 'vertical', |
|
11688
|
|
|
'ellipsoid' => null, |
|
11689
|
|
|
'prime_meridian' => null, |
|
11690
|
|
|
'conventional_rs' => null, |
|
11691
|
|
|
'frame_reference_epoch' => null, |
|
11692
|
|
|
'anchor_epoch' => null, |
|
11693
|
|
|
'extent_name' => 'Italy - Sardinia onshore', |
|
11694
|
|
|
'help' => 'Mean Sea Level at Cagliari 1955-1957. |
|
11695
|
|
|
Orthometric heights.', |
|
11696
|
|
|
], |
|
11697
|
|
|
'urn:ogc:def:datum:EPSG::1308' => [ |
|
11698
|
|
|
'name' => 'EOS21 Intermediate Reference Frame', |
|
11699
|
|
|
'type' => 'geodetic', |
|
11700
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11701
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11702
|
|
|
'conventional_rs' => null, |
|
11703
|
|
|
'frame_reference_epoch' => null, |
|
11704
|
|
|
'anchor_epoch' => null, |
|
11705
|
|
|
'extent_name' => 'UK - Tweedmouth to Aberdeen', |
|
11706
|
|
|
'help' => 'Defined through the application of the EOS21 NTv2 transformation (code 9740) to ETRS89 as realized through OSNet v2009 CORS. |
|
11707
|
|
|
Created in 2021 to support intermediate CRS "EOS21-IRF" in the emulation of the EOS21 Snake map projection.', |
|
11708
|
|
|
], |
|
11709
|
|
|
'urn:ogc:def:datum:EPSG::1309' => [ |
|
11710
|
|
|
'name' => 'World Geodetic System 1984 (G2139)', |
|
11711
|
|
|
'type' => 'dynamic geodetic', |
|
11712
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
11713
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11714
|
|
|
'conventional_rs' => 1024, |
|
11715
|
|
|
'frame_reference_epoch' => 2016.0, |
|
11716
|
|
|
'anchor_epoch' => null, |
|
11717
|
|
|
'extent_name' => 'World', |
|
11718
|
|
|
'help' => 'Defined through coordinates of 19 GPS tracking stations aligned with a subset of IGb14 stations at epoch 2016.0. The IGb14 station coordinates are considered to be equivalent to ITRF2014. |
|
11719
|
|
|
Replaces World Geodetic System 1984 (G1762) from 2021-01-03. Tracking station coordinate changes on 2021-03-28 when NGA implemented IGS definition of antenna phase centre offset. Replaced by World Geodetic System 1984 (G2296) from 2024-01-07.', |
|
11720
|
|
|
], |
|
11721
|
|
|
'urn:ogc:def:datum:EPSG::1310' => [ |
|
11722
|
|
|
'name' => 'ECML14_NB Intermediate Reference Frame', |
|
11723
|
|
|
'type' => 'geodetic', |
|
11724
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11725
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11726
|
|
|
'conventional_rs' => null, |
|
11727
|
|
|
'frame_reference_epoch' => null, |
|
11728
|
|
|
'anchor_epoch' => null, |
|
11729
|
|
|
'extent_name' => 'UK - Newcastle to Ashington', |
|
11730
|
|
|
'help' => 'Defined through the application of the ECML14_NB NTv2 transformation (code 9759) to ETRS89 as realized through OSNet v2009 CORS. |
|
11731
|
|
|
Created in 2021 to support intermediate CRS "ECML14_NB-IRF" in the emulation of the ECML14_NB Snake map projection.', |
|
11732
|
|
|
], |
|
11733
|
|
|
'urn:ogc:def:datum:EPSG::1311' => [ |
|
11734
|
|
|
'name' => 'EWR2 Intermediate Reference Frame', |
|
11735
|
|
|
'type' => 'geodetic', |
|
11736
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11737
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11738
|
|
|
'conventional_rs' => null, |
|
11739
|
|
|
'frame_reference_epoch' => null, |
|
11740
|
|
|
'anchor_epoch' => null, |
|
11741
|
|
|
'extent_name' => 'UK - Oxford to Bedford', |
|
11742
|
|
|
'help' => 'Defined through the application of the EWR2 NTv2 transformation (code 9763) to ETRS89 as realized through OSNet v2009 CORS. |
|
11743
|
|
|
Created in 2021 to support intermediate CRS "EWR2-IRF" in the emulation of the EWR2 Snake map projection.', |
|
11744
|
|
|
], |
|
11745
|
|
|
'urn:ogc:def:datum:EPSG::1312' => [ |
|
11746
|
|
|
'name' => 'Reseau Geodesique Francais 1993 v2', |
|
11747
|
|
|
'type' => 'geodetic', |
|
11748
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11749
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11750
|
|
|
'conventional_rs' => null, |
|
11751
|
|
|
'frame_reference_epoch' => null, |
|
11752
|
|
|
'anchor_epoch' => null, |
|
11753
|
|
|
'extent_name' => 'France', |
|
11754
|
|
|
'help' => "Aligned with ETRF2000 at epoch 2009.0. Based on the French GNSS permanent network (RGP) from 1998 to 2009, and the re-observation of the geodetic points of the French Reference Network (RRF) and French Base Network (RBF)\u{a0}from 2000 to 2011.\nRGF93 v2 is a realization of ETRS89. Replaces RGF93 v1 (datum code 6171) from 2010-06-18. Replaced by RGF93 v2b (datum code 1313) from 2021-01-05.", |
|
11755
|
|
|
], |
|
11756
|
|
|
'urn:ogc:def:datum:EPSG::1313' => [ |
|
11757
|
|
|
'name' => 'Reseau Geodesique Francais 1993 v2b', |
|
11758
|
|
|
'type' => 'geodetic', |
|
11759
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11760
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11761
|
|
|
'conventional_rs' => null, |
|
11762
|
|
|
'frame_reference_epoch' => null, |
|
11763
|
|
|
'anchor_epoch' => null, |
|
11764
|
|
|
'extent_name' => 'France', |
|
11765
|
|
|
'help' => 'Aligned with ETRF2000 at epoch 2019.0. Derived through reprocessing of the French GNSS permanent network (RGP) in IGS14. |
|
11766
|
|
|
RGF93 v2b is a realization of ETRS89. Third realization of RGF93. Replaces RGF93 v2 (datum code 1312) from 2021-01-05.', |
|
11767
|
|
|
], |
|
11768
|
|
|
'urn:ogc:def:datum:EPSG::1314' => [ |
|
11769
|
|
|
'name' => 'MRH21 Intermediate Reference Frame', |
|
11770
|
|
|
'type' => 'geodetic', |
|
11771
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11772
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11773
|
|
|
'conventional_rs' => null, |
|
11774
|
|
|
'frame_reference_epoch' => null, |
|
11775
|
|
|
'anchor_epoch' => null, |
|
11776
|
|
|
'extent_name' => 'UK - Cardiff to Lincoln', |
|
11777
|
|
|
'help' => 'Defined through the application of the MRH21 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
11778
|
|
|
Created in 2021 to support intermediate CRS "MRH21-IRF" in the emulation of the MRH21 Snake map projection.', |
|
11779
|
|
|
], |
|
11780
|
|
|
'urn:ogc:def:datum:EPSG::1315' => [ |
|
11781
|
|
|
'name' => 'MOLDOR11 Intermediate Reference Frame', |
|
11782
|
|
|
'type' => 'geodetic', |
|
11783
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11784
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11785
|
|
|
'conventional_rs' => null, |
|
11786
|
|
|
'frame_reference_epoch' => null, |
|
11787
|
|
|
'anchor_epoch' => null, |
|
11788
|
|
|
'extent_name' => 'UK - Manchester to Dore', |
|
11789
|
|
|
'help' => 'Defined through the application of the MOLDOR11 NTv2 transformation (code 9878) to ETRS89 as realized through OSNet v2009 CORS. |
|
11790
|
|
|
Created in 2021 to support intermediate CRS "MOLDOR11-IRF" in the emulation of the MOLDOR11 Snake map projection.', |
|
11791
|
|
|
], |
|
11792
|
|
|
'urn:ogc:def:datum:EPSG::1316' => [ |
|
11793
|
|
|
'name' => 'GNTRANS', |
|
11794
|
|
|
'type' => 'vertical', |
|
11795
|
|
|
'ellipsoid' => null, |
|
11796
|
|
|
'prime_meridian' => null, |
|
11797
|
|
|
'conventional_rs' => null, |
|
11798
|
|
|
'frame_reference_epoch' => null, |
|
11799
|
|
|
'anchor_epoch' => null, |
|
11800
|
|
|
'extent_name' => 'Germany - onshore', |
|
11801
|
|
|
'help' => 'Surface defined by the EGG97 quasi-geoid model modified in GNTRANS to achieve absolute position optimised for use with DB_REF. |
|
11802
|
|
|
Implemented in GNTRANS. The GNTRANS height surface is available only through the GNTRANS application. Replaced by the GNTRANS2016 height surface (datum code 1318).', |
|
11803
|
|
|
], |
|
11804
|
|
|
'urn:ogc:def:datum:EPSG::1317' => [ |
|
11805
|
|
|
'name' => 'HULLEE13 Intermediate Reference Frame', |
|
11806
|
|
|
'type' => 'geodetic', |
|
11807
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11808
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11809
|
|
|
'conventional_rs' => null, |
|
11810
|
|
|
'frame_reference_epoch' => null, |
|
11811
|
|
|
'anchor_epoch' => null, |
|
11812
|
|
|
'extent_name' => 'UK - Leeds to Hull', |
|
11813
|
|
|
'help' => 'Defined through the application of the HULLEE13 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
11814
|
|
|
Created in 2022 to support intermediate CRS "HULLEE13-IRF" in the emulation of the HULLEE13 Snake map projection.', |
|
11815
|
|
|
], |
|
11816
|
|
|
'urn:ogc:def:datum:EPSG::1318' => [ |
|
11817
|
|
|
'name' => 'GNTRANS2016', |
|
11818
|
|
|
'type' => 'vertical', |
|
11819
|
|
|
'ellipsoid' => null, |
|
11820
|
|
|
'prime_meridian' => null, |
|
11821
|
|
|
'conventional_rs' => null, |
|
11822
|
|
|
'frame_reference_epoch' => null, |
|
11823
|
|
|
'anchor_epoch' => null, |
|
11824
|
|
|
'extent_name' => 'Germany - onshore', |
|
11825
|
|
|
'help' => 'Surface defined by the GCG2016 quasi-geoid model applied to ETRS89. |
|
11826
|
|
|
Approximates the national DHHN2016 levelling surface to around 1cm in lowlands and 2cm in high mountains, but unlike DHHN2016 it is defined by the GCG2016 geoid model. Like DHHN2016, uses Normal heights in the mean tide system.', |
|
11827
|
|
|
], |
|
11828
|
|
|
'urn:ogc:def:datum:EPSG::1319' => [ |
|
11829
|
|
|
'name' => 'EBBWV14 Intermediate Reference Frame', |
|
11830
|
|
|
'type' => 'geodetic', |
|
11831
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11832
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11833
|
|
|
'conventional_rs' => null, |
|
11834
|
|
|
'frame_reference_epoch' => null, |
|
11835
|
|
|
'anchor_epoch' => null, |
|
11836
|
|
|
'extent_name' => 'UK - Newport to Ebbw Vale', |
|
11837
|
|
|
'help' => 'Defined through the application of the EBBWV14 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
11838
|
|
|
Created in 2022 to support intermediate CRS "EBBWV14-IRF" in the emulation of the EBBWV14 Snake map projection.', |
|
11839
|
|
|
], |
|
11840
|
|
|
'urn:ogc:def:datum:EPSG::1320' => [ |
|
11841
|
|
|
'name' => 'SCM22 Intermediate Reference Frame', |
|
11842
|
|
|
'type' => 'geodetic', |
|
11843
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11844
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11845
|
|
|
'conventional_rs' => null, |
|
11846
|
|
|
'frame_reference_epoch' => null, |
|
11847
|
|
|
'anchor_epoch' => null, |
|
11848
|
|
|
'extent_name' => 'UK - Motherwell to Inverness', |
|
11849
|
|
|
'help' => 'Defined through the application of the SCM22 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
11850
|
|
|
Created in 2022 to support intermediate CRS "SCM22-IRF" in the emulation of the SCM22 Snake map projection.', |
|
11851
|
|
|
], |
|
11852
|
|
|
'urn:ogc:def:datum:EPSG::1321' => [ |
|
11853
|
|
|
'name' => 'FNL22 Intermediate Reference Frame', |
|
11854
|
|
|
'type' => 'geodetic', |
|
11855
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11856
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11857
|
|
|
'conventional_rs' => null, |
|
11858
|
|
|
'frame_reference_epoch' => null, |
|
11859
|
|
|
'anchor_epoch' => null, |
|
11860
|
|
|
'extent_name' => 'UK - Inverness to Thurso', |
|
11861
|
|
|
'help' => 'Defined through the application of the FNL22 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
11862
|
|
|
Created in 2022 to support intermediate CRS "FNL22" in the emulation of the FNL22 Snake map projection.', |
|
11863
|
|
|
], |
|
11864
|
|
|
'urn:ogc:def:datum:EPSG::1322' => [ |
|
11865
|
|
|
'name' => 'International Terrestrial Reference Frame 2020', |
|
11866
|
|
|
'type' => 'dynamic geodetic', |
|
11867
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11868
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11869
|
|
|
'conventional_rs' => null, |
|
11870
|
|
|
'frame_reference_epoch' => 2015.0, |
|
11871
|
|
|
'anchor_epoch' => null, |
|
11872
|
|
|
'extent_name' => 'World', |
|
11873
|
|
|
'help' => 'Origin at geocentre. Origin = ILRS SLR long-term solution at epoch 2015.0. Zero scale and scale rate between ITRF2020 and the average of VLBI and SLR scales/rates. Orientation = ITRF2014@ 2015.0 with zero rotation rates between the ITRF2020 and ITRF2014. |
|
11874
|
|
|
Realization of the IERS Terrestrial Reference System (ITRS). Replaces ITRF2014 (datum code 1165) from April 2022.', |
|
11875
|
|
|
], |
|
11876
|
|
|
'urn:ogc:def:datum:EPSG::1323' => [ |
|
11877
|
|
|
'name' => 'Svalbard vertical datum 2006', |
|
11878
|
|
|
'type' => 'vertical', |
|
11879
|
|
|
'ellipsoid' => null, |
|
11880
|
|
|
'prime_meridian' => null, |
|
11881
|
|
|
'conventional_rs' => null, |
|
11882
|
|
|
'frame_reference_epoch' => null, |
|
11883
|
|
|
'anchor_epoch' => null, |
|
11884
|
|
|
'extent_name' => 'Arctic - 81°10\'N to 76°10\'N, 4°W to 38°E', |
|
11885
|
|
|
'help' => 'Mean Sea Level (MSL) at Ny-Ålesund. The SVD2006 surface (arcgp-2006-sk) is the Arctic Gravity Project 2006 (arcgp-2006) surface adjusted to two benchmarks tied to the Ny-Ålesund tide gauge. arcgp-2006-sk=arcgp-2006 - 0.8986m. |
|
11886
|
|
|
', |
|
11887
|
|
|
], |
|
11888
|
|
|
'urn:ogc:def:datum:EPSG::1324' => [ |
|
11889
|
|
|
'name' => 'MWC18 Intermediate Reference Frame', |
|
11890
|
|
|
'type' => 'geodetic', |
|
11891
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11892
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11893
|
|
|
'conventional_rs' => null, |
|
11894
|
|
|
'frame_reference_epoch' => null, |
|
11895
|
|
|
'anchor_epoch' => null, |
|
11896
|
|
|
'extent_name' => 'UK - Manchester, Wigan and Chester', |
|
11897
|
|
|
'help' => 'Defined through the application of the MWC18 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
11898
|
|
|
Created in 2022 to support intermediate CRS MWC18-IRF in the emulation of the MWC18 Snake map projection.', |
|
11899
|
|
|
], |
|
11900
|
|
|
'urn:ogc:def:datum:EPSG::1325' => [ |
|
11901
|
|
|
'name' => 'Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 2002', |
|
11902
|
|
|
'type' => 'vertical', |
|
11903
|
|
|
'ellipsoid' => null, |
|
11904
|
|
|
'prime_meridian' => null, |
|
11905
|
|
|
'conventional_rs' => null, |
|
11906
|
|
|
'frame_reference_epoch' => null, |
|
11907
|
|
|
'anchor_epoch' => 2002.0, |
|
11908
|
|
|
'extent_name' => 'Canada', |
|
11909
|
|
|
'help' => 'Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean sea level for North America, realized through the Canadian gravimetric geoid 2013a applied at epoch 2002. |
|
11910
|
|
|
CGVD2013(CGG2013a) is a static datum; however, heights referenced to it change with time, primarily due to glacial isostasy. This datum supports CGVD2013(CGG2013a) heights at epoch 2002.0. Other snapshots are at epochs 1997.0 and 2010.0.', |
|
11911
|
|
|
], |
|
11912
|
|
|
'urn:ogc:def:datum:EPSG::1326' => [ |
|
11913
|
|
|
'name' => 'Canadian Geodetic Vertical Datum of 2013 (CGG2013a) epoch 1997', |
|
11914
|
|
|
'type' => 'vertical', |
|
11915
|
|
|
'ellipsoid' => null, |
|
11916
|
|
|
'prime_meridian' => null, |
|
11917
|
|
|
'conventional_rs' => null, |
|
11918
|
|
|
'frame_reference_epoch' => null, |
|
11919
|
|
|
'anchor_epoch' => 1997.0, |
|
11920
|
|
|
'extent_name' => 'Canada', |
|
11921
|
|
|
'help' => 'Defined by the equipotential surface W0 = 62,636,856.0 m^2s^-2, which by convention represents the coastal mean sea level for North America, realized through the Canadian gravimetric geoid 2013a applied at epoch 1997.0. |
|
11922
|
|
|
CGVD2013(CGG2013a) is a static datum; however, heights referenced to it change with time, primarily due to glacial isostasy. This datum supports CGVD2013(CGG2013a) heights at epoch 1997.0. Other snapshots are at epochs 2002.0 and 2010.0.', |
|
11923
|
|
|
], |
|
11924
|
|
|
'urn:ogc:def:datum:EPSG::1327' => [ |
|
11925
|
|
|
'name' => 'SIRGAS-Chile realization 5 epoch 2021', |
|
11926
|
|
|
'type' => 'geodetic', |
|
11927
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11928
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11929
|
|
|
'conventional_rs' => null, |
|
11930
|
|
|
'frame_reference_epoch' => null, |
|
11931
|
|
|
'anchor_epoch' => null, |
|
11932
|
|
|
'extent_name' => 'Chile', |
|
11933
|
|
|
'help' => 'Densification of SIRGAS-CON network in Chile, consisting of 97 stations forming the active CORS network (RGN) referenced to IGb2014 (ITRF2014) at epoch 2021.00. Passive stations used in previous realizations have been removed from this solution. |
|
11934
|
|
|
Replaces SIRGAS-Chile realization 4 epoch 2016 from August 2021 due to significant tectonic deformation. 24 additional active CORS used in this realization compared to that of 2016.', |
|
11935
|
|
|
], |
|
11936
|
|
|
'urn:ogc:def:datum:EPSG::1328' => [ |
|
11937
|
|
|
'name' => 'Indonesian Geoid 2020 version 2', |
|
11938
|
|
|
'type' => 'vertical', |
|
11939
|
|
|
'ellipsoid' => null, |
|
11940
|
|
|
'prime_meridian' => null, |
|
11941
|
|
|
'conventional_rs' => null, |
|
11942
|
|
|
'frame_reference_epoch' => null, |
|
11943
|
|
|
'anchor_epoch' => null, |
|
11944
|
|
|
'extent_name' => 'Indonesia', |
|
11945
|
|
|
'help' => 'Defined by INAGeoid2020 gravimetric geoid model v2 applied to SRGI2013. |
|
11946
|
|
|
Uses gravity data observed to 2021 fitted to tide gauge benchmarks across Indonesia.', |
|
11947
|
|
|
], |
|
11948
|
|
|
'urn:ogc:def:datum:EPSG::1329' => [ |
|
11949
|
|
|
'name' => 'Marco Geocentrico Nacional de Referencia 2018', |
|
11950
|
|
|
'type' => 'geodetic', |
|
11951
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
11952
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11953
|
|
|
'conventional_rs' => null, |
|
11954
|
|
|
'frame_reference_epoch' => null, |
|
11955
|
|
|
'anchor_epoch' => null, |
|
11956
|
|
|
'extent_name' => 'Colombia', |
|
11957
|
|
|
'help' => 'Densification of ITRF2014 at epoch 2018.0 in Colombia. Bogota observatory coordinates: Latitude: 4°35\'46.33160"N, longitude: 74°04\'39.02797"W (of Greenwich). |
|
11958
|
|
|
Active network referenced to [email protected] and passive network referenced to [email protected] updated to ITRF2014 using IERS transformations EPSG:7790 and EPSG:8075 respectively then VEMOS2009 velocity model applied to bring coordinates to epoch 2018.0.', |
|
11959
|
|
|
], |
|
11960
|
|
|
'urn:ogc:def:datum:EPSG::1330' => [ |
|
11961
|
|
|
'name' => 'Mean Sea Level UK & Ireland VORF08', |
|
11962
|
|
|
'type' => 'vertical', |
|
11963
|
|
|
'ellipsoid' => null, |
|
11964
|
|
|
'prime_meridian' => null, |
|
11965
|
|
|
'conventional_rs' => null, |
|
11966
|
|
|
'frame_reference_epoch' => null, |
|
11967
|
|
|
'anchor_epoch' => null, |
|
11968
|
|
|
'extent_name' => 'Europe - Ireland and UK offshore', |
|
11969
|
|
|
'help' => 'MSL UK & Ireland VORF08 is defined by the Vertical Offshore Reference Frame v2.11 2008. MSL UK & Ireland VORF08 is reduced to epoch 2000.0. |
|
11970
|
|
|
OSGM05 model used.', |
|
11971
|
|
|
], |
|
11972
|
|
|
'urn:ogc:def:datum:EPSG::1331' => [ |
|
11973
|
|
|
'name' => 'Chart Datum UK & Ireland VORF08', |
|
11974
|
|
|
'type' => 'vertical', |
|
11975
|
|
|
'ellipsoid' => null, |
|
11976
|
|
|
'prime_meridian' => null, |
|
11977
|
|
|
'conventional_rs' => null, |
|
11978
|
|
|
'frame_reference_epoch' => null, |
|
11979
|
|
|
'anchor_epoch' => null, |
|
11980
|
|
|
'extent_name' => 'Europe - Ireland and UK offshore', |
|
11981
|
|
|
'help' => 'CD UK & Ireland VORF08 is defined by the Vertical Offshore Reference Frame v2.11 2008. |
|
11982
|
|
|
By international agreement, Chart Datum is defined as a level so low that the tide will not frequently fall below it. In the United Kingdom and Ireland, this level is normally the level of approximate Lowest Astronomical Tide.', |
|
11983
|
|
|
], |
|
11984
|
|
|
'urn:ogc:def:datum:EPSG::1332' => [ |
|
11985
|
|
|
'name' => 'System 34 Jylland Intermediate Datum', |
|
11986
|
|
|
'type' => 'geodetic', |
|
11987
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
11988
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
11989
|
|
|
'conventional_rs' => null, |
|
11990
|
|
|
'frame_reference_epoch' => null, |
|
11991
|
|
|
'anchor_epoch' => null, |
|
11992
|
|
|
'extent_name' => 'Denmark - onshore Jutland and Funen', |
|
11993
|
|
|
'help' => 'S34 fundamental point: Agri Bavnehøj, latitude 56°13\'48.217"N, longitude 2°02\'22.629"W of Copenhagen meridian where FE=FN=200000m. This reconstruction\'s origin in central Zealand was obtained from inversion of an older polynomial transformation to ED50. |
|
11994
|
|
|
Created in 2022 to support artificial CRS S34J-IRF in the transformation of coordinates between the historic CRS S34J and ETRS89. The data is a reconstruction based on information synthesized in historical empirical transformations to ED50.', |
|
11995
|
|
|
], |
|
11996
|
|
|
'urn:ogc:def:datum:EPSG::1333' => [ |
|
11997
|
|
|
'name' => 'IGS20', |
|
11998
|
|
|
'type' => 'dynamic geodetic', |
|
11999
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12000
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12001
|
|
|
'conventional_rs' => null, |
|
12002
|
|
|
'frame_reference_epoch' => 2015.0, |
|
12003
|
|
|
'anchor_epoch' => null, |
|
12004
|
|
|
'extent_name' => 'World', |
|
12005
|
|
|
'help' => 'A subset of 332 stable, well-performing IGS stations from ITRF2020. |
|
12006
|
|
|
Used for IGS products from GPS week 2238 (2022-11-27). Replaces IGb14. Compared to IGb14, IGS20 contains 98 new stations, mostly in previously sparsely covered areas, but with 25 IGb14 sites removed. For all practical purposes coincident with ITRF2020.', |
|
12007
|
|
|
], |
|
12008
|
|
|
'urn:ogc:def:datum:EPSG::1334' => [ |
|
12009
|
|
|
'name' => 'DoPw22 Intermediate Reference Frame', |
|
12010
|
|
|
'type' => 'geodetic', |
|
12011
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12012
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12013
|
|
|
'conventional_rs' => null, |
|
12014
|
|
|
'frame_reference_epoch' => null, |
|
12015
|
|
|
'anchor_epoch' => null, |
|
12016
|
|
|
'extent_name' => 'UK - Dovey Junction to Pwllheli', |
|
12017
|
|
|
'help' => 'Defined through the application of the DoPw22 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
12018
|
|
|
Created in 2022 to support intermediate CRS DoPw22-IRF in the emulation of the DoPw22 Snake map projection.', |
|
12019
|
|
|
], |
|
12020
|
|
|
'urn:ogc:def:datum:EPSG::1335' => [ |
|
12021
|
|
|
'name' => 'ShAb07 Intermediate Reference Frame', |
|
12022
|
|
|
'type' => 'geodetic', |
|
12023
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12024
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12025
|
|
|
'conventional_rs' => null, |
|
12026
|
|
|
'frame_reference_epoch' => null, |
|
12027
|
|
|
'anchor_epoch' => null, |
|
12028
|
|
|
'extent_name' => 'UK - Shrewsbury to Aberystwyth', |
|
12029
|
|
|
'help' => 'Defined through the application of the ShAb07 NTv2 transformation (code 10186) to ETRS89 as realized through OSNet v2009 CORS. |
|
12030
|
|
|
Created in 2022 to support intermediate CRS ShAb07-IRF in the emulation of the ShAb07 Snake map projection.', |
|
12031
|
|
|
], |
|
12032
|
|
|
'urn:ogc:def:datum:EPSG::1336' => [ |
|
12033
|
|
|
'name' => 'CNH22 Intermediate Reference Frame', |
|
12034
|
|
|
'type' => 'geodetic', |
|
12035
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12036
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12037
|
|
|
'conventional_rs' => null, |
|
12038
|
|
|
'frame_reference_epoch' => null, |
|
12039
|
|
|
'anchor_epoch' => null, |
|
12040
|
|
|
'extent_name' => 'UK - Crewe to Holyhead', |
|
12041
|
|
|
'help' => 'Defined through the application of the CNH22 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
12042
|
|
|
Created in 2022 to support intermediate CRS CNH22-IRF in the emulation of the CNH22 Snake map projection.', |
|
12043
|
|
|
], |
|
12044
|
|
|
'urn:ogc:def:datum:EPSG::1337' => [ |
|
12045
|
|
|
'name' => 'System 34 Sjaelland Intermediate Datum', |
|
12046
|
|
|
'type' => 'geodetic', |
|
12047
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
12048
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12049
|
|
|
'conventional_rs' => null, |
|
12050
|
|
|
'frame_reference_epoch' => null, |
|
12051
|
|
|
'anchor_epoch' => null, |
|
12052
|
|
|
'extent_name' => 'Denmark - onshore Zealand and Lolland', |
|
12053
|
|
|
'help' => 'S34 fundamental point: Agri Bavnehøj, latitude 56°13\'48.217"N, longitude 2°02\'22.629"W of Copenhagen meridian where FE=FN=200000m. This reconstruction\'s origin in central Zealand was obtained from inversion of an older polynomial transformation to ED50. |
|
12054
|
|
|
Created in 2022 to support intermediate CRS S34S-IRF in the transformation of coordinates between the historic CRS S34S and ETRS89. The data is a reconstruction based on information synthesized in historical empirical transformations to ED50.', |
|
12055
|
|
|
], |
|
12056
|
|
|
'urn:ogc:def:datum:EPSG::1338' => [ |
|
12057
|
|
|
'name' => 'CWS13 Intermediate Reference Frame', |
|
12058
|
|
|
'type' => 'geodetic', |
|
12059
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12060
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12061
|
|
|
'conventional_rs' => null, |
|
12062
|
|
|
'frame_reference_epoch' => null, |
|
12063
|
|
|
'anchor_epoch' => null, |
|
12064
|
|
|
'extent_name' => 'UK - Chester to Shrewsbury', |
|
12065
|
|
|
'help' => 'Defined through the application of the CWS13 NTv2 transformation (code 10197) to ETRS89 as realized through OSNet v2009 CORS. |
|
12066
|
|
|
Created in 2022 to support intermediate CRS CWS13-IRF in the emulation of the CWS13 Snake map projection.', |
|
12067
|
|
|
], |
|
12068
|
|
|
'urn:ogc:def:datum:EPSG::1339' => [ |
|
12069
|
|
|
'name' => 'DIBA15 Intermediate Reference Frame', |
|
12070
|
|
|
'type' => 'geodetic', |
|
12071
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12072
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12073
|
|
|
'conventional_rs' => null, |
|
12074
|
|
|
'frame_reference_epoch' => null, |
|
12075
|
|
|
'anchor_epoch' => null, |
|
12076
|
|
|
'extent_name' => 'UK - Didcot to Banbury', |
|
12077
|
|
|
'help' => 'Defined through the application of the DIBA15 NTv2 transformation (code 10205) to ETRS89 as realized through OSNet v2009 CORS. |
|
12078
|
|
|
Created in 2022 to support intermediate CRS DIBA15-IRF in the emulation of the DIBA15 Snake map projection.', |
|
12079
|
|
|
], |
|
12080
|
|
|
'urn:ogc:def:datum:EPSG::1340' => [ |
|
12081
|
|
|
'name' => 'GWPBS22 Intermediate Reference Frame', |
|
12082
|
|
|
'type' => 'geodetic', |
|
12083
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12084
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12085
|
|
|
'conventional_rs' => null, |
|
12086
|
|
|
'frame_reference_epoch' => null, |
|
12087
|
|
|
'anchor_epoch' => null, |
|
12088
|
|
|
'extent_name' => 'UK - London to Swansea', |
|
12089
|
|
|
'help' => 'Defined through the application of the GWPBS22 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
12090
|
|
|
Created in 2022 to support intermediate CRS GWPBS22-IRF in the emulation of the GWPBS22 Snake map projection.', |
|
12091
|
|
|
], |
|
12092
|
|
|
'urn:ogc:def:datum:EPSG::1341' => [ |
|
12093
|
|
|
'name' => 'GWWAB22 Intermediate Reference Frame', |
|
12094
|
|
|
'type' => 'geodetic', |
|
12095
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12096
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12097
|
|
|
'conventional_rs' => null, |
|
12098
|
|
|
'frame_reference_epoch' => null, |
|
12099
|
|
|
'anchor_epoch' => null, |
|
12100
|
|
|
'extent_name' => 'UK - Cardiff and the valleys', |
|
12101
|
|
|
'help' => 'Defined through the application of the GWWAB22 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
12102
|
|
|
Created in 2022 to support intermediate CRS GWWAB22-IRF in the emulation of the GWWAB22 Snake map projection.', |
|
12103
|
|
|
], |
|
12104
|
|
|
'urn:ogc:def:datum:EPSG::1342' => [ |
|
12105
|
|
|
'name' => 'GWWWA22 Intermediate Reference Frame', |
|
12106
|
|
|
'type' => 'geodetic', |
|
12107
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12108
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12109
|
|
|
'conventional_rs' => null, |
|
12110
|
|
|
'frame_reference_epoch' => null, |
|
12111
|
|
|
'anchor_epoch' => null, |
|
12112
|
|
|
'extent_name' => 'UK - Swansea to Fishguard', |
|
12113
|
|
|
'help' => 'Defined through the application of the GWWWA22 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
12114
|
|
|
Created in 2022 to support intermediate CRS GWWWA22-IRF in the emulation of the GWWWA22 Snake map projection.', |
|
12115
|
|
|
], |
|
12116
|
|
|
'urn:ogc:def:datum:EPSG::1343' => [ |
|
12117
|
|
|
'name' => 'MALS09 Intermediate Reference Frame', |
|
12118
|
|
|
'type' => 'geodetic', |
|
12119
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12120
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12121
|
|
|
'conventional_rs' => null, |
|
12122
|
|
|
'frame_reference_epoch' => null, |
|
12123
|
|
|
'anchor_epoch' => null, |
|
12124
|
|
|
'extent_name' => 'UK - London to Leamington Spa', |
|
12125
|
|
|
'help' => 'Defined through the application of the MALS09 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
12126
|
|
|
Created in 2022 to support intermediate CRS MALS09-IRF in the emulation of the MALS09 Snake map projection.', |
|
12127
|
|
|
], |
|
12128
|
|
|
'urn:ogc:def:datum:EPSG::1344' => [ |
|
12129
|
|
|
'name' => 'OxWo08 Intermediate Reference Frame', |
|
12130
|
|
|
'type' => 'geodetic', |
|
12131
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12132
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12133
|
|
|
'conventional_rs' => null, |
|
12134
|
|
|
'frame_reference_epoch' => null, |
|
12135
|
|
|
'anchor_epoch' => null, |
|
12136
|
|
|
'extent_name' => 'UK - Oxford to Worcester', |
|
12137
|
|
|
'help' => 'Defined through the application of the OxWo08 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
12138
|
|
|
Created in 2022 to support intermediate CRS OxWo08-IRF in the emulation of the OxWo08 Snake map projection.', |
|
12139
|
|
|
], |
|
12140
|
|
|
'urn:ogc:def:datum:EPSG::1345' => [ |
|
12141
|
|
|
'name' => 'SYC20 Intermediate Reference Frame', |
|
12142
|
|
|
'type' => 'geodetic', |
|
12143
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12144
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12145
|
|
|
'conventional_rs' => null, |
|
12146
|
|
|
'frame_reference_epoch' => null, |
|
12147
|
|
|
'anchor_epoch' => null, |
|
12148
|
|
|
'extent_name' => 'UK - Shrewsbury to Crewe', |
|
12149
|
|
|
'help' => 'Defined through the application of the SYC20 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
12150
|
|
|
Created in 2022 to support intermediate CRS SYC20-IRF in the emulation of the SYC20 Snake map projection.', |
|
12151
|
|
|
], |
|
12152
|
|
|
'urn:ogc:def:datum:EPSG::1346' => [ |
|
12153
|
|
|
'name' => 'System 45 Bornholm Intermediate Datum', |
|
12154
|
|
|
'type' => 'geodetic', |
|
12155
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
12156
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12157
|
|
|
'conventional_rs' => null, |
|
12158
|
|
|
'frame_reference_epoch' => null, |
|
12159
|
|
|
'anchor_epoch' => null, |
|
12160
|
|
|
'extent_name' => 'Denmark - onshore Bornholm', |
|
12161
|
|
|
'help' => 'Pseudo origin south of Bornholm, obtained from inversion of an older transformation. The historical Danish System 45 was ad-hoc and not based on any formal datum and projection definitions. |
|
12162
|
|
|
Created in 2022 to support intermediate CRS S45B-IRF in the transformation of coordinates between the historic CRS S45 and ETRS89. The data are reconstructions based on information synthesized in historical empirical transformations to ED50.', |
|
12163
|
|
|
], |
|
12164
|
|
|
'urn:ogc:def:datum:EPSG::1347' => [ |
|
12165
|
|
|
'name' => 'Generalstabens System Intermediate Datum', |
|
12166
|
|
|
'type' => 'geodetic', |
|
12167
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7051', |
|
12168
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12169
|
|
|
'conventional_rs' => null, |
|
12170
|
|
|
'frame_reference_epoch' => null, |
|
12171
|
|
|
'anchor_epoch' => null, |
|
12172
|
|
|
'extent_name' => 'Denmark - onshore Jutland, Funen, Zealand and Lolland', |
|
12173
|
|
|
'help' => 'The old Copenhagen Observatory at Rundetårn. Originally, longitudes were reckoned from the meridian through the observatory but in this reconstruction longitudes are referenced to the Greenwich meridian. |
|
12174
|
|
|
Created in 2022 to support intermediate CRS GS-IRF in the transformation of coordinates between the historic Generalstaben System and ETRS89. The data are reconstructions based on information synthesized in historical empirical transformations to ED50.', |
|
12175
|
|
|
], |
|
12176
|
|
|
'urn:ogc:def:datum:EPSG::1348' => [ |
|
12177
|
|
|
'name' => 'Generalstabens System Bornholm Intermediate Datum', |
|
12178
|
|
|
'type' => 'geodetic', |
|
12179
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7051', |
|
12180
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12181
|
|
|
'conventional_rs' => null, |
|
12182
|
|
|
'frame_reference_epoch' => null, |
|
12183
|
|
|
'anchor_epoch' => null, |
|
12184
|
|
|
'extent_name' => 'Denmark - onshore Bornholm', |
|
12185
|
|
|
'help' => 'The old Copenhagen Observatory at Rundetårn. Originally, longitudes were reckoned from the meridian through the observatory but in this reconstruction longitudes are referenced to the Greenwich meridian. |
|
12186
|
|
|
Created in 2022 to support intermediate CRS GSB-IRF in the transformation of coordinates between the historic Generalstaben System and ETRS89. The data are reconstructions based on information synthesized in historical empirical transformations to ED50.', |
|
12187
|
|
|
], |
|
12188
|
|
|
'urn:ogc:def:datum:EPSG::1349' => [ |
|
12189
|
|
|
'name' => 'Copenhagen Commune Intermediate Datum', |
|
12190
|
|
|
'type' => 'geodetic', |
|
12191
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7051', |
|
12192
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12193
|
|
|
'conventional_rs' => null, |
|
12194
|
|
|
'frame_reference_epoch' => null, |
|
12195
|
|
|
'anchor_epoch' => null, |
|
12196
|
|
|
'extent_name' => 'Denmark - Copenhagen', |
|
12197
|
|
|
'help' => 'Arbitrary origin, apparently based on monument coordinates given in the Generalstabens System. |
|
12198
|
|
|
Created in 2022 to support intermediate CRS KK-IRF in the transformation of coordinates between the historic Copenhagen Commune CRS and ETRS89. The data are reconstructions based on information synthesized in historical empirical transformations to ED50.', |
|
12199
|
|
|
], |
|
12200
|
|
|
'urn:ogc:def:datum:EPSG::1350' => [ |
|
12201
|
|
|
'name' => 'Ostenfeld Intermediate Datum', |
|
12202
|
|
|
'type' => 'geodetic', |
|
12203
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
12204
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12205
|
|
|
'conventional_rs' => null, |
|
12206
|
|
|
'frame_reference_epoch' => null, |
|
12207
|
|
|
'anchor_epoch' => null, |
|
12208
|
|
|
'extent_name' => 'Denmark - northern Schleswig', |
|
12209
|
|
|
'help' => 'Origin of historic system is near the German village Ostenfeld. This Danish reconstruction defined/derived through inversion of an older transformation. |
|
12210
|
|
|
Created in 2022 to support intermediate CRS OS-IRF in the transformation of coordinates between the historic Ostenfeld system of Prussia and ETRS89. The data are reconstructions based on information synthesized in historical empirical transformations.', |
|
12211
|
|
|
], |
|
12212
|
|
|
'urn:ogc:def:datum:EPSG::1351' => [ |
|
12213
|
|
|
'name' => 'SMITB20 Intermediate Reference Frame', |
|
12214
|
|
|
'type' => 'geodetic', |
|
12215
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12216
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12217
|
|
|
'conventional_rs' => null, |
|
12218
|
|
|
'frame_reference_epoch' => null, |
|
12219
|
|
|
'anchor_epoch' => null, |
|
12220
|
|
|
'extent_name' => 'UK - Okehampton to Penstone', |
|
12221
|
|
|
'help' => 'Defined through the application of the SMITB20 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
12222
|
|
|
Created in 2022 to support intermediate CRS SMITB20-IRF in the emulation of the SMITB20 Snake map projection.', |
|
12223
|
|
|
], |
|
12224
|
|
|
'urn:ogc:def:datum:EPSG::1352' => [ |
|
12225
|
|
|
'name' => 'RBEPP12 Intermediate Reference Frame', |
|
12226
|
|
|
'type' => 'geodetic', |
|
12227
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12228
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12229
|
|
|
'conventional_rs' => null, |
|
12230
|
|
|
'frame_reference_epoch' => null, |
|
12231
|
|
|
'anchor_epoch' => null, |
|
12232
|
|
|
'extent_name' => 'UK - Reading to Penzance', |
|
12233
|
|
|
'help' => 'Defined through the application of the RBEPP12 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
12234
|
|
|
Created in 2022 to support intermediate CRS RBEPP12-IRF in the emulation of the RBEPP12 Snake map projection.', |
|
12235
|
|
|
], |
|
12236
|
|
|
'urn:ogc:def:datum:EPSG::1353' => [ |
|
12237
|
|
|
'name' => 'ETRS89/DREF91 Realization 2016', |
|
12238
|
|
|
'type' => 'geodetic', |
|
12239
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12240
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12241
|
|
|
'conventional_rs' => null, |
|
12242
|
|
|
'frame_reference_epoch' => null, |
|
12243
|
|
|
'anchor_epoch' => null, |
|
12244
|
|
|
'extent_name' => 'Germany', |
|
12245
|
|
|
'help' => 'Realized by GNSS campaign 2008. Results were transformed from IGS05 epoch 2008.46 to ITRF2005 to ETRF2000, subsequently to ETRS89/DREF91 Realization 2002 (former German ETRS89 realization) by 3 rotation parameters. |
|
12246
|
|
|
German national realization of ETRS89. Replaces ETRS89/DREF91 Realization 2002 from 2016-12-01.', |
|
12247
|
|
|
], |
|
12248
|
|
|
'urn:ogc:def:datum:EPSG::1354' => [ |
|
12249
|
|
|
'name' => 'Nivellement General de l\'Algerie 2022', |
|
12250
|
|
|
'type' => 'vertical', |
|
12251
|
|
|
'ellipsoid' => null, |
|
12252
|
|
|
'prime_meridian' => null, |
|
12253
|
|
|
'conventional_rs' => null, |
|
12254
|
|
|
'frame_reference_epoch' => null, |
|
12255
|
|
|
'anchor_epoch' => null, |
|
12256
|
|
|
'extent_name' => 'Algeria - onshore', |
|
12257
|
|
|
'help' => 'Fundamental benchmark attached to the tide gauge at basin of Algiers old port with defined height of 1.1168m. |
|
12258
|
|
|
Orthometric heights.', |
|
12259
|
|
|
], |
|
12260
|
|
|
'urn:ogc:def:datum:EPSG::1355' => [ |
|
12261
|
|
|
'name' => 'Sonatrach Reference Frame 2020', |
|
12262
|
|
|
'type' => 'geodetic', |
|
12263
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12264
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12265
|
|
|
'conventional_rs' => null, |
|
12266
|
|
|
'frame_reference_epoch' => null, |
|
12267
|
|
|
'anchor_epoch' => null, |
|
12268
|
|
|
'extent_name' => 'Algeria', |
|
12269
|
|
|
'help' => 'Aligned with IGS14 at epoch 2020.15. RGSH2020 primary network of 22 stations throughout Algeria connected to 15 IGS stations. |
|
12270
|
|
|
Internal accuracy of network is 6-8mm.', |
|
12271
|
|
|
], |
|
12272
|
|
|
'urn:ogc:def:datum:EPSG::1356' => [ |
|
12273
|
|
|
'name' => 'Latvian coordinate system 2020', |
|
12274
|
|
|
'type' => 'geodetic', |
|
12275
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12276
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12277
|
|
|
'conventional_rs' => null, |
|
12278
|
|
|
'frame_reference_epoch' => null, |
|
12279
|
|
|
'anchor_epoch' => null, |
|
12280
|
|
|
'extent_name' => 'Latvia', |
|
12281
|
|
|
'help' => 'Aligned with ETRF2014 at epoch 2020.28. Derived at 5 well-distributed base stations of the Latvian GNSS permanent network (LATREF) in IGb14, transformed to ETRF2014 using EUREF parameters (CT code 8366). |
|
12282
|
|
|
LKS-2020 is the second national realization of ETRS89. Replaces LKS-92 (datum code 6661).', |
|
12283
|
|
|
], |
|
12284
|
|
|
'urn:ogc:def:datum:EPSG::1357' => [ |
|
12285
|
|
|
'name' => 'Reseau Geodesique de Nouvelle Caledonie 2015', |
|
12286
|
|
|
'type' => 'geodetic', |
|
12287
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12288
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12289
|
|
|
'conventional_rs' => null, |
|
12290
|
|
|
'frame_reference_epoch' => null, |
|
12291
|
|
|
'anchor_epoch' => null, |
|
12292
|
|
|
'extent_name' => 'New Caledonia', |
|
12293
|
|
|
'help' => 'Aligned with ITRF2008 at epoch 2015.0. |
|
12294
|
|
|
Replaces RGNC91-93.', |
|
12295
|
|
|
], |
|
12296
|
|
|
'urn:ogc:def:datum:EPSG::1358' => [ |
|
12297
|
|
|
'name' => 'BH_ETRS89', |
|
12298
|
|
|
'type' => 'geodetic', |
|
12299
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12300
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12301
|
|
|
'conventional_rs' => null, |
|
12302
|
|
|
'frame_reference_epoch' => null, |
|
12303
|
|
|
'anchor_epoch' => null, |
|
12304
|
|
|
'extent_name' => 'Bosnia and Herzegovina', |
|
12305
|
|
|
'help' => 'Densification of ETRF2000 in Bosnia and Herzegovina at epoch 2011.307. |
|
12306
|
|
|
ETRS89 in Bosnia and Herzegovina, realized through the coordinates of 17 stations of the GNSS active FBiHPOS network in conjunction with 17 stations of the Serbia SRPOS network.', |
|
12307
|
|
|
], |
|
12308
|
|
|
'urn:ogc:def:datum:EPSG::1359' => [ |
|
12309
|
|
|
'name' => 'Hughes 1980', |
|
12310
|
|
|
'type' => 'geodetic', |
|
12311
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7058', |
|
12312
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12313
|
|
|
'conventional_rs' => null, |
|
12314
|
|
|
'frame_reference_epoch' => null, |
|
12315
|
|
|
'anchor_epoch' => null, |
|
12316
|
|
|
'extent_name' => 'World', |
|
12317
|
|
|
'help' => 'Centre of the Earth. |
|
12318
|
|
|
Used in US Air Force Defense Meteorological Satellite Program (DMSP) Special Sensor Microwave Imager (SSM/I) and Special Sensor Microwave Imager/Sounder (SSMIS) processing software.', |
|
12319
|
|
|
], |
|
12320
|
|
|
'urn:ogc:def:datum:EPSG::1360' => [ |
|
12321
|
|
|
'name' => 'NSIDC International 1924 Authalic Sphere', |
|
12322
|
|
|
'type' => 'geodetic', |
|
12323
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7057', |
|
12324
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12325
|
|
|
'conventional_rs' => null, |
|
12326
|
|
|
'frame_reference_epoch' => null, |
|
12327
|
|
|
'anchor_epoch' => null, |
|
12328
|
|
|
'extent_name' => 'World', |
|
12329
|
|
|
'help' => ' |
|
12330
|
|
|
Created to support EASE-Grid v1. Note: for EASE-Grid v2, WGS 84 used.', |
|
12331
|
|
|
], |
|
12332
|
|
|
'urn:ogc:def:datum:EPSG::1361' => [ |
|
12333
|
|
|
'name' => 'Chart Datum Portugal ', |
|
12334
|
|
|
'type' => 'vertical', |
|
12335
|
|
|
'ellipsoid' => null, |
|
12336
|
|
|
'prime_meridian' => null, |
|
12337
|
|
|
'conventional_rs' => null, |
|
12338
|
|
|
'frame_reference_epoch' => null, |
|
12339
|
|
|
'anchor_epoch' => null, |
|
12340
|
|
|
'extent_name' => 'Portugal - offshore', |
|
12341
|
|
|
'help' => 'ZH is located below the level of the Lowest Astronomical Tide (LAT). |
|
12342
|
|
|
.', |
|
12343
|
|
|
], |
|
12344
|
|
|
'urn:ogc:def:datum:EPSG::1362' => [ |
|
12345
|
|
|
'name' => 'Formentera', |
|
12346
|
|
|
'type' => 'vertical', |
|
12347
|
|
|
'ellipsoid' => null, |
|
12348
|
|
|
'prime_meridian' => null, |
|
12349
|
|
|
'conventional_rs' => null, |
|
12350
|
|
|
'frame_reference_epoch' => null, |
|
12351
|
|
|
'anchor_epoch' => null, |
|
12352
|
|
|
'extent_name' => 'Spain - Balearic Islands - Formentera', |
|
12353
|
|
|
'help' => 'Mean Sea Level at La Sabina harbour between 2000-10-25 and 2001-04-18. |
|
12354
|
|
|
Orthometric heights.', |
|
12355
|
|
|
], |
|
12356
|
|
|
'urn:ogc:def:datum:EPSG::1363' => [ |
|
12357
|
|
|
'name' => 'Alboran', |
|
12358
|
|
|
'type' => 'vertical', |
|
12359
|
|
|
'ellipsoid' => null, |
|
12360
|
|
|
'prime_meridian' => null, |
|
12361
|
|
|
'conventional_rs' => null, |
|
12362
|
|
|
'frame_reference_epoch' => null, |
|
12363
|
|
|
'anchor_epoch' => null, |
|
12364
|
|
|
'extent_name' => 'Spain - Alboran', |
|
12365
|
|
|
'help' => 'Mean Sea Level at Alboran harbour between 2017-01-01 and 2019-12-31. |
|
12366
|
|
|
Orthometric heights.', |
|
12367
|
|
|
], |
|
12368
|
|
|
'urn:ogc:def:datum:EPSG::1364' => [ |
|
12369
|
|
|
'name' => 'Melilla', |
|
12370
|
|
|
'type' => 'vertical', |
|
12371
|
|
|
'ellipsoid' => null, |
|
12372
|
|
|
'prime_meridian' => null, |
|
12373
|
|
|
'conventional_rs' => null, |
|
12374
|
|
|
'frame_reference_epoch' => null, |
|
12375
|
|
|
'anchor_epoch' => null, |
|
12376
|
|
|
'extent_name' => 'Spain - Melilla', |
|
12377
|
|
|
'help' => 'Mean Sea Level at Melilla harbour between 2008-01-01 and 2019-12-31. |
|
12378
|
|
|
Orthometric heights. Replaces an earlier vertical datum in Ceuta harbour measured between 1908 and 1927.', |
|
12379
|
|
|
], |
|
12380
|
|
|
'urn:ogc:def:datum:EPSG::1365' => [ |
|
12381
|
|
|
'name' => 'North American Datum of 1983 (CSRS) version 8', |
|
12382
|
|
|
'type' => 'geodetic', |
|
12383
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12384
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12385
|
|
|
'conventional_rs' => null, |
|
12386
|
|
|
'frame_reference_epoch' => null, |
|
12387
|
|
|
'anchor_epoch' => 2010.0, |
|
12388
|
|
|
'extent_name' => 'Canada', |
|
12389
|
|
|
'help' => 'Defined at reference epoch 2010.00 by a transformation from ITRF2020 (see transformation code 10415). The frame is kept aligned with the North American tectonic plate at other epochs using the NNR-Nuvel 1A model. |
|
12390
|
|
|
Published 2022-11-27; adopted by the Canadian federal government (2023). Replaces NAD83(CSRS)v7.', |
|
12391
|
|
|
], |
|
12392
|
|
|
'urn:ogc:def:datum:EPSG::1366' => [ |
|
12393
|
|
|
'name' => 'COV23 Intermediate Reference Frame', |
|
12394
|
|
|
'type' => 'geodetic', |
|
12395
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12396
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12397
|
|
|
'conventional_rs' => null, |
|
12398
|
|
|
'frame_reference_epoch' => null, |
|
12399
|
|
|
'anchor_epoch' => null, |
|
12400
|
|
|
'extent_name' => 'UK - Coventry', |
|
12401
|
|
|
'help' => 'Defined through the application of the COV23 NTv2 transformation to ETRS89 as realized through OSNet v2009 CORS. |
|
12402
|
|
|
Created in 2023 to support intermediate CRS COV23-IRF in the emulation of the COV23 Snake map projection.', |
|
12403
|
|
|
], |
|
12404
|
|
|
'urn:ogc:def:datum:EPSG::1367' => [ |
|
12405
|
|
|
'name' => 'Brenner Base Tunnel 2000', |
|
12406
|
|
|
'type' => 'geodetic', |
|
12407
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
12408
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12409
|
|
|
'conventional_rs' => null, |
|
12410
|
|
|
'frame_reference_epoch' => null, |
|
12411
|
|
|
'anchor_epoch' => null, |
|
12412
|
|
|
'extent_name' => 'Europe - Brenner', |
|
12413
|
|
|
'help' => 'Realized through a network of stations aligned to [email protected]. |
|
12414
|
|
|
Network of BBT stations, including existing nearby stations of the Austrian AREF-TIREF network, the Italian IGM95 network and the Trentino Alto Adige provincial cadastral control network.', |
|
12415
|
|
|
], |
|
12416
|
|
|
'urn:ogc:def:datum:EPSG::1368' => [ |
|
12417
|
|
|
'name' => 'Dansk Vertikal Reference 1990 (2002)', |
|
12418
|
|
|
'type' => 'vertical', |
|
12419
|
|
|
'ellipsoid' => null, |
|
12420
|
|
|
'prime_meridian' => null, |
|
12421
|
|
|
'conventional_rs' => 1027, |
|
12422
|
|
|
'frame_reference_epoch' => null, |
|
12423
|
|
|
'anchor_epoch' => null, |
|
12424
|
|
|
'extent_name' => 'Denmark - onshore', |
|
12425
|
|
|
'help' => 'Benchmark at Århus cathedral referenced to mean sea level determined during 1990 at 10 tide gauges: Esbjerg, Fredericia, Frederikshavn, Gedser, Hirtshals, Hornbæk, Korsør, København, Slipshavn and Århus. |
|
12426
|
|
|
First geoid-based realization of DVR90. Replaced by DVR90(2013).', |
|
12427
|
|
|
], |
|
12428
|
|
|
'urn:ogc:def:datum:EPSG::1369' => [ |
|
12429
|
|
|
'name' => 'Dansk Vertikal Reference 1990 (2013)', |
|
12430
|
|
|
'type' => 'vertical', |
|
12431
|
|
|
'ellipsoid' => null, |
|
12432
|
|
|
'prime_meridian' => null, |
|
12433
|
|
|
'conventional_rs' => 1027, |
|
12434
|
|
|
'frame_reference_epoch' => null, |
|
12435
|
|
|
'anchor_epoch' => null, |
|
12436
|
|
|
'extent_name' => 'Denmark - onshore', |
|
12437
|
|
|
'help' => 'Benchmark at Århus cathedral referenced to mean sea level determined during 1990 at 10 tide gauges: Esbjerg, Fredericia, Frederikshavn, Gedser, Hirtshals, Hornbæk, Korsør, København, Slipshavn and Århus. |
|
12438
|
|
|
Second geoid-based realization of DVR90. Replaces DVR90(2002). Replaced by DVR90(2023).', |
|
12439
|
|
|
], |
|
12440
|
|
|
'urn:ogc:def:datum:EPSG::1370' => [ |
|
12441
|
|
|
'name' => 'Dansk Vertikal Reference 1990 (2023)', |
|
12442
|
|
|
'type' => 'vertical', |
|
12443
|
|
|
'ellipsoid' => null, |
|
12444
|
|
|
'prime_meridian' => null, |
|
12445
|
|
|
'conventional_rs' => 1027, |
|
12446
|
|
|
'frame_reference_epoch' => null, |
|
12447
|
|
|
'anchor_epoch' => null, |
|
12448
|
|
|
'extent_name' => 'Denmark - onshore', |
|
12449
|
|
|
'help' => 'Benchmark at Århus cathedral referenced to mean sea level determined during 1990 at 10 tide gauges: Esbjerg, Fredericia, Frederikshavn, Gedser, Hirtshals, Hornbæk, Korsør, København, Slipshavn and Århus. |
|
12450
|
|
|
Second geoid-based realization of DVR90. Replaces DVR90(2013).', |
|
12451
|
|
|
], |
|
12452
|
|
|
'urn:ogc:def:datum:EPSG::1371' => [ |
|
12453
|
|
|
'name' => 'Dansk Vertikal Reference 1990 ensemble', |
|
12454
|
|
|
'type' => 'ensemble', |
|
12455
|
|
|
'ellipsoid' => null, |
|
12456
|
|
|
'prime_meridian' => null, |
|
12457
|
|
|
'conventional_rs' => null, |
|
12458
|
|
|
'frame_reference_epoch' => null, |
|
12459
|
|
|
'anchor_epoch' => null, |
|
12460
|
|
|
'extent_name' => 'Denmark - onshore', |
|
12461
|
|
|
'ensemble' => [ |
|
12462
|
|
|
'urn:ogc:def:datum:EPSG::5206', |
|
12463
|
|
|
'urn:ogc:def:datum:EPSG::1368', |
|
12464
|
|
|
'urn:ogc:def:datum:EPSG::1369', |
|
12465
|
|
|
'urn:ogc:def:datum:EPSG::1370', |
|
12466
|
|
|
], |
|
12467
|
|
|
'help' => ' |
|
12468
|
|
|
', |
|
12469
|
|
|
], |
|
12470
|
|
|
'urn:ogc:def:datum:EPSG::1372' => [ |
|
12471
|
|
|
'name' => 'Denmark Mean Sea Level (2022)', |
|
12472
|
|
|
'type' => 'vertical', |
|
12473
|
|
|
'ellipsoid' => null, |
|
12474
|
|
|
'prime_meridian' => null, |
|
12475
|
|
|
'conventional_rs' => 1028, |
|
12476
|
|
|
'frame_reference_epoch' => null, |
|
12477
|
|
|
'anchor_epoch' => null, |
|
12478
|
|
|
'extent_name' => 'Denmark - offshore', |
|
12479
|
|
|
'help' => 'Mean sea level as determined by satellite altimetry and coastal tide gauges. Defined with respect to ETRS89 through the dkmsl_2022 hydroid model. |
|
12480
|
|
|
Replaced by DKMSL(2023).', |
|
12481
|
|
|
], |
|
12482
|
|
|
'urn:ogc:def:datum:EPSG::1373' => [ |
|
12483
|
|
|
'name' => 'Denmark Lowest Astronomical Tide (2022)', |
|
12484
|
|
|
'type' => 'vertical', |
|
12485
|
|
|
'ellipsoid' => null, |
|
12486
|
|
|
'prime_meridian' => null, |
|
12487
|
|
|
'conventional_rs' => 1029, |
|
12488
|
|
|
'frame_reference_epoch' => null, |
|
12489
|
|
|
'anchor_epoch' => null, |
|
12490
|
|
|
'extent_name' => 'Denmark - offshore', |
|
12491
|
|
|
'help' => 'Mean sea level as determined by satellite altimetry adjusted to LAT using coastal tide gauges and global tide models. Defined with respect to ETRS89 through the dklat_2022 hydroid model. |
|
12492
|
|
|
Replaced by DKLAT(2023).', |
|
12493
|
|
|
], |
|
12494
|
|
|
'urn:ogc:def:datum:EPSG::1374' => [ |
|
12495
|
|
|
'name' => 'Denmark Mean Sea Level (2023)', |
|
12496
|
|
|
'type' => 'vertical', |
|
12497
|
|
|
'ellipsoid' => null, |
|
12498
|
|
|
'prime_meridian' => null, |
|
12499
|
|
|
'conventional_rs' => 1028, |
|
12500
|
|
|
'frame_reference_epoch' => null, |
|
12501
|
|
|
'anchor_epoch' => null, |
|
12502
|
|
|
'extent_name' => 'Denmark - offshore', |
|
12503
|
|
|
'help' => 'Mean sea level as determined by updated satellite altimetry and coastal tide gauges. Defined with respect to ETRS89 through the dkmsl_2023 hydroid model. |
|
12504
|
|
|
Replaces DKMSL(2022).', |
|
12505
|
|
|
], |
|
12506
|
|
|
'urn:ogc:def:datum:EPSG::1375' => [ |
|
12507
|
|
|
'name' => 'Denmark Lowest Astronomic Tide (2023)', |
|
12508
|
|
|
'type' => 'vertical', |
|
12509
|
|
|
'ellipsoid' => null, |
|
12510
|
|
|
'prime_meridian' => null, |
|
12511
|
|
|
'conventional_rs' => 1029, |
|
12512
|
|
|
'frame_reference_epoch' => null, |
|
12513
|
|
|
'anchor_epoch' => null, |
|
12514
|
|
|
'extent_name' => 'Denmark - offshore', |
|
12515
|
|
|
'help' => 'Mean sea level as determined by updated satellite altimetry adjusted to LAT using coastal tide gauges and improved global tide models. Defined with respect to ETRS89 through the dklat_2023 hydroid model. |
|
12516
|
|
|
Replaces DKLAT(2022).', |
|
12517
|
|
|
], |
|
12518
|
|
|
'urn:ogc:def:datum:EPSG::1376' => [ |
|
12519
|
|
|
'name' => 'Denmark Mean Sea Level ', |
|
12520
|
|
|
'type' => 'ensemble', |
|
12521
|
|
|
'ellipsoid' => null, |
|
12522
|
|
|
'prime_meridian' => null, |
|
12523
|
|
|
'conventional_rs' => null, |
|
12524
|
|
|
'frame_reference_epoch' => null, |
|
12525
|
|
|
'anchor_epoch' => null, |
|
12526
|
|
|
'extent_name' => 'Denmark - offshore', |
|
12527
|
|
|
'ensemble' => [ |
|
12528
|
|
|
'urn:ogc:def:datum:EPSG::1372', |
|
12529
|
|
|
'urn:ogc:def:datum:EPSG::1374', |
|
12530
|
|
|
], |
|
12531
|
|
|
'help' => ' |
|
12532
|
|
|
MSL as defined through any DKMSL hydroid model without distinction.', |
|
12533
|
|
|
], |
|
12534
|
|
|
'urn:ogc:def:datum:EPSG::1377' => [ |
|
12535
|
|
|
'name' => 'Denmark Lowest Astronomical Tide ', |
|
12536
|
|
|
'type' => 'ensemble', |
|
12537
|
|
|
'ellipsoid' => null, |
|
12538
|
|
|
'prime_meridian' => null, |
|
12539
|
|
|
'conventional_rs' => null, |
|
12540
|
|
|
'frame_reference_epoch' => null, |
|
12541
|
|
|
'anchor_epoch' => null, |
|
12542
|
|
|
'extent_name' => 'Denmark - offshore', |
|
12543
|
|
|
'ensemble' => [ |
|
12544
|
|
|
'urn:ogc:def:datum:EPSG::1373', |
|
12545
|
|
|
'urn:ogc:def:datum:EPSG::1375', |
|
12546
|
|
|
], |
|
12547
|
|
|
'help' => ' |
|
12548
|
|
|
LAT as defined through any DKLAT hydroid model without distinction.', |
|
12549
|
|
|
], |
|
12550
|
|
|
'urn:ogc:def:datum:EPSG::1378' => [ |
|
12551
|
|
|
'name' => 'Greenland Local Mean Sea Level (2022)', |
|
12552
|
|
|
'type' => 'vertical', |
|
12553
|
|
|
'ellipsoid' => null, |
|
12554
|
|
|
'prime_meridian' => null, |
|
12555
|
|
|
'conventional_rs' => null, |
|
12556
|
|
|
'frame_reference_epoch' => null, |
|
12557
|
|
|
'anchor_epoch' => null, |
|
12558
|
|
|
'extent_name' => 'Greenland - onshore', |
|
12559
|
|
|
'help' => '77 disconnected local levelling nets introduced between 1945 and 1983 each tied to local mean sea level. |
|
12560
|
|
|
GLLMSL has been introduced to accomodate transformations between older local height systems and the modern nation-wide height systems. In effect these datums are now defined by their transformation to GVR2016.', |
|
12561
|
|
|
], |
|
12562
|
|
|
'urn:ogc:def:datum:EPSG::1382' => [ |
|
12563
|
|
|
'name' => 'European Terrestrial Reference Frame 2020', |
|
12564
|
|
|
'type' => 'geodetic', |
|
12565
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12566
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12567
|
|
|
'conventional_rs' => 1025, |
|
12568
|
|
|
'frame_reference_epoch' => null, |
|
12569
|
|
|
'anchor_epoch' => null, |
|
12570
|
|
|
'extent_name' => 'Europe - ETRF', |
|
12571
|
|
|
'help' => 'Coincides with ITRF2020 at epoch 1989.0. Fixed to the stable part of the Eurasian tectonic plate through 3 rotation rates derived from the ITRF2020 velocity field. |
|
12572
|
|
|
Defined by transformation from ITRF2020 (CT code 10572). Replaces ETRF2014 (datum code 1206). Technically superior to ETRF2000 (datum code 1186).', |
|
12573
|
|
|
], |
|
12574
|
|
|
'urn:ogc:def:datum:EPSG::1383' => [ |
|
12575
|
|
|
'name' => 'World Geodetic System 1984 (G2296)', |
|
12576
|
|
|
'type' => 'dynamic geodetic', |
|
12577
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
12578
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12579
|
|
|
'conventional_rs' => 1024, |
|
12580
|
|
|
'frame_reference_epoch' => 2024.0, |
|
12581
|
|
|
'anchor_epoch' => null, |
|
12582
|
|
|
'extent_name' => 'World', |
|
12583
|
|
|
'help' => 'Aligned to IGS20 through a 7.4 year (2016-01 to 2023-05) time series of daily positions and derived velocities of the 17 WGS 84 tracking stations, determined by Precise Point Positioning (PPP) using IGS precise orbits, clocks and antenna calibrations. |
|
12584
|
|
|
WGS 84 (G2296) is considered to be aligned to IGS20 and ITRF2020 at all epochs. Replaces World Geodetic System 1984 (G2139) from 2024-01-07.', |
|
12585
|
|
|
], |
|
12586
|
|
|
'urn:ogc:def:datum:EPSG::1384' => [ |
|
12587
|
|
|
'name' => 'Canadian Geodetic Vertical Datum of 1928 (Height Transformation version 2.0)', |
|
12588
|
|
|
'type' => 'vertical', |
|
12589
|
|
|
'ellipsoid' => null, |
|
12590
|
|
|
'prime_meridian' => null, |
|
12591
|
|
|
'conventional_rs' => null, |
|
12592
|
|
|
'frame_reference_epoch' => null, |
|
12593
|
|
|
'anchor_epoch' => 1997.0, |
|
12594
|
|
|
'extent_name' => 'Canada - CGVD28(HTv2.0)', |
|
12595
|
|
|
'help' => 'Derived from CGG2000 gravimetric geoid fitted to 1926 benchmarks with CGVD28 levellng-based heights and NAD83(CSRS)v3 ellipsoid heights at epoch 1997.00. Defined by the hybrid geoid model HTv2.0 (Height Transformation version 2.0). |
|
12596
|
|
|
Orthometric heights. Defines CGVD28 where the CGVD28 levelling-based network (datum code 5114) does not exist. Defines CGVD28(HTv2.0) throughout the HTv2.0 coverage. Both CGVD28 and CGVD28(HTv2.0) replaced by CGVD2013 (datum code 1127).', |
|
12597
|
|
|
], |
|
12598
|
|
|
'urn:ogc:def:datum:EPSG::1385' => [ |
|
12599
|
|
|
'name' => 'ECML14 Intermediate Reference Frame', |
|
12600
|
|
|
'type' => 'geodetic', |
|
12601
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12602
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12603
|
|
|
'conventional_rs' => null, |
|
12604
|
|
|
'frame_reference_epoch' => null, |
|
12605
|
|
|
'anchor_epoch' => null, |
|
12606
|
|
|
'extent_name' => 'UK - London to Edinburgh', |
|
12607
|
|
|
'help' => 'Defined through the application of the ECML14 NTv2 transformation from ETRS89 as realized through OSNet v2009 CORS. |
|
12608
|
|
|
Created in 2024 to support intermediate CRS "ECML14-IRF" in the emulation of the ECML14 Snake map projection.', |
|
12609
|
|
|
], |
|
12610
|
|
|
'urn:ogc:def:datum:EPSG::1386' => [ |
|
12611
|
|
|
'name' => 'WC05 Intermediate Reference Frame', |
|
12612
|
|
|
'type' => 'geodetic', |
|
12613
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
12614
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
12615
|
|
|
'conventional_rs' => null, |
|
12616
|
|
|
'frame_reference_epoch' => null, |
|
12617
|
|
|
'anchor_epoch' => null, |
|
12618
|
|
|
'extent_name' => 'UK - London to Glasgow', |
|
12619
|
|
|
'help' => 'Defined through the application of the WC05 NTv2 transformation from ETRS89 as realized through OSNet v2009 CORS. |
|
12620
|
|
|
Created in 2024 to support intermediate CRS "WC05-IRF" in the emulation of the WC05 Snake map projection.', |
|
12621
|
|
|
], |
|
12622
|
|
|
'urn:ogc:def:datum:EPSG::1387' => [ |
|
12623
|
|
|
'name' => 'Greenland Mean Sea Level (2023)', |
|
12624
|
|
|
'type' => 'vertical', |
|
12625
|
|
|
'ellipsoid' => null, |
|
12626
|
|
|
'prime_meridian' => null, |
|
12627
|
|
|
'conventional_rs' => 1030, |
|
12628
|
|
|
'frame_reference_epoch' => null, |
|
12629
|
|
|
'anchor_epoch' => null, |
|
12630
|
|
|
'extent_name' => 'Greenland - offshore', |
|
12631
|
|
|
'help' => 'Mean sea level as determined by satellite altimetry and coastal tide gauges. Defined with respect to GR96 through the glmsl_2023 hydroid model. |
|
12632
|
|
|
', |
|
12633
|
|
|
], |
|
12634
|
|
|
'urn:ogc:def:datum:EPSG::1388' => [ |
|
12635
|
|
|
'name' => 'Greenland Lowest Astronomic Tide (2023)', |
|
12636
|
|
|
'type' => 'vertical', |
|
12637
|
|
|
'ellipsoid' => null, |
|
12638
|
|
|
'prime_meridian' => null, |
|
12639
|
|
|
'conventional_rs' => 1031, |
|
12640
|
|
|
'frame_reference_epoch' => null, |
|
12641
|
|
|
'anchor_epoch' => null, |
|
12642
|
|
|
'extent_name' => 'Greenland - offshore', |
|
12643
|
|
|
'help' => 'Mean sea level as determined by satellite altimetry adjusted to LAT using coastal tide gauges and global tide models. Defined with respect to GR96 through the gllat_2023 hydroid model. |
|
12644
|
|
|
', |
|
12645
|
|
|
], |
|
12646
|
|
|
'urn:ogc:def:datum:EPSG::1390' => [ |
|
12647
|
|
|
'name' => 'Baltic Sea Chart Datum 2000', |
|
12648
|
|
|
'type' => 'vertical', |
|
12649
|
|
|
'ellipsoid' => null, |
|
12650
|
|
|
'prime_meridian' => null, |
|
12651
|
|
|
'conventional_rs' => null, |
|
12652
|
|
|
'frame_reference_epoch' => null, |
|
12653
|
|
|
'anchor_epoch' => null, |
|
12654
|
|
|
'extent_name' => 'Europe - Baltic Sea', |
|
12655
|
|
|
'help' => 'Equipotential surface of the Earth’s gravity field based on the definitions for EVRS and ETRS89 with reference epoch 2000.0 for the postglacial land uplift in Fennoscandia. Zero level is Normaal Amsterdams Peil (NAP). Defined by the BSCD2000 model. |
|
12656
|
|
|
Realized at the national level through coordinates at reference epoch 2000.0 using existing national geodetic infrastructure (see BSCD2000 Specifications document).', |
|
12657
|
|
|
], |
|
12658
|
|
|
'urn:ogc:def:datum:EPSG::5100' => [ |
|
12659
|
|
|
'name' => 'Mean Sea Level', |
|
12660
|
|
|
'type' => 'vertical', |
|
12661
|
|
|
'ellipsoid' => null, |
|
12662
|
|
|
'prime_meridian' => null, |
|
12663
|
|
|
'conventional_rs' => null, |
|
12664
|
|
|
'frame_reference_epoch' => null, |
|
12665
|
|
|
'anchor_epoch' => null, |
|
12666
|
|
|
'extent_name' => 'World', |
|
12667
|
|
|
'help' => 'Not specific to any location or epoch. |
|
12668
|
|
|
The average height of the surface of the sea at a tide station for all stages of the tide over a 19-year period, usually determined from hourly height readings measured from a fixed predetermined reference level. Approximates geoid.', |
|
12669
|
|
|
], |
|
12670
|
|
|
'urn:ogc:def:datum:EPSG::5101' => [ |
|
12671
|
|
|
'name' => 'Ordnance Datum Newlyn', |
|
12672
|
|
|
'type' => 'vertical', |
|
12673
|
|
|
'ellipsoid' => null, |
|
12674
|
|
|
'prime_meridian' => null, |
|
12675
|
|
|
'conventional_rs' => 1026, |
|
12676
|
|
|
'frame_reference_epoch' => null, |
|
12677
|
|
|
'anchor_epoch' => null, |
|
12678
|
|
|
'extent_name' => 'UK - Great Britain mainland onshore', |
|
12679
|
|
|
'help' => 'Mean Sea Level at Newlyn between 1915 and 1921. Initially realised through 1921 and then 1956 levelling network adjustments. From 2002 redefined to be realised through OSGM geoid models. |
|
12680
|
|
|
Orthometric heights.', |
|
12681
|
|
|
], |
|
12682
|
|
|
'urn:ogc:def:datum:EPSG::5102' => [ |
|
12683
|
|
|
'name' => 'National Geodetic Vertical Datum 1929', |
|
12684
|
|
|
'type' => 'vertical', |
|
12685
|
|
|
'ellipsoid' => null, |
|
12686
|
|
|
'prime_meridian' => null, |
|
12687
|
|
|
'conventional_rs' => null, |
|
12688
|
|
|
'frame_reference_epoch' => null, |
|
12689
|
|
|
'anchor_epoch' => null, |
|
12690
|
|
|
'extent_name' => 'USA - CONUS - onshore', |
|
12691
|
|
|
'help' => '26 tide gauges in the US and Canada. |
|
12692
|
|
|
Normal orthometric heights.', |
|
12693
|
|
|
], |
|
12694
|
|
|
'urn:ogc:def:datum:EPSG::5103' => [ |
|
12695
|
|
|
'name' => 'North American Vertical Datum 1988', |
|
12696
|
|
|
'type' => 'vertical', |
|
12697
|
|
|
'ellipsoid' => null, |
|
12698
|
|
|
'prime_meridian' => null, |
|
12699
|
|
|
'conventional_rs' => null, |
|
12700
|
|
|
'frame_reference_epoch' => null, |
|
12701
|
|
|
'anchor_epoch' => null, |
|
12702
|
|
|
'extent_name' => 'North America - Mexico and USA - onshore', |
|
12703
|
|
|
'help' => 'Mean water level 1970-1983 at Pointe-au-Père (Father\'s Point) and 1984-1988 at Rimouski, Quebec. Benchmark 1250-G = 6.273m. |
|
12704
|
|
|
Helmert orthometric heights.', |
|
12705
|
|
|
], |
|
12706
|
|
|
'urn:ogc:def:datum:EPSG::5104' => [ |
|
12707
|
|
|
'name' => 'Yellow Sea 1956', |
|
12708
|
|
|
'type' => 'vertical', |
|
12709
|
|
|
'ellipsoid' => null, |
|
12710
|
|
|
'prime_meridian' => null, |
|
12711
|
|
|
'conventional_rs' => null, |
|
12712
|
|
|
'frame_reference_epoch' => null, |
|
12713
|
|
|
'anchor_epoch' => null, |
|
12714
|
|
|
'extent_name' => 'China - onshore', |
|
12715
|
|
|
'help' => '2 years tide readings at Qingdao. |
|
12716
|
|
|
Replaced by Yellow Sea 1985 datum.', |
|
12717
|
|
|
], |
|
12718
|
|
|
'urn:ogc:def:datum:EPSG::5105' => [ |
|
12719
|
|
|
'name' => 'Baltic 1977', |
|
12720
|
|
|
'type' => 'vertical', |
|
12721
|
|
|
'ellipsoid' => null, |
|
12722
|
|
|
'prime_meridian' => null, |
|
12723
|
|
|
'conventional_rs' => null, |
|
12724
|
|
|
'frame_reference_epoch' => null, |
|
12725
|
|
|
'anchor_epoch' => null, |
|
12726
|
|
|
'extent_name' => 'Europe - FSU onshore', |
|
12727
|
|
|
'help' => 'Datum: average water level at Kronstadt 1833. Network adjusted in 1974-78 as Uniform Precise Leveling Network of Eastern Europe (EPNN). |
|
12728
|
|
|
Uses Normal heights. Adjustment also included former Czechoslovakia but was not adopted there, the 1957 adjustment being retained instead.', |
|
12729
|
|
|
], |
|
12730
|
|
|
'urn:ogc:def:datum:EPSG::5106' => [ |
|
12731
|
|
|
'name' => 'Caspian Sea', |
|
12732
|
|
|
'type' => 'vertical', |
|
12733
|
|
|
'ellipsoid' => null, |
|
12734
|
|
|
'prime_meridian' => null, |
|
12735
|
|
|
'conventional_rs' => null, |
|
12736
|
|
|
'frame_reference_epoch' => null, |
|
12737
|
|
|
'anchor_epoch' => null, |
|
12738
|
|
|
'extent_name' => 'Asia - FSU - Caspian Sea', |
|
12739
|
|
|
'help' => 'Defined as -28.0m Baltic datum |
|
12740
|
|
|
', |
|
12741
|
|
|
], |
|
12742
|
|
|
'urn:ogc:def:datum:EPSG::5109' => [ |
|
12743
|
|
|
'name' => 'Normaal Amsterdams Peil', |
|
12744
|
|
|
'type' => 'vertical', |
|
12745
|
|
|
'ellipsoid' => null, |
|
12746
|
|
|
'prime_meridian' => null, |
|
12747
|
|
|
'conventional_rs' => null, |
|
12748
|
|
|
'frame_reference_epoch' => null, |
|
12749
|
|
|
'anchor_epoch' => null, |
|
12750
|
|
|
'extent_name' => 'Netherlands', |
|
12751
|
|
|
'help' => 'Mean high tide at Amsterdam in 1684. Onshore NAP is defined by the published heights of benchmarks and since 2018 extended offshore defined by the application of the official transformation from ETRS89, RDNAPTRANS(TM). |
|
12752
|
|
|
Orthometric heights. From 2018, use has been extended from Netherlands onshore to Netherlands onshore and offshore.', |
|
12753
|
|
|
], |
|
12754
|
|
|
'urn:ogc:def:datum:EPSG::5110' => [ |
|
12755
|
|
|
'name' => 'Ostend', |
|
12756
|
|
|
'type' => 'vertical', |
|
12757
|
|
|
'ellipsoid' => null, |
|
12758
|
|
|
'prime_meridian' => null, |
|
12759
|
|
|
'conventional_rs' => null, |
|
12760
|
|
|
'frame_reference_epoch' => null, |
|
12761
|
|
|
'anchor_epoch' => null, |
|
12762
|
|
|
'extent_name' => 'Belgium - onshore', |
|
12763
|
|
|
'help' => 'Mean low water at Ostend 1855-78 transferred to benchmark GIKMN at Uccle. |
|
12764
|
|
|
Realized through the second general levelling (DNG or TAW) 1981-1999.', |
|
12765
|
|
|
], |
|
12766
|
|
|
'urn:ogc:def:datum:EPSG::5111' => [ |
|
12767
|
|
|
'name' => 'Australian Height Datum', |
|
12768
|
|
|
'type' => 'vertical', |
|
12769
|
|
|
'ellipsoid' => null, |
|
12770
|
|
|
'prime_meridian' => null, |
|
12771
|
|
|
'conventional_rs' => null, |
|
12772
|
|
|
'frame_reference_epoch' => null, |
|
12773
|
|
|
'anchor_epoch' => null, |
|
12774
|
|
|
'extent_name' => 'Australia Christmas and Cocos - onshore', |
|
12775
|
|
|
'help' => 'Mainland: MSL 1966-68 at 30 gauges around coast. Tasmania: MSL 1972 at Hobart and Burnie. Christmas Island: MSL (details unspecified). Cocos and Keeling Islands: MSL (details unspecified). |
|
12776
|
|
|
Normal-orthometric heights. Initially defined for mainland only, with independent height datums for Australian mainland, Tasmania, Christmas Island and Cocos and Keeling Islands. With introduction of AUSGeoid2020 in 2017, all considered to be AHD.', |
|
12777
|
|
|
], |
|
12778
|
|
|
'urn:ogc:def:datum:EPSG::5112' => [ |
|
12779
|
|
|
'name' => 'Australian Height Datum (Tasmania)', |
|
12780
|
|
|
'type' => 'vertical', |
|
12781
|
|
|
'ellipsoid' => null, |
|
12782
|
|
|
'prime_meridian' => null, |
|
12783
|
|
|
'conventional_rs' => null, |
|
12784
|
|
|
'frame_reference_epoch' => null, |
|
12785
|
|
|
'anchor_epoch' => null, |
|
12786
|
|
|
'extent_name' => 'Australia - Tasmania mainland onshore', |
|
12787
|
|
|
'help' => 'MSL 1972 at Hobart and Burnie. |
|
12788
|
|
|
', |
|
12789
|
|
|
], |
|
12790
|
|
|
'urn:ogc:def:datum:EPSG::5113' => [ |
|
12791
|
|
|
'name' => 'Instantaneous Water Level', |
|
12792
|
|
|
'type' => 'vertical', |
|
12793
|
|
|
'ellipsoid' => null, |
|
12794
|
|
|
'prime_meridian' => null, |
|
12795
|
|
|
'conventional_rs' => null, |
|
12796
|
|
|
'frame_reference_epoch' => null, |
|
12797
|
|
|
'anchor_epoch' => null, |
|
12798
|
|
|
'extent_name' => 'World', |
|
12799
|
|
|
'help' => 'Instantaneous water level uncorrected for tide. |
|
12800
|
|
|
Not specific to any location or epoch.', |
|
12801
|
|
|
], |
|
12802
|
|
|
'urn:ogc:def:datum:EPSG::5114' => [ |
|
12803
|
|
|
'name' => 'Canadian Geodetic Vertical Datum of 1928', |
|
12804
|
|
|
'type' => 'vertical', |
|
12805
|
|
|
'ellipsoid' => null, |
|
12806
|
|
|
'prime_meridian' => null, |
|
12807
|
|
|
'conventional_rs' => null, |
|
12808
|
|
|
'frame_reference_epoch' => null, |
|
12809
|
|
|
'anchor_epoch' => null, |
|
12810
|
|
|
'extent_name' => 'Canada - CGVD28', |
|
12811
|
|
|
'help' => 'Based on the mean sea level determined from several tidal gauges located in strategic areas of the country. |
|
12812
|
|
|
Supplemented by CGVD28(HTv2.0) (datum code 1384) outside area where levelling network exists. From November 2013 replaced by CGVD2013 (datum code 1127).', |
|
12813
|
|
|
], |
|
12814
|
|
|
'urn:ogc:def:datum:EPSG::5115' => [ |
|
12815
|
|
|
'name' => 'Piraeus Harbour 1986', |
|
12816
|
|
|
'type' => 'vertical', |
|
12817
|
|
|
'ellipsoid' => null, |
|
12818
|
|
|
'prime_meridian' => null, |
|
12819
|
|
|
'conventional_rs' => null, |
|
12820
|
|
|
'frame_reference_epoch' => null, |
|
12821
|
|
|
'anchor_epoch' => null, |
|
12822
|
|
|
'extent_name' => 'Greece - onshore', |
|
12823
|
|
|
'help' => 'MSL determined during 1986. |
|
12824
|
|
|
', |
|
12825
|
|
|
], |
|
12826
|
|
|
'urn:ogc:def:datum:EPSG::5116' => [ |
|
12827
|
|
|
'name' => 'Helsinki 1960', |
|
12828
|
|
|
'type' => 'vertical', |
|
12829
|
|
|
'ellipsoid' => null, |
|
12830
|
|
|
'prime_meridian' => null, |
|
12831
|
|
|
'conventional_rs' => null, |
|
12832
|
|
|
'frame_reference_epoch' => null, |
|
12833
|
|
|
'anchor_epoch' => null, |
|
12834
|
|
|
'extent_name' => 'Finland - onshore', |
|
12835
|
|
|
'help' => 'MSL at Helsinki during 1960. |
|
12836
|
|
|
Uses orthometric heights. Replaced by N2000 (datum code 1030).', |
|
12837
|
|
|
], |
|
12838
|
|
|
'urn:ogc:def:datum:EPSG::5117' => [ |
|
12839
|
|
|
'name' => 'Rikets hojdsystem 1970', |
|
12840
|
|
|
'type' => 'vertical', |
|
12841
|
|
|
'ellipsoid' => null, |
|
12842
|
|
|
'prime_meridian' => null, |
|
12843
|
|
|
'conventional_rs' => null, |
|
12844
|
|
|
'frame_reference_epoch' => null, |
|
12845
|
|
|
'anchor_epoch' => null, |
|
12846
|
|
|
'extent_name' => 'Sweden - onshore', |
|
12847
|
|
|
'help' => 'Adjustment is referenced to mean high tide at Amsterdams Peil in 1684. To account for land level movements caused by isostatic rebound, heights are reduced to epoch 1970.0 using uplift values computed from repeated levelling observations. |
|
12848
|
|
|
Realized through the second precise levelling network of 1951-1967. Uses Normal heights. Replaces RH00. Replaced in 2005 by RH2000.', |
|
12849
|
|
|
], |
|
12850
|
|
|
'urn:ogc:def:datum:EPSG::5118' => [ |
|
12851
|
|
|
'name' => 'Nivellement General de la France - Lallemand', |
|
12852
|
|
|
'type' => 'vertical', |
|
12853
|
|
|
'ellipsoid' => null, |
|
12854
|
|
|
'prime_meridian' => null, |
|
12855
|
|
|
'conventional_rs' => null, |
|
12856
|
|
|
'frame_reference_epoch' => null, |
|
12857
|
|
|
'anchor_epoch' => null, |
|
12858
|
|
|
'extent_name' => 'France - mainland onshore', |
|
12859
|
|
|
'help' => 'Rivet number M.ac O-VIII on the Marseille tide gauge site, with the height fixed in 1897 at 1.661 metre above mean sea level between February 2nd 1885 and January 1st 1897. |
|
12860
|
|
|
Orthometric heights.', |
|
12861
|
|
|
], |
|
12862
|
|
|
'urn:ogc:def:datum:EPSG::5119' => [ |
|
12863
|
|
|
'name' => 'Nivellement General de la France - IGN69', |
|
12864
|
|
|
'type' => 'vertical', |
|
12865
|
|
|
'ellipsoid' => null, |
|
12866
|
|
|
'prime_meridian' => null, |
|
12867
|
|
|
'conventional_rs' => null, |
|
12868
|
|
|
'frame_reference_epoch' => null, |
|
12869
|
|
|
'anchor_epoch' => null, |
|
12870
|
|
|
'extent_name' => 'France - mainland onshore', |
|
12871
|
|
|
'help' => 'Rivet number M.ac O-VIII on the Marseille tide gauge site, with the height fixed in 1897 at 1.661 metre above mean sea level between February 2nd 1885 and January 1st 1897. |
|
12872
|
|
|
Uses Normal heights.', |
|
12873
|
|
|
], |
|
12874
|
|
|
'urn:ogc:def:datum:EPSG::5120' => [ |
|
12875
|
|
|
'name' => 'Nivellement General de la France - IGN78', |
|
12876
|
|
|
'type' => 'vertical', |
|
12877
|
|
|
'ellipsoid' => null, |
|
12878
|
|
|
'prime_meridian' => null, |
|
12879
|
|
|
'conventional_rs' => null, |
|
12880
|
|
|
'frame_reference_epoch' => null, |
|
12881
|
|
|
'anchor_epoch' => null, |
|
12882
|
|
|
'extent_name' => 'France - Corsica onshore', |
|
12883
|
|
|
'help' => 'Marker MM3 situated on the tide gauge site of Ajaccio. Height is 3.640 metre above mean sea level. |
|
12884
|
|
|
Uses Normal heights. Replaces NGC (datum code 5189).', |
|
12885
|
|
|
], |
|
12886
|
|
|
'urn:ogc:def:datum:EPSG::5121' => [ |
|
12887
|
|
|
'name' => 'Maputo', |
|
12888
|
|
|
'type' => 'vertical', |
|
12889
|
|
|
'ellipsoid' => null, |
|
12890
|
|
|
'prime_meridian' => null, |
|
12891
|
|
|
'conventional_rs' => null, |
|
12892
|
|
|
'frame_reference_epoch' => null, |
|
12893
|
|
|
'anchor_epoch' => null, |
|
12894
|
|
|
'extent_name' => 'Mozambique - onshore', |
|
12895
|
|
|
'help' => 'Mean sea level at Maputo. |
|
12896
|
|
|
', |
|
12897
|
|
|
], |
|
12898
|
|
|
'urn:ogc:def:datum:EPSG::5122' => [ |
|
12899
|
|
|
'name' => 'Japanese Standard Levelling Datum 1969', |
|
12900
|
|
|
'type' => 'vertical', |
|
12901
|
|
|
'ellipsoid' => null, |
|
12902
|
|
|
'prime_meridian' => null, |
|
12903
|
|
|
'conventional_rs' => null, |
|
12904
|
|
|
'frame_reference_epoch' => null, |
|
12905
|
|
|
'anchor_epoch' => null, |
|
12906
|
|
|
'extent_name' => 'Japan - onshore - Honshu, Shikoku, Kyushu', |
|
12907
|
|
|
'help' => '24.4140 metres above mean sea level Tokyo Bay. |
|
12908
|
|
|
Normal-orthometric heights. Replaces JSLD49. Replaced by JGD2000 (vertical) (datum code 1130) from April 2002.', |
|
12909
|
|
|
], |
|
12910
|
|
|
'urn:ogc:def:datum:EPSG::5123' => [ |
|
12911
|
|
|
'name' => 'PDO Height Datum 1993', |
|
12912
|
|
|
'type' => 'vertical', |
|
12913
|
|
|
'ellipsoid' => null, |
|
12914
|
|
|
'prime_meridian' => null, |
|
12915
|
|
|
'conventional_rs' => null, |
|
12916
|
|
|
'frame_reference_epoch' => null, |
|
12917
|
|
|
'anchor_epoch' => null, |
|
12918
|
|
|
'extent_name' => 'Oman - onshore', |
|
12919
|
|
|
'help' => ' |
|
12920
|
|
|
Misclosure between Muscat and Salalah less than .5 meters with differences from of up to 5 meters from old Fahud Datum. The PHD93 adjustment was initially known as the Spine. Replaces Fahud Vertical Datum (code 5124) from 1993.', |
|
12921
|
|
|
], |
|
12922
|
|
|
'urn:ogc:def:datum:EPSG::5124' => [ |
|
12923
|
|
|
'name' => 'Fahud Height Datum', |
|
12924
|
|
|
'type' => 'vertical', |
|
12925
|
|
|
'ellipsoid' => null, |
|
12926
|
|
|
'prime_meridian' => null, |
|
12927
|
|
|
'conventional_rs' => null, |
|
12928
|
|
|
'frame_reference_epoch' => null, |
|
12929
|
|
|
'anchor_epoch' => null, |
|
12930
|
|
|
'extent_name' => 'Oman - mainland', |
|
12931
|
|
|
'help' => 'Single MSL determination at Mina Al Fahal. |
|
12932
|
|
|
Based on reciprocal trigonometric heighting. Replaced by PHD93 Datum (code 5123) in 1993.', |
|
12933
|
|
|
], |
|
12934
|
|
|
'urn:ogc:def:datum:EPSG::5125' => [ |
|
12935
|
|
|
'name' => 'Ha Tien 1960', |
|
12936
|
|
|
'type' => 'vertical', |
|
12937
|
|
|
'ellipsoid' => null, |
|
12938
|
|
|
'prime_meridian' => null, |
|
12939
|
|
|
'conventional_rs' => null, |
|
12940
|
|
|
'frame_reference_epoch' => null, |
|
12941
|
|
|
'anchor_epoch' => null, |
|
12942
|
|
|
'extent_name' => 'Asia - Cambodia and Vietnam - mainland', |
|
12943
|
|
|
'help' => ' |
|
12944
|
|
|
In Vietnam replaced by Hon Dau in 1992.', |
|
12945
|
|
|
], |
|
12946
|
|
|
'urn:ogc:def:datum:EPSG::5126' => [ |
|
12947
|
|
|
'name' => 'Hon Dau 1992', |
|
12948
|
|
|
'type' => 'vertical', |
|
12949
|
|
|
'ellipsoid' => null, |
|
12950
|
|
|
'prime_meridian' => null, |
|
12951
|
|
|
'conventional_rs' => null, |
|
12952
|
|
|
'frame_reference_epoch' => null, |
|
12953
|
|
|
'anchor_epoch' => null, |
|
12954
|
|
|
'extent_name' => 'Vietnam - mainland', |
|
12955
|
|
|
'help' => ' |
|
12956
|
|
|
Replaces Ha Tien in Vietnam.', |
|
12957
|
|
|
], |
|
12958
|
|
|
'urn:ogc:def:datum:EPSG::5127' => [ |
|
12959
|
|
|
'name' => 'Landesnivellement 1902', |
|
12960
|
|
|
'type' => 'vertical', |
|
12961
|
|
|
'ellipsoid' => null, |
|
12962
|
|
|
'prime_meridian' => null, |
|
12963
|
|
|
'conventional_rs' => null, |
|
12964
|
|
|
'frame_reference_epoch' => null, |
|
12965
|
|
|
'anchor_epoch' => null, |
|
12966
|
|
|
'extent_name' => 'Europe - Liechtenstein and Switzerland', |
|
12967
|
|
|
'help' => 'Origin at Repere Pierre du Niton (RPN) defined as 373.6 metres above msl. This value derived from msl at Marseille in 1897 through the French Lallemand network. |
|
12968
|
|
|
Levelling observations not corrected for gravity field. For scientific purposes, replaced by LHHN95.', |
|
12969
|
|
|
], |
|
12970
|
|
|
'urn:ogc:def:datum:EPSG::5128' => [ |
|
12971
|
|
|
'name' => 'Landeshohennetz 1995', |
|
12972
|
|
|
'type' => 'vertical', |
|
12973
|
|
|
'ellipsoid' => null, |
|
12974
|
|
|
'prime_meridian' => null, |
|
12975
|
|
|
'conventional_rs' => null, |
|
12976
|
|
|
'frame_reference_epoch' => null, |
|
12977
|
|
|
'anchor_epoch' => null, |
|
12978
|
|
|
'extent_name' => 'Europe - Liechtenstein and Switzerland', |
|
12979
|
|
|
'help' => 'Origin at Repere Pierre du Niton (RPN) defined as 373.6 metres above msl. This value derived from msl at Marseille in 1897 through the French Lallemand network. |
|
12980
|
|
|
Orthometric heights. For scientific purposes only, replaces LN02.', |
|
12981
|
|
|
], |
|
12982
|
|
|
'urn:ogc:def:datum:EPSG::5129' => [ |
|
12983
|
|
|
'name' => 'European Vertical Reference Frame 2000', |
|
12984
|
|
|
'type' => 'vertical', |
|
12985
|
|
|
'ellipsoid' => null, |
|
12986
|
|
|
'prime_meridian' => null, |
|
12987
|
|
|
'conventional_rs' => null, |
|
12988
|
|
|
'frame_reference_epoch' => null, |
|
12989
|
|
|
'anchor_epoch' => null, |
|
12990
|
|
|
'extent_name' => 'Europe - EVRF2000', |
|
12991
|
|
|
'help' => 'Height at Normaal Amsterdams Peil (NAP) is zero, defined through height at UELN bench mark 13600 (52°22\'53"N 4°54\'34"E) of 0.71599m. Datum at NAP is mean high tide in 1684. |
|
12992
|
|
|
Realized by geopotential numbers and Normal heights of the United European Levelling Network. Replaced by EVRF2007 (datum code 5215).', |
|
12993
|
|
|
], |
|
12994
|
|
|
'urn:ogc:def:datum:EPSG::5130' => [ |
|
12995
|
|
|
'name' => 'Malin Head', |
|
12996
|
|
|
'type' => 'vertical', |
|
12997
|
|
|
'ellipsoid' => null, |
|
12998
|
|
|
'prime_meridian' => null, |
|
12999
|
|
|
'conventional_rs' => 1026, |
|
13000
|
|
|
'frame_reference_epoch' => null, |
|
13001
|
|
|
'anchor_epoch' => null, |
|
13002
|
|
|
'extent_name' => 'Europe - Ireland (Republic and Ulster) - onshore', |
|
13003
|
|
|
'help' => 'Mean sea level between January 1960 and December 1969. Initially realised through levelling network adjustment, from 2002 redefined to be realised through OSGM geoid model. |
|
13004
|
|
|
Orthometric heights.', |
|
13005
|
|
|
], |
|
13006
|
|
|
'urn:ogc:def:datum:EPSG::5131' => [ |
|
13007
|
|
|
'name' => 'Belfast Lough', |
|
13008
|
|
|
'type' => 'vertical', |
|
13009
|
|
|
'ellipsoid' => null, |
|
13010
|
|
|
'prime_meridian' => null, |
|
13011
|
|
|
'conventional_rs' => 1026, |
|
13012
|
|
|
'frame_reference_epoch' => null, |
|
13013
|
|
|
'anchor_epoch' => null, |
|
13014
|
|
|
'extent_name' => 'UK - Northern Ireland - onshore', |
|
13015
|
|
|
'help' => 'Mean sea level between 1951 and 1956 at Clarendon Dock, Belfast. Initially realised through levelling network adjustment, from 2002 redefined to be realised through OSGM geoid model. |
|
13016
|
|
|
Orthometric heights. Malin Head (datum code 5130) used for 1:50,000 and smaller mapping.', |
|
13017
|
|
|
], |
|
13018
|
|
|
'urn:ogc:def:datum:EPSG::5132' => [ |
|
13019
|
|
|
'name' => 'Dansk Normal Nul', |
|
13020
|
|
|
'type' => 'vertical', |
|
13021
|
|
|
'ellipsoid' => null, |
|
13022
|
|
|
'prime_meridian' => null, |
|
13023
|
|
|
'conventional_rs' => null, |
|
13024
|
|
|
'frame_reference_epoch' => null, |
|
13025
|
|
|
'anchor_epoch' => null, |
|
13026
|
|
|
'extent_name' => 'Denmark - onshore', |
|
13027
|
|
|
'help' => 'Mean Sea Level at 10 gauges. |
|
13028
|
|
|
Orthometric heights.', |
|
13029
|
|
|
], |
|
13030
|
|
|
'urn:ogc:def:datum:EPSG::5133' => [ |
|
13031
|
|
|
'name' => 'AIOC 1995', |
|
13032
|
|
|
'type' => 'vertical', |
|
13033
|
|
|
'ellipsoid' => null, |
|
13034
|
|
|
'prime_meridian' => null, |
|
13035
|
|
|
'conventional_rs' => null, |
|
13036
|
|
|
'frame_reference_epoch' => null, |
|
13037
|
|
|
'anchor_epoch' => null, |
|
13038
|
|
|
'extent_name' => 'Azerbaijan - offshore and Sangachal', |
|
13039
|
|
|
'help' => 'Average level of Caspian Sea at the Oil Rocks tide gauge June-September 1995. |
|
13040
|
|
|
AIOC 1995 datum is 1.7m above Caspian datum and 26.3m below Baltic datum.', |
|
13041
|
|
|
], |
|
13042
|
|
|
'urn:ogc:def:datum:EPSG::5134' => [ |
|
13043
|
|
|
'name' => 'Black Sea', |
|
13044
|
|
|
'type' => 'vertical', |
|
13045
|
|
|
'ellipsoid' => null, |
|
13046
|
|
|
'prime_meridian' => null, |
|
13047
|
|
|
'conventional_rs' => null, |
|
13048
|
|
|
'frame_reference_epoch' => null, |
|
13049
|
|
|
'anchor_epoch' => null, |
|
13050
|
|
|
'extent_name' => 'Georgia', |
|
13051
|
|
|
'help' => ' |
|
13052
|
|
|
Black Sea datum is 0.4m below Baltic datum.', |
|
13053
|
|
|
], |
|
13054
|
|
|
'urn:ogc:def:datum:EPSG::5135' => [ |
|
13055
|
|
|
'name' => 'Hong Kong Principal Datum', |
|
13056
|
|
|
'type' => 'vertical', |
|
13057
|
|
|
'ellipsoid' => null, |
|
13058
|
|
|
'prime_meridian' => null, |
|
13059
|
|
|
'conventional_rs' => null, |
|
13060
|
|
|
'frame_reference_epoch' => null, |
|
13061
|
|
|
'anchor_epoch' => null, |
|
13062
|
|
|
'extent_name' => 'China - Hong Kong - onshore', |
|
13063
|
|
|
'help' => '1.23m below the mean of 19 years (1965-83) observations of tide levels at North Point, Victoria Harbour. |
|
13064
|
|
|
', |
|
13065
|
|
|
], |
|
13066
|
|
|
'urn:ogc:def:datum:EPSG::5136' => [ |
|
13067
|
|
|
'name' => 'Hong Kong Chart Datum', |
|
13068
|
|
|
'type' => 'vertical', |
|
13069
|
|
|
'ellipsoid' => null, |
|
13070
|
|
|
'prime_meridian' => null, |
|
13071
|
|
|
'conventional_rs' => null, |
|
13072
|
|
|
'frame_reference_epoch' => null, |
|
13073
|
|
|
'anchor_epoch' => null, |
|
13074
|
|
|
'extent_name' => 'China - Hong Kong - offshore', |
|
13075
|
|
|
'help' => 'Approximates to Lowest Astronomic Tide level (LAT). |
|
13076
|
|
|
Chart datum is 0.15 metres below Hong Kong Principal Datum (code 5135) and 1.38m below MSL at Quarry Bay.', |
|
13077
|
|
|
], |
|
13078
|
|
|
'urn:ogc:def:datum:EPSG::5137' => [ |
|
13079
|
|
|
'name' => 'Yellow Sea 1985', |
|
13080
|
|
|
'type' => 'vertical', |
|
13081
|
|
|
'ellipsoid' => null, |
|
13082
|
|
|
'prime_meridian' => null, |
|
13083
|
|
|
'conventional_rs' => null, |
|
13084
|
|
|
'frame_reference_epoch' => null, |
|
13085
|
|
|
'anchor_epoch' => null, |
|
13086
|
|
|
'extent_name' => 'China - onshore', |
|
13087
|
|
|
'help' => '20 years tide readings at Qingdao. |
|
13088
|
|
|
Replaces Yellow Sea 1956 datum.', |
|
13089
|
|
|
], |
|
13090
|
|
|
'urn:ogc:def:datum:EPSG::5138' => [ |
|
13091
|
|
|
'name' => 'Ordnance Datum Newlyn (Orkney Isles)', |
|
13092
|
|
|
'type' => 'vertical', |
|
13093
|
|
|
'ellipsoid' => null, |
|
13094
|
|
|
'prime_meridian' => null, |
|
13095
|
|
|
'conventional_rs' => 1026, |
|
13096
|
|
|
'frame_reference_epoch' => null, |
|
13097
|
|
|
'anchor_epoch' => null, |
|
13098
|
|
|
'extent_name' => 'UK - Orkney Islands onshore', |
|
13099
|
|
|
'help' => 'Connected to Newlyn datum by triangulation from the British mainland. Initially realised through levelling network adjustment, from 2002 redefined to be realised through OSGM geoid model. |
|
13100
|
|
|
Considered as separate from Newlyn because the accuracy of the trigonometric connection across the Pentland Firth does not meet geodetic levelling specifications. Orthometric heights.', |
|
13101
|
|
|
], |
|
13102
|
|
|
'urn:ogc:def:datum:EPSG::5139' => [ |
|
13103
|
|
|
'name' => 'Fair Isle', |
|
13104
|
|
|
'type' => 'vertical', |
|
13105
|
|
|
'ellipsoid' => null, |
|
13106
|
|
|
'prime_meridian' => null, |
|
13107
|
|
|
'conventional_rs' => null, |
|
13108
|
|
|
'frame_reference_epoch' => null, |
|
13109
|
|
|
'anchor_epoch' => null, |
|
13110
|
|
|
'extent_name' => 'UK - Fair Isle onshore', |
|
13111
|
|
|
'help' => ' |
|
13112
|
|
|
Orthometric heights.', |
|
13113
|
|
|
], |
|
13114
|
|
|
'urn:ogc:def:datum:EPSG::5140' => [ |
|
13115
|
|
|
'name' => 'Lerwick', |
|
13116
|
|
|
'type' => 'vertical', |
|
13117
|
|
|
'ellipsoid' => null, |
|
13118
|
|
|
'prime_meridian' => null, |
|
13119
|
|
|
'conventional_rs' => 1026, |
|
13120
|
|
|
'frame_reference_epoch' => null, |
|
13121
|
|
|
'anchor_epoch' => null, |
|
13122
|
|
|
'extent_name' => 'UK - Shetland Islands onshore', |
|
13123
|
|
|
'help' => 'Mean Sea Level at Lerwick 1979 correlated to pre-1900. Initially realised through levelling network adjustment, from 2002 redefined to be realised through OSGM geoid model. |
|
13124
|
|
|
Orthometric heights.', |
|
13125
|
|
|
], |
|
13126
|
|
|
'urn:ogc:def:datum:EPSG::5141' => [ |
|
13127
|
|
|
'name' => 'Foula', |
|
13128
|
|
|
'type' => 'vertical', |
|
13129
|
|
|
'ellipsoid' => null, |
|
13130
|
|
|
'prime_meridian' => null, |
|
13131
|
|
|
'conventional_rs' => null, |
|
13132
|
|
|
'frame_reference_epoch' => null, |
|
13133
|
|
|
'anchor_epoch' => null, |
|
13134
|
|
|
'extent_name' => 'UK - Foula onshore', |
|
13135
|
|
|
'help' => ' |
|
13136
|
|
|
Orthometric heights.', |
|
13137
|
|
|
], |
|
13138
|
|
|
'urn:ogc:def:datum:EPSG::5142' => [ |
|
13139
|
|
|
'name' => 'Sule Skerry', |
|
13140
|
|
|
'type' => 'vertical', |
|
13141
|
|
|
'ellipsoid' => null, |
|
13142
|
|
|
'prime_meridian' => null, |
|
13143
|
|
|
'conventional_rs' => null, |
|
13144
|
|
|
'frame_reference_epoch' => null, |
|
13145
|
|
|
'anchor_epoch' => null, |
|
13146
|
|
|
'extent_name' => 'UK - Sule Skerry onshore', |
|
13147
|
|
|
'help' => ' |
|
13148
|
|
|
Orthometric heights.', |
|
13149
|
|
|
], |
|
13150
|
|
|
'urn:ogc:def:datum:EPSG::5143' => [ |
|
13151
|
|
|
'name' => 'North Rona', |
|
13152
|
|
|
'type' => 'vertical', |
|
13153
|
|
|
'ellipsoid' => null, |
|
13154
|
|
|
'prime_meridian' => null, |
|
13155
|
|
|
'conventional_rs' => null, |
|
13156
|
|
|
'frame_reference_epoch' => null, |
|
13157
|
|
|
'anchor_epoch' => null, |
|
13158
|
|
|
'extent_name' => 'UK - North Rona onshore', |
|
13159
|
|
|
'help' => ' |
|
13160
|
|
|
Orthometric heights.', |
|
13161
|
|
|
], |
|
13162
|
|
|
'urn:ogc:def:datum:EPSG::5144' => [ |
|
13163
|
|
|
'name' => 'Stornoway', |
|
13164
|
|
|
'type' => 'vertical', |
|
13165
|
|
|
'ellipsoid' => null, |
|
13166
|
|
|
'prime_meridian' => null, |
|
13167
|
|
|
'conventional_rs' => 1026, |
|
13168
|
|
|
'frame_reference_epoch' => null, |
|
13169
|
|
|
'anchor_epoch' => null, |
|
13170
|
|
|
'extent_name' => 'UK - Outer Hebrides onshore', |
|
13171
|
|
|
'help' => 'Mean Sea Level at Stornoway 1977 correlated to pre-1900. Initially realised through levelling network adjustment, from 2002 redefined to be realised through OSGM geoid model. |
|
13172
|
|
|
Orthometric heights.', |
|
13173
|
|
|
], |
|
13174
|
|
|
'urn:ogc:def:datum:EPSG::5145' => [ |
|
13175
|
|
|
'name' => 'St. Kilda', |
|
13176
|
|
|
'type' => 'vertical', |
|
13177
|
|
|
'ellipsoid' => null, |
|
13178
|
|
|
'prime_meridian' => null, |
|
13179
|
|
|
'conventional_rs' => null, |
|
13180
|
|
|
'frame_reference_epoch' => null, |
|
13181
|
|
|
'anchor_epoch' => null, |
|
13182
|
|
|
'extent_name' => 'UK - St. Kilda onshore', |
|
13183
|
|
|
'help' => ' |
|
13184
|
|
|
Orthometric heights.', |
|
13185
|
|
|
], |
|
13186
|
|
|
'urn:ogc:def:datum:EPSG::5146' => [ |
|
13187
|
|
|
'name' => 'Flannan Isles', |
|
13188
|
|
|
'type' => 'vertical', |
|
13189
|
|
|
'ellipsoid' => null, |
|
13190
|
|
|
'prime_meridian' => null, |
|
13191
|
|
|
'conventional_rs' => null, |
|
13192
|
|
|
'frame_reference_epoch' => null, |
|
13193
|
|
|
'anchor_epoch' => null, |
|
13194
|
|
|
'extent_name' => 'UK - Flannan Isles onshore', |
|
13195
|
|
|
'help' => ' |
|
13196
|
|
|
Orthometric heights.', |
|
13197
|
|
|
], |
|
13198
|
|
|
'urn:ogc:def:datum:EPSG::5147' => [ |
|
13199
|
|
|
'name' => 'St. Marys', |
|
13200
|
|
|
'type' => 'vertical', |
|
13201
|
|
|
'ellipsoid' => null, |
|
13202
|
|
|
'prime_meridian' => null, |
|
13203
|
|
|
'conventional_rs' => 1026, |
|
13204
|
|
|
'frame_reference_epoch' => null, |
|
13205
|
|
|
'anchor_epoch' => null, |
|
13206
|
|
|
'extent_name' => 'UK - Scilly Isles onshore', |
|
13207
|
|
|
'help' => 'Mean Sea Level at St. Marys 1887. Initially realised through levelling network adjustment, from 2002 redefined to be realised through OSGM geoid model. |
|
13208
|
|
|
Orthometric heights.', |
|
13209
|
|
|
], |
|
13210
|
|
|
'urn:ogc:def:datum:EPSG::5148' => [ |
|
13211
|
|
|
'name' => 'Douglas', |
|
13212
|
|
|
'type' => 'vertical', |
|
13213
|
|
|
'ellipsoid' => null, |
|
13214
|
|
|
'prime_meridian' => null, |
|
13215
|
|
|
'conventional_rs' => 1026, |
|
13216
|
|
|
'frame_reference_epoch' => null, |
|
13217
|
|
|
'anchor_epoch' => null, |
|
13218
|
|
|
'extent_name' => 'Isle of Man - onshore', |
|
13219
|
|
|
'help' => 'Mean Sea Level at Douglas 1865. Initially realised through levelling network adjustment, from 2002 redefined to be realised through OSGM geoid model. |
|
13220
|
|
|
Orthometric heights.', |
|
13221
|
|
|
], |
|
13222
|
|
|
'urn:ogc:def:datum:EPSG::5149' => [ |
|
13223
|
|
|
'name' => 'Fao', |
|
13224
|
|
|
'type' => 'vertical', |
|
13225
|
|
|
'ellipsoid' => null, |
|
13226
|
|
|
'prime_meridian' => null, |
|
13227
|
|
|
'conventional_rs' => null, |
|
13228
|
|
|
'frame_reference_epoch' => null, |
|
13229
|
|
|
'anchor_epoch' => null, |
|
13230
|
|
|
'extent_name' => 'Asia - Middle East -SE Iraq and SW Iran', |
|
13231
|
|
|
'help' => ' |
|
13232
|
|
|
Established by Hunting Surveys for IPC. In Iran replaced by Bandar Abbas (code 5150). At time of record creation NIOC data in Ahwaz area still usually referenced to Fao. In Iraq replaced by Fao 1979 (code 1028).', |
|
13233
|
|
|
], |
|
13234
|
|
|
'urn:ogc:def:datum:EPSG::5150' => [ |
|
13235
|
|
|
'name' => 'Bandar Abbas', |
|
13236
|
|
|
'type' => 'vertical', |
|
13237
|
|
|
'ellipsoid' => null, |
|
13238
|
|
|
'prime_meridian' => null, |
|
13239
|
|
|
'conventional_rs' => null, |
|
13240
|
|
|
'frame_reference_epoch' => null, |
|
13241
|
|
|
'anchor_epoch' => null, |
|
13242
|
|
|
'extent_name' => 'Iran - onshore', |
|
13243
|
|
|
'help' => 'Average sea level at Bandar Abbas 1995-2001. |
|
13244
|
|
|
Replaces Fao (datum code 5149) in Iran.', |
|
13245
|
|
|
], |
|
13246
|
|
|
'urn:ogc:def:datum:EPSG::5151' => [ |
|
13247
|
|
|
'name' => 'Nivellement General de Nouvelle Caledonie', |
|
13248
|
|
|
'type' => 'vertical', |
|
13249
|
|
|
'ellipsoid' => null, |
|
13250
|
|
|
'prime_meridian' => null, |
|
13251
|
|
|
'conventional_rs' => null, |
|
13252
|
|
|
'frame_reference_epoch' => null, |
|
13253
|
|
|
'anchor_epoch' => null, |
|
13254
|
|
|
'extent_name' => 'New Caledonia - Grande Terre', |
|
13255
|
|
|
'help' => 'Rivet AB01 established by SHOM (Service Hydrographique de la Marine) in 1937 on the Quai des Volontaires in Noumea. Height i: 1.885 metre above mean sea level. |
|
13256
|
|
|
Orthometric heights.', |
|
13257
|
|
|
], |
|
13258
|
|
|
'urn:ogc:def:datum:EPSG::5152' => [ |
|
13259
|
|
|
'name' => 'Poolbeg', |
|
13260
|
|
|
'type' => 'vertical', |
|
13261
|
|
|
'ellipsoid' => null, |
|
13262
|
|
|
'prime_meridian' => null, |
|
13263
|
|
|
'conventional_rs' => null, |
|
13264
|
|
|
'frame_reference_epoch' => null, |
|
13265
|
|
|
'anchor_epoch' => null, |
|
13266
|
|
|
'extent_name' => 'Europe - Ireland (Republic and Ulster) - onshore', |
|
13267
|
|
|
'help' => 'Low water mark of the spring tide on the 8 April 1837 at Poolbeg Lighthouse, Dublin. |
|
13268
|
|
|
Topographic mapping before 1956 in Northern Ireland and 1970 in the Republic of Ireland. Replaced by Belfast Lough and Malin Head (datum codes 5130-31).', |
|
13269
|
|
|
], |
|
13270
|
|
|
'urn:ogc:def:datum:EPSG::5153' => [ |
|
13271
|
|
|
'name' => 'Nivellement General Guyanais 1977', |
|
13272
|
|
|
'type' => 'vertical', |
|
13273
|
|
|
'ellipsoid' => null, |
|
13274
|
|
|
'prime_meridian' => null, |
|
13275
|
|
|
'conventional_rs' => null, |
|
13276
|
|
|
'frame_reference_epoch' => null, |
|
13277
|
|
|
'anchor_epoch' => null, |
|
13278
|
|
|
'extent_name' => 'French Guiana - onshore', |
|
13279
|
|
|
'help' => 'Mean sea level 1936 at Cayenne. Origin = marker BM35 on stone on St Francois battery, Cayenne, with defined elevation of 1.64m above msl. NGG1977 height 0.00m is 1.96m above sounding datum defined at Cayenne in 1936 by SHM. |
|
13280
|
|
|
Orthometric heights.', |
|
13281
|
|
|
], |
|
13282
|
|
|
'urn:ogc:def:datum:EPSG::5154' => [ |
|
13283
|
|
|
'name' => 'Martinique 1987', |
|
13284
|
|
|
'type' => 'vertical', |
|
13285
|
|
|
'ellipsoid' => null, |
|
13286
|
|
|
'prime_meridian' => null, |
|
13287
|
|
|
'conventional_rs' => null, |
|
13288
|
|
|
'frame_reference_epoch' => null, |
|
13289
|
|
|
'anchor_epoch' => null, |
|
13290
|
|
|
'extent_name' => 'Martinique - onshore', |
|
13291
|
|
|
'help' => 'Mean sea level 1939 at Fort de France. Origin = marker Nbc2 on rebuilt quay wall with defined elevation of 1.38m above msl. Martinique 1987 height 0.00m is 0.56m above SHOM sounding datum. |
|
13292
|
|
|
Orthometric heights. Replaces Martinique 1955 (datum code 5192).', |
|
13293
|
|
|
], |
|
13294
|
|
|
'urn:ogc:def:datum:EPSG::5155' => [ |
|
13295
|
|
|
'name' => 'Guadeloupe 1988', |
|
13296
|
|
|
'type' => 'vertical', |
|
13297
|
|
|
'ellipsoid' => null, |
|
13298
|
|
|
'prime_meridian' => null, |
|
13299
|
|
|
'conventional_rs' => null, |
|
13300
|
|
|
'frame_reference_epoch' => null, |
|
13301
|
|
|
'anchor_epoch' => null, |
|
13302
|
|
|
'extent_name' => 'Guadeloupe - Grande-Terre and Basse-Terre - onshore', |
|
13303
|
|
|
'help' => 'Mean sea level July 1947 to June 1948 at Pointe-Fouillole (Pointe-à-Pitre harbour). Origin = marker GO-7 (formerly AO\'-5) with defined height of 2.67m above msl adopted from 1951 value. Guadeloupe 1988 height 0.00m is 0.46m above 1984 sounding datum. |
|
13304
|
|
|
Orthometric heights. Replaces Guadeloupe 1951 (datum code 5193).', |
|
13305
|
|
|
], |
|
13306
|
|
|
'urn:ogc:def:datum:EPSG::5156' => [ |
|
13307
|
|
|
'name' => 'Reunion 1989', |
|
13308
|
|
|
'type' => 'vertical', |
|
13309
|
|
|
'ellipsoid' => null, |
|
13310
|
|
|
'prime_meridian' => null, |
|
13311
|
|
|
'conventional_rs' => null, |
|
13312
|
|
|
'frame_reference_epoch' => null, |
|
13313
|
|
|
'anchor_epoch' => null, |
|
13314
|
|
|
'extent_name' => 'Reunion - onshore', |
|
13315
|
|
|
'help' => 'Mean sea level during part of November 1949 at port of Saint-Pierre. Origin = marker AB-100 with defined elevation of 13.808m above msl. |
|
13316
|
|
|
Orthometric heights. Replaces Reunion IGN58. Value of marker AB-100 retains height from 1958 adjustment.', |
|
13317
|
|
|
], |
|
13318
|
|
|
'urn:ogc:def:datum:EPSG::5157' => [ |
|
13319
|
|
|
'name' => 'Auckland 1946', |
|
13320
|
|
|
'type' => 'vertical', |
|
13321
|
|
|
'ellipsoid' => null, |
|
13322
|
|
|
'prime_meridian' => null, |
|
13323
|
|
|
'conventional_rs' => null, |
|
13324
|
|
|
'frame_reference_epoch' => null, |
|
13325
|
|
|
'anchor_epoch' => null, |
|
13326
|
|
|
'extent_name' => 'New Zealand - North Island - Auckland vcrs', |
|
13327
|
|
|
'help' => 'MSL at Auckland harbour 1909-1923. |
|
13328
|
|
|
', |
|
13329
|
|
|
], |
|
13330
|
|
|
'urn:ogc:def:datum:EPSG::5158' => [ |
|
13331
|
|
|
'name' => 'Bluff 1955', |
|
13332
|
|
|
'type' => 'vertical', |
|
13333
|
|
|
'ellipsoid' => null, |
|
13334
|
|
|
'prime_meridian' => null, |
|
13335
|
|
|
'conventional_rs' => null, |
|
13336
|
|
|
'frame_reference_epoch' => null, |
|
13337
|
|
|
'anchor_epoch' => null, |
|
13338
|
|
|
'extent_name' => 'New Zealand - South Island - Bluff vcrs', |
|
13339
|
|
|
'help' => 'MSL at Invercargill harbour over 8 years between 1918 and 1934. |
|
13340
|
|
|
', |
|
13341
|
|
|
], |
|
13342
|
|
|
'urn:ogc:def:datum:EPSG::5159' => [ |
|
13343
|
|
|
'name' => 'Dunedin 1958', |
|
13344
|
|
|
'type' => 'vertical', |
|
13345
|
|
|
'ellipsoid' => null, |
|
13346
|
|
|
'prime_meridian' => null, |
|
13347
|
|
|
'conventional_rs' => null, |
|
13348
|
|
|
'frame_reference_epoch' => null, |
|
13349
|
|
|
'anchor_epoch' => null, |
|
13350
|
|
|
'extent_name' => 'New Zealand - South Island - Dunedin vcrs', |
|
13351
|
|
|
'help' => 'MSL at Dunedin harbour 1918-1937. |
|
13352
|
|
|
', |
|
13353
|
|
|
], |
|
13354
|
|
|
'urn:ogc:def:datum:EPSG::5160' => [ |
|
13355
|
|
|
'name' => 'Gisborne 1926', |
|
13356
|
|
|
'type' => 'vertical', |
|
13357
|
|
|
'ellipsoid' => null, |
|
13358
|
|
|
'prime_meridian' => null, |
|
13359
|
|
|
'conventional_rs' => null, |
|
13360
|
|
|
'frame_reference_epoch' => null, |
|
13361
|
|
|
'anchor_epoch' => null, |
|
13362
|
|
|
'extent_name' => 'New Zealand - North Island - Gisborne vcrs', |
|
13363
|
|
|
'help' => 'MSL at Gisborne harbour 1926. |
|
13364
|
|
|
', |
|
13365
|
|
|
], |
|
13366
|
|
|
'urn:ogc:def:datum:EPSG::5161' => [ |
|
13367
|
|
|
'name' => 'Lyttelton 1937', |
|
13368
|
|
|
'type' => 'vertical', |
|
13369
|
|
|
'ellipsoid' => null, |
|
13370
|
|
|
'prime_meridian' => null, |
|
13371
|
|
|
'conventional_rs' => null, |
|
13372
|
|
|
'frame_reference_epoch' => null, |
|
13373
|
|
|
'anchor_epoch' => null, |
|
13374
|
|
|
'extent_name' => 'New Zealand - South Island - Lyttleton vcrs', |
|
13375
|
|
|
'help' => 'MSL at Lyttelton harbour over 9 years between 1918 and 1933. |
|
13376
|
|
|
', |
|
13377
|
|
|
], |
|
13378
|
|
|
'urn:ogc:def:datum:EPSG::5162' => [ |
|
13379
|
|
|
'name' => 'Moturiki 1953', |
|
13380
|
|
|
'type' => 'vertical', |
|
13381
|
|
|
'ellipsoid' => null, |
|
13382
|
|
|
'prime_meridian' => null, |
|
13383
|
|
|
'conventional_rs' => null, |
|
13384
|
|
|
'frame_reference_epoch' => null, |
|
13385
|
|
|
'anchor_epoch' => null, |
|
13386
|
|
|
'extent_name' => 'New Zealand - North Island - Moturiki vcrs', |
|
13387
|
|
|
'help' => 'MSL at Moturiki Island February 1949 to December 1952. |
|
13388
|
|
|
', |
|
13389
|
|
|
], |
|
13390
|
|
|
'urn:ogc:def:datum:EPSG::5163' => [ |
|
13391
|
|
|
'name' => 'Napier 1962', |
|
13392
|
|
|
'type' => 'vertical', |
|
13393
|
|
|
'ellipsoid' => null, |
|
13394
|
|
|
'prime_meridian' => null, |
|
13395
|
|
|
'conventional_rs' => null, |
|
13396
|
|
|
'frame_reference_epoch' => null, |
|
13397
|
|
|
'anchor_epoch' => null, |
|
13398
|
|
|
'extent_name' => 'New Zealand - North Island - Hawkes Bay mc Napier vcrs', |
|
13399
|
|
|
'help' => 'MSL at Napier harbour. Period of derivation unknown. |
|
13400
|
|
|
', |
|
13401
|
|
|
], |
|
13402
|
|
|
'urn:ogc:def:datum:EPSG::5164' => [ |
|
13403
|
|
|
'name' => 'Nelson 1955', |
|
13404
|
|
|
'type' => 'vertical', |
|
13405
|
|
|
'ellipsoid' => null, |
|
13406
|
|
|
'prime_meridian' => null, |
|
13407
|
|
|
'conventional_rs' => null, |
|
13408
|
|
|
'frame_reference_epoch' => null, |
|
13409
|
|
|
'anchor_epoch' => null, |
|
13410
|
|
|
'extent_name' => 'New Zealand - South Island - Nelson vcrs', |
|
13411
|
|
|
'help' => 'MSL at Nelson harbour 1939-1942. |
|
13412
|
|
|
', |
|
13413
|
|
|
], |
|
13414
|
|
|
'urn:ogc:def:datum:EPSG::5165' => [ |
|
13415
|
|
|
'name' => 'One Tree Point 1964', |
|
13416
|
|
|
'type' => 'vertical', |
|
13417
|
|
|
'ellipsoid' => null, |
|
13418
|
|
|
'prime_meridian' => null, |
|
13419
|
|
|
'conventional_rs' => null, |
|
13420
|
|
|
'frame_reference_epoch' => null, |
|
13421
|
|
|
'anchor_epoch' => null, |
|
13422
|
|
|
'extent_name' => 'New Zealand - North Island - One Tree vcrs', |
|
13423
|
|
|
'help' => 'MSL at Whangarei harbour 1960-1963. |
|
13424
|
|
|
', |
|
13425
|
|
|
], |
|
13426
|
|
|
'urn:ogc:def:datum:EPSG::5166' => [ |
|
13427
|
|
|
'name' => 'Tararu 1952', |
|
13428
|
|
|
'type' => 'vertical', |
|
13429
|
|
|
'ellipsoid' => null, |
|
13430
|
|
|
'prime_meridian' => null, |
|
13431
|
|
|
'conventional_rs' => null, |
|
13432
|
|
|
'frame_reference_epoch' => null, |
|
13433
|
|
|
'anchor_epoch' => null, |
|
13434
|
|
|
'extent_name' => 'New Zealand - North Island - Tararu vcrs', |
|
13435
|
|
|
'help' => 'MSL at Tararu Point 1922-1923. |
|
13436
|
|
|
', |
|
13437
|
|
|
], |
|
13438
|
|
|
'urn:ogc:def:datum:EPSG::5167' => [ |
|
13439
|
|
|
'name' => 'Taranaki 1970', |
|
13440
|
|
|
'type' => 'vertical', |
|
13441
|
|
|
'ellipsoid' => null, |
|
13442
|
|
|
'prime_meridian' => null, |
|
13443
|
|
|
'conventional_rs' => null, |
|
13444
|
|
|
'frame_reference_epoch' => null, |
|
13445
|
|
|
'anchor_epoch' => null, |
|
13446
|
|
|
'extent_name' => 'New Zealand - North Island - Taranaki vcrs', |
|
13447
|
|
|
'help' => 'MSL at Taranaki harbour 1918-1921. |
|
13448
|
|
|
', |
|
13449
|
|
|
], |
|
13450
|
|
|
'urn:ogc:def:datum:EPSG::5168' => [ |
|
13451
|
|
|
'name' => 'Wellington 1953', |
|
13452
|
|
|
'type' => 'vertical', |
|
13453
|
|
|
'ellipsoid' => null, |
|
13454
|
|
|
'prime_meridian' => null, |
|
13455
|
|
|
'conventional_rs' => null, |
|
13456
|
|
|
'frame_reference_epoch' => null, |
|
13457
|
|
|
'anchor_epoch' => null, |
|
13458
|
|
|
'extent_name' => 'New Zealand - North Island - Wellington vcrs', |
|
13459
|
|
|
'help' => 'MSL at Wellington harbour 1909-1946. |
|
13460
|
|
|
', |
|
13461
|
|
|
], |
|
13462
|
|
|
'urn:ogc:def:datum:EPSG::5169' => [ |
|
13463
|
|
|
'name' => 'Waitangi (Chatham Island) 1959', |
|
13464
|
|
|
'type' => 'vertical', |
|
13465
|
|
|
'ellipsoid' => null, |
|
13466
|
|
|
'prime_meridian' => null, |
|
13467
|
|
|
'conventional_rs' => null, |
|
13468
|
|
|
'frame_reference_epoch' => null, |
|
13469
|
|
|
'anchor_epoch' => null, |
|
13470
|
|
|
'extent_name' => 'New Zealand - Chatham Island onshore', |
|
13471
|
|
|
'help' => 'MSL at Waitangi harbour collected in 1959. |
|
13472
|
|
|
', |
|
13473
|
|
|
], |
|
13474
|
|
|
'urn:ogc:def:datum:EPSG::5170' => [ |
|
13475
|
|
|
'name' => 'Stewart Island 1977', |
|
13476
|
|
|
'type' => 'vertical', |
|
13477
|
|
|
'ellipsoid' => null, |
|
13478
|
|
|
'prime_meridian' => null, |
|
13479
|
|
|
'conventional_rs' => null, |
|
13480
|
|
|
'frame_reference_epoch' => null, |
|
13481
|
|
|
'anchor_epoch' => null, |
|
13482
|
|
|
'extent_name' => 'New Zealand - Stewart Island', |
|
13483
|
|
|
'help' => 'MSL at 3-5 high and low tides at two different locations. |
|
13484
|
|
|
', |
|
13485
|
|
|
], |
|
13486
|
|
|
'urn:ogc:def:datum:EPSG::5171' => [ |
|
13487
|
|
|
'name' => 'EGM96 geoid', |
|
13488
|
|
|
'type' => 'vertical', |
|
13489
|
|
|
'ellipsoid' => null, |
|
13490
|
|
|
'prime_meridian' => null, |
|
13491
|
|
|
'conventional_rs' => null, |
|
13492
|
|
|
'frame_reference_epoch' => null, |
|
13493
|
|
|
'anchor_epoch' => null, |
|
13494
|
|
|
'extent_name' => 'World', |
|
13495
|
|
|
'help' => 'Derived through EGM84 geoid undulation model consisting of spherical harmonic coefficients to degree and order 360 applied to the WGS 84 ellipsoid. |
|
13496
|
|
|
Replaces EGM84 geoid (datum code 5203). Replaced by EGM2008 geoid (datum code 1027).', |
|
13497
|
|
|
], |
|
13498
|
|
|
'urn:ogc:def:datum:EPSG::5172' => [ |
|
13499
|
|
|
'name' => 'Nivellement General du Luxembourg 1995', |
|
13500
|
|
|
'type' => 'vertical', |
|
13501
|
|
|
'ellipsoid' => null, |
|
13502
|
|
|
'prime_meridian' => null, |
|
13503
|
|
|
'conventional_rs' => null, |
|
13504
|
|
|
'frame_reference_epoch' => null, |
|
13505
|
|
|
'anchor_epoch' => null, |
|
13506
|
|
|
'extent_name' => 'Luxembourg', |
|
13507
|
|
|
'help' => 'Reference point Wemperhardt defined as 528.030m above Normaal Amsterdams Peil (NAP). Datum at NAP is mean high tide in 1684. Network adjusted in 1995. |
|
13508
|
|
|
Pseudo-orthometric heights.', |
|
13509
|
|
|
], |
|
13510
|
|
|
'urn:ogc:def:datum:EPSG::5173' => [ |
|
13511
|
|
|
'name' => 'Antalya', |
|
13512
|
|
|
'type' => 'vertical', |
|
13513
|
|
|
'ellipsoid' => null, |
|
13514
|
|
|
'prime_meridian' => null, |
|
13515
|
|
|
'conventional_rs' => null, |
|
13516
|
|
|
'frame_reference_epoch' => null, |
|
13517
|
|
|
'anchor_epoch' => null, |
|
13518
|
|
|
'extent_name' => 'Turkey - onshore', |
|
13519
|
|
|
'help' => 'Mean sea Level at Antalya 1936-71. |
|
13520
|
|
|
Orthometric heights.', |
|
13521
|
|
|
], |
|
13522
|
|
|
'urn:ogc:def:datum:EPSG::5174' => [ |
|
13523
|
|
|
'name' => 'Norway Normal Null 1954', |
|
13524
|
|
|
'type' => 'vertical', |
|
13525
|
|
|
'ellipsoid' => null, |
|
13526
|
|
|
'prime_meridian' => null, |
|
13527
|
|
|
'conventional_rs' => null, |
|
13528
|
|
|
'frame_reference_epoch' => null, |
|
13529
|
|
|
'anchor_epoch' => null, |
|
13530
|
|
|
'extent_name' => 'Norway - onshore', |
|
13531
|
|
|
'help' => 'MSL defined by regression at 7 gauges with between 17 and 67 years observations. |
|
13532
|
|
|
Includes initial NN1954 system and NNN1957 system. Former name retained. Normal-orthometric heights. Replaced by NN2000.', |
|
13533
|
|
|
], |
|
13534
|
|
|
'urn:ogc:def:datum:EPSG::5175' => [ |
|
13535
|
|
|
'name' => 'Durres', |
|
13536
|
|
|
'type' => 'vertical', |
|
13537
|
|
|
'ellipsoid' => null, |
|
13538
|
|
|
'prime_meridian' => null, |
|
13539
|
|
|
'conventional_rs' => null, |
|
13540
|
|
|
'frame_reference_epoch' => null, |
|
13541
|
|
|
'anchor_epoch' => null, |
|
13542
|
|
|
'extent_name' => 'Albania - onshore', |
|
13543
|
|
|
'help' => 'Mean Sea Level at Durres. |
|
13544
|
|
|
Normal-orthometric heights.', |
|
13545
|
|
|
], |
|
13546
|
|
|
'urn:ogc:def:datum:EPSG::5176' => [ |
|
13547
|
|
|
'name' => 'Gebrauchshohen ADRIA', |
|
13548
|
|
|
'type' => 'vertical', |
|
13549
|
|
|
'ellipsoid' => null, |
|
13550
|
|
|
'prime_meridian' => null, |
|
13551
|
|
|
'conventional_rs' => null, |
|
13552
|
|
|
'frame_reference_epoch' => null, |
|
13553
|
|
|
'anchor_epoch' => null, |
|
13554
|
|
|
'extent_name' => 'Austria', |
|
13555
|
|
|
'help' => 'Reference point Hutbiegl defined relative to mean sea level at Trieste in 1875. |
|
13556
|
|
|
Normal-orthometric heights.', |
|
13557
|
|
|
], |
|
13558
|
|
|
'urn:ogc:def:datum:EPSG::5177' => [ |
|
13559
|
|
|
'name' => 'Slovenian Vertical System 2000', |
|
13560
|
|
|
'type' => 'vertical', |
|
13561
|
|
|
'ellipsoid' => null, |
|
13562
|
|
|
'prime_meridian' => null, |
|
13563
|
|
|
'conventional_rs' => null, |
|
13564
|
|
|
'frame_reference_epoch' => null, |
|
13565
|
|
|
'anchor_epoch' => null, |
|
13566
|
|
|
'extent_name' => 'Slovenia - onshore', |
|
13567
|
|
|
'help' => 'Reference point Ruse defined relative to mean sea level at Trieste in 1875. |
|
13568
|
|
|
Normal-orthometric heights. Promulgated through the National Vertical Network adjustment of 1999.', |
|
13569
|
|
|
], |
|
13570
|
|
|
'urn:ogc:def:datum:EPSG::5178' => [ |
|
13571
|
|
|
'name' => 'Cascais', |
|
13572
|
|
|
'type' => 'vertical', |
|
13573
|
|
|
'ellipsoid' => null, |
|
13574
|
|
|
'prime_meridian' => null, |
|
13575
|
|
|
'conventional_rs' => null, |
|
13576
|
|
|
'frame_reference_epoch' => null, |
|
13577
|
|
|
'anchor_epoch' => null, |
|
13578
|
|
|
'extent_name' => 'Portugal - mainland - onshore', |
|
13579
|
|
|
'help' => 'Mean Sea Level at Cascais 1938. |
|
13580
|
|
|
Orthometric heights.', |
|
13581
|
|
|
], |
|
13582
|
|
|
'urn:ogc:def:datum:EPSG::5179' => [ |
|
13583
|
|
|
'name' => 'Constanta', |
|
13584
|
|
|
'type' => 'vertical', |
|
13585
|
|
|
'ellipsoid' => null, |
|
13586
|
|
|
'prime_meridian' => null, |
|
13587
|
|
|
'conventional_rs' => null, |
|
13588
|
|
|
'frame_reference_epoch' => null, |
|
13589
|
|
|
'anchor_epoch' => null, |
|
13590
|
|
|
'extent_name' => 'Romania - onshore', |
|
13591
|
|
|
'help' => 'Mean Sea Level at Constanta. |
|
13592
|
|
|
Normal-orthometric heights.', |
|
13593
|
|
|
], |
|
13594
|
|
|
'urn:ogc:def:datum:EPSG::5180' => [ |
|
13595
|
|
|
'name' => 'Alicante', |
|
13596
|
|
|
'type' => 'vertical', |
|
13597
|
|
|
'ellipsoid' => null, |
|
13598
|
|
|
'prime_meridian' => null, |
|
13599
|
|
|
'conventional_rs' => null, |
|
13600
|
|
|
'frame_reference_epoch' => null, |
|
13601
|
|
|
'anchor_epoch' => null, |
|
13602
|
|
|
'extent_name' => 'Spain and Gibraltar - onshore', |
|
13603
|
|
|
'help' => 'Mean Sea Level at Alicante between 1870 and 1872. |
|
13604
|
|
|
Orthometric heights.', |
|
13605
|
|
|
], |
|
13606
|
|
|
'urn:ogc:def:datum:EPSG::5181' => [ |
|
13607
|
|
|
'name' => 'Deutsches Haupthoehennetz 1992', |
|
13608
|
|
|
'type' => 'vertical', |
|
13609
|
|
|
'ellipsoid' => null, |
|
13610
|
|
|
'prime_meridian' => null, |
|
13611
|
|
|
'conventional_rs' => null, |
|
13612
|
|
|
'frame_reference_epoch' => null, |
|
13613
|
|
|
'anchor_epoch' => null, |
|
13614
|
|
|
'extent_name' => 'Germany - onshore', |
|
13615
|
|
|
'help' => 'Network adjusted in 1992. Geopotential number at reference point Wallenhorst defined as value from the UELN-73/86 adjustment. Datum at Normaal Amsterdams Peil (NAP) is mean high tide in 1684. |
|
13616
|
|
|
Replaces DHHN85 in West Germany and SNN76 in East Germany. Uses Normal heights.', |
|
13617
|
|
|
], |
|
13618
|
|
|
'urn:ogc:def:datum:EPSG::5182' => [ |
|
13619
|
|
|
'name' => 'Deutsches Haupthoehennetz 1985', |
|
13620
|
|
|
'type' => 'vertical', |
|
13621
|
|
|
'ellipsoid' => null, |
|
13622
|
|
|
'prime_meridian' => null, |
|
13623
|
|
|
'conventional_rs' => null, |
|
13624
|
|
|
'frame_reference_epoch' => null, |
|
13625
|
|
|
'anchor_epoch' => null, |
|
13626
|
|
|
'extent_name' => 'Germany - West Germany all states', |
|
13627
|
|
|
'help' => 'Network adjusted in 1985. Height of reference point Wallenhorst defined as value from 1928 adjustment. Datum at Normaal Amsterdams Peil (NAP) is mean high tide in 1684. |
|
13628
|
|
|
Replaced by DHHN92. Uses Normal-orthometric heights.', |
|
13629
|
|
|
], |
|
13630
|
|
|
'urn:ogc:def:datum:EPSG::5183' => [ |
|
13631
|
|
|
'name' => 'Staatlichen Nivellementnetzes 1976', |
|
13632
|
|
|
'type' => 'vertical', |
|
13633
|
|
|
'ellipsoid' => null, |
|
13634
|
|
|
'prime_meridian' => null, |
|
13635
|
|
|
'conventional_rs' => null, |
|
13636
|
|
|
'frame_reference_epoch' => null, |
|
13637
|
|
|
'anchor_epoch' => null, |
|
13638
|
|
|
'extent_name' => 'Germany - East Germany all states', |
|
13639
|
|
|
'help' => 'Network adjusted in 1976. Height at reference point Hoppegarten defined as 1957 value from the UPLN adjustment. Datum at Kronstadt is mean sea level of Baltic in 1833. |
|
13640
|
|
|
Introduced in 1979. Uses Normal heights. Replaced by DHHN92.', |
|
13641
|
|
|
], |
|
13642
|
|
|
'urn:ogc:def:datum:EPSG::5184' => [ |
|
13643
|
|
|
'name' => 'Baltic 1982', |
|
13644
|
|
|
'type' => 'vertical', |
|
13645
|
|
|
'ellipsoid' => null, |
|
13646
|
|
|
'prime_meridian' => null, |
|
13647
|
|
|
'conventional_rs' => null, |
|
13648
|
|
|
'frame_reference_epoch' => null, |
|
13649
|
|
|
'anchor_epoch' => null, |
|
13650
|
|
|
'extent_name' => 'Bulgaria - onshore', |
|
13651
|
|
|
'help' => 'Network adjusted in 1982. Height at reference point Varna defined as 1958 value from the UPLN adjustment. Datum at Kronstadt is mean sea level of Baltic in 1833. |
|
13652
|
|
|
Uses Normal heights.', |
|
13653
|
|
|
], |
|
13654
|
|
|
'urn:ogc:def:datum:EPSG::5185' => [ |
|
13655
|
|
|
'name' => 'Baltic 1980', |
|
13656
|
|
|
'type' => 'vertical', |
|
13657
|
|
|
'ellipsoid' => null, |
|
13658
|
|
|
'prime_meridian' => null, |
|
13659
|
|
|
'conventional_rs' => null, |
|
13660
|
|
|
'frame_reference_epoch' => null, |
|
13661
|
|
|
'anchor_epoch' => null, |
|
13662
|
|
|
'extent_name' => 'Hungary', |
|
13663
|
|
|
'help' => ' |
|
13664
|
|
|
Uses Normal heights.', |
|
13665
|
|
|
], |
|
13666
|
|
|
'urn:ogc:def:datum:EPSG::5186' => [ |
|
13667
|
|
|
'name' => 'Kuwait PWD', |
|
13668
|
|
|
'type' => 'vertical', |
|
13669
|
|
|
'ellipsoid' => null, |
|
13670
|
|
|
'prime_meridian' => null, |
|
13671
|
|
|
'conventional_rs' => null, |
|
13672
|
|
|
'frame_reference_epoch' => null, |
|
13673
|
|
|
'anchor_epoch' => null, |
|
13674
|
|
|
'extent_name' => 'Kuwait - onshore', |
|
13675
|
|
|
'help' => 'Mean Low Low Water (MLLW) at Kuwait City. |
|
13676
|
|
|
Approximately 1.03m below MSL.', |
|
13677
|
|
|
], |
|
13678
|
|
|
'urn:ogc:def:datum:EPSG::5187' => [ |
|
13679
|
|
|
'name' => 'KOC Well Datum', |
|
13680
|
|
|
'type' => 'vertical', |
|
13681
|
|
|
'ellipsoid' => null, |
|
13682
|
|
|
'prime_meridian' => null, |
|
13683
|
|
|
'conventional_rs' => null, |
|
13684
|
|
|
'frame_reference_epoch' => null, |
|
13685
|
|
|
'anchor_epoch' => null, |
|
13686
|
|
|
'extent_name' => 'Kuwait - onshore', |
|
13687
|
|
|
'help' => ' |
|
13688
|
|
|
Approximately 3.22m above MSL.', |
|
13689
|
|
|
], |
|
13690
|
|
|
'urn:ogc:def:datum:EPSG::5188' => [ |
|
13691
|
|
|
'name' => 'KOC Construction Datum', |
|
13692
|
|
|
'type' => 'vertical', |
|
13693
|
|
|
'ellipsoid' => null, |
|
13694
|
|
|
'prime_meridian' => null, |
|
13695
|
|
|
'conventional_rs' => null, |
|
13696
|
|
|
'frame_reference_epoch' => null, |
|
13697
|
|
|
'anchor_epoch' => null, |
|
13698
|
|
|
'extent_name' => 'Kuwait - onshore', |
|
13699
|
|
|
'help' => ' |
|
13700
|
|
|
Approximately 1.52m below MSL. Created for the construction of the Mina al Ahmadi refinery.', |
|
13701
|
|
|
], |
|
13702
|
|
|
'urn:ogc:def:datum:EPSG::5189' => [ |
|
13703
|
|
|
'name' => 'Nivellement General de la Corse 1948', |
|
13704
|
|
|
'type' => 'vertical', |
|
13705
|
|
|
'ellipsoid' => null, |
|
13706
|
|
|
'prime_meridian' => null, |
|
13707
|
|
|
'conventional_rs' => null, |
|
13708
|
|
|
'frame_reference_epoch' => null, |
|
13709
|
|
|
'anchor_epoch' => null, |
|
13710
|
|
|
'extent_name' => 'France - Corsica onshore', |
|
13711
|
|
|
'help' => 'Mean sea level at Ajaccio between 1912 and 1937. |
|
13712
|
|
|
Replaced by IGN78 Corsica (datum 5120).', |
|
13713
|
|
|
], |
|
13714
|
|
|
'urn:ogc:def:datum:EPSG::5190' => [ |
|
13715
|
|
|
'name' => 'Danger 1950', |
|
13716
|
|
|
'type' => 'vertical', |
|
13717
|
|
|
'ellipsoid' => null, |
|
13718
|
|
|
'prime_meridian' => null, |
|
13719
|
|
|
'conventional_rs' => null, |
|
13720
|
|
|
'frame_reference_epoch' => null, |
|
13721
|
|
|
'anchor_epoch' => null, |
|
13722
|
|
|
'extent_name' => 'St Pierre and Miquelon - onshore', |
|
13723
|
|
|
'help' => 'Marker near tide gauge at port of Saint Pierre. Height is 1.26 metres above zero of tide gauge. |
|
13724
|
|
|
', |
|
13725
|
|
|
], |
|
13726
|
|
|
'urn:ogc:def:datum:EPSG::5191' => [ |
|
13727
|
|
|
'name' => 'Mayotte 1950', |
|
13728
|
|
|
'type' => 'vertical', |
|
13729
|
|
|
'ellipsoid' => null, |
|
13730
|
|
|
'prime_meridian' => null, |
|
13731
|
|
|
'conventional_rs' => null, |
|
13732
|
|
|
'frame_reference_epoch' => null, |
|
13733
|
|
|
'anchor_epoch' => null, |
|
13734
|
|
|
'extent_name' => 'Mayotte - onshore', |
|
13735
|
|
|
'help' => 'IGN 1950 marker (height 0.0m) on southwest jetty at Dzaoudzi (Petite-Terre) is 2.18m above zero of tide gauge. SHOM 1953 marker on east (Issoufali) jetty at Dzaoudzi (height 4.74m) is the base for Mayotte heights. |
|
13736
|
|
|
Datum transferred to benchmark RN0 with height of 2.774m above tide gauge on eastern jetty at Mamoudzou (Grand-Terre) in 1979.', |
|
13737
|
|
|
], |
|
13738
|
|
|
'urn:ogc:def:datum:EPSG::5192' => [ |
|
13739
|
|
|
'name' => 'Martinique 1955', |
|
13740
|
|
|
'type' => 'vertical', |
|
13741
|
|
|
'ellipsoid' => null, |
|
13742
|
|
|
'prime_meridian' => null, |
|
13743
|
|
|
'conventional_rs' => null, |
|
13744
|
|
|
'frame_reference_epoch' => null, |
|
13745
|
|
|
'anchor_epoch' => null, |
|
13746
|
|
|
'extent_name' => 'Martinique - onshore', |
|
13747
|
|
|
'help' => 'Mean sea level at Fort de France 1939. Marker DO-4-II on quay wall with elevation of 1.38m above msl. |
|
13748
|
|
|
Orthometric heights. Replaced by Martinique 1987 (datum code 5154).', |
|
13749
|
|
|
], |
|
13750
|
|
|
'urn:ogc:def:datum:EPSG::5193' => [ |
|
13751
|
|
|
'name' => 'Guadeloupe 1951', |
|
13752
|
|
|
'type' => 'vertical', |
|
13753
|
|
|
'ellipsoid' => null, |
|
13754
|
|
|
'prime_meridian' => null, |
|
13755
|
|
|
'conventional_rs' => null, |
|
13756
|
|
|
'frame_reference_epoch' => null, |
|
13757
|
|
|
'anchor_epoch' => null, |
|
13758
|
|
|
'extent_name' => 'Guadeloupe - Grande-Terre and Basse-Terre - onshore', |
|
13759
|
|
|
'help' => 'Mean sea level July 1947 to June 1948 at Pointe-Fouillole (Pointe-à-Pitre harbour). Origin = marker AO\'-12 with height of 1.917m above msl. |
|
13760
|
|
|
Orthometric heights. Replaced by Guadeloupe 1988 (datum code 5155). Guadeloupe 1951 height 0.00m is 0.629m above 1947-48 sounding datum.', |
|
13761
|
|
|
], |
|
13762
|
|
|
'urn:ogc:def:datum:EPSG::5194' => [ |
|
13763
|
|
|
'name' => 'Lagos 1955', |
|
13764
|
|
|
'type' => 'vertical', |
|
13765
|
|
|
'ellipsoid' => null, |
|
13766
|
|
|
'prime_meridian' => null, |
|
13767
|
|
|
'conventional_rs' => null, |
|
13768
|
|
|
'frame_reference_epoch' => null, |
|
13769
|
|
|
'anchor_epoch' => null, |
|
13770
|
|
|
'extent_name' => 'Nigeria - onshore', |
|
13771
|
|
|
'help' => 'Mean sea level at Lagos, 1912-1928. |
|
13772
|
|
|
', |
|
13773
|
|
|
], |
|
13774
|
|
|
'urn:ogc:def:datum:EPSG::5195' => [ |
|
13775
|
|
|
'name' => 'Nivellement General de Polynesie Francaise', |
|
13776
|
|
|
'type' => 'vertical', |
|
13777
|
|
|
'ellipsoid' => null, |
|
13778
|
|
|
'prime_meridian' => null, |
|
13779
|
|
|
'conventional_rs' => null, |
|
13780
|
|
|
'frame_reference_epoch' => null, |
|
13781
|
|
|
'anchor_epoch' => null, |
|
13782
|
|
|
'extent_name' => 'French Polynesia - Society Islands - main islands', |
|
13783
|
|
|
'help' => ' |
|
13784
|
|
|
The collection of heterogeneous levelling networks throughout the Society Islands of French Polynesia.', |
|
13785
|
|
|
], |
|
13786
|
|
|
'urn:ogc:def:datum:EPSG::5196' => [ |
|
13787
|
|
|
'name' => 'IGN 1966', |
|
13788
|
|
|
'type' => 'vertical', |
|
13789
|
|
|
'ellipsoid' => null, |
|
13790
|
|
|
'prime_meridian' => null, |
|
13791
|
|
|
'conventional_rs' => null, |
|
13792
|
|
|
'frame_reference_epoch' => null, |
|
13793
|
|
|
'anchor_epoch' => null, |
|
13794
|
|
|
'extent_name' => 'French Polynesia - Society Islands - Tahiti', |
|
13795
|
|
|
'help' => 'Fundamental benchmark: RN501 |
|
13796
|
|
|
Included as part of NGPF - see datum code 5195.', |
|
13797
|
|
|
], |
|
13798
|
|
|
'urn:ogc:def:datum:EPSG::5197' => [ |
|
13799
|
|
|
'name' => 'Moorea SAU 1981', |
|
13800
|
|
|
'type' => 'vertical', |
|
13801
|
|
|
'ellipsoid' => null, |
|
13802
|
|
|
'prime_meridian' => null, |
|
13803
|
|
|
'conventional_rs' => null, |
|
13804
|
|
|
'frame_reference_epoch' => null, |
|
13805
|
|
|
'anchor_epoch' => null, |
|
13806
|
|
|
'extent_name' => 'French Polynesia - Society Islands - Moorea', |
|
13807
|
|
|
'help' => 'Fundamental benchmark: RN225 |
|
13808
|
|
|
Included as part of NGPF - see datum code 5195.', |
|
13809
|
|
|
], |
|
13810
|
|
|
'urn:ogc:def:datum:EPSG::5198' => [ |
|
13811
|
|
|
'name' => 'Raiatea SAU 2001', |
|
13812
|
|
|
'type' => 'vertical', |
|
13813
|
|
|
'ellipsoid' => null, |
|
13814
|
|
|
'prime_meridian' => null, |
|
13815
|
|
|
'conventional_rs' => null, |
|
13816
|
|
|
'frame_reference_epoch' => null, |
|
13817
|
|
|
'anchor_epoch' => null, |
|
13818
|
|
|
'extent_name' => 'French Polynesia - Society Islands - Raiatea', |
|
13819
|
|
|
'help' => 'Fundamental benchmark: RN1 |
|
13820
|
|
|
Included as part of NGPF - see datum code 5195.', |
|
13821
|
|
|
], |
|
13822
|
|
|
'urn:ogc:def:datum:EPSG::5199' => [ |
|
13823
|
|
|
'name' => 'Maupiti SAU 2001', |
|
13824
|
|
|
'type' => 'vertical', |
|
13825
|
|
|
'ellipsoid' => null, |
|
13826
|
|
|
'prime_meridian' => null, |
|
13827
|
|
|
'conventional_rs' => null, |
|
13828
|
|
|
'frame_reference_epoch' => null, |
|
13829
|
|
|
'anchor_epoch' => null, |
|
13830
|
|
|
'extent_name' => 'French Polynesia - Society Islands - Maupiti', |
|
13831
|
|
|
'help' => 'Fundamental benchmark: RN11 |
|
13832
|
|
|
Included as part of NGPF - see datum code 5195.', |
|
13833
|
|
|
], |
|
13834
|
|
|
'urn:ogc:def:datum:EPSG::5200' => [ |
|
13835
|
|
|
'name' => 'Huahine SAU 2001', |
|
13836
|
|
|
'type' => 'vertical', |
|
13837
|
|
|
'ellipsoid' => null, |
|
13838
|
|
|
'prime_meridian' => null, |
|
13839
|
|
|
'conventional_rs' => null, |
|
13840
|
|
|
'frame_reference_epoch' => null, |
|
13841
|
|
|
'anchor_epoch' => null, |
|
13842
|
|
|
'extent_name' => 'French Polynesia - Society Islands - Huahine', |
|
13843
|
|
|
'help' => 'Fundamental benchmark: SHOM B3 |
|
13844
|
|
|
Included as part of NGPF - see datum code 5195.', |
|
13845
|
|
|
], |
|
13846
|
|
|
'urn:ogc:def:datum:EPSG::5201' => [ |
|
13847
|
|
|
'name' => 'Tahaa SAU 2001', |
|
13848
|
|
|
'type' => 'vertical', |
|
13849
|
|
|
'ellipsoid' => null, |
|
13850
|
|
|
'prime_meridian' => null, |
|
13851
|
|
|
'conventional_rs' => null, |
|
13852
|
|
|
'frame_reference_epoch' => null, |
|
13853
|
|
|
'anchor_epoch' => null, |
|
13854
|
|
|
'extent_name' => 'French Polynesia - Society Islands - Tahaa', |
|
13855
|
|
|
'help' => 'Fundamental benchmark: RN16 |
|
13856
|
|
|
Included as part of NGPF - see datum code 5195.', |
|
13857
|
|
|
], |
|
13858
|
|
|
'urn:ogc:def:datum:EPSG::5202' => [ |
|
13859
|
|
|
'name' => 'Bora Bora SAU 2001', |
|
13860
|
|
|
'type' => 'vertical', |
|
13861
|
|
|
'ellipsoid' => null, |
|
13862
|
|
|
'prime_meridian' => null, |
|
13863
|
|
|
'conventional_rs' => null, |
|
13864
|
|
|
'frame_reference_epoch' => null, |
|
13865
|
|
|
'anchor_epoch' => null, |
|
13866
|
|
|
'extent_name' => 'French Polynesia - Society Islands - Bora Bora', |
|
13867
|
|
|
'help' => 'Fundamental benchmark: Vaitape quay SHOM benchmark B. |
|
13868
|
|
|
Included as part of NGPF - see datum code 5195.', |
|
13869
|
|
|
], |
|
13870
|
|
|
'urn:ogc:def:datum:EPSG::5203' => [ |
|
13871
|
|
|
'name' => 'EGM84 geoid', |
|
13872
|
|
|
'type' => 'vertical', |
|
13873
|
|
|
'ellipsoid' => null, |
|
13874
|
|
|
'prime_meridian' => null, |
|
13875
|
|
|
'conventional_rs' => null, |
|
13876
|
|
|
'frame_reference_epoch' => null, |
|
13877
|
|
|
'anchor_epoch' => null, |
|
13878
|
|
|
'extent_name' => 'World', |
|
13879
|
|
|
'help' => 'Derived through EGM84 geoid undulation model consisting of spherical harmonic coefficients to degree and order 180 applied to the WGS 84 ellipsoid. |
|
13880
|
|
|
Replaced by EGM96 geoid (datum code 5171).', |
|
13881
|
|
|
], |
|
13882
|
|
|
'urn:ogc:def:datum:EPSG::5204' => [ |
|
13883
|
|
|
'name' => 'International Great Lakes Datum 1955', |
|
13884
|
|
|
'type' => 'vertical', |
|
13885
|
|
|
'ellipsoid' => null, |
|
13886
|
|
|
'prime_meridian' => null, |
|
13887
|
|
|
'conventional_rs' => null, |
|
13888
|
|
|
'frame_reference_epoch' => null, |
|
13889
|
|
|
'anchor_epoch' => null, |
|
13890
|
|
|
'extent_name' => 'North America - Great Lakes basin and St Lawrence Seaway', |
|
13891
|
|
|
'help' => 'Mean water level 1941-1956 at Pointe-au-Père (Father\'s Point), Quebec. Benchmark 1248-G = 3.794m. |
|
13892
|
|
|
Dynamic heights. Adopted in 1962. Replaced by IGLD 1985 in January 1992.', |
|
13893
|
|
|
], |
|
13894
|
|
|
'urn:ogc:def:datum:EPSG::5205' => [ |
|
13895
|
|
|
'name' => 'International Great Lakes Datum 1985', |
|
13896
|
|
|
'type' => 'vertical', |
|
13897
|
|
|
'ellipsoid' => null, |
|
13898
|
|
|
'prime_meridian' => null, |
|
13899
|
|
|
'conventional_rs' => null, |
|
13900
|
|
|
'frame_reference_epoch' => null, |
|
13901
|
|
|
'anchor_epoch' => null, |
|
13902
|
|
|
'extent_name' => 'North America - Great Lakes basin and St Lawrence Seaway', |
|
13903
|
|
|
'help' => 'Mean water level 1970-1983 at Pointe-au-Père (Father\'s Point) and 1984-1988 at Rimouski, Quebec. Benchmark 1250-G = 6.273m. |
|
13904
|
|
|
Dynamic heights. Replaces IGLD 1955 from January 1992.', |
|
13905
|
|
|
], |
|
13906
|
|
|
'urn:ogc:def:datum:EPSG::5206' => [ |
|
13907
|
|
|
'name' => 'Dansk Vertikal Reference 1990 (2000)', |
|
13908
|
|
|
'type' => 'vertical', |
|
13909
|
|
|
'ellipsoid' => null, |
|
13910
|
|
|
'prime_meridian' => null, |
|
13911
|
|
|
'conventional_rs' => 1027, |
|
13912
|
|
|
'frame_reference_epoch' => null, |
|
13913
|
|
|
'anchor_epoch' => null, |
|
13914
|
|
|
'extent_name' => 'Denmark - onshore', |
|
13915
|
|
|
'help' => 'Benchmark at Århus cathedral referenced to mean sea level determined during 1990 at 10 tide gauges: Esbjerg, Fredericia, Frederikshavn, Gedser, Hirtshals, Hornbæk, Korsør, København, Slipshavn and Århus. |
|
13916
|
|
|
Helmert orthometric heights. First realization of DVR90, based on levelling.', |
|
13917
|
|
|
], |
|
13918
|
|
|
'urn:ogc:def:datum:EPSG::5207' => [ |
|
13919
|
|
|
'name' => 'Croatian Vertical Reference Datum 1971', |
|
13920
|
|
|
'type' => 'vertical', |
|
13921
|
|
|
'ellipsoid' => null, |
|
13922
|
|
|
'prime_meridian' => null, |
|
13923
|
|
|
'conventional_rs' => null, |
|
13924
|
|
|
'frame_reference_epoch' => null, |
|
13925
|
|
|
'anchor_epoch' => null, |
|
13926
|
|
|
'extent_name' => 'Croatia - onshore', |
|
13927
|
|
|
'help' => 'Mean sea level at five tide gauges in Dubrovnik, Split, Bakar, Rovinj and Kopar at epoch 1971.5 |
|
13928
|
|
|
Replaces Trieste (datum code 1050).', |
|
13929
|
|
|
], |
|
13930
|
|
|
'urn:ogc:def:datum:EPSG::5208' => [ |
|
13931
|
|
|
'name' => 'Rikets hojdsystem 2000', |
|
13932
|
|
|
'type' => 'vertical', |
|
13933
|
|
|
'ellipsoid' => null, |
|
13934
|
|
|
'prime_meridian' => null, |
|
13935
|
|
|
'conventional_rs' => null, |
|
13936
|
|
|
'frame_reference_epoch' => 2000.0, |
|
13937
|
|
|
'anchor_epoch' => null, |
|
13938
|
|
|
'extent_name' => 'Sweden - onshore', |
|
13939
|
|
|
'help' => 'Adjustment is referenced to mean high tide at Amsterdams Peil in 1684. To account for land level movements caused by isostatic rebound, heights are reduced to epoch 2000.0 using values computed from the RH 2000 LU (=NKG2005LU) uplift model. |
|
13940
|
|
|
Realized through the third precise levelling network of 1979-2003. Adopted in 2005, replacing RH70. Uses Normal heights.', |
|
13941
|
|
|
], |
|
13942
|
|
|
'urn:ogc:def:datum:EPSG::5209' => [ |
|
13943
|
|
|
'name' => 'Rikets hojdsystem 1900', |
|
13944
|
|
|
'type' => 'vertical', |
|
13945
|
|
|
'ellipsoid' => null, |
|
13946
|
|
|
'prime_meridian' => null, |
|
13947
|
|
|
'conventional_rs' => null, |
|
13948
|
|
|
'frame_reference_epoch' => null, |
|
13949
|
|
|
'anchor_epoch' => null, |
|
13950
|
|
|
'extent_name' => 'Sweden - onshore', |
|
13951
|
|
|
'help' => 'Adjustment is referenced to mean sea level at Slussen, Stockholm. |
|
13952
|
|
|
Realized through the first precise levelling network of 1886-1905. Replaced by RH70.', |
|
13953
|
|
|
], |
|
13954
|
|
|
'urn:ogc:def:datum:EPSG::5210' => [ |
|
13955
|
|
|
'name' => 'IGN 1988 LS', |
|
13956
|
|
|
'type' => 'vertical', |
|
13957
|
|
|
'ellipsoid' => null, |
|
13958
|
|
|
'prime_meridian' => null, |
|
13959
|
|
|
'conventional_rs' => null, |
|
13960
|
|
|
'frame_reference_epoch' => null, |
|
13961
|
|
|
'anchor_epoch' => null, |
|
13962
|
|
|
'extent_name' => 'Guadeloupe - Les Saintes - onshore', |
|
13963
|
|
|
'help' => 'Mean sea level 1984 at Terre de Haut. Origin = marker O de -5 with defined height of 1.441m above msl. IGN 1988 LS height 0.00m is 0.46m above 1987 sounding datum; this approximately corresponds with msl at Pointe-à-Pitre (see datum code 5155, CRS 5757). |
|
13964
|
|
|
Orthometric heights.', |
|
13965
|
|
|
], |
|
13966
|
|
|
'urn:ogc:def:datum:EPSG::5211' => [ |
|
13967
|
|
|
'name' => 'IGN 1988 MG', |
|
13968
|
|
|
'type' => 'vertical', |
|
13969
|
|
|
'ellipsoid' => null, |
|
13970
|
|
|
'prime_meridian' => null, |
|
13971
|
|
|
'conventional_rs' => null, |
|
13972
|
|
|
'frame_reference_epoch' => null, |
|
13973
|
|
|
'anchor_epoch' => null, |
|
13974
|
|
|
'extent_name' => 'Guadeloupe - Marie-Galante - onshore', |
|
13975
|
|
|
'help' => 'Mean sea level 1987 at Grand-Bourg. Origin = marker M0-I with defined height of 0.832m above msl. IGN 1988 MG height 0.00m is 0.46m above 1987 sounding datum; this approximately corresponds with msl at Pointe-à-Pitre (see datum code 5155, CRS code 5757). |
|
13976
|
|
|
Orthometric heights.', |
|
13977
|
|
|
], |
|
13978
|
|
|
'urn:ogc:def:datum:EPSG::5212' => [ |
|
13979
|
|
|
'name' => 'IGN 1992 LD', |
|
13980
|
|
|
'type' => 'vertical', |
|
13981
|
|
|
'ellipsoid' => null, |
|
13982
|
|
|
'prime_meridian' => null, |
|
13983
|
|
|
'conventional_rs' => null, |
|
13984
|
|
|
'frame_reference_epoch' => null, |
|
13985
|
|
|
'anchor_epoch' => null, |
|
13986
|
|
|
'extent_name' => 'Guadeloupe - La Desirade - onshore', |
|
13987
|
|
|
'help' => 'Mean sea level at Pointe-à-Pitre. Origin = marker A with defined height of 0.792m above msl. IGN 1992 LD height 0.00m is 0.629m above sounding datum at Pointe-à-Pitre. |
|
13988
|
|
|
Orthometric heights. Replaced by IGN 2008 LD (datum code 1250).', |
|
13989
|
|
|
], |
|
13990
|
|
|
'urn:ogc:def:datum:EPSG::5213' => [ |
|
13991
|
|
|
'name' => 'IGN 1988 SB', |
|
13992
|
|
|
'type' => 'vertical', |
|
13993
|
|
|
'ellipsoid' => null, |
|
13994
|
|
|
'prime_meridian' => null, |
|
13995
|
|
|
'conventional_rs' => null, |
|
13996
|
|
|
'frame_reference_epoch' => null, |
|
13997
|
|
|
'anchor_epoch' => null, |
|
13998
|
|
|
'extent_name' => 'Guadeloupe - St Barthelemy - onshore', |
|
13999
|
|
|
'help' => 'Mean sea level 1988 at port of Gustavia. Origin = marker A.ef-2 with defined height of 0.621m above msl. IGN 1988 SB height 0.00m deduced to be 0.201m above mean sea level at Pointe-à-Pitre. |
|
14000
|
|
|
Orthometric heights.', |
|
14001
|
|
|
], |
|
14002
|
|
|
'urn:ogc:def:datum:EPSG::5214' => [ |
|
14003
|
|
|
'name' => 'IGN 1988 SM', |
|
14004
|
|
|
'type' => 'vertical', |
|
14005
|
|
|
'ellipsoid' => null, |
|
14006
|
|
|
'prime_meridian' => null, |
|
14007
|
|
|
'conventional_rs' => null, |
|
14008
|
|
|
'frame_reference_epoch' => null, |
|
14009
|
|
|
'anchor_epoch' => null, |
|
14010
|
|
|
'extent_name' => 'Guadeloupe - St Martin - onshore', |
|
14011
|
|
|
'help' => 'Mean sea level 1949-1950 deduced at Fort Marigot. Origin = marker AS-13 with defined height of 6.990m above msl. IGN 1988 SM height 0.00m deduced to be 0.41m above sounding datum. |
|
14012
|
|
|
Orthometric heights.', |
|
14013
|
|
|
], |
|
14014
|
|
|
'urn:ogc:def:datum:EPSG::5215' => [ |
|
14015
|
|
|
'name' => 'European Vertical Reference Frame 2007', |
|
14016
|
|
|
'type' => 'vertical', |
|
14017
|
|
|
'ellipsoid' => null, |
|
14018
|
|
|
'prime_meridian' => null, |
|
14019
|
|
|
'conventional_rs' => null, |
|
14020
|
|
|
'frame_reference_epoch' => null, |
|
14021
|
|
|
'anchor_epoch' => null, |
|
14022
|
|
|
'extent_name' => 'Europe - EVRF2007', |
|
14023
|
|
|
'help' => 'Least squares fit to 13 stations of the EVRF2000 solution. Reduced to epoch 2000.0 for Nordic countries using the NKG2005LU uplift model. |
|
14024
|
|
|
Realized by geopotential numbers and Normal heights of the United European Levelling Network. Replaces EVRF2000 (datum code 5129). Replaced by EVRF2019 (datum code 1274).', |
|
14025
|
|
|
], |
|
14026
|
|
|
'urn:ogc:def:datum:EPSG::6001' => [ |
|
14027
|
|
|
'name' => 'Not specified (based on Airy 1830 ellipsoid)', |
|
14028
|
|
|
'type' => 'geodetic', |
|
14029
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001', |
|
14030
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14031
|
|
|
'conventional_rs' => null, |
|
14032
|
|
|
'frame_reference_epoch' => null, |
|
14033
|
|
|
'anchor_epoch' => null, |
|
14034
|
|
|
'extent_name' => 'World', |
|
14035
|
|
|
'help' => ' |
|
14036
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14037
|
|
|
], |
|
14038
|
|
|
'urn:ogc:def:datum:EPSG::6002' => [ |
|
14039
|
|
|
'name' => 'Not specified (based on Airy Modified 1849 ellipsoid)', |
|
14040
|
|
|
'type' => 'geodetic', |
|
14041
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7002', |
|
14042
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14043
|
|
|
'conventional_rs' => null, |
|
14044
|
|
|
'frame_reference_epoch' => null, |
|
14045
|
|
|
'anchor_epoch' => null, |
|
14046
|
|
|
'extent_name' => 'World', |
|
14047
|
|
|
'help' => ' |
|
14048
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14049
|
|
|
], |
|
14050
|
|
|
'urn:ogc:def:datum:EPSG::6003' => [ |
|
14051
|
|
|
'name' => 'Not specified (based on Australian National Spheroid)', |
|
14052
|
|
|
'type' => 'geodetic', |
|
14053
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7003', |
|
14054
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14055
|
|
|
'conventional_rs' => null, |
|
14056
|
|
|
'frame_reference_epoch' => null, |
|
14057
|
|
|
'anchor_epoch' => null, |
|
14058
|
|
|
'extent_name' => 'World', |
|
14059
|
|
|
'help' => ' |
|
14060
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14061
|
|
|
], |
|
14062
|
|
|
'urn:ogc:def:datum:EPSG::6004' => [ |
|
14063
|
|
|
'name' => 'Not specified (based on Bessel 1841 ellipsoid)', |
|
14064
|
|
|
'type' => 'geodetic', |
|
14065
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
14066
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14067
|
|
|
'conventional_rs' => null, |
|
14068
|
|
|
'frame_reference_epoch' => null, |
|
14069
|
|
|
'anchor_epoch' => null, |
|
14070
|
|
|
'extent_name' => 'World', |
|
14071
|
|
|
'help' => ' |
|
14072
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14073
|
|
|
], |
|
14074
|
|
|
'urn:ogc:def:datum:EPSG::6005' => [ |
|
14075
|
|
|
'name' => 'Not specified (based on Bessel Modified ellipsoid)', |
|
14076
|
|
|
'type' => 'geodetic', |
|
14077
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7005', |
|
14078
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14079
|
|
|
'conventional_rs' => null, |
|
14080
|
|
|
'frame_reference_epoch' => null, |
|
14081
|
|
|
'anchor_epoch' => null, |
|
14082
|
|
|
'extent_name' => 'World', |
|
14083
|
|
|
'help' => ' |
|
14084
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14085
|
|
|
], |
|
14086
|
|
|
'urn:ogc:def:datum:EPSG::6006' => [ |
|
14087
|
|
|
'name' => 'Not specified (based on Bessel Namibia ellipsoid)', |
|
14088
|
|
|
'type' => 'geodetic', |
|
14089
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7046', |
|
14090
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14091
|
|
|
'conventional_rs' => null, |
|
14092
|
|
|
'frame_reference_epoch' => null, |
|
14093
|
|
|
'anchor_epoch' => null, |
|
14094
|
|
|
'extent_name' => 'World', |
|
14095
|
|
|
'help' => ' |
|
14096
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14097
|
|
|
], |
|
14098
|
|
|
'urn:ogc:def:datum:EPSG::6007' => [ |
|
14099
|
|
|
'name' => 'Not specified (based on Clarke 1858 ellipsoid)', |
|
14100
|
|
|
'type' => 'geodetic', |
|
14101
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007', |
|
14102
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14103
|
|
|
'conventional_rs' => null, |
|
14104
|
|
|
'frame_reference_epoch' => null, |
|
14105
|
|
|
'anchor_epoch' => null, |
|
14106
|
|
|
'extent_name' => 'World', |
|
14107
|
|
|
'help' => ' |
|
14108
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14109
|
|
|
], |
|
14110
|
|
|
'urn:ogc:def:datum:EPSG::6008' => [ |
|
14111
|
|
|
'name' => 'Not specified (based on Clarke 1866 ellipsoid)', |
|
14112
|
|
|
'type' => 'geodetic', |
|
14113
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
14114
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14115
|
|
|
'conventional_rs' => null, |
|
14116
|
|
|
'frame_reference_epoch' => null, |
|
14117
|
|
|
'anchor_epoch' => null, |
|
14118
|
|
|
'extent_name' => 'World', |
|
14119
|
|
|
'help' => ' |
|
14120
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14121
|
|
|
], |
|
14122
|
|
|
'urn:ogc:def:datum:EPSG::6010' => [ |
|
14123
|
|
|
'name' => 'Not specified (based on Clarke 1880 (Benoit) ellipsoid)', |
|
14124
|
|
|
'type' => 'geodetic', |
|
14125
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7010', |
|
14126
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14127
|
|
|
'conventional_rs' => null, |
|
14128
|
|
|
'frame_reference_epoch' => null, |
|
14129
|
|
|
'anchor_epoch' => null, |
|
14130
|
|
|
'extent_name' => 'World', |
|
14131
|
|
|
'help' => ' |
|
14132
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14133
|
|
|
], |
|
14134
|
|
|
'urn:ogc:def:datum:EPSG::6011' => [ |
|
14135
|
|
|
'name' => 'Not specified (based on Clarke 1880 (IGN) ellipsoid)', |
|
14136
|
|
|
'type' => 'geodetic', |
|
14137
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
14138
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14139
|
|
|
'conventional_rs' => null, |
|
14140
|
|
|
'frame_reference_epoch' => null, |
|
14141
|
|
|
'anchor_epoch' => null, |
|
14142
|
|
|
'extent_name' => 'World', |
|
14143
|
|
|
'help' => ' |
|
14144
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14145
|
|
|
], |
|
14146
|
|
|
'urn:ogc:def:datum:EPSG::6012' => [ |
|
14147
|
|
|
'name' => 'Not specified (based on Clarke 1880 (RGS) ellipsoid)', |
|
14148
|
|
|
'type' => 'geodetic', |
|
14149
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
14150
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14151
|
|
|
'conventional_rs' => null, |
|
14152
|
|
|
'frame_reference_epoch' => null, |
|
14153
|
|
|
'anchor_epoch' => null, |
|
14154
|
|
|
'extent_name' => 'World', |
|
14155
|
|
|
'help' => ' |
|
14156
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14157
|
|
|
], |
|
14158
|
|
|
'urn:ogc:def:datum:EPSG::6013' => [ |
|
14159
|
|
|
'name' => 'Not specified (based on Clarke 1880 (Arc) ellipsoid)', |
|
14160
|
|
|
'type' => 'geodetic', |
|
14161
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7013', |
|
14162
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14163
|
|
|
'conventional_rs' => null, |
|
14164
|
|
|
'frame_reference_epoch' => null, |
|
14165
|
|
|
'anchor_epoch' => null, |
|
14166
|
|
|
'extent_name' => 'World', |
|
14167
|
|
|
'help' => ' |
|
14168
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14169
|
|
|
], |
|
14170
|
|
|
'urn:ogc:def:datum:EPSG::6014' => [ |
|
14171
|
|
|
'name' => 'Not specified (based on Clarke 1880 (SGA 1922) ellipsoid)', |
|
14172
|
|
|
'type' => 'geodetic', |
|
14173
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7014', |
|
14174
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14175
|
|
|
'conventional_rs' => null, |
|
14176
|
|
|
'frame_reference_epoch' => null, |
|
14177
|
|
|
'anchor_epoch' => null, |
|
14178
|
|
|
'extent_name' => 'World', |
|
14179
|
|
|
'help' => ' |
|
14180
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14181
|
|
|
], |
|
14182
|
|
|
'urn:ogc:def:datum:EPSG::6015' => [ |
|
14183
|
|
|
'name' => 'Not specified (based on Everest 1830 (1937 Adjustment) ellipsoid)', |
|
14184
|
|
|
'type' => 'geodetic', |
|
14185
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015', |
|
14186
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14187
|
|
|
'conventional_rs' => null, |
|
14188
|
|
|
'frame_reference_epoch' => null, |
|
14189
|
|
|
'anchor_epoch' => null, |
|
14190
|
|
|
'extent_name' => 'World', |
|
14191
|
|
|
'help' => ' |
|
14192
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14193
|
|
|
], |
|
14194
|
|
|
'urn:ogc:def:datum:EPSG::6016' => [ |
|
14195
|
|
|
'name' => 'Not specified (based on Everest 1830 (1967 Definition) ellipsoid)', |
|
14196
|
|
|
'type' => 'geodetic', |
|
14197
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7016', |
|
14198
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14199
|
|
|
'conventional_rs' => null, |
|
14200
|
|
|
'frame_reference_epoch' => null, |
|
14201
|
|
|
'anchor_epoch' => null, |
|
14202
|
|
|
'extent_name' => 'World', |
|
14203
|
|
|
'help' => ' |
|
14204
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14205
|
|
|
], |
|
14206
|
|
|
'urn:ogc:def:datum:EPSG::6018' => [ |
|
14207
|
|
|
'name' => 'Not specified (based on Everest 1830 Modified ellipsoid)', |
|
14208
|
|
|
'type' => 'geodetic', |
|
14209
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7018', |
|
14210
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14211
|
|
|
'conventional_rs' => null, |
|
14212
|
|
|
'frame_reference_epoch' => null, |
|
14213
|
|
|
'anchor_epoch' => null, |
|
14214
|
|
|
'extent_name' => 'World', |
|
14215
|
|
|
'help' => ' |
|
14216
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14217
|
|
|
], |
|
14218
|
|
|
'urn:ogc:def:datum:EPSG::6019' => [ |
|
14219
|
|
|
'name' => 'Not specified (based on GRS 1980 ellipsoid)', |
|
14220
|
|
|
'type' => 'geodetic', |
|
14221
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
14222
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14223
|
|
|
'conventional_rs' => null, |
|
14224
|
|
|
'frame_reference_epoch' => null, |
|
14225
|
|
|
'anchor_epoch' => null, |
|
14226
|
|
|
'extent_name' => 'World', |
|
14227
|
|
|
'help' => ' |
|
14228
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14229
|
|
|
], |
|
14230
|
|
|
'urn:ogc:def:datum:EPSG::6020' => [ |
|
14231
|
|
|
'name' => 'Not specified (based on Helmert 1906 ellipsoid)', |
|
14232
|
|
|
'type' => 'geodetic', |
|
14233
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020', |
|
14234
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14235
|
|
|
'conventional_rs' => null, |
|
14236
|
|
|
'frame_reference_epoch' => null, |
|
14237
|
|
|
'anchor_epoch' => null, |
|
14238
|
|
|
'extent_name' => 'World', |
|
14239
|
|
|
'help' => ' |
|
14240
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14241
|
|
|
], |
|
14242
|
|
|
'urn:ogc:def:datum:EPSG::6021' => [ |
|
14243
|
|
|
'name' => 'Not specified (based on Indonesian National Spheroid)', |
|
14244
|
|
|
'type' => 'geodetic', |
|
14245
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7021', |
|
14246
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14247
|
|
|
'conventional_rs' => null, |
|
14248
|
|
|
'frame_reference_epoch' => null, |
|
14249
|
|
|
'anchor_epoch' => null, |
|
14250
|
|
|
'extent_name' => 'World', |
|
14251
|
|
|
'help' => ' |
|
14252
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14253
|
|
|
], |
|
14254
|
|
|
'urn:ogc:def:datum:EPSG::6022' => [ |
|
14255
|
|
|
'name' => 'Not specified (based on International 1924 ellipsoid)', |
|
14256
|
|
|
'type' => 'geodetic', |
|
14257
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
14258
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14259
|
|
|
'conventional_rs' => null, |
|
14260
|
|
|
'frame_reference_epoch' => null, |
|
14261
|
|
|
'anchor_epoch' => null, |
|
14262
|
|
|
'extent_name' => 'World', |
|
14263
|
|
|
'help' => ' |
|
14264
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14265
|
|
|
], |
|
14266
|
|
|
'urn:ogc:def:datum:EPSG::6024' => [ |
|
14267
|
|
|
'name' => 'Not specified (based on Krassowsky 1940 ellipsoid)', |
|
14268
|
|
|
'type' => 'geodetic', |
|
14269
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024', |
|
14270
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14271
|
|
|
'conventional_rs' => null, |
|
14272
|
|
|
'frame_reference_epoch' => null, |
|
14273
|
|
|
'anchor_epoch' => null, |
|
14274
|
|
|
'extent_name' => 'World', |
|
14275
|
|
|
'help' => ' |
|
14276
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14277
|
|
|
], |
|
14278
|
|
|
'urn:ogc:def:datum:EPSG::6025' => [ |
|
14279
|
|
|
'name' => 'Not specified (based on NWL 9D ellipsoid)', |
|
14280
|
|
|
'type' => 'geodetic', |
|
14281
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7025', |
|
14282
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14283
|
|
|
'conventional_rs' => null, |
|
14284
|
|
|
'frame_reference_epoch' => null, |
|
14285
|
|
|
'anchor_epoch' => null, |
|
14286
|
|
|
'extent_name' => 'World', |
|
14287
|
|
|
'help' => ' |
|
14288
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14289
|
|
|
], |
|
14290
|
|
|
'urn:ogc:def:datum:EPSG::6027' => [ |
|
14291
|
|
|
'name' => 'Not specified (based on Plessis 1817 ellipsoid)', |
|
14292
|
|
|
'type' => 'geodetic', |
|
14293
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7027', |
|
14294
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14295
|
|
|
'conventional_rs' => null, |
|
14296
|
|
|
'frame_reference_epoch' => null, |
|
14297
|
|
|
'anchor_epoch' => null, |
|
14298
|
|
|
'extent_name' => 'World', |
|
14299
|
|
|
'help' => ' |
|
14300
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14301
|
|
|
], |
|
14302
|
|
|
'urn:ogc:def:datum:EPSG::6028' => [ |
|
14303
|
|
|
'name' => 'Not specified (based on Struve 1860 ellipsoid)', |
|
14304
|
|
|
'type' => 'geodetic', |
|
14305
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7028', |
|
14306
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14307
|
|
|
'conventional_rs' => null, |
|
14308
|
|
|
'frame_reference_epoch' => null, |
|
14309
|
|
|
'anchor_epoch' => null, |
|
14310
|
|
|
'extent_name' => 'World', |
|
14311
|
|
|
'help' => ' |
|
14312
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14313
|
|
|
], |
|
14314
|
|
|
'urn:ogc:def:datum:EPSG::6029' => [ |
|
14315
|
|
|
'name' => 'Not specified (based on War Office ellipsoid)', |
|
14316
|
|
|
'type' => 'geodetic', |
|
14317
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7029', |
|
14318
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14319
|
|
|
'conventional_rs' => null, |
|
14320
|
|
|
'frame_reference_epoch' => null, |
|
14321
|
|
|
'anchor_epoch' => null, |
|
14322
|
|
|
'extent_name' => 'World', |
|
14323
|
|
|
'help' => ' |
|
14324
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14325
|
|
|
], |
|
14326
|
|
|
'urn:ogc:def:datum:EPSG::6030' => [ |
|
14327
|
|
|
'name' => 'Not specified (based on WGS 84 ellipsoid)', |
|
14328
|
|
|
'type' => 'geodetic', |
|
14329
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
14330
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14331
|
|
|
'conventional_rs' => null, |
|
14332
|
|
|
'frame_reference_epoch' => null, |
|
14333
|
|
|
'anchor_epoch' => null, |
|
14334
|
|
|
'extent_name' => 'World', |
|
14335
|
|
|
'help' => ' |
|
14336
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14337
|
|
|
], |
|
14338
|
|
|
'urn:ogc:def:datum:EPSG::6031' => [ |
|
14339
|
|
|
'name' => 'Not specified (based on GEM 10C ellipsoid)', |
|
14340
|
|
|
'type' => 'geodetic', |
|
14341
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7031', |
|
14342
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14343
|
|
|
'conventional_rs' => null, |
|
14344
|
|
|
'frame_reference_epoch' => null, |
|
14345
|
|
|
'anchor_epoch' => null, |
|
14346
|
|
|
'extent_name' => 'World', |
|
14347
|
|
|
'help' => ' |
|
14348
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14349
|
|
|
], |
|
14350
|
|
|
'urn:ogc:def:datum:EPSG::6032' => [ |
|
14351
|
|
|
'name' => 'Not specified (based on OSU86F ellipsoid)', |
|
14352
|
|
|
'type' => 'geodetic', |
|
14353
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7032', |
|
14354
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14355
|
|
|
'conventional_rs' => null, |
|
14356
|
|
|
'frame_reference_epoch' => null, |
|
14357
|
|
|
'anchor_epoch' => null, |
|
14358
|
|
|
'extent_name' => 'World', |
|
14359
|
|
|
'help' => ' |
|
14360
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14361
|
|
|
], |
|
14362
|
|
|
'urn:ogc:def:datum:EPSG::6033' => [ |
|
14363
|
|
|
'name' => 'Not specified (based on OSU91A ellipsoid)', |
|
14364
|
|
|
'type' => 'geodetic', |
|
14365
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7033', |
|
14366
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14367
|
|
|
'conventional_rs' => null, |
|
14368
|
|
|
'frame_reference_epoch' => null, |
|
14369
|
|
|
'anchor_epoch' => null, |
|
14370
|
|
|
'extent_name' => 'World', |
|
14371
|
|
|
'help' => ' |
|
14372
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14373
|
|
|
], |
|
14374
|
|
|
'urn:ogc:def:datum:EPSG::6034' => [ |
|
14375
|
|
|
'name' => 'Not specified (based on Clarke 1880 ellipsoid)', |
|
14376
|
|
|
'type' => 'geodetic', |
|
14377
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7034', |
|
14378
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14379
|
|
|
'conventional_rs' => null, |
|
14380
|
|
|
'frame_reference_epoch' => null, |
|
14381
|
|
|
'anchor_epoch' => null, |
|
14382
|
|
|
'extent_name' => 'World', |
|
14383
|
|
|
'help' => ' |
|
14384
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14385
|
|
|
], |
|
14386
|
|
|
'urn:ogc:def:datum:EPSG::6036' => [ |
|
14387
|
|
|
'name' => 'Not specified (based on GRS 1967 ellipsoid)', |
|
14388
|
|
|
'type' => 'geodetic', |
|
14389
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7036', |
|
14390
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14391
|
|
|
'conventional_rs' => null, |
|
14392
|
|
|
'frame_reference_epoch' => null, |
|
14393
|
|
|
'anchor_epoch' => null, |
|
14394
|
|
|
'extent_name' => 'World', |
|
14395
|
|
|
'help' => ' |
|
14396
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14397
|
|
|
], |
|
14398
|
|
|
'urn:ogc:def:datum:EPSG::6041' => [ |
|
14399
|
|
|
'name' => 'Not specified (based on Average Terrestrial System 1977 ellipsoid)', |
|
14400
|
|
|
'type' => 'geodetic', |
|
14401
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7041', |
|
14402
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14403
|
|
|
'conventional_rs' => null, |
|
14404
|
|
|
'frame_reference_epoch' => null, |
|
14405
|
|
|
'anchor_epoch' => null, |
|
14406
|
|
|
'extent_name' => 'World', |
|
14407
|
|
|
'help' => ' |
|
14408
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14409
|
|
|
], |
|
14410
|
|
|
'urn:ogc:def:datum:EPSG::6042' => [ |
|
14411
|
|
|
'name' => 'Not specified (based on Everest (1830 Definition) ellipsoid)', |
|
14412
|
|
|
'type' => 'geodetic', |
|
14413
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7042', |
|
14414
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14415
|
|
|
'conventional_rs' => null, |
|
14416
|
|
|
'frame_reference_epoch' => null, |
|
14417
|
|
|
'anchor_epoch' => null, |
|
14418
|
|
|
'extent_name' => 'World', |
|
14419
|
|
|
'help' => ' |
|
14420
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14421
|
|
|
], |
|
14422
|
|
|
'urn:ogc:def:datum:EPSG::6043' => [ |
|
14423
|
|
|
'name' => 'Not specified (based on WGS 72 ellipsoid)', |
|
14424
|
|
|
'type' => 'geodetic', |
|
14425
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7043', |
|
14426
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14427
|
|
|
'conventional_rs' => null, |
|
14428
|
|
|
'frame_reference_epoch' => null, |
|
14429
|
|
|
'anchor_epoch' => null, |
|
14430
|
|
|
'extent_name' => 'World', |
|
14431
|
|
|
'help' => ' |
|
14432
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14433
|
|
|
], |
|
14434
|
|
|
'urn:ogc:def:datum:EPSG::6044' => [ |
|
14435
|
|
|
'name' => 'Not specified (based on Everest 1830 (1962 Definition) ellipsoid)', |
|
14436
|
|
|
'type' => 'geodetic', |
|
14437
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7044', |
|
14438
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14439
|
|
|
'conventional_rs' => null, |
|
14440
|
|
|
'frame_reference_epoch' => null, |
|
14441
|
|
|
'anchor_epoch' => null, |
|
14442
|
|
|
'extent_name' => 'World', |
|
14443
|
|
|
'help' => ' |
|
14444
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14445
|
|
|
], |
|
14446
|
|
|
'urn:ogc:def:datum:EPSG::6045' => [ |
|
14447
|
|
|
'name' => 'Not specified (based on Everest 1830 (1975 Definition) ellipsoid)', |
|
14448
|
|
|
'type' => 'geodetic', |
|
14449
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7045', |
|
14450
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14451
|
|
|
'conventional_rs' => null, |
|
14452
|
|
|
'frame_reference_epoch' => null, |
|
14453
|
|
|
'anchor_epoch' => null, |
|
14454
|
|
|
'extent_name' => 'World', |
|
14455
|
|
|
'help' => ' |
|
14456
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14457
|
|
|
], |
|
14458
|
|
|
'urn:ogc:def:datum:EPSG::6047' => [ |
|
14459
|
|
|
'name' => 'Not specified (based on GRS 1980 Authalic Sphere)', |
|
14460
|
|
|
'type' => 'geodetic', |
|
14461
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7048', |
|
14462
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14463
|
|
|
'conventional_rs' => null, |
|
14464
|
|
|
'frame_reference_epoch' => null, |
|
14465
|
|
|
'anchor_epoch' => null, |
|
14466
|
|
|
'extent_name' => 'World', |
|
14467
|
|
|
'help' => ' |
|
14468
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14469
|
|
|
], |
|
14470
|
|
|
'urn:ogc:def:datum:EPSG::6052' => [ |
|
14471
|
|
|
'name' => 'Not specified (based on Clarke 1866 Authalic Sphere)', |
|
14472
|
|
|
'type' => 'geodetic', |
|
14473
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7052', |
|
14474
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14475
|
|
|
'conventional_rs' => null, |
|
14476
|
|
|
'frame_reference_epoch' => null, |
|
14477
|
|
|
'anchor_epoch' => null, |
|
14478
|
|
|
'extent_name' => 'World', |
|
14479
|
|
|
'help' => ' |
|
14480
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14481
|
|
|
], |
|
14482
|
|
|
'urn:ogc:def:datum:EPSG::6053' => [ |
|
14483
|
|
|
'name' => 'Not specified (based on International 1924 Authalic Sphere)', |
|
14484
|
|
|
'type' => 'geodetic', |
|
14485
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7057', |
|
14486
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14487
|
|
|
'conventional_rs' => null, |
|
14488
|
|
|
'frame_reference_epoch' => null, |
|
14489
|
|
|
'anchor_epoch' => null, |
|
14490
|
|
|
'extent_name' => 'World', |
|
14491
|
|
|
'help' => ' |
|
14492
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14493
|
|
|
], |
|
14494
|
|
|
'urn:ogc:def:datum:EPSG::6054' => [ |
|
14495
|
|
|
'name' => 'Not specified (based on Hughes 1980 ellipsoid)', |
|
14496
|
|
|
'type' => 'geodetic', |
|
14497
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7058', |
|
14498
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14499
|
|
|
'conventional_rs' => null, |
|
14500
|
|
|
'frame_reference_epoch' => null, |
|
14501
|
|
|
'anchor_epoch' => null, |
|
14502
|
|
|
'extent_name' => 'World', |
|
14503
|
|
|
'help' => ' |
|
14504
|
|
|
Included for coordinate reference systems where datum is unknown.', |
|
14505
|
|
|
], |
|
14506
|
|
|
'urn:ogc:def:datum:EPSG::6120' => [ |
|
14507
|
|
|
'name' => 'Greek', |
|
14508
|
|
|
'type' => 'geodetic', |
|
14509
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
14510
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14511
|
|
|
'conventional_rs' => null, |
|
14512
|
|
|
'frame_reference_epoch' => null, |
|
14513
|
|
|
'anchor_epoch' => null, |
|
14514
|
|
|
'extent_name' => 'Greece - onshore', |
|
14515
|
|
|
'help' => 'Fundamental point: Athens Observatory. Latitude 37°58\'20.132"N, longitude 23°42\'58.815"E (of Greenwich) |
|
14516
|
|
|
See geodetic datum alias 6404. Used as basis of topographic mapping based on Hatt projection. Replaced by GGRS87 (code 6121).', |
|
14517
|
|
|
], |
|
14518
|
|
|
'urn:ogc:def:datum:EPSG::6121' => [ |
|
14519
|
|
|
'name' => 'Greek Geodetic Reference System 1987', |
|
14520
|
|
|
'type' => 'geodetic', |
|
14521
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
14522
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14523
|
|
|
'conventional_rs' => null, |
|
14524
|
|
|
'frame_reference_epoch' => null, |
|
14525
|
|
|
'anchor_epoch' => null, |
|
14526
|
|
|
'extent_name' => 'Greece - onshore', |
|
14527
|
|
|
'help' => 'Fundamental point: Dionysos. Latitude 38°04\'33.8"N, longitude 23°55\'51.0"E of Greenwich; geoid height 7.0 m. |
|
14528
|
|
|
Replaced (old) Greek datum. Oil industry work based on ED50.', |
|
14529
|
|
|
], |
|
14530
|
|
|
'urn:ogc:def:datum:EPSG::6122' => [ |
|
14531
|
|
|
'name' => 'Average Terrestrial System 1977', |
|
14532
|
|
|
'type' => 'geodetic', |
|
14533
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7041', |
|
14534
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14535
|
|
|
'conventional_rs' => null, |
|
14536
|
|
|
'frame_reference_epoch' => null, |
|
14537
|
|
|
'anchor_epoch' => null, |
|
14538
|
|
|
'extent_name' => 'Canada - Maritime Provinces', |
|
14539
|
|
|
'help' => ' |
|
14540
|
|
|
In use from 1979. To be phased out in late 1990\'s.', |
|
14541
|
|
|
], |
|
14542
|
|
|
'urn:ogc:def:datum:EPSG::6123' => [ |
|
14543
|
|
|
'name' => 'Kartastokoordinaattijarjestelma (1966)', |
|
14544
|
|
|
'type' => 'geodetic', |
|
14545
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
14546
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14547
|
|
|
'conventional_rs' => null, |
|
14548
|
|
|
'frame_reference_epoch' => null, |
|
14549
|
|
|
'anchor_epoch' => null, |
|
14550
|
|
|
'extent_name' => 'Finland - onshore', |
|
14551
|
|
|
'help' => 'Adjustment with fundamental point SF31 based on ED50 transformed to best fit the older VVJ adjustment. |
|
14552
|
|
|
Adopted in 1970.', |
|
14553
|
|
|
], |
|
14554
|
|
|
'urn:ogc:def:datum:EPSG::6124' => [ |
|
14555
|
|
|
'name' => 'Rikets koordinatsystem 1990', |
|
14556
|
|
|
'type' => 'geodetic', |
|
14557
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
14558
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14559
|
|
|
'conventional_rs' => null, |
|
14560
|
|
|
'frame_reference_epoch' => null, |
|
14561
|
|
|
'anchor_epoch' => null, |
|
14562
|
|
|
'extent_name' => 'Sweden', |
|
14563
|
|
|
'help' => ' |
|
14564
|
|
|
Replaces RT38 adjustment (datum code 6308)', |
|
14565
|
|
|
], |
|
14566
|
|
|
'urn:ogc:def:datum:EPSG::6126' => [ |
|
14567
|
|
|
'name' => 'Lithuania 1994 (ETRS89)', |
|
14568
|
|
|
'type' => 'geodetic', |
|
14569
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
14570
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14571
|
|
|
'conventional_rs' => null, |
|
14572
|
|
|
'frame_reference_epoch' => null, |
|
14573
|
|
|
'anchor_epoch' => null, |
|
14574
|
|
|
'extent_name' => 'Lithuania', |
|
14575
|
|
|
'help' => 'Constrained to 4 ETRS89 points in Lithuania from the EUREF Baltic 1992 campaign. |
|
14576
|
|
|
Densification of ETRS89 during the 1992 Baltic campaign.', |
|
14577
|
|
|
], |
|
14578
|
|
|
'urn:ogc:def:datum:EPSG::6127' => [ |
|
14579
|
|
|
'name' => 'Tete', |
|
14580
|
|
|
'type' => 'geodetic', |
|
14581
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
14582
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14583
|
|
|
'conventional_rs' => null, |
|
14584
|
|
|
'frame_reference_epoch' => null, |
|
14585
|
|
|
'anchor_epoch' => null, |
|
14586
|
|
|
'extent_name' => 'Mozambique - onshore', |
|
14587
|
|
|
'help' => 'Fundamental point: Tete. |
|
14588
|
|
|
', |
|
14589
|
|
|
], |
|
14590
|
|
|
'urn:ogc:def:datum:EPSG::6128' => [ |
|
14591
|
|
|
'name' => 'Madzansua', |
|
14592
|
|
|
'type' => 'geodetic', |
|
14593
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
14594
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14595
|
|
|
'conventional_rs' => null, |
|
14596
|
|
|
'frame_reference_epoch' => null, |
|
14597
|
|
|
'anchor_epoch' => null, |
|
14598
|
|
|
'extent_name' => 'Mozambique - west - Tete province', |
|
14599
|
|
|
'help' => 'Fundamental point: Madzansua. |
|
14600
|
|
|
Replaced by transformation to Tete datum (datum code 6127).', |
|
14601
|
|
|
], |
|
14602
|
|
|
'urn:ogc:def:datum:EPSG::6129' => [ |
|
14603
|
|
|
'name' => 'Observatario', |
|
14604
|
|
|
'type' => 'geodetic', |
|
14605
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
14606
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14607
|
|
|
'conventional_rs' => null, |
|
14608
|
|
|
'frame_reference_epoch' => null, |
|
14609
|
|
|
'anchor_epoch' => null, |
|
14610
|
|
|
'extent_name' => 'Mozambique - south', |
|
14611
|
|
|
'help' => 'Fundamental point: Campos Rodrigues observatory, Maputo. |
|
14612
|
|
|
Replaced by transformation to Tete datum (datum code 6127).', |
|
14613
|
|
|
], |
|
14614
|
|
|
'urn:ogc:def:datum:EPSG::6130' => [ |
|
14615
|
|
|
'name' => 'Moznet (ITRF94)', |
|
14616
|
|
|
'type' => 'geodetic', |
|
14617
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
14618
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14619
|
|
|
'conventional_rs' => null, |
|
14620
|
|
|
'frame_reference_epoch' => null, |
|
14621
|
|
|
'anchor_epoch' => null, |
|
14622
|
|
|
'extent_name' => 'Mozambique', |
|
14623
|
|
|
'help' => 'ITRF94 at epoch 1996.9 |
|
14624
|
|
|
', |
|
14625
|
|
|
], |
|
14626
|
|
|
'urn:ogc:def:datum:EPSG::6131' => [ |
|
14627
|
|
|
'name' => 'Indian 1960', |
|
14628
|
|
|
'type' => 'geodetic', |
|
14629
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015', |
|
14630
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14631
|
|
|
'conventional_rs' => null, |
|
14632
|
|
|
'frame_reference_epoch' => null, |
|
14633
|
|
|
'anchor_epoch' => null, |
|
14634
|
|
|
'extent_name' => 'Asia - Cambodia and Vietnam - onshore & Cuu Long basin', |
|
14635
|
|
|
'help' => 'DMA extension over IndoChina of the Indian 1954 network adjusted to better fit local geoid. |
|
14636
|
|
|
Also known as Indian (DMA Reduced).', |
|
14637
|
|
|
], |
|
14638
|
|
|
'urn:ogc:def:datum:EPSG::6132' => [ |
|
14639
|
|
|
'name' => 'Final Datum 1958', |
|
14640
|
|
|
'type' => 'geodetic', |
|
14641
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
14642
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14643
|
|
|
'conventional_rs' => null, |
|
14644
|
|
|
'frame_reference_epoch' => null, |
|
14645
|
|
|
'anchor_epoch' => null, |
|
14646
|
|
|
'extent_name' => 'Iran - FD58', |
|
14647
|
|
|
'help' => 'Fundamental point: Maniyur. Latitude: 31°23\'59.19"N, longitude: 48°32\'31.38"E (of Greenwich). |
|
14648
|
|
|
Network included in Nahrwan 1967 adjustment.', |
|
14649
|
|
|
], |
|
14650
|
|
|
'urn:ogc:def:datum:EPSG::6133' => [ |
|
14651
|
|
|
'name' => 'Estonia 1992', |
|
14652
|
|
|
'type' => 'geodetic', |
|
14653
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
14654
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14655
|
|
|
'conventional_rs' => null, |
|
14656
|
|
|
'frame_reference_epoch' => null, |
|
14657
|
|
|
'anchor_epoch' => null, |
|
14658
|
|
|
'extent_name' => 'Estonia - onshore', |
|
14659
|
|
|
'help' => 'Densification from 4 ETRS89 points. |
|
14660
|
|
|
Based on ETRS89 as established during the 1992 Baltic campaign. Replaced by Estonia 1997 adjustment (code 6180).', |
|
14661
|
|
|
], |
|
14662
|
|
|
'urn:ogc:def:datum:EPSG::6134' => [ |
|
14663
|
|
|
'name' => 'PDO Survey Datum 1993', |
|
14664
|
|
|
'type' => 'geodetic', |
|
14665
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
14666
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14667
|
|
|
'conventional_rs' => null, |
|
14668
|
|
|
'frame_reference_epoch' => null, |
|
14669
|
|
|
'anchor_epoch' => null, |
|
14670
|
|
|
'extent_name' => 'Oman - onshore', |
|
14671
|
|
|
'help' => 'Adjustment best fitted to Fahud network. |
|
14672
|
|
|
Replaces Fahud datum (code 6232). Maximum differences to Fahud adjustment are 20 metres.', |
|
14673
|
|
|
], |
|
14674
|
|
|
'urn:ogc:def:datum:EPSG::6135' => [ |
|
14675
|
|
|
'name' => 'Old Hawaiian', |
|
14676
|
|
|
'type' => 'geodetic', |
|
14677
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
14678
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14679
|
|
|
'conventional_rs' => null, |
|
14680
|
|
|
'frame_reference_epoch' => null, |
|
14681
|
|
|
'anchor_epoch' => null, |
|
14682
|
|
|
'extent_name' => 'USA - Hawaii - onshore', |
|
14683
|
|
|
'help' => 'Fundamental point: Oahu West Base Astro. Latitude: 21°18\'13.89"N, longitude 157°50\'55.79"W (of Greenwich) |
|
14684
|
|
|
Hawaiian Islands were never on NAD27 but rather on Old Hawaiian Datum. NADCON conversion program provides transformation from Old Hawaiian Datum to NAD83 (original 1986 realization) but making the transformation appear to user as if from NAD27.', |
|
14685
|
|
|
], |
|
14686
|
|
|
'urn:ogc:def:datum:EPSG::6136' => [ |
|
14687
|
|
|
'name' => 'St. Lawrence Island', |
|
14688
|
|
|
'type' => 'geodetic', |
|
14689
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
14690
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14691
|
|
|
'conventional_rs' => null, |
|
14692
|
|
|
'frame_reference_epoch' => null, |
|
14693
|
|
|
'anchor_epoch' => null, |
|
14694
|
|
|
'extent_name' => 'USA - Alaska - St. Lawrence Island', |
|
14695
|
|
|
'help' => ' |
|
14696
|
|
|
Many Alaskan islands were never on NAD27 but rather on independent datums. NADCON conversion program provides transformation from St. Lawrence Island Datum to NAD83 (original 1986 realization) - making the transformation appear to user as if from NAD27.', |
|
14697
|
|
|
], |
|
14698
|
|
|
'urn:ogc:def:datum:EPSG::6137' => [ |
|
14699
|
|
|
'name' => 'St. Paul Island', |
|
14700
|
|
|
'type' => 'geodetic', |
|
14701
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
14702
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14703
|
|
|
'conventional_rs' => null, |
|
14704
|
|
|
'frame_reference_epoch' => null, |
|
14705
|
|
|
'anchor_epoch' => null, |
|
14706
|
|
|
'extent_name' => 'USA - Alaska - St. Paul Island', |
|
14707
|
|
|
'help' => 'Fundamental point latitude: 57°07\'16.86"N, longitude: 170°16\'24.00"W (of Greenwich). |
|
14708
|
|
|
Many Alaskan islands were never on NAD27 but rather on independent datums. NADCON conversion program provides transformation from St. Paul Island Datum to NAD83 (original 1986 realization) - making the transformation appear to user as if from NAD27.', |
|
14709
|
|
|
], |
|
14710
|
|
|
'urn:ogc:def:datum:EPSG::6138' => [ |
|
14711
|
|
|
'name' => 'St. George Island', |
|
14712
|
|
|
'type' => 'geodetic', |
|
14713
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
14714
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14715
|
|
|
'conventional_rs' => null, |
|
14716
|
|
|
'frame_reference_epoch' => null, |
|
14717
|
|
|
'anchor_epoch' => null, |
|
14718
|
|
|
'extent_name' => 'USA - Alaska - St. George Island', |
|
14719
|
|
|
'help' => 'Fundamental point latitude: 56°36\'11.31"N, longitude: 169°32\'36.00"W (of Greenwich). |
|
14720
|
|
|
Many Alaskan islands were never on NAD27 but rather on independent datums. NADCON conversion program provides transformation from St. George Island Datum to NAD83 (original 1986 realization) - making the transformation appear to user as if from NAD27.', |
|
14721
|
|
|
], |
|
14722
|
|
|
'urn:ogc:def:datum:EPSG::6139' => [ |
|
14723
|
|
|
'name' => 'Puerto Rico', |
|
14724
|
|
|
'type' => 'geodetic', |
|
14725
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
14726
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14727
|
|
|
'conventional_rs' => null, |
|
14728
|
|
|
'frame_reference_epoch' => null, |
|
14729
|
|
|
'anchor_epoch' => null, |
|
14730
|
|
|
'extent_name' => 'Caribbean - Puerto Rico and Virgin Islands - onshore', |
|
14731
|
|
|
'help' => 'Fundamental point: Cardona Island Lighthouse. Latitude:17°57\'31.40"N, longitude: 66°38\'07.53"W (of Greenwich). |
|
14732
|
|
|
NADCON conversion program provides transformation from Puerto Rico Datum to NAD83 (original 1986 realization) but making the transformation appear to user as if from NAD27.', |
|
14733
|
|
|
], |
|
14734
|
|
|
'urn:ogc:def:datum:EPSG::6140' => [ |
|
14735
|
|
|
'name' => 'NAD83 Canadian Spatial Reference System', |
|
14736
|
|
|
'type' => 'geodetic', |
|
14737
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
14738
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14739
|
|
|
'conventional_rs' => null, |
|
14740
|
|
|
'frame_reference_epoch' => null, |
|
14741
|
|
|
'anchor_epoch' => null, |
|
14742
|
|
|
'extent_name' => 'Canada', |
|
14743
|
|
|
'help' => ' |
|
14744
|
|
|
Includes all versions of NAD83(CSRS) from v2 [CSRS98] onwards without specific identification. As such it has an accuracy of approximately 1m.', |
|
14745
|
|
|
], |
|
14746
|
|
|
'urn:ogc:def:datum:EPSG::6141' => [ |
|
14747
|
|
|
'name' => 'Israel 1993', |
|
14748
|
|
|
'type' => 'geodetic', |
|
14749
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
14750
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14751
|
|
|
'conventional_rs' => null, |
|
14752
|
|
|
'frame_reference_epoch' => null, |
|
14753
|
|
|
'anchor_epoch' => null, |
|
14754
|
|
|
'extent_name' => 'Asia - Middle East - Israel and Palestine Territory onshore', |
|
14755
|
|
|
'help' => 'Fundamental point: Latitude: 31°44\'03.817"N, longitude: 35°12\'16.261"E (of Greenwich). |
|
14756
|
|
|
Replaces Palestine 1923 (datum code 6281). Replaced by IGD05 (datum code 1143).', |
|
14757
|
|
|
], |
|
14758
|
|
|
'urn:ogc:def:datum:EPSG::6142' => [ |
|
14759
|
|
|
'name' => 'Locodjo 1965', |
|
14760
|
|
|
'type' => 'geodetic', |
|
14761
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
14762
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14763
|
|
|
'conventional_rs' => null, |
|
14764
|
|
|
'frame_reference_epoch' => null, |
|
14765
|
|
|
'anchor_epoch' => null, |
|
14766
|
|
|
'extent_name' => 'Cote d\'Ivoire (Ivory Coast)', |
|
14767
|
|
|
'help' => 'Fundamental point: T5 Banco. Latitude: 5°18\'50.5"N, longitude: 4°02\'05.1"W (of Greenwich). |
|
14768
|
|
|
', |
|
14769
|
|
|
], |
|
14770
|
|
|
'urn:ogc:def:datum:EPSG::6143' => [ |
|
14771
|
|
|
'name' => 'Abidjan 1987', |
|
14772
|
|
|
'type' => 'geodetic', |
|
14773
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
14774
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14775
|
|
|
'conventional_rs' => null, |
|
14776
|
|
|
'frame_reference_epoch' => null, |
|
14777
|
|
|
'anchor_epoch' => null, |
|
14778
|
|
|
'extent_name' => 'Cote d\'Ivoire (Ivory Coast)', |
|
14779
|
|
|
'help' => 'Fundamental point: Abidjan I. Latitude: 5°18\'51.01"N, longitude: 4°02\'06.04"W (of Greenwich). |
|
14780
|
|
|
', |
|
14781
|
|
|
], |
|
14782
|
|
|
'urn:ogc:def:datum:EPSG::6144' => [ |
|
14783
|
|
|
'name' => 'Kalianpur 1937', |
|
14784
|
|
|
'type' => 'geodetic', |
|
14785
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015', |
|
14786
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14787
|
|
|
'conventional_rs' => null, |
|
14788
|
|
|
'frame_reference_epoch' => null, |
|
14789
|
|
|
'anchor_epoch' => null, |
|
14790
|
|
|
'extent_name' => 'Asia - Bangladesh; India; Myanmar; Pakistan - onshore', |
|
14791
|
|
|
'help' => 'Fundamental point: Kalianpur. Latitude: 24° 07\'11.260"N, longitude: 77°39\'17.570"E (of Greenwich). |
|
14792
|
|
|
Replaces 1880 adjustment except for topographic mapping. Replaced in Bangladesh and Pakistan by 1962 metrication conversion and in India by 1975 metrication conversion.', |
|
14793
|
|
|
], |
|
14794
|
|
|
'urn:ogc:def:datum:EPSG::6145' => [ |
|
14795
|
|
|
'name' => 'Kalianpur 1962', |
|
14796
|
|
|
'type' => 'geodetic', |
|
14797
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7044', |
|
14798
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14799
|
|
|
'conventional_rs' => null, |
|
14800
|
|
|
'frame_reference_epoch' => null, |
|
14801
|
|
|
'anchor_epoch' => null, |
|
14802
|
|
|
'extent_name' => 'Pakistan', |
|
14803
|
|
|
'help' => 'Fundamental point: Kalianpur. Latitude: 24° 07\'11.260"N, longitude: 77°39\'17.570"E (of Greenwich). |
|
14804
|
|
|
1937 adjustment rescaled by ratio metric conversions of Indian foot (1937) to Indian foot (1962).', |
|
14805
|
|
|
], |
|
14806
|
|
|
'urn:ogc:def:datum:EPSG::6146' => [ |
|
14807
|
|
|
'name' => 'Kalianpur 1975', |
|
14808
|
|
|
'type' => 'geodetic', |
|
14809
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7045', |
|
14810
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14811
|
|
|
'conventional_rs' => null, |
|
14812
|
|
|
'frame_reference_epoch' => null, |
|
14813
|
|
|
'anchor_epoch' => null, |
|
14814
|
|
|
'extent_name' => 'India - mainland', |
|
14815
|
|
|
'help' => 'Fundamental point: Kalianpur. Latitude: 24° 07\'11.260"N, longitude: 77°39\'17.570"E (of Greenwich). |
|
14816
|
|
|
1937 adjustment rescaled by ratio metric conversions of Indian foot (1937) to Indian foot (1975).', |
|
14817
|
|
|
], |
|
14818
|
|
|
'urn:ogc:def:datum:EPSG::6147' => [ |
|
14819
|
|
|
'name' => 'Hanoi 1972', |
|
14820
|
|
|
'type' => 'geodetic', |
|
14821
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024', |
|
14822
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14823
|
|
|
'conventional_rs' => null, |
|
14824
|
|
|
'frame_reference_epoch' => null, |
|
14825
|
|
|
'anchor_epoch' => null, |
|
14826
|
|
|
'extent_name' => 'Vietnam - onshore', |
|
14827
|
|
|
'help' => ' |
|
14828
|
|
|
', |
|
14829
|
|
|
], |
|
14830
|
|
|
'urn:ogc:def:datum:EPSG::6148' => [ |
|
14831
|
|
|
'name' => 'Hartebeesthoek94', |
|
14832
|
|
|
'type' => 'geodetic', |
|
14833
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
14834
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14835
|
|
|
'conventional_rs' => null, |
|
14836
|
|
|
'frame_reference_epoch' => null, |
|
14837
|
|
|
'anchor_epoch' => null, |
|
14838
|
|
|
'extent_name' => 'Africa - South Africa, Lesotho and Eswatini', |
|
14839
|
|
|
'help' => 'Coincident with ITRF91 at epoch 1994.0 at Hartebeesthoek astronomical observatory near Pretoria. |
|
14840
|
|
|
Replaces Cape datum (code 6222).', |
|
14841
|
|
|
], |
|
14842
|
|
|
'urn:ogc:def:datum:EPSG::6149' => [ |
|
14843
|
|
|
'name' => 'CH1903', |
|
14844
|
|
|
'type' => 'geodetic', |
|
14845
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
14846
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14847
|
|
|
'conventional_rs' => null, |
|
14848
|
|
|
'frame_reference_epoch' => null, |
|
14849
|
|
|
'anchor_epoch' => null, |
|
14850
|
|
|
'extent_name' => 'Europe - Liechtenstein and Switzerland', |
|
14851
|
|
|
'help' => 'Fundamental point: Old Bern observatory. Latitude: 46°57\'08.660"N, longitude: 7°26\'22.500"E (of Greenwich). |
|
14852
|
|
|
', |
|
14853
|
|
|
], |
|
14854
|
|
|
'urn:ogc:def:datum:EPSG::6150' => [ |
|
14855
|
|
|
'name' => 'CH1903+', |
|
14856
|
|
|
'type' => 'geodetic', |
|
14857
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
14858
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14859
|
|
|
'conventional_rs' => null, |
|
14860
|
|
|
'frame_reference_epoch' => null, |
|
14861
|
|
|
'anchor_epoch' => null, |
|
14862
|
|
|
'extent_name' => 'Europe - Liechtenstein and Switzerland', |
|
14863
|
|
|
'help' => 'Fundamental point: Zimmerwald observatory. |
|
14864
|
|
|
', |
|
14865
|
|
|
], |
|
14866
|
|
|
'urn:ogc:def:datum:EPSG::6151' => [ |
|
14867
|
|
|
'name' => 'Swiss Terrestrial Reference System 1995', |
|
14868
|
|
|
'type' => 'geodetic', |
|
14869
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
14870
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14871
|
|
|
'conventional_rs' => null, |
|
14872
|
|
|
'frame_reference_epoch' => null, |
|
14873
|
|
|
'anchor_epoch' => null, |
|
14874
|
|
|
'extent_name' => 'Europe - Liechtenstein and Switzerland', |
|
14875
|
|
|
'help' => 'ETRF89 at epoch 1993.0. |
|
14876
|
|
|
First realized through CHTRF95 and subsequently CHTRF98, 2004, 2010 and 2016 with an aim to re-measure every 6 years.', |
|
14877
|
|
|
], |
|
14878
|
|
|
'urn:ogc:def:datum:EPSG::6152' => [ |
|
14879
|
|
|
'name' => 'NAD83 (High Accuracy Reference Network)', |
|
14880
|
|
|
'type' => 'geodetic', |
|
14881
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
14882
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14883
|
|
|
'conventional_rs' => null, |
|
14884
|
|
|
'frame_reference_epoch' => null, |
|
14885
|
|
|
'anchor_epoch' => null, |
|
14886
|
|
|
'extent_name' => 'USA - HARN', |
|
14887
|
|
|
'help' => 'A collection of individual state-wide adjustments including GPS observations made between 1991 and 1996. |
|
14888
|
|
|
In CONUS, American Samoa and Guam replaced by NAD83(FBN). In Alaska replaced by NAD83(NSRS2007). In Hawaii replaced by NAD83(PA11). In Puerto Rico and US Virgin Islands replaced by NAD83(HARN Corrected).', |
|
14889
|
|
|
], |
|
14890
|
|
|
'urn:ogc:def:datum:EPSG::6153' => [ |
|
14891
|
|
|
'name' => 'Rassadiran', |
|
14892
|
|
|
'type' => 'geodetic', |
|
14893
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
14894
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14895
|
|
|
'conventional_rs' => null, |
|
14896
|
|
|
'frame_reference_epoch' => null, |
|
14897
|
|
|
'anchor_epoch' => null, |
|
14898
|
|
|
'extent_name' => 'Iran - Taheri refinery', |
|
14899
|
|
|
'help' => 'Fundamental point: Total1. Latitude: 27°31\'07.784"N, longitude: 52°36\'12.741"E (of Greenwich). |
|
14900
|
|
|
', |
|
14901
|
|
|
], |
|
14902
|
|
|
'urn:ogc:def:datum:EPSG::6154' => [ |
|
14903
|
|
|
'name' => 'European Datum 1950(1977)', |
|
14904
|
|
|
'type' => 'geodetic', |
|
14905
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
14906
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14907
|
|
|
'conventional_rs' => null, |
|
14908
|
|
|
'frame_reference_epoch' => null, |
|
14909
|
|
|
'anchor_epoch' => null, |
|
14910
|
|
|
'extent_name' => 'Iran', |
|
14911
|
|
|
'help' => 'Extension of ED50 over Iran. |
|
14912
|
|
|
Sometimes referred to as ED50-ED77.', |
|
14913
|
|
|
], |
|
14914
|
|
|
'urn:ogc:def:datum:EPSG::6155' => [ |
|
14915
|
|
|
'name' => 'Dabola 1981', |
|
14916
|
|
|
'type' => 'geodetic', |
|
14917
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
14918
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14919
|
|
|
'conventional_rs' => null, |
|
14920
|
|
|
'frame_reference_epoch' => null, |
|
14921
|
|
|
'anchor_epoch' => null, |
|
14922
|
|
|
'extent_name' => 'Guinea - onshore', |
|
14923
|
|
|
'help' => ' |
|
14924
|
|
|
', |
|
14925
|
|
|
], |
|
14926
|
|
|
'urn:ogc:def:datum:EPSG::6156' => [ |
|
14927
|
|
|
'name' => 'System of the Unified Trigonometrical Cadastral Network', |
|
14928
|
|
|
'type' => 'geodetic', |
|
14929
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
14930
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14931
|
|
|
'conventional_rs' => null, |
|
14932
|
|
|
'frame_reference_epoch' => null, |
|
14933
|
|
|
'anchor_epoch' => null, |
|
14934
|
|
|
'extent_name' => 'Europe - Czechoslovakia', |
|
14935
|
|
|
'help' => 'Modification of Austrian MGI datum, code 6312. |
|
14936
|
|
|
', |
|
14937
|
|
|
], |
|
14938
|
|
|
'urn:ogc:def:datum:EPSG::6157' => [ |
|
14939
|
|
|
'name' => 'Mount Dillon', |
|
14940
|
|
|
'type' => 'geodetic', |
|
14941
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007', |
|
14942
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14943
|
|
|
'conventional_rs' => null, |
|
14944
|
|
|
'frame_reference_epoch' => null, |
|
14945
|
|
|
'anchor_epoch' => null, |
|
14946
|
|
|
'extent_name' => 'Trinidad and Tobago - Tobago - onshore', |
|
14947
|
|
|
'help' => 'Fundamental point: Mount Dillon triangulation station. Latitude: 11°15\'07.843"N, longitude: 60°41\'09.632"W (of Greenwich). |
|
14948
|
|
|
', |
|
14949
|
|
|
], |
|
14950
|
|
|
'urn:ogc:def:datum:EPSG::6158' => [ |
|
14951
|
|
|
'name' => 'Naparima 1955', |
|
14952
|
|
|
'type' => 'geodetic', |
|
14953
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
14954
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14955
|
|
|
'conventional_rs' => null, |
|
14956
|
|
|
'frame_reference_epoch' => null, |
|
14957
|
|
|
'anchor_epoch' => null, |
|
14958
|
|
|
'extent_name' => 'Trinidad and Tobago - Trinidad - onshore', |
|
14959
|
|
|
'help' => 'Fundamental point: Naparima. Latitude: 10°16\'44.860"N, longitude: 61°27\'34.620"W (of Greenwich). |
|
14960
|
|
|
Extended to Tobago as Naparima 1972. (Note: Naparima 1972 is not used in Trinidad).', |
|
14961
|
|
|
], |
|
14962
|
|
|
'urn:ogc:def:datum:EPSG::6159' => [ |
|
14963
|
|
|
'name' => 'European Libyan Datum 1979', |
|
14964
|
|
|
'type' => 'geodetic', |
|
14965
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
14966
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14967
|
|
|
'conventional_rs' => null, |
|
14968
|
|
|
'frame_reference_epoch' => null, |
|
14969
|
|
|
'anchor_epoch' => null, |
|
14970
|
|
|
'extent_name' => 'Libya', |
|
14971
|
|
|
'help' => 'Extension of ED50 over Libya. |
|
14972
|
|
|
', |
|
14973
|
|
|
], |
|
14974
|
|
|
'urn:ogc:def:datum:EPSG::6160' => [ |
|
14975
|
|
|
'name' => 'Chos Malal 1914', |
|
14976
|
|
|
'type' => 'geodetic', |
|
14977
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
14978
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14979
|
|
|
'conventional_rs' => null, |
|
14980
|
|
|
'frame_reference_epoch' => null, |
|
14981
|
|
|
'anchor_epoch' => null, |
|
14982
|
|
|
'extent_name' => 'Argentina - Mendoza and Neuquen', |
|
14983
|
|
|
'help' => 'Chos Malal police station. |
|
14984
|
|
|
Also known as Quini-Huao. Replaced by Campo Inchauspe (code 6221) for topographic mapping, use for oil exploration and production continues.', |
|
14985
|
|
|
], |
|
14986
|
|
|
'urn:ogc:def:datum:EPSG::6161' => [ |
|
14987
|
|
|
'name' => 'Pampa del Castillo', |
|
14988
|
|
|
'type' => 'geodetic', |
|
14989
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
14990
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
14991
|
|
|
'conventional_rs' => null, |
|
14992
|
|
|
'frame_reference_epoch' => null, |
|
14993
|
|
|
'anchor_epoch' => null, |
|
14994
|
|
|
'extent_name' => 'Argentina - 42.5°S to 50.3°S', |
|
14995
|
|
|
'help' => ' |
|
14996
|
|
|
Replaced by Campo Inchauspe (code 6221) for topographic mapping, use for oil exploration and production in Golfo San Jorge basin (44°S to 47.5°S) continues.', |
|
14997
|
|
|
], |
|
14998
|
|
|
'urn:ogc:def:datum:EPSG::6162' => [ |
|
14999
|
|
|
'name' => 'Korean Datum 1985', |
|
15000
|
|
|
'type' => 'geodetic', |
|
15001
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
15002
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15003
|
|
|
'conventional_rs' => null, |
|
15004
|
|
|
'frame_reference_epoch' => null, |
|
15005
|
|
|
'anchor_epoch' => null, |
|
15006
|
|
|
'extent_name' => 'Korea, Republic of (South Korea) - onshore', |
|
15007
|
|
|
'help' => 'Fundamental point: Suwon. Latitude 37°16\'31.9034"N, longitude 127°03\'05.1451"E of Greenwich. This is consistent with the Tokyo 1918 datum latitude and longitude. |
|
15008
|
|
|
Replaces Tokyo 1918 (datum code 6301). Replaced by KGD2002 (datum code 6737).', |
|
15009
|
|
|
], |
|
15010
|
|
|
'urn:ogc:def:datum:EPSG::6163' => [ |
|
15011
|
|
|
'name' => 'Yemen National Geodetic Network 1996', |
|
15012
|
|
|
'type' => 'geodetic', |
|
15013
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
15014
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15015
|
|
|
'conventional_rs' => null, |
|
15016
|
|
|
'frame_reference_epoch' => null, |
|
15017
|
|
|
'anchor_epoch' => null, |
|
15018
|
|
|
'extent_name' => 'Yemen', |
|
15019
|
|
|
'help' => 'Sana\'a IGN reference marker. |
|
15020
|
|
|
', |
|
15021
|
|
|
], |
|
15022
|
|
|
'urn:ogc:def:datum:EPSG::6164' => [ |
|
15023
|
|
|
'name' => 'South Yemen', |
|
15024
|
|
|
'type' => 'geodetic', |
|
15025
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024', |
|
15026
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15027
|
|
|
'conventional_rs' => null, |
|
15028
|
|
|
'frame_reference_epoch' => null, |
|
15029
|
|
|
'anchor_epoch' => null, |
|
15030
|
|
|
'extent_name' => 'Yemen - South Yemen - mainland', |
|
15031
|
|
|
'help' => ' |
|
15032
|
|
|
', |
|
15033
|
|
|
], |
|
15034
|
|
|
'urn:ogc:def:datum:EPSG::6165' => [ |
|
15035
|
|
|
'name' => 'Bissau', |
|
15036
|
|
|
'type' => 'geodetic', |
|
15037
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15038
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15039
|
|
|
'conventional_rs' => null, |
|
15040
|
|
|
'frame_reference_epoch' => null, |
|
15041
|
|
|
'anchor_epoch' => null, |
|
15042
|
|
|
'extent_name' => 'Guinea-Bissau - onshore', |
|
15043
|
|
|
'help' => ' |
|
15044
|
|
|
', |
|
15045
|
|
|
], |
|
15046
|
|
|
'urn:ogc:def:datum:EPSG::6166' => [ |
|
15047
|
|
|
'name' => 'Korean Datum 1995', |
|
15048
|
|
|
'type' => 'geodetic', |
|
15049
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
15050
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15051
|
|
|
'conventional_rs' => null, |
|
15052
|
|
|
'frame_reference_epoch' => null, |
|
15053
|
|
|
'anchor_epoch' => null, |
|
15054
|
|
|
'extent_name' => 'Korea, Republic of (South Korea) - onshore', |
|
15055
|
|
|
'help' => ' |
|
15056
|
|
|
', |
|
15057
|
|
|
], |
|
15058
|
|
|
'urn:ogc:def:datum:EPSG::6167' => [ |
|
15059
|
|
|
'name' => 'New Zealand Geodetic Datum 2000', |
|
15060
|
|
|
'type' => 'geodetic', |
|
15061
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
15062
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15063
|
|
|
'conventional_rs' => null, |
|
15064
|
|
|
'frame_reference_epoch' => null, |
|
15065
|
|
|
'anchor_epoch' => null, |
|
15066
|
|
|
'extent_name' => 'New Zealand', |
|
15067
|
|
|
'help' => 'Based on ITRF96 at epoch 2000.0 |
|
15068
|
|
|
Replaces New Zealand Geodetic Datum 1949 (code 6272) and Chatham Islands Datum 1979 (code 6673) from March 2000.', |
|
15069
|
|
|
], |
|
15070
|
|
|
'urn:ogc:def:datum:EPSG::6168' => [ |
|
15071
|
|
|
'name' => 'Accra', |
|
15072
|
|
|
'type' => 'geodetic', |
|
15073
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7029', |
|
15074
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15075
|
|
|
'conventional_rs' => null, |
|
15076
|
|
|
'frame_reference_epoch' => null, |
|
15077
|
|
|
'anchor_epoch' => null, |
|
15078
|
|
|
'extent_name' => 'Ghana', |
|
15079
|
|
|
'help' => 'Fundamental point: GCS Station 547. Latitude: 5°23\'43.3"N, longitude: 0°11\'52.3"W (of Greenwich). |
|
15080
|
|
|
Replaced in 1978 by Leigon datum (code 6250).', |
|
15081
|
|
|
], |
|
15082
|
|
|
'urn:ogc:def:datum:EPSG::6169' => [ |
|
15083
|
|
|
'name' => 'American Samoa 1962', |
|
15084
|
|
|
'type' => 'geodetic', |
|
15085
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
15086
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15087
|
|
|
'conventional_rs' => null, |
|
15088
|
|
|
'frame_reference_epoch' => null, |
|
15089
|
|
|
'anchor_epoch' => null, |
|
15090
|
|
|
'extent_name' => 'American Samoa - 2 main island groups', |
|
15091
|
|
|
'help' => 'Fundamental point: Betty 13 eccentric. Latitude: 14°20\'08.34"S, longitude: 170°42\'52.25"W (of Greenwich). |
|
15092
|
|
|
', |
|
15093
|
|
|
], |
|
15094
|
|
|
'urn:ogc:def:datum:EPSG::6170' => [ |
|
15095
|
|
|
'name' => 'Sistema de Referencia Geocentrico para America del Sur 1995', |
|
15096
|
|
|
'type' => 'geodetic', |
|
15097
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
15098
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15099
|
|
|
'conventional_rs' => null, |
|
15100
|
|
|
'frame_reference_epoch' => null, |
|
15101
|
|
|
'anchor_epoch' => null, |
|
15102
|
|
|
'extent_name' => 'South America - SIRGAS 1995 by country', |
|
15103
|
|
|
'help' => 'ITRF94 at epoch 1995.4. |
|
15104
|
|
|
Realized by a frame of 58 stations observed in 1995 and adjusted in ITRF94. Provisional NIMA adjustment reference epoch was 1995.42 but final report accepted value is 1995.40. Replaced by SIRGAS 2000.', |
|
15105
|
|
|
], |
|
15106
|
|
|
'urn:ogc:def:datum:EPSG::6171' => [ |
|
15107
|
|
|
'name' => 'Reseau Geodesique Francais 1993 v1', |
|
15108
|
|
|
'type' => 'geodetic', |
|
15109
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
15110
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15111
|
|
|
'conventional_rs' => null, |
|
15112
|
|
|
'frame_reference_epoch' => null, |
|
15113
|
|
|
'anchor_epoch' => null, |
|
15114
|
|
|
'extent_name' => 'France', |
|
15115
|
|
|
'help' => 'Coincident with ETRS89 at epoch 1993.0. Derived from long-term GNSS observations at 23 points aligned to ETRF93 @ 1993.0 through fundamental points at Grasse, Toulouse and Brest. Network supplemented in 1994 and 1995 by approx. 1000 additional stations. |
|
15116
|
|
|
RGF93 v1 is a realization of ETRS89. Replaced by RGF93 v2 (datum code 1312) from 2010-06-18.', |
|
15117
|
|
|
], |
|
15118
|
|
|
'urn:ogc:def:datum:EPSG::6173' => [ |
|
15119
|
|
|
'name' => 'IRENET95', |
|
15120
|
|
|
'type' => 'geodetic', |
|
15121
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
15122
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15123
|
|
|
'conventional_rs' => null, |
|
15124
|
|
|
'frame_reference_epoch' => null, |
|
15125
|
|
|
'anchor_epoch' => null, |
|
15126
|
|
|
'extent_name' => 'Europe - Ireland (Republic and Ulster) - onshore', |
|
15127
|
|
|
'help' => 'ETRS89 stations in Ireland |
|
15128
|
|
|
Densification of ETRS89', |
|
15129
|
|
|
], |
|
15130
|
|
|
'urn:ogc:def:datum:EPSG::6174' => [ |
|
15131
|
|
|
'name' => 'Sierra Leone Colony 1924', |
|
15132
|
|
|
'type' => 'geodetic', |
|
15133
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7029', |
|
15134
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15135
|
|
|
'conventional_rs' => null, |
|
15136
|
|
|
'frame_reference_epoch' => null, |
|
15137
|
|
|
'anchor_epoch' => null, |
|
15138
|
|
|
'extent_name' => 'Sierra Leone - Freetown Peninsula', |
|
15139
|
|
|
'help' => 'Fundamental point: Kortright. Latitude: 8°28\'44.4"N, longitude: 13°13\'03.81"W (of Greenwich). |
|
15140
|
|
|
', |
|
15141
|
|
|
], |
|
15142
|
|
|
'urn:ogc:def:datum:EPSG::6175' => [ |
|
15143
|
|
|
'name' => 'Sierra Leone 1968', |
|
15144
|
|
|
'type' => 'geodetic', |
|
15145
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
15146
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15147
|
|
|
'conventional_rs' => null, |
|
15148
|
|
|
'frame_reference_epoch' => null, |
|
15149
|
|
|
'anchor_epoch' => null, |
|
15150
|
|
|
'extent_name' => 'Sierra Leone - onshore', |
|
15151
|
|
|
'help' => 'Fundamental point: SLX2 Astro. Latitude: 8°27\'17.567"N, longitude: 12°49\'40.186"W (of Greenwich). |
|
15152
|
|
|
Extension and readjustment with additional observations of 1960 network. Coordinates of 1960 stations change by less than 3 metres.', |
|
15153
|
|
|
], |
|
15154
|
|
|
'urn:ogc:def:datum:EPSG::6176' => [ |
|
15155
|
|
|
'name' => 'Australian Antarctic Datum 1998', |
|
15156
|
|
|
'type' => 'geodetic', |
|
15157
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
15158
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15159
|
|
|
'conventional_rs' => null, |
|
15160
|
|
|
'frame_reference_epoch' => null, |
|
15161
|
|
|
'anchor_epoch' => null, |
|
15162
|
|
|
'extent_name' => 'Antarctica - Australian sector', |
|
15163
|
|
|
'help' => ' |
|
15164
|
|
|
', |
|
15165
|
|
|
], |
|
15166
|
|
|
'urn:ogc:def:datum:EPSG::6178' => [ |
|
15167
|
|
|
'name' => 'Pulkovo 1942(83)', |
|
15168
|
|
|
'type' => 'geodetic', |
|
15169
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024', |
|
15170
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15171
|
|
|
'conventional_rs' => null, |
|
15172
|
|
|
'frame_reference_epoch' => null, |
|
15173
|
|
|
'anchor_epoch' => null, |
|
15174
|
|
|
'extent_name' => 'Europe - onshore - eastern - S-42(83)', |
|
15175
|
|
|
'help' => 'Fundamental point: Pulkovo observatory. Latitude: 59°46\'18.550"N, longitude: 30°19\'42.090"E (of Greenwich). |
|
15176
|
|
|
1983 international adjustment of Uniform Astro-Geodetic Network of countries of central and eastern Europe.', |
|
15177
|
|
|
], |
|
15178
|
|
|
'urn:ogc:def:datum:EPSG::6179' => [ |
|
15179
|
|
|
'name' => 'Pulkovo 1942(58)', |
|
15180
|
|
|
'type' => 'geodetic', |
|
15181
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024', |
|
15182
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15183
|
|
|
'conventional_rs' => null, |
|
15184
|
|
|
'frame_reference_epoch' => null, |
|
15185
|
|
|
'anchor_epoch' => null, |
|
15186
|
|
|
'extent_name' => 'Europe - onshore - eastern - S-42(58)', |
|
15187
|
|
|
'help' => 'Fundamental point: Pulkovo observatory. Latitude: 59°46\'18.550"N, longitude: 30°19\'42.090"E (of Greenwich). |
|
15188
|
|
|
1956 international adjustment of Uniform Astro-Geodetic Network of countries of central and eastern Europe. Locally densified during 1957 and 1958.', |
|
15189
|
|
|
], |
|
15190
|
|
|
'urn:ogc:def:datum:EPSG::6180' => [ |
|
15191
|
|
|
'name' => 'Estonia 1997', |
|
15192
|
|
|
'type' => 'geodetic', |
|
15193
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
15194
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15195
|
|
|
'conventional_rs' => null, |
|
15196
|
|
|
'frame_reference_epoch' => null, |
|
15197
|
|
|
'anchor_epoch' => null, |
|
15198
|
|
|
'extent_name' => 'Estonia', |
|
15199
|
|
|
'help' => 'Densification of ETRS89 during EUREF-ESTONIA97 campaign through transformation from ITRF96 at epoch 1997.56. |
|
15200
|
|
|
Replaces Estonia 1992 adjustment (code 6133).', |
|
15201
|
|
|
], |
|
15202
|
|
|
'urn:ogc:def:datum:EPSG::6181' => [ |
|
15203
|
|
|
'name' => 'Luxembourg Reference Frame', |
|
15204
|
|
|
'type' => 'geodetic', |
|
15205
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15206
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15207
|
|
|
'conventional_rs' => null, |
|
15208
|
|
|
'frame_reference_epoch' => null, |
|
15209
|
|
|
'anchor_epoch' => null, |
|
15210
|
|
|
'extent_name' => 'Luxembourg', |
|
15211
|
|
|
'help' => 'Fundamental point of 1930 triangulation: northern station of Habay-la-Neuve baseline in Belgium. Latitude: 49°43\'24.408"N, longitude: 5°38\'22.470"E (of Greenwich). Since 2006 LUREF has been realized by GNSS station positions and transformation from ETRF. |
|
15212
|
|
|
The transformation from ETRF 2000 first defining LUREF in 2006 has been recomputed in 2014 and 2020.', |
|
15213
|
|
|
], |
|
15214
|
|
|
'urn:ogc:def:datum:EPSG::6182' => [ |
|
15215
|
|
|
'name' => 'Azores Occidental Islands 1939', |
|
15216
|
|
|
'type' => 'geodetic', |
|
15217
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15218
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15219
|
|
|
'conventional_rs' => null, |
|
15220
|
|
|
'frame_reference_epoch' => null, |
|
15221
|
|
|
'anchor_epoch' => null, |
|
15222
|
|
|
'extent_name' => 'Portugal - Azores W - onshore', |
|
15223
|
|
|
'help' => 'Fundamental point: Observatario Meteorologico Flores. |
|
15224
|
|
|
', |
|
15225
|
|
|
], |
|
15226
|
|
|
'urn:ogc:def:datum:EPSG::6183' => [ |
|
15227
|
|
|
'name' => 'Azores Central Islands 1948', |
|
15228
|
|
|
'type' => 'geodetic', |
|
15229
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15230
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15231
|
|
|
'conventional_rs' => null, |
|
15232
|
|
|
'frame_reference_epoch' => null, |
|
15233
|
|
|
'anchor_epoch' => null, |
|
15234
|
|
|
'extent_name' => 'Portugal - Azores C - onshore', |
|
15235
|
|
|
'help' => 'Fundamental point: Graciosa south west base. Latitude: 39°03\'54.934"N, longitude: 28°02\'23.882"W (of Greenwich). |
|
15236
|
|
|
Replaced by 1995 adjustment (datum code 6665).', |
|
15237
|
|
|
], |
|
15238
|
|
|
'urn:ogc:def:datum:EPSG::6184' => [ |
|
15239
|
|
|
'name' => 'Azores Oriental Islands 1940', |
|
15240
|
|
|
'type' => 'geodetic', |
|
15241
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15242
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15243
|
|
|
'conventional_rs' => null, |
|
15244
|
|
|
'frame_reference_epoch' => null, |
|
15245
|
|
|
'anchor_epoch' => null, |
|
15246
|
|
|
'extent_name' => 'Portugal - Azores E - onshore', |
|
15247
|
|
|
'help' => 'Fundamental point: Forte de São Bras. |
|
15248
|
|
|
Replaced by 1995 adjustment (datum code 6664).', |
|
15249
|
|
|
], |
|
15250
|
|
|
'urn:ogc:def:datum:EPSG::6188' => [ |
|
15251
|
|
|
'name' => 'OSNI 1952', |
|
15252
|
|
|
'type' => 'geodetic', |
|
15253
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001', |
|
15254
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15255
|
|
|
'conventional_rs' => null, |
|
15256
|
|
|
'frame_reference_epoch' => null, |
|
15257
|
|
|
'anchor_epoch' => null, |
|
15258
|
|
|
'extent_name' => 'UK - Northern Ireland - onshore', |
|
15259
|
|
|
'help' => 'Position fixed to the coordinates from the 19th century Principle Triangulation of station Divis. Scale and orientation controlled by position of Principle Triangulation stations Knocklayd and Trostan. |
|
15260
|
|
|
Replaced by Geodetic Datum of 1965 alias 1975 Mapping Adjustment or TM75 (datum code 6300).', |
|
15261
|
|
|
], |
|
15262
|
|
|
'urn:ogc:def:datum:EPSG::6189' => [ |
|
15263
|
|
|
'name' => 'Red Geodesica Venezolana', |
|
15264
|
|
|
'type' => 'geodetic', |
|
15265
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
15266
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15267
|
|
|
'conventional_rs' => null, |
|
15268
|
|
|
'frame_reference_epoch' => null, |
|
15269
|
|
|
'anchor_epoch' => null, |
|
15270
|
|
|
'extent_name' => 'Venezuela', |
|
15271
|
|
|
'help' => 'Realised by a frame of 67 stations observed in 1995 as a densification of the SIRGAS campaign and adjusted in the ITRF94 at epoch 1995.4. |
|
15272
|
|
|
', |
|
15273
|
|
|
], |
|
15274
|
|
|
'urn:ogc:def:datum:EPSG::6190' => [ |
|
15275
|
|
|
'name' => 'Posiciones Geodesicas Argentinas 1998', |
|
15276
|
|
|
'type' => 'geodetic', |
|
15277
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
15278
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15279
|
|
|
'conventional_rs' => null, |
|
15280
|
|
|
'frame_reference_epoch' => null, |
|
15281
|
|
|
'anchor_epoch' => null, |
|
15282
|
|
|
'extent_name' => 'Argentina', |
|
15283
|
|
|
'help' => 'A geodetic network of 136 high accuracy surveyed points. Densification of SIRGAS 1995; ITRF94 at epoch 1995.4. |
|
15284
|
|
|
Replaced POSGAR 1994 (datum code 6694) for technical, but not legal, purposes. Replaced by POSGAR 2007 (datum code 1062) from May 2009.', |
|
15285
|
|
|
], |
|
15286
|
|
|
'urn:ogc:def:datum:EPSG::6191' => [ |
|
15287
|
|
|
'name' => 'Albanian 1987', |
|
15288
|
|
|
'type' => 'geodetic', |
|
15289
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024', |
|
15290
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15291
|
|
|
'conventional_rs' => null, |
|
15292
|
|
|
'frame_reference_epoch' => null, |
|
15293
|
|
|
'anchor_epoch' => null, |
|
15294
|
|
|
'extent_name' => 'Albania - onshore', |
|
15295
|
|
|
'help' => ' |
|
15296
|
|
|
', |
|
15297
|
|
|
], |
|
15298
|
|
|
'urn:ogc:def:datum:EPSG::6192' => [ |
|
15299
|
|
|
'name' => 'Douala 1948', |
|
15300
|
|
|
'type' => 'geodetic', |
|
15301
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15302
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15303
|
|
|
'conventional_rs' => null, |
|
15304
|
|
|
'frame_reference_epoch' => null, |
|
15305
|
|
|
'anchor_epoch' => null, |
|
15306
|
|
|
'extent_name' => 'Cameroon - coastal area', |
|
15307
|
|
|
'help' => 'South pillar of Douala base; 4°00\'40.64"N, 9°42\'30.41"E (of Greenwich). |
|
15308
|
|
|
Replaced by Manoca 1962 datum (code 6193).', |
|
15309
|
|
|
], |
|
15310
|
|
|
'urn:ogc:def:datum:EPSG::6193' => [ |
|
15311
|
|
|
'name' => 'Manoca 1962', |
|
15312
|
|
|
'type' => 'geodetic', |
|
15313
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
15314
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15315
|
|
|
'conventional_rs' => null, |
|
15316
|
|
|
'frame_reference_epoch' => null, |
|
15317
|
|
|
'anchor_epoch' => null, |
|
15318
|
|
|
'extent_name' => 'Cameroon - coastal area', |
|
15319
|
|
|
'help' => 'Reservoir centre at the Manoca tower ("tube Suel"), 3°51\'49.896"N, 9°36\'49.347"E (of Greenwich). |
|
15320
|
|
|
The intent of the Bukavu 1953 conference was to adopt the Clarke 1880 (RGS) ellipsoid (code 7012) but in practice this datum has used the IGN version. Replaces Douala 1948 (code 6192).', |
|
15321
|
|
|
], |
|
15322
|
|
|
'urn:ogc:def:datum:EPSG::6194' => [ |
|
15323
|
|
|
'name' => 'Qornoq 1927', |
|
15324
|
|
|
'type' => 'geodetic', |
|
15325
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15326
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15327
|
|
|
'conventional_rs' => null, |
|
15328
|
|
|
'frame_reference_epoch' => null, |
|
15329
|
|
|
'anchor_epoch' => null, |
|
15330
|
|
|
'extent_name' => 'Greenland - west coast', |
|
15331
|
|
|
'help' => 'Fundamental point: Station 7008. Latitude: 64°31\'06.27"N, longitude: 51°12\'24.86"W (of Greenwich). |
|
15332
|
|
|
', |
|
15333
|
|
|
], |
|
15334
|
|
|
'urn:ogc:def:datum:EPSG::6195' => [ |
|
15335
|
|
|
'name' => 'Scoresbysund 1952', |
|
15336
|
|
|
'type' => 'geodetic', |
|
15337
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15338
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15339
|
|
|
'conventional_rs' => null, |
|
15340
|
|
|
'frame_reference_epoch' => null, |
|
15341
|
|
|
'anchor_epoch' => null, |
|
15342
|
|
|
'extent_name' => 'Greenland - Scoresbysund area', |
|
15343
|
|
|
'help' => ' |
|
15344
|
|
|
', |
|
15345
|
|
|
], |
|
15346
|
|
|
'urn:ogc:def:datum:EPSG::6196' => [ |
|
15347
|
|
|
'name' => 'Ammassalik 1958', |
|
15348
|
|
|
'type' => 'geodetic', |
|
15349
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15350
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15351
|
|
|
'conventional_rs' => null, |
|
15352
|
|
|
'frame_reference_epoch' => null, |
|
15353
|
|
|
'anchor_epoch' => null, |
|
15354
|
|
|
'extent_name' => 'Greenland - Ammassalik area', |
|
15355
|
|
|
'help' => ' |
|
15356
|
|
|
', |
|
15357
|
|
|
], |
|
15358
|
|
|
'urn:ogc:def:datum:EPSG::6197' => [ |
|
15359
|
|
|
'name' => 'Garoua', |
|
15360
|
|
|
'type' => 'geodetic', |
|
15361
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
15362
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15363
|
|
|
'conventional_rs' => null, |
|
15364
|
|
|
'frame_reference_epoch' => null, |
|
15365
|
|
|
'anchor_epoch' => null, |
|
15366
|
|
|
'extent_name' => 'Cameroon - Garoua area', |
|
15367
|
|
|
'help' => 'Fundamental point: IGN astronomical station and benchmark no. 16 at Tongo. Latitude 8°55\'08.74"N, longitude 13°30\'43.19"E (of Greenwich). |
|
15368
|
|
|
', |
|
15369
|
|
|
], |
|
15370
|
|
|
'urn:ogc:def:datum:EPSG::6198' => [ |
|
15371
|
|
|
'name' => 'Kousseri', |
|
15372
|
|
|
'type' => 'geodetic', |
|
15373
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
15374
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15375
|
|
|
'conventional_rs' => null, |
|
15376
|
|
|
'frame_reference_epoch' => null, |
|
15377
|
|
|
'anchor_epoch' => null, |
|
15378
|
|
|
'extent_name' => 'Cameroon - N\'Djamena area', |
|
15379
|
|
|
'help' => 'IGN astronomical station Dabanga; 11°55\'05.9"N 14°38\'40.8"E (of Greenwich). |
|
15380
|
|
|
', |
|
15381
|
|
|
], |
|
15382
|
|
|
'urn:ogc:def:datum:EPSG::6199' => [ |
|
15383
|
|
|
'name' => 'Egypt 1930', |
|
15384
|
|
|
'type' => 'geodetic', |
|
15385
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15386
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15387
|
|
|
'conventional_rs' => null, |
|
15388
|
|
|
'frame_reference_epoch' => null, |
|
15389
|
|
|
'anchor_epoch' => null, |
|
15390
|
|
|
'extent_name' => 'Egypt - onshore', |
|
15391
|
|
|
'help' => 'Fundamental point: Station F1 (Venus). Latitude: 30°01\'42.86"N, longitude: 31°16\'37.05"E (of Greenwich). |
|
15392
|
|
|
Note that Egypt 1930 uses the International 1924 ellipsoid, unlike the Egypt 1907 datum (code 6229) which uses the Helmert ellipsoid. Oil industry references to the Egypt 1930 datum name and the Helmert ellipsoid probably mean Egypt 1907 datum.', |
|
15393
|
|
|
], |
|
15394
|
|
|
'urn:ogc:def:datum:EPSG::6200' => [ |
|
15395
|
|
|
'name' => 'Pulkovo 1995', |
|
15396
|
|
|
'type' => 'geodetic', |
|
15397
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024', |
|
15398
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15399
|
|
|
'conventional_rs' => null, |
|
15400
|
|
|
'frame_reference_epoch' => null, |
|
15401
|
|
|
'anchor_epoch' => null, |
|
15402
|
|
|
'extent_name' => 'Russia', |
|
15403
|
|
|
'help' => 'Fundamental point: Pulkovo observatory. Latitude: 59°46\'15.359"N, longitude: 30°19\'28.318"E (of Greenwich). |
|
15404
|
|
|
', |
|
15405
|
|
|
], |
|
15406
|
|
|
'urn:ogc:def:datum:EPSG::6201' => [ |
|
15407
|
|
|
'name' => 'Adindan', |
|
15408
|
|
|
'type' => 'geodetic', |
|
15409
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
15410
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15411
|
|
|
'conventional_rs' => null, |
|
15412
|
|
|
'frame_reference_epoch' => null, |
|
15413
|
|
|
'anchor_epoch' => null, |
|
15414
|
|
|
'extent_name' => 'Africa - Eritrea, Ethiopia, South Sudan and Sudan', |
|
15415
|
|
|
'help' => 'Fundamental point: Station 15; Adindan. Latitude: 22°10\'07.110"N, longitude: 31°29\'21.608"E (of Greenwich). |
|
15416
|
|
|
The 12th parallel traverse of 1966-70 (Point 58 datum, code 6620) is connected to the Blue Nile 1958 network in western Sudan. This has given rise to misconceptions that the Blue Nile network is used in west Africa.', |
|
15417
|
|
|
], |
|
15418
|
|
|
'urn:ogc:def:datum:EPSG::6202' => [ |
|
15419
|
|
|
'name' => 'Australian Geodetic Datum 1966', |
|
15420
|
|
|
'type' => 'geodetic', |
|
15421
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7003', |
|
15422
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15423
|
|
|
'conventional_rs' => null, |
|
15424
|
|
|
'frame_reference_epoch' => null, |
|
15425
|
|
|
'anchor_epoch' => null, |
|
15426
|
|
|
'extent_name' => 'Australasia - Australia and PNG - AGD66', |
|
15427
|
|
|
'help' => 'Fundamental point: Johnson Memorial Cairn. Latitude: 25°56\'54.5515"S, longitude: 133°12\'30.0771"E (of Greenwich). |
|
15428
|
|
|
', |
|
15429
|
|
|
], |
|
15430
|
|
|
'urn:ogc:def:datum:EPSG::6203' => [ |
|
15431
|
|
|
'name' => 'Australian Geodetic Datum 1984', |
|
15432
|
|
|
'type' => 'geodetic', |
|
15433
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7003', |
|
15434
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15435
|
|
|
'conventional_rs' => null, |
|
15436
|
|
|
'frame_reference_epoch' => null, |
|
15437
|
|
|
'anchor_epoch' => null, |
|
15438
|
|
|
'extent_name' => 'Australia - AGD84', |
|
15439
|
|
|
'help' => 'Fundamental point: Johnson Memorial Cairn. Latitude: 25°56\'54.5515"S, longitude: 133°12\'30.0771"E (of Greenwich). |
|
15440
|
|
|
Uses all data from 1966 adjustment with additional observations, improved software and a geoid model.', |
|
15441
|
|
|
], |
|
15442
|
|
|
'urn:ogc:def:datum:EPSG::6204' => [ |
|
15443
|
|
|
'name' => 'Ain el Abd 1970', |
|
15444
|
|
|
'type' => 'geodetic', |
|
15445
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15446
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15447
|
|
|
'conventional_rs' => null, |
|
15448
|
|
|
'frame_reference_epoch' => null, |
|
15449
|
|
|
'anchor_epoch' => null, |
|
15450
|
|
|
'extent_name' => 'Asia - Middle East - Bahrain, Kuwait and Saudi Arabia', |
|
15451
|
|
|
'help' => 'Fundamental point: Ain El Abd. Latitude: 28°14\'06.171"N, longitude: 48°16\'20.906"E (of Greenwich). |
|
15452
|
|
|
', |
|
15453
|
|
|
], |
|
15454
|
|
|
'urn:ogc:def:datum:EPSG::6205' => [ |
|
15455
|
|
|
'name' => 'Afgooye', |
|
15456
|
|
|
'type' => 'geodetic', |
|
15457
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024', |
|
15458
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15459
|
|
|
'conventional_rs' => null, |
|
15460
|
|
|
'frame_reference_epoch' => null, |
|
15461
|
|
|
'anchor_epoch' => null, |
|
15462
|
|
|
'extent_name' => 'Somalia - onshore', |
|
15463
|
|
|
'help' => ' |
|
15464
|
|
|
', |
|
15465
|
|
|
], |
|
15466
|
|
|
'urn:ogc:def:datum:EPSG::6206' => [ |
|
15467
|
|
|
'name' => 'Agadez', |
|
15468
|
|
|
'type' => 'geodetic', |
|
15469
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
15470
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15471
|
|
|
'conventional_rs' => null, |
|
15472
|
|
|
'frame_reference_epoch' => null, |
|
15473
|
|
|
'anchor_epoch' => null, |
|
15474
|
|
|
'extent_name' => 'Niger', |
|
15475
|
|
|
'help' => ' |
|
15476
|
|
|
', |
|
15477
|
|
|
], |
|
15478
|
|
|
'urn:ogc:def:datum:EPSG::6207' => [ |
|
15479
|
|
|
'name' => 'Lisbon 1937', |
|
15480
|
|
|
'type' => 'geodetic', |
|
15481
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15482
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15483
|
|
|
'conventional_rs' => null, |
|
15484
|
|
|
'frame_reference_epoch' => null, |
|
15485
|
|
|
'anchor_epoch' => null, |
|
15486
|
|
|
'extent_name' => 'Portugal - mainland - onshore', |
|
15487
|
|
|
'help' => 'Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42\'43.631"N, longitude: 9°07\'54.862"W (of Greenwich). |
|
15488
|
|
|
Replaces Lisbon 1890 adjustment (which used Bessel 1841 ellipsoid).', |
|
15489
|
|
|
], |
|
15490
|
|
|
'urn:ogc:def:datum:EPSG::6208' => [ |
|
15491
|
|
|
'name' => 'Aratu', |
|
15492
|
|
|
'type' => 'geodetic', |
|
15493
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15494
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15495
|
|
|
'conventional_rs' => null, |
|
15496
|
|
|
'frame_reference_epoch' => null, |
|
15497
|
|
|
'anchor_epoch' => null, |
|
15498
|
|
|
'extent_name' => 'Brazil - Aratu', |
|
15499
|
|
|
'help' => ' |
|
15500
|
|
|
', |
|
15501
|
|
|
], |
|
15502
|
|
|
'urn:ogc:def:datum:EPSG::6209' => [ |
|
15503
|
|
|
'name' => 'Arc 1950', |
|
15504
|
|
|
'type' => 'geodetic', |
|
15505
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7013', |
|
15506
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15507
|
|
|
'conventional_rs' => null, |
|
15508
|
|
|
'frame_reference_epoch' => null, |
|
15509
|
|
|
'anchor_epoch' => null, |
|
15510
|
|
|
'extent_name' => 'Africa - Botswana, Malawi, Zambia, Zimbabwe', |
|
15511
|
|
|
'help' => 'Fundamental point: Buffelsfontein. Latitude: 33°59\'32.000"S, longitude: 25°30\'44.622"E (of Greenwich). |
|
15512
|
|
|
', |
|
15513
|
|
|
], |
|
15514
|
|
|
'urn:ogc:def:datum:EPSG::6210' => [ |
|
15515
|
|
|
'name' => 'Arc 1960', |
|
15516
|
|
|
'type' => 'geodetic', |
|
15517
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
15518
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15519
|
|
|
'conventional_rs' => null, |
|
15520
|
|
|
'frame_reference_epoch' => null, |
|
15521
|
|
|
'anchor_epoch' => null, |
|
15522
|
|
|
'extent_name' => 'Africa - Burundi, Kenya, Rwanda, Tanzania and Uganda', |
|
15523
|
|
|
'help' => 'Fundamental point: Buffelsfontein. Latitude: 33°59\'32.000"S, longitude: 25°30\'44.622"E (of Greenwich). |
|
15524
|
|
|
', |
|
15525
|
|
|
], |
|
15526
|
|
|
'urn:ogc:def:datum:EPSG::6211' => [ |
|
15527
|
|
|
'name' => 'Batavia', |
|
15528
|
|
|
'type' => 'geodetic', |
|
15529
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
15530
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15531
|
|
|
'conventional_rs' => null, |
|
15532
|
|
|
'frame_reference_epoch' => null, |
|
15533
|
|
|
'anchor_epoch' => null, |
|
15534
|
|
|
'extent_name' => 'Indonesia - Java, Java Sea and western Sumatra', |
|
15535
|
|
|
'help' => 'Fundamental point: Longitude at Batavia Astro. Station. Latitude: 6°07\'39.522"S, longitude: 106°48\'27.790"E (of Greenwich). Latitude and azimuth at Genuk. |
|
15536
|
|
|
', |
|
15537
|
|
|
], |
|
15538
|
|
|
'urn:ogc:def:datum:EPSG::6212' => [ |
|
15539
|
|
|
'name' => 'Barbados 1938', |
|
15540
|
|
|
'type' => 'geodetic', |
|
15541
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
15542
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15543
|
|
|
'conventional_rs' => null, |
|
15544
|
|
|
'frame_reference_epoch' => null, |
|
15545
|
|
|
'anchor_epoch' => null, |
|
15546
|
|
|
'extent_name' => 'Barbados - onshore', |
|
15547
|
|
|
'help' => 'Fundamental point: HMS Challenger astro station M1, St. Anne\'s Tower. Latitude 13°04\'32.53"N, longitude 59°36\'29.34"W (of Greenwich). |
|
15548
|
|
|
', |
|
15549
|
|
|
], |
|
15550
|
|
|
'urn:ogc:def:datum:EPSG::6213' => [ |
|
15551
|
|
|
'name' => 'Beduaram', |
|
15552
|
|
|
'type' => 'geodetic', |
|
15553
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
15554
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15555
|
|
|
'conventional_rs' => null, |
|
15556
|
|
|
'frame_reference_epoch' => null, |
|
15557
|
|
|
'anchor_epoch' => null, |
|
15558
|
|
|
'extent_name' => 'Niger - southeast', |
|
15559
|
|
|
'help' => ' |
|
15560
|
|
|
', |
|
15561
|
|
|
], |
|
15562
|
|
|
'urn:ogc:def:datum:EPSG::6214' => [ |
|
15563
|
|
|
'name' => 'Beijing 1954', |
|
15564
|
|
|
'type' => 'geodetic', |
|
15565
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024', |
|
15566
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15567
|
|
|
'conventional_rs' => null, |
|
15568
|
|
|
'frame_reference_epoch' => null, |
|
15569
|
|
|
'anchor_epoch' => null, |
|
15570
|
|
|
'extent_name' => 'China', |
|
15571
|
|
|
'help' => 'Pulkovo, transferred through Russian triangulation. |
|
15572
|
|
|
Scale determined through three baselines in northeast China. Discontinuities at boundaries of adjustment blocks. From 1982 replaced by Xian 1980 and New Beijing.', |
|
15573
|
|
|
], |
|
15574
|
|
|
'urn:ogc:def:datum:EPSG::6215' => [ |
|
15575
|
|
|
'name' => 'Reseau National Belge 1950', |
|
15576
|
|
|
'type' => 'geodetic', |
|
15577
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15578
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15579
|
|
|
'conventional_rs' => null, |
|
15580
|
|
|
'frame_reference_epoch' => null, |
|
15581
|
|
|
'anchor_epoch' => null, |
|
15582
|
|
|
'extent_name' => 'Belgium - onshore', |
|
15583
|
|
|
'help' => 'Fundamental point: Lommel (tower). Latitude: 51°13\'47.334"N, longitude: 5°18\'49.483"E (of Greenwich). |
|
15584
|
|
|
', |
|
15585
|
|
|
], |
|
15586
|
|
|
'urn:ogc:def:datum:EPSG::6216' => [ |
|
15587
|
|
|
'name' => 'Bermuda 1957', |
|
15588
|
|
|
'type' => 'geodetic', |
|
15589
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
15590
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15591
|
|
|
'conventional_rs' => null, |
|
15592
|
|
|
'frame_reference_epoch' => null, |
|
15593
|
|
|
'anchor_epoch' => null, |
|
15594
|
|
|
'extent_name' => 'Bermuda - onshore', |
|
15595
|
|
|
'help' => 'Fundamental point: Fort George base. Latitude 32°22\'44.36"N, longitude 64°40\'58.11"W (of Greenwich). |
|
15596
|
|
|
', |
|
15597
|
|
|
], |
|
15598
|
|
|
'urn:ogc:def:datum:EPSG::6218' => [ |
|
15599
|
|
|
'name' => 'Bogota 1975', |
|
15600
|
|
|
'type' => 'geodetic', |
|
15601
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15602
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15603
|
|
|
'conventional_rs' => null, |
|
15604
|
|
|
'frame_reference_epoch' => null, |
|
15605
|
|
|
'anchor_epoch' => null, |
|
15606
|
|
|
'extent_name' => 'Colombia - mainland and offshore Caribbean', |
|
15607
|
|
|
'help' => 'Fundamental point: Bogota observatory. Latitude: 4°35\'56.570"N, longitude: 74°04\'51.300"W (of Greenwich). |
|
15608
|
|
|
Replaces 1951 adjustment. Replaced by MAGNA-SIRGAS (datum code 6685).', |
|
15609
|
|
|
], |
|
15610
|
|
|
'urn:ogc:def:datum:EPSG::6219' => [ |
|
15611
|
|
|
'name' => 'Bukit Rimpah', |
|
15612
|
|
|
'type' => 'geodetic', |
|
15613
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
15614
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15615
|
|
|
'conventional_rs' => null, |
|
15616
|
|
|
'frame_reference_epoch' => null, |
|
15617
|
|
|
'anchor_epoch' => null, |
|
15618
|
|
|
'extent_name' => 'Indonesia - Banga & Belitung Islands', |
|
15619
|
|
|
'help' => '2°00\'40.16"S, 105°51\'39.76"E (of Greenwich). |
|
15620
|
|
|
', |
|
15621
|
|
|
], |
|
15622
|
|
|
'urn:ogc:def:datum:EPSG::6220' => [ |
|
15623
|
|
|
'name' => 'Camacupa 1948', |
|
15624
|
|
|
'type' => 'geodetic', |
|
15625
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
15626
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15627
|
|
|
'conventional_rs' => null, |
|
15628
|
|
|
'frame_reference_epoch' => null, |
|
15629
|
|
|
'anchor_epoch' => null, |
|
15630
|
|
|
'extent_name' => 'Angola - Angola proper', |
|
15631
|
|
|
'help' => 'Fundamental point: Campo de Aviaçao. Latitude: 12°01\'09.070"S, Longitude = 17°27\'19.800"E (of Greenwich). |
|
15632
|
|
|
Provisional adjustment, replaced in 2015 for onshore use by Camacupa 2015.', |
|
15633
|
|
|
], |
|
15634
|
|
|
'urn:ogc:def:datum:EPSG::6221' => [ |
|
15635
|
|
|
'name' => 'Campo Inchauspe', |
|
15636
|
|
|
'type' => 'geodetic', |
|
15637
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15638
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15639
|
|
|
'conventional_rs' => null, |
|
15640
|
|
|
'frame_reference_epoch' => null, |
|
15641
|
|
|
'anchor_epoch' => null, |
|
15642
|
|
|
'extent_name' => 'Argentina - mainland onshore and offshore TdF', |
|
15643
|
|
|
'help' => 'Fundamental point: Campo Inchauspe. Latitude: 35°58\'16.56"S, longitude: 62°10\'12.03"W (of Greenwich). |
|
15644
|
|
|
', |
|
15645
|
|
|
], |
|
15646
|
|
|
'urn:ogc:def:datum:EPSG::6222' => [ |
|
15647
|
|
|
'name' => 'Cape', |
|
15648
|
|
|
'type' => 'geodetic', |
|
15649
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7013', |
|
15650
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15651
|
|
|
'conventional_rs' => null, |
|
15652
|
|
|
'frame_reference_epoch' => null, |
|
15653
|
|
|
'anchor_epoch' => null, |
|
15654
|
|
|
'extent_name' => 'Africa - Botswana, Eswatini, Lesotho and South Africa', |
|
15655
|
|
|
'help' => 'Fundamental point: Buffelsfontein. Latitude: 33°59\'32.000"S, longitude: 25°30\'44.622"E (of Greenwich). |
|
15656
|
|
|
', |
|
15657
|
|
|
], |
|
15658
|
|
|
'urn:ogc:def:datum:EPSG::6223' => [ |
|
15659
|
|
|
'name' => 'Carthage', |
|
15660
|
|
|
'type' => 'geodetic', |
|
15661
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
15662
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15663
|
|
|
'conventional_rs' => null, |
|
15664
|
|
|
'frame_reference_epoch' => null, |
|
15665
|
|
|
'anchor_epoch' => null, |
|
15666
|
|
|
'extent_name' => 'Tunisia', |
|
15667
|
|
|
'help' => 'Fundamental point: Carthage. Latitude: 40.9464506g = 36°51\'06.50"N, longitude: 8.8724368g E of Paris = 10°19\'20.72"E (of Greenwich). |
|
15668
|
|
|
Fundamental point astronomic coordinates determined in 1878.', |
|
15669
|
|
|
], |
|
15670
|
|
|
'urn:ogc:def:datum:EPSG::6224' => [ |
|
15671
|
|
|
'name' => 'Chua', |
|
15672
|
|
|
'type' => 'geodetic', |
|
15673
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15674
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15675
|
|
|
'conventional_rs' => null, |
|
15676
|
|
|
'frame_reference_epoch' => null, |
|
15677
|
|
|
'anchor_epoch' => null, |
|
15678
|
|
|
'extent_name' => 'South America - Brazil - south of 18°S and west of 54°W + DF; N Paraguay', |
|
15679
|
|
|
'help' => 'Fundamental point: Chua. Latitude: 19°45\'41.160"S, longitude: 48°06\'07.560"W (of Greenwich). |
|
15680
|
|
|
The Chua origin and associated network is in Brazil with a connecting traverse through northern Paraguay. It was used in Brazil only as input into the Corrego Allegre adjustment and for government work in Distrito Federal.', |
|
15681
|
|
|
], |
|
15682
|
|
|
'urn:ogc:def:datum:EPSG::6225' => [ |
|
15683
|
|
|
'name' => 'Corrego Alegre 1970-72', |
|
15684
|
|
|
'type' => 'geodetic', |
|
15685
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15686
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15687
|
|
|
'conventional_rs' => null, |
|
15688
|
|
|
'frame_reference_epoch' => null, |
|
15689
|
|
|
'anchor_epoch' => null, |
|
15690
|
|
|
'extent_name' => 'Brazil - Corrego Alegre 1970-1972', |
|
15691
|
|
|
'help' => 'Fundamental point: Corrego Alegre. Latitude: 19°50\'14.91"S, longitude: 48°57\'41.98"W (of Greenwich). |
|
15692
|
|
|
Replaces 1961 adjustment (datum code 1074). Superseded by SAD69. NIMA gives coordinates of origin as latitude: 19°50\'15.14"S, longitude: 48°57\'42.75"W; these may refer to 1961 adjustment.', |
|
15693
|
|
|
], |
|
15694
|
|
|
'urn:ogc:def:datum:EPSG::6227' => [ |
|
15695
|
|
|
'name' => 'Deir ez Zor', |
|
15696
|
|
|
'type' => 'geodetic', |
|
15697
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
15698
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15699
|
|
|
'conventional_rs' => null, |
|
15700
|
|
|
'frame_reference_epoch' => null, |
|
15701
|
|
|
'anchor_epoch' => null, |
|
15702
|
|
|
'extent_name' => 'Asia - Middle East - Lebanon and Syria onshore', |
|
15703
|
|
|
'help' => 'Fundamental point: Trig. 254 Deir. Latitude: 35°21\'49.975"N, longitude: 40°05\'46.770"E (of Greenwich). |
|
15704
|
|
|
', |
|
15705
|
|
|
], |
|
15706
|
|
|
'urn:ogc:def:datum:EPSG::6229' => [ |
|
15707
|
|
|
'name' => 'Egypt 1907', |
|
15708
|
|
|
'type' => 'geodetic', |
|
15709
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020', |
|
15710
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15711
|
|
|
'conventional_rs' => null, |
|
15712
|
|
|
'frame_reference_epoch' => null, |
|
15713
|
|
|
'anchor_epoch' => null, |
|
15714
|
|
|
'extent_name' => 'Egypt', |
|
15715
|
|
|
'help' => 'Fundamental point: Station F1 (Venus). Latitude: 30°01\'42.86"N, longitude: 31°16\'33.60"E (of Greenwich). |
|
15716
|
|
|
', |
|
15717
|
|
|
], |
|
15718
|
|
|
'urn:ogc:def:datum:EPSG::6230' => [ |
|
15719
|
|
|
'name' => 'European Datum 1950', |
|
15720
|
|
|
'type' => 'geodetic', |
|
15721
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15722
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15723
|
|
|
'conventional_rs' => null, |
|
15724
|
|
|
'frame_reference_epoch' => null, |
|
15725
|
|
|
'anchor_epoch' => null, |
|
15726
|
|
|
'extent_name' => 'Europe - ED50 by country', |
|
15727
|
|
|
'help' => 'Fundamental point: Potsdam (Helmert Tower). Latitude: 52°22\'51.4456"N, longitude: 13°03\'58.9283"E (of Greenwich). |
|
15728
|
|
|
', |
|
15729
|
|
|
], |
|
15730
|
|
|
'urn:ogc:def:datum:EPSG::6231' => [ |
|
15731
|
|
|
'name' => 'European Datum 1987', |
|
15732
|
|
|
'type' => 'geodetic', |
|
15733
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15734
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15735
|
|
|
'conventional_rs' => null, |
|
15736
|
|
|
'frame_reference_epoch' => null, |
|
15737
|
|
|
'anchor_epoch' => null, |
|
15738
|
|
|
'extent_name' => 'Europe - west', |
|
15739
|
|
|
'help' => 'Fundamental point: Potsdam (Helmert Tower). Latitude: 52°22\'51.4456"N, longitude: 13°03\'58.9283"E (of Greenwich). |
|
15740
|
|
|
', |
|
15741
|
|
|
], |
|
15742
|
|
|
'urn:ogc:def:datum:EPSG::6232' => [ |
|
15743
|
|
|
'name' => 'Fahud', |
|
15744
|
|
|
'type' => 'geodetic', |
|
15745
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
15746
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15747
|
|
|
'conventional_rs' => null, |
|
15748
|
|
|
'frame_reference_epoch' => null, |
|
15749
|
|
|
'anchor_epoch' => null, |
|
15750
|
|
|
'extent_name' => 'Oman - mainland', |
|
15751
|
|
|
'help' => 'Fundamental point: Station NO68-024 Fahud. Latitude: 22°17\'31.182"N, longitude: 56°29\'18.820"E (of Greenwich). |
|
15752
|
|
|
Replaced by PSD93 (code 6134).', |
|
15753
|
|
|
], |
|
15754
|
|
|
'urn:ogc:def:datum:EPSG::6236' => [ |
|
15755
|
|
|
'name' => 'Hu Tzu Shan 1950', |
|
15756
|
|
|
'type' => 'geodetic', |
|
15757
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15758
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15759
|
|
|
'conventional_rs' => null, |
|
15760
|
|
|
'frame_reference_epoch' => null, |
|
15761
|
|
|
'anchor_epoch' => null, |
|
15762
|
|
|
'extent_name' => 'Taiwan - onshore - mainland and Penghu', |
|
15763
|
|
|
'help' => 'Fundamental point: Hu Tzu Shan. Latitude: 23°58\'32.34"N, longitude: 120°58\'25.975"E (of Greenwich). |
|
15764
|
|
|
', |
|
15765
|
|
|
], |
|
15766
|
|
|
'urn:ogc:def:datum:EPSG::6237' => [ |
|
15767
|
|
|
'name' => 'Hungarian Datum 1972', |
|
15768
|
|
|
'type' => 'geodetic', |
|
15769
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7036', |
|
15770
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15771
|
|
|
'conventional_rs' => null, |
|
15772
|
|
|
'frame_reference_epoch' => null, |
|
15773
|
|
|
'anchor_epoch' => null, |
|
15774
|
|
|
'extent_name' => 'Hungary', |
|
15775
|
|
|
'help' => 'Fundamental point: Szolohegy. Latitude: 47°17\'32,6156"N, longitude 19°36\'09.9865"E (of Greenwich); geoid height 6.56m. |
|
15776
|
|
|
Replaced Hungarian Datum 1909 (EPSG datum code 1024).', |
|
15777
|
|
|
], |
|
15778
|
|
|
'urn:ogc:def:datum:EPSG::6238' => [ |
|
15779
|
|
|
'name' => 'Indonesian Datum 1974', |
|
15780
|
|
|
'type' => 'geodetic', |
|
15781
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7021', |
|
15782
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15783
|
|
|
'conventional_rs' => null, |
|
15784
|
|
|
'frame_reference_epoch' => null, |
|
15785
|
|
|
'anchor_epoch' => null, |
|
15786
|
|
|
'extent_name' => 'Indonesia - onshore', |
|
15787
|
|
|
'help' => 'Fundamental point: Padang. Latitude: 0°56\'38.414"S, longitude: 100°22\' 8.804"E (of Greenwich). Ellipsoidal height 3.190m, gravity-related height 14.0m above mean sea level. |
|
15788
|
|
|
Replaced by DGN95.', |
|
15789
|
|
|
], |
|
15790
|
|
|
'urn:ogc:def:datum:EPSG::6239' => [ |
|
15791
|
|
|
'name' => 'Indian 1954', |
|
15792
|
|
|
'type' => 'geodetic', |
|
15793
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015', |
|
15794
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15795
|
|
|
'conventional_rs' => null, |
|
15796
|
|
|
'frame_reference_epoch' => null, |
|
15797
|
|
|
'anchor_epoch' => null, |
|
15798
|
|
|
'extent_name' => 'Asia - Myanmar and Thailand onshore', |
|
15799
|
|
|
'help' => 'Extension of Kalianpur 1937 over Myanmar and Thailand. |
|
15800
|
|
|
', |
|
15801
|
|
|
], |
|
15802
|
|
|
'urn:ogc:def:datum:EPSG::6240' => [ |
|
15803
|
|
|
'name' => 'Indian 1975', |
|
15804
|
|
|
'type' => 'geodetic', |
|
15805
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015', |
|
15806
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15807
|
|
|
'conventional_rs' => null, |
|
15808
|
|
|
'frame_reference_epoch' => null, |
|
15809
|
|
|
'anchor_epoch' => null, |
|
15810
|
|
|
'extent_name' => 'Thailand - onshore and Gulf of Thailand', |
|
15811
|
|
|
'help' => 'Fundamental point: Khau Sakaerang. |
|
15812
|
|
|
', |
|
15813
|
|
|
], |
|
15814
|
|
|
'urn:ogc:def:datum:EPSG::6241' => [ |
|
15815
|
|
|
'name' => 'Jamaica 1875', |
|
15816
|
|
|
'type' => 'geodetic', |
|
15817
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7034', |
|
15818
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15819
|
|
|
'conventional_rs' => null, |
|
15820
|
|
|
'frame_reference_epoch' => null, |
|
15821
|
|
|
'anchor_epoch' => null, |
|
15822
|
|
|
'extent_name' => 'Jamaica - onshore', |
|
15823
|
|
|
'help' => 'Fundamental point: Fort Charles Flagstaff. Latitude: 17°55\'55.800"N, longitude: 76°56\'37.260"W (of Greenwich). |
|
15824
|
|
|
', |
|
15825
|
|
|
], |
|
15826
|
|
|
'urn:ogc:def:datum:EPSG::6242' => [ |
|
15827
|
|
|
'name' => 'Jamaica 1969', |
|
15828
|
|
|
'type' => 'geodetic', |
|
15829
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
15830
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15831
|
|
|
'conventional_rs' => null, |
|
15832
|
|
|
'frame_reference_epoch' => null, |
|
15833
|
|
|
'anchor_epoch' => null, |
|
15834
|
|
|
'extent_name' => 'Jamaica - onshore', |
|
15835
|
|
|
'help' => 'Fundamental point: Fort Charles Flagstaff. Latitude: 17°55\'55.800"N, longitude: 76°56\'37.260"W (of Greenwich). |
|
15836
|
|
|
', |
|
15837
|
|
|
], |
|
15838
|
|
|
'urn:ogc:def:datum:EPSG::6243' => [ |
|
15839
|
|
|
'name' => 'Kalianpur 1880', |
|
15840
|
|
|
'type' => 'geodetic', |
|
15841
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7042', |
|
15842
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15843
|
|
|
'conventional_rs' => null, |
|
15844
|
|
|
'frame_reference_epoch' => null, |
|
15845
|
|
|
'anchor_epoch' => null, |
|
15846
|
|
|
'extent_name' => 'Asia - Bangladesh; India; Myanmar; Pakistan - onshore', |
|
15847
|
|
|
'help' => 'Fundamental point: Kalianpur. Latitude: 24°07\'11.260"N, longitude: 77°39\'17.570"E (of Greenwich). |
|
15848
|
|
|
Includes 1916 extension into Burma (Myanmar). Replaced by 1937 adjustment.', |
|
15849
|
|
|
], |
|
15850
|
|
|
'urn:ogc:def:datum:EPSG::6244' => [ |
|
15851
|
|
|
'name' => 'Kandawala', |
|
15852
|
|
|
'type' => 'geodetic', |
|
15853
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015', |
|
15854
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15855
|
|
|
'conventional_rs' => null, |
|
15856
|
|
|
'frame_reference_epoch' => null, |
|
15857
|
|
|
'anchor_epoch' => null, |
|
15858
|
|
|
'extent_name' => 'Sri Lanka - onshore', |
|
15859
|
|
|
'help' => 'Fundamental point: Kandawala. Latitude: 7°14\'06.838"N, longitude: 79°52\'36.670"E. |
|
15860
|
|
|
', |
|
15861
|
|
|
], |
|
15862
|
|
|
'urn:ogc:def:datum:EPSG::6245' => [ |
|
15863
|
|
|
'name' => 'Kertau 1968', |
|
15864
|
|
|
'type' => 'geodetic', |
|
15865
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7018', |
|
15866
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15867
|
|
|
'conventional_rs' => null, |
|
15868
|
|
|
'frame_reference_epoch' => null, |
|
15869
|
|
|
'anchor_epoch' => null, |
|
15870
|
|
|
'extent_name' => 'Asia - Malaysia (west including SCS) and Singapore', |
|
15871
|
|
|
'help' => 'Fundamental point: Kertau. Latitude: 3°27\'50.710"N, longitude: 102°37\'24.550"E (of Greenwich). |
|
15872
|
|
|
Replaces MRT48 and earlier adjustments. Adopts metric conversion of 39.370113 inches per metre. Not used for 1969 metrication of RSO grid - see Kertau (RSO) (code 6751).', |
|
15873
|
|
|
], |
|
15874
|
|
|
'urn:ogc:def:datum:EPSG::6246' => [ |
|
15875
|
|
|
'name' => 'Kuwait Oil Company', |
|
15876
|
|
|
'type' => 'geodetic', |
|
15877
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
15878
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15879
|
|
|
'conventional_rs' => null, |
|
15880
|
|
|
'frame_reference_epoch' => null, |
|
15881
|
|
|
'anchor_epoch' => null, |
|
15882
|
|
|
'extent_name' => 'Kuwait - onshore', |
|
15883
|
|
|
'help' => 'Fundamental point: K28. Latitude: 29°03\'42.348"N, longitude: 48°08\'42.558"E (of Greenwich). |
|
15884
|
|
|
', |
|
15885
|
|
|
], |
|
15886
|
|
|
'urn:ogc:def:datum:EPSG::6247' => [ |
|
15887
|
|
|
'name' => 'La Canoa', |
|
15888
|
|
|
'type' => 'geodetic', |
|
15889
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15890
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15891
|
|
|
'conventional_rs' => null, |
|
15892
|
|
|
'frame_reference_epoch' => null, |
|
15893
|
|
|
'anchor_epoch' => null, |
|
15894
|
|
|
'extent_name' => 'Venezuela - onshore', |
|
15895
|
|
|
'help' => 'Fundamental point: La Canoa. Latitude: 8°34\'17.170"N, longitude: 63°51\'34.880"W (of Greenwich). |
|
15896
|
|
|
Origin and network incorporated within PSAD56 (datum code 6248).', |
|
15897
|
|
|
], |
|
15898
|
|
|
'urn:ogc:def:datum:EPSG::6248' => [ |
|
15899
|
|
|
'name' => 'Provisional South American Datum 1956', |
|
15900
|
|
|
'type' => 'geodetic', |
|
15901
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15902
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15903
|
|
|
'conventional_rs' => null, |
|
15904
|
|
|
'frame_reference_epoch' => null, |
|
15905
|
|
|
'anchor_epoch' => null, |
|
15906
|
|
|
'extent_name' => 'South America - PSAD56 by country', |
|
15907
|
|
|
'help' => 'Fundamental point: La Canoa. Latitude: 8°34\'17.170"N, longitude: 63°51\'34.880"W (of Greenwich). |
|
15908
|
|
|
Same origin as La Canoa datum.', |
|
15909
|
|
|
], |
|
15910
|
|
|
'urn:ogc:def:datum:EPSG::6249' => [ |
|
15911
|
|
|
'name' => 'Lake', |
|
15912
|
|
|
'type' => 'geodetic', |
|
15913
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15914
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15915
|
|
|
'conventional_rs' => null, |
|
15916
|
|
|
'frame_reference_epoch' => null, |
|
15917
|
|
|
'anchor_epoch' => null, |
|
15918
|
|
|
'extent_name' => 'Venezuela - Lake Maracaibo', |
|
15919
|
|
|
'help' => 'Fundamental point: Maracaibo Cathedral. Latitude: 10°38\'34.678"N, longitude: 71°36\'20.224"W (of Greenwich). |
|
15920
|
|
|
', |
|
15921
|
|
|
], |
|
15922
|
|
|
'urn:ogc:def:datum:EPSG::6250' => [ |
|
15923
|
|
|
'name' => 'Leigon', |
|
15924
|
|
|
'type' => 'geodetic', |
|
15925
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
15926
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15927
|
|
|
'conventional_rs' => null, |
|
15928
|
|
|
'frame_reference_epoch' => null, |
|
15929
|
|
|
'anchor_epoch' => null, |
|
15930
|
|
|
'extent_name' => 'Ghana', |
|
15931
|
|
|
'help' => 'Fundamental point: GCS Station 121, Leigon. Latitude: 5°38\'52.27"N, longitude: 0°11\'46.08"W (of Greenwich). |
|
15932
|
|
|
Replaced Accra datum (code 6168) from 1978. Coordinates at Leigon fundamental point defined as Accra datum values for that point.', |
|
15933
|
|
|
], |
|
15934
|
|
|
'urn:ogc:def:datum:EPSG::6251' => [ |
|
15935
|
|
|
'name' => 'Liberia 1964', |
|
15936
|
|
|
'type' => 'geodetic', |
|
15937
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
15938
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15939
|
|
|
'conventional_rs' => null, |
|
15940
|
|
|
'frame_reference_epoch' => null, |
|
15941
|
|
|
'anchor_epoch' => null, |
|
15942
|
|
|
'extent_name' => 'Liberia - onshore', |
|
15943
|
|
|
'help' => 'Fundamental point: Robertsfield. Latitude: 6°13\'53.02"N, longitude: 10°21\'35.44"W (of Greenwich). |
|
15944
|
|
|
', |
|
15945
|
|
|
], |
|
15946
|
|
|
'urn:ogc:def:datum:EPSG::6252' => [ |
|
15947
|
|
|
'name' => 'Lome', |
|
15948
|
|
|
'type' => 'geodetic', |
|
15949
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
15950
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15951
|
|
|
'conventional_rs' => null, |
|
15952
|
|
|
'frame_reference_epoch' => null, |
|
15953
|
|
|
'anchor_epoch' => null, |
|
15954
|
|
|
'extent_name' => 'Togo', |
|
15955
|
|
|
'help' => ' |
|
15956
|
|
|
', |
|
15957
|
|
|
], |
|
15958
|
|
|
'urn:ogc:def:datum:EPSG::6253' => [ |
|
15959
|
|
|
'name' => 'Luzon 1911', |
|
15960
|
|
|
'type' => 'geodetic', |
|
15961
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
15962
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15963
|
|
|
'conventional_rs' => null, |
|
15964
|
|
|
'frame_reference_epoch' => null, |
|
15965
|
|
|
'anchor_epoch' => null, |
|
15966
|
|
|
'extent_name' => 'Philippines - onshore', |
|
15967
|
|
|
'help' => 'Fundamental point: Balacan. Latitude: 13°33\'41.000"N, longitude: 121°52\'03.000"E (of Greenwich). |
|
15968
|
|
|
Replaced by Philippine Reference system of 1992 (datum code 6683).', |
|
15969
|
|
|
], |
|
15970
|
|
|
'urn:ogc:def:datum:EPSG::6254' => [ |
|
15971
|
|
|
'name' => 'Hito XVIII 1963', |
|
15972
|
|
|
'type' => 'geodetic', |
|
15973
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15974
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15975
|
|
|
'conventional_rs' => null, |
|
15976
|
|
|
'frame_reference_epoch' => null, |
|
15977
|
|
|
'anchor_epoch' => null, |
|
15978
|
|
|
'extent_name' => 'South America - Tierra del Fuego', |
|
15979
|
|
|
'help' => 'Chile-Argentina boundary survey. |
|
15980
|
|
|
Used in Tierra del Fuego.', |
|
15981
|
|
|
], |
|
15982
|
|
|
'urn:ogc:def:datum:EPSG::6255' => [ |
|
15983
|
|
|
'name' => 'Herat North', |
|
15984
|
|
|
'type' => 'geodetic', |
|
15985
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
15986
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15987
|
|
|
'conventional_rs' => null, |
|
15988
|
|
|
'frame_reference_epoch' => null, |
|
15989
|
|
|
'anchor_epoch' => null, |
|
15990
|
|
|
'extent_name' => 'Afghanistan', |
|
15991
|
|
|
'help' => 'Fundamental point: Herat North. Latitude: 34°23\'09.08"N, longitude: 64°10\'58.94"E (of Greenwich). |
|
15992
|
|
|
', |
|
15993
|
|
|
], |
|
15994
|
|
|
'urn:ogc:def:datum:EPSG::6256' => [ |
|
15995
|
|
|
'name' => 'Mahe 1971', |
|
15996
|
|
|
'type' => 'geodetic', |
|
15997
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
15998
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
15999
|
|
|
'conventional_rs' => null, |
|
16000
|
|
|
'frame_reference_epoch' => null, |
|
16001
|
|
|
'anchor_epoch' => null, |
|
16002
|
|
|
'extent_name' => 'Seychelles - Mahe Island', |
|
16003
|
|
|
'help' => 'Fundamental point: Station SITE. Latitude: 4°40\'14.644"S, longitude: 55°28\'44.488"E (of Greenwich). |
|
16004
|
|
|
South East Island 1943 (datum code 1138) used for topographic mapping, cadastral and hydrographic survey.', |
|
16005
|
|
|
], |
|
16006
|
|
|
'urn:ogc:def:datum:EPSG::6257' => [ |
|
16007
|
|
|
'name' => 'Makassar', |
|
16008
|
|
|
'type' => 'geodetic', |
|
16009
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
16010
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16011
|
|
|
'conventional_rs' => null, |
|
16012
|
|
|
'frame_reference_epoch' => null, |
|
16013
|
|
|
'anchor_epoch' => null, |
|
16014
|
|
|
'extent_name' => 'Indonesia - Sulawesi SW', |
|
16015
|
|
|
'help' => 'Fundamental point: station P1, Moncongloe. Latitude: 5°08\'41.42"S, long 119°24\'14.94"E (of Greenwich). |
|
16016
|
|
|
', |
|
16017
|
|
|
], |
|
16018
|
|
|
'urn:ogc:def:datum:EPSG::6258' => [ |
|
16019
|
|
|
'name' => 'European Terrestrial Reference System 1989 ensemble', |
|
16020
|
|
|
'type' => 'ensemble', |
|
16021
|
|
|
'ellipsoid' => null, |
|
16022
|
|
|
'prime_meridian' => null, |
|
16023
|
|
|
'conventional_rs' => null, |
|
16024
|
|
|
'frame_reference_epoch' => null, |
|
16025
|
|
|
'anchor_epoch' => null, |
|
16026
|
|
|
'extent_name' => 'Europe - ETRF by country', |
|
16027
|
|
|
'ensemble' => [ |
|
16028
|
|
|
'urn:ogc:def:datum:EPSG::1178', |
|
16029
|
|
|
'urn:ogc:def:datum:EPSG::1179', |
|
16030
|
|
|
'urn:ogc:def:datum:EPSG::1180', |
|
16031
|
|
|
'urn:ogc:def:datum:EPSG::1181', |
|
16032
|
|
|
'urn:ogc:def:datum:EPSG::1182', |
|
16033
|
|
|
'urn:ogc:def:datum:EPSG::1183', |
|
16034
|
|
|
'urn:ogc:def:datum:EPSG::1184', |
|
16035
|
|
|
'urn:ogc:def:datum:EPSG::1185', |
|
16036
|
|
|
'urn:ogc:def:datum:EPSG::1186', |
|
16037
|
|
|
'urn:ogc:def:datum:EPSG::1204', |
|
16038
|
|
|
'urn:ogc:def:datum:EPSG::1206', |
|
16039
|
|
|
'urn:ogc:def:datum:EPSG::1382', |
|
16040
|
|
|
], |
|
16041
|
|
|
'help' => ' |
|
16042
|
|
|
Has been realized through ETRF89, ETRF90, ETRF91, ETRF92, ETRF93, ETRF94, ETRF96, ETRF97, ETRF2000, ETRF2005, ETRF2014 and ETRF2020. This \'ensemble\' covers any or all of these realizations without distinction.', |
|
16043
|
|
|
], |
|
16044
|
|
|
'urn:ogc:def:datum:EPSG::6259' => [ |
|
16045
|
|
|
'name' => 'Malongo 1987', |
|
16046
|
|
|
'type' => 'geodetic', |
|
16047
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16048
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16049
|
|
|
'conventional_rs' => null, |
|
16050
|
|
|
'frame_reference_epoch' => null, |
|
16051
|
|
|
'anchor_epoch' => null, |
|
16052
|
|
|
'extent_name' => 'Africa - Angola (Cabinda) and DR Congo (Zaire) - offshore', |
|
16053
|
|
|
'help' => 'Fundamental point: Station Y at Malongo base camp. Latitude: 5°23\'30.810"S, longitude: 12°12\'01.590"E (of Greenwich). |
|
16054
|
|
|
Replaced Mhast (offshore) (code 6705) in 1987. Origin coordinates constrained to those of Mhast (offshore) but other station coordinates differ. References to "Mhast" since 1987 often should have stated "Malongo 1987".', |
|
16055
|
|
|
], |
|
16056
|
|
|
'urn:ogc:def:datum:EPSG::6261' => [ |
|
16057
|
|
|
'name' => 'Merchich', |
|
16058
|
|
|
'type' => 'geodetic', |
|
16059
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
16060
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16061
|
|
|
'conventional_rs' => null, |
|
16062
|
|
|
'frame_reference_epoch' => null, |
|
16063
|
|
|
'anchor_epoch' => null, |
|
16064
|
|
|
'extent_name' => 'Africa - Morocco and Western Sahara - onshore', |
|
16065
|
|
|
'help' => 'Fundamental point: Merchich. Latitude: 33°26\'59.672"N, longitude: 7°33\'27.295"W (of Greenwich). |
|
16066
|
|
|
', |
|
16067
|
|
|
], |
|
16068
|
|
|
'urn:ogc:def:datum:EPSG::6262' => [ |
|
16069
|
|
|
'name' => 'Massawa', |
|
16070
|
|
|
'type' => 'geodetic', |
|
16071
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
16072
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16073
|
|
|
'conventional_rs' => null, |
|
16074
|
|
|
'frame_reference_epoch' => null, |
|
16075
|
|
|
'anchor_epoch' => null, |
|
16076
|
|
|
'extent_name' => 'Eritrea', |
|
16077
|
|
|
'help' => ' |
|
16078
|
|
|
', |
|
16079
|
|
|
], |
|
16080
|
|
|
'urn:ogc:def:datum:EPSG::6263' => [ |
|
16081
|
|
|
'name' => 'Minna', |
|
16082
|
|
|
'type' => 'geodetic', |
|
16083
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
16084
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16085
|
|
|
'conventional_rs' => null, |
|
16086
|
|
|
'frame_reference_epoch' => null, |
|
16087
|
|
|
'anchor_epoch' => null, |
|
16088
|
|
|
'extent_name' => 'Nigeria', |
|
16089
|
|
|
'help' => 'Fundamental point: Minna base station L40. Latitude: 9°38\'08.87"N, longitude: 6°30\'58.76"E (of Greenwich). |
|
16090
|
|
|
', |
|
16091
|
|
|
], |
|
16092
|
|
|
'urn:ogc:def:datum:EPSG::6265' => [ |
|
16093
|
|
|
'name' => 'Monte Mario', |
|
16094
|
|
|
'type' => 'geodetic', |
|
16095
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16096
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16097
|
|
|
'conventional_rs' => null, |
|
16098
|
|
|
'frame_reference_epoch' => null, |
|
16099
|
|
|
'anchor_epoch' => null, |
|
16100
|
|
|
'extent_name' => 'Italy - including San Marino and Vatican', |
|
16101
|
|
|
'help' => 'Fundamental point: Monte Mario. Latitude: 41°55\'25.51"N, longitude: 12°27\'08.4"E (of Greenwich). |
|
16102
|
|
|
Replaced Genova datum, Bessel 1841 ellipsoid, from 1940.', |
|
16103
|
|
|
], |
|
16104
|
|
|
'urn:ogc:def:datum:EPSG::6266' => [ |
|
16105
|
|
|
'name' => 'M\'poraloko', |
|
16106
|
|
|
'type' => 'geodetic', |
|
16107
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
16108
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16109
|
|
|
'conventional_rs' => null, |
|
16110
|
|
|
'frame_reference_epoch' => null, |
|
16111
|
|
|
'anchor_epoch' => null, |
|
16112
|
|
|
'extent_name' => 'Gabon', |
|
16113
|
|
|
'help' => ' |
|
16114
|
|
|
', |
|
16115
|
|
|
], |
|
16116
|
|
|
'urn:ogc:def:datum:EPSG::6267' => [ |
|
16117
|
|
|
'name' => 'North American Datum 1927', |
|
16118
|
|
|
'type' => 'geodetic', |
|
16119
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
16120
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16121
|
|
|
'conventional_rs' => null, |
|
16122
|
|
|
'frame_reference_epoch' => null, |
|
16123
|
|
|
'anchor_epoch' => null, |
|
16124
|
|
|
'extent_name' => 'North America - NAD27', |
|
16125
|
|
|
'help' => 'Fundamental point: Meade\'s Ranch. Latitude: 39°13\'26.686"N, longitude: 98°32\'30.506"W (of Greenwich). |
|
16126
|
|
|
In United States (USA) and Canada, replaced by North American Datum 1983 (NAD83) (code 6269) ; in Mexico, replaced by Mexican Datum of 1993 (code 1042).', |
|
16127
|
|
|
], |
|
16128
|
|
|
'urn:ogc:def:datum:EPSG::6269' => [ |
|
16129
|
|
|
'name' => 'North American Datum 1983', |
|
16130
|
|
|
'type' => 'geodetic', |
|
16131
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
16132
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16133
|
|
|
'conventional_rs' => null, |
|
16134
|
|
|
'frame_reference_epoch' => null, |
|
16135
|
|
|
'anchor_epoch' => null, |
|
16136
|
|
|
'extent_name' => 'North America - NAD83', |
|
16137
|
|
|
'help' => 'NAD83 Doppler Transit stations in NWL 9D were aligned with the BIH Conventional Terrestrial Reference Frame (BTS) at epoch 1984.0 using an internationally adopted transformation. NAD83 is now known to be non-geocentric by about 2.2 meters. |
|
16138
|
|
|
Although the 1986 adjustment included connections to Greenland and Mexico, it has not been adopted there. In Canada and US, replaced NAD27.', |
|
16139
|
|
|
], |
|
16140
|
|
|
'urn:ogc:def:datum:EPSG::6270' => [ |
|
16141
|
|
|
'name' => 'Nahrwan 1967', |
|
16142
|
|
|
'type' => 'geodetic', |
|
16143
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
16144
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16145
|
|
|
'conventional_rs' => null, |
|
16146
|
|
|
'frame_reference_epoch' => null, |
|
16147
|
|
|
'anchor_epoch' => null, |
|
16148
|
|
|
'extent_name' => 'Asia - Middle East - Qatar offshore and UAE', |
|
16149
|
|
|
'help' => 'Fundamental point: Nahrwan south base. Latitude: 33°19\'10.87"N, longitude: 44°43\'25.54"E (of Greenwich). |
|
16150
|
|
|
', |
|
16151
|
|
|
], |
|
16152
|
|
|
'urn:ogc:def:datum:EPSG::6271' => [ |
|
16153
|
|
|
'name' => 'Naparima 1972', |
|
16154
|
|
|
'type' => 'geodetic', |
|
16155
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16156
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16157
|
|
|
'conventional_rs' => null, |
|
16158
|
|
|
'frame_reference_epoch' => null, |
|
16159
|
|
|
'anchor_epoch' => null, |
|
16160
|
|
|
'extent_name' => 'Trinidad and Tobago - Tobago - onshore', |
|
16161
|
|
|
'help' => 'Fundamental point: Naparima. Latitude: 10°16\'44.860"N, longitude: 61°27\'34.620"W (of Greenwich). |
|
16162
|
|
|
Naparima 1972 is an extension to Tobago of the Naparima 1955 network of Trinidad.', |
|
16163
|
|
|
], |
|
16164
|
|
|
'urn:ogc:def:datum:EPSG::6272' => [ |
|
16165
|
|
|
'name' => 'New Zealand Geodetic Datum 1949', |
|
16166
|
|
|
'type' => 'geodetic', |
|
16167
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16168
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16169
|
|
|
'conventional_rs' => null, |
|
16170
|
|
|
'frame_reference_epoch' => null, |
|
16171
|
|
|
'anchor_epoch' => null, |
|
16172
|
|
|
'extent_name' => 'New Zealand - onshore and nearshore', |
|
16173
|
|
|
'help' => 'Fundamental point: Papatahi. Latitude: 41°19\' 8.900"S, longitude: 175°02\'51.000"E (of Greenwich). |
|
16174
|
|
|
Replaced by New Zealand Geodetic Datum 2000 (code 6167) from March 2000.', |
|
16175
|
|
|
], |
|
16176
|
|
|
'urn:ogc:def:datum:EPSG::6273' => [ |
|
16177
|
|
|
'name' => 'NGO 1948', |
|
16178
|
|
|
'type' => 'geodetic', |
|
16179
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7005', |
|
16180
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16181
|
|
|
'conventional_rs' => null, |
|
16182
|
|
|
'frame_reference_epoch' => null, |
|
16183
|
|
|
'anchor_epoch' => null, |
|
16184
|
|
|
'extent_name' => 'Norway - onshore', |
|
16185
|
|
|
'help' => 'Fundamental point: Oslo observatory. Latitude: 59°54\'43.7"N, longitude: 10°43\'22.5"E (of Greenwich). |
|
16186
|
|
|
', |
|
16187
|
|
|
], |
|
16188
|
|
|
'urn:ogc:def:datum:EPSG::6274' => [ |
|
16189
|
|
|
'name' => 'Datum 73', |
|
16190
|
|
|
'type' => 'geodetic', |
|
16191
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16192
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16193
|
|
|
'conventional_rs' => null, |
|
16194
|
|
|
'frame_reference_epoch' => null, |
|
16195
|
|
|
'anchor_epoch' => null, |
|
16196
|
|
|
'extent_name' => 'Portugal - mainland - onshore', |
|
16197
|
|
|
'help' => 'Fundamental point: TF4, Melrica. Latitude: 39°41\'37.30"N, longitude: 8°07\'53.31"W (of Greenwich). |
|
16198
|
|
|
', |
|
16199
|
|
|
], |
|
16200
|
|
|
'urn:ogc:def:datum:EPSG::6275' => [ |
|
16201
|
|
|
'name' => 'Nouvelle Triangulation Francaise', |
|
16202
|
|
|
'type' => 'geodetic', |
|
16203
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
16204
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16205
|
|
|
'conventional_rs' => null, |
|
16206
|
|
|
'frame_reference_epoch' => null, |
|
16207
|
|
|
'anchor_epoch' => null, |
|
16208
|
|
|
'extent_name' => 'France - onshore - mainland and Corsica', |
|
16209
|
|
|
'help' => 'Fundamental point: Pantheon. Latitude: 48°50\'46.522"N, longitude: 2°20\'48.667"E (of Greenwich). |
|
16210
|
|
|
', |
|
16211
|
|
|
], |
|
16212
|
|
|
'urn:ogc:def:datum:EPSG::6276' => [ |
|
16213
|
|
|
'name' => 'NSWC 9Z-2', |
|
16214
|
|
|
'type' => 'geodetic', |
|
16215
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7025', |
|
16216
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16217
|
|
|
'conventional_rs' => null, |
|
16218
|
|
|
'frame_reference_epoch' => null, |
|
16219
|
|
|
'anchor_epoch' => null, |
|
16220
|
|
|
'extent_name' => 'World', |
|
16221
|
|
|
'help' => ' |
|
16222
|
|
|
Transit precise ephemeris before 1991.', |
|
16223
|
|
|
], |
|
16224
|
|
|
'urn:ogc:def:datum:EPSG::6277' => [ |
|
16225
|
|
|
'name' => 'Ordnance Survey of Great Britain 1936', |
|
16226
|
|
|
'type' => 'geodetic', |
|
16227
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001', |
|
16228
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16229
|
|
|
'conventional_rs' => null, |
|
16230
|
|
|
'frame_reference_epoch' => null, |
|
16231
|
|
|
'anchor_epoch' => null, |
|
16232
|
|
|
'extent_name' => 'UK - Britain and UKCS 49°45\'N to 61°N, 9°W to 2°E', |
|
16233
|
|
|
'help' => 'Prior to 2002 fundamental point: Herstmonceux, Latitude: 50°51\'55.271"N, longitude: 0°20\'45.882"E, triangulation adjustment started 1936, completed 1962. From April 2002 the datum is defined through the application of the OSTN transformation from ETRS89. |
|
16234
|
|
|
The average accuracy of OSTN compared to the old triangulation network (down to 3rd order) is 0.1m. With the introduction of OSTN15, the area for OGSB36 has effectively been extended from Britain to cover the adjacent UK Continental Shelf.', |
|
16235
|
|
|
], |
|
16236
|
|
|
'urn:ogc:def:datum:EPSG::6278' => [ |
|
16237
|
|
|
'name' => 'OSGB 1970 (SN)', |
|
16238
|
|
|
'type' => 'geodetic', |
|
16239
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001', |
|
16240
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16241
|
|
|
'conventional_rs' => null, |
|
16242
|
|
|
'frame_reference_epoch' => null, |
|
16243
|
|
|
'anchor_epoch' => null, |
|
16244
|
|
|
'extent_name' => 'UK - Great Britain onshore and nearshore; Isle of Man', |
|
16245
|
|
|
'help' => 'Fundamental point: Herstmonceux. Latitude: 50°51\'55.271"N, longitude: 0°20\'45.882"E (of Greenwich). |
|
16246
|
|
|
', |
|
16247
|
|
|
], |
|
16248
|
|
|
'urn:ogc:def:datum:EPSG::6279' => [ |
|
16249
|
|
|
'name' => 'OS (SN) 1980', |
|
16250
|
|
|
'type' => 'geodetic', |
|
16251
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7001', |
|
16252
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16253
|
|
|
'conventional_rs' => null, |
|
16254
|
|
|
'frame_reference_epoch' => null, |
|
16255
|
|
|
'anchor_epoch' => null, |
|
16256
|
|
|
'extent_name' => 'Europe - British Isles - UK and Ireland onshore', |
|
16257
|
|
|
'help' => 'Fundamental point: Herstmonceux. Latitude: 50°51\'55.271"N, longitude: 0°20\'45.882"E (of Greenwich). |
|
16258
|
|
|
', |
|
16259
|
|
|
], |
|
16260
|
|
|
'urn:ogc:def:datum:EPSG::6281' => [ |
|
16261
|
|
|
'name' => 'Palestine 1923', |
|
16262
|
|
|
'type' => 'geodetic', |
|
16263
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7010', |
|
16264
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16265
|
|
|
'conventional_rs' => null, |
|
16266
|
|
|
'frame_reference_epoch' => null, |
|
16267
|
|
|
'anchor_epoch' => null, |
|
16268
|
|
|
'extent_name' => 'Asia - Middle East - Israel, Jordan and Palestine onshore', |
|
16269
|
|
|
'help' => 'Fundamental point: Point 82\'M Jerusalem. Latitude: 31°44\' 2.749"N, longitude: 35°12\'43.490"E (of Greenwich). |
|
16270
|
|
|
', |
|
16271
|
|
|
], |
|
16272
|
|
|
'urn:ogc:def:datum:EPSG::6282' => [ |
|
16273
|
|
|
'name' => 'Congo 1960 Pointe Noire', |
|
16274
|
|
|
'type' => 'geodetic', |
|
16275
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
16276
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16277
|
|
|
'conventional_rs' => null, |
|
16278
|
|
|
'frame_reference_epoch' => null, |
|
16279
|
|
|
'anchor_epoch' => null, |
|
16280
|
|
|
'extent_name' => 'Congo', |
|
16281
|
|
|
'help' => 'Fundamental point: Point Noire Astro. Latitude: 4°47\'00.10"S, longitude: 11°51\'01.55"E (of Greenwich). |
|
16282
|
|
|
', |
|
16283
|
|
|
], |
|
16284
|
|
|
'urn:ogc:def:datum:EPSG::6283' => [ |
|
16285
|
|
|
'name' => 'Geocentric Datum of Australia 1994', |
|
16286
|
|
|
'type' => 'geodetic', |
|
16287
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
16288
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16289
|
|
|
'conventional_rs' => null, |
|
16290
|
|
|
'frame_reference_epoch' => null, |
|
16291
|
|
|
'anchor_epoch' => null, |
|
16292
|
|
|
'extent_name' => 'Australia - GDA', |
|
16293
|
|
|
'help' => 'ITRF92 at epoch 1994.0. |
|
16294
|
|
|
', |
|
16295
|
|
|
], |
|
16296
|
|
|
'urn:ogc:def:datum:EPSG::6284' => [ |
|
16297
|
|
|
'name' => 'Pulkovo 1942', |
|
16298
|
|
|
'type' => 'geodetic', |
|
16299
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024', |
|
16300
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16301
|
|
|
'conventional_rs' => null, |
|
16302
|
|
|
'frame_reference_epoch' => null, |
|
16303
|
|
|
'anchor_epoch' => null, |
|
16304
|
|
|
'extent_name' => 'Europe - FSU onshore', |
|
16305
|
|
|
'help' => 'Fundamental point: Pulkovo observatory. Latitude: 59°46\'18.550"N, longitude: 30°19\'42.090"E (of Greenwich). |
|
16306
|
|
|
', |
|
16307
|
|
|
], |
|
16308
|
|
|
'urn:ogc:def:datum:EPSG::6285' => [ |
|
16309
|
|
|
'name' => 'Qatar 1974', |
|
16310
|
|
|
'type' => 'geodetic', |
|
16311
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16312
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16313
|
|
|
'conventional_rs' => null, |
|
16314
|
|
|
'frame_reference_epoch' => null, |
|
16315
|
|
|
'anchor_epoch' => null, |
|
16316
|
|
|
'extent_name' => 'Qatar', |
|
16317
|
|
|
'help' => 'Fundamental point: Station G3. |
|
16318
|
|
|
', |
|
16319
|
|
|
], |
|
16320
|
|
|
'urn:ogc:def:datum:EPSG::6286' => [ |
|
16321
|
|
|
'name' => 'Qatar 1948', |
|
16322
|
|
|
'type' => 'geodetic', |
|
16323
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020', |
|
16324
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16325
|
|
|
'conventional_rs' => null, |
|
16326
|
|
|
'frame_reference_epoch' => null, |
|
16327
|
|
|
'anchor_epoch' => null, |
|
16328
|
|
|
'extent_name' => 'Qatar - onshore', |
|
16329
|
|
|
'help' => 'Fundamental point: Sokey 0 M. Latitude: 25°22\'56.500"N, longitude: 50°45\'41.000"E (of Greenwich). |
|
16330
|
|
|
', |
|
16331
|
|
|
], |
|
16332
|
|
|
'urn:ogc:def:datum:EPSG::6288' => [ |
|
16333
|
|
|
'name' => 'Loma Quintana', |
|
16334
|
|
|
'type' => 'geodetic', |
|
16335
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16336
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16337
|
|
|
'conventional_rs' => null, |
|
16338
|
|
|
'frame_reference_epoch' => null, |
|
16339
|
|
|
'anchor_epoch' => null, |
|
16340
|
|
|
'extent_name' => 'Venezuela - north of 7°45\'N', |
|
16341
|
|
|
'help' => 'Fundamental point: Loma Quintana. |
|
16342
|
|
|
Replaced by La Canoa (code 6247).', |
|
16343
|
|
|
], |
|
16344
|
|
|
'urn:ogc:def:datum:EPSG::6289' => [ |
|
16345
|
|
|
'name' => 'Amersfoort', |
|
16346
|
|
|
'type' => 'geodetic', |
|
16347
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
16348
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16349
|
|
|
'conventional_rs' => null, |
|
16350
|
|
|
'frame_reference_epoch' => null, |
|
16351
|
|
|
'anchor_epoch' => null, |
|
16352
|
|
|
'extent_name' => 'Netherlands - onshore', |
|
16353
|
|
|
'help' => 'Originally defined through fundamental point Amersfoort, latitude 52°09\'22.178"N, longitude 5°23\'15.478"E (of Greenwich). Since 2000-10-01 has been redefined as derived from ETRS89 by application of the official transformation RDNAPTRANS(TM). |
|
16354
|
|
|
', |
|
16355
|
|
|
], |
|
16356
|
|
|
'urn:ogc:def:datum:EPSG::6292' => [ |
|
16357
|
|
|
'name' => 'Sapper Hill 1943', |
|
16358
|
|
|
'type' => 'geodetic', |
|
16359
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16360
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16361
|
|
|
'conventional_rs' => null, |
|
16362
|
|
|
'frame_reference_epoch' => null, |
|
16363
|
|
|
'anchor_epoch' => null, |
|
16364
|
|
|
'extent_name' => 'Falkland Islands - onshore', |
|
16365
|
|
|
'help' => ' |
|
16366
|
|
|
', |
|
16367
|
|
|
], |
|
16368
|
|
|
'urn:ogc:def:datum:EPSG::6293' => [ |
|
16369
|
|
|
'name' => 'Schwarzeck', |
|
16370
|
|
|
'type' => 'geodetic', |
|
16371
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7046', |
|
16372
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16373
|
|
|
'conventional_rs' => null, |
|
16374
|
|
|
'frame_reference_epoch' => null, |
|
16375
|
|
|
'anchor_epoch' => null, |
|
16376
|
|
|
'extent_name' => 'Namibia', |
|
16377
|
|
|
'help' => 'Fundamental point: Schwarzeck. Latitude: 22°45\'35.820"S, longitude: 18°40\'34.549"E (of Greenwich). Fixed during German South West Africa-British Bechuanaland boundary survey of 1898-1903. |
|
16378
|
|
|
', |
|
16379
|
|
|
], |
|
16380
|
|
|
'urn:ogc:def:datum:EPSG::6295' => [ |
|
16381
|
|
|
'name' => 'Serindung', |
|
16382
|
|
|
'type' => 'geodetic', |
|
16383
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
16384
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16385
|
|
|
'conventional_rs' => null, |
|
16386
|
|
|
'frame_reference_epoch' => null, |
|
16387
|
|
|
'anchor_epoch' => null, |
|
16388
|
|
|
'extent_name' => 'Indonesia - Kalimantan W - coastal', |
|
16389
|
|
|
'help' => 'Fundamental point: Ep A. Latitude: 1°06\'10.60"N, longitude: 105°00\'59.82"E (of Greenwich). |
|
16390
|
|
|
', |
|
16391
|
|
|
], |
|
16392
|
|
|
'urn:ogc:def:datum:EPSG::6297' => [ |
|
16393
|
|
|
'name' => 'Tananarive 1925', |
|
16394
|
|
|
'type' => 'geodetic', |
|
16395
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16396
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16397
|
|
|
'conventional_rs' => null, |
|
16398
|
|
|
'frame_reference_epoch' => null, |
|
16399
|
|
|
'anchor_epoch' => null, |
|
16400
|
|
|
'extent_name' => 'Madagascar - onshore and nearshore', |
|
16401
|
|
|
'help' => 'Fundamental point: Tananarive observatory. Latitude: 18°55\'02.10"S, longitude: 47°33\'06.75"E (of Greenwich). |
|
16402
|
|
|
', |
|
16403
|
|
|
], |
|
16404
|
|
|
'urn:ogc:def:datum:EPSG::6298' => [ |
|
16405
|
|
|
'name' => 'Timbalai 1948', |
|
16406
|
|
|
'type' => 'geodetic', |
|
16407
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7016', |
|
16408
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16409
|
|
|
'conventional_rs' => null, |
|
16410
|
|
|
'frame_reference_epoch' => null, |
|
16411
|
|
|
'anchor_epoch' => null, |
|
16412
|
|
|
'extent_name' => 'Asia - Brunei and East Malaysia', |
|
16413
|
|
|
'help' => 'Fundamental point: Station P85 at Timbalai. Latitude: 5°17\' 3.548"N, longitude: 115°10\'56.409"E (of Greenwich). |
|
16414
|
|
|
In 1968, the original adjustment was densified in Sarawak and extended to Sabah.', |
|
16415
|
|
|
], |
|
16416
|
|
|
'urn:ogc:def:datum:EPSG::6299' => [ |
|
16417
|
|
|
'name' => 'TM65', |
|
16418
|
|
|
'type' => 'geodetic', |
|
16419
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7002', |
|
16420
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16421
|
|
|
'conventional_rs' => null, |
|
16422
|
|
|
'frame_reference_epoch' => null, |
|
16423
|
|
|
'anchor_epoch' => null, |
|
16424
|
|
|
'extent_name' => 'Europe - Ireland (Republic and Ulster) - onshore', |
|
16425
|
|
|
'help' => 'Adjusted to best mean fit 12 stations of the OSNI 1952 primary adjustment. |
|
16426
|
|
|
Differences between OSNI 1952 and TM65 at these stations are RMS 0.25m east, 0.23m north, maximum vector 0.57m. TM65 replaced by and not to be confused with Geodetic Datum of 1965 alias 1975 Mapping Adjustment or TM75 (datum code 6300).', |
|
16427
|
|
|
], |
|
16428
|
|
|
'urn:ogc:def:datum:EPSG::6300' => [ |
|
16429
|
|
|
'name' => 'Geodetic Datum of 1965', |
|
16430
|
|
|
'type' => 'geodetic', |
|
16431
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7002', |
|
16432
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16433
|
|
|
'conventional_rs' => null, |
|
16434
|
|
|
'frame_reference_epoch' => null, |
|
16435
|
|
|
'anchor_epoch' => null, |
|
16436
|
|
|
'extent_name' => 'Europe - Ireland (Republic and Ulster) - onshore', |
|
16437
|
|
|
'help' => 'Adjusted to best mean fit 9 stations of the OSNI 1952 primary adjustment in Northern Ireland plus the 1965 values of 3 stations in the Republic of Ireland. |
|
16438
|
|
|
Differences from the 1965 adjustment (datum code 6299) are: average difference in Eastings 0.092m; average difference in Northings 0.108m; maximum vector difference 0.548m.', |
|
16439
|
|
|
], |
|
16440
|
|
|
'urn:ogc:def:datum:EPSG::6301' => [ |
|
16441
|
|
|
'name' => 'Tokyo', |
|
16442
|
|
|
'type' => 'geodetic', |
|
16443
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
16444
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16445
|
|
|
'conventional_rs' => null, |
|
16446
|
|
|
'frame_reference_epoch' => null, |
|
16447
|
|
|
'anchor_epoch' => null, |
|
16448
|
|
|
'extent_name' => 'Asia - Japan and Korea', |
|
16449
|
|
|
'help' => 'Fundamental point: Nikon-Keido-Genten. Latitude: 35°39\'17.5148"N, longitude: 139°44\'40.5020"E (of Greenwich). Longitude derived in 1918. |
|
16450
|
|
|
In Japan, replaces Tokyo 1892 (code 1048) and replaced by Japanese Geodetic Datum 2000 (code 6611). In Korea used only for geodetic applications before being replaced by Korean 1985 (code 6162).', |
|
16451
|
|
|
], |
|
16452
|
|
|
'urn:ogc:def:datum:EPSG::6302' => [ |
|
16453
|
|
|
'name' => 'Trinidad 1903', |
|
16454
|
|
|
'type' => 'geodetic', |
|
16455
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007', |
|
16456
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16457
|
|
|
'conventional_rs' => null, |
|
16458
|
|
|
'frame_reference_epoch' => null, |
|
16459
|
|
|
'anchor_epoch' => null, |
|
16460
|
|
|
'extent_name' => 'Trinidad and Tobago - Trinidad', |
|
16461
|
|
|
'help' => 'Station 00, Harbour Master\'s Flagstaff, Port of Spain. |
|
16462
|
|
|
Trinidad 1903 / Trinidad Grid coordinates (Clarke\'s links): 333604.30 E, 436366.91 N (Latitude: 10°38\'39.01"N, Longitude: 61°30\'38.00"W of Greenwich) |
|
16463
|
|
|
', |
|
16464
|
|
|
], |
|
16465
|
|
|
'urn:ogc:def:datum:EPSG::6303' => [ |
|
16466
|
|
|
'name' => 'Trucial Coast 1948', |
|
16467
|
|
|
'type' => 'geodetic', |
|
16468
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020', |
|
16469
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16470
|
|
|
'conventional_rs' => null, |
|
16471
|
|
|
'frame_reference_epoch' => null, |
|
16472
|
|
|
'anchor_epoch' => null, |
|
16473
|
|
|
'extent_name' => 'UAE - Abu Dhabi and Dubai - onshore', |
|
16474
|
|
|
'help' => 'Fundamental point: TC1. Latitude: 25°23\'50.190"N, longitude: 55°26\'43.950"E (of Greenwich). |
|
16475
|
|
|
', |
|
16476
|
|
|
], |
|
16477
|
|
|
'urn:ogc:def:datum:EPSG::6304' => [ |
|
16478
|
|
|
'name' => 'Voirol 1875', |
|
16479
|
|
|
'type' => 'geodetic', |
|
16480
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
16481
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16482
|
|
|
'conventional_rs' => null, |
|
16483
|
|
|
'frame_reference_epoch' => null, |
|
16484
|
|
|
'anchor_epoch' => null, |
|
16485
|
|
|
'extent_name' => 'Algeria - north of 32°N', |
|
16486
|
|
|
'help' => 'Fundamental point: Voirol. Latitude: 36°45\'07.927"N, longitude: 3°02\'49.435"E of Greenwich. Uses RGS (and old IGN) value of 2°20\'13.95"for Greenwich-Paris meridian difference. |
|
16487
|
|
|
Replaced by Voirol 1879 (code 6671).', |
|
16488
|
|
|
], |
|
16489
|
|
|
'urn:ogc:def:datum:EPSG::6306' => [ |
|
16490
|
|
|
'name' => 'Bern 1938', |
|
16491
|
|
|
'type' => 'geodetic', |
|
16492
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
16493
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16494
|
|
|
'conventional_rs' => null, |
|
16495
|
|
|
'frame_reference_epoch' => null, |
|
16496
|
|
|
'anchor_epoch' => null, |
|
16497
|
|
|
'extent_name' => 'Europe - Liechtenstein and Switzerland', |
|
16498
|
|
|
'help' => 'Fundamental point: Old Bern observatory. Latitude: 46°57\'07.890"N, longitude: 7°26\'22.335"E (of Greenwich). |
|
16499
|
|
|
This redetermination of the coordinates of fundamental point is used for scientific purposes and as the graticule overprinted on topographic maps constructed on the CH1903 / LV03 projected CS (code 21781).', |
|
16500
|
|
|
], |
|
16501
|
|
|
'urn:ogc:def:datum:EPSG::6307' => [ |
|
16502
|
|
|
'name' => 'Nord Sahara 1959', |
|
16503
|
|
|
'type' => 'geodetic', |
|
16504
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
16505
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16506
|
|
|
'conventional_rs' => null, |
|
16507
|
|
|
'frame_reference_epoch' => null, |
|
16508
|
|
|
'anchor_epoch' => null, |
|
16509
|
|
|
'extent_name' => 'Algeria', |
|
16510
|
|
|
'help' => 'Coordinates of primary network readjusted on ED50 datum and then transformed conformally to Clarke 1880 (RGS) ellipsoid. |
|
16511
|
|
|
Adjustment includes Morocco and Tunisia but use only in Algeria. Within Algeria the adjustment is north of 32°N but use has been extended southwards in many disconnected projects, some based on independent astro stations rather than the geodetic network.', |
|
16512
|
|
|
], |
|
16513
|
|
|
'urn:ogc:def:datum:EPSG::6308' => [ |
|
16514
|
|
|
'name' => 'Stockholm 1938', |
|
16515
|
|
|
'type' => 'geodetic', |
|
16516
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
16517
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16518
|
|
|
'conventional_rs' => null, |
|
16519
|
|
|
'frame_reference_epoch' => null, |
|
16520
|
|
|
'anchor_epoch' => null, |
|
16521
|
|
|
'extent_name' => 'Sweden - onshore', |
|
16522
|
|
|
'help' => 'Fundamental point: Stockholm observatory. |
|
16523
|
|
|
Replaced by RT90 adjustment (datum code 6124)', |
|
16524
|
|
|
], |
|
16525
|
|
|
'urn:ogc:def:datum:EPSG::6309' => [ |
|
16526
|
|
|
'name' => 'Yacare', |
|
16527
|
|
|
'type' => 'geodetic', |
|
16528
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16529
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16530
|
|
|
'conventional_rs' => null, |
|
16531
|
|
|
'frame_reference_epoch' => null, |
|
16532
|
|
|
'anchor_epoch' => null, |
|
16533
|
|
|
'extent_name' => 'Uruguay - onshore', |
|
16534
|
|
|
'help' => 'Fundamental point: Yacare. Latitude: 30°35\'53.68"S, longitude: 57°25\'01.30"W (of Greenwich). |
|
16535
|
|
|
', |
|
16536
|
|
|
], |
|
16537
|
|
|
'urn:ogc:def:datum:EPSG::6310' => [ |
|
16538
|
|
|
'name' => 'Yoff', |
|
16539
|
|
|
'type' => 'geodetic', |
|
16540
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
16541
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16542
|
|
|
'conventional_rs' => null, |
|
16543
|
|
|
'frame_reference_epoch' => null, |
|
16544
|
|
|
'anchor_epoch' => null, |
|
16545
|
|
|
'extent_name' => 'Senegal', |
|
16546
|
|
|
'help' => 'Fundamental point: Yoff. Latitude: 14°44\'41.62"N, longitude: 17°29\'07.02"W (of Greenwich). |
|
16547
|
|
|
', |
|
16548
|
|
|
], |
|
16549
|
|
|
'urn:ogc:def:datum:EPSG::6311' => [ |
|
16550
|
|
|
'name' => 'Zanderij', |
|
16551
|
|
|
'type' => 'geodetic', |
|
16552
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16553
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16554
|
|
|
'conventional_rs' => null, |
|
16555
|
|
|
'frame_reference_epoch' => null, |
|
16556
|
|
|
'anchor_epoch' => null, |
|
16557
|
|
|
'extent_name' => 'Suriname', |
|
16558
|
|
|
'help' => ' |
|
16559
|
|
|
', |
|
16560
|
|
|
], |
|
16561
|
|
|
'urn:ogc:def:datum:EPSG::6312' => [ |
|
16562
|
|
|
'name' => 'Militar-Geographische Institut', |
|
16563
|
|
|
'type' => 'geodetic', |
|
16564
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
16565
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16566
|
|
|
'conventional_rs' => null, |
|
16567
|
|
|
'frame_reference_epoch' => null, |
|
16568
|
|
|
'anchor_epoch' => null, |
|
16569
|
|
|
'extent_name' => 'Austria', |
|
16570
|
|
|
'help' => 'Fundamental point: Hermannskogel. Latitude: 48°16\'15.29"N, longitude: 16°17\'41.06"E (of Greenwich). |
|
16571
|
|
|
The longitude of the datum origin equates to a value for the Ferro meridian of 17°40\' exactly west of Greenwich.', |
|
16572
|
|
|
], |
|
16573
|
|
|
'urn:ogc:def:datum:EPSG::6313' => [ |
|
16574
|
|
|
'name' => 'Reseau National Belge 1972', |
|
16575
|
|
|
'type' => 'geodetic', |
|
16576
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16577
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16578
|
|
|
'conventional_rs' => null, |
|
16579
|
|
|
'frame_reference_epoch' => null, |
|
16580
|
|
|
'anchor_epoch' => null, |
|
16581
|
|
|
'extent_name' => 'Belgium - onshore', |
|
16582
|
|
|
'help' => 'Fundamental point: Uccle observatory. Latitude: 50°47\'57.704"N, longitude: 4°21\'24.983"E (of Greenwich). |
|
16583
|
|
|
', |
|
16584
|
|
|
], |
|
16585
|
|
|
'urn:ogc:def:datum:EPSG::6314' => [ |
|
16586
|
|
|
'name' => 'Deutsches Hauptdreiecksnetz', |
|
16587
|
|
|
'type' => 'geodetic', |
|
16588
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
16589
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16590
|
|
|
'conventional_rs' => null, |
|
16591
|
|
|
'frame_reference_epoch' => null, |
|
16592
|
|
|
'anchor_epoch' => null, |
|
16593
|
|
|
'extent_name' => 'Germany - West Germany all states', |
|
16594
|
|
|
'help' => 'Fundamental point: Rauenberg. Latitude: 52°27\'12.021"N, longitude: 13°22\'04.928"E (of Greenwich). This station was destroyed in 1910 and the station at Potsdam substituted as the fundamental point. |
|
16595
|
|
|
', |
|
16596
|
|
|
], |
|
16597
|
|
|
'urn:ogc:def:datum:EPSG::6315' => [ |
|
16598
|
|
|
'name' => 'Conakry 1905', |
|
16599
|
|
|
'type' => 'geodetic', |
|
16600
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
16601
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16602
|
|
|
'conventional_rs' => null, |
|
16603
|
|
|
'frame_reference_epoch' => null, |
|
16604
|
|
|
'anchor_epoch' => null, |
|
16605
|
|
|
'extent_name' => 'Guinea - onshore', |
|
16606
|
|
|
'help' => 'Fundamental point: Conakry. Latitude: 10.573766g N, longitude: 17.833682g W (of Paris). |
|
16607
|
|
|
', |
|
16608
|
|
|
], |
|
16609
|
|
|
'urn:ogc:def:datum:EPSG::6316' => [ |
|
16610
|
|
|
'name' => 'Dealul Piscului 1930', |
|
16611
|
|
|
'type' => 'geodetic', |
|
16612
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16613
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16614
|
|
|
'conventional_rs' => null, |
|
16615
|
|
|
'frame_reference_epoch' => null, |
|
16616
|
|
|
'anchor_epoch' => null, |
|
16617
|
|
|
'extent_name' => 'Romania - onshore', |
|
16618
|
|
|
'help' => 'Fundamental point: latitude 44°24\'33.9606"N, longitude 26°06\'44.8772"E (of Greenwich). |
|
16619
|
|
|
Replaced by Pulkovo 1942(58) (datum code 6179)', |
|
16620
|
|
|
], |
|
16621
|
|
|
'urn:ogc:def:datum:EPSG::6318' => [ |
|
16622
|
|
|
'name' => 'National Geodetic Network', |
|
16623
|
|
|
'type' => 'geodetic', |
|
16624
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
16625
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16626
|
|
|
'conventional_rs' => null, |
|
16627
|
|
|
'frame_reference_epoch' => null, |
|
16628
|
|
|
'anchor_epoch' => null, |
|
16629
|
|
|
'extent_name' => 'Kuwait - onshore', |
|
16630
|
|
|
'help' => ' |
|
16631
|
|
|
Replaces 1984 adjustment which used the WGS72 ellipsoid.', |
|
16632
|
|
|
], |
|
16633
|
|
|
'urn:ogc:def:datum:EPSG::6319' => [ |
|
16634
|
|
|
'name' => 'Kuwait Utility', |
|
16635
|
|
|
'type' => 'geodetic', |
|
16636
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
16637
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16638
|
|
|
'conventional_rs' => null, |
|
16639
|
|
|
'frame_reference_epoch' => null, |
|
16640
|
|
|
'anchor_epoch' => null, |
|
16641
|
|
|
'extent_name' => 'Kuwait - Kuwait City', |
|
16642
|
|
|
'help' => ' |
|
16643
|
|
|
', |
|
16644
|
|
|
], |
|
16645
|
|
|
'urn:ogc:def:datum:EPSG::6322' => [ |
|
16646
|
|
|
'name' => 'World Geodetic System 1972', |
|
16647
|
|
|
'type' => 'dynamic geodetic', |
|
16648
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7043', |
|
16649
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16650
|
|
|
'conventional_rs' => null, |
|
16651
|
|
|
'frame_reference_epoch' => 1972.0, |
|
16652
|
|
|
'anchor_epoch' => null, |
|
16653
|
|
|
'extent_name' => 'World', |
|
16654
|
|
|
'help' => 'Developed from a worldwide distribution of terrestrial and geodetic satellite observations and defined through a set of station coordinates. |
|
16655
|
|
|
Used by GPS before 1987. For Transit satellite positioning see also WGS 72BE.', |
|
16656
|
|
|
], |
|
16657
|
|
|
'urn:ogc:def:datum:EPSG::6324' => [ |
|
16658
|
|
|
'name' => 'WGS 72 Transit Broadcast Ephemeris', |
|
16659
|
|
|
'type' => 'dynamic geodetic', |
|
16660
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7043', |
|
16661
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16662
|
|
|
'conventional_rs' => null, |
|
16663
|
|
|
'frame_reference_epoch' => 1972.0, |
|
16664
|
|
|
'anchor_epoch' => null, |
|
16665
|
|
|
'extent_name' => 'World', |
|
16666
|
|
|
'help' => ' |
|
16667
|
|
|
Alleged datum for use with Transit broadcast ephemeris prior to 1989. Relationship to WGS 72 has changed over time.', |
|
16668
|
|
|
], |
|
16669
|
|
|
'urn:ogc:def:datum:EPSG::6326' => [ |
|
16670
|
|
|
'name' => 'World Geodetic System 1984 ensemble', |
|
16671
|
|
|
'type' => 'ensemble', |
|
16672
|
|
|
'ellipsoid' => null, |
|
16673
|
|
|
'prime_meridian' => null, |
|
16674
|
|
|
'conventional_rs' => null, |
|
16675
|
|
|
'frame_reference_epoch' => null, |
|
16676
|
|
|
'anchor_epoch' => null, |
|
16677
|
|
|
'extent_name' => 'World', |
|
16678
|
|
|
'ensemble' => [ |
|
16679
|
|
|
'urn:ogc:def:datum:EPSG::1166', |
|
16680
|
|
|
'urn:ogc:def:datum:EPSG::1152', |
|
16681
|
|
|
'urn:ogc:def:datum:EPSG::1153', |
|
16682
|
|
|
'urn:ogc:def:datum:EPSG::1154', |
|
16683
|
|
|
'urn:ogc:def:datum:EPSG::1155', |
|
16684
|
|
|
'urn:ogc:def:datum:EPSG::1156', |
|
16685
|
|
|
'urn:ogc:def:datum:EPSG::1309', |
|
16686
|
|
|
'urn:ogc:def:datum:EPSG::1383', |
|
16687
|
|
|
], |
|
16688
|
|
|
'help' => ' |
|
16689
|
|
|
EPSG::6326 has been the then current realization. No distinction is made between the original and subsequent (G730, G873, G1150, G1674, G1762, G2139 and G2296) WGS 84 frames. Since 1997, WGS 84 has been maintained within 10cm of the then current ITRF.', |
|
16690
|
|
|
], |
|
16691
|
|
|
'urn:ogc:def:datum:EPSG::6600' => [ |
|
16692
|
|
|
'name' => 'Anguilla 1957', |
|
16693
|
|
|
'type' => 'geodetic', |
|
16694
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
16695
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16696
|
|
|
'conventional_rs' => null, |
|
16697
|
|
|
'frame_reference_epoch' => null, |
|
16698
|
|
|
'anchor_epoch' => null, |
|
16699
|
|
|
'extent_name' => 'Anguilla - onshore', |
|
16700
|
|
|
'help' => 'Fundamental point: station A4, Police. |
|
16701
|
|
|
', |
|
16702
|
|
|
], |
|
16703
|
|
|
'urn:ogc:def:datum:EPSG::6601' => [ |
|
16704
|
|
|
'name' => 'Antigua 1943', |
|
16705
|
|
|
'type' => 'geodetic', |
|
16706
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
16707
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16708
|
|
|
'conventional_rs' => null, |
|
16709
|
|
|
'frame_reference_epoch' => null, |
|
16710
|
|
|
'anchor_epoch' => null, |
|
16711
|
|
|
'extent_name' => 'Antigua - onshore', |
|
16712
|
|
|
'help' => 'Fundamental point: station A14. |
|
16713
|
|
|
', |
|
16714
|
|
|
], |
|
16715
|
|
|
'urn:ogc:def:datum:EPSG::6602' => [ |
|
16716
|
|
|
'name' => 'Dominica 1945', |
|
16717
|
|
|
'type' => 'geodetic', |
|
16718
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
16719
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16720
|
|
|
'conventional_rs' => null, |
|
16721
|
|
|
'frame_reference_epoch' => null, |
|
16722
|
|
|
'anchor_epoch' => null, |
|
16723
|
|
|
'extent_name' => 'Dominica - onshore', |
|
16724
|
|
|
'help' => 'Fundamental point: station M12. |
|
16725
|
|
|
', |
|
16726
|
|
|
], |
|
16727
|
|
|
'urn:ogc:def:datum:EPSG::6603' => [ |
|
16728
|
|
|
'name' => 'Grenada 1953', |
|
16729
|
|
|
'type' => 'geodetic', |
|
16730
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
16731
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16732
|
|
|
'conventional_rs' => null, |
|
16733
|
|
|
'frame_reference_epoch' => null, |
|
16734
|
|
|
'anchor_epoch' => null, |
|
16735
|
|
|
'extent_name' => 'Grenada and southern Grenadines - onshore', |
|
16736
|
|
|
'help' => 'Fundamental point: station GS8, Sante Marie. |
|
16737
|
|
|
', |
|
16738
|
|
|
], |
|
16739
|
|
|
'urn:ogc:def:datum:EPSG::6604' => [ |
|
16740
|
|
|
'name' => 'Montserrat 1958', |
|
16741
|
|
|
'type' => 'geodetic', |
|
16742
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
16743
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16744
|
|
|
'conventional_rs' => null, |
|
16745
|
|
|
'frame_reference_epoch' => null, |
|
16746
|
|
|
'anchor_epoch' => null, |
|
16747
|
|
|
'extent_name' => 'Montserrat - onshore', |
|
16748
|
|
|
'help' => 'Fundamental point: station M36. |
|
16749
|
|
|
', |
|
16750
|
|
|
], |
|
16751
|
|
|
'urn:ogc:def:datum:EPSG::6605' => [ |
|
16752
|
|
|
'name' => 'St. Kitts 1955', |
|
16753
|
|
|
'type' => 'geodetic', |
|
16754
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
16755
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16756
|
|
|
'conventional_rs' => null, |
|
16757
|
|
|
'frame_reference_epoch' => null, |
|
16758
|
|
|
'anchor_epoch' => null, |
|
16759
|
|
|
'extent_name' => 'St Kitts and Nevis - onshore', |
|
16760
|
|
|
'help' => 'Fundamental point: station K12. |
|
16761
|
|
|
', |
|
16762
|
|
|
], |
|
16763
|
|
|
'urn:ogc:def:datum:EPSG::6606' => [ |
|
16764
|
|
|
'name' => 'St. Lucia 1955', |
|
16765
|
|
|
'type' => 'geodetic', |
|
16766
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
16767
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16768
|
|
|
'conventional_rs' => null, |
|
16769
|
|
|
'frame_reference_epoch' => null, |
|
16770
|
|
|
'anchor_epoch' => null, |
|
16771
|
|
|
'extent_name' => 'St Lucia - onshore', |
|
16772
|
|
|
'help' => 'Fundamental point: station DCS3. |
|
16773
|
|
|
', |
|
16774
|
|
|
], |
|
16775
|
|
|
'urn:ogc:def:datum:EPSG::6607' => [ |
|
16776
|
|
|
'name' => 'St. Vincent 1945', |
|
16777
|
|
|
'type' => 'geodetic', |
|
16778
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
16779
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16780
|
|
|
'conventional_rs' => null, |
|
16781
|
|
|
'frame_reference_epoch' => null, |
|
16782
|
|
|
'anchor_epoch' => null, |
|
16783
|
|
|
'extent_name' => 'St Vincent and the Grenadines - onshore', |
|
16784
|
|
|
'help' => 'Fundamental point: station V1, Fort Charlotte. |
|
16785
|
|
|
', |
|
16786
|
|
|
], |
|
16787
|
|
|
'urn:ogc:def:datum:EPSG::6608' => [ |
|
16788
|
|
|
'name' => 'North American Datum 1927 (1976)', |
|
16789
|
|
|
'type' => 'geodetic', |
|
16790
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
16791
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16792
|
|
|
'conventional_rs' => null, |
|
16793
|
|
|
'frame_reference_epoch' => null, |
|
16794
|
|
|
'anchor_epoch' => null, |
|
16795
|
|
|
'extent_name' => 'Canada - Ontario', |
|
16796
|
|
|
'help' => 'Fundamental point: Meade\'s Ranch. Latitude: 39°13\'26.686"N, longitude: 98°32\'30.506"W (of Greenwich). |
|
16797
|
|
|
NAD27(76) used in Ontario for all maps at scale 1/20 000 and larger; elsewhere in Canada for selected purposes.', |
|
16798
|
|
|
], |
|
16799
|
|
|
'urn:ogc:def:datum:EPSG::6609' => [ |
|
16800
|
|
|
'name' => 'North American Datum 1927 (CGQ77)', |
|
16801
|
|
|
'type' => 'geodetic', |
|
16802
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
16803
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16804
|
|
|
'conventional_rs' => null, |
|
16805
|
|
|
'frame_reference_epoch' => null, |
|
16806
|
|
|
'anchor_epoch' => null, |
|
16807
|
|
|
'extent_name' => 'Canada - Quebec', |
|
16808
|
|
|
'help' => 'Fundamental point: Meade\'s Ranch. Latitude: 39°13\'26.686"N, longitude: 98°32\'30.506"W (of Greenwich). |
|
16809
|
|
|
NAD27 (CGQ77) used in Quebec for all maps at scale 1/20 000 and larger; generally for maps issued by the Quebec cartography office whose reference system is CGQ77.', |
|
16810
|
|
|
], |
|
16811
|
|
|
'urn:ogc:def:datum:EPSG::6610' => [ |
|
16812
|
|
|
'name' => 'Xian 1980', |
|
16813
|
|
|
'type' => 'geodetic', |
|
16814
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7049', |
|
16815
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16816
|
|
|
'conventional_rs' => null, |
|
16817
|
|
|
'frame_reference_epoch' => null, |
|
16818
|
|
|
'anchor_epoch' => null, |
|
16819
|
|
|
'extent_name' => 'China - onshore', |
|
16820
|
|
|
'help' => 'Xian observatory. |
|
16821
|
|
|
', |
|
16822
|
|
|
], |
|
16823
|
|
|
'urn:ogc:def:datum:EPSG::6611' => [ |
|
16824
|
|
|
'name' => 'Hong Kong 1980', |
|
16825
|
|
|
'type' => 'geodetic', |
|
16826
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16827
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16828
|
|
|
'conventional_rs' => null, |
|
16829
|
|
|
'frame_reference_epoch' => null, |
|
16830
|
|
|
'anchor_epoch' => null, |
|
16831
|
|
|
'extent_name' => 'China - Hong Kong', |
|
16832
|
|
|
'help' => 'Fundamental point: Trig "Zero", 38.4 feet south along the transit circle of the Kowloon Observatory. Latitude 22°18\'12.82"N, longitude 114°10\'18.75"E (of Greenwich). |
|
16833
|
|
|
Replaces Hong Kong 1963 and Hong Kong 1963(67).', |
|
16834
|
|
|
], |
|
16835
|
|
|
'urn:ogc:def:datum:EPSG::6612' => [ |
|
16836
|
|
|
'name' => 'Japanese Geodetic Datum 2000', |
|
16837
|
|
|
'type' => 'geodetic', |
|
16838
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
16839
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16840
|
|
|
'conventional_rs' => null, |
|
16841
|
|
|
'frame_reference_epoch' => null, |
|
16842
|
|
|
'anchor_epoch' => null, |
|
16843
|
|
|
'extent_name' => 'Japan', |
|
16844
|
|
|
'help' => 'ITRF94 at epoch 1997.0. Fundamental point: Tokyo-Taisho, latitude: 35°39\'29.1572"N, longitude: 139°44\'28.8759"E (of Greenwich). |
|
16845
|
|
|
Instigated under amendment to the Japanese Surveying Law with effect from April 2002. Replaces Tokyo datum (code 6301). Replaced by JGD2011 (datum code 1128) with effect from 21st October 2011.', |
|
16846
|
|
|
], |
|
16847
|
|
|
'urn:ogc:def:datum:EPSG::6613' => [ |
|
16848
|
|
|
'name' => 'Gunung Segara', |
|
16849
|
|
|
'type' => 'geodetic', |
|
16850
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
16851
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16852
|
|
|
'conventional_rs' => null, |
|
16853
|
|
|
'frame_reference_epoch' => null, |
|
16854
|
|
|
'anchor_epoch' => null, |
|
16855
|
|
|
'extent_name' => 'Indonesia - Kalimantan E', |
|
16856
|
|
|
'help' => 'Station P5 (Gunung Segara). Latitude 0°32\'12.83"S, longitude 117°08\'48.47"E (of Greenwich). |
|
16857
|
|
|
', |
|
16858
|
|
|
], |
|
16859
|
|
|
'urn:ogc:def:datum:EPSG::6614' => [ |
|
16860
|
|
|
'name' => 'Qatar National Datum 1995', |
|
16861
|
|
|
'type' => 'geodetic', |
|
16862
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16863
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16864
|
|
|
'conventional_rs' => null, |
|
16865
|
|
|
'frame_reference_epoch' => null, |
|
16866
|
|
|
'anchor_epoch' => null, |
|
16867
|
|
|
'extent_name' => 'Qatar - onshore', |
|
16868
|
|
|
'help' => 'Defined by transformation from WGS 84 - see coordinate operation code 1840. |
|
16869
|
|
|
', |
|
16870
|
|
|
], |
|
16871
|
|
|
'urn:ogc:def:datum:EPSG::6615' => [ |
|
16872
|
|
|
'name' => 'Porto Santo 1936', |
|
16873
|
|
|
'type' => 'geodetic', |
|
16874
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16875
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16876
|
|
|
'conventional_rs' => null, |
|
16877
|
|
|
'frame_reference_epoch' => null, |
|
16878
|
|
|
'anchor_epoch' => null, |
|
16879
|
|
|
'extent_name' => 'Portugal - Madeira archipelago onshore', |
|
16880
|
|
|
'help' => 'SE Base on Porto Santo island. |
|
16881
|
|
|
Replaced by 1995 adjustment (datum code 6663). For Selvagens see Selvagem Grande (code 6616).', |
|
16882
|
|
|
], |
|
16883
|
|
|
'urn:ogc:def:datum:EPSG::6616' => [ |
|
16884
|
|
|
'name' => 'Selvagem Grande', |
|
16885
|
|
|
'type' => 'geodetic', |
|
16886
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16887
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16888
|
|
|
'conventional_rs' => null, |
|
16889
|
|
|
'frame_reference_epoch' => null, |
|
16890
|
|
|
'anchor_epoch' => null, |
|
16891
|
|
|
'extent_name' => 'Portugal - Selvagens onshore', |
|
16892
|
|
|
'help' => ' |
|
16893
|
|
|
', |
|
16894
|
|
|
], |
|
16895
|
|
|
'urn:ogc:def:datum:EPSG::6618' => [ |
|
16896
|
|
|
'name' => 'South American Datum 1969', |
|
16897
|
|
|
'type' => 'geodetic', |
|
16898
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7050', |
|
16899
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16900
|
|
|
'conventional_rs' => null, |
|
16901
|
|
|
'frame_reference_epoch' => null, |
|
16902
|
|
|
'anchor_epoch' => null, |
|
16903
|
|
|
'extent_name' => 'South America - SAD69 by country', |
|
16904
|
|
|
'help' => 'Fundamental point: Chua. Geodetic latitude: 19°45\'41.6527"S; geodetic longitude: 48°06\'04.0639"W (of Greenwich). (Astronomic coordinates: Latitude 19°45\'41.34"S +/- 0.05", longitude 48°06\'07.80"W +/- 0.08"). |
|
16905
|
|
|
SAD69 uses GRS 1967 ellipsoid but with 1/f to exactly 2 decimal places. In Brazil only, replaced by SAD69(96) (datum code 1075).', |
|
16906
|
|
|
], |
|
16907
|
|
|
'urn:ogc:def:datum:EPSG::6619' => [ |
|
16908
|
|
|
'name' => 'SWEREF99', |
|
16909
|
|
|
'type' => 'geodetic', |
|
16910
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
16911
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16912
|
|
|
'conventional_rs' => null, |
|
16913
|
|
|
'frame_reference_epoch' => null, |
|
16914
|
|
|
'anchor_epoch' => null, |
|
16915
|
|
|
'extent_name' => 'Sweden', |
|
16916
|
|
|
'help' => 'Densification of ETRS89. |
|
16917
|
|
|
The solution was calculated in ITRF97 epoch 1999.5, and has subsequently been corrected to ETRS89 in accordance with guidelines given by EUREF.', |
|
16918
|
|
|
], |
|
16919
|
|
|
'urn:ogc:def:datum:EPSG::6620' => [ |
|
16920
|
|
|
'name' => 'Point 58', |
|
16921
|
|
|
'type' => 'geodetic', |
|
16922
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
16923
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16924
|
|
|
'conventional_rs' => null, |
|
16925
|
|
|
'frame_reference_epoch' => null, |
|
16926
|
|
|
'anchor_epoch' => null, |
|
16927
|
|
|
'extent_name' => 'Africa - 12th parallel N', |
|
16928
|
|
|
'help' => 'Fundamental point: Point 58. Latitude: 12°52\'44.045"N, longitude: 3°58\'37.040"E (of Greenwich). |
|
16929
|
|
|
Used as the basis for computation of the 12th Parallel traverse conducted 1966-70 from Senegal to Chad and connecting to the Blue Nile 1958 (Adindan) triangulation in Sudan.', |
|
16930
|
|
|
], |
|
16931
|
|
|
'urn:ogc:def:datum:EPSG::6621' => [ |
|
16932
|
|
|
'name' => 'Fort Marigot', |
|
16933
|
|
|
'type' => 'geodetic', |
|
16934
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16935
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16936
|
|
|
'conventional_rs' => null, |
|
16937
|
|
|
'frame_reference_epoch' => null, |
|
16938
|
|
|
'anchor_epoch' => null, |
|
16939
|
|
|
'extent_name' => 'Guadeloupe - St Martin and St Barthelemy - onshore', |
|
16940
|
|
|
'help' => ' |
|
16941
|
|
|
Replaced by RRAF 1991 (datum code 1047).', |
|
16942
|
|
|
], |
|
16943
|
|
|
'urn:ogc:def:datum:EPSG::6622' => [ |
|
16944
|
|
|
'name' => 'Guadeloupe 1948', |
|
16945
|
|
|
'type' => 'geodetic', |
|
16946
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16947
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16948
|
|
|
'conventional_rs' => null, |
|
16949
|
|
|
'frame_reference_epoch' => null, |
|
16950
|
|
|
'anchor_epoch' => null, |
|
16951
|
|
|
'extent_name' => 'Guadeloupe - Grande-Terre and surrounding islands - onshore', |
|
16952
|
|
|
'help' => ' |
|
16953
|
|
|
Replaced by RRAF 1991 (datum code 1047).', |
|
16954
|
|
|
], |
|
16955
|
|
|
'urn:ogc:def:datum:EPSG::6623' => [ |
|
16956
|
|
|
'name' => 'Centre Spatial Guyanais 1967', |
|
16957
|
|
|
'type' => 'geodetic', |
|
16958
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16959
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16960
|
|
|
'conventional_rs' => null, |
|
16961
|
|
|
'frame_reference_epoch' => null, |
|
16962
|
|
|
'anchor_epoch' => null, |
|
16963
|
|
|
'extent_name' => 'French Guiana - coastal area', |
|
16964
|
|
|
'help' => 'Fundamental point: Kourou-Diane. Latitude: 5°15\'53.699"N, longitude: 52°48\'09.149"W (of Greenwich). |
|
16965
|
|
|
Replaced by RGFG95 (code 6624).', |
|
16966
|
|
|
], |
|
16967
|
|
|
'urn:ogc:def:datum:EPSG::6624' => [ |
|
16968
|
|
|
'name' => 'Reseau Geodesique Francais Guyane 1995', |
|
16969
|
|
|
'type' => 'geodetic', |
|
16970
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
16971
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16972
|
|
|
'conventional_rs' => null, |
|
16973
|
|
|
'frame_reference_epoch' => null, |
|
16974
|
|
|
'anchor_epoch' => null, |
|
16975
|
|
|
'extent_name' => 'French Guiana', |
|
16976
|
|
|
'help' => 'ITRF93 at epoch 1995.0 |
|
16977
|
|
|
Replaces CSG67 (datum code 6623).', |
|
16978
|
|
|
], |
|
16979
|
|
|
'urn:ogc:def:datum:EPSG::6625' => [ |
|
16980
|
|
|
'name' => 'Martinique 1938', |
|
16981
|
|
|
'type' => 'geodetic', |
|
16982
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16983
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16984
|
|
|
'conventional_rs' => null, |
|
16985
|
|
|
'frame_reference_epoch' => null, |
|
16986
|
|
|
'anchor_epoch' => null, |
|
16987
|
|
|
'extent_name' => 'Martinique - onshore', |
|
16988
|
|
|
'help' => 'Fundamental point: Fort Desaix. Latitude: 14°36\'54.090"N, longitude: 61°04\'04.030"W (of Greenwich). |
|
16989
|
|
|
Replaced by RRAF 1991 (datum code 1047).', |
|
16990
|
|
|
], |
|
16991
|
|
|
'urn:ogc:def:datum:EPSG::6626' => [ |
|
16992
|
|
|
'name' => 'Reunion 1947', |
|
16993
|
|
|
'type' => 'geodetic', |
|
16994
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
16995
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
16996
|
|
|
'conventional_rs' => null, |
|
16997
|
|
|
'frame_reference_epoch' => null, |
|
16998
|
|
|
'anchor_epoch' => null, |
|
16999
|
|
|
'extent_name' => 'Reunion - onshore', |
|
17000
|
|
|
'help' => 'Fundamental point: Piton des Neiges (Borne). Latitude: 21°05\'13.119"S, longitude: 55°29\'09.193"E (of Greenwich). |
|
17001
|
|
|
Replaced by RGR92 (datum code 6627).', |
|
17002
|
|
|
], |
|
17003
|
|
|
'urn:ogc:def:datum:EPSG::6627' => [ |
|
17004
|
|
|
'name' => 'Reseau Geodesique de la Reunion 1992', |
|
17005
|
|
|
'type' => 'geodetic', |
|
17006
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17007
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17008
|
|
|
'conventional_rs' => null, |
|
17009
|
|
|
'frame_reference_epoch' => null, |
|
17010
|
|
|
'anchor_epoch' => null, |
|
17011
|
|
|
'extent_name' => 'Reunion', |
|
17012
|
|
|
'help' => 'ITRF91 at epoch 1993.0 |
|
17013
|
|
|
Replaces Piton des Neiges (code 6626).', |
|
17014
|
|
|
], |
|
17015
|
|
|
'urn:ogc:def:datum:EPSG::6628' => [ |
|
17016
|
|
|
'name' => 'Tahiti 52', |
|
17017
|
|
|
'type' => 'geodetic', |
|
17018
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17019
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17020
|
|
|
'conventional_rs' => null, |
|
17021
|
|
|
'frame_reference_epoch' => null, |
|
17022
|
|
|
'anchor_epoch' => null, |
|
17023
|
|
|
'extent_name' => 'French Polynesia - Society Islands - Moorea and Tahiti', |
|
17024
|
|
|
'help' => 'Fundamental point: Tahiti North Base. Latitude: 17°38\'10.0"S, longitude: 149°36\'57.8"W (of Greenwich). |
|
17025
|
|
|
Replaced by Tahiti 79 (datum code 6690) in Tahiti and Moorea 87 (code 6691) in Moorea.', |
|
17026
|
|
|
], |
|
17027
|
|
|
'urn:ogc:def:datum:EPSG::6629' => [ |
|
17028
|
|
|
'name' => 'Tahaa 54', |
|
17029
|
|
|
'type' => 'geodetic', |
|
17030
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17031
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17032
|
|
|
'conventional_rs' => null, |
|
17033
|
|
|
'frame_reference_epoch' => null, |
|
17034
|
|
|
'anchor_epoch' => null, |
|
17035
|
|
|
'extent_name' => 'French Polynesia - Society Islands - Bora Bora, Huahine, Raiatea, Tahaa', |
|
17036
|
|
|
'help' => 'Fundamental point: Tahaa East Base. Latitude: 16°33\'20.97"S, longitude: 151°29\'06.25"W (of Greenwich). |
|
17037
|
|
|
Replaced by RGPF (datum code 6687).', |
|
17038
|
|
|
], |
|
17039
|
|
|
'urn:ogc:def:datum:EPSG::6630' => [ |
|
17040
|
|
|
'name' => 'IGN72 Nuku Hiva', |
|
17041
|
|
|
'type' => 'geodetic', |
|
17042
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17043
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17044
|
|
|
'conventional_rs' => null, |
|
17045
|
|
|
'frame_reference_epoch' => null, |
|
17046
|
|
|
'anchor_epoch' => null, |
|
17047
|
|
|
'extent_name' => 'French Polynesia - Marquesas Islands - Nuku Hiva, Ua Huka and Ua Pou', |
|
17048
|
|
|
'help' => 'Fundamental point: Taiohae. Latitude: 8°55\'03.97"S, longitude: 140°05\'36.24"W (of Greenwich). |
|
17049
|
|
|
Replaced by RGPF (datum code 6687).', |
|
17050
|
|
|
], |
|
17051
|
|
|
'urn:ogc:def:datum:EPSG::6632' => [ |
|
17052
|
|
|
'name' => 'Combani 1950', |
|
17053
|
|
|
'type' => 'geodetic', |
|
17054
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17055
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17056
|
|
|
'conventional_rs' => null, |
|
17057
|
|
|
'frame_reference_epoch' => null, |
|
17058
|
|
|
'anchor_epoch' => null, |
|
17059
|
|
|
'extent_name' => 'Mayotte - onshore', |
|
17060
|
|
|
'help' => 'Combani South Base. |
|
17061
|
|
|
Replaced by RGM04 and Cadastre 1997 (datum codes 1036-37).', |
|
17062
|
|
|
], |
|
17063
|
|
|
'urn:ogc:def:datum:EPSG::6633' => [ |
|
17064
|
|
|
'name' => 'IGN56 Lifou', |
|
17065
|
|
|
'type' => 'geodetic', |
|
17066
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17067
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17068
|
|
|
'conventional_rs' => null, |
|
17069
|
|
|
'frame_reference_epoch' => null, |
|
17070
|
|
|
'anchor_epoch' => null, |
|
17071
|
|
|
'extent_name' => 'New Caledonia - Lifou', |
|
17072
|
|
|
'help' => 'South end of the Goume base. |
|
17073
|
|
|
', |
|
17074
|
|
|
], |
|
17075
|
|
|
'urn:ogc:def:datum:EPSG::6634' => [ |
|
17076
|
|
|
'name' => 'IGN72 Grande Terre', |
|
17077
|
|
|
'type' => 'geodetic', |
|
17078
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17079
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17080
|
|
|
'conventional_rs' => null, |
|
17081
|
|
|
'frame_reference_epoch' => null, |
|
17082
|
|
|
'anchor_epoch' => null, |
|
17083
|
|
|
'extent_name' => 'New Caledonia - Grande Terre', |
|
17084
|
|
|
'help' => 'North end of Gomen base. |
|
17085
|
|
|
', |
|
17086
|
|
|
], |
|
17087
|
|
|
'urn:ogc:def:datum:EPSG::6636' => [ |
|
17088
|
|
|
'name' => 'Petrels 1972', |
|
17089
|
|
|
'type' => 'geodetic', |
|
17090
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17091
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17092
|
|
|
'conventional_rs' => null, |
|
17093
|
|
|
'frame_reference_epoch' => null, |
|
17094
|
|
|
'anchor_epoch' => null, |
|
17095
|
|
|
'extent_name' => 'Antarctica - Adelie Land - Petrels island', |
|
17096
|
|
|
'help' => 'Fundamental point: Astro station DZ on Ile de Petrels. Latitude: 66°40\'00"S, longitude: 140°00\'46"E (of Greenwich). |
|
17097
|
|
|
', |
|
17098
|
|
|
], |
|
17099
|
|
|
'urn:ogc:def:datum:EPSG::6637' => [ |
|
17100
|
|
|
'name' => 'Pointe Geologie Perroud 1950', |
|
17101
|
|
|
'type' => 'geodetic', |
|
17102
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17103
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17104
|
|
|
'conventional_rs' => null, |
|
17105
|
|
|
'frame_reference_epoch' => null, |
|
17106
|
|
|
'anchor_epoch' => null, |
|
17107
|
|
|
'extent_name' => 'Antarctica - Adelie Land coastal area', |
|
17108
|
|
|
'help' => 'Fundamental point: Astro station G.0 on Pointe Geologie. Latitude: 66°39\'30"S, longitude: 140°01\'00"E (of Greenwich). |
|
17109
|
|
|
', |
|
17110
|
|
|
], |
|
17111
|
|
|
'urn:ogc:def:datum:EPSG::6638' => [ |
|
17112
|
|
|
'name' => 'Saint Pierre et Miquelon 1950', |
|
17113
|
|
|
'type' => 'geodetic', |
|
17114
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
17115
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17116
|
|
|
'conventional_rs' => null, |
|
17117
|
|
|
'frame_reference_epoch' => null, |
|
17118
|
|
|
'anchor_epoch' => null, |
|
17119
|
|
|
'extent_name' => 'St Pierre and Miquelon - onshore', |
|
17120
|
|
|
'help' => ' |
|
17121
|
|
|
Replaced by RGSPM06 (datum code 1038).', |
|
17122
|
|
|
], |
|
17123
|
|
|
'urn:ogc:def:datum:EPSG::6639' => [ |
|
17124
|
|
|
'name' => 'MOP78', |
|
17125
|
|
|
'type' => 'geodetic', |
|
17126
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17127
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17128
|
|
|
'conventional_rs' => null, |
|
17129
|
|
|
'frame_reference_epoch' => null, |
|
17130
|
|
|
'anchor_epoch' => null, |
|
17131
|
|
|
'extent_name' => 'Wallis and Futuna - Wallis', |
|
17132
|
|
|
'help' => ' |
|
17133
|
|
|
', |
|
17134
|
|
|
], |
|
17135
|
|
|
'urn:ogc:def:datum:EPSG::6641' => [ |
|
17136
|
|
|
'name' => 'IGN53 Mare', |
|
17137
|
|
|
'type' => 'geodetic', |
|
17138
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17139
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17140
|
|
|
'conventional_rs' => null, |
|
17141
|
|
|
'frame_reference_epoch' => null, |
|
17142
|
|
|
'anchor_epoch' => null, |
|
17143
|
|
|
'extent_name' => 'New Caledonia - Mare', |
|
17144
|
|
|
'help' => 'South-east end of the La Roche base. |
|
17145
|
|
|
', |
|
17146
|
|
|
], |
|
17147
|
|
|
'urn:ogc:def:datum:EPSG::6642' => [ |
|
17148
|
|
|
'name' => 'ST84 Ile des Pins', |
|
17149
|
|
|
'type' => 'geodetic', |
|
17150
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17151
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17152
|
|
|
'conventional_rs' => null, |
|
17153
|
|
|
'frame_reference_epoch' => null, |
|
17154
|
|
|
'anchor_epoch' => null, |
|
17155
|
|
|
'extent_name' => 'New Caledonia - Ile des Pins', |
|
17156
|
|
|
'help' => 'Fundamental point: Pic Nga. |
|
17157
|
|
|
', |
|
17158
|
|
|
], |
|
17159
|
|
|
'urn:ogc:def:datum:EPSG::6643' => [ |
|
17160
|
|
|
'name' => 'ST71 Belep', |
|
17161
|
|
|
'type' => 'geodetic', |
|
17162
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17163
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17164
|
|
|
'conventional_rs' => null, |
|
17165
|
|
|
'frame_reference_epoch' => null, |
|
17166
|
|
|
'anchor_epoch' => null, |
|
17167
|
|
|
'extent_name' => 'New Caledonia - Belep', |
|
17168
|
|
|
'help' => ' |
|
17169
|
|
|
', |
|
17170
|
|
|
], |
|
17171
|
|
|
'urn:ogc:def:datum:EPSG::6644' => [ |
|
17172
|
|
|
'name' => 'NEA74 Noumea', |
|
17173
|
|
|
'type' => 'geodetic', |
|
17174
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17175
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17176
|
|
|
'conventional_rs' => null, |
|
17177
|
|
|
'frame_reference_epoch' => null, |
|
17178
|
|
|
'anchor_epoch' => null, |
|
17179
|
|
|
'extent_name' => 'New Caledonia - Grande Terre - Noumea', |
|
17180
|
|
|
'help' => 'Noumea old signal station. |
|
17181
|
|
|
', |
|
17182
|
|
|
], |
|
17183
|
|
|
'urn:ogc:def:datum:EPSG::6646' => [ |
|
17184
|
|
|
'name' => 'Grand Comoros', |
|
17185
|
|
|
'type' => 'geodetic', |
|
17186
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17187
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17188
|
|
|
'conventional_rs' => null, |
|
17189
|
|
|
'frame_reference_epoch' => null, |
|
17190
|
|
|
'anchor_epoch' => null, |
|
17191
|
|
|
'extent_name' => 'Comoros - Njazidja (Grande Comore)', |
|
17192
|
|
|
'help' => 'Fundamental point: M\'Tsaoueni. Latitude: 11°28\'32.200"S, longitude: 43°15\'42.315"E (of Greenwich). |
|
17193
|
|
|
', |
|
17194
|
|
|
], |
|
17195
|
|
|
'urn:ogc:def:datum:EPSG::6647' => [ |
|
17196
|
|
|
'name' => 'International Terrestrial Reference Frame 1988', |
|
17197
|
|
|
'type' => 'dynamic geodetic', |
|
17198
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17199
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17200
|
|
|
'conventional_rs' => null, |
|
17201
|
|
|
'frame_reference_epoch' => 1988.0, |
|
17202
|
|
|
'anchor_epoch' => null, |
|
17203
|
|
|
'extent_name' => 'World', |
|
17204
|
|
|
'help' => 'Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of 3-dimensional Cartesian station coordinates (SCS). |
|
17205
|
|
|
Realization of the IERS Terrestrial Reference System (ITRS) at epoch 1988.0. Replaced by ITRF89 (code 6648).', |
|
17206
|
|
|
], |
|
17207
|
|
|
'urn:ogc:def:datum:EPSG::6648' => [ |
|
17208
|
|
|
'name' => 'International Terrestrial Reference Frame 1989', |
|
17209
|
|
|
'type' => 'dynamic geodetic', |
|
17210
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17211
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17212
|
|
|
'conventional_rs' => null, |
|
17213
|
|
|
'frame_reference_epoch' => 1988.0, |
|
17214
|
|
|
'anchor_epoch' => null, |
|
17215
|
|
|
'extent_name' => 'World', |
|
17216
|
|
|
'help' => 'Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0. |
|
17217
|
|
|
Realization of the IERS Terrestrial Reference System (ITRS) from April 1991. Replaces ITRF88 (code 6647). Replaced by ITRF90 (code 6649).', |
|
17218
|
|
|
], |
|
17219
|
|
|
'urn:ogc:def:datum:EPSG::6649' => [ |
|
17220
|
|
|
'name' => 'International Terrestrial Reference Frame 1990', |
|
17221
|
|
|
'type' => 'dynamic geodetic', |
|
17222
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17223
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17224
|
|
|
'conventional_rs' => null, |
|
17225
|
|
|
'frame_reference_epoch' => 1988.0, |
|
17226
|
|
|
'anchor_epoch' => null, |
|
17227
|
|
|
'extent_name' => 'World', |
|
17228
|
|
|
'help' => 'Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0. |
|
17229
|
|
|
Realization of the IERS Terrestrial Reference System (ITRS) from December 1991. Replaces ITRF89 (code 6648). Replaced by ITRF91 (code 6650).', |
|
17230
|
|
|
], |
|
17231
|
|
|
'urn:ogc:def:datum:EPSG::6650' => [ |
|
17232
|
|
|
'name' => 'International Terrestrial Reference Frame 1991', |
|
17233
|
|
|
'type' => 'dynamic geodetic', |
|
17234
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17235
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17236
|
|
|
'conventional_rs' => null, |
|
17237
|
|
|
'frame_reference_epoch' => 1988.0, |
|
17238
|
|
|
'anchor_epoch' => null, |
|
17239
|
|
|
'extent_name' => 'World', |
|
17240
|
|
|
'help' => 'Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0. |
|
17241
|
|
|
Realization of the IERS Terrestrial Reference System (ITRS) from October 1992. Replaces ITRF90 (code 6649). Replaced by ITRF92 (code 6651).', |
|
17242
|
|
|
], |
|
17243
|
|
|
'urn:ogc:def:datum:EPSG::6651' => [ |
|
17244
|
|
|
'name' => 'International Terrestrial Reference Frame 1992', |
|
17245
|
|
|
'type' => 'dynamic geodetic', |
|
17246
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17247
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17248
|
|
|
'conventional_rs' => null, |
|
17249
|
|
|
'frame_reference_epoch' => 1988.0, |
|
17250
|
|
|
'anchor_epoch' => null, |
|
17251
|
|
|
'extent_name' => 'World', |
|
17252
|
|
|
'help' => 'Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of 287 3-dimensional Cartesian station coordinates (SCS) for epoch 1988.0. |
|
17253
|
|
|
Realization of the IERS Terrestrial Reference System (ITRS) from October 1993. Replaces ITRF91 (code 6650). Replaced by ITRF93 (code 6652).', |
|
17254
|
|
|
], |
|
17255
|
|
|
'urn:ogc:def:datum:EPSG::6652' => [ |
|
17256
|
|
|
'name' => 'International Terrestrial Reference Frame 1993', |
|
17257
|
|
|
'type' => 'dynamic geodetic', |
|
17258
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17259
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17260
|
|
|
'conventional_rs' => null, |
|
17261
|
|
|
'frame_reference_epoch' => 1993.0, |
|
17262
|
|
|
'anchor_epoch' => null, |
|
17263
|
|
|
'extent_name' => 'World', |
|
17264
|
|
|
'help' => 'Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of 3-dimensional Cartesian station coordinates (SCS) for epoch 1993.0. |
|
17265
|
|
|
Realization of the IERS Terrestrial Reference System (ITRS) from October 1994. Replaces ITRF92 (code 6651). Replaced by ITRF94 (code 6653).', |
|
17266
|
|
|
], |
|
17267
|
|
|
'urn:ogc:def:datum:EPSG::6653' => [ |
|
17268
|
|
|
'name' => 'International Terrestrial Reference Frame 1994', |
|
17269
|
|
|
'type' => 'dynamic geodetic', |
|
17270
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17271
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17272
|
|
|
'conventional_rs' => null, |
|
17273
|
|
|
'frame_reference_epoch' => 1993.0, |
|
17274
|
|
|
'anchor_epoch' => null, |
|
17275
|
|
|
'extent_name' => 'World', |
|
17276
|
|
|
'help' => 'Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of 3-dimensional Cartesian station coordinates (SCS) for epoch 1993.0. |
|
17277
|
|
|
Realization of the IERS Terrestrial Reference System (ITRS) from March 1996. Replaces ITRF93 (code 6652). Replaced by ITRF96 (code 6654).', |
|
17278
|
|
|
], |
|
17279
|
|
|
'urn:ogc:def:datum:EPSG::6654' => [ |
|
17280
|
|
|
'name' => 'International Terrestrial Reference Frame 1996', |
|
17281
|
|
|
'type' => 'dynamic geodetic', |
|
17282
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17283
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17284
|
|
|
'conventional_rs' => null, |
|
17285
|
|
|
'frame_reference_epoch' => 1997.0, |
|
17286
|
|
|
'anchor_epoch' => null, |
|
17287
|
|
|
'extent_name' => 'World', |
|
17288
|
|
|
'help' => 'Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of 3-dimensional Cartesian station coordinates (SCS) for epoch 1997.0. |
|
17289
|
|
|
Realization of the IERS Terrestrial Reference System (ITRS) from May 1998. Replaces ITRF94 (code 6653). Replaced by ITRF97 (code 6655).', |
|
17290
|
|
|
], |
|
17291
|
|
|
'urn:ogc:def:datum:EPSG::6655' => [ |
|
17292
|
|
|
'name' => 'International Terrestrial Reference Frame 1997', |
|
17293
|
|
|
'type' => 'dynamic geodetic', |
|
17294
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17295
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17296
|
|
|
'conventional_rs' => null, |
|
17297
|
|
|
'frame_reference_epoch' => 1997.0, |
|
17298
|
|
|
'anchor_epoch' => null, |
|
17299
|
|
|
'extent_name' => 'World', |
|
17300
|
|
|
'help' => 'Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of 3-dimensional Cartesian station coordinates (SCS) for epoch 1997.0. |
|
17301
|
|
|
Realization of the IERS Terrestrial Reference System (ITRS) from May 1999. Replaces ITRF96 (code 6654). Replaced by ITRF2000 (code 6656).', |
|
17302
|
|
|
], |
|
17303
|
|
|
'urn:ogc:def:datum:EPSG::6656' => [ |
|
17304
|
|
|
'name' => 'International Terrestrial Reference Frame 2000', |
|
17305
|
|
|
'type' => 'dynamic geodetic', |
|
17306
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17307
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17308
|
|
|
'conventional_rs' => null, |
|
17309
|
|
|
'frame_reference_epoch' => 1997.0, |
|
17310
|
|
|
'anchor_epoch' => null, |
|
17311
|
|
|
'extent_name' => 'World', |
|
17312
|
|
|
'help' => 'Origin at geocentre, orientated to the BIH Terrestrial System at epoch 1984.0. Datum defined by a set of 3-dimensional Cartesian station coordinates (SCS) for epoch 1997.0. |
|
17313
|
|
|
Realization of the IERS Terrestrial Reference System (ITRS) from 2004. Replaces ITRF97 (code 6655). Replaced by ITRF2005 (code 6896).', |
|
17314
|
|
|
], |
|
17315
|
|
|
'urn:ogc:def:datum:EPSG::6657' => [ |
|
17316
|
|
|
'name' => 'Reykjavik 1900', |
|
17317
|
|
|
'type' => 'geodetic', |
|
17318
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7051', |
|
17319
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17320
|
|
|
'conventional_rs' => null, |
|
17321
|
|
|
'frame_reference_epoch' => null, |
|
17322
|
|
|
'anchor_epoch' => null, |
|
17323
|
|
|
'extent_name' => 'Iceland - mainland', |
|
17324
|
|
|
'help' => 'Fundamental point: Latitude: 64°08\'31.88"N, longitude: 21°55\'51.15"W (of Greenwich). |
|
17325
|
|
|
', |
|
17326
|
|
|
], |
|
17327
|
|
|
'urn:ogc:def:datum:EPSG::6658' => [ |
|
17328
|
|
|
'name' => 'Hjorsey 1955', |
|
17329
|
|
|
'type' => 'geodetic', |
|
17330
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17331
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17332
|
|
|
'conventional_rs' => null, |
|
17333
|
|
|
'frame_reference_epoch' => null, |
|
17334
|
|
|
'anchor_epoch' => null, |
|
17335
|
|
|
'extent_name' => 'Iceland - mainland', |
|
17336
|
|
|
'help' => 'Fundamental point: Latitude: 64°31\'29.26"N, longitude: 22°22\'05.84"W (of Greenwich). |
|
17337
|
|
|
', |
|
17338
|
|
|
], |
|
17339
|
|
|
'urn:ogc:def:datum:EPSG::6659' => [ |
|
17340
|
|
|
'name' => 'Islands Net 1993', |
|
17341
|
|
|
'type' => 'geodetic', |
|
17342
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17343
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17344
|
|
|
'conventional_rs' => null, |
|
17345
|
|
|
'frame_reference_epoch' => null, |
|
17346
|
|
|
'anchor_epoch' => null, |
|
17347
|
|
|
'extent_name' => 'Iceland', |
|
17348
|
|
|
'help' => 'ITRF93 at epoch 1993.6. |
|
17349
|
|
|
Replaced by ISN2004 (datum code 1060).', |
|
17350
|
|
|
], |
|
17351
|
|
|
'urn:ogc:def:datum:EPSG::6660' => [ |
|
17352
|
|
|
'name' => 'Helle 1954', |
|
17353
|
|
|
'type' => 'geodetic', |
|
17354
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17355
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17356
|
|
|
'conventional_rs' => null, |
|
17357
|
|
|
'frame_reference_epoch' => null, |
|
17358
|
|
|
'anchor_epoch' => null, |
|
17359
|
|
|
'extent_name' => 'Jan Mayen - onshore', |
|
17360
|
|
|
'help' => ' |
|
17361
|
|
|
', |
|
17362
|
|
|
], |
|
17363
|
|
|
'urn:ogc:def:datum:EPSG::6661' => [ |
|
17364
|
|
|
'name' => 'Latvian geodetic coordinate system 1992', |
|
17365
|
|
|
'type' => 'geodetic', |
|
17366
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17367
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17368
|
|
|
'conventional_rs' => null, |
|
17369
|
|
|
'frame_reference_epoch' => null, |
|
17370
|
|
|
'anchor_epoch' => null, |
|
17371
|
|
|
'extent_name' => 'Latvia', |
|
17372
|
|
|
'help' => 'Constrained to 4 ETRS89 points in Latvia from the EUREF Baltic 1992 campaign. |
|
17373
|
|
|
Densification of ETRS89 during the 1992 Baltic campaign. Replaced by Latvian coordinate system 2020 (datum code 1356).', |
|
17374
|
|
|
], |
|
17375
|
|
|
'urn:ogc:def:datum:EPSG::6663' => [ |
|
17376
|
|
|
'name' => 'Porto Santo 1995', |
|
17377
|
|
|
'type' => 'geodetic', |
|
17378
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17379
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17380
|
|
|
'conventional_rs' => null, |
|
17381
|
|
|
'frame_reference_epoch' => null, |
|
17382
|
|
|
'anchor_epoch' => null, |
|
17383
|
|
|
'extent_name' => 'Portugal - Madeira archipelago onshore', |
|
17384
|
|
|
'help' => 'SE Base on Porto Santo island. Origin and orientation constrained to those of the 1936 adjustment. |
|
17385
|
|
|
Classical and GPS observations. Replaces 1936 adjustment (datum code 6615). For Selvagens see Selvagem Grande (datum code 6616).', |
|
17386
|
|
|
], |
|
17387
|
|
|
'urn:ogc:def:datum:EPSG::6664' => [ |
|
17388
|
|
|
'name' => 'Azores Oriental Islands 1995', |
|
17389
|
|
|
'type' => 'geodetic', |
|
17390
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17391
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17392
|
|
|
'conventional_rs' => null, |
|
17393
|
|
|
'frame_reference_epoch' => null, |
|
17394
|
|
|
'anchor_epoch' => null, |
|
17395
|
|
|
'extent_name' => 'Portugal - Azores E - onshore', |
|
17396
|
|
|
'help' => 'Fundamental point: Forte de São Bras. Origin and orientation constrained to those of the 1940 adjustment. |
|
17397
|
|
|
Classical and GPS observations. Replaces 1940 adjustment (datum code 6184).', |
|
17398
|
|
|
], |
|
17399
|
|
|
'urn:ogc:def:datum:EPSG::6665' => [ |
|
17400
|
|
|
'name' => 'Azores Central Islands 1995', |
|
17401
|
|
|
'type' => 'geodetic', |
|
17402
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17403
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17404
|
|
|
'conventional_rs' => null, |
|
17405
|
|
|
'frame_reference_epoch' => null, |
|
17406
|
|
|
'anchor_epoch' => null, |
|
17407
|
|
|
'extent_name' => 'Portugal - Azores C - onshore', |
|
17408
|
|
|
'help' => 'Fundamental point: Graciosa south west base. Origin and orientation constrained to those of the 1948 adjustment. |
|
17409
|
|
|
Classical and GPS observations. Replaces 1948 adjustment (datum code 6183).', |
|
17410
|
|
|
], |
|
17411
|
|
|
'urn:ogc:def:datum:EPSG::6666' => [ |
|
17412
|
|
|
'name' => 'Lisbon 1890', |
|
17413
|
|
|
'type' => 'geodetic', |
|
17414
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
17415
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17416
|
|
|
'conventional_rs' => null, |
|
17417
|
|
|
'frame_reference_epoch' => null, |
|
17418
|
|
|
'anchor_epoch' => null, |
|
17419
|
|
|
'extent_name' => 'Portugal - mainland - onshore', |
|
17420
|
|
|
'help' => 'Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42\'43.631"N, longitude: 9°07\'54.862"W of Greenwich. |
|
17421
|
|
|
Replaced by Lisbon 1937 adjustment (which uses International 1924 ellipsoid).', |
|
17422
|
|
|
], |
|
17423
|
|
|
'urn:ogc:def:datum:EPSG::6667' => [ |
|
17424
|
|
|
'name' => 'Iraq-Kuwait Boundary Datum 1992', |
|
17425
|
|
|
'type' => 'geodetic', |
|
17426
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
17427
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17428
|
|
|
'conventional_rs' => null, |
|
17429
|
|
|
'frame_reference_epoch' => null, |
|
17430
|
|
|
'anchor_epoch' => null, |
|
17431
|
|
|
'extent_name' => 'Asia - Middle East - Iraq-Kuwait boundary', |
|
17432
|
|
|
'help' => 'Four stations established between September and December 1991 determined by GPS and Doppler observations. |
|
17433
|
|
|
', |
|
17434
|
|
|
], |
|
17435
|
|
|
'urn:ogc:def:datum:EPSG::6668' => [ |
|
17436
|
|
|
'name' => 'European Datum 1979', |
|
17437
|
|
|
'type' => 'geodetic', |
|
17438
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17439
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17440
|
|
|
'conventional_rs' => null, |
|
17441
|
|
|
'frame_reference_epoch' => null, |
|
17442
|
|
|
'anchor_epoch' => null, |
|
17443
|
|
|
'extent_name' => 'Europe - west', |
|
17444
|
|
|
'help' => 'Fundamental point: Potsdam (Helmert Tower). Latitude: 52°22\'51.4456"N, longitude: 13°03\'58.9283"E (of Greenwich). |
|
17445
|
|
|
Replaced by 1987 adjustment.', |
|
17446
|
|
|
], |
|
17447
|
|
|
'urn:ogc:def:datum:EPSG::6670' => [ |
|
17448
|
|
|
'name' => 'Istituto Geografico Militaire 1995', |
|
17449
|
|
|
'type' => 'geodetic', |
|
17450
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17451
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17452
|
|
|
'conventional_rs' => null, |
|
17453
|
|
|
'frame_reference_epoch' => null, |
|
17454
|
|
|
'anchor_epoch' => null, |
|
17455
|
|
|
'extent_name' => 'Italy - including San Marino and Vatican', |
|
17456
|
|
|
'help' => 'Densification of ETRF89 in Italy. Network of 1296 points observed 1992-1995 adjusted in 1996 constrained to 9 ETRF89 points at epoch 1989.0. By April 2021 the framework was composed of 3104 points of the fundamental network and 3819 densification points. |
|
17457
|
|
|
Replaced by RDN2008 (datum code 1132) from 2011-11-10.', |
|
17458
|
|
|
], |
|
17459
|
|
|
'urn:ogc:def:datum:EPSG::6671' => [ |
|
17460
|
|
|
'name' => 'Voirol 1879', |
|
17461
|
|
|
'type' => 'geodetic', |
|
17462
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
17463
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17464
|
|
|
'conventional_rs' => null, |
|
17465
|
|
|
'frame_reference_epoch' => null, |
|
17466
|
|
|
'anchor_epoch' => null, |
|
17467
|
|
|
'extent_name' => 'Algeria - north of 32°N', |
|
17468
|
|
|
'help' => 'Fundamental point: Voirol. Latitude: 36°45\'08.199"N, longitude: 3°02\'49.435"E (of Greenwich). Uses RGS (and old IGN) value of 2°20\'13.95"for Greenwich-Paris meridian difference. |
|
17469
|
|
|
Replaces Voirol 1875 (code 6304).', |
|
17470
|
|
|
], |
|
17471
|
|
|
'urn:ogc:def:datum:EPSG::6672' => [ |
|
17472
|
|
|
'name' => 'Chatham Islands Datum 1971', |
|
17473
|
|
|
'type' => 'geodetic', |
|
17474
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17475
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17476
|
|
|
'conventional_rs' => null, |
|
17477
|
|
|
'frame_reference_epoch' => null, |
|
17478
|
|
|
'anchor_epoch' => null, |
|
17479
|
|
|
'extent_name' => 'New Zealand - Chatham Islands group', |
|
17480
|
|
|
'help' => ' |
|
17481
|
|
|
Replaced by Chatham Islands Datum 1979 (code 6673).', |
|
17482
|
|
|
], |
|
17483
|
|
|
'urn:ogc:def:datum:EPSG::6673' => [ |
|
17484
|
|
|
'name' => 'Chatham Islands Datum 1979', |
|
17485
|
|
|
'type' => 'geodetic', |
|
17486
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17487
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17488
|
|
|
'conventional_rs' => null, |
|
17489
|
|
|
'frame_reference_epoch' => null, |
|
17490
|
|
|
'anchor_epoch' => null, |
|
17491
|
|
|
'extent_name' => 'New Zealand - Chatham Islands group', |
|
17492
|
|
|
'help' => 'Fundamental point: station Astro. Latitude: 43°57\'23.60"S, longitude: 176°34\'28.65"W (of Greenwich). |
|
17493
|
|
|
Replaces Chatham Islands Datum 1971 (code 6672). Replaced by New Zealand Geodetic Datum 2000 (code 6167) from March 2000.', |
|
17494
|
|
|
], |
|
17495
|
|
|
'urn:ogc:def:datum:EPSG::6674' => [ |
|
17496
|
|
|
'name' => 'Sistema de Referencia Geocentrico para las AmericaS 2000', |
|
17497
|
|
|
'type' => 'geodetic', |
|
17498
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17499
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17500
|
|
|
'conventional_rs' => null, |
|
17501
|
|
|
'frame_reference_epoch' => null, |
|
17502
|
|
|
'anchor_epoch' => null, |
|
17503
|
|
|
'extent_name' => 'Latin America - SIRGAS 2000 by country', |
|
17504
|
|
|
'help' => 'ITRF2000 at epoch 2000.40. |
|
17505
|
|
|
Realized by a frame of 184 stations observed in 2000 and adjusted in the ITRF2000. Includes ties to tide gauges. Replaces SIRGAS 1995 system for South America; expands SIRGAS to Central America. Name changed in 2001 for use in all of Latin America.', |
|
17506
|
|
|
], |
|
17507
|
|
|
'urn:ogc:def:datum:EPSG::6675' => [ |
|
17508
|
|
|
'name' => 'Guam 1963', |
|
17509
|
|
|
'type' => 'geodetic', |
|
17510
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
17511
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17512
|
|
|
'conventional_rs' => null, |
|
17513
|
|
|
'frame_reference_epoch' => null, |
|
17514
|
|
|
'anchor_epoch' => null, |
|
17515
|
|
|
'extent_name' => 'Pacific - Guam and NMI - onshore', |
|
17516
|
|
|
'help' => 'Fundamental point: Tagcha. Latitude: 13°22\'38.49"N, longitude: 144°45\'51.56"E (of Greenwich). |
|
17517
|
|
|
Replaced by NAD83(HARN)', |
|
17518
|
|
|
], |
|
17519
|
|
|
'urn:ogc:def:datum:EPSG::6676' => [ |
|
17520
|
|
|
'name' => 'Vientiane 1982', |
|
17521
|
|
|
'type' => 'geodetic', |
|
17522
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024', |
|
17523
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17524
|
|
|
'conventional_rs' => null, |
|
17525
|
|
|
'frame_reference_epoch' => null, |
|
17526
|
|
|
'anchor_epoch' => null, |
|
17527
|
|
|
'extent_name' => 'Laos', |
|
17528
|
|
|
'help' => 'Fundamental point: Vientiane (Nongteng) Astro Pillar. Latitude: 18°01\'31.6301"N, longitude: 102°30\'56.6999"E (of Greenwich). |
|
17529
|
|
|
Replaced by Lao 1993.', |
|
17530
|
|
|
], |
|
17531
|
|
|
'urn:ogc:def:datum:EPSG::6677' => [ |
|
17532
|
|
|
'name' => 'Lao 1993', |
|
17533
|
|
|
'type' => 'geodetic', |
|
17534
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024', |
|
17535
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17536
|
|
|
'conventional_rs' => null, |
|
17537
|
|
|
'frame_reference_epoch' => null, |
|
17538
|
|
|
'anchor_epoch' => null, |
|
17539
|
|
|
'extent_name' => 'Laos', |
|
17540
|
|
|
'help' => 'Fundamental point: Lao 1982 coordinates of Pakxa pillar. Latitude: 18°23\'57.0056"N, longitude: 103°38\'41.8020"E (of Greenwich). Orientation parallel with WGS 84. |
|
17541
|
|
|
Replaces Vientiane 1982. Replaced by Lao 1997', |
|
17542
|
|
|
], |
|
17543
|
|
|
'urn:ogc:def:datum:EPSG::6678' => [ |
|
17544
|
|
|
'name' => 'Lao National Datum 1997', |
|
17545
|
|
|
'type' => 'geodetic', |
|
17546
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7024', |
|
17547
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17548
|
|
|
'conventional_rs' => null, |
|
17549
|
|
|
'frame_reference_epoch' => null, |
|
17550
|
|
|
'anchor_epoch' => null, |
|
17551
|
|
|
'extent_name' => 'Laos', |
|
17552
|
|
|
'help' => 'Fundamental point: Vientiane (Nongteng) Astro Pillar. Latitude: 18°01\'31.3480"N, longitude: 102°30\'57.1376"E (of Greenwich). |
|
17553
|
|
|
Replaces Lao 1993.', |
|
17554
|
|
|
], |
|
17555
|
|
|
'urn:ogc:def:datum:EPSG::6679' => [ |
|
17556
|
|
|
'name' => 'Jouik 1961', |
|
17557
|
|
|
'type' => 'geodetic', |
|
17558
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
17559
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17560
|
|
|
'conventional_rs' => null, |
|
17561
|
|
|
'frame_reference_epoch' => null, |
|
17562
|
|
|
'anchor_epoch' => null, |
|
17563
|
|
|
'extent_name' => 'Mauritania - north coast', |
|
17564
|
|
|
'help' => ' |
|
17565
|
|
|
Replaced by Mauritania 1999 (datum code 6702).', |
|
17566
|
|
|
], |
|
17567
|
|
|
'urn:ogc:def:datum:EPSG::6680' => [ |
|
17568
|
|
|
'name' => 'Nouakchott 1965', |
|
17569
|
|
|
'type' => 'geodetic', |
|
17570
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
17571
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17572
|
|
|
'conventional_rs' => null, |
|
17573
|
|
|
'frame_reference_epoch' => null, |
|
17574
|
|
|
'anchor_epoch' => null, |
|
17575
|
|
|
'extent_name' => 'Mauritania - central coast', |
|
17576
|
|
|
'help' => 'Nouakchott astronomical point. |
|
17577
|
|
|
Triangulation limited to environs of Nouakchott. Extended in 1982 by satellite translocation from a single station "Ruines" to support Syledis chain for offshore operations. Replaced by Mauritania 1999 (datum code 6602).', |
|
17578
|
|
|
], |
|
17579
|
|
|
'urn:ogc:def:datum:EPSG::6682' => [ |
|
17580
|
|
|
'name' => 'Gulshan 303', |
|
17581
|
|
|
'type' => 'geodetic', |
|
17582
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7015', |
|
17583
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17584
|
|
|
'conventional_rs' => null, |
|
17585
|
|
|
'frame_reference_epoch' => null, |
|
17586
|
|
|
'anchor_epoch' => null, |
|
17587
|
|
|
'extent_name' => 'Bangladesh', |
|
17588
|
|
|
'help' => 'Gulshan garden, Dhaka. |
|
17589
|
|
|
Network of more than 140 control points observed and adjusted in 1995 by Japan International Cooperation Agency (JICA).', |
|
17590
|
|
|
], |
|
17591
|
|
|
'urn:ogc:def:datum:EPSG::6683' => [ |
|
17592
|
|
|
'name' => 'Philippine Reference System 1992', |
|
17593
|
|
|
'type' => 'geodetic', |
|
17594
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
17595
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17596
|
|
|
'conventional_rs' => null, |
|
17597
|
|
|
'frame_reference_epoch' => null, |
|
17598
|
|
|
'anchor_epoch' => null, |
|
17599
|
|
|
'extent_name' => 'Philippines', |
|
17600
|
|
|
'help' => 'Fundamental point: Balacan. Latitude: 13°33\'41.000"N, longitude: 121°52\'03.000"E (of Greenwich), geoid-ellipsoid separation 0.34m. |
|
17601
|
|
|
Replaces Luzon 1911 datum (code 6253).', |
|
17602
|
|
|
], |
|
17603
|
|
|
'urn:ogc:def:datum:EPSG::6684' => [ |
|
17604
|
|
|
'name' => 'Gan 1970', |
|
17605
|
|
|
'type' => 'geodetic', |
|
17606
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17607
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17608
|
|
|
'conventional_rs' => null, |
|
17609
|
|
|
'frame_reference_epoch' => null, |
|
17610
|
|
|
'anchor_epoch' => null, |
|
17611
|
|
|
'extent_name' => 'Maldives - onshore', |
|
17612
|
|
|
'help' => ' |
|
17613
|
|
|
In some references incorrectly named "Gandajika 1970". See datum code 6685.', |
|
17614
|
|
|
], |
|
17615
|
|
|
'urn:ogc:def:datum:EPSG::6686' => [ |
|
17616
|
|
|
'name' => 'Marco Geocentrico Nacional de Referencia', |
|
17617
|
|
|
'type' => 'geodetic', |
|
17618
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17619
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17620
|
|
|
'conventional_rs' => null, |
|
17621
|
|
|
'frame_reference_epoch' => null, |
|
17622
|
|
|
'anchor_epoch' => null, |
|
17623
|
|
|
'extent_name' => 'Colombia', |
|
17624
|
|
|
'help' => 'Densification of SIRGAS95 (ITRF94 at epoch 1995.4) in Colombia. Bogota observatory coordinates: Latitude: 4°35\'46.3215"N, longitude: 74°04\'39.0285"W (of Greenwich). |
|
17625
|
|
|
Densification of SIRGAS 1995 within Colombia. Replaces Bogota 1975 (datum code 6218).', |
|
17626
|
|
|
], |
|
17627
|
|
|
'urn:ogc:def:datum:EPSG::6687' => [ |
|
17628
|
|
|
'name' => 'Reseau Geodesique de la Polynesie Francaise', |
|
17629
|
|
|
'type' => 'geodetic', |
|
17630
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17631
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17632
|
|
|
'conventional_rs' => null, |
|
17633
|
|
|
'frame_reference_epoch' => null, |
|
17634
|
|
|
'anchor_epoch' => null, |
|
17635
|
|
|
'extent_name' => 'French Polynesia', |
|
17636
|
|
|
'help' => 'ITRF92 at epoch 1993.0. Densification by GPS of the Reference Network of French Polynesia, a coordinate set of 13 stations determined through DORIS observations. |
|
17637
|
|
|
Replaces Tahaa 54 (datum code 6629), IGN 63 Hiva Oa (6689), IGN 72 Nuku Hiva (6630), Maupiti 83 (6692), MHEFO 55 (6688), Moorea 87 (6691) and Tahiti 79 (6690).', |
|
17638
|
|
|
], |
|
17639
|
|
|
'urn:ogc:def:datum:EPSG::6688' => [ |
|
17640
|
|
|
'name' => 'Fatu Iva 72', |
|
17641
|
|
|
'type' => 'geodetic', |
|
17642
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17643
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17644
|
|
|
'conventional_rs' => null, |
|
17645
|
|
|
'frame_reference_epoch' => null, |
|
17646
|
|
|
'anchor_epoch' => null, |
|
17647
|
|
|
'extent_name' => 'French Polynesia - Marquesas Islands - Fatu Hiva', |
|
17648
|
|
|
'help' => 'Fundamental point: Latitude: 9°25\'58.00"S, longitude: 138°55\'06.25"W (of Greenwich). |
|
17649
|
|
|
Recomputed by IGN in 1972 using origin and observations of 1953-1955 Mission Hydrographique des Establissements Francais d\'Oceanie (MHEFO 55). Replaced by RGPF (datum code 6687).', |
|
17650
|
|
|
], |
|
17651
|
|
|
'urn:ogc:def:datum:EPSG::6689' => [ |
|
17652
|
|
|
'name' => 'IGN63 Hiva Oa', |
|
17653
|
|
|
'type' => 'geodetic', |
|
17654
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17655
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17656
|
|
|
'conventional_rs' => null, |
|
17657
|
|
|
'frame_reference_epoch' => null, |
|
17658
|
|
|
'anchor_epoch' => null, |
|
17659
|
|
|
'extent_name' => 'French Polynesia - Marquesas Islands - Hiva Oa and Tahuata', |
|
17660
|
|
|
'help' => 'Fundamental point: Atuona. Latitude: 9°48\'27.20"S, longitude: 139°02\'15.45"W (of Greenwich). |
|
17661
|
|
|
Replaced by RGPF (datum code 6687).', |
|
17662
|
|
|
], |
|
17663
|
|
|
'urn:ogc:def:datum:EPSG::6690' => [ |
|
17664
|
|
|
'name' => 'Tahiti 79', |
|
17665
|
|
|
'type' => 'geodetic', |
|
17666
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17667
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17668
|
|
|
'conventional_rs' => null, |
|
17669
|
|
|
'frame_reference_epoch' => null, |
|
17670
|
|
|
'anchor_epoch' => null, |
|
17671
|
|
|
'extent_name' => 'French Polynesia - Society Islands - Tahiti', |
|
17672
|
|
|
'help' => 'Fundamental point: Tahiti North Base. Latitude: 17°38\'10.0"S, longitude: 149°36\'57.8"W (of Greenwich). |
|
17673
|
|
|
Replaces Tahiti 52 (datum code 6628) in Tahiti. Replaced by RGPF (datum code 6687).', |
|
17674
|
|
|
], |
|
17675
|
|
|
'urn:ogc:def:datum:EPSG::6691' => [ |
|
17676
|
|
|
'name' => 'Moorea 87', |
|
17677
|
|
|
'type' => 'geodetic', |
|
17678
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17679
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17680
|
|
|
'conventional_rs' => null, |
|
17681
|
|
|
'frame_reference_epoch' => null, |
|
17682
|
|
|
'anchor_epoch' => null, |
|
17683
|
|
|
'extent_name' => 'French Polynesia - Society Islands - Moorea', |
|
17684
|
|
|
'help' => 'Two stations on Tahiti whose coordinates from the Tahiti 1979 adjustment were held fixed. |
|
17685
|
|
|
Replaces Tahiti 52 (datum code 6628) in Moorea. Replaced by RGPF (datum code 6687).', |
|
17686
|
|
|
], |
|
17687
|
|
|
'urn:ogc:def:datum:EPSG::6692' => [ |
|
17688
|
|
|
'name' => 'Maupiti 83', |
|
17689
|
|
|
'type' => 'geodetic', |
|
17690
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17691
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17692
|
|
|
'conventional_rs' => null, |
|
17693
|
|
|
'frame_reference_epoch' => null, |
|
17694
|
|
|
'anchor_epoch' => null, |
|
17695
|
|
|
'extent_name' => 'French Polynesia - Society Islands - Maupiti', |
|
17696
|
|
|
'help' => 'Fundamental point: Pitiahe South Base. Latitude: 16°28\'28.942"S, longitude: 152°14\'55.059"W (of Greenwich). |
|
17697
|
|
|
Replaced by RGPF (datum code 6687).', |
|
17698
|
|
|
], |
|
17699
|
|
|
'urn:ogc:def:datum:EPSG::6693' => [ |
|
17700
|
|
|
'name' => 'Nakhl-e Ghanem', |
|
17701
|
|
|
'type' => 'geodetic', |
|
17702
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
17703
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17704
|
|
|
'conventional_rs' => null, |
|
17705
|
|
|
'frame_reference_epoch' => null, |
|
17706
|
|
|
'anchor_epoch' => null, |
|
17707
|
|
|
'extent_name' => 'Iran - Kangan district', |
|
17708
|
|
|
'help' => 'Coordinates of two stations determined with respect to ITRF 2000 at epoch 2005.2: BMT1 latitude 27°42\'09.8417"N, longitude 52°12\'11.0362"E (of Greenwich); Total1 latitude 27°31\'03.8896"N, longitude 52°36\'13.1312"E (of Greenwich). |
|
17709
|
|
|
', |
|
17710
|
|
|
], |
|
17711
|
|
|
'urn:ogc:def:datum:EPSG::6694' => [ |
|
17712
|
|
|
'name' => 'Posiciones Geodesicas Argentinas 1994', |
|
17713
|
|
|
'type' => 'geodetic', |
|
17714
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
17715
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17716
|
|
|
'conventional_rs' => null, |
|
17717
|
|
|
'frame_reference_epoch' => null, |
|
17718
|
|
|
'anchor_epoch' => null, |
|
17719
|
|
|
'extent_name' => 'Argentina', |
|
17720
|
|
|
'help' => 'WGS 84 coordinates at time of survey of a geodetic network of 127 points defining the National Geodetic System (Sistema Geodésico Nacional). Surveyed between February and April 1993 and between March and May 1994. |
|
17721
|
|
|
Adopted as defining the National Geodetic Reference Network from 9th May 1997. Technically, but not legally, replaced by POSGAR 98 (datum code 6190) until 15th May 2009 when legally replaced by POSGAR 2007 (datum code 1062).', |
|
17722
|
|
|
], |
|
17723
|
|
|
'urn:ogc:def:datum:EPSG::6695' => [ |
|
17724
|
|
|
'name' => 'Katanga 1955', |
|
17725
|
|
|
'type' => 'geodetic', |
|
17726
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
17727
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17728
|
|
|
'conventional_rs' => null, |
|
17729
|
|
|
'frame_reference_epoch' => null, |
|
17730
|
|
|
'anchor_epoch' => null, |
|
17731
|
|
|
'extent_name' => 'Congo DR (Zaire) - Katanga', |
|
17732
|
|
|
'help' => 'Fundamental point: Tshinsenda A. Latitude: 12°30\'31.568"S, longitude: 28°01\'02.971"E (of Greenwich). |
|
17733
|
|
|
Replaces earlier adjustments.', |
|
17734
|
|
|
], |
|
17735
|
|
|
'urn:ogc:def:datum:EPSG::6696' => [ |
|
17736
|
|
|
'name' => 'Kasai 1953', |
|
17737
|
|
|
'type' => 'geodetic', |
|
17738
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
17739
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17740
|
|
|
'conventional_rs' => null, |
|
17741
|
|
|
'frame_reference_epoch' => null, |
|
17742
|
|
|
'anchor_epoch' => null, |
|
17743
|
|
|
'extent_name' => 'Congo DR (Zaire) - Kasai - SE', |
|
17744
|
|
|
'help' => 'Two stations of the Katanga triangulation with ellipsoid change applied: Kabila, latitude 6°58\'34.023"S, longitude 23°50\'24.028"E (of Greenwich); and Gandajika NW base, latitude 6°45\'01.057"S, longitude 23°57\'03.038"E (of Greenwich). |
|
17745
|
|
|
Replaced by IGC 1962 Arc of the 6th Parallel South.', |
|
17746
|
|
|
], |
|
17747
|
|
|
'urn:ogc:def:datum:EPSG::6697' => [ |
|
17748
|
|
|
'name' => 'IGC 1962 Arc of the 6th Parallel South', |
|
17749
|
|
|
'type' => 'geodetic', |
|
17750
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
17751
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17752
|
|
|
'conventional_rs' => null, |
|
17753
|
|
|
'frame_reference_epoch' => null, |
|
17754
|
|
|
'anchor_epoch' => null, |
|
17755
|
|
|
'extent_name' => 'Congo DR (Zaire) - 6th parallel south', |
|
17756
|
|
|
'help' => 'Coordinates of 3 stations determined with respect to Arc 1950: Mulungu 4°47\'39.2325"S, 29°59\'37.5864"E; Nyakawembe 4°14\'57.3618"S, 29°42\'52.8032"E; Kavula 4°35\'15.8634"S, 29°41\'14.2693"E (all longitude w.r.t. Greenwich). |
|
17757
|
|
|
', |
|
17758
|
|
|
], |
|
17759
|
|
|
'urn:ogc:def:datum:EPSG::6698' => [ |
|
17760
|
|
|
'name' => 'IGN 1962 Kerguelen', |
|
17761
|
|
|
'type' => 'geodetic', |
|
17762
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17763
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17764
|
|
|
'conventional_rs' => null, |
|
17765
|
|
|
'frame_reference_epoch' => null, |
|
17766
|
|
|
'anchor_epoch' => null, |
|
17767
|
|
|
'extent_name' => 'French Southern Territories - Kerguelen onshore', |
|
17768
|
|
|
'help' => 'K0 1949. |
|
17769
|
|
|
', |
|
17770
|
|
|
], |
|
17771
|
|
|
'urn:ogc:def:datum:EPSG::6699' => [ |
|
17772
|
|
|
'name' => 'Le Pouce 1934', |
|
17773
|
|
|
'type' => 'geodetic', |
|
17774
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
17775
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17776
|
|
|
'conventional_rs' => null, |
|
17777
|
|
|
'frame_reference_epoch' => null, |
|
17778
|
|
|
'anchor_epoch' => null, |
|
17779
|
|
|
'extent_name' => 'Mauritius - mainland', |
|
17780
|
|
|
'help' => 'Fundamental point: Le Pouce. Latitude: 20°11\'42.25"S, longitude: 57°31\'18.58"E (of Greenwich). |
|
17781
|
|
|
', |
|
17782
|
|
|
], |
|
17783
|
|
|
'urn:ogc:def:datum:EPSG::6700' => [ |
|
17784
|
|
|
'name' => 'IGN Astro 1960', |
|
17785
|
|
|
'type' => 'geodetic', |
|
17786
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
17787
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17788
|
|
|
'conventional_rs' => null, |
|
17789
|
|
|
'frame_reference_epoch' => null, |
|
17790
|
|
|
'anchor_epoch' => null, |
|
17791
|
|
|
'extent_name' => 'Mauritania - onshore', |
|
17792
|
|
|
'help' => 'Realised through a set of independent astronomically-positioned points. |
|
17793
|
|
|
Observed during 1959-1960. Independent points not connected through a network. Relative accuracy estimated at 50-100m. Replaced by Mauritania 1999 (datum code 6702).', |
|
17794
|
|
|
], |
|
17795
|
|
|
'urn:ogc:def:datum:EPSG::6701' => [ |
|
17796
|
|
|
'name' => 'Institut Geographique du Congo Belge 1955', |
|
17797
|
|
|
'type' => 'geodetic', |
|
17798
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
17799
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17800
|
|
|
'conventional_rs' => null, |
|
17801
|
|
|
'frame_reference_epoch' => null, |
|
17802
|
|
|
'anchor_epoch' => null, |
|
17803
|
|
|
'extent_name' => 'Congo DR (Zaire) - Bas Congo', |
|
17804
|
|
|
'help' => 'Fundamental point: Yella east base. Latitude: 6°00\'53.139"S, longitude: 12°58\'29.287"E (of Greenwich). |
|
17805
|
|
|
Replaced by IGC 1962 Arc of the 6th Parallel South, except for oil industry activities.', |
|
17806
|
|
|
], |
|
17807
|
|
|
'urn:ogc:def:datum:EPSG::6702' => [ |
|
17808
|
|
|
'name' => 'Mauritania 1999', |
|
17809
|
|
|
'type' => 'geodetic', |
|
17810
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
17811
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17812
|
|
|
'conventional_rs' => null, |
|
17813
|
|
|
'frame_reference_epoch' => null, |
|
17814
|
|
|
'anchor_epoch' => null, |
|
17815
|
|
|
'extent_name' => 'Mauritania', |
|
17816
|
|
|
'help' => 'ITRF96 at epoch 1997.0 |
|
17817
|
|
|
A network of 36 GPS stations tied to ITRF96, 8 of which are IGN 1962 astronomic points.', |
|
17818
|
|
|
], |
|
17819
|
|
|
'urn:ogc:def:datum:EPSG::6703' => [ |
|
17820
|
|
|
'name' => 'Missao Hidrografico Angola y Sao Tome 1951', |
|
17821
|
|
|
'type' => 'geodetic', |
|
17822
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
17823
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17824
|
|
|
'conventional_rs' => null, |
|
17825
|
|
|
'frame_reference_epoch' => null, |
|
17826
|
|
|
'anchor_epoch' => null, |
|
17827
|
|
|
'extent_name' => 'Angola - Cabinda', |
|
17828
|
|
|
'help' => 'Extension of Camacupa datum into Cabinda. |
|
17829
|
|
|
A variation of this datum has been adopted by the oil industry but incorrectly using the International 1924 ellipsoid and not tied to the official Portuguese triangulation - see Mhast (onshore) and Mhast (offshore) (codes 6704 and 6705).', |
|
17830
|
|
|
], |
|
17831
|
|
|
'urn:ogc:def:datum:EPSG::6704' => [ |
|
17832
|
|
|
'name' => 'Mhast (onshore)', |
|
17833
|
|
|
'type' => 'geodetic', |
|
17834
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17835
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17836
|
|
|
'conventional_rs' => null, |
|
17837
|
|
|
'frame_reference_epoch' => null, |
|
17838
|
|
|
'anchor_epoch' => null, |
|
17839
|
|
|
'extent_name' => 'Africa - Angola (Cabinda) and DR Congo (Zaire) - coastal', |
|
17840
|
|
|
'help' => 'Probably adopted a Mhast 1951 coordinate set but associated an incorrect ellipsoid with it. |
|
17841
|
|
|
Adopted by oil industry with intention of being Mhast 1951 (code 6703) but incorrectly (for Mhast 1951) used the International 1924 ellipsoid. This datum differs by about 400 metres from the Portuguese Mhast 1951 and Camacupa datums.', |
|
17842
|
|
|
], |
|
17843
|
|
|
'urn:ogc:def:datum:EPSG::6705' => [ |
|
17844
|
|
|
'name' => 'Mhast (offshore)', |
|
17845
|
|
|
'type' => 'geodetic', |
|
17846
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17847
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17848
|
|
|
'conventional_rs' => null, |
|
17849
|
|
|
'frame_reference_epoch' => null, |
|
17850
|
|
|
'anchor_epoch' => null, |
|
17851
|
|
|
'extent_name' => 'Africa - Angola (Cabinda) and DR Congo (Zaire) - offshore', |
|
17852
|
|
|
'help' => 'Fundamental point: Station Y at Malongo base camp. Latitude: 5°23\'30.810"S, longitude: 12°12\'01.590"E (of Greenwich). |
|
17853
|
|
|
Origin coordinates determined by Transit single point position using 32 passes and transformed from WGS72BE using transformation code 15790. Differs from Mhast (onshore) by approximately 10m. Replaced in 1987 by Malongo 1987 (code 6259).', |
|
17854
|
|
|
], |
|
17855
|
|
|
'urn:ogc:def:datum:EPSG::6706' => [ |
|
17856
|
|
|
'name' => 'Egypt Gulf of Suez S-650 TL', |
|
17857
|
|
|
'type' => 'geodetic', |
|
17858
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7020', |
|
17859
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17860
|
|
|
'conventional_rs' => null, |
|
17861
|
|
|
'frame_reference_epoch' => null, |
|
17862
|
|
|
'anchor_epoch' => null, |
|
17863
|
|
|
'extent_name' => 'Egypt - Gulf of Suez', |
|
17864
|
|
|
'help' => 'Fundamental point: Station S-650 DMX. Adopted coordinates: latitude: 28°19\'02.1907"N, longitude: 33°06\'36.6344"E (of Greenwich). The proper Egypt 1907 coordinates for S-650 differ from these by about 20m. |
|
17865
|
|
|
A coherent set of stations bordering the Gulf of Suez coordinated by Transit translocation ("TL") between 1980 and 1984. Based on incorrect Egypt 1907 values for origin station S-650. Differs from true Egypt 1907 by approximately 20m.', |
|
17866
|
|
|
], |
|
17867
|
|
|
'urn:ogc:def:datum:EPSG::6707' => [ |
|
17868
|
|
|
'name' => 'Tern Island 1961', |
|
17869
|
|
|
'type' => 'geodetic', |
|
17870
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17871
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17872
|
|
|
'conventional_rs' => null, |
|
17873
|
|
|
'frame_reference_epoch' => null, |
|
17874
|
|
|
'anchor_epoch' => null, |
|
17875
|
|
|
'extent_name' => 'USA - Hawaii - Tern Island and Sorel Atoll', |
|
17876
|
|
|
'help' => 'Fundamental point: station FRIG on tern island, station B4 on Sorol Atoll. |
|
17877
|
|
|
Two independent astronomic determinations considered to be consistent through adoption of common transformation to WGS 84 (see tfm code 15795).', |
|
17878
|
|
|
], |
|
17879
|
|
|
'urn:ogc:def:datum:EPSG::6708' => [ |
|
17880
|
|
|
'name' => 'Cocos Islands 1965', |
|
17881
|
|
|
'type' => 'geodetic', |
|
17882
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7003', |
|
17883
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17884
|
|
|
'conventional_rs' => null, |
|
17885
|
|
|
'frame_reference_epoch' => null, |
|
17886
|
|
|
'anchor_epoch' => null, |
|
17887
|
|
|
'extent_name' => 'Cocos (Keeling) Islands - onshore', |
|
17888
|
|
|
'help' => 'Fundamental point: Anna 1. |
|
17889
|
|
|
', |
|
17890
|
|
|
], |
|
17891
|
|
|
'urn:ogc:def:datum:EPSG::6709' => [ |
|
17892
|
|
|
'name' => 'Iwo Jima 1945', |
|
17893
|
|
|
'type' => 'geodetic', |
|
17894
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17895
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17896
|
|
|
'conventional_rs' => null, |
|
17897
|
|
|
'frame_reference_epoch' => null, |
|
17898
|
|
|
'anchor_epoch' => null, |
|
17899
|
|
|
'extent_name' => 'Japan - Iwo Jima', |
|
17900
|
|
|
'help' => 'Fundamental point: Beacon "E". |
|
17901
|
|
|
', |
|
17902
|
|
|
], |
|
17903
|
|
|
'urn:ogc:def:datum:EPSG::6710' => [ |
|
17904
|
|
|
'name' => 'Astro DOS 71', |
|
17905
|
|
|
'type' => 'geodetic', |
|
17906
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17907
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17908
|
|
|
'conventional_rs' => null, |
|
17909
|
|
|
'frame_reference_epoch' => null, |
|
17910
|
|
|
'anchor_epoch' => null, |
|
17911
|
|
|
'extent_name' => 'St Helena - St Helena Island', |
|
17912
|
|
|
'help' => 'Fundamental point: DOS 71/4, Ladder Hill Fort, latitude: 15°55\'30"S, longitude: 5°43\'25"W (of Greenwich). |
|
17913
|
|
|
', |
|
17914
|
|
|
], |
|
17915
|
|
|
'urn:ogc:def:datum:EPSG::6711' => [ |
|
17916
|
|
|
'name' => 'Marcus Island 1952', |
|
17917
|
|
|
'type' => 'geodetic', |
|
17918
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17919
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17920
|
|
|
'conventional_rs' => null, |
|
17921
|
|
|
'frame_reference_epoch' => null, |
|
17922
|
|
|
'anchor_epoch' => null, |
|
17923
|
|
|
'extent_name' => 'Japan - Minamitori-shima (Marcus Island) - onshore', |
|
17924
|
|
|
'help' => 'Marcus Island Astronomic Station. |
|
17925
|
|
|
', |
|
17926
|
|
|
], |
|
17927
|
|
|
'urn:ogc:def:datum:EPSG::6712' => [ |
|
17928
|
|
|
'name' => 'Ascension Island 1958', |
|
17929
|
|
|
'type' => 'geodetic', |
|
17930
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17931
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17932
|
|
|
'conventional_rs' => null, |
|
17933
|
|
|
'frame_reference_epoch' => null, |
|
17934
|
|
|
'anchor_epoch' => null, |
|
17935
|
|
|
'extent_name' => 'St Helena - Ascension Island', |
|
17936
|
|
|
'help' => ' |
|
17937
|
|
|
', |
|
17938
|
|
|
], |
|
17939
|
|
|
'urn:ogc:def:datum:EPSG::6713' => [ |
|
17940
|
|
|
'name' => 'Ayabelle Lighthouse', |
|
17941
|
|
|
'type' => 'geodetic', |
|
17942
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
17943
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17944
|
|
|
'conventional_rs' => null, |
|
17945
|
|
|
'frame_reference_epoch' => null, |
|
17946
|
|
|
'anchor_epoch' => null, |
|
17947
|
|
|
'extent_name' => 'Djibouti', |
|
17948
|
|
|
'help' => 'Fundamental point: Ayabelle Lighthouse. |
|
17949
|
|
|
', |
|
17950
|
|
|
], |
|
17951
|
|
|
'urn:ogc:def:datum:EPSG::6714' => [ |
|
17952
|
|
|
'name' => 'Bellevue', |
|
17953
|
|
|
'type' => 'geodetic', |
|
17954
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17955
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17956
|
|
|
'conventional_rs' => null, |
|
17957
|
|
|
'frame_reference_epoch' => null, |
|
17958
|
|
|
'anchor_epoch' => null, |
|
17959
|
|
|
'extent_name' => 'Vanuatu - southern islands', |
|
17960
|
|
|
'help' => ' |
|
17961
|
|
|
Datum covers all the major islands of Vanuatu in two different adjustment blocks, but practical usage is as given in the area of use.', |
|
17962
|
|
|
], |
|
17963
|
|
|
'urn:ogc:def:datum:EPSG::6715' => [ |
|
17964
|
|
|
'name' => 'Camp Area Astro', |
|
17965
|
|
|
'type' => 'geodetic', |
|
17966
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17967
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17968
|
|
|
'conventional_rs' => null, |
|
17969
|
|
|
'frame_reference_epoch' => null, |
|
17970
|
|
|
'anchor_epoch' => null, |
|
17971
|
|
|
'extent_name' => 'Antarctica - Camp McMurdo area', |
|
17972
|
|
|
'help' => ' |
|
17973
|
|
|
', |
|
17974
|
|
|
], |
|
17975
|
|
|
'urn:ogc:def:datum:EPSG::6716' => [ |
|
17976
|
|
|
'name' => 'Phoenix Islands 1966', |
|
17977
|
|
|
'type' => 'geodetic', |
|
17978
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
17979
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17980
|
|
|
'conventional_rs' => null, |
|
17981
|
|
|
'frame_reference_epoch' => null, |
|
17982
|
|
|
'anchor_epoch' => null, |
|
17983
|
|
|
'extent_name' => 'Kiribati - Phoenix Islands', |
|
17984
|
|
|
'help' => ' |
|
17985
|
|
|
', |
|
17986
|
|
|
], |
|
17987
|
|
|
'urn:ogc:def:datum:EPSG::6717' => [ |
|
17988
|
|
|
'name' => 'Cape Canaveral', |
|
17989
|
|
|
'type' => 'geodetic', |
|
17990
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
17991
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
17992
|
|
|
'conventional_rs' => null, |
|
17993
|
|
|
'frame_reference_epoch' => null, |
|
17994
|
|
|
'anchor_epoch' => null, |
|
17995
|
|
|
'extent_name' => 'North America - Bahamas and USA - Florida - onshore', |
|
17996
|
|
|
'help' => 'Fundamental point: Central 1950. Latitude: 28°29\'32.36555"N, longitude 80°34\'38.77362"W (of Greenwich) |
|
17997
|
|
|
', |
|
17998
|
|
|
], |
|
17999
|
|
|
'urn:ogc:def:datum:EPSG::6718' => [ |
|
18000
|
|
|
'name' => 'Solomon 1968', |
|
18001
|
|
|
'type' => 'geodetic', |
|
18002
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18003
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18004
|
|
|
'conventional_rs' => null, |
|
18005
|
|
|
'frame_reference_epoch' => null, |
|
18006
|
|
|
'anchor_epoch' => null, |
|
18007
|
|
|
'extent_name' => 'Solomon Islands - onshore main islands', |
|
18008
|
|
|
'help' => 'Fundamental point: GUX 1. |
|
18009
|
|
|
', |
|
18010
|
|
|
], |
|
18011
|
|
|
'urn:ogc:def:datum:EPSG::6719' => [ |
|
18012
|
|
|
'name' => 'Easter Island 1967', |
|
18013
|
|
|
'type' => 'geodetic', |
|
18014
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18015
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18016
|
|
|
'conventional_rs' => null, |
|
18017
|
|
|
'frame_reference_epoch' => null, |
|
18018
|
|
|
'anchor_epoch' => null, |
|
18019
|
|
|
'extent_name' => 'Chile - Easter Island onshore', |
|
18020
|
|
|
'help' => ' |
|
18021
|
|
|
', |
|
18022
|
|
|
], |
|
18023
|
|
|
'urn:ogc:def:datum:EPSG::6720' => [ |
|
18024
|
|
|
'name' => 'Fiji Geodetic Datum 1986', |
|
18025
|
|
|
'type' => 'geodetic', |
|
18026
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7043', |
|
18027
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18028
|
|
|
'conventional_rs' => null, |
|
18029
|
|
|
'frame_reference_epoch' => null, |
|
18030
|
|
|
'anchor_epoch' => null, |
|
18031
|
|
|
'extent_name' => 'Fiji - onshore', |
|
18032
|
|
|
'help' => 'NWL 9D coordinates of 6 stations on Vitu Levu and Vanua Levu. |
|
18033
|
|
|
Replaces Viti Levu 1912, Vanua Levu 1915 and Fiji 1956.', |
|
18034
|
|
|
], |
|
18035
|
|
|
'urn:ogc:def:datum:EPSG::6721' => [ |
|
18036
|
|
|
'name' => 'Fiji 1956', |
|
18037
|
|
|
'type' => 'geodetic', |
|
18038
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18039
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18040
|
|
|
'conventional_rs' => null, |
|
18041
|
|
|
'frame_reference_epoch' => null, |
|
18042
|
|
|
'anchor_epoch' => null, |
|
18043
|
|
|
'extent_name' => 'Fiji - main islands', |
|
18044
|
|
|
'help' => 'Latitude origin was obtained astronomically at station Rasusuva = 17°49\'03.13"S, longitude origin was obtained astronomically at station Suva = 178°25\'35.835"E (of Greenwich). |
|
18045
|
|
|
For topographic mapping replaces Viti Levu 1912 and Vanua Levu 1915. Replaced by Fiji Geodetic Datum 1986.', |
|
18046
|
|
|
], |
|
18047
|
|
|
'urn:ogc:def:datum:EPSG::6722' => [ |
|
18048
|
|
|
'name' => 'South Georgia 1968', |
|
18049
|
|
|
'type' => 'geodetic', |
|
18050
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18051
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18052
|
|
|
'conventional_rs' => null, |
|
18053
|
|
|
'frame_reference_epoch' => null, |
|
18054
|
|
|
'anchor_epoch' => null, |
|
18055
|
|
|
'extent_name' => 'South Georgia - onshore', |
|
18056
|
|
|
'help' => 'Fundamental point: ISTS 061. |
|
18057
|
|
|
', |
|
18058
|
|
|
], |
|
18059
|
|
|
'urn:ogc:def:datum:EPSG::6723' => [ |
|
18060
|
|
|
'name' => 'Grand Cayman Geodetic Datum 1959', |
|
18061
|
|
|
'type' => 'geodetic', |
|
18062
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
18063
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18064
|
|
|
'conventional_rs' => null, |
|
18065
|
|
|
'frame_reference_epoch' => null, |
|
18066
|
|
|
'anchor_epoch' => null, |
|
18067
|
|
|
'extent_name' => 'Cayman Islands - Grand Cayman', |
|
18068
|
|
|
'help' => 'Fundamental point: GC1. Latitude: 19°17\'54.43"N, longitude: 81°22\'37.17"W (of Greenwich). |
|
18069
|
|
|
Replaced by CIGD11 (datum code 1100).', |
|
18070
|
|
|
], |
|
18071
|
|
|
'urn:ogc:def:datum:EPSG::6724' => [ |
|
18072
|
|
|
'name' => 'Diego Garcia 1969', |
|
18073
|
|
|
'type' => 'geodetic', |
|
18074
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18075
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18076
|
|
|
'conventional_rs' => null, |
|
18077
|
|
|
'frame_reference_epoch' => null, |
|
18078
|
|
|
'anchor_epoch' => null, |
|
18079
|
|
|
'extent_name' => 'British Indian Ocean Territory - Diego Garcia', |
|
18080
|
|
|
'help' => 'Fundamental point: ISTS 073. |
|
18081
|
|
|
', |
|
18082
|
|
|
], |
|
18083
|
|
|
'urn:ogc:def:datum:EPSG::6725' => [ |
|
18084
|
|
|
'name' => 'Johnston Island 1961', |
|
18085
|
|
|
'type' => 'geodetic', |
|
18086
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18087
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18088
|
|
|
'conventional_rs' => null, |
|
18089
|
|
|
'frame_reference_epoch' => null, |
|
18090
|
|
|
'anchor_epoch' => null, |
|
18091
|
|
|
'extent_name' => 'Johnston Island', |
|
18092
|
|
|
'help' => ' |
|
18093
|
|
|
', |
|
18094
|
|
|
], |
|
18095
|
|
|
'urn:ogc:def:datum:EPSG::6726' => [ |
|
18096
|
|
|
'name' => 'Sister Islands Geodetic Datum 1961', |
|
18097
|
|
|
'type' => 'geodetic', |
|
18098
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7008', |
|
18099
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18100
|
|
|
'conventional_rs' => null, |
|
18101
|
|
|
'frame_reference_epoch' => null, |
|
18102
|
|
|
'anchor_epoch' => null, |
|
18103
|
|
|
'extent_name' => 'Cayman Islands - Little Cayman and Cayman Brac', |
|
18104
|
|
|
'help' => 'Fundamental point: LC5. Latitude: 19°39\'46.324"N, longitude: 80°03\'47.910"W (of Greenwich). |
|
18105
|
|
|
Replaced by CIGD11 (datum code 1100).', |
|
18106
|
|
|
], |
|
18107
|
|
|
'urn:ogc:def:datum:EPSG::6727' => [ |
|
18108
|
|
|
'name' => 'Midway 1961', |
|
18109
|
|
|
'type' => 'geodetic', |
|
18110
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18111
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18112
|
|
|
'conventional_rs' => null, |
|
18113
|
|
|
'frame_reference_epoch' => null, |
|
18114
|
|
|
'anchor_epoch' => null, |
|
18115
|
|
|
'extent_name' => 'Midway Islands - Sand and Eastern Islands', |
|
18116
|
|
|
'help' => ' |
|
18117
|
|
|
', |
|
18118
|
|
|
], |
|
18119
|
|
|
'urn:ogc:def:datum:EPSG::6728' => [ |
|
18120
|
|
|
'name' => 'Pico de las Nieves 1984', |
|
18121
|
|
|
'type' => 'geodetic', |
|
18122
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18123
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18124
|
|
|
'conventional_rs' => null, |
|
18125
|
|
|
'frame_reference_epoch' => null, |
|
18126
|
|
|
'anchor_epoch' => null, |
|
18127
|
|
|
'extent_name' => 'Spain - Canary Islands western', |
|
18128
|
|
|
'help' => 'Pico de las Nieves mountain, Gran Canaria. The fundamental point is a different station to that for PN68. |
|
18129
|
|
|
Replaces Pico de las Nieves 1968 (PN68) only on western islands (El Hierro, La Gomera, La Palma and Tenerife). Replaced by REGCAN95.', |
|
18130
|
|
|
], |
|
18131
|
|
|
'urn:ogc:def:datum:EPSG::6729' => [ |
|
18132
|
|
|
'name' => 'Pitcairn 1967', |
|
18133
|
|
|
'type' => 'geodetic', |
|
18134
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18135
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18136
|
|
|
'conventional_rs' => null, |
|
18137
|
|
|
'frame_reference_epoch' => null, |
|
18138
|
|
|
'anchor_epoch' => null, |
|
18139
|
|
|
'extent_name' => 'Pitcairn - Pitcairn Island', |
|
18140
|
|
|
'help' => 'Fundamental point: Pitcairn Astro. Latitude: 25°04\'06.87"S, longitude: 130°06\'47.83"W (of Greenwich). |
|
18141
|
|
|
Replaced by Pitcairn 2006.', |
|
18142
|
|
|
], |
|
18143
|
|
|
'urn:ogc:def:datum:EPSG::6730' => [ |
|
18144
|
|
|
'name' => 'Santo 1965', |
|
18145
|
|
|
'type' => 'geodetic', |
|
18146
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18147
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18148
|
|
|
'conventional_rs' => null, |
|
18149
|
|
|
'frame_reference_epoch' => null, |
|
18150
|
|
|
'anchor_epoch' => null, |
|
18151
|
|
|
'extent_name' => 'Vanuatu - northern islands', |
|
18152
|
|
|
'help' => ' |
|
18153
|
|
|
Datum covers all the major islands of Vanuatu in two different adjustment blocks, but practical usage is as given in the area of use.', |
|
18154
|
|
|
], |
|
18155
|
|
|
'urn:ogc:def:datum:EPSG::6732' => [ |
|
18156
|
|
|
'name' => 'Marshall Islands 1960', |
|
18157
|
|
|
'type' => 'geodetic', |
|
18158
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7053', |
|
18159
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18160
|
|
|
'conventional_rs' => null, |
|
18161
|
|
|
'frame_reference_epoch' => null, |
|
18162
|
|
|
'anchor_epoch' => null, |
|
18163
|
|
|
'extent_name' => 'Pacific - Marshall Islands, Wake - onshore', |
|
18164
|
|
|
'help' => ' |
|
18165
|
|
|
', |
|
18166
|
|
|
], |
|
18167
|
|
|
'urn:ogc:def:datum:EPSG::6733' => [ |
|
18168
|
|
|
'name' => 'Wake Island 1952', |
|
18169
|
|
|
'type' => 'geodetic', |
|
18170
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18171
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18172
|
|
|
'conventional_rs' => null, |
|
18173
|
|
|
'frame_reference_epoch' => null, |
|
18174
|
|
|
'anchor_epoch' => null, |
|
18175
|
|
|
'extent_name' => 'Wake - onshore', |
|
18176
|
|
|
'help' => ' |
|
18177
|
|
|
', |
|
18178
|
|
|
], |
|
18179
|
|
|
'urn:ogc:def:datum:EPSG::6734' => [ |
|
18180
|
|
|
'name' => 'Tristan 1968', |
|
18181
|
|
|
'type' => 'geodetic', |
|
18182
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18183
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18184
|
|
|
'conventional_rs' => null, |
|
18185
|
|
|
'frame_reference_epoch' => null, |
|
18186
|
|
|
'anchor_epoch' => null, |
|
18187
|
|
|
'extent_name' => 'St Helena - Tristan da Cunha', |
|
18188
|
|
|
'help' => ' |
|
18189
|
|
|
', |
|
18190
|
|
|
], |
|
18191
|
|
|
'urn:ogc:def:datum:EPSG::6735' => [ |
|
18192
|
|
|
'name' => 'Kusaie 1951', |
|
18193
|
|
|
'type' => 'geodetic', |
|
18194
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18195
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18196
|
|
|
'conventional_rs' => null, |
|
18197
|
|
|
'frame_reference_epoch' => null, |
|
18198
|
|
|
'anchor_epoch' => null, |
|
18199
|
|
|
'extent_name' => 'Micronesia - Kosrae (Kusaie)', |
|
18200
|
|
|
'help' => ' |
|
18201
|
|
|
', |
|
18202
|
|
|
], |
|
18203
|
|
|
'urn:ogc:def:datum:EPSG::6736' => [ |
|
18204
|
|
|
'name' => 'Deception Island', |
|
18205
|
|
|
'type' => 'geodetic', |
|
18206
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
18207
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18208
|
|
|
'conventional_rs' => null, |
|
18209
|
|
|
'frame_reference_epoch' => null, |
|
18210
|
|
|
'anchor_epoch' => null, |
|
18211
|
|
|
'extent_name' => 'Antarctica - Deception Island', |
|
18212
|
|
|
'help' => ' |
|
18213
|
|
|
', |
|
18214
|
|
|
], |
|
18215
|
|
|
'urn:ogc:def:datum:EPSG::6737' => [ |
|
18216
|
|
|
'name' => 'Korean Geodetic Datum 2002', |
|
18217
|
|
|
'type' => 'geodetic', |
|
18218
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
18219
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18220
|
|
|
'conventional_rs' => null, |
|
18221
|
|
|
'frame_reference_epoch' => null, |
|
18222
|
|
|
'anchor_epoch' => null, |
|
18223
|
|
|
'extent_name' => 'Korea, Republic of (South Korea)', |
|
18224
|
|
|
'help' => 'ITRF2000 at epoch 2002.0. |
|
18225
|
|
|
KGD2002 is geocentric.', |
|
18226
|
|
|
], |
|
18227
|
|
|
'urn:ogc:def:datum:EPSG::6738' => [ |
|
18228
|
|
|
'name' => 'Hong Kong 1963', |
|
18229
|
|
|
'type' => 'geodetic', |
|
18230
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7007', |
|
18231
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18232
|
|
|
'conventional_rs' => null, |
|
18233
|
|
|
'frame_reference_epoch' => null, |
|
18234
|
|
|
'anchor_epoch' => null, |
|
18235
|
|
|
'extent_name' => 'China - Hong Kong', |
|
18236
|
|
|
'help' => 'Fundamental point: Trig "Zero", 38.4 feet south along the transit circle of the Kowloon Observatory. Latitude 22°18\'12.82"N, longitude 114°10\'18.75"E (of Greenwich). |
|
18237
|
|
|
Replaced by Hong Kong 1963(67) for military purposes only in 1967. Replaced by Hong Kong 1980.', |
|
18238
|
|
|
], |
|
18239
|
|
|
'urn:ogc:def:datum:EPSG::6739' => [ |
|
18240
|
|
|
'name' => 'Hong Kong 1963(67)', |
|
18241
|
|
|
'type' => 'geodetic', |
|
18242
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18243
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18244
|
|
|
'conventional_rs' => null, |
|
18245
|
|
|
'frame_reference_epoch' => null, |
|
18246
|
|
|
'anchor_epoch' => null, |
|
18247
|
|
|
'extent_name' => 'China - Hong Kong', |
|
18248
|
|
|
'help' => 'Fundamental point: Trig "Zero", 38.4 feet south along the transit circle of the Kowloon Observatory. Latitude 22°18\'12.82"N, longitude 114°10\'18.75"E (of Greenwich). |
|
18249
|
|
|
Replaces Hong Kong 1963 for military purposes only in 1967. Replaced by Hong Kong 1980.', |
|
18250
|
|
|
], |
|
18251
|
|
|
'urn:ogc:def:datum:EPSG::6740' => [ |
|
18252
|
|
|
'name' => 'Parametry Zemli 1990', |
|
18253
|
|
|
'type' => 'dynamic geodetic', |
|
18254
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7054', |
|
18255
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18256
|
|
|
'conventional_rs' => null, |
|
18257
|
|
|
'frame_reference_epoch' => 1990.0, |
|
18258
|
|
|
'anchor_epoch' => null, |
|
18259
|
|
|
'extent_name' => 'World', |
|
18260
|
|
|
'help' => 'Defined through coordinates of stations of the satellite geodetic network (SGN) in Russia at epoch 1990.0. |
|
18261
|
|
|
Replaced by PZ-90.02 from 2007-09-20.', |
|
18262
|
|
|
], |
|
18263
|
|
|
'urn:ogc:def:datum:EPSG::6741' => [ |
|
18264
|
|
|
'name' => 'Faroe Datum 1954', |
|
18265
|
|
|
'type' => 'geodetic', |
|
18266
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18267
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18268
|
|
|
'conventional_rs' => null, |
|
18269
|
|
|
'frame_reference_epoch' => null, |
|
18270
|
|
|
'anchor_epoch' => null, |
|
18271
|
|
|
'extent_name' => 'Faroe Islands - onshore', |
|
18272
|
|
|
'help' => 'Astronomical observations at 3 points. |
|
18273
|
|
|
Replaced by ED50 in late 1970\'s for all purposes other than cadastre. Replaced by fk89 for cadastre.', |
|
18274
|
|
|
], |
|
18275
|
|
|
'urn:ogc:def:datum:EPSG::6742' => [ |
|
18276
|
|
|
'name' => 'Geodetic Datum of Malaysia 2000', |
|
18277
|
|
|
'type' => 'geodetic', |
|
18278
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
18279
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18280
|
|
|
'conventional_rs' => null, |
|
18281
|
|
|
'frame_reference_epoch' => null, |
|
18282
|
|
|
'anchor_epoch' => null, |
|
18283
|
|
|
'extent_name' => 'Malaysia', |
|
18284
|
|
|
'help' => 'ITRF2000, epoch 2000.0. |
|
18285
|
|
|
Replaces all older Malaysian datums.', |
|
18286
|
|
|
], |
|
18287
|
|
|
'urn:ogc:def:datum:EPSG::6743' => [ |
|
18288
|
|
|
'name' => 'Karbala 1979', |
|
18289
|
|
|
'type' => 'geodetic', |
|
18290
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
18291
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18292
|
|
|
'conventional_rs' => null, |
|
18293
|
|
|
'frame_reference_epoch' => null, |
|
18294
|
|
|
'anchor_epoch' => null, |
|
18295
|
|
|
'extent_name' => 'Iraq - onshore', |
|
18296
|
|
|
'help' => 'Fundamental point: Karbala. Latitude: 32°34\'14.4941"N, longitude: 44°00\'49.6379"E. |
|
18297
|
|
|
National geodetic network established by Polservice consortium.', |
|
18298
|
|
|
], |
|
18299
|
|
|
'urn:ogc:def:datum:EPSG::6744' => [ |
|
18300
|
|
|
'name' => 'Nahrwan 1934', |
|
18301
|
|
|
'type' => 'geodetic', |
|
18302
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7012', |
|
18303
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18304
|
|
|
'conventional_rs' => null, |
|
18305
|
|
|
'frame_reference_epoch' => null, |
|
18306
|
|
|
'anchor_epoch' => null, |
|
18307
|
|
|
'extent_name' => 'Asia - Middle East - Iraq and SW Iran', |
|
18308
|
|
|
'help' => 'Fundamental point: Nahrwan south base. Latitude: 33°19\'10.87"N, longitude: 44°43\'25.54"E (of Greenwich). |
|
18309
|
|
|
This adjustment later discovered to have a significant orientation error. In Iran replaced by FD58. In Iraq, replaced by Karbala 1979.', |
|
18310
|
|
|
], |
|
18311
|
|
|
'urn:ogc:def:datum:EPSG::6745' => [ |
|
18312
|
|
|
'name' => 'Rauenberg Datum/83', |
|
18313
|
|
|
'type' => 'geodetic', |
|
18314
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
18315
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18316
|
|
|
'conventional_rs' => null, |
|
18317
|
|
|
'frame_reference_epoch' => null, |
|
18318
|
|
|
'anchor_epoch' => null, |
|
18319
|
|
|
'extent_name' => 'Germany - Saxony', |
|
18320
|
|
|
'help' => 'Fundamental point: Rauenberg. Latitude: 52°27\'12.021"N, longitude: 13°22\'04.928"E (of Greenwich). This station was destroyed in 1910 and the station at Potsdam substituted as the fundamental point. |
|
18321
|
|
|
RD/83 is the realization of DHDN in Saxony. It is the resultant of applying a transformation derived at 106 points throughout former East Germany to Pulkovo 1942/83 points in Saxony.', |
|
18322
|
|
|
], |
|
18323
|
|
|
'urn:ogc:def:datum:EPSG::6746' => [ |
|
18324
|
|
|
'name' => 'Potsdam Datum/83', |
|
18325
|
|
|
'type' => 'geodetic', |
|
18326
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
18327
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18328
|
|
|
'conventional_rs' => null, |
|
18329
|
|
|
'frame_reference_epoch' => null, |
|
18330
|
|
|
'anchor_epoch' => null, |
|
18331
|
|
|
'extent_name' => 'Germany - Thuringen', |
|
18332
|
|
|
'help' => 'Fundamental point: Rauenberg. Latitude: 52°27\'12.021"N, longitude: 13°22\'04.928"E (of Greenwich). This station was destroyed in 1910 and the station at Potsdam substituted as the fundamental point. |
|
18333
|
|
|
PD/83 is the realization of DHDN in Thuringen. It is the resultant of applying a transformation derived at 13 points on the border between East and West Germany to Pulkovo 1942/83 points in Thuringen.', |
|
18334
|
|
|
], |
|
18335
|
|
|
'urn:ogc:def:datum:EPSG::6747' => [ |
|
18336
|
|
|
'name' => 'Greenland 1996', |
|
18337
|
|
|
'type' => 'geodetic', |
|
18338
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
18339
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18340
|
|
|
'conventional_rs' => null, |
|
18341
|
|
|
'frame_reference_epoch' => null, |
|
18342
|
|
|
'anchor_epoch' => null, |
|
18343
|
|
|
'extent_name' => 'Greenland', |
|
18344
|
|
|
'help' => 'ITRF94 at epoch 1996.62 |
|
18345
|
|
|
Replaces Ammassalik 1958, Qornoq 1927 and Scoresbysund 1952.', |
|
18346
|
|
|
], |
|
18347
|
|
|
'urn:ogc:def:datum:EPSG::6748' => [ |
|
18348
|
|
|
'name' => 'Vanua Levu 1915', |
|
18349
|
|
|
'type' => 'geodetic', |
|
18350
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7055', |
|
18351
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18352
|
|
|
'conventional_rs' => null, |
|
18353
|
|
|
'frame_reference_epoch' => null, |
|
18354
|
|
|
'anchor_epoch' => null, |
|
18355
|
|
|
'extent_name' => 'Fiji - Vanua Levu and Taveuni', |
|
18356
|
|
|
'help' => 'Latitude origin was obtained astronomically at station Numuiloa = 16°23\'38.36"S, longitude origin was obtained astronomically at station Suva = 178°25\'35.835"E. |
|
18357
|
|
|
For topographic mapping, replaced by Fiji 1956. For other purposes, replaced by Fiji 1986.', |
|
18358
|
|
|
], |
|
18359
|
|
|
'urn:ogc:def:datum:EPSG::6749' => [ |
|
18360
|
|
|
'name' => 'Reseau Geodesique de Nouvelle Caledonie 91-93', |
|
18361
|
|
|
'type' => 'geodetic', |
|
18362
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
18363
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18364
|
|
|
'conventional_rs' => null, |
|
18365
|
|
|
'frame_reference_epoch' => null, |
|
18366
|
|
|
'anchor_epoch' => null, |
|
18367
|
|
|
'extent_name' => 'New Caledonia', |
|
18368
|
|
|
'help' => 'ITRF90 at epoch 1989.0. |
|
18369
|
|
|
Replaced by RGNC15 (datum code 1357).', |
|
18370
|
|
|
], |
|
18371
|
|
|
'urn:ogc:def:datum:EPSG::6750' => [ |
|
18372
|
|
|
'name' => 'ST87 Ouvea', |
|
18373
|
|
|
'type' => 'geodetic', |
|
18374
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
18375
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18376
|
|
|
'conventional_rs' => null, |
|
18377
|
|
|
'frame_reference_epoch' => null, |
|
18378
|
|
|
'anchor_epoch' => null, |
|
18379
|
|
|
'extent_name' => 'New Caledonia - Ouvea', |
|
18380
|
|
|
'help' => 'Ouloup. |
|
18381
|
|
|
', |
|
18382
|
|
|
], |
|
18383
|
|
|
'urn:ogc:def:datum:EPSG::6751' => [ |
|
18384
|
|
|
'name' => 'Kertau (RSO)', |
|
18385
|
|
|
'type' => 'geodetic', |
|
18386
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7056', |
|
18387
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18388
|
|
|
'conventional_rs' => null, |
|
18389
|
|
|
'frame_reference_epoch' => null, |
|
18390
|
|
|
'anchor_epoch' => null, |
|
18391
|
|
|
'extent_name' => 'Asia - Malaysia (west) and Singapore', |
|
18392
|
|
|
'help' => ' |
|
18393
|
|
|
Adopts metric conversion of 0.914398 metres per yard exactly. This is a truncation of the Sears 1922 ratio.', |
|
18394
|
|
|
], |
|
18395
|
|
|
'urn:ogc:def:datum:EPSG::6752' => [ |
|
18396
|
|
|
'name' => 'Viti Levu 1912', |
|
18397
|
|
|
'type' => 'geodetic', |
|
18398
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7055', |
|
18399
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18400
|
|
|
'conventional_rs' => null, |
|
18401
|
|
|
'frame_reference_epoch' => null, |
|
18402
|
|
|
'anchor_epoch' => null, |
|
18403
|
|
|
'extent_name' => 'Fiji - Viti Levu', |
|
18404
|
|
|
'help' => 'Latitude origin was obtained astronomically at station Monavatu = 17°53\'28.285"S, longitude origin was obtained astronomically at station Suva = 178°25\'35.835"E. |
|
18405
|
|
|
For topographic mapping, replaced by Fiji 1956. For other purposes, replaced by Fiji 1986.', |
|
18406
|
|
|
], |
|
18407
|
|
|
'urn:ogc:def:datum:EPSG::6753' => [ |
|
18408
|
|
|
'name' => 'fk89', |
|
18409
|
|
|
'type' => 'geodetic', |
|
18410
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18411
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18412
|
|
|
'conventional_rs' => null, |
|
18413
|
|
|
'frame_reference_epoch' => null, |
|
18414
|
|
|
'anchor_epoch' => null, |
|
18415
|
|
|
'extent_name' => 'Faroe Islands - onshore', |
|
18416
|
|
|
'help' => ' |
|
18417
|
|
|
Replaces FD54 for cadastre.', |
|
18418
|
|
|
], |
|
18419
|
|
|
'urn:ogc:def:datum:EPSG::6754' => [ |
|
18420
|
|
|
'name' => 'Libyan Geodetic Datum 2006', |
|
18421
|
|
|
'type' => 'geodetic', |
|
18422
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18423
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18424
|
|
|
'conventional_rs' => null, |
|
18425
|
|
|
'frame_reference_epoch' => null, |
|
18426
|
|
|
'anchor_epoch' => null, |
|
18427
|
|
|
'extent_name' => 'Libya', |
|
18428
|
|
|
'help' => '5 stations tied to ITRF2000 through 8 days of continuous observations in May 2006. |
|
18429
|
|
|
Replaces ELD79.', |
|
18430
|
|
|
], |
|
18431
|
|
|
'urn:ogc:def:datum:EPSG::6755' => [ |
|
18432
|
|
|
'name' => 'Datum Geodesi Nasional 1995', |
|
18433
|
|
|
'type' => 'geodetic', |
|
18434
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
18435
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18436
|
|
|
'conventional_rs' => null, |
|
18437
|
|
|
'frame_reference_epoch' => null, |
|
18438
|
|
|
'anchor_epoch' => null, |
|
18439
|
|
|
'extent_name' => 'Indonesia', |
|
18440
|
|
|
'help' => 'ITRF91at epoch 1992.0. |
|
18441
|
|
|
Replaces ID74 and all older datums.', |
|
18442
|
|
|
], |
|
18443
|
|
|
'urn:ogc:def:datum:EPSG::6756' => [ |
|
18444
|
|
|
'name' => 'Vietnam 2000', |
|
18445
|
|
|
'type' => 'geodetic', |
|
18446
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
18447
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18448
|
|
|
'conventional_rs' => null, |
|
18449
|
|
|
'frame_reference_epoch' => null, |
|
18450
|
|
|
'anchor_epoch' => null, |
|
18451
|
|
|
'extent_name' => 'Vietnam - onshore', |
|
18452
|
|
|
'help' => 'Point N00, located in the premises of the Land Administration Research Institute, Hoang Quoc Viet Street, Hanoi. |
|
18453
|
|
|
Replaces Hanoi 1972.', |
|
18454
|
|
|
], |
|
18455
|
|
|
'urn:ogc:def:datum:EPSG::6757' => [ |
|
18456
|
|
|
'name' => 'SVY21', |
|
18457
|
|
|
'type' => 'geodetic', |
|
18458
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
18459
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18460
|
|
|
'conventional_rs' => null, |
|
18461
|
|
|
'frame_reference_epoch' => null, |
|
18462
|
|
|
'anchor_epoch' => null, |
|
18463
|
|
|
'extent_name' => 'Singapore', |
|
18464
|
|
|
'help' => 'Fundamental point: Base 7 at Pierce Reservoir. Latitude: 1°22\'02.9154"N, longitude: 103°49\'31.9752"E (of Greenwich). |
|
18465
|
|
|
Replaces Kertau 1968 for cadastral purposes from August 2004.', |
|
18466
|
|
|
], |
|
18467
|
|
|
'urn:ogc:def:datum:EPSG::6758' => [ |
|
18468
|
|
|
'name' => 'Jamaica 2001', |
|
18469
|
|
|
'type' => 'geodetic', |
|
18470
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
18471
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18472
|
|
|
'conventional_rs' => null, |
|
18473
|
|
|
'frame_reference_epoch' => null, |
|
18474
|
|
|
'anchor_epoch' => null, |
|
18475
|
|
|
'extent_name' => 'Jamaica', |
|
18476
|
|
|
'help' => 'Aligned to WGS 84. |
|
18477
|
|
|
', |
|
18478
|
|
|
], |
|
18479
|
|
|
'urn:ogc:def:datum:EPSG::6759' => [ |
|
18480
|
|
|
'name' => 'NAD83 (National Spatial Reference System 2007)', |
|
18481
|
|
|
'type' => 'geodetic', |
|
18482
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
18483
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18484
|
|
|
'conventional_rs' => null, |
|
18485
|
|
|
'frame_reference_epoch' => null, |
|
18486
|
|
|
'anchor_epoch' => null, |
|
18487
|
|
|
'extent_name' => 'USA - CONUS and Alaska; PRVI', |
|
18488
|
|
|
'help' => 'Coordinates of 486 national continually operating reference system (CORS) and 195 collaborative GPS (CGPS) sites constrained to their CORS96 values, ITRF2000 at epoch 2002.0. |
|
18489
|
|
|
Replaced by NAD83 (National Spatial Reference System 2011), datum code 1116.', |
|
18490
|
|
|
], |
|
18491
|
|
|
'urn:ogc:def:datum:EPSG::6760' => [ |
|
18492
|
|
|
'name' => 'World Geodetic System 1966', |
|
18493
|
|
|
'type' => 'dynamic geodetic', |
|
18494
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7025', |
|
18495
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18496
|
|
|
'conventional_rs' => null, |
|
18497
|
|
|
'frame_reference_epoch' => 1966.0, |
|
18498
|
|
|
'anchor_epoch' => null, |
|
18499
|
|
|
'extent_name' => 'World', |
|
18500
|
|
|
'help' => 'Developed from a worldwide distribution of terrestrial and geodetic satellite observations and defined through a set of station coordinates. |
|
18501
|
|
|
A worldwide 5° × 5° mean free air gravity anomaly field provided the basic data for producing the WGS 66 gravimetric geoid. Replaced by WGS 72.', |
|
18502
|
|
|
], |
|
18503
|
|
|
'urn:ogc:def:datum:EPSG::6761' => [ |
|
18504
|
|
|
'name' => 'Croatian Terrestrial Reference System', |
|
18505
|
|
|
'type' => 'geodetic', |
|
18506
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
18507
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18508
|
|
|
'conventional_rs' => null, |
|
18509
|
|
|
'frame_reference_epoch' => null, |
|
18510
|
|
|
'anchor_epoch' => null, |
|
18511
|
|
|
'extent_name' => 'Croatia', |
|
18512
|
|
|
'help' => 'Densification of ETRS89 in Croatia at epoch 1995.55. |
|
18513
|
|
|
Based on 78 control points with coordinates determined in ETRS89.', |
|
18514
|
|
|
], |
|
18515
|
|
|
'urn:ogc:def:datum:EPSG::6762' => [ |
|
18516
|
|
|
'name' => 'Bermuda 2000', |
|
18517
|
|
|
'type' => 'geodetic', |
|
18518
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
18519
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18520
|
|
|
'conventional_rs' => null, |
|
18521
|
|
|
'frame_reference_epoch' => null, |
|
18522
|
|
|
'anchor_epoch' => null, |
|
18523
|
|
|
'extent_name' => 'Bermuda', |
|
18524
|
|
|
'help' => 'ITRF96 at epoch 2000.0. |
|
18525
|
|
|
', |
|
18526
|
|
|
], |
|
18527
|
|
|
'urn:ogc:def:datum:EPSG::6763' => [ |
|
18528
|
|
|
'name' => 'Pitcairn 2006', |
|
18529
|
|
|
'type' => 'geodetic', |
|
18530
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7030', |
|
18531
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18532
|
|
|
'conventional_rs' => null, |
|
18533
|
|
|
'frame_reference_epoch' => null, |
|
18534
|
|
|
'anchor_epoch' => null, |
|
18535
|
|
|
'extent_name' => 'Pitcairn - Pitcairn Island', |
|
18536
|
|
|
'help' => 'Fundamental point: Pitcairn Astro. Latitude: 25°04\'06.7894"S, longitude: 130°06\'46.6816"W (of Greenwich), derived by single point GPS oberservations. |
|
18537
|
|
|
Replaces Pitcairn 1967.', |
|
18538
|
|
|
], |
|
18539
|
|
|
'urn:ogc:def:datum:EPSG::6764' => [ |
|
18540
|
|
|
'name' => 'Ross Sea Region Geodetic Datum 2000', |
|
18541
|
|
|
'type' => 'geodetic', |
|
18542
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
18543
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18544
|
|
|
'conventional_rs' => null, |
|
18545
|
|
|
'frame_reference_epoch' => null, |
|
18546
|
|
|
'anchor_epoch' => null, |
|
18547
|
|
|
'extent_name' => 'Antarctica - Ross Sea Region', |
|
18548
|
|
|
'help' => 'Based on ITRF96 at epoch 2000.0 |
|
18549
|
|
|
', |
|
18550
|
|
|
], |
|
18551
|
|
|
'urn:ogc:def:datum:EPSG::6765' => [ |
|
18552
|
|
|
'name' => 'Slovenia Geodetic Datum 1996', |
|
18553
|
|
|
'type' => 'geodetic', |
|
18554
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
18555
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18556
|
|
|
'conventional_rs' => null, |
|
18557
|
|
|
'frame_reference_epoch' => null, |
|
18558
|
|
|
'anchor_epoch' => null, |
|
18559
|
|
|
'extent_name' => 'Slovenia', |
|
18560
|
|
|
'help' => 'Densification of ETRS89, based on ITRS89 at epoch 1995.55. |
|
18561
|
|
|
', |
|
18562
|
|
|
], |
|
18563
|
|
|
'urn:ogc:def:datum:EPSG::6801' => [ |
|
18564
|
|
|
'name' => 'CH1903 (Bern)', |
|
18565
|
|
|
'type' => 'geodetic', |
|
18566
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
18567
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8907', |
|
18568
|
|
|
'conventional_rs' => null, |
|
18569
|
|
|
'frame_reference_epoch' => null, |
|
18570
|
|
|
'anchor_epoch' => null, |
|
18571
|
|
|
'extent_name' => 'Europe - Liechtenstein and Switzerland', |
|
18572
|
|
|
'help' => 'Fundamental point: Old Bern observatory. Latitude: 46°57\'08.660"N, longitude: 0°E (of Bern). |
|
18573
|
|
|
', |
|
18574
|
|
|
], |
|
18575
|
|
|
'urn:ogc:def:datum:EPSG::6802' => [ |
|
18576
|
|
|
'name' => 'Bogota 1975 (Bogota)', |
|
18577
|
|
|
'type' => 'geodetic', |
|
18578
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18579
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8904', |
|
18580
|
|
|
'conventional_rs' => null, |
|
18581
|
|
|
'frame_reference_epoch' => null, |
|
18582
|
|
|
'anchor_epoch' => null, |
|
18583
|
|
|
'extent_name' => 'Colombia - mainland', |
|
18584
|
|
|
'help' => 'Fundamental point: Bogota observatory. Latitude: 4°35\'56.570"N, longitude: 0°E (of Bogota). |
|
18585
|
|
|
', |
|
18586
|
|
|
], |
|
18587
|
|
|
'urn:ogc:def:datum:EPSG::6803' => [ |
|
18588
|
|
|
'name' => 'Lisbon 1937 (Lisbon)', |
|
18589
|
|
|
'type' => 'geodetic', |
|
18590
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18591
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8902', |
|
18592
|
|
|
'conventional_rs' => null, |
|
18593
|
|
|
'frame_reference_epoch' => null, |
|
18594
|
|
|
'anchor_epoch' => null, |
|
18595
|
|
|
'extent_name' => 'Portugal - mainland - onshore', |
|
18596
|
|
|
'help' => 'Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42\'43.631"N, longitude: 0°E (of Lisbon). |
|
18597
|
|
|
Replaces Lisbon 1890 adjustment (which used Bessel 1841 ellipsoid).', |
|
18598
|
|
|
], |
|
18599
|
|
|
'urn:ogc:def:datum:EPSG::6804' => [ |
|
18600
|
|
|
'name' => 'Makassar (Jakarta)', |
|
18601
|
|
|
'type' => 'geodetic', |
|
18602
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
18603
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8908', |
|
18604
|
|
|
'conventional_rs' => null, |
|
18605
|
|
|
'frame_reference_epoch' => null, |
|
18606
|
|
|
'anchor_epoch' => null, |
|
18607
|
|
|
'extent_name' => 'Indonesia - Sulawesi SW', |
|
18608
|
|
|
'help' => 'Fundamental point: station P1, Moncongloe. Latitude 5°08\'41.42"S, longitude 12°35\'47.15"E (of Jakarta). |
|
18609
|
|
|
', |
|
18610
|
|
|
], |
|
18611
|
|
|
'urn:ogc:def:datum:EPSG::6805' => [ |
|
18612
|
|
|
'name' => 'Militar-Geographische Institut (Ferro)', |
|
18613
|
|
|
'type' => 'geodetic', |
|
18614
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
18615
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909', |
|
18616
|
|
|
'conventional_rs' => null, |
|
18617
|
|
|
'frame_reference_epoch' => null, |
|
18618
|
|
|
'anchor_epoch' => null, |
|
18619
|
|
|
'extent_name' => 'Europe - Austria and former Yugoslavia onshore', |
|
18620
|
|
|
'help' => 'Fundamental point: Hermannskogel. Latitude: 48°16\'15.29"N, longitude: 33°57\'41.06"E (of Ferro). |
|
18621
|
|
|
Replaced by MGI in Austria and MGI 1901 in former Yugoslavia.', |
|
18622
|
|
|
], |
|
18623
|
|
|
'urn:ogc:def:datum:EPSG::6806' => [ |
|
18624
|
|
|
'name' => 'Monte Mario (Rome)', |
|
18625
|
|
|
'type' => 'geodetic', |
|
18626
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18627
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8906', |
|
18628
|
|
|
'conventional_rs' => null, |
|
18629
|
|
|
'frame_reference_epoch' => null, |
|
18630
|
|
|
'anchor_epoch' => null, |
|
18631
|
|
|
'extent_name' => 'Italy - including San Marino and Vatican', |
|
18632
|
|
|
'help' => 'Fundamental point: Monte Mario. Latitude: 41°55\'25.51"N, longitude: 0°00\' 00.00"E (of Rome). |
|
18633
|
|
|
Replaced Genova datum, Bessel 1841 ellipsoid, from 1940.', |
|
18634
|
|
|
], |
|
18635
|
|
|
'urn:ogc:def:datum:EPSG::6807' => [ |
|
18636
|
|
|
'name' => 'Nouvelle Triangulation Francaise (Paris)', |
|
18637
|
|
|
'type' => 'geodetic', |
|
18638
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
18639
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903', |
|
18640
|
|
|
'conventional_rs' => null, |
|
18641
|
|
|
'frame_reference_epoch' => null, |
|
18642
|
|
|
'anchor_epoch' => null, |
|
18643
|
|
|
'extent_name' => 'France - onshore - mainland and Corsica', |
|
18644
|
|
|
'help' => 'Fundamental point: Pantheon. Latitude: 54.273618g N, longitude: 0.0106921g E (of Paris). |
|
18645
|
|
|
', |
|
18646
|
|
|
], |
|
18647
|
|
|
'urn:ogc:def:datum:EPSG::6809' => [ |
|
18648
|
|
|
'name' => 'Reseau National Belge 1950 (Brussels)', |
|
18649
|
|
|
'type' => 'geodetic', |
|
18650
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18651
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8910', |
|
18652
|
|
|
'conventional_rs' => null, |
|
18653
|
|
|
'frame_reference_epoch' => null, |
|
18654
|
|
|
'anchor_epoch' => null, |
|
18655
|
|
|
'extent_name' => 'Belgium - onshore', |
|
18656
|
|
|
'help' => 'Fundamental point: Lommel (tower). Latitude: 51°13\'47.334"N, longitude: 0°56\'44.773"E (of Brussels). |
|
18657
|
|
|
', |
|
18658
|
|
|
], |
|
18659
|
|
|
'urn:ogc:def:datum:EPSG::6810' => [ |
|
18660
|
|
|
'name' => 'Tananarive 1925 (Paris)', |
|
18661
|
|
|
'type' => 'geodetic', |
|
18662
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7022', |
|
18663
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903', |
|
18664
|
|
|
'conventional_rs' => null, |
|
18665
|
|
|
'frame_reference_epoch' => null, |
|
18666
|
|
|
'anchor_epoch' => null, |
|
18667
|
|
|
'extent_name' => 'Madagascar - onshore', |
|
18668
|
|
|
'help' => 'Fundamental point: Tananarive observatory. Latitude: 21.0191667g S, longitude: 50.23849537g E (of Paris) |
|
18669
|
|
|
', |
|
18670
|
|
|
], |
|
18671
|
|
|
'urn:ogc:def:datum:EPSG::6811' => [ |
|
18672
|
|
|
'name' => 'Voirol 1875 (Paris)', |
|
18673
|
|
|
'type' => 'geodetic', |
|
18674
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
18675
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903', |
|
18676
|
|
|
'conventional_rs' => null, |
|
18677
|
|
|
'frame_reference_epoch' => null, |
|
18678
|
|
|
'anchor_epoch' => null, |
|
18679
|
|
|
'extent_name' => 'Algeria - north of 32°N', |
|
18680
|
|
|
'help' => 'Fundamental point: Voirol. Latitude: 40.83578 grads N, longitude: 0.78873 grads E (of Paris). |
|
18681
|
|
|
', |
|
18682
|
|
|
], |
|
18683
|
|
|
'urn:ogc:def:datum:EPSG::6813' => [ |
|
18684
|
|
|
'name' => 'Batavia (Jakarta)', |
|
18685
|
|
|
'type' => 'geodetic', |
|
18686
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
18687
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8908', |
|
18688
|
|
|
'conventional_rs' => null, |
|
18689
|
|
|
'frame_reference_epoch' => null, |
|
18690
|
|
|
'anchor_epoch' => null, |
|
18691
|
|
|
'extent_name' => 'Indonesia - Bali, Java and western Sumatra onshore', |
|
18692
|
|
|
'help' => 'Fundamental point: Longitude at Batavia astronomical station. Latitude: 6°07\'39.522"S, longitude: 0°00\'00.0"E (of Jakarta). Latitude and azimuth at Genuk. |
|
18693
|
|
|
', |
|
18694
|
|
|
], |
|
18695
|
|
|
'urn:ogc:def:datum:EPSG::6814' => [ |
|
18696
|
|
|
'name' => 'Stockholm 1938 (Stockholm)', |
|
18697
|
|
|
'type' => 'geodetic', |
|
18698
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
18699
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8911', |
|
18700
|
|
|
'conventional_rs' => null, |
|
18701
|
|
|
'frame_reference_epoch' => null, |
|
18702
|
|
|
'anchor_epoch' => null, |
|
18703
|
|
|
'extent_name' => 'Sweden - onshore', |
|
18704
|
|
|
'help' => 'Fundamental point: Stockholm observatory |
|
18705
|
|
|
Replaced by RT90 adjustment (datum code 6124)', |
|
18706
|
|
|
], |
|
18707
|
|
|
'urn:ogc:def:datum:EPSG::6815' => [ |
|
18708
|
|
|
'name' => 'Greek (Athens)', |
|
18709
|
|
|
'type' => 'geodetic', |
|
18710
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
18711
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8912', |
|
18712
|
|
|
'conventional_rs' => null, |
|
18713
|
|
|
'frame_reference_epoch' => null, |
|
18714
|
|
|
'anchor_epoch' => null, |
|
18715
|
|
|
'extent_name' => 'Greece - onshore', |
|
18716
|
|
|
'help' => 'Fundamental point: Athens Observatory. Latitude 37°58\'20.132"N, longitude 0°E (of Athens). |
|
18717
|
|
|
See geodetic datum alias 6404. Used as basis of topographic mapping based on Hatt projection.', |
|
18718
|
|
|
], |
|
18719
|
|
|
'urn:ogc:def:datum:EPSG::6816' => [ |
|
18720
|
|
|
'name' => 'Carthage (Paris)', |
|
18721
|
|
|
'type' => 'geodetic', |
|
18722
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
18723
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903', |
|
18724
|
|
|
'conventional_rs' => null, |
|
18725
|
|
|
'frame_reference_epoch' => null, |
|
18726
|
|
|
'anchor_epoch' => null, |
|
18727
|
|
|
'extent_name' => 'Tunisia - onshore', |
|
18728
|
|
|
'help' => 'Fundamental point: Carthage. Latitude: 40.9464506g N, longitude: 8.8724368g E (of Paris). |
|
18729
|
|
|
Fundamental point astronomic coordinates determined in 1878.', |
|
18730
|
|
|
], |
|
18731
|
|
|
'urn:ogc:def:datum:EPSG::6817' => [ |
|
18732
|
|
|
'name' => 'NGO 1948 (Oslo)', |
|
18733
|
|
|
'type' => 'geodetic', |
|
18734
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7005', |
|
18735
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8913', |
|
18736
|
|
|
'conventional_rs' => null, |
|
18737
|
|
|
'frame_reference_epoch' => null, |
|
18738
|
|
|
'anchor_epoch' => null, |
|
18739
|
|
|
'extent_name' => 'Norway - onshore', |
|
18740
|
|
|
'help' => 'Fundamental point: Oslo observatory. Latitude: 59°54\'43.7"N, longitude: 0°00\'00.0"E (of Oslo). |
|
18741
|
|
|
', |
|
18742
|
|
|
], |
|
18743
|
|
|
'urn:ogc:def:datum:EPSG::6818' => [ |
|
18744
|
|
|
'name' => 'System of the Unified Trigonometrical Cadastral Network (Ferro)', |
|
18745
|
|
|
'type' => 'geodetic', |
|
18746
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
18747
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8909', |
|
18748
|
|
|
'conventional_rs' => null, |
|
18749
|
|
|
'frame_reference_epoch' => null, |
|
18750
|
|
|
'anchor_epoch' => null, |
|
18751
|
|
|
'extent_name' => 'Europe - Czechoslovakia', |
|
18752
|
|
|
'help' => 'Modification of Austrian MGI (Ferro) datum. |
|
18753
|
|
|
', |
|
18754
|
|
|
], |
|
18755
|
|
|
'urn:ogc:def:datum:EPSG::6820' => [ |
|
18756
|
|
|
'name' => 'Gunung Segara (Jakarta)', |
|
18757
|
|
|
'type' => 'geodetic', |
|
18758
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
18759
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8908', |
|
18760
|
|
|
'conventional_rs' => null, |
|
18761
|
|
|
'frame_reference_epoch' => null, |
|
18762
|
|
|
'anchor_epoch' => null, |
|
18763
|
|
|
'extent_name' => 'Indonesia - Kalimantan E', |
|
18764
|
|
|
'help' => 'Station P5 (Gunung Segara) 0°32\'12.83"S, 117°08\'48.47"E (of Greenwich). Longitude 8°20\'20.68"E (of Jakarta). |
|
18765
|
|
|
', |
|
18766
|
|
|
], |
|
18767
|
|
|
'urn:ogc:def:datum:EPSG::6821' => [ |
|
18768
|
|
|
'name' => 'Voirol 1879 (Paris)', |
|
18769
|
|
|
'type' => 'geodetic', |
|
18770
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7011', |
|
18771
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8903', |
|
18772
|
|
|
'conventional_rs' => null, |
|
18773
|
|
|
'frame_reference_epoch' => null, |
|
18774
|
|
|
'anchor_epoch' => null, |
|
18775
|
|
|
'extent_name' => 'Algeria - north of 32°N', |
|
18776
|
|
|
'help' => 'Fundamental point: Voirol. Latitude: 40.835864 grads N, longitude: 0.788735 grads E (of Paris). |
|
18777
|
|
|
Replaces Voirol 1875 (Paris) (code 6811).', |
|
18778
|
|
|
], |
|
18779
|
|
|
'urn:ogc:def:datum:EPSG::6896' => [ |
|
18780
|
|
|
'name' => 'International Terrestrial Reference Frame 2005', |
|
18781
|
|
|
'type' => 'dynamic geodetic', |
|
18782
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7019', |
|
18783
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8901', |
|
18784
|
|
|
'conventional_rs' => null, |
|
18785
|
|
|
'frame_reference_epoch' => 2000.0, |
|
18786
|
|
|
'anchor_epoch' => null, |
|
18787
|
|
|
'extent_name' => 'World', |
|
18788
|
|
|
'help' => 'Origin at geocentre, originally orientated to the BIH Terrestrial System at epoch 1984.0 then adjusted to ensure zero net rotation to earth\'s overall tectonic motion. Defined by time series of Cartesian station coordinates for epoch 2000.0. |
|
18789
|
|
|
Realization of the IERS Terrestrial Reference System (ITRS) from September 2007. Replaces ITRF2000 (code 6656). Replaced by ITRF2008 (datum code 1061).', |
|
18790
|
|
|
], |
|
18791
|
|
|
'urn:ogc:def:datum:EPSG::6901' => [ |
|
18792
|
|
|
'name' => 'Ancienne Triangulation Francaise (Paris)', |
|
18793
|
|
|
'type' => 'geodetic', |
|
18794
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7027', |
|
18795
|
|
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8914', |
|
18796
|
|
|
'conventional_rs' => null, |
|
18797
|
|
|
'frame_reference_epoch' => null, |
|
18798
|
|
|
'anchor_epoch' => null, |
|
18799
|
|
|
'extent_name' => 'France - mainland onshore', |
|
18800
|
|
|
'help' => ' |
|
18801
|
|
|
Uses the RGS value for the Paris meridian. In Alsace, data suspected to be transformation of German network into ATF. Replaced by Nouvelle Triangulation Francaise (Paris) (code 6807) which uses the 1936 IGN value for the Paris meridian.', |
|
18802
|
|
|
], |
|
18803
|
|
|
'urn:ogc:def:datum:EPSG::6903' => [ |
|
18804
|
479 |
|
'name' => 'Madrid 1870 (Madrid)', |
|
18805
|
|
|
'type' => 'geodetic', |
|
18806
|
479 |
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7028', |
|
18807
|
479 |
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8905', |
|
18808
|
479 |
|
'conventional_rs' => null, |
|
18809
|
479 |
|
'frame_reference_epoch' => null, |
|
18810
|
479 |
|
'anchor_epoch' => null, |
|
18811
|
479 |
|
'extent_name' => 'Spain - mainland onshore', |
|
18812
|
|
|
'help' => 'Fundamental point: Retiro observatory, Madrid. |
|
18813
|
|
|
Replaced by ED50.', |
|
18814
|
18 |
|
], |
|
18815
|
|
|
'urn:ogc:def:datum:EPSG::6904' => [ |
|
18816
|
18 |
|
'name' => 'Lisbon 1890 (Lisbon)', |
|
18817
|
|
|
'type' => 'geodetic', |
|
18818
|
|
|
'ellipsoid' => 'urn:ogc:def:ellipsoid:EPSG::7004', |
|
18819
|
1545 |
|
'prime_meridian' => 'urn:ogc:def:meridian:EPSG::8902', |
|
18820
|
|
|
'conventional_rs' => null, |
|
18821
|
1545 |
|
'frame_reference_epoch' => null, |
|
18822
|
|
|
'anchor_epoch' => null, |
|
18823
|
|
|
'extent_name' => 'Portugal - mainland - onshore', |
|
18824
|
492 |
|
'help' => 'Fundamental point: Castelo Sao Jorge, Lisbon. Latitude: 38°42\'43.631"N, longitude: 0°E (of Lisbon). |
|
18825
|
|
|
Replaced by Lisbon 1937 adjustment (which uses International 1924 ellipsoid).', |
|
18826
|
492 |
|
], |
|
18827
|
|
|
]; |
|
18828
|
|
|
|
|
18829
|
9 |
|
public const DATUM_TYPE_GEODETIC = 'geodetic'; |
|
18830
|
|
|
|
|
18831
|
9 |
|
public const DATUM_TYPE_VERTICAL = 'vertical'; |
|
18832
|
|
|
|
|
18833
|
|
|
public const DATUM_TYPE_DYNAMIC_GEODETIC = 'dynamic_geodetic'; |
|
18834
|
|
|
|
|
18835
|
|
|
public const DATUM_TYPE_DYNAMIC_VERTICAL = 'dynamic_vertical'; |
|
18836
|
|
|
|
|
18837
|
|
|
public const DATUM_TYPE_ENGINEERING = 'engineering'; |
|
18838
|
|
|
|
|
18839
|
|
|
public const DATUM_TYPE_ENSEMBLE = 'ensemble'; |
|
18840
|
|
|
|
|
18841
|
|
|
/** |
|
18842
|
|
|
* @var array<string, self> |
|
18843
|
|
|
*/ |
|
18844
|
551 |
|
private static array $cachedObjects = [ |
|
18845
|
|
|
]; |
|
18846
|
551 |
|
|
|
18847
|
9 |
|
protected string $datumType; |
|
18848
|
|
|
|
|
18849
|
542 |
|
protected ?Ellipsoid $ellipsoid; |
|
18850
|
461 |
|
|
|
18851
|
461 |
|
protected ?PrimeMeridian $primeMeridian; |
|
18852
|
461 |
|
|
|
18853
|
|
|
protected ?DateTimeInterface $frameReferenceEpoch; |
|
18854
|
461 |
|
|
|
18855
|
55 |
|
protected string $name; |
|
18856
|
|
|
|
|
18857
|
461 |
|
protected string $srid; |
|
18858
|
|
|
|
|
18859
|
18 |
|
public function __construct(string $datumType, ?Ellipsoid $ellipsoid, ?PrimeMeridian $primeMeridian, ?DateTimeInterface $frameReferenceEpoch, string $name = '', string $srid = '') |
|
18860
|
18 |
|
{ |
|
18861
|
18 |
|
$this->datumType = $datumType; |
|
18862
|
461 |
|
$this->ellipsoid = $ellipsoid; |
|
18863
|
388 |
|
$this->primeMeridian = $primeMeridian; |
|
18864
|
|
|
$this->frameReferenceEpoch = $frameReferenceEpoch; |
|
18865
|
97 |
|
$this->name = $name; |
|
18866
|
|
|
$this->srid = $srid; |
|
18867
|
|
|
} |
|
18868
|
|
|
|
|
18869
|
542 |
|
public function getDatumType(): string |
|
18870
|
|
|
{ |
|
18871
|
|
|
return $this->datumType; |
|
18872
|
|
|
} |
|
18873
|
|
|
|
|
18874
|
|
|
public function getEllipsoid(): Ellipsoid |
|
18875
|
9 |
|
{ |
|
18876
|
|
|
return $this->ellipsoid; |
|
|
|
|
|
|
18877
|
9 |
|
} |
|
18878
|
|
|
|
|
18879
|
|
|
public function getPrimeMeridian(): PrimeMeridian |
|
18880
|
|
|
{ |
|
18881
|
|
|
return $this->primeMeridian; |
|
|
|
|
|
|
18882
|
|
|
} |
|
18883
|
9 |
|
|
|
18884
|
|
|
public function getFrameReferenceEpoch(): ?DateTimeInterface |
|
18885
|
9 |
|
{ |
|
18886
|
9 |
|
return $this->frameReferenceEpoch; |
|
18887
|
9 |
|
} |
|
18888
|
9 |
|
|
|
18889
|
|
|
public function getName(): string |
|
18890
|
|
|
{ |
|
18891
|
|
|
return $this->name; |
|
18892
|
|
|
} |
|
18893
|
|
|
|
|
18894
|
|
|
public function getSRID(): string |
|
18895
|
|
|
{ |
|
18896
|
|
|
return $this->srid; |
|
18897
|
|
|
} |
|
18898
|
|
|
|
|
18899
|
|
|
public static function fromSRID(string $srid): self |
|
18900
|
|
|
{ |
|
18901
|
|
|
if (!isset(static::$sridData[$srid])) { |
|
18902
|
|
|
throw new UnknownDatumException($srid); |
|
18903
|
|
|
} |
|
18904
|
|
|
if (!isset(self::$cachedObjects[$srid])) { |
|
18905
|
|
|
$data = static::$sridData[$srid]; |
|
18906
|
|
|
$frameReferenceEpoch = null; |
|
18907
|
|
|
if ($data['frame_reference_epoch'] instanceof DateTimeInterface) { |
|
18908
|
|
|
$frameReferenceEpoch = $data['frame_reference_epoch']; |
|
18909
|
|
|
} elseif ($data['frame_reference_epoch']) { |
|
18910
|
|
|
$frameReferenceEpoch = (new Year($data['frame_reference_epoch']))->asDateTime(); |
|
18911
|
|
|
} |
|
18912
|
|
|
if ($data['type'] === self::DATUM_TYPE_ENSEMBLE) { |
|
18913
|
|
|
// if ensemble, use latest realisation for data |
|
18914
|
|
|
assert(isset(self::$sridData[$srid]['ensemble'])); |
|
18915
|
|
|
$latest = self::$sridData[end(self::$sridData[$srid]['ensemble'])]; |
|
18916
|
|
|
self::$cachedObjects[$srid] = new self($data['type'], $latest['ellipsoid'] ? Ellipsoid::fromSRID($latest['ellipsoid']) : null, $latest['prime_meridian'] ? PrimeMeridian::fromSRID($latest['prime_meridian']) : null, $frameReferenceEpoch, $data['name'], $srid); |
|
18917
|
|
|
} elseif ($data['ellipsoid'] && $data['prime_meridian']) { |
|
18918
|
|
|
self::$cachedObjects[$srid] = new self($data['type'], Ellipsoid::fromSRID($data['ellipsoid']), PrimeMeridian::fromSRID($data['prime_meridian']), $frameReferenceEpoch, $data['name'], $srid); |
|
18919
|
|
|
} else { |
|
18920
|
|
|
self::$cachedObjects[$srid] = new self($data['type'], null, null, $frameReferenceEpoch, $data['name'], $srid); |
|
18921
|
|
|
} |
|
18922
|
|
|
} |
|
18923
|
|
|
|
|
18924
|
|
|
return self::$cachedObjects[$srid]; |
|
18925
|
|
|
} |
|
18926
|
|
|
|
|
18927
|
|
|
/** |
|
18928
|
|
|
* @return array<string, string> |
|
18929
|
|
|
*/ |
|
18930
|
|
|
public static function getSupportedSRIDs(): array |
|
18931
|
|
|
{ |
|
18932
|
|
|
return array_map(fn (array $data) => $data['name'], static::$sridData); |
|
18933
|
|
|
} |
|
18934
|
|
|
|
|
18935
|
|
|
/** |
|
18936
|
|
|
* @return array<string, array{name: string, help: string}> |
|
18937
|
|
|
*/ |
|
18938
|
|
|
public static function getSupportedSRIDsWithHelp(): array |
|
18939
|
|
|
{ |
|
18940
|
|
|
return array_map(fn (array $data) => [ |
|
18941
|
|
|
'name' => $data['name'], |
|
18942
|
|
|
'help' => $data['help'], |
|
18943
|
|
|
], static::$sridData); |
|
18944
|
|
|
} |
|
18945
|
|
|
|
|
18946
|
|
|
public static function registerCustomDatum(string $srid, string $name, string $type, ?string $ellipsoidSrid, ?string $primeMeridianSrid, ?DateTimeInterface $frameReferenceEpoch, string $help = ''): void |
|
18947
|
|
|
{ |
|
18948
|
|
|
self::$sridData[$srid] = [ |
|
18949
|
|
|
'name' => $name, |
|
18950
|
|
|
'type' => $type, |
|
18951
|
|
|
'ellipsoid' => $ellipsoidSrid, |
|
18952
|
|
|
'prime_meridian' => $primeMeridianSrid, |
|
18953
|
|
|
'frame_reference_epoch' => $frameReferenceEpoch, |
|
18954
|
|
|
'help' => $help, |
|
18955
|
|
|
]; |
|
18956
|
|
|
} |
|
18957
|
|
|
} |
|
18958
|
|
|
|