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 CRSTransformationsArctic |
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::5989', |
23
|
|
|
'name' => 'EPSG Arctic LCC zone 2-22', |
24
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
25
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6069', |
26
|
|
|
'accuracy' => 0, |
27
|
|
|
], |
28
|
|
|
[ |
29
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5993', |
30
|
|
|
'name' => 'EPSG Arctic LCC zone 3-11', |
31
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
32
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6070', |
33
|
|
|
'accuracy' => 0, |
34
|
|
|
], |
35
|
|
|
[ |
36
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6012', |
37
|
|
|
'name' => 'EPSG Arctic LCC zone 4-26', |
38
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
39
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6071', |
40
|
|
|
'accuracy' => 0, |
41
|
|
|
], |
42
|
|
|
[ |
43
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6013', |
44
|
|
|
'name' => 'EPSG Arctic LCC zone 4-28', |
45
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
46
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6072', |
47
|
|
|
'accuracy' => 0, |
48
|
|
|
], |
49
|
|
|
[ |
50
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6020', |
51
|
|
|
'name' => 'EPSG Arctic LCC zone 5-11', |
52
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
53
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6073', |
54
|
|
|
'accuracy' => 0, |
55
|
|
|
], |
56
|
|
|
[ |
57
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6021', |
58
|
|
|
'name' => 'EPSG Arctic LCC zone 5-13', |
59
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
60
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6074', |
61
|
|
|
'accuracy' => 0, |
62
|
|
|
], |
63
|
|
|
[ |
64
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6038', |
65
|
|
|
'name' => 'EPSG Arctic LCC zone 5-47', |
66
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
67
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6125', |
68
|
|
|
'accuracy' => 0, |
69
|
|
|
], |
70
|
|
|
[ |
71
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5906', |
72
|
|
|
'name' => 'EPSG Arctic Regional LCC zone A1', |
73
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
74
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5921', |
75
|
|
|
'accuracy' => 0, |
76
|
|
|
], |
77
|
|
|
[ |
78
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5907', |
79
|
|
|
'name' => 'EPSG Arctic Regional LCC zone A2', |
80
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
81
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5922', |
82
|
|
|
'accuracy' => 0, |
83
|
|
|
], |
84
|
|
|
[ |
85
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5908', |
86
|
|
|
'name' => 'EPSG Arctic Regional LCC zone A3', |
87
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
88
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5923', |
89
|
|
|
'accuracy' => 0, |
90
|
|
|
], |
91
|
|
|
[ |
92
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5909', |
93
|
|
|
'name' => 'EPSG Arctic Regional LCC zone A4', |
94
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
95
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5924', |
96
|
|
|
'accuracy' => 0, |
97
|
|
|
], |
98
|
|
|
[ |
99
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5910', |
100
|
|
|
'name' => 'EPSG Arctic Regional LCC zone A5', |
101
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
102
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5925', |
103
|
|
|
'accuracy' => 0, |
104
|
|
|
], |
105
|
|
|
[ |
106
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5911', |
107
|
|
|
'name' => 'EPSG Arctic Regional LCC zone B1', |
108
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
109
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5926', |
110
|
|
|
'accuracy' => 0, |
111
|
|
|
], |
112
|
|
|
[ |
113
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5912', |
114
|
|
|
'name' => 'EPSG Arctic Regional LCC zone B2', |
115
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
116
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5927', |
117
|
|
|
'accuracy' => 0, |
118
|
|
|
], |
119
|
|
|
[ |
120
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5913', |
121
|
|
|
'name' => 'EPSG Arctic Regional LCC zone B3', |
122
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
123
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5928', |
124
|
|
|
'accuracy' => 0, |
125
|
|
|
], |
126
|
|
|
[ |
127
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5914', |
128
|
|
|
'name' => 'EPSG Arctic Regional LCC zone B4', |
129
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
130
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5929', |
131
|
|
|
'accuracy' => 0, |
132
|
|
|
], |
133
|
|
|
[ |
134
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5915', |
135
|
|
|
'name' => 'EPSG Arctic Regional LCC zone B5', |
136
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
137
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5930', |
138
|
|
|
'accuracy' => 0, |
139
|
|
|
], |
140
|
|
|
[ |
141
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5916', |
142
|
|
|
'name' => 'EPSG Arctic Regional LCC zone C1', |
143
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
144
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5931', |
145
|
|
|
'accuracy' => 0, |
146
|
|
|
], |
147
|
|
|
[ |
148
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5917', |
149
|
|
|
'name' => 'EPSG Arctic Regional LCC zone C2', |
150
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
151
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5932', |
152
|
|
|
'accuracy' => 0, |
153
|
|
|
], |
154
|
|
|
[ |
155
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5918', |
156
|
|
|
'name' => 'EPSG Arctic Regional LCC zone C3', |
157
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
158
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5933', |
159
|
|
|
'accuracy' => 0, |
160
|
|
|
], |
161
|
|
|
[ |
162
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5919', |
163
|
|
|
'name' => 'EPSG Arctic Regional LCC zone C4', |
164
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
165
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5934', |
166
|
|
|
'accuracy' => 0, |
167
|
|
|
], |
168
|
|
|
[ |
169
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5920', |
170
|
|
|
'name' => 'EPSG Arctic Regional LCC zone C5', |
171
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
172
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5935', |
173
|
|
|
'accuracy' => 0, |
174
|
|
|
], |
175
|
|
|
[ |
176
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5990', |
177
|
|
|
'name' => 'EPSG Arctic LCC zone 2-24', |
178
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
179
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6075', |
180
|
|
|
'accuracy' => 0, |
181
|
|
|
], |
182
|
|
|
[ |
183
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5991', |
184
|
|
|
'name' => 'EPSG Arctic LCC zone 2-26', |
185
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
186
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6076', |
187
|
|
|
'accuracy' => 0, |
188
|
|
|
], |
189
|
|
|
[ |
190
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5994', |
191
|
|
|
'name' => 'EPSG Arctic LCC zone 3-13', |
192
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
193
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6077', |
194
|
|
|
'accuracy' => 0, |
195
|
|
|
], |
196
|
|
|
[ |
197
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5995', |
198
|
|
|
'name' => 'EPSG Arctic LCC zone 3-15', |
199
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
200
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6078', |
201
|
|
|
'accuracy' => 0, |
202
|
|
|
], |
203
|
|
|
[ |
204
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5996', |
205
|
|
|
'name' => 'EPSG Arctic LCC zone 3-17', |
206
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
207
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6079', |
208
|
|
|
'accuracy' => 0, |
209
|
|
|
], |
210
|
|
|
[ |
211
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5997', |
212
|
|
|
'name' => 'EPSG Arctic LCC zone 3-19', |
213
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
214
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6080', |
215
|
|
|
'accuracy' => 0, |
216
|
|
|
], |
217
|
|
|
[ |
218
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6014', |
219
|
|
|
'name' => 'EPSG Arctic LCC zone 4-30', |
220
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
221
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6081', |
222
|
|
|
'accuracy' => 0, |
223
|
|
|
], |
224
|
|
|
[ |
225
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6015', |
226
|
|
|
'name' => 'EPSG Arctic LCC zone 4-32', |
227
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
228
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6082', |
229
|
|
|
'accuracy' => 0, |
230
|
|
|
], |
231
|
|
|
[ |
232
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6016', |
233
|
|
|
'name' => 'EPSG Arctic LCC zone 4-34', |
234
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
235
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6083', |
236
|
|
|
'accuracy' => 0, |
237
|
|
|
], |
238
|
|
|
[ |
239
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6017', |
240
|
|
|
'name' => 'EPSG Arctic LCC zone 4-36', |
241
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
242
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6084', |
243
|
|
|
'accuracy' => 0, |
244
|
|
|
], |
245
|
|
|
[ |
246
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6018', |
247
|
|
|
'name' => 'EPSG Arctic LCC zone 4-38', |
248
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
249
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6085', |
250
|
|
|
'accuracy' => 0, |
251
|
|
|
], |
252
|
|
|
[ |
253
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6019', |
254
|
|
|
'name' => 'EPSG Arctic LCC zone 4-40', |
255
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
256
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6086', |
257
|
|
|
'accuracy' => 0, |
258
|
|
|
], |
259
|
|
|
[ |
260
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6022', |
261
|
|
|
'name' => 'EPSG Arctic LCC zone 5-15', |
262
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
263
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6087', |
264
|
|
|
'accuracy' => 0, |
265
|
|
|
], |
266
|
|
|
[ |
267
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6023', |
268
|
|
|
'name' => 'EPSG Arctic LCC zone 5-17', |
269
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
270
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6088', |
271
|
|
|
'accuracy' => 0, |
272
|
|
|
], |
273
|
|
|
[ |
274
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6024', |
275
|
|
|
'name' => 'EPSG Arctic LCC zone 5-19', |
276
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
277
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6089', |
278
|
|
|
'accuracy' => 0, |
279
|
|
|
], |
280
|
|
|
[ |
281
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6025', |
282
|
|
|
'name' => 'EPSG Arctic LCC zone 5-21', |
283
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
284
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6090', |
285
|
|
|
'accuracy' => 0, |
286
|
|
|
], |
287
|
|
|
[ |
288
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6026', |
289
|
|
|
'name' => 'EPSG Arctic LCC zone 5-23', |
290
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
291
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6091', |
292
|
|
|
'accuracy' => 0, |
293
|
|
|
], |
294
|
|
|
[ |
295
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6027', |
296
|
|
|
'name' => 'EPSG Arctic LCC zone 5-25', |
297
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
298
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6092', |
299
|
|
|
'accuracy' => 0, |
300
|
|
|
], |
301
|
|
|
[ |
302
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6028', |
303
|
|
|
'name' => 'EPSG Arctic LCC zone 5-27', |
304
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
305
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6093', |
306
|
|
|
'accuracy' => 0, |
307
|
|
|
], |
308
|
|
|
[ |
309
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5980', |
310
|
|
|
'name' => 'EPSG Arctic LCC zone 1-27', |
311
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
312
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6115', |
313
|
|
|
'accuracy' => 0, |
314
|
|
|
], |
315
|
|
|
[ |
316
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5981', |
317
|
|
|
'name' => 'EPSG Arctic LCC zone 1-29', |
318
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
319
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6116', |
320
|
|
|
'accuracy' => 0, |
321
|
|
|
], |
322
|
|
|
[ |
323
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5982', |
324
|
|
|
'name' => 'EPSG Arctic LCC zone 1-31', |
325
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
326
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6117', |
327
|
|
|
'accuracy' => 0, |
328
|
|
|
], |
329
|
|
|
[ |
330
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5977', |
331
|
|
|
'name' => 'EPSG Arctic LCC zone 1-21', |
332
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
333
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6118', |
334
|
|
|
'accuracy' => 0, |
335
|
|
|
], |
336
|
|
|
[ |
337
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5992', |
338
|
|
|
'name' => 'EPSG Arctic LCC zone 2-28', |
339
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
340
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6119', |
341
|
|
|
'accuracy' => 0, |
342
|
|
|
], |
343
|
|
|
[ |
344
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5983', |
345
|
|
|
'name' => 'EPSG Arctic LCC zone 2-10', |
346
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
347
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6120', |
348
|
|
|
'accuracy' => 0, |
349
|
|
|
], |
350
|
|
|
[ |
351
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5984', |
352
|
|
|
'name' => 'EPSG Arctic LCC zone 2-12', |
353
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
354
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6121', |
355
|
|
|
'accuracy' => 0, |
356
|
|
|
], |
357
|
|
|
[ |
358
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5998', |
359
|
|
|
'name' => 'EPSG Arctic LCC zone 3-21', |
360
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
361
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6122', |
362
|
|
|
'accuracy' => 0, |
363
|
|
|
], |
364
|
|
|
[ |
365
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5999', |
366
|
|
|
'name' => 'EPSG Arctic LCC zone 3-23', |
367
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
368
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6123', |
369
|
|
|
'accuracy' => 0, |
370
|
|
|
], |
371
|
|
|
[ |
372
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6005', |
373
|
|
|
'name' => 'EPSG Arctic LCC zone 4-12', |
374
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
375
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6124', |
376
|
|
|
'accuracy' => 0, |
377
|
|
|
], |
378
|
|
|
[ |
379
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5978', |
380
|
|
|
'name' => 'EPSG Arctic LCC zone 1-23', |
381
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4617', |
382
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6098', |
383
|
|
|
'accuracy' => 0, |
384
|
|
|
], |
385
|
|
|
[ |
386
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5985', |
387
|
|
|
'name' => 'EPSG Arctic LCC zone 2-14', |
388
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4617', |
389
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6099', |
390
|
|
|
'accuracy' => 0, |
391
|
|
|
], |
392
|
|
|
[ |
393
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5986', |
394
|
|
|
'name' => 'EPSG Arctic LCC zone 2-16', |
395
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4617', |
396
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6100', |
397
|
|
|
'accuracy' => 0, |
398
|
|
|
], |
399
|
|
|
[ |
400
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6000', |
401
|
|
|
'name' => 'EPSG Arctic LCC zone 3-25', |
402
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4617', |
403
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6101', |
404
|
|
|
'accuracy' => 0, |
405
|
|
|
], |
406
|
|
|
[ |
407
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6001', |
408
|
|
|
'name' => 'EPSG Arctic LCC zone 3-27', |
409
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4617', |
410
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6102', |
411
|
|
|
'accuracy' => 0, |
412
|
|
|
], |
413
|
|
|
[ |
414
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6002', |
415
|
|
|
'name' => 'EPSG Arctic LCC zone 3-29', |
416
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4617', |
417
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6103', |
418
|
|
|
'accuracy' => 0, |
419
|
|
|
], |
420
|
|
|
[ |
421
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6006', |
422
|
|
|
'name' => 'EPSG Arctic LCC zone 4-14', |
423
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4617', |
424
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6104', |
425
|
|
|
'accuracy' => 0, |
426
|
|
|
], |
427
|
|
|
[ |
428
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6007', |
429
|
|
|
'name' => 'EPSG Arctic LCC zone 4-16', |
430
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4617', |
431
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6105', |
432
|
|
|
'accuracy' => 0, |
433
|
|
|
], |
434
|
|
|
[ |
435
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6008', |
436
|
|
|
'name' => 'EPSG Arctic LCC zone 4-18', |
437
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4617', |
438
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6106', |
439
|
|
|
'accuracy' => 0, |
440
|
|
|
], |
441
|
|
|
[ |
442
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6031', |
443
|
|
|
'name' => 'EPSG Arctic LCC zone 5-33', |
444
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4617', |
445
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6107', |
446
|
|
|
'accuracy' => 0, |
447
|
|
|
], |
448
|
|
|
[ |
449
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6032', |
450
|
|
|
'name' => 'EPSG Arctic LCC zone 5-35', |
451
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4617', |
452
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6108', |
453
|
|
|
'accuracy' => 0, |
454
|
|
|
], |
455
|
|
|
[ |
456
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6033', |
457
|
|
|
'name' => 'EPSG Arctic LCC zone 5-37', |
458
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4617', |
459
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6109', |
460
|
|
|
'accuracy' => 0, |
461
|
|
|
], |
462
|
|
|
[ |
463
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6034', |
464
|
|
|
'name' => 'EPSG Arctic LCC zone 5-39', |
465
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4617', |
466
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6110', |
467
|
|
|
'accuracy' => 0, |
468
|
|
|
], |
469
|
|
|
[ |
470
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6041', |
471
|
|
|
'name' => 'EPSG Arctic LCC zone 6-18', |
472
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4617', |
473
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6111', |
474
|
|
|
'accuracy' => 0, |
475
|
|
|
], |
476
|
|
|
[ |
477
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6042', |
478
|
|
|
'name' => 'EPSG Arctic LCC zone 6-20', |
479
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4617', |
480
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6112', |
481
|
|
|
'accuracy' => 0, |
482
|
|
|
], |
483
|
|
|
[ |
484
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6043', |
485
|
|
|
'name' => 'EPSG Arctic LCC zone 6-22', |
486
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4617', |
487
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6113', |
488
|
|
|
'accuracy' => 0, |
489
|
|
|
], |
490
|
|
|
[ |
491
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6044', |
492
|
|
|
'name' => 'EPSG Arctic LCC zone 6-24', |
493
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4617', |
494
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6114', |
495
|
|
|
'accuracy' => 0, |
496
|
|
|
], |
497
|
|
|
[ |
498
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5979', |
499
|
|
|
'name' => 'EPSG Arctic LCC zone 1-25', |
500
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
501
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6050', |
502
|
|
|
'accuracy' => 0, |
503
|
|
|
], |
504
|
|
|
[ |
505
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5987', |
506
|
|
|
'name' => 'EPSG Arctic LCC zone 2-18', |
507
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
508
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6051', |
509
|
|
|
'accuracy' => 0, |
510
|
|
|
], |
511
|
|
|
[ |
512
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5988', |
513
|
|
|
'name' => 'EPSG Arctic LCC zone 2-20', |
514
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
515
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6052', |
516
|
|
|
'accuracy' => 0, |
517
|
|
|
], |
518
|
|
|
[ |
519
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6002', |
520
|
|
|
'name' => 'EPSG Arctic LCC zone 3-29', |
521
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
522
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6053', |
523
|
|
|
'accuracy' => 0, |
524
|
|
|
], |
525
|
|
|
[ |
526
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6003', |
527
|
|
|
'name' => 'EPSG Arctic LCC zone 3-31', |
528
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
529
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6054', |
530
|
|
|
'accuracy' => 0, |
531
|
|
|
], |
532
|
|
|
[ |
533
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6004', |
534
|
|
|
'name' => 'EPSG Arctic LCC zone 3-33', |
535
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
536
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6055', |
537
|
|
|
'accuracy' => 0, |
538
|
|
|
], |
539
|
|
|
[ |
540
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6009', |
541
|
|
|
'name' => 'EPSG Arctic LCC zone 4-20', |
542
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
543
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6056', |
544
|
|
|
'accuracy' => 0, |
545
|
|
|
], |
546
|
|
|
[ |
547
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6010', |
548
|
|
|
'name' => 'EPSG Arctic LCC zone 4-22', |
549
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
550
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6057', |
551
|
|
|
'accuracy' => 0, |
552
|
|
|
], |
553
|
|
|
[ |
554
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6011', |
555
|
|
|
'name' => 'EPSG Arctic LCC zone 4-24', |
556
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
557
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6058', |
558
|
|
|
'accuracy' => 0, |
559
|
|
|
], |
560
|
|
|
[ |
561
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6035', |
562
|
|
|
'name' => 'EPSG Arctic LCC zone 5-41', |
563
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
564
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6059', |
565
|
|
|
'accuracy' => 0, |
566
|
|
|
], |
567
|
|
|
[ |
568
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6036', |
569
|
|
|
'name' => 'EPSG Arctic LCC zone 5-43', |
570
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
571
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6060', |
572
|
|
|
'accuracy' => 0, |
573
|
|
|
], |
574
|
|
|
[ |
575
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6037', |
576
|
|
|
'name' => 'EPSG Arctic LCC zone 5-45', |
577
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
578
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6061', |
579
|
|
|
'accuracy' => 0, |
580
|
|
|
], |
581
|
|
|
[ |
582
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6045', |
583
|
|
|
'name' => 'EPSG Arctic LCC zone 6-26', |
584
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
585
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6062', |
586
|
|
|
'accuracy' => 0, |
587
|
|
|
], |
588
|
|
|
[ |
589
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6046', |
590
|
|
|
'name' => 'EPSG Arctic LCC zone 6-28', |
591
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
592
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6063', |
593
|
|
|
'accuracy' => 0, |
594
|
|
|
], |
595
|
|
|
[ |
596
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6047', |
597
|
|
|
'name' => 'EPSG Arctic LCC zone 6-30', |
598
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
599
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6064', |
600
|
|
|
'accuracy' => 0, |
601
|
|
|
], |
602
|
|
|
[ |
603
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6048', |
604
|
|
|
'name' => 'EPSG Arctic LCC zone 7-11', |
605
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
606
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6065', |
607
|
|
|
'accuracy' => 0, |
608
|
|
|
], |
609
|
|
|
[ |
610
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6049', |
611
|
|
|
'name' => 'EPSG Arctic LCC zone 7-13', |
612
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
613
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6066', |
614
|
|
|
'accuracy' => 0, |
615
|
|
|
], |
616
|
|
|
[ |
617
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5943', |
618
|
|
|
'name' => 'EPSG Arctic LCC zone 8-20', |
619
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
620
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6067', |
621
|
|
|
'accuracy' => 0, |
622
|
|
|
], |
623
|
|
|
[ |
624
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5944', |
625
|
|
|
'name' => 'EPSG Arctic LCC zone 8-22', |
626
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4747', |
627
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6068', |
628
|
|
|
'accuracy' => 0, |
629
|
|
|
], |
630
|
|
|
[ |
631
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6029', |
632
|
|
|
'name' => 'EPSG Arctic LCC zone 5-29', |
633
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4759', |
634
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6094', |
635
|
|
|
'accuracy' => 0, |
636
|
|
|
], |
637
|
|
|
[ |
638
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6030', |
639
|
|
|
'name' => 'EPSG Arctic LCC zone 5-31', |
640
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4759', |
641
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6095', |
642
|
|
|
'accuracy' => 0, |
643
|
|
|
], |
644
|
|
|
[ |
645
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6039', |
646
|
|
|
'name' => 'EPSG Arctic LCC zone 6-14', |
647
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4759', |
648
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6096', |
649
|
|
|
'accuracy' => 0, |
650
|
|
|
], |
651
|
|
|
[ |
652
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6040', |
653
|
|
|
'name' => 'EPSG Arctic LCC zone 6-16', |
654
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4759', |
655
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6097', |
656
|
|
|
'accuracy' => 0, |
657
|
|
|
], |
658
|
|
|
[ |
659
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6029', |
660
|
|
|
'name' => 'EPSG Arctic LCC zone 5-29', |
661
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6318', |
662
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6351', |
663
|
|
|
'accuracy' => 0, |
664
|
|
|
], |
665
|
|
|
[ |
666
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6030', |
667
|
|
|
'name' => 'EPSG Arctic LCC zone 5-31', |
668
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6318', |
669
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6352', |
670
|
|
|
'accuracy' => 0, |
671
|
|
|
], |
672
|
|
|
[ |
673
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6039', |
674
|
|
|
'name' => 'EPSG Arctic LCC zone 6-14', |
675
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6318', |
676
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6353', |
677
|
|
|
'accuracy' => 0, |
678
|
|
|
], |
679
|
|
|
[ |
680
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6040', |
681
|
|
|
'name' => 'EPSG Arctic LCC zone 6-16', |
682
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6318', |
683
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6354', |
684
|
|
|
'accuracy' => 0, |
685
|
|
|
], |
686
|
|
|
]; |
687
|
|
|
|
688
|
|
|
/** |
689
|
|
|
* @return array<array{operation: string, name: string, source_crs: string, target_crs: string, accuracy: float}> |
690
|
|
|
*/ |
691
|
|
|
public static function getSupportedTransformations(): array |
692
|
|
|
{ |
693
|
|
|
return static::$sridData; |
694
|
|
|
} |
695
|
|
|
} |
696
|
|
|
|