|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* PHPCoord. |
|
5
|
|
|
* |
|
6
|
|
|
* @author Doug Wright |
|
7
|
|
|
*/ |
|
8
|
|
|
declare(strict_types=1); |
|
9
|
|
|
|
|
10
|
|
|
namespace PHPCoord\CoordinateOperation; |
|
11
|
|
|
|
|
12
|
|
|
/** |
|
13
|
|
|
* @internal |
|
14
|
|
|
*/ |
|
15
|
|
|
class CRSTransformationsAntarctic |
|
16
|
|
|
{ |
|
17
|
|
|
/** |
|
18
|
|
|
* @var array<array{operation: string, name: string, source_crs: string, target_crs: string, accuracy: float}> |
|
19
|
|
|
*/ |
|
20
|
|
|
protected static array $sridData = [ |
|
21
|
|
|
[ |
|
22
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1890', |
|
23
|
|
|
'name' => 'Australian Antarctic to WGS 84 (1)', |
|
24
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4176', |
|
25
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
26
|
|
|
'accuracy' => 1.0, |
|
27
|
|
|
], |
|
28
|
|
|
[ |
|
29
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19992', |
|
30
|
|
|
'name' => 'Antarctic Polar Stereographic', |
|
31
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
32
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3031', |
|
33
|
|
|
'accuracy' => 0, |
|
34
|
|
|
], |
|
35
|
|
|
[ |
|
36
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19993', |
|
37
|
|
|
'name' => 'Australian Antarctic Polar Stereographic', |
|
38
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
39
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3032', |
|
40
|
|
|
'accuracy' => 0, |
|
41
|
|
|
], |
|
42
|
|
|
[ |
|
43
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19994', |
|
44
|
|
|
'name' => 'Australian Antarctic Lambert', |
|
45
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
46
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3033', |
|
47
|
|
|
'accuracy' => 0, |
|
48
|
|
|
], |
|
49
|
|
|
[ |
|
50
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17204', |
|
51
|
|
|
'name' => 'SCAR IMW SP19-20', |
|
52
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
53
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3204', |
|
54
|
|
|
'accuracy' => 0, |
|
55
|
|
|
], |
|
56
|
|
|
[ |
|
57
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17205', |
|
58
|
|
|
'name' => 'SCAR IMW SP21-22', |
|
59
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
60
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3205', |
|
61
|
|
|
'accuracy' => 0, |
|
62
|
|
|
], |
|
63
|
|
|
[ |
|
64
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17206', |
|
65
|
|
|
'name' => 'SCAR IMW SP23-24', |
|
66
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
67
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3206', |
|
68
|
|
|
'accuracy' => 0, |
|
69
|
|
|
], |
|
70
|
|
|
[ |
|
71
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17207', |
|
72
|
|
|
'name' => 'SCAR IMW SQ01-02', |
|
73
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
74
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3207', |
|
75
|
|
|
'accuracy' => 0, |
|
76
|
|
|
], |
|
77
|
|
|
[ |
|
78
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17208', |
|
79
|
|
|
'name' => 'SCAR IMW SQ19-20', |
|
80
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
81
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3208', |
|
82
|
|
|
'accuracy' => 0, |
|
83
|
|
|
], |
|
84
|
|
|
[ |
|
85
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17209', |
|
86
|
|
|
'name' => 'SCAR IMW SQ21-22', |
|
87
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
88
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3209', |
|
89
|
|
|
'accuracy' => 0, |
|
90
|
|
|
], |
|
91
|
|
|
[ |
|
92
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17210', |
|
93
|
|
|
'name' => 'SCAR IMW SQ37-38', |
|
94
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
95
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3210', |
|
96
|
|
|
'accuracy' => 0, |
|
97
|
|
|
], |
|
98
|
|
|
[ |
|
99
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17211', |
|
100
|
|
|
'name' => 'SCAR IMW SQ39-40', |
|
101
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
102
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3211', |
|
103
|
|
|
'accuracy' => 0, |
|
104
|
|
|
], |
|
105
|
|
|
[ |
|
106
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17212', |
|
107
|
|
|
'name' => 'SCAR IMW SQ41-42', |
|
108
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
109
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3212', |
|
110
|
|
|
'accuracy' => 0, |
|
111
|
|
|
], |
|
112
|
|
|
[ |
|
113
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17213', |
|
114
|
|
|
'name' => 'SCAR IMW SQ43-44', |
|
115
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
116
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3213', |
|
117
|
|
|
'accuracy' => 0, |
|
118
|
|
|
], |
|
119
|
|
|
[ |
|
120
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17214', |
|
121
|
|
|
'name' => 'SCAR IMW SQ45-46', |
|
122
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
123
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3214', |
|
124
|
|
|
'accuracy' => 0, |
|
125
|
|
|
], |
|
126
|
|
|
[ |
|
127
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17215', |
|
128
|
|
|
'name' => 'SCAR IMW SQ47-48', |
|
129
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
130
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3215', |
|
131
|
|
|
'accuracy' => 0, |
|
132
|
|
|
], |
|
133
|
|
|
[ |
|
134
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17216', |
|
135
|
|
|
'name' => 'SCAR IMW SQ49-50', |
|
136
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
137
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3216', |
|
138
|
|
|
'accuracy' => 0, |
|
139
|
|
|
], |
|
140
|
|
|
[ |
|
141
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17217', |
|
142
|
|
|
'name' => 'SCAR IMW SQ51-52', |
|
143
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
144
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3217', |
|
145
|
|
|
'accuracy' => 0, |
|
146
|
|
|
], |
|
147
|
|
|
[ |
|
148
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17218', |
|
149
|
|
|
'name' => 'SCAR IMW SQ53-54', |
|
150
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
151
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3218', |
|
152
|
|
|
'accuracy' => 0, |
|
153
|
|
|
], |
|
154
|
|
|
[ |
|
155
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17219', |
|
156
|
|
|
'name' => 'SCAR IMW SQ55-56', |
|
157
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
158
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3219', |
|
159
|
|
|
'accuracy' => 0, |
|
160
|
|
|
], |
|
161
|
|
|
[ |
|
162
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17220', |
|
163
|
|
|
'name' => 'SCAR IMW SQ57-58', |
|
164
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
165
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3220', |
|
166
|
|
|
'accuracy' => 0, |
|
167
|
|
|
], |
|
168
|
|
|
[ |
|
169
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17221', |
|
170
|
|
|
'name' => 'SCAR IMW SR13-14', |
|
171
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
172
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3221', |
|
173
|
|
|
'accuracy' => 0, |
|
174
|
|
|
], |
|
175
|
|
|
[ |
|
176
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17222', |
|
177
|
|
|
'name' => 'SCAR IMW SR15-16', |
|
178
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
179
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3222', |
|
180
|
|
|
'accuracy' => 0, |
|
181
|
|
|
], |
|
182
|
|
|
[ |
|
183
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17223', |
|
184
|
|
|
'name' => 'SCAR IMW SR17-18', |
|
185
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
186
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3223', |
|
187
|
|
|
'accuracy' => 0, |
|
188
|
|
|
], |
|
189
|
|
|
[ |
|
190
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17224', |
|
191
|
|
|
'name' => 'SCAR IMW SR19-20', |
|
192
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
193
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3224', |
|
194
|
|
|
'accuracy' => 0, |
|
195
|
|
|
], |
|
196
|
|
|
[ |
|
197
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17225', |
|
198
|
|
|
'name' => 'SCAR IMW SR27-28', |
|
199
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
200
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3225', |
|
201
|
|
|
'accuracy' => 0, |
|
202
|
|
|
], |
|
203
|
|
|
[ |
|
204
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17226', |
|
205
|
|
|
'name' => 'SCAR IMW SR29-30', |
|
206
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
207
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3226', |
|
208
|
|
|
'accuracy' => 0, |
|
209
|
|
|
], |
|
210
|
|
|
[ |
|
211
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17227', |
|
212
|
|
|
'name' => 'SCAR IMW SR31-32', |
|
213
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
214
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3227', |
|
215
|
|
|
'accuracy' => 0, |
|
216
|
|
|
], |
|
217
|
|
|
[ |
|
218
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17228', |
|
219
|
|
|
'name' => 'SCAR IMW SR33-34', |
|
220
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
221
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3228', |
|
222
|
|
|
'accuracy' => 0, |
|
223
|
|
|
], |
|
224
|
|
|
[ |
|
225
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17229', |
|
226
|
|
|
'name' => 'SCAR IMW SR35-36', |
|
227
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
228
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3229', |
|
229
|
|
|
'accuracy' => 0, |
|
230
|
|
|
], |
|
231
|
|
|
[ |
|
232
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17230', |
|
233
|
|
|
'name' => 'SCAR IMW SR37-38', |
|
234
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
235
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3230', |
|
236
|
|
|
'accuracy' => 0, |
|
237
|
|
|
], |
|
238
|
|
|
[ |
|
239
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17231', |
|
240
|
|
|
'name' => 'SCAR IMW SR39-40', |
|
241
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
242
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3231', |
|
243
|
|
|
'accuracy' => 0, |
|
244
|
|
|
], |
|
245
|
|
|
[ |
|
246
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17232', |
|
247
|
|
|
'name' => 'SCAR IMW SR41-42', |
|
248
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
249
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3232', |
|
250
|
|
|
'accuracy' => 0, |
|
251
|
|
|
], |
|
252
|
|
|
[ |
|
253
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17233', |
|
254
|
|
|
'name' => 'SCAR IMW SR43-44', |
|
255
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
256
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3233', |
|
257
|
|
|
'accuracy' => 0, |
|
258
|
|
|
], |
|
259
|
|
|
[ |
|
260
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17234', |
|
261
|
|
|
'name' => 'SCAR IMW SR45-46', |
|
262
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
263
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3234', |
|
264
|
|
|
'accuracy' => 0, |
|
265
|
|
|
], |
|
266
|
|
|
[ |
|
267
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17235', |
|
268
|
|
|
'name' => 'SCAR IMW SR47-48', |
|
269
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
270
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3235', |
|
271
|
|
|
'accuracy' => 0, |
|
272
|
|
|
], |
|
273
|
|
|
[ |
|
274
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17236', |
|
275
|
|
|
'name' => 'SCAR IMW SR49-50', |
|
276
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
277
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3236', |
|
278
|
|
|
'accuracy' => 0, |
|
279
|
|
|
], |
|
280
|
|
|
[ |
|
281
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17237', |
|
282
|
|
|
'name' => 'SCAR IMW SR51-52', |
|
283
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
284
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3237', |
|
285
|
|
|
'accuracy' => 0, |
|
286
|
|
|
], |
|
287
|
|
|
[ |
|
288
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17238', |
|
289
|
|
|
'name' => 'SCAR IMW SR53-54', |
|
290
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
291
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3238', |
|
292
|
|
|
'accuracy' => 0, |
|
293
|
|
|
], |
|
294
|
|
|
[ |
|
295
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17239', |
|
296
|
|
|
'name' => 'SCAR IMW SR55-56', |
|
297
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
298
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3239', |
|
299
|
|
|
'accuracy' => 0, |
|
300
|
|
|
], |
|
301
|
|
|
[ |
|
302
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17240', |
|
303
|
|
|
'name' => 'SCAR IMW SR57-58', |
|
304
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
305
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3240', |
|
306
|
|
|
'accuracy' => 0, |
|
307
|
|
|
], |
|
308
|
|
|
[ |
|
309
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17241', |
|
310
|
|
|
'name' => 'SCAR IMW SR59-60', |
|
311
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
312
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3241', |
|
313
|
|
|
'accuracy' => 0, |
|
314
|
|
|
], |
|
315
|
|
|
[ |
|
316
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17242', |
|
317
|
|
|
'name' => 'SCAR IMW SS04-06', |
|
318
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
319
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3242', |
|
320
|
|
|
'accuracy' => 0, |
|
321
|
|
|
], |
|
322
|
|
|
[ |
|
323
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17243', |
|
324
|
|
|
'name' => 'SCAR IMW SS07-09', |
|
325
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
326
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3243', |
|
327
|
|
|
'accuracy' => 0, |
|
328
|
|
|
], |
|
329
|
|
|
[ |
|
330
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17244', |
|
331
|
|
|
'name' => 'SCAR IMW SS10-12', |
|
332
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
333
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3244', |
|
334
|
|
|
'accuracy' => 0, |
|
335
|
|
|
], |
|
336
|
|
|
[ |
|
337
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17245', |
|
338
|
|
|
'name' => 'SCAR IMW SS13-15', |
|
339
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
340
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3245', |
|
341
|
|
|
'accuracy' => 0, |
|
342
|
|
|
], |
|
343
|
|
|
[ |
|
344
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17246', |
|
345
|
|
|
'name' => 'SCAR IMW SS16-18', |
|
346
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
347
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3246', |
|
348
|
|
|
'accuracy' => 0, |
|
349
|
|
|
], |
|
350
|
|
|
[ |
|
351
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17247', |
|
352
|
|
|
'name' => 'SCAR IMW SS19-21', |
|
353
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
354
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3247', |
|
355
|
|
|
'accuracy' => 0, |
|
356
|
|
|
], |
|
357
|
|
|
[ |
|
358
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17248', |
|
359
|
|
|
'name' => 'SCAR IMW SS25-27', |
|
360
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
361
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3248', |
|
362
|
|
|
'accuracy' => 0, |
|
363
|
|
|
], |
|
364
|
|
|
[ |
|
365
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17249', |
|
366
|
|
|
'name' => 'SCAR IMW SS28-30', |
|
367
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
368
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3249', |
|
369
|
|
|
'accuracy' => 0, |
|
370
|
|
|
], |
|
371
|
|
|
[ |
|
372
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17250', |
|
373
|
|
|
'name' => 'SCAR IMW SS31-33', |
|
374
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
375
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3250', |
|
376
|
|
|
'accuracy' => 0, |
|
377
|
|
|
], |
|
378
|
|
|
[ |
|
379
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17251', |
|
380
|
|
|
'name' => 'SCAR IMW SS34-36', |
|
381
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
382
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3251', |
|
383
|
|
|
'accuracy' => 0, |
|
384
|
|
|
], |
|
385
|
|
|
[ |
|
386
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17252', |
|
387
|
|
|
'name' => 'SCAR IMW SS37-39', |
|
388
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
389
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3252', |
|
390
|
|
|
'accuracy' => 0, |
|
391
|
|
|
], |
|
392
|
|
|
[ |
|
393
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17253', |
|
394
|
|
|
'name' => 'SCAR IMW SS40-42', |
|
395
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
396
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3253', |
|
397
|
|
|
'accuracy' => 0, |
|
398
|
|
|
], |
|
399
|
|
|
[ |
|
400
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17254', |
|
401
|
|
|
'name' => 'SCAR IMW SS43-45', |
|
402
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
403
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3254', |
|
404
|
|
|
'accuracy' => 0, |
|
405
|
|
|
], |
|
406
|
|
|
[ |
|
407
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17255', |
|
408
|
|
|
'name' => 'SCAR IMW SS46-48', |
|
409
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
410
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3255', |
|
411
|
|
|
'accuracy' => 0, |
|
412
|
|
|
], |
|
413
|
|
|
[ |
|
414
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17256', |
|
415
|
|
|
'name' => 'SCAR IMW SS49-51', |
|
416
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
417
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3256', |
|
418
|
|
|
'accuracy' => 0, |
|
419
|
|
|
], |
|
420
|
|
|
[ |
|
421
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17257', |
|
422
|
|
|
'name' => 'SCAR IMW SS52-54', |
|
423
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
424
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3257', |
|
425
|
|
|
'accuracy' => 0, |
|
426
|
|
|
], |
|
427
|
|
|
[ |
|
428
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17258', |
|
429
|
|
|
'name' => 'SCAR IMW SS55-57', |
|
430
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
431
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3258', |
|
432
|
|
|
'accuracy' => 0, |
|
433
|
|
|
], |
|
434
|
|
|
[ |
|
435
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17259', |
|
436
|
|
|
'name' => 'SCAR IMW SS58-60', |
|
437
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
438
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3259', |
|
439
|
|
|
'accuracy' => 0, |
|
440
|
|
|
], |
|
441
|
|
|
[ |
|
442
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17260', |
|
443
|
|
|
'name' => 'SCAR IMW ST01-04', |
|
444
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
445
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3260', |
|
446
|
|
|
'accuracy' => 0, |
|
447
|
|
|
], |
|
448
|
|
|
[ |
|
449
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17261', |
|
450
|
|
|
'name' => 'SCAR IMW ST05-08', |
|
451
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
452
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3261', |
|
453
|
|
|
'accuracy' => 0, |
|
454
|
|
|
], |
|
455
|
|
|
[ |
|
456
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17262', |
|
457
|
|
|
'name' => 'SCAR IMW ST09-12', |
|
458
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
459
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3262', |
|
460
|
|
|
'accuracy' => 0, |
|
461
|
|
|
], |
|
462
|
|
|
[ |
|
463
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17263', |
|
464
|
|
|
'name' => 'SCAR IMW ST13-16', |
|
465
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
466
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3263', |
|
467
|
|
|
'accuracy' => 0, |
|
468
|
|
|
], |
|
469
|
|
|
[ |
|
470
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17264', |
|
471
|
|
|
'name' => 'SCAR IMW ST17-20', |
|
472
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
473
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3264', |
|
474
|
|
|
'accuracy' => 0, |
|
475
|
|
|
], |
|
476
|
|
|
[ |
|
477
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17265', |
|
478
|
|
|
'name' => 'SCAR IMW ST21-24', |
|
479
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
480
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3265', |
|
481
|
|
|
'accuracy' => 0, |
|
482
|
|
|
], |
|
483
|
|
|
[ |
|
484
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17266', |
|
485
|
|
|
'name' => 'SCAR IMW ST25-28', |
|
486
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
487
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3266', |
|
488
|
|
|
'accuracy' => 0, |
|
489
|
|
|
], |
|
490
|
|
|
[ |
|
491
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17267', |
|
492
|
|
|
'name' => 'SCAR IMW ST29-32', |
|
493
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
494
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3267', |
|
495
|
|
|
'accuracy' => 0, |
|
496
|
|
|
], |
|
497
|
|
|
[ |
|
498
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17268', |
|
499
|
|
|
'name' => 'SCAR IMW ST33-36', |
|
500
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
501
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3268', |
|
502
|
|
|
'accuracy' => 0, |
|
503
|
|
|
], |
|
504
|
|
|
[ |
|
505
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17269', |
|
506
|
|
|
'name' => 'SCAR IMW ST37-40', |
|
507
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
508
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3269', |
|
509
|
|
|
'accuracy' => 0, |
|
510
|
|
|
], |
|
511
|
|
|
[ |
|
512
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17270', |
|
513
|
|
|
'name' => 'SCAR IMW ST41-44', |
|
514
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
515
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3270', |
|
516
|
|
|
'accuracy' => 0, |
|
517
|
|
|
], |
|
518
|
|
|
[ |
|
519
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17271', |
|
520
|
|
|
'name' => 'SCAR IMW ST45-48', |
|
521
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
522
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3271', |
|
523
|
|
|
'accuracy' => 0, |
|
524
|
|
|
], |
|
525
|
|
|
[ |
|
526
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17272', |
|
527
|
|
|
'name' => 'SCAR IMW ST49-52', |
|
528
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
529
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3272', |
|
530
|
|
|
'accuracy' => 0, |
|
531
|
|
|
], |
|
532
|
|
|
[ |
|
533
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17273', |
|
534
|
|
|
'name' => 'SCAR IMW ST53-56', |
|
535
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
536
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3273', |
|
537
|
|
|
'accuracy' => 0, |
|
538
|
|
|
], |
|
539
|
|
|
[ |
|
540
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17274', |
|
541
|
|
|
'name' => 'SCAR IMW ST57-60', |
|
542
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
543
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3274', |
|
544
|
|
|
'accuracy' => 0, |
|
545
|
|
|
], |
|
546
|
|
|
[ |
|
547
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17275', |
|
548
|
|
|
'name' => 'SCAR IMW SU01-05', |
|
549
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
550
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3275', |
|
551
|
|
|
'accuracy' => 0, |
|
552
|
|
|
], |
|
553
|
|
|
[ |
|
554
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17276', |
|
555
|
|
|
'name' => 'SCAR IMW SU06-10', |
|
556
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
557
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3276', |
|
558
|
|
|
'accuracy' => 0, |
|
559
|
|
|
], |
|
560
|
|
|
[ |
|
561
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17277', |
|
562
|
|
|
'name' => 'SCAR IMW SU11-15', |
|
563
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
564
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3277', |
|
565
|
|
|
'accuracy' => 0, |
|
566
|
|
|
], |
|
567
|
|
|
[ |
|
568
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17278', |
|
569
|
|
|
'name' => 'SCAR IMW SU16-20', |
|
570
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
571
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3278', |
|
572
|
|
|
'accuracy' => 0, |
|
573
|
|
|
], |
|
574
|
|
|
[ |
|
575
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17279', |
|
576
|
|
|
'name' => 'SCAR IMW SU21-25', |
|
577
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
578
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3279', |
|
579
|
|
|
'accuracy' => 0, |
|
580
|
|
|
], |
|
581
|
|
|
[ |
|
582
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17280', |
|
583
|
|
|
'name' => 'SCAR IMW SU26-30', |
|
584
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
585
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3280', |
|
586
|
|
|
'accuracy' => 0, |
|
587
|
|
|
], |
|
588
|
|
|
[ |
|
589
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17281', |
|
590
|
|
|
'name' => 'SCAR IMW SU31-35', |
|
591
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
592
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3281', |
|
593
|
|
|
'accuracy' => 0, |
|
594
|
|
|
], |
|
595
|
|
|
[ |
|
596
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17282', |
|
597
|
|
|
'name' => 'SCAR IMW SU36-40', |
|
598
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
599
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3282', |
|
600
|
|
|
'accuracy' => 0, |
|
601
|
|
|
], |
|
602
|
|
|
[ |
|
603
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17283', |
|
604
|
|
|
'name' => 'SCAR IMW SU41-45', |
|
605
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
606
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3283', |
|
607
|
|
|
'accuracy' => 0, |
|
608
|
|
|
], |
|
609
|
|
|
[ |
|
610
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17284', |
|
611
|
|
|
'name' => 'SCAR IMW SU46-50', |
|
612
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
613
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3284', |
|
614
|
|
|
'accuracy' => 0, |
|
615
|
|
|
], |
|
616
|
|
|
[ |
|
617
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17285', |
|
618
|
|
|
'name' => 'SCAR IMW SU51-55', |
|
619
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
620
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3285', |
|
621
|
|
|
'accuracy' => 0, |
|
622
|
|
|
], |
|
623
|
|
|
[ |
|
624
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17286', |
|
625
|
|
|
'name' => 'SCAR IMW SU56-60', |
|
626
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
627
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3286', |
|
628
|
|
|
'accuracy' => 0, |
|
629
|
|
|
], |
|
630
|
|
|
[ |
|
631
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17287', |
|
632
|
|
|
'name' => 'SCAR IMW SV01-10', |
|
633
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
634
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3287', |
|
635
|
|
|
'accuracy' => 0, |
|
636
|
|
|
], |
|
637
|
|
|
[ |
|
638
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17288', |
|
639
|
|
|
'name' => 'SCAR IMW SV11-20', |
|
640
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
641
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3288', |
|
642
|
|
|
'accuracy' => 0, |
|
643
|
|
|
], |
|
644
|
|
|
[ |
|
645
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17289', |
|
646
|
|
|
'name' => 'SCAR IMW SV21-30', |
|
647
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
648
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3289', |
|
649
|
|
|
'accuracy' => 0, |
|
650
|
|
|
], |
|
651
|
|
|
[ |
|
652
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17290', |
|
653
|
|
|
'name' => 'SCAR IMW SV31-40', |
|
654
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
655
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3290', |
|
656
|
|
|
'accuracy' => 0, |
|
657
|
|
|
], |
|
658
|
|
|
[ |
|
659
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17291', |
|
660
|
|
|
'name' => 'SCAR IMW SV41-50', |
|
661
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
662
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3291', |
|
663
|
|
|
'accuracy' => 0, |
|
664
|
|
|
], |
|
665
|
|
|
[ |
|
666
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17292', |
|
667
|
|
|
'name' => 'SCAR IMW SV51-60', |
|
668
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
669
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3292', |
|
670
|
|
|
'accuracy' => 0, |
|
671
|
|
|
], |
|
672
|
|
|
[ |
|
673
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17293', |
|
674
|
|
|
'name' => 'SCAR IMW SW01-60', |
|
675
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
676
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3293', |
|
677
|
|
|
'accuracy' => 0, |
|
678
|
|
|
], |
|
679
|
|
|
[ |
|
680
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17294', |
|
681
|
|
|
'name' => 'USGS Transantarctic Mountains', |
|
682
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
683
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3294', |
|
684
|
|
|
'accuracy' => 0, |
|
685
|
|
|
], |
|
686
|
|
|
[ |
|
687
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19854', |
|
688
|
|
|
'name' => 'South Georgia Lambert', |
|
689
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
690
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3762', |
|
691
|
|
|
'accuracy' => 0, |
|
692
|
|
|
], |
|
693
|
|
|
[ |
|
694
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19983', |
|
695
|
|
|
'name' => 'Terre Adelie Polar Stereographic', |
|
696
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4636', |
|
697
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2985', |
|
698
|
|
|
'accuracy' => 0, |
|
699
|
|
|
], |
|
700
|
|
|
[ |
|
701
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1921', |
|
702
|
|
|
'name' => 'Petrels 1972 to WGS 84 (1)', |
|
703
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4636', |
|
704
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
705
|
|
|
'accuracy' => 10.0, |
|
706
|
|
|
], |
|
707
|
|
|
[ |
|
708
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19983', |
|
709
|
|
|
'name' => 'Terre Adelie Polar Stereographic', |
|
710
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4637', |
|
711
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2986', |
|
712
|
|
|
'accuracy' => 0, |
|
713
|
|
|
], |
|
714
|
|
|
[ |
|
715
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1922', |
|
716
|
|
|
'name' => 'Perroud 1950 to WGS 84 (1)', |
|
717
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4637', |
|
718
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
719
|
|
|
'accuracy' => 10.0, |
|
720
|
|
|
], |
|
721
|
|
|
[ |
|
722
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7083', |
|
723
|
|
|
'name' => 'Perroud 1950 to RGTAAF07 (1)', |
|
724
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4637', |
|
725
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7073', |
|
726
|
|
|
'accuracy' => 0.5, |
|
727
|
|
|
], |
|
728
|
|
|
[ |
|
729
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15802', |
|
730
|
|
|
'name' => 'Camp Area Astro to WGS 84 (1)', |
|
731
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4715', |
|
732
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
733
|
|
|
'accuracy' => 999.0, |
|
734
|
|
|
], |
|
735
|
|
|
[ |
|
736
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15813', |
|
737
|
|
|
'name' => 'South Georgia 1968 to WGS 84 (1)', |
|
738
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4722', |
|
739
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
740
|
|
|
'accuracy' => 44.0, |
|
741
|
|
|
], |
|
742
|
|
|
[ |
|
743
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15812', |
|
744
|
|
|
'name' => 'Deception Island to WGS 84 (1)', |
|
745
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4736', |
|
746
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
747
|
|
|
'accuracy' => 35.0, |
|
748
|
|
|
], |
|
749
|
|
|
[ |
|
750
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17966', |
|
751
|
|
|
'name' => 'Darwin Glacier Lambert Conformal 2000', |
|
752
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4764', |
|
753
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3852', |
|
754
|
|
|
'accuracy' => 0, |
|
755
|
|
|
], |
|
756
|
|
|
[ |
|
757
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15974', |
|
758
|
|
|
'name' => 'RSRGD2000 to WGS 84 (1)', |
|
759
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4764', |
|
760
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
761
|
|
|
'accuracy' => 1.0, |
|
762
|
|
|
], |
|
763
|
|
|
[ |
|
764
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5475', |
|
765
|
|
|
'name' => 'McMurdo Sound Lambert Conformal 2000', |
|
766
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4764', |
|
767
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5479', |
|
768
|
|
|
'accuracy' => 0, |
|
769
|
|
|
], |
|
770
|
|
|
[ |
|
771
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5476', |
|
772
|
|
|
'name' => 'Borchgrevink Coast Lambert Conformal 2000', |
|
773
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4764', |
|
774
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5480', |
|
775
|
|
|
'accuracy' => 0, |
|
776
|
|
|
], |
|
777
|
|
|
[ |
|
778
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5477', |
|
779
|
|
|
'name' => 'Pennell Coast Lambert Conformal 2000', |
|
780
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4764', |
|
781
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5481', |
|
782
|
|
|
'accuracy' => 0, |
|
783
|
|
|
], |
|
784
|
|
|
[ |
|
785
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5478', |
|
786
|
|
|
'name' => 'Ross Sea Polar Stereographic 2000', |
|
787
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4764', |
|
788
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5482', |
|
789
|
|
|
'accuracy' => 0, |
|
790
|
|
|
], |
|
791
|
|
|
]; |
|
792
|
|
|
|
|
793
|
|
|
/** |
|
794
|
|
|
* @return array<array{operation: string, name: string, source_crs: string, target_crs: string, accuracy: float}> |
|
795
|
|
|
*/ |
|
796
|
|
|
public static function getSupportedTransformations(): array |
|
797
|
|
|
{ |
|
798
|
|
|
return static::$sridData; |
|
799
|
|
|
} |
|
800
|
|
|
} |
|
801
|
|
|
|