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 CRSTransformationsEurope |
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::10159', |
23
|
|
|
'name' => 'S34-reconstruction', |
24
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10158', |
25
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10160', |
26
|
|
|
'accuracy' => 0, |
27
|
|
|
], |
28
|
|
|
[ |
29
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10182', |
30
|
|
|
'name' => 'DoPw22-TM', |
31
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10175', |
32
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10183', |
33
|
|
|
'accuracy' => 0, |
34
|
|
|
], |
35
|
|
|
[ |
36
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10187', |
37
|
|
|
'name' => 'ShAb07-TM', |
38
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10185', |
39
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10188', |
40
|
|
|
'accuracy' => 0, |
41
|
|
|
], |
42
|
|
|
[ |
43
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10193', |
44
|
|
|
'name' => 'CNH22-LCC', |
45
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10191', |
46
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10194', |
47
|
|
|
'accuracy' => 0, |
48
|
|
|
], |
49
|
|
|
[ |
50
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10198', |
51
|
|
|
'name' => 'CWS13-TM', |
52
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10196', |
53
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10199', |
54
|
|
|
'accuracy' => 0, |
55
|
|
|
], |
56
|
|
|
[ |
57
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10206', |
58
|
|
|
'name' => 'DIBA15-TM', |
59
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10204', |
60
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10207', |
61
|
|
|
'accuracy' => 0, |
62
|
|
|
], |
63
|
|
|
[ |
64
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10211', |
65
|
|
|
'name' => 'GW22-LCC', |
66
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10209', |
67
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10212', |
68
|
|
|
'accuracy' => 0, |
69
|
|
|
], |
70
|
|
|
[ |
71
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10211', |
72
|
|
|
'name' => 'GW22-LCC', |
73
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10214', |
74
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10217', |
75
|
|
|
'accuracy' => 0, |
76
|
|
|
], |
77
|
|
|
[ |
78
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10211', |
79
|
|
|
'name' => 'GW22-LCC', |
80
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10219', |
81
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10222', |
82
|
|
|
'accuracy' => 0, |
83
|
|
|
], |
84
|
|
|
[ |
85
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10226', |
86
|
|
|
'name' => 'MALS09-TM', |
87
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10224', |
88
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10227', |
89
|
|
|
'accuracy' => 0, |
90
|
|
|
], |
91
|
|
|
[ |
92
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10234', |
93
|
|
|
'name' => 'OxWo08-TM', |
94
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10229', |
95
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10235', |
96
|
|
|
'accuracy' => 0, |
97
|
|
|
], |
98
|
|
|
[ |
99
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10239', |
100
|
|
|
'name' => 'SYC20-TM', |
101
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10237', |
102
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10240', |
103
|
|
|
'accuracy' => 0, |
104
|
|
|
], |
105
|
|
|
[ |
106
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10159', |
107
|
|
|
'name' => 'S34-reconstruction', |
108
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10249', |
109
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10250', |
110
|
|
|
'accuracy' => 0, |
111
|
|
|
], |
112
|
|
|
[ |
113
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10253', |
114
|
|
|
'name' => 'S45B-reconstruction', |
115
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10252', |
116
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10254', |
117
|
|
|
'accuracy' => 0, |
118
|
|
|
], |
119
|
|
|
[ |
120
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10257', |
121
|
|
|
'name' => 'Generalstabens System LCC', |
122
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10256', |
123
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10258', |
124
|
|
|
'accuracy' => 0, |
125
|
|
|
], |
126
|
|
|
[ |
127
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10261', |
128
|
|
|
'name' => 'GSB-reconstruction', |
129
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10260', |
130
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10262', |
131
|
|
|
'accuracy' => 0, |
132
|
|
|
], |
133
|
|
|
[ |
134
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10257', |
135
|
|
|
'name' => 'Generalstabens System LCC', |
136
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10265', |
137
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10266', |
138
|
|
|
'accuracy' => 0, |
139
|
|
|
], |
140
|
|
|
[ |
141
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10269', |
142
|
|
|
'name' => 'Ostenfeld-reconstruction', |
143
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10268', |
144
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10270', |
145
|
|
|
'accuracy' => 0, |
146
|
|
|
], |
147
|
|
|
[ |
148
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10274', |
149
|
|
|
'name' => 'SMITB20-TM', |
150
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10272', |
151
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10275', |
152
|
|
|
'accuracy' => 0, |
153
|
|
|
], |
154
|
|
|
[ |
155
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10279', |
156
|
|
|
'name' => 'RBEPP12-LCC', |
157
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10277', |
158
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10280', |
159
|
|
|
'accuracy' => 0, |
160
|
|
|
], |
161
|
|
|
[ |
162
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10292', |
163
|
|
|
'name' => 'ETRS89/DREF91/2016 to ETRF2000 (1)', |
164
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10282', |
165
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7930', |
166
|
|
|
'accuracy' => 0.1, |
167
|
|
|
], |
168
|
|
|
[ |
169
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10295', |
170
|
|
|
'name' => 'ETRS89/DREF91/2016 to ETRS89/DREF91/2016 + DHHN2016 height (1)', |
171
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10283', |
172
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10293', |
173
|
|
|
'accuracy' => 0.02, |
174
|
|
|
], |
175
|
|
|
[ |
176
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10294', |
177
|
|
|
'name' => 'ETRS89/DREF91/2016 to DHHN2016 height (1)', |
178
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10283', |
179
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7837', |
180
|
|
|
'accuracy' => 0.02, |
181
|
|
|
], |
182
|
|
|
[ |
183
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5647', |
184
|
|
|
'name' => 'UTM zone 31N with prefix', |
185
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10284', |
186
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10286', |
187
|
|
|
'accuracy' => 0, |
188
|
|
|
], |
189
|
|
|
[ |
190
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5647', |
191
|
|
|
'name' => 'UTM zone 31N with prefix', |
192
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10284', |
193
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10287', |
194
|
|
|
'accuracy' => 0, |
195
|
|
|
], |
196
|
|
|
[ |
197
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4648', |
198
|
|
|
'name' => 'UTM zone 32N with prefix', |
199
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10284', |
200
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10288', |
201
|
|
|
'accuracy' => 0, |
202
|
|
|
], |
203
|
|
|
[ |
204
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4648', |
205
|
|
|
'name' => 'UTM zone 32N with prefix', |
206
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10284', |
207
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10289', |
208
|
|
|
'accuracy' => 0, |
209
|
|
|
], |
210
|
|
|
[ |
211
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5648', |
212
|
|
|
'name' => 'UTM zone 33N with prefix', |
213
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10284', |
214
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10290', |
215
|
|
|
'accuracy' => 0, |
216
|
|
|
], |
217
|
|
|
[ |
218
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5648', |
219
|
|
|
'name' => 'UTM zone 33N with prefix', |
220
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10284', |
221
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10291', |
222
|
|
|
'accuracy' => 0, |
223
|
|
|
], |
224
|
|
|
[ |
225
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19990', |
226
|
|
|
'name' => 'Latvian Transverse Mercator', |
227
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10305', |
228
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10306', |
229
|
|
|
'accuracy' => 0, |
230
|
|
|
], |
231
|
|
|
[ |
232
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10325', |
233
|
|
|
'name' => 'Bosnia and Herzegovina Transverse Mercator', |
234
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10328', |
235
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10329', |
236
|
|
|
'accuracy' => 0, |
237
|
|
|
], |
238
|
|
|
[ |
239
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10330', |
240
|
|
|
'name' => 'BH_ETRS89 to ETRS89 (1)', |
241
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10328', |
242
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
243
|
|
|
'accuracy' => 0.0, |
244
|
|
|
], |
245
|
|
|
[ |
246
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10380', |
247
|
|
|
'name' => 'Cascais depth to ZH Portugal depth (1)', |
248
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10364', |
249
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10349', |
250
|
|
|
'accuracy' => 0.0, |
251
|
|
|
], |
252
|
|
|
[ |
253
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10381', |
254
|
|
|
'name' => 'Cascais depth to ZH Portugal depth (2)', |
255
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10364', |
256
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10349', |
257
|
|
|
'accuracy' => 0.0, |
258
|
|
|
], |
259
|
|
|
[ |
260
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10382', |
261
|
|
|
'name' => 'Cais da Pontinha depth to ZH Portugal depth (1)', |
262
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10370', |
263
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10349', |
264
|
|
|
'accuracy' => 0.0, |
265
|
|
|
], |
266
|
|
|
[ |
267
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10383', |
268
|
|
|
'name' => 'Cais da Vila depth to ZH Portugal depth (1)', |
269
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10371', |
270
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10349', |
271
|
|
|
'accuracy' => 0.0, |
272
|
|
|
], |
273
|
|
|
[ |
274
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10384', |
275
|
|
|
'name' => 'Santa Cruz das Flores depth to ZH Portugal depth (1)', |
276
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10372', |
277
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10349', |
278
|
|
|
'accuracy' => 0.0, |
279
|
|
|
], |
280
|
|
|
[ |
281
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10385', |
282
|
|
|
'name' => 'Horta depth to ZH Portugal depth (1)', |
283
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10373', |
284
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10349', |
285
|
|
|
'accuracy' => 0.0, |
286
|
|
|
], |
287
|
|
|
[ |
288
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10386', |
289
|
|
|
'name' => 'Cais da Madalena depth to ZH Portugal depth (1)', |
290
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10374', |
291
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10349', |
292
|
|
|
'accuracy' => 0.0, |
293
|
|
|
], |
294
|
|
|
[ |
295
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10387', |
296
|
|
|
'name' => 'Cais das Velas depth to ZH Portugal depth (1)', |
297
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10375', |
298
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10349', |
299
|
|
|
'accuracy' => 0.0, |
300
|
|
|
], |
301
|
|
|
[ |
302
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10388', |
303
|
|
|
'name' => 'Santa Cruz da Graciosa depth to ZH Portugal depth (1)', |
304
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10376', |
305
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10349', |
306
|
|
|
'accuracy' => 0.0, |
307
|
|
|
], |
308
|
|
|
[ |
309
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10389', |
310
|
|
|
'name' => 'Cais da Figueirinha depth to ZH Portugal depth (1)', |
311
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10377', |
312
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10349', |
313
|
|
|
'accuracy' => 0.0, |
314
|
|
|
], |
315
|
|
|
[ |
316
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10390', |
317
|
|
|
'name' => 'Ponta Delgada depth to ZH Portugal depth (1)', |
318
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10378', |
319
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10349', |
320
|
|
|
'accuracy' => 0.0, |
321
|
|
|
], |
322
|
|
|
[ |
323
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10391', |
324
|
|
|
'name' => 'Cais da Vila do Porto depth to ZH Portugal depth (1)', |
325
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10379', |
326
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10349', |
327
|
|
|
'accuracy' => 0.0, |
328
|
|
|
], |
329
|
|
|
[ |
330
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10470', |
331
|
|
|
'name' => 'COV23-TM', |
332
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10468', |
333
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10471', |
334
|
|
|
'accuracy' => 0, |
335
|
|
|
], |
336
|
|
|
[ |
337
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10476', |
338
|
|
|
'name' => 'Brenner Base Tunnel TM', |
339
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10475', |
340
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10477', |
341
|
|
|
'accuracy' => 0, |
342
|
|
|
], |
343
|
|
|
[ |
344
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10478', |
345
|
|
|
'name' => 'BBT2000 to WGS 84 (1)', |
346
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10475', |
347
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
348
|
|
|
'accuracy' => 1.0, |
349
|
|
|
], |
350
|
|
|
[ |
351
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10625', |
352
|
|
|
'name' => 'ECML14-TM', |
353
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10623', |
354
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10626', |
355
|
|
|
'accuracy' => 0, |
356
|
|
|
], |
357
|
|
|
[ |
358
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10631', |
359
|
|
|
'name' => 'WC05-TM', |
360
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10628', |
361
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10632', |
362
|
|
|
'accuracy' => 0, |
363
|
|
|
], |
364
|
|
|
[ |
365
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10127', |
366
|
|
|
'name' => 'MWC18-TM', |
367
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::20033', |
368
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20002', |
369
|
|
|
'accuracy' => 0, |
370
|
|
|
], |
371
|
|
|
[ |
372
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3817', |
373
|
|
|
'name' => 'HD1909 to WGS 84 (1)', |
374
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3819', |
375
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
376
|
|
|
'accuracy' => 3.0, |
377
|
|
|
], |
378
|
|
|
[ |
379
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19845', |
380
|
|
|
'name' => 'Slovene National Grid', |
381
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
382
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3912', |
383
|
|
|
'accuracy' => 0, |
384
|
|
|
], |
385
|
|
|
[ |
386
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3963', |
387
|
|
|
'name' => 'MGI 1901 to ETRS89 (2)', |
388
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
389
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
390
|
|
|
'accuracy' => 1.0, |
391
|
|
|
], |
392
|
|
|
[ |
393
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6205', |
394
|
|
|
'name' => 'MGI 1901 to ETRS89 (5)', |
395
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
396
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
397
|
|
|
'accuracy' => 1.0, |
398
|
|
|
], |
399
|
|
|
[ |
400
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8680', |
401
|
|
|
'name' => 'MGI 1901 to ETRS89 (7)', |
402
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
403
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
404
|
|
|
'accuracy' => 1.0, |
405
|
|
|
], |
406
|
|
|
[ |
407
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3962', |
408
|
|
|
'name' => 'MGI 1901 to WGS 84 (1)', |
409
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
410
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
411
|
|
|
'accuracy' => 5.0, |
412
|
|
|
], |
413
|
|
|
[ |
414
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3965', |
415
|
|
|
'name' => 'MGI 1901 to WGS 84 (6)', |
416
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
417
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
418
|
|
|
'accuracy' => 10.0, |
419
|
|
|
], |
420
|
|
|
[ |
421
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6206', |
422
|
|
|
'name' => 'MGI 1901 to WGS 84 (10)', |
423
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
424
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
425
|
|
|
'accuracy' => 2.0, |
426
|
|
|
], |
427
|
|
|
[ |
428
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3918', |
429
|
|
|
'name' => 'MGI 1901 to Slovenia 1996 (2)', |
430
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
431
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4765', |
432
|
|
|
'accuracy' => 0.5, |
433
|
|
|
], |
434
|
|
|
[ |
435
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3919', |
436
|
|
|
'name' => 'MGI 1901 to Slovenia 1996 (3)', |
437
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
438
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4765', |
439
|
|
|
'accuracy' => 0.5, |
440
|
|
|
], |
441
|
|
|
[ |
442
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3921', |
443
|
|
|
'name' => 'MGI 1901 to Slovenia 1996 (4)', |
444
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
445
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4765', |
446
|
|
|
'accuracy' => 0.5, |
447
|
|
|
], |
448
|
|
|
[ |
449
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3922', |
450
|
|
|
'name' => 'MGI 1901 to Slovenia 1996 (5)', |
451
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
452
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4765', |
453
|
|
|
'accuracy' => 0.3, |
454
|
|
|
], |
455
|
|
|
[ |
456
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3923', |
457
|
|
|
'name' => 'MGI 1901 to Slovenia 1996 (6)', |
458
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
459
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4765', |
460
|
|
|
'accuracy' => 0.3, |
461
|
|
|
], |
462
|
|
|
[ |
463
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3924', |
464
|
|
|
'name' => 'MGI 1901 to Slovenia 1996 (7)', |
465
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
466
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4765', |
467
|
|
|
'accuracy' => 0.3, |
468
|
|
|
], |
469
|
|
|
[ |
470
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3925', |
471
|
|
|
'name' => 'MGI 1901 to Slovenia 1996 (8)', |
472
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
473
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4765', |
474
|
|
|
'accuracy' => 0.3, |
475
|
|
|
], |
476
|
|
|
[ |
477
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3926', |
478
|
|
|
'name' => 'MGI 1901 to Slovenia 1996 (9)', |
479
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
480
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4765', |
481
|
|
|
'accuracy' => 0.3, |
482
|
|
|
], |
483
|
|
|
[ |
484
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3927', |
485
|
|
|
'name' => 'MGI 1901 to Slovenia 1996 (10)', |
486
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
487
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4765', |
488
|
|
|
'accuracy' => 0.3, |
489
|
|
|
], |
490
|
|
|
[ |
491
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3928', |
492
|
|
|
'name' => 'MGI 1901 to Slovenia 1996 (11)', |
493
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
494
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4765', |
495
|
|
|
'accuracy' => 0.3, |
496
|
|
|
], |
497
|
|
|
[ |
498
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8689', |
499
|
|
|
'name' => 'MGI 1901 to Slovenia 1996 (12)', |
500
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
501
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4765', |
502
|
|
|
'accuracy' => 1.0, |
503
|
|
|
], |
504
|
|
|
[ |
505
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6203', |
506
|
|
|
'name' => 'Macedonia Gauss-Kruger', |
507
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
508
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6204', |
509
|
|
|
'accuracy' => 0, |
510
|
|
|
], |
511
|
|
|
[ |
512
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18277', |
513
|
|
|
'name' => 'Balkans zone 7', |
514
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
515
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6316', |
516
|
|
|
'accuracy' => 0, |
517
|
|
|
], |
518
|
|
|
[ |
519
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18275', |
520
|
|
|
'name' => 'Balkans zone 5', |
521
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
522
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8677', |
523
|
|
|
'accuracy' => 0, |
524
|
|
|
], |
525
|
|
|
[ |
526
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18276', |
527
|
|
|
'name' => 'Balkans zone 6', |
528
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
529
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8678', |
530
|
|
|
'accuracy' => 0, |
531
|
|
|
], |
532
|
|
|
[ |
533
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18278', |
534
|
|
|
'name' => 'Balkans zone 8', |
535
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
536
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8679', |
537
|
|
|
'accuracy' => 0, |
538
|
|
|
], |
539
|
|
|
[ |
540
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9495', |
541
|
|
|
'name' => 'MGI 1901 to SRB-ETRS89 (8)', |
542
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
543
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8685', |
544
|
|
|
'accuracy' => 0.46, |
545
|
|
|
], |
546
|
|
|
[ |
547
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19967', |
548
|
|
|
'name' => 'Slovenia Grid', |
549
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
550
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8686', |
551
|
|
|
'accuracy' => 0, |
552
|
|
|
], |
553
|
|
|
[ |
554
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9142', |
555
|
|
|
'name' => 'MGI 1901 to KOSOVAREF01 (1)', |
556
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
557
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9140', |
558
|
|
|
'accuracy' => 1.0, |
559
|
|
|
], |
560
|
|
|
[ |
561
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9911', |
562
|
|
|
'name' => 'Macedonia Gauss-Kruger truncated', |
563
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3906', |
564
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9945', |
565
|
|
|
'accuracy' => 0, |
566
|
|
|
], |
567
|
|
|
[ |
568
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3999', |
569
|
|
|
'name' => 'Moldova Transverse Mercator', |
570
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4023', |
571
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4026', |
572
|
|
|
'accuracy' => 0, |
573
|
|
|
], |
574
|
|
|
[ |
575
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5584', |
576
|
|
|
'name' => 'MOLDREF99 to ETRS89 (1)', |
577
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4023', |
578
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
579
|
|
|
'accuracy' => 0.1, |
580
|
|
|
], |
581
|
|
|
[ |
582
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4076', |
583
|
|
|
'name' => 'SREF98 to ETRS89 (1)', |
584
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4075', |
585
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
586
|
|
|
'accuracy' => 0.0, |
587
|
|
|
], |
588
|
|
|
[ |
589
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9415', |
590
|
|
|
'name' => 'REGCAN95 to Lanzarote height (1)', |
591
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4080', |
592
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9395', |
593
|
|
|
'accuracy' => 0.05, |
594
|
|
|
], |
595
|
|
|
[ |
596
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9416', |
597
|
|
|
'name' => 'REGCAN95 to Fuerteventura height (1)', |
598
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4080', |
599
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9396', |
600
|
|
|
'accuracy' => 0.05, |
601
|
|
|
], |
602
|
|
|
[ |
603
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9417', |
604
|
|
|
'name' => 'REGCAN95 to Gran Canaria height (1)', |
605
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4080', |
606
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9397', |
607
|
|
|
'accuracy' => 0.05, |
608
|
|
|
], |
609
|
|
|
[ |
610
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9418', |
611
|
|
|
'name' => 'REGCAN95 to Tenerife height (1)', |
612
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4080', |
613
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9398', |
614
|
|
|
'accuracy' => 0.05, |
615
|
|
|
], |
616
|
|
|
[ |
617
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9419', |
618
|
|
|
'name' => 'REGCAN95 to La Gomera height (1)', |
619
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4080', |
620
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9399', |
621
|
|
|
'accuracy' => 0.05, |
622
|
|
|
], |
623
|
|
|
[ |
624
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9420', |
625
|
|
|
'name' => 'REGCAN95 to La Palma height (1)', |
626
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4080', |
627
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9400', |
628
|
|
|
'accuracy' => 0.05, |
629
|
|
|
], |
630
|
|
|
[ |
631
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9421', |
632
|
|
|
'name' => 'REGCAN95 to El Hierro height (1)', |
633
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4080', |
634
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9401', |
635
|
|
|
'accuracy' => 0.05, |
636
|
|
|
], |
637
|
|
|
[ |
638
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9610', |
639
|
|
|
'name' => 'REGCAN95 to REGCAN95 + El Hierro height (1)', |
640
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4080', |
641
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9510', |
642
|
|
|
'accuracy' => 0.05, |
643
|
|
|
], |
644
|
|
|
[ |
645
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9611', |
646
|
|
|
'name' => 'REGCAN95 to REGCAN95 + Fuerteventura height (1)', |
647
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4080', |
648
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9511', |
649
|
|
|
'accuracy' => 0.05, |
650
|
|
|
], |
651
|
|
|
[ |
652
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9612', |
653
|
|
|
'name' => 'REGCAN95 to REGCAN95 + Gran Canaria height (1)', |
654
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4080', |
655
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9512', |
656
|
|
|
'accuracy' => 0.05, |
657
|
|
|
], |
658
|
|
|
[ |
659
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9613', |
660
|
|
|
'name' => 'REGCAN95 to REGCAN95 + La Gomera height (1)', |
661
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4080', |
662
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9513', |
663
|
|
|
'accuracy' => 0.05, |
664
|
|
|
], |
665
|
|
|
[ |
666
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9614', |
667
|
|
|
'name' => 'REGCAN95 to REGCAN95 + La Palma height (1)', |
668
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4080', |
669
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9514', |
670
|
|
|
'accuracy' => 0.05, |
671
|
|
|
], |
672
|
|
|
[ |
673
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9615', |
674
|
|
|
'name' => 'REGCAN95 to REGCAN95 + Lanzarote height (1)', |
675
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4080', |
676
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9515', |
677
|
|
|
'accuracy' => 0.05, |
678
|
|
|
], |
679
|
|
|
[ |
680
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9616', |
681
|
|
|
'name' => 'REGCAN95 to REGCAN95 + Tenerife height (1)', |
682
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4080', |
683
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9516', |
684
|
|
|
'accuracy' => 0.05, |
685
|
|
|
], |
686
|
|
|
[ |
687
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4084', |
688
|
|
|
'name' => 'REGCAN95 to WGS 84 (1)', |
689
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4081', |
690
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
691
|
|
|
'accuracy' => 1.0, |
692
|
|
|
], |
693
|
|
|
[ |
694
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19985', |
695
|
|
|
'name' => 'Europe Conformal 2001', |
696
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4081', |
697
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5634', |
698
|
|
|
'accuracy' => 0, |
699
|
|
|
], |
700
|
|
|
[ |
701
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19986', |
702
|
|
|
'name' => 'Europe Equal Area 2001', |
703
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4081', |
704
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5635', |
705
|
|
|
'accuracy' => 0, |
706
|
|
|
], |
707
|
|
|
[ |
708
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1891', |
709
|
|
|
'name' => 'Greek to GGRS87 (1)', |
710
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4120', |
711
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4121', |
712
|
|
|
'accuracy' => 5.0, |
713
|
|
|
], |
714
|
|
|
[ |
715
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19930', |
716
|
|
|
'name' => 'Greek Grid', |
717
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4121', |
718
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2100', |
719
|
|
|
'accuracy' => 0, |
720
|
|
|
], |
721
|
|
|
[ |
722
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1272', |
723
|
|
|
'name' => 'GGRS87 to WGS 84 (1)', |
724
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4121', |
725
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
726
|
|
|
'accuracy' => 1.0, |
727
|
|
|
], |
728
|
|
|
[ |
729
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18191', |
730
|
|
|
'name' => 'Finland zone 1', |
731
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4123', |
732
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2391', |
733
|
|
|
'accuracy' => 0, |
734
|
|
|
], |
735
|
|
|
[ |
736
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18192', |
737
|
|
|
'name' => 'Finland zone 2', |
738
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4123', |
739
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2392', |
740
|
|
|
'accuracy' => 0, |
741
|
|
|
], |
742
|
|
|
[ |
743
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18193', |
744
|
|
|
'name' => 'Finland Uniform Coordinate System', |
745
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4123', |
746
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2393', |
747
|
|
|
'accuracy' => 0, |
748
|
|
|
], |
749
|
|
|
[ |
750
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18194', |
751
|
|
|
'name' => 'Finland zone 4', |
752
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4123', |
753
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2394', |
754
|
|
|
'accuracy' => 0, |
755
|
|
|
], |
756
|
|
|
[ |
757
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18180', |
758
|
|
|
'name' => 'Finland zone 0', |
759
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4123', |
760
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3386', |
761
|
|
|
'accuracy' => 0, |
762
|
|
|
], |
763
|
|
|
[ |
764
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18205', |
765
|
|
|
'name' => 'Finland zone 5', |
766
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4123', |
767
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3387', |
768
|
|
|
'accuracy' => 0, |
769
|
|
|
], |
770
|
|
|
[ |
771
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10098', |
772
|
|
|
'name' => 'KKJ to ETRS89 (2)', |
773
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4123', |
774
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
775
|
|
|
'accuracy' => 0.5, |
776
|
|
|
], |
777
|
|
|
[ |
778
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17334', |
779
|
|
|
'name' => 'Sweden zone 7.5 gon V', |
780
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4124', |
781
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3019', |
782
|
|
|
'accuracy' => 0, |
783
|
|
|
], |
784
|
|
|
[ |
785
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17335', |
786
|
|
|
'name' => 'Sweden zone 5 gon V', |
787
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4124', |
788
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3020', |
789
|
|
|
'accuracy' => 0, |
790
|
|
|
], |
791
|
|
|
[ |
792
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19929', |
793
|
|
|
'name' => 'Sweden zone 2.5 gon V', |
794
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4124', |
795
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3021', |
796
|
|
|
'accuracy' => 0, |
797
|
|
|
], |
798
|
|
|
[ |
799
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17336', |
800
|
|
|
'name' => 'Sweden zone 0 gon', |
801
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4124', |
802
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3022', |
803
|
|
|
'accuracy' => 0, |
804
|
|
|
], |
805
|
|
|
[ |
806
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17337', |
807
|
|
|
'name' => 'Sweden zone 2.5 gon O', |
808
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4124', |
809
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3023', |
810
|
|
|
'accuracy' => 0, |
811
|
|
|
], |
812
|
|
|
[ |
813
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17338', |
814
|
|
|
'name' => 'Sweden zone 5 gon O', |
815
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4124', |
816
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3024', |
817
|
|
|
'accuracy' => 0, |
818
|
|
|
], |
819
|
|
|
[ |
820
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1895', |
821
|
|
|
'name' => 'RT90 to SWEREF99 (1)', |
822
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4124', |
823
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4619', |
824
|
|
|
'accuracy' => 0.1, |
825
|
|
|
], |
826
|
|
|
[ |
827
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19938', |
828
|
|
|
'name' => 'Estonian National Grid', |
829
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4133', |
830
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3300', |
831
|
|
|
'accuracy' => 0, |
832
|
|
|
], |
833
|
|
|
[ |
834
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1331', |
835
|
|
|
'name' => 'EST92 to ETRS89 (1)', |
836
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4133', |
837
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
838
|
|
|
'accuracy' => 0.1, |
839
|
|
|
], |
840
|
|
|
[ |
841
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19922', |
842
|
|
|
'name' => 'Swiss Oblique Mercator 1903M', |
843
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4149', |
844
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21781', |
845
|
|
|
'accuracy' => 0, |
846
|
|
|
], |
847
|
|
|
[ |
848
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19841', |
849
|
|
|
'name' => 'Swiss Oblique Mercator 1903C (Greenwich)', |
850
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4149', |
851
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21782', |
852
|
|
|
'accuracy' => 0, |
853
|
|
|
], |
854
|
|
|
[ |
855
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15486', |
856
|
|
|
'name' => 'CH1903 to CH1903+ (1)', |
857
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4149', |
858
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4150', |
859
|
|
|
'accuracy' => 0.2, |
860
|
|
|
], |
861
|
|
|
[ |
862
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7673', |
863
|
|
|
'name' => 'CH1903 to CHTRS95 (1)', |
864
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4149', |
865
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4151', |
866
|
|
|
'accuracy' => 0.25, |
867
|
|
|
], |
868
|
|
|
[ |
869
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7674', |
870
|
|
|
'name' => 'CH1903 to ETRS89 (2)', |
871
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4149', |
872
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
873
|
|
|
'accuracy' => 0.25, |
874
|
|
|
], |
875
|
|
|
[ |
876
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19950', |
877
|
|
|
'name' => 'Swiss Oblique Mercator 1995', |
878
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4150', |
879
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2056', |
880
|
|
|
'accuracy' => 0, |
881
|
|
|
], |
882
|
|
|
[ |
883
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1509', |
884
|
|
|
'name' => 'CH1903+ to CHTRS95 (1)', |
885
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4150', |
886
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4151', |
887
|
|
|
'accuracy' => 0.1, |
888
|
|
|
], |
889
|
|
|
[ |
890
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1647', |
891
|
|
|
'name' => 'CH1903+ to ETRS89 (1)', |
892
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4150', |
893
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
894
|
|
|
'accuracy' => 0.1, |
895
|
|
|
], |
896
|
|
|
[ |
897
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8895', |
898
|
|
|
'name' => 'CHTRS95 to ETRS89 (1)', |
899
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4151', |
900
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
901
|
|
|
'accuracy' => 0.01, |
902
|
|
|
], |
903
|
|
|
[ |
904
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15965', |
905
|
|
|
'name' => 'S-JTSK to WGS 84 (3)', |
906
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4156', |
907
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
908
|
|
|
'accuracy' => 6.0, |
909
|
|
|
], |
910
|
|
|
[ |
911
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5241', |
912
|
|
|
'name' => 'S-JTSK to S-JTSK/05 (1)', |
913
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4156', |
914
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5228', |
915
|
|
|
'accuracy' => 0.0, |
916
|
|
|
], |
917
|
|
|
[ |
918
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5509', |
919
|
|
|
'name' => 'Krovak (Greenwich)', |
920
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4156', |
921
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5513', |
922
|
|
|
'accuracy' => 0, |
923
|
|
|
], |
924
|
|
|
[ |
925
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5510', |
926
|
|
|
'name' => 'Krovak East North (Greenwich)', |
927
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4156', |
928
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5514', |
929
|
|
|
'accuracy' => 0, |
930
|
|
|
], |
931
|
|
|
[ |
932
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18085', |
933
|
|
|
'name' => 'Lambert-93', |
934
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4171', |
935
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2154', |
936
|
|
|
'accuracy' => 0, |
937
|
|
|
], |
938
|
|
|
[ |
939
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18101', |
940
|
|
|
'name' => 'France Conic Conformal zone 1', |
941
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4171', |
942
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3942', |
943
|
|
|
'accuracy' => 0, |
944
|
|
|
], |
945
|
|
|
[ |
946
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18102', |
947
|
|
|
'name' => 'France Conic Conformal zone 2', |
948
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4171', |
949
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3943', |
950
|
|
|
'accuracy' => 0, |
951
|
|
|
], |
952
|
|
|
[ |
953
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18103', |
954
|
|
|
'name' => 'France Conic Conformal zone 3', |
955
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4171', |
956
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3944', |
957
|
|
|
'accuracy' => 0, |
958
|
|
|
], |
959
|
|
|
[ |
960
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18104', |
961
|
|
|
'name' => 'France Conic Conformal zone 4', |
962
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4171', |
963
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3945', |
964
|
|
|
'accuracy' => 0, |
965
|
|
|
], |
966
|
|
|
[ |
967
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18105', |
968
|
|
|
'name' => 'France Conic Conformal zone 5', |
969
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4171', |
970
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3946', |
971
|
|
|
'accuracy' => 0, |
972
|
|
|
], |
973
|
|
|
[ |
974
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18106', |
975
|
|
|
'name' => 'France Conic Conformal zone 6', |
976
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4171', |
977
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3947', |
978
|
|
|
'accuracy' => 0, |
979
|
|
|
], |
980
|
|
|
[ |
981
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18107', |
982
|
|
|
'name' => 'France Conic Conformal zone 7', |
983
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4171', |
984
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3948', |
985
|
|
|
'accuracy' => 0, |
986
|
|
|
], |
987
|
|
|
[ |
988
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18108', |
989
|
|
|
'name' => 'France Conic Conformal zone 8', |
990
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4171', |
991
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3949', |
992
|
|
|
'accuracy' => 0, |
993
|
|
|
], |
994
|
|
|
[ |
995
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18109', |
996
|
|
|
'name' => 'France Conic Conformal zone 9', |
997
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4171', |
998
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3950', |
999
|
|
|
'accuracy' => 0, |
1000
|
|
|
], |
1001
|
|
|
[ |
1002
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1591', |
1003
|
|
|
'name' => 'RGF93 v1 to ETRS89 (1)', |
1004
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4171', |
1005
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1006
|
|
|
'accuracy' => 0.1, |
1007
|
|
|
], |
1008
|
|
|
[ |
1009
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9882', |
1010
|
|
|
'name' => 'RGF93 v1 to RGF93 v2 (1)', |
1011
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4171', |
1012
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9777', |
1013
|
|
|
'accuracy' => 0.05, |
1014
|
|
|
], |
1015
|
|
|
[ |
1016
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19962', |
1017
|
|
|
'name' => 'Irish Transverse Mercator', |
1018
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4173', |
1019
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2157', |
1020
|
|
|
'accuracy' => 0, |
1021
|
|
|
], |
1022
|
|
|
[ |
1023
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1611', |
1024
|
|
|
'name' => 'IRENET95 to ETRS89 (1)', |
1025
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4173', |
1026
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1027
|
|
|
'accuracy' => 0.0, |
1028
|
|
|
], |
1029
|
|
|
[ |
1030
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1775', |
1031
|
|
|
'name' => 'Pulkovo 1942(83) to ETRS89 (2)', |
1032
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4178', |
1033
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1034
|
|
|
'accuracy' => 0.1, |
1035
|
|
|
], |
1036
|
|
|
[ |
1037
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15996', |
1038
|
|
|
'name' => 'Pulkovo 1942(83) to WGS 84 (3)', |
1039
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4178', |
1040
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1041
|
|
|
'accuracy' => 4.0, |
1042
|
|
|
], |
1043
|
|
|
[ |
1044
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15998', |
1045
|
|
|
'name' => 'Pulkovo 1942(83) to WGS 84 (5)', |
1046
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4178', |
1047
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1048
|
|
|
'accuracy' => 5.0, |
1049
|
|
|
], |
1050
|
|
|
[ |
1051
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7806', |
1052
|
|
|
'name' => 'Pulkovo 1942(83) to BGS2005 (1)', |
1053
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4178', |
1054
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7798', |
1055
|
|
|
'accuracy' => 5.0, |
1056
|
|
|
], |
1057
|
|
|
[ |
1058
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18282', |
1059
|
|
|
'name' => 'Poland zone II', |
1060
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4179', |
1061
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2172', |
1062
|
|
|
'accuracy' => 0, |
1063
|
|
|
], |
1064
|
|
|
[ |
1065
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18283', |
1066
|
|
|
'name' => 'Poland zone III', |
1067
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4179', |
1068
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2173', |
1069
|
|
|
'accuracy' => 0, |
1070
|
|
|
], |
1071
|
|
|
[ |
1072
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18284', |
1073
|
|
|
'name' => 'Poland zone IV', |
1074
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4179', |
1075
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2174', |
1076
|
|
|
'accuracy' => 0, |
1077
|
|
|
], |
1078
|
|
|
[ |
1079
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18285', |
1080
|
|
|
'name' => 'Poland zone V', |
1081
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4179', |
1082
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2175', |
1083
|
|
|
'accuracy' => 0, |
1084
|
|
|
], |
1085
|
|
|
[ |
1086
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18280', |
1087
|
|
|
'name' => 'Poland zone I', |
1088
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4179', |
1089
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3120', |
1090
|
|
|
'accuracy' => 0, |
1091
|
|
|
], |
1092
|
|
|
[ |
1093
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18286', |
1094
|
|
|
'name' => 'GUGiK-80', |
1095
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4179', |
1096
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3328', |
1097
|
|
|
'accuracy' => 0, |
1098
|
|
|
], |
1099
|
|
|
[ |
1100
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19926', |
1101
|
|
|
'name' => 'Stereo 70', |
1102
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4179', |
1103
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3844', |
1104
|
|
|
'accuracy' => 0, |
1105
|
|
|
], |
1106
|
|
|
[ |
1107
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7836', |
1108
|
|
|
'name' => 'Pulkovo 1942(58) to Albanian 1987 (1)', |
1109
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4179', |
1110
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4191', |
1111
|
|
|
'accuracy' => 1.0, |
1112
|
|
|
], |
1113
|
|
|
[ |
1114
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15994', |
1115
|
|
|
'name' => 'Pulkovo 1942(58) to ETRS89 (4)', |
1116
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4179', |
1117
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1118
|
|
|
'accuracy' => 3.0, |
1119
|
|
|
], |
1120
|
|
|
[ |
1121
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1644', |
1122
|
|
|
'name' => 'Pulkovo 1942(58) to ETRS89 (1)', |
1123
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4179', |
1124
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1125
|
|
|
'accuracy' => 1.0, |
1126
|
|
|
], |
1127
|
|
|
[ |
1128
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15496', |
1129
|
|
|
'name' => 'Pulkovo 1942(58) to WGS 84 (18)', |
1130
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4179', |
1131
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1132
|
|
|
'accuracy' => 10.0, |
1133
|
|
|
], |
1134
|
|
|
[ |
1135
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15497', |
1136
|
|
|
'name' => 'Pulkovo 1942(58) to WGS 84 (9)', |
1137
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4179', |
1138
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1139
|
|
|
'accuracy' => 7.0, |
1140
|
|
|
], |
1141
|
|
|
[ |
1142
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15997', |
1143
|
|
|
'name' => 'Pulkovo 1942(58) to WGS 84 (4)', |
1144
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4179', |
1145
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1146
|
|
|
'accuracy' => 6.0, |
1147
|
|
|
], |
1148
|
|
|
[ |
1149
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15999', |
1150
|
|
|
'name' => 'Pulkovo 1942(58) to WGS 84 (8)', |
1151
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4179', |
1152
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1153
|
|
|
'accuracy' => 6.0, |
1154
|
|
|
], |
1155
|
|
|
[ |
1156
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7835', |
1157
|
|
|
'name' => 'Pulkovo 1942(58) to WGS 84 (22)', |
1158
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4179', |
1159
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1160
|
|
|
'accuracy' => 2.0, |
1161
|
|
|
], |
1162
|
|
|
[ |
1163
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19938', |
1164
|
|
|
'name' => 'Estonian National Grid', |
1165
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4180', |
1166
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3301', |
1167
|
|
|
'accuracy' => 0, |
1168
|
|
|
], |
1169
|
|
|
[ |
1170
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1648', |
1171
|
|
|
'name' => 'EST97 to ETRS89 (1)', |
1172
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4180', |
1173
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1174
|
|
|
'accuracy' => 0.0, |
1175
|
|
|
], |
1176
|
|
|
[ |
1177
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19966', |
1178
|
|
|
'name' => 'Luxembourg TM', |
1179
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4181', |
1180
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2169', |
1181
|
|
|
'accuracy' => 0, |
1182
|
|
|
], |
1183
|
|
|
[ |
1184
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9937', |
1185
|
|
|
'name' => 'LUREF to ETRS89 (7)', |
1186
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4181', |
1187
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1188
|
|
|
'accuracy' => 0.0, |
1189
|
|
|
], |
1190
|
|
|
[ |
1191
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9938', |
1192
|
|
|
'name' => 'LUREF to ETRS89 (8)', |
1193
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4181', |
1194
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1195
|
|
|
'accuracy' => 0.0, |
1196
|
|
|
], |
1197
|
|
|
[ |
1198
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5034', |
1199
|
|
|
'name' => 'Azores Occidental 1939 to PTRA08 (2)', |
1200
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4182', |
1201
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5013', |
1202
|
|
|
'accuracy' => 0.2, |
1203
|
|
|
], |
1204
|
|
|
[ |
1205
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5035', |
1206
|
|
|
'name' => 'Azores Occidental 1939 to PTRA08 (3)', |
1207
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4182', |
1208
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5013', |
1209
|
|
|
'accuracy' => 0.3, |
1210
|
|
|
], |
1211
|
|
|
[ |
1212
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1886', |
1213
|
|
|
'name' => 'Azores Central 1948 to WGS 84 (1)', |
1214
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4183', |
1215
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1216
|
|
|
'accuracy' => 6.0, |
1217
|
|
|
], |
1218
|
|
|
[ |
1219
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1885', |
1220
|
|
|
'name' => 'Azores Oriental 1940 to WGS 84 (1)', |
1221
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4184', |
1222
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1223
|
|
|
'accuracy' => 44.0, |
1224
|
|
|
], |
1225
|
|
|
[ |
1226
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19973', |
1227
|
|
|
'name' => 'Irish National Grid', |
1228
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4188', |
1229
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29901', |
1230
|
|
|
'accuracy' => 0, |
1231
|
|
|
], |
1232
|
|
|
[ |
1233
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1955', |
1234
|
|
|
'name' => 'OSNI 1952 to WGS 84 (1)', |
1235
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4188', |
1236
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1237
|
|
|
'accuracy' => 1.0, |
1238
|
|
|
], |
1239
|
|
|
[ |
1240
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7833', |
1241
|
|
|
'name' => 'Albanian 1987 to ETRS89 (1)', |
1242
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4191', |
1243
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1244
|
|
|
'accuracy' => 0.2, |
1245
|
|
|
], |
1246
|
|
|
[ |
1247
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5043', |
1248
|
|
|
'name' => 'Pulkovo 1995 to WGS 84 (2)', |
1249
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4200', |
1250
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1251
|
|
|
'accuracy' => 1.0, |
1252
|
|
|
], |
1253
|
|
|
[ |
1254
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1257', |
1255
|
|
|
'name' => 'Pulkovo 1995 to PZ-90 (1)', |
1256
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4200', |
1257
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4740', |
1258
|
|
|
'accuracy' => 1.0, |
1259
|
|
|
], |
1260
|
|
|
[ |
1261
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5038', |
1262
|
|
|
'name' => 'Lisbon to ETRS89 (3)', |
1263
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4207', |
1264
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1265
|
|
|
'accuracy' => 2.5, |
1266
|
|
|
], |
1267
|
|
|
[ |
1268
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6188', |
1269
|
|
|
'name' => 'Lisbon to ETRS89 (4)', |
1270
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4207', |
1271
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1272
|
|
|
'accuracy' => 0.1, |
1273
|
|
|
], |
1274
|
|
|
[ |
1275
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1988', |
1276
|
|
|
'name' => 'Lisbon to WGS 84 (4)', |
1277
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4207', |
1278
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1279
|
|
|
'accuracy' => 2.0, |
1280
|
|
|
], |
1281
|
|
|
[ |
1282
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5020', |
1283
|
|
|
'name' => 'Portuguese Grid New', |
1284
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4207', |
1285
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5018', |
1286
|
|
|
'accuracy' => 0, |
1287
|
|
|
], |
1288
|
|
|
[ |
1289
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16400', |
1290
|
|
|
'name' => 'TM 0 N', |
1291
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1292
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23090', |
1293
|
|
|
'accuracy' => 0, |
1294
|
|
|
], |
1295
|
|
|
[ |
1296
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16405', |
1297
|
|
|
'name' => 'TM 5 NE', |
1298
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1299
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23095', |
1300
|
|
|
'accuracy' => 0, |
1301
|
|
|
], |
1302
|
|
|
[ |
1303
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1147', |
1304
|
|
|
'name' => 'ED50 to ED87 (2)', |
1305
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1306
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4231', |
1307
|
|
|
'accuracy' => 1.0, |
1308
|
|
|
], |
1309
|
|
|
[ |
1310
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15753', |
1311
|
|
|
'name' => 'ED50 to ED87 (1)', |
1312
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1313
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4231', |
1314
|
|
|
'accuracy' => 1.0, |
1315
|
|
|
], |
1316
|
|
|
[ |
1317
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1588', |
1318
|
|
|
'name' => 'ED50 to ETRS89 (1)', |
1319
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1320
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1321
|
|
|
'accuracy' => 1.0, |
1322
|
|
|
], |
1323
|
|
|
[ |
1324
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1626', |
1325
|
|
|
'name' => 'ED50 to ETRS89 (4)', |
1326
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1327
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1328
|
|
|
'accuracy' => 1.0, |
1329
|
|
|
], |
1330
|
|
|
[ |
1331
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1628', |
1332
|
|
|
'name' => 'ED50 to ETRS89 (5)', |
1333
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1334
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1335
|
|
|
'accuracy' => 1.0, |
1336
|
|
|
], |
1337
|
|
|
[ |
1338
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1630', |
1339
|
|
|
'name' => 'ED50 to ETRS89 (6)', |
1340
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1341
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1342
|
|
|
'accuracy' => 1.5, |
1343
|
|
|
], |
1344
|
|
|
[ |
1345
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1632', |
1346
|
|
|
'name' => 'ED50 to ETRS89 (7)', |
1347
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1348
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1349
|
|
|
'accuracy' => 1.5, |
1350
|
|
|
], |
1351
|
|
|
[ |
1352
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1634', |
1353
|
|
|
'name' => 'ED50 to ETRS89 (8)', |
1354
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1355
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1356
|
|
|
'accuracy' => 1.5, |
1357
|
|
|
], |
1358
|
|
|
[ |
1359
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1650', |
1360
|
|
|
'name' => 'ED50 to ETRS89 (10)', |
1361
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1362
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1363
|
|
|
'accuracy' => 2.0, |
1364
|
|
|
], |
1365
|
|
|
[ |
1366
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1783', |
1367
|
|
|
'name' => 'ED50 to ETRS89 (9)', |
1368
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1369
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1370
|
|
|
'accuracy' => 2.0, |
1371
|
|
|
], |
1372
|
|
|
[ |
1373
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5040', |
1374
|
|
|
'name' => 'ED50 to ETRS89 (13)', |
1375
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1376
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1377
|
|
|
'accuracy' => 5.0, |
1378
|
|
|
], |
1379
|
|
|
[ |
1380
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5661', |
1381
|
|
|
'name' => 'ED50 to ETRS89 (14)', |
1382
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1383
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1384
|
|
|
'accuracy' => 0.05, |
1385
|
|
|
], |
1386
|
|
|
[ |
1387
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9224', |
1388
|
|
|
'name' => 'ED50 to ETRS89 (15)', |
1389
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1390
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1391
|
|
|
'accuracy' => 1.0, |
1392
|
|
|
], |
1393
|
|
|
[ |
1394
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9408', |
1395
|
|
|
'name' => 'ED50 to ETRS89 (16)', |
1396
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1397
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1398
|
|
|
'accuracy' => 0.2, |
1399
|
|
|
], |
1400
|
|
|
[ |
1401
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9409', |
1402
|
|
|
'name' => 'ED50 to ETRS89 (17)', |
1403
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1404
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1405
|
|
|
'accuracy' => 0.2, |
1406
|
|
|
], |
1407
|
|
|
[ |
1408
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1133', |
1409
|
|
|
'name' => 'ED50 to WGS 84 (1)', |
1410
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1411
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1412
|
|
|
'accuracy' => 10.0, |
1413
|
|
|
], |
1414
|
|
|
[ |
1415
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1134', |
1416
|
|
|
'name' => 'ED50 to WGS 84 (2)', |
1417
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1418
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1419
|
|
|
'accuracy' => 6.0, |
1420
|
|
|
], |
1421
|
|
|
[ |
1422
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1136', |
1423
|
|
|
'name' => 'ED50 to WGS 84 (4)', |
1424
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1425
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1426
|
|
|
'accuracy' => 26.0, |
1427
|
|
|
], |
1428
|
|
|
[ |
1429
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1138', |
1430
|
|
|
'name' => 'ED50 to WGS 84 (6)', |
1431
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1432
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1433
|
|
|
'accuracy' => 6.0, |
1434
|
|
|
], |
1435
|
|
|
[ |
1436
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1139', |
1437
|
|
|
'name' => 'ED50 to WGS 84 (7)', |
1438
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1439
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1440
|
|
|
'accuracy' => 7.0, |
1441
|
|
|
], |
1442
|
|
|
[ |
1443
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1140', |
1444
|
|
|
'name' => 'ED50 to WGS 84 (8)', |
1445
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1446
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1447
|
|
|
'accuracy' => 44.0, |
1448
|
|
|
], |
1449
|
|
|
[ |
1450
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1142', |
1451
|
|
|
'name' => 'ED50 to WGS 84 (10)', |
1452
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1453
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1454
|
|
|
'accuracy' => 44.0, |
1455
|
|
|
], |
1456
|
|
|
[ |
1457
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1143', |
1458
|
|
|
'name' => 'ED50 to WGS 84 (11)', |
1459
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1460
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1461
|
|
|
'accuracy' => 35.0, |
1462
|
|
|
], |
1463
|
|
|
[ |
1464
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1144', |
1465
|
|
|
'name' => 'ED50 to WGS 84 (12)', |
1466
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1467
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1468
|
|
|
'accuracy' => 44.0, |
1469
|
|
|
], |
1470
|
|
|
[ |
1471
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1145', |
1472
|
|
|
'name' => 'ED50 to WGS 84 (13)', |
1473
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1474
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1475
|
|
|
'accuracy' => 9.0, |
1476
|
|
|
], |
1477
|
|
|
[ |
1478
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1311', |
1479
|
|
|
'name' => 'ED50 to WGS 84 (18)', |
1480
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1481
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1482
|
|
|
'accuracy' => 1.0, |
1483
|
|
|
], |
1484
|
|
|
[ |
1485
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1440', |
1486
|
|
|
'name' => 'ED50 to WGS 84 (19)', |
1487
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1488
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1489
|
|
|
'accuracy' => 999.0, |
1490
|
|
|
], |
1491
|
|
|
[ |
1492
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15964', |
1493
|
|
|
'name' => 'ED50 to WGS 84 (42)', |
1494
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1495
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1496
|
|
|
'accuracy' => 5.0, |
1497
|
|
|
], |
1498
|
|
|
[ |
1499
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1613', |
1500
|
|
|
'name' => 'ED50 to WGS 84 (24)', |
1501
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1502
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1503
|
|
|
'accuracy' => 1.0, |
1504
|
|
|
], |
1505
|
|
|
[ |
1506
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1853', |
1507
|
|
|
'name' => 'ED50 to WGS 84 (39)', |
1508
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1509
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1510
|
|
|
'accuracy' => 5.0, |
1511
|
|
|
], |
1512
|
|
|
[ |
1513
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1985', |
1514
|
|
|
'name' => 'ED50 to WGS 84 (33)', |
1515
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1516
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1517
|
|
|
'accuracy' => 5.0, |
1518
|
|
|
], |
1519
|
|
|
[ |
1520
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1989', |
1521
|
|
|
'name' => 'ED50 to WGS 84 (34)', |
1522
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1523
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1524
|
|
|
'accuracy' => 1.0, |
1525
|
|
|
], |
1526
|
|
|
[ |
1527
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1998', |
1528
|
|
|
'name' => 'ED50 to WGS 84 (36)', |
1529
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1530
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1531
|
|
|
'accuracy' => 1.0, |
1532
|
|
|
], |
1533
|
|
|
[ |
1534
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5642', |
1535
|
|
|
'name' => 'Southern Permian Basin Atlas Lambert', |
1536
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
1537
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5643', |
1538
|
|
|
'accuracy' => 0, |
1539
|
|
|
], |
1540
|
|
|
[ |
1541
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4078', |
1542
|
|
|
'name' => 'ED87 to ETRS89 (1)', |
1543
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4231', |
1544
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1545
|
|
|
'accuracy' => 0.3, |
1546
|
|
|
], |
1547
|
|
|
[ |
1548
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1146', |
1549
|
|
|
'name' => 'ED87 to WGS 84 (1)', |
1550
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4231', |
1551
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1552
|
|
|
'accuracy' => 0.8, |
1553
|
|
|
], |
1554
|
|
|
[ |
1555
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19931', |
1556
|
|
|
'name' => 'Egyseges Orszagos Vetuleti', |
1557
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4237', |
1558
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23700', |
1559
|
|
|
'accuracy' => 0, |
1560
|
|
|
], |
1561
|
|
|
[ |
1562
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1449', |
1563
|
|
|
'name' => 'HD72 to ETRS89 (2)', |
1564
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4237', |
1565
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1566
|
|
|
'accuracy' => 0.4, |
1567
|
|
|
], |
1568
|
|
|
[ |
1569
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10668', |
1570
|
|
|
'name' => 'HD72 to ETRF2000 (2)', |
1571
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4237', |
1572
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9067', |
1573
|
|
|
'accuracy' => 0.015, |
1574
|
|
|
], |
1575
|
|
|
[ |
1576
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10161', |
1577
|
|
|
'name' => 'ETRS89 to S34J-IRF (1)', |
1578
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1579
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10158', |
1580
|
|
|
'accuracy' => 0.03, |
1581
|
|
|
], |
1582
|
|
|
[ |
1583
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10251', |
1584
|
|
|
'name' => 'ETRS89 to S34S-IRF (1)', |
1585
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1586
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10249', |
1587
|
|
|
'accuracy' => 0.03, |
1588
|
|
|
], |
1589
|
|
|
[ |
1590
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10255', |
1591
|
|
|
'name' => 'ETRS89 to S45B-IRF (1)', |
1592
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1593
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10252', |
1594
|
|
|
'accuracy' => 0.03, |
1595
|
|
|
], |
1596
|
|
|
[ |
1597
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10259', |
1598
|
|
|
'name' => 'ETRS89 to GS-IRF (1)', |
1599
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1600
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10256', |
1601
|
|
|
'accuracy' => 0.5, |
1602
|
|
|
], |
1603
|
|
|
[ |
1604
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10263', |
1605
|
|
|
'name' => 'ETRS89 to GSB-IRF (1)', |
1606
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1607
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10260', |
1608
|
|
|
'accuracy' => 0.5, |
1609
|
|
|
], |
1610
|
|
|
[ |
1611
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10267', |
1612
|
|
|
'name' => 'ETRS89 to KK-IRF (1)', |
1613
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1614
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10265', |
1615
|
|
|
'accuracy' => 0.5, |
1616
|
|
|
], |
1617
|
|
|
[ |
1618
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10271', |
1619
|
|
|
'name' => 'ETRS89 to Ostenfeld-IRF (1)', |
1620
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1621
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10268', |
1622
|
|
|
'accuracy' => 1.0, |
1623
|
|
|
], |
1624
|
|
|
[ |
1625
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18401', |
1626
|
|
|
'name' => 'Kp2000 Jylland og Fyn', |
1627
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1628
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2196', |
1629
|
|
|
'accuracy' => 0, |
1630
|
|
|
], |
1631
|
|
|
[ |
1632
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18402', |
1633
|
|
|
'name' => 'Kp2000 Sjaelland', |
1634
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1635
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2197', |
1636
|
|
|
'accuracy' => 0, |
1637
|
|
|
], |
1638
|
|
|
[ |
1639
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18403', |
1640
|
|
|
'name' => 'Kp2000 Bornholm', |
1641
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1642
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2198', |
1643
|
|
|
'accuracy' => 0, |
1644
|
|
|
], |
1645
|
|
|
[ |
1646
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16430', |
1647
|
|
|
'name' => 'TM 30 NE', |
1648
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1649
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2213', |
1650
|
|
|
'accuracy' => 0, |
1651
|
|
|
], |
1652
|
|
|
[ |
1653
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19939', |
1654
|
|
|
'name' => 'TM Baltic 93', |
1655
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1656
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::25884', |
1657
|
|
|
'accuracy' => 0, |
1658
|
|
|
], |
1659
|
|
|
[ |
1660
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7953', |
1661
|
|
|
'name' => 'ETRS89 to OSGB36 / British National Grid (3)', |
1662
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1663
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27700', |
1664
|
|
|
'accuracy' => 0.0, |
1665
|
|
|
], |
1666
|
|
|
[ |
1667
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19985', |
1668
|
|
|
'name' => 'Europe Conformal 2001', |
1669
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1670
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3034', |
1671
|
|
|
'accuracy' => 0, |
1672
|
|
|
], |
1673
|
|
|
[ |
1674
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19986', |
1675
|
|
|
'name' => 'Europe Equal Area 2001', |
1676
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1677
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3035', |
1678
|
|
|
'accuracy' => 0, |
1679
|
|
|
], |
1680
|
|
|
[ |
1681
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16065', |
1682
|
|
|
'name' => 'TM35FIN', |
1683
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1684
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3067', |
1685
|
|
|
'accuracy' => 0, |
1686
|
|
|
], |
1687
|
|
|
[ |
1688
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19998', |
1689
|
|
|
'name' => 'Guernsey Grid', |
1690
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1691
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3108', |
1692
|
|
|
'accuracy' => 0, |
1693
|
|
|
], |
1694
|
|
|
[ |
1695
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19999', |
1696
|
|
|
'name' => 'Jersey Transverse Mercator', |
1697
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1698
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3109', |
1699
|
|
|
'accuracy' => 0, |
1700
|
|
|
], |
1701
|
|
|
[ |
1702
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18183', |
1703
|
|
|
'name' => 'Finland ETRS-GK19', |
1704
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1705
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3126', |
1706
|
|
|
'accuracy' => 0, |
1707
|
|
|
], |
1708
|
|
|
[ |
1709
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18184', |
1710
|
|
|
'name' => 'Finland ETRS-GK20', |
1711
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1712
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3127', |
1713
|
|
|
'accuracy' => 0, |
1714
|
|
|
], |
1715
|
|
|
[ |
1716
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18185', |
1717
|
|
|
'name' => 'Finland ETRS-GK21', |
1718
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1719
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3128', |
1720
|
|
|
'accuracy' => 0, |
1721
|
|
|
], |
1722
|
|
|
[ |
1723
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18186', |
1724
|
|
|
'name' => 'Finland ETRS-GK22', |
1725
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1726
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3129', |
1727
|
|
|
'accuracy' => 0, |
1728
|
|
|
], |
1729
|
|
|
[ |
1730
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18187', |
1731
|
|
|
'name' => 'Finland ETRS-GK23', |
1732
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1733
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3130', |
1734
|
|
|
'accuracy' => 0, |
1735
|
|
|
], |
1736
|
|
|
[ |
1737
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18188', |
1738
|
|
|
'name' => 'Finland ETRS-GK24', |
1739
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1740
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3131', |
1741
|
|
|
'accuracy' => 0, |
1742
|
|
|
], |
1743
|
|
|
[ |
1744
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18189', |
1745
|
|
|
'name' => 'Finland ETRS-GK25', |
1746
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1747
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3132', |
1748
|
|
|
'accuracy' => 0, |
1749
|
|
|
], |
1750
|
|
|
[ |
1751
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18190', |
1752
|
|
|
'name' => 'Finland ETRS-GK26', |
1753
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1754
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3133', |
1755
|
|
|
'accuracy' => 0, |
1756
|
|
|
], |
1757
|
|
|
[ |
1758
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18195', |
1759
|
|
|
'name' => 'Finland ETRS-GK27', |
1760
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1761
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3134', |
1762
|
|
|
'accuracy' => 0, |
1763
|
|
|
], |
1764
|
|
|
[ |
1765
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18196', |
1766
|
|
|
'name' => 'Finland ETRS-GK28', |
1767
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1768
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3135', |
1769
|
|
|
'accuracy' => 0, |
1770
|
|
|
], |
1771
|
|
|
[ |
1772
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18197', |
1773
|
|
|
'name' => 'Finland ETRS-GK29', |
1774
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1775
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3136', |
1776
|
|
|
'accuracy' => 0, |
1777
|
|
|
], |
1778
|
|
|
[ |
1779
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18198', |
1780
|
|
|
'name' => 'Finland ETRS-GK30', |
1781
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1782
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3137', |
1783
|
|
|
'accuracy' => 0, |
1784
|
|
|
], |
1785
|
|
|
[ |
1786
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18199', |
1787
|
|
|
'name' => 'Finland ETRS-GK31', |
1788
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1789
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3138', |
1790
|
|
|
'accuracy' => 0, |
1791
|
|
|
], |
1792
|
|
|
[ |
1793
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19870', |
1794
|
|
|
'name' => 'Faroe Lambert', |
1795
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1796
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3145', |
1797
|
|
|
'accuracy' => 0, |
1798
|
|
|
], |
1799
|
|
|
[ |
1800
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19947', |
1801
|
|
|
'name' => 'Austria Lambert', |
1802
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1803
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3416', |
1804
|
|
|
'accuracy' => 0, |
1805
|
|
|
], |
1806
|
|
|
[ |
1807
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19862', |
1808
|
|
|
'name' => 'Belgian Lambert 2005', |
1809
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1810
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3447', |
1811
|
|
|
'accuracy' => 0, |
1812
|
|
|
], |
1813
|
|
|
[ |
1814
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19853', |
1815
|
|
|
'name' => 'Portugual TM06', |
1816
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1817
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3763', |
1818
|
|
|
'accuracy' => 0, |
1819
|
|
|
], |
1820
|
|
|
[ |
1821
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3811', |
1822
|
|
|
'name' => 'Belgian Lambert 2008', |
1823
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1824
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3812', |
1825
|
|
|
'accuracy' => 0, |
1826
|
|
|
], |
1827
|
|
|
[ |
1828
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3860', |
1829
|
|
|
'name' => 'Finland Gauss-Kruger zone 19', |
1830
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1831
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3873', |
1832
|
|
|
'accuracy' => 0, |
1833
|
|
|
], |
1834
|
|
|
[ |
1835
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3861', |
1836
|
|
|
'name' => 'Finland Gauss-Kruger zone 20', |
1837
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1838
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3874', |
1839
|
|
|
'accuracy' => 0, |
1840
|
|
|
], |
1841
|
|
|
[ |
1842
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3862', |
1843
|
|
|
'name' => 'Finland Gauss-Kruger zone 21', |
1844
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1845
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3875', |
1846
|
|
|
'accuracy' => 0, |
1847
|
|
|
], |
1848
|
|
|
[ |
1849
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3863', |
1850
|
|
|
'name' => 'Finland Gauss-Kruger zone 22', |
1851
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1852
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3876', |
1853
|
|
|
'accuracy' => 0, |
1854
|
|
|
], |
1855
|
|
|
[ |
1856
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3864', |
1857
|
|
|
'name' => 'Finland Gauss-Kruger zone 23', |
1858
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1859
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3877', |
1860
|
|
|
'accuracy' => 0, |
1861
|
|
|
], |
1862
|
|
|
[ |
1863
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3865', |
1864
|
|
|
'name' => 'Finland Gauss-Kruger zone 24', |
1865
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1866
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3878', |
1867
|
|
|
'accuracy' => 0, |
1868
|
|
|
], |
1869
|
|
|
[ |
1870
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3866', |
1871
|
|
|
'name' => 'Finland Gauss-Kruger zone 25', |
1872
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1873
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3879', |
1874
|
|
|
'accuracy' => 0, |
1875
|
|
|
], |
1876
|
|
|
[ |
1877
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3867', |
1878
|
|
|
'name' => 'Finland Gauss-Kruger zone 26', |
1879
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1880
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3880', |
1881
|
|
|
'accuracy' => 0, |
1882
|
|
|
], |
1883
|
|
|
[ |
1884
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3868', |
1885
|
|
|
'name' => 'Finland Gauss-Kruger zone 27', |
1886
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1887
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3881', |
1888
|
|
|
'accuracy' => 0, |
1889
|
|
|
], |
1890
|
|
|
[ |
1891
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3869', |
1892
|
|
|
'name' => 'Finland Gauss-Kruger zone 28', |
1893
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1894
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3882', |
1895
|
|
|
'accuracy' => 0, |
1896
|
|
|
], |
1897
|
|
|
[ |
1898
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3870', |
1899
|
|
|
'name' => 'Finland Gauss-Kruger zone 29', |
1900
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1901
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3883', |
1902
|
|
|
'accuracy' => 0, |
1903
|
|
|
], |
1904
|
|
|
[ |
1905
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3871', |
1906
|
|
|
'name' => 'Finland Gauss-Kruger zone 30', |
1907
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1908
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3884', |
1909
|
|
|
'accuracy' => 0, |
1910
|
|
|
], |
1911
|
|
|
[ |
1912
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3872', |
1913
|
|
|
'name' => 'Finland Gauss-Kruger zone 31', |
1914
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1915
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3885', |
1916
|
|
|
'accuracy' => 0, |
1917
|
|
|
], |
1918
|
|
|
[ |
1919
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4089', |
1920
|
|
|
'name' => 'DKTM1', |
1921
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1922
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4093', |
1923
|
|
|
'accuracy' => 0, |
1924
|
|
|
], |
1925
|
|
|
[ |
1926
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4090', |
1927
|
|
|
'name' => 'DKTM2', |
1928
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1929
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4094', |
1930
|
|
|
'accuracy' => 0, |
1931
|
|
|
], |
1932
|
|
|
[ |
1933
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4091', |
1934
|
|
|
'name' => 'DKTM3', |
1935
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1936
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4095', |
1937
|
|
|
'accuracy' => 0, |
1938
|
|
|
], |
1939
|
|
|
[ |
1940
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4092', |
1941
|
|
|
'name' => 'DKTM4', |
1942
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1943
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4096', |
1944
|
|
|
'accuracy' => 0, |
1945
|
|
|
], |
1946
|
|
|
[ |
1947
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1149', |
1948
|
|
|
'name' => 'ETRS89 to WGS 84 (1)', |
1949
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1950
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1951
|
|
|
'accuracy' => 1.0, |
1952
|
|
|
], |
1953
|
|
|
[ |
1954
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4648', |
1955
|
|
|
'name' => 'UTM zone 32N with prefix', |
1956
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1957
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4647', |
1958
|
|
|
'accuracy' => 0, |
1959
|
|
|
], |
1960
|
|
|
[ |
1961
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4838', |
1962
|
|
|
'name' => 'LCC Germany', |
1963
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1964
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4839', |
1965
|
|
|
'accuracy' => 0, |
1966
|
|
|
], |
1967
|
|
|
[ |
1968
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16065', |
1969
|
|
|
'name' => 'TM35FIN', |
1970
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1971
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5048', |
1972
|
|
|
'accuracy' => 0, |
1973
|
|
|
], |
1974
|
|
|
[ |
1975
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5135', |
1976
|
|
|
'name' => 'Norway TM zone 5', |
1977
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1978
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5105', |
1979
|
|
|
'accuracy' => 0, |
1980
|
|
|
], |
1981
|
|
|
[ |
1982
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5136', |
1983
|
|
|
'name' => 'Norway TM zone 6', |
1984
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1985
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5106', |
1986
|
|
|
'accuracy' => 0, |
1987
|
|
|
], |
1988
|
|
|
[ |
1989
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5137', |
1990
|
|
|
'name' => 'Norway TM zone 7', |
1991
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1992
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5107', |
1993
|
|
|
'accuracy' => 0, |
1994
|
|
|
], |
1995
|
|
|
[ |
1996
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5138', |
1997
|
|
|
'name' => 'Norway TM zone 8', |
1998
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
1999
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5108', |
2000
|
|
|
'accuracy' => 0, |
2001
|
|
|
], |
2002
|
|
|
[ |
2003
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5139', |
2004
|
|
|
'name' => 'Norway TM zone 9', |
2005
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2006
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5109', |
2007
|
|
|
'accuracy' => 0, |
2008
|
|
|
], |
2009
|
|
|
[ |
2010
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5140', |
2011
|
|
|
'name' => 'Norway TM zone 10', |
2012
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2013
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5110', |
2014
|
|
|
'accuracy' => 0, |
2015
|
|
|
], |
2016
|
|
|
[ |
2017
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5141', |
2018
|
|
|
'name' => 'Norway TM zone 11', |
2019
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2020
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5111', |
2021
|
|
|
'accuracy' => 0, |
2022
|
|
|
], |
2023
|
|
|
[ |
2024
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5142', |
2025
|
|
|
'name' => 'Norway TM zone 12', |
2026
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2027
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5112', |
2028
|
|
|
'accuracy' => 0, |
2029
|
|
|
], |
2030
|
|
|
[ |
2031
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5143', |
2032
|
|
|
'name' => 'Norway TM zone 13', |
2033
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2034
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5113', |
2035
|
|
|
'accuracy' => 0, |
2036
|
|
|
], |
2037
|
|
|
[ |
2038
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5144', |
2039
|
|
|
'name' => 'Norway TM zone 14', |
2040
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2041
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5114', |
2042
|
|
|
'accuracy' => 0, |
2043
|
|
|
], |
2044
|
|
|
[ |
2045
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5145', |
2046
|
|
|
'name' => 'Norway TM zone 15', |
2047
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2048
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5115', |
2049
|
|
|
'accuracy' => 0, |
2050
|
|
|
], |
2051
|
|
|
[ |
2052
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5146', |
2053
|
|
|
'name' => 'Norway TM zone 16', |
2054
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2055
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5116', |
2056
|
|
|
'accuracy' => 0, |
2057
|
|
|
], |
2058
|
|
|
[ |
2059
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5147', |
2060
|
|
|
'name' => 'Norway TM zone 17', |
2061
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2062
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5117', |
2063
|
|
|
'accuracy' => 0, |
2064
|
|
|
], |
2065
|
|
|
[ |
2066
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5148', |
2067
|
|
|
'name' => 'Norway TM zone 18', |
2068
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2069
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5118', |
2070
|
|
|
'accuracy' => 0, |
2071
|
|
|
], |
2072
|
|
|
[ |
2073
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5149', |
2074
|
|
|
'name' => 'Norway TM zone 19', |
2075
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2076
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5119', |
2077
|
|
|
'accuracy' => 0, |
2078
|
|
|
], |
2079
|
|
|
[ |
2080
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5150', |
2081
|
|
|
'name' => 'Norway TM zone 20', |
2082
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2083
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5120', |
2084
|
|
|
'accuracy' => 0, |
2085
|
|
|
], |
2086
|
|
|
[ |
2087
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5151', |
2088
|
|
|
'name' => 'Norway TM zone 21', |
2089
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2090
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5121', |
2091
|
|
|
'accuracy' => 0, |
2092
|
|
|
], |
2093
|
|
|
[ |
2094
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5152', |
2095
|
|
|
'name' => 'Norway TM zone 22', |
2096
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2097
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5122', |
2098
|
|
|
'accuracy' => 0, |
2099
|
|
|
], |
2100
|
|
|
[ |
2101
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5153', |
2102
|
|
|
'name' => 'Norway TM zone 23', |
2103
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2104
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5123', |
2105
|
|
|
'accuracy' => 0, |
2106
|
|
|
], |
2107
|
|
|
[ |
2108
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5154', |
2109
|
|
|
'name' => 'Norway TM zone 24', |
2110
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2111
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5124', |
2112
|
|
|
'accuracy' => 0, |
2113
|
|
|
], |
2114
|
|
|
[ |
2115
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5155', |
2116
|
|
|
'name' => 'Norway TM zone 25', |
2117
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2118
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5125', |
2119
|
|
|
'accuracy' => 0, |
2120
|
|
|
], |
2121
|
|
|
[ |
2122
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5156', |
2123
|
|
|
'name' => 'Norway TM zone 26', |
2124
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2125
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5126', |
2126
|
|
|
'accuracy' => 0, |
2127
|
|
|
], |
2128
|
|
|
[ |
2129
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5157', |
2130
|
|
|
'name' => 'Norway TM zone 27', |
2131
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2132
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5127', |
2133
|
|
|
'accuracy' => 0, |
2134
|
|
|
], |
2135
|
|
|
[ |
2136
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5158', |
2137
|
|
|
'name' => 'Norway TM zone 28', |
2138
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2139
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5128', |
2140
|
|
|
'accuracy' => 0, |
2141
|
|
|
], |
2142
|
|
|
[ |
2143
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5159', |
2144
|
|
|
'name' => 'Norway TM zone 29', |
2145
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2146
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5129', |
2147
|
|
|
'accuracy' => 0, |
2148
|
|
|
], |
2149
|
|
|
[ |
2150
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5160', |
2151
|
|
|
'name' => 'Norway TM zone 30', |
2152
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2153
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5130', |
2154
|
|
|
'accuracy' => 0, |
2155
|
|
|
], |
2156
|
|
|
[ |
2157
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4838', |
2158
|
|
|
'name' => 'LCC Germany', |
2159
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2160
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5243', |
2161
|
|
|
'accuracy' => 0, |
2162
|
|
|
], |
2163
|
|
|
[ |
2164
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5315', |
2165
|
|
|
'name' => 'Faroe Transverse Mercator', |
2166
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2167
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5316', |
2168
|
|
|
'accuracy' => 0, |
2169
|
|
|
], |
2170
|
|
|
[ |
2171
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5647', |
2172
|
|
|
'name' => 'UTM zone 31N with prefix', |
2173
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2174
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5649', |
2175
|
|
|
'accuracy' => 0, |
2176
|
|
|
], |
2177
|
|
|
[ |
2178
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5648', |
2179
|
|
|
'name' => 'UTM zone 33N with prefix', |
2180
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2181
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5650', |
2182
|
|
|
'accuracy' => 0, |
2183
|
|
|
], |
2184
|
|
|
[ |
2185
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5647', |
2186
|
|
|
'name' => 'UTM zone 31N with prefix', |
2187
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2188
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5651', |
2189
|
|
|
'accuracy' => 0, |
2190
|
|
|
], |
2191
|
|
|
[ |
2192
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4648', |
2193
|
|
|
'name' => 'UTM zone 32N with prefix', |
2194
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2195
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5652', |
2196
|
|
|
'accuracy' => 0, |
2197
|
|
|
], |
2198
|
|
|
[ |
2199
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5648', |
2200
|
|
|
'name' => 'UTM zone 33N with prefix', |
2201
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2202
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5653', |
2203
|
|
|
'accuracy' => 0, |
2204
|
|
|
], |
2205
|
|
|
[ |
2206
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6869', |
2207
|
|
|
'name' => 'Albania TM 2010', |
2208
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2209
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6870', |
2210
|
|
|
'accuracy' => 0, |
2211
|
|
|
], |
2212
|
|
|
[ |
2213
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6961', |
2214
|
|
|
'name' => 'Albania LCC 2010', |
2215
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2216
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6962', |
2217
|
|
|
'accuracy' => 0, |
2218
|
|
|
], |
2219
|
|
|
[ |
2220
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::32776', |
2221
|
|
|
'name' => 'ETRS89 to ETRF2000 (geog2D to geocen)', |
2222
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2223
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7930', |
2224
|
|
|
'accuracy' => 0.0, |
2225
|
|
|
], |
2226
|
|
|
[ |
2227
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8365', |
2228
|
|
|
'name' => 'ETRS89 to S-JTSK [JTSK03] (1)', |
2229
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2230
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8351', |
2231
|
|
|
'accuracy' => 0.001, |
2232
|
|
|
], |
2233
|
|
|
[ |
2234
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::32774', |
2235
|
|
|
'name' => 'ETRS89 to ETRF2000 (geog2D)', |
2236
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2237
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9067', |
2238
|
|
|
'accuracy' => 0.0, |
2239
|
|
|
], |
2240
|
|
|
[ |
2241
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18121', |
2242
|
|
|
'name' => 'Italy zone 1', |
2243
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4265', |
2244
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3003', |
2245
|
|
|
'accuracy' => 0, |
2246
|
|
|
], |
2247
|
|
|
[ |
2248
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18122', |
2249
|
|
|
'name' => 'Italy zone 2', |
2250
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4265', |
2251
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3004', |
2252
|
|
|
'accuracy' => 0, |
2253
|
|
|
], |
2254
|
|
|
[ |
2255
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1659', |
2256
|
|
|
'name' => 'Monte Mario to ETRS89 (1)', |
2257
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4265', |
2258
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2259
|
|
|
'accuracy' => 4.0, |
2260
|
|
|
], |
2261
|
|
|
[ |
2262
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1661', |
2263
|
|
|
'name' => 'Monte Mario to ETRS89 (2)', |
2264
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4265', |
2265
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2266
|
|
|
'accuracy' => 4.0, |
2267
|
|
|
], |
2268
|
|
|
[ |
2269
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1663', |
2270
|
|
|
'name' => 'Monte Mario to ETRS89 (3)', |
2271
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4265', |
2272
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2273
|
|
|
'accuracy' => 4.0, |
2274
|
|
|
], |
2275
|
|
|
[ |
2276
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5658', |
2277
|
|
|
'name' => 'TM Emilia-Romagna', |
2278
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4265', |
2279
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5659', |
2280
|
|
|
'accuracy' => 0, |
2281
|
|
|
], |
2282
|
|
|
[ |
2283
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1653', |
2284
|
|
|
'name' => 'NGO 1948 to ETRS89 (1)', |
2285
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4273', |
2286
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2287
|
|
|
'accuracy' => 3.0, |
2288
|
|
|
], |
2289
|
|
|
[ |
2290
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19974', |
2291
|
|
|
'name' => 'Modified Portuguese Grid', |
2292
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4274', |
2293
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27493', |
2294
|
|
|
'accuracy' => 0, |
2295
|
|
|
], |
2296
|
|
|
[ |
2297
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5037', |
2298
|
|
|
'name' => 'Datum 73 to ETRS89 (5)', |
2299
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4274', |
2300
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2301
|
|
|
'accuracy' => 2.0, |
2302
|
|
|
], |
2303
|
|
|
[ |
2304
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6189', |
2305
|
|
|
'name' => 'Datum 73 to ETRS89 (6)', |
2306
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4274', |
2307
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2308
|
|
|
'accuracy' => 0.1, |
2309
|
|
|
], |
2310
|
|
|
[ |
2311
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1987', |
2312
|
|
|
'name' => 'Datum 73 to WGS 84 (4)', |
2313
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4274', |
2314
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2315
|
|
|
'accuracy' => 1.0, |
2316
|
|
|
], |
2317
|
|
|
[ |
2318
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9327', |
2319
|
|
|
'name' => 'NTF to RGF93 v1 (1)', |
2320
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4275', |
2321
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4171', |
2322
|
|
|
'accuracy' => 1.0, |
2323
|
|
|
], |
2324
|
|
|
[ |
2325
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1276', |
2326
|
|
|
'name' => 'NTF to ED50 (1)', |
2327
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4275', |
2328
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4230', |
2329
|
|
|
'accuracy' => 2.0, |
2330
|
|
|
], |
2331
|
|
|
[ |
2332
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1651', |
2333
|
|
|
'name' => 'NTF to ETRS89 (1)', |
2334
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4275', |
2335
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2336
|
|
|
'accuracy' => 2.0, |
2337
|
|
|
], |
2338
|
|
|
[ |
2339
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9888', |
2340
|
|
|
'name' => 'NTF to RGF93 v2 (1)', |
2341
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4275', |
2342
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9777', |
2343
|
|
|
'accuracy' => 1.0, |
2344
|
|
|
], |
2345
|
|
|
[ |
2346
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9889', |
2347
|
|
|
'name' => 'NTF to RGF93 v2b (1)', |
2348
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4275', |
2349
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9782', |
2350
|
|
|
'accuracy' => 1.0, |
2351
|
|
|
], |
2352
|
|
|
[ |
2353
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19916', |
2354
|
|
|
'name' => 'British National Grid', |
2355
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4277', |
2356
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27700', |
2357
|
|
|
'accuracy' => 0, |
2358
|
|
|
], |
2359
|
|
|
[ |
2360
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1314', |
2361
|
|
|
'name' => 'OSGB36 to WGS 84 (6)', |
2362
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4277', |
2363
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2364
|
|
|
'accuracy' => 2.0, |
2365
|
|
|
], |
2366
|
|
|
[ |
2367
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18441', |
2368
|
|
|
'name' => 'CS63 zone A1', |
2369
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2370
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2935', |
2371
|
|
|
'accuracy' => 0, |
2372
|
|
|
], |
2373
|
|
|
[ |
2374
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18442', |
2375
|
|
|
'name' => 'CS63 zone A2', |
2376
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2377
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2936', |
2378
|
|
|
'accuracy' => 0, |
2379
|
|
|
], |
2380
|
|
|
[ |
2381
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18443', |
2382
|
|
|
'name' => 'CS63 zone A3', |
2383
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2384
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2937', |
2385
|
|
|
'accuracy' => 0, |
2386
|
|
|
], |
2387
|
|
|
[ |
2388
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18444', |
2389
|
|
|
'name' => 'CS63 zone A4', |
2390
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2391
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2938', |
2392
|
|
|
'accuracy' => 0, |
2393
|
|
|
], |
2394
|
|
|
[ |
2395
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18446', |
2396
|
|
|
'name' => 'CS63 zone K2', |
2397
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2398
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2939', |
2399
|
|
|
'accuracy' => 0, |
2400
|
|
|
], |
2401
|
|
|
[ |
2402
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18447', |
2403
|
|
|
'name' => 'CS63 zone K3', |
2404
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2405
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2940', |
2406
|
|
|
'accuracy' => 0, |
2407
|
|
|
], |
2408
|
|
|
[ |
2409
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18448', |
2410
|
|
|
'name' => 'CS63 zone K4', |
2411
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2412
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2941', |
2413
|
|
|
'accuracy' => 0, |
2414
|
|
|
], |
2415
|
|
|
[ |
2416
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18450', |
2417
|
|
|
'name' => 'CS63 zone C0', |
2418
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2419
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3350', |
2420
|
|
|
'accuracy' => 0, |
2421
|
|
|
], |
2422
|
|
|
[ |
2423
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18451', |
2424
|
|
|
'name' => 'CS63 zone C1', |
2425
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2426
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3351', |
2427
|
|
|
'accuracy' => 0, |
2428
|
|
|
], |
2429
|
|
|
[ |
2430
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18452', |
2431
|
|
|
'name' => 'CS63 zone C2', |
2432
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2433
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3352', |
2434
|
|
|
'accuracy' => 0, |
2435
|
|
|
], |
2436
|
|
|
[ |
2437
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19884', |
2438
|
|
|
'name' => 'Caspian Sea Mercator', |
2439
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2440
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3388', |
2441
|
|
|
'accuracy' => 0, |
2442
|
|
|
], |
2443
|
|
|
[ |
2444
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1332', |
2445
|
|
|
'name' => 'Pulkovo 1942 to EST92 (1)', |
2446
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2447
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4133', |
2448
|
|
|
'accuracy' => 9.0, |
2449
|
|
|
], |
2450
|
|
|
[ |
2451
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1254', |
2452
|
|
|
'name' => 'Pulkovo 1942 to WGS 84 (1)', |
2453
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2454
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2455
|
|
|
'accuracy' => 999.0, |
2456
|
|
|
], |
2457
|
|
|
[ |
2458
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1290', |
2459
|
|
|
'name' => 'Pulkovo 1942 to WGS 84 (6)', |
2460
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2461
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2462
|
|
|
'accuracy' => 4.0, |
2463
|
|
|
], |
2464
|
|
|
[ |
2465
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1291', |
2466
|
|
|
'name' => 'Pulkovo 1942 to WGS 84 (7)', |
2467
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2468
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2469
|
|
|
'accuracy' => 44.0, |
2470
|
|
|
], |
2471
|
|
|
[ |
2472
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1303', |
2473
|
|
|
'name' => 'Pulkovo 1942 to WGS 84 (10)', |
2474
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2475
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2476
|
|
|
'accuracy' => 2.0, |
2477
|
|
|
], |
2478
|
|
|
[ |
2479
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1334', |
2480
|
|
|
'name' => 'Pulkovo 1942 to WGS 84 (12)', |
2481
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2482
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2483
|
|
|
'accuracy' => 9.0, |
2484
|
|
|
], |
2485
|
|
|
[ |
2486
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15865', |
2487
|
|
|
'name' => 'Pulkovo 1942 to WGS 84 (16)', |
2488
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2489
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2490
|
|
|
'accuracy' => 4.5, |
2491
|
|
|
], |
2492
|
|
|
[ |
2493
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1808', |
2494
|
|
|
'name' => 'Pulkovo 1942 to WGS 84 (14)', |
2495
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2496
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2497
|
|
|
'accuracy' => 5.0, |
2498
|
|
|
], |
2499
|
|
|
[ |
2500
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1809', |
2501
|
|
|
'name' => 'Pulkovo 1942 to WGS 84 (15)', |
2502
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2503
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2504
|
|
|
'accuracy' => 2.0, |
2505
|
|
|
], |
2506
|
|
|
[ |
2507
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5044', |
2508
|
|
|
'name' => 'Pulkovo 1942 to WGS 84 (20)', |
2509
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2510
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2511
|
|
|
'accuracy' => 3.0, |
2512
|
|
|
], |
2513
|
|
|
[ |
2514
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6899', |
2515
|
|
|
'name' => 'Pulkovo 1942 to WGS 84 (21)', |
2516
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2517
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2518
|
|
|
'accuracy' => 5.0, |
2519
|
|
|
], |
2520
|
|
|
[ |
2521
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1274', |
2522
|
|
|
'name' => 'Pulkovo 1942 to LKS94 (1)', |
2523
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2524
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4669', |
2525
|
|
|
'accuracy' => 9.0, |
2526
|
|
|
], |
2527
|
|
|
[ |
2528
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15844', |
2529
|
|
|
'name' => 'Pulkovo 1942 to PZ-90 (1)', |
2530
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2531
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4740', |
2532
|
|
|
'accuracy' => 4.0, |
2533
|
|
|
], |
2534
|
|
|
[ |
2535
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5586', |
2536
|
|
|
'name' => 'Pulkovo 1942 to UCS-2000 (1)', |
2537
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2538
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5561', |
2539
|
|
|
'accuracy' => 3.5, |
2540
|
|
|
], |
2541
|
|
|
[ |
2542
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7818', |
2543
|
|
|
'name' => 'CS63 zone X1', |
2544
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2545
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7825', |
2546
|
|
|
'accuracy' => 0, |
2547
|
|
|
], |
2548
|
|
|
[ |
2549
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7819', |
2550
|
|
|
'name' => 'CS63 zone X2', |
2551
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2552
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7826', |
2553
|
|
|
'accuracy' => 0, |
2554
|
|
|
], |
2555
|
|
|
[ |
2556
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7820', |
2557
|
|
|
'name' => 'CS63 zone X3', |
2558
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2559
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7827', |
2560
|
|
|
'accuracy' => 0, |
2561
|
|
|
], |
2562
|
|
|
[ |
2563
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7821', |
2564
|
|
|
'name' => 'CS63 zone X4', |
2565
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2566
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7828', |
2567
|
|
|
'accuracy' => 0, |
2568
|
|
|
], |
2569
|
|
|
[ |
2570
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7822', |
2571
|
|
|
'name' => 'CS63 zone X5', |
2572
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2573
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7829', |
2574
|
|
|
'accuracy' => 0, |
2575
|
|
|
], |
2576
|
|
|
[ |
2577
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7823', |
2578
|
|
|
'name' => 'CS63 zone X6', |
2579
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2580
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7830', |
2581
|
|
|
'accuracy' => 0, |
2582
|
|
|
], |
2583
|
|
|
[ |
2584
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7824', |
2585
|
|
|
'name' => 'CS63 zone X7', |
2586
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4284', |
2587
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7831', |
2588
|
|
|
'accuracy' => 0, |
2589
|
|
|
], |
2590
|
|
|
[ |
2591
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19913', |
2592
|
|
|
'name' => 'RD Old', |
2593
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4289', |
2594
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::28991', |
2595
|
|
|
'accuracy' => 0, |
2596
|
|
|
], |
2597
|
|
|
[ |
2598
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19914', |
2599
|
|
|
'name' => 'RD New', |
2600
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4289', |
2601
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::28992', |
2602
|
|
|
'accuracy' => 0, |
2603
|
|
|
], |
2604
|
|
|
[ |
2605
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9281', |
2606
|
|
|
'name' => 'Amersfoort to ETRS89 (8)', |
2607
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4289', |
2608
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2609
|
|
|
'accuracy' => 0.25, |
2610
|
|
|
], |
2611
|
|
|
[ |
2612
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9282', |
2613
|
|
|
'name' => 'Amersfoort to ETRS89 (9)', |
2614
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4289', |
2615
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2616
|
|
|
'accuracy' => 0.0, |
2617
|
|
|
], |
2618
|
|
|
[ |
2619
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19972', |
2620
|
|
|
'name' => 'Irish Grid', |
2621
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4299', |
2622
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29902', |
2623
|
|
|
'accuracy' => 0, |
2624
|
|
|
], |
2625
|
|
|
[ |
2626
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19972', |
2627
|
|
|
'name' => 'Irish Grid', |
2628
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4300', |
2629
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29903', |
2630
|
|
|
'accuracy' => 0, |
2631
|
|
|
], |
2632
|
|
|
[ |
2633
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1041', |
2634
|
|
|
'name' => 'TM75 to ETRS89 (1)', |
2635
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4300', |
2636
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2637
|
|
|
'accuracy' => 0.4, |
2638
|
|
|
], |
2639
|
|
|
[ |
2640
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1953', |
2641
|
|
|
'name' => 'TM75 to ETRS89 (2)', |
2642
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4300', |
2643
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2644
|
|
|
'accuracy' => 1.0, |
2645
|
|
|
], |
2646
|
|
|
[ |
2647
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17334', |
2648
|
|
|
'name' => 'Sweden zone 7.5 gon V', |
2649
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4308', |
2650
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3025', |
2651
|
|
|
'accuracy' => 0, |
2652
|
|
|
], |
2653
|
|
|
[ |
2654
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17335', |
2655
|
|
|
'name' => 'Sweden zone 5 gon V', |
2656
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4308', |
2657
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3026', |
2658
|
|
|
'accuracy' => 0, |
2659
|
|
|
], |
2660
|
|
|
[ |
2661
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19929', |
2662
|
|
|
'name' => 'Sweden zone 2.5 gon V', |
2663
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4308', |
2664
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3027', |
2665
|
|
|
'accuracy' => 0, |
2666
|
|
|
], |
2667
|
|
|
[ |
2668
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17336', |
2669
|
|
|
'name' => 'Sweden zone 0 gon', |
2670
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4308', |
2671
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3028', |
2672
|
|
|
'accuracy' => 0, |
2673
|
|
|
], |
2674
|
|
|
[ |
2675
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17337', |
2676
|
|
|
'name' => 'Sweden zone 2.5 gon O', |
2677
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4308', |
2678
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3029', |
2679
|
|
|
'accuracy' => 0, |
2680
|
|
|
], |
2681
|
|
|
[ |
2682
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17338', |
2683
|
|
|
'name' => 'Sweden zone 5 gon O', |
2684
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4308', |
2685
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3030', |
2686
|
|
|
'accuracy' => 0, |
2687
|
|
|
], |
2688
|
|
|
[ |
2689
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18004', |
2690
|
|
|
'name' => 'Austria Gauss-Kruger West', |
2691
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4312', |
2692
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31254', |
2693
|
|
|
'accuracy' => 0, |
2694
|
|
|
], |
2695
|
|
|
[ |
2696
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18005', |
2697
|
|
|
'name' => 'Austria Gauss-Kruger Central', |
2698
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4312', |
2699
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31255', |
2700
|
|
|
'accuracy' => 0, |
2701
|
|
|
], |
2702
|
|
|
[ |
2703
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18006', |
2704
|
|
|
'name' => 'Austria Gauss-Kruger East', |
2705
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4312', |
2706
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31256', |
2707
|
|
|
'accuracy' => 0, |
2708
|
|
|
], |
2709
|
|
|
[ |
2710
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18007', |
2711
|
|
|
'name' => 'Austria Gauss-Kruger M28', |
2712
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4312', |
2713
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31257', |
2714
|
|
|
'accuracy' => 0, |
2715
|
|
|
], |
2716
|
|
|
[ |
2717
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18008', |
2718
|
|
|
'name' => 'Austria Gauss-Kruger M31', |
2719
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4312', |
2720
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31258', |
2721
|
|
|
'accuracy' => 0, |
2722
|
|
|
], |
2723
|
|
|
[ |
2724
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18009', |
2725
|
|
|
'name' => 'Austria Gauss-Kruger M34', |
2726
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4312', |
2727
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31259', |
2728
|
|
|
'accuracy' => 0, |
2729
|
|
|
], |
2730
|
|
|
[ |
2731
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18044', |
2732
|
|
|
'name' => 'Austria M28', |
2733
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4312', |
2734
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31284', |
2735
|
|
|
'accuracy' => 0, |
2736
|
|
|
], |
2737
|
|
|
[ |
2738
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18045', |
2739
|
|
|
'name' => 'Austria M31', |
2740
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4312', |
2741
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31285', |
2742
|
|
|
'accuracy' => 0, |
2743
|
|
|
], |
2744
|
|
|
[ |
2745
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18046', |
2746
|
|
|
'name' => 'Austria M34', |
2747
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4312', |
2748
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31286', |
2749
|
|
|
'accuracy' => 0, |
2750
|
|
|
], |
2751
|
|
|
[ |
2752
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19947', |
2753
|
|
|
'name' => 'Austria Lambert', |
2754
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4312', |
2755
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31287', |
2756
|
|
|
'accuracy' => 0, |
2757
|
|
|
], |
2758
|
|
|
[ |
2759
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1619', |
2760
|
|
|
'name' => 'MGI to ETRS89 (1)', |
2761
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4312', |
2762
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2763
|
|
|
'accuracy' => 1.5, |
2764
|
|
|
], |
2765
|
|
|
[ |
2766
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9910', |
2767
|
|
|
'name' => 'MGI to ETRS89 (8)', |
2768
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4312', |
2769
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2770
|
|
|
'accuracy' => 0.14, |
2771
|
|
|
], |
2772
|
|
|
[ |
2773
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1194', |
2774
|
|
|
'name' => 'MGI to WGS 84 (8)', |
2775
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4312', |
2776
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2777
|
|
|
'accuracy' => 0.5, |
2778
|
|
|
], |
2779
|
|
|
[ |
2780
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9268', |
2781
|
|
|
'name' => 'Austria West', |
2782
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4312', |
2783
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9271', |
2784
|
|
|
'accuracy' => 0, |
2785
|
|
|
], |
2786
|
|
|
[ |
2787
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9269', |
2788
|
|
|
'name' => 'Austria Central', |
2789
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4312', |
2790
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9272', |
2791
|
|
|
'accuracy' => 0, |
2792
|
|
|
], |
2793
|
|
|
[ |
2794
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9270', |
2795
|
|
|
'name' => 'Austria East', |
2796
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4312', |
2797
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9273', |
2798
|
|
|
'accuracy' => 0, |
2799
|
|
|
], |
2800
|
|
|
[ |
2801
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19902', |
2802
|
|
|
'name' => 'Belge Lambert 72', |
2803
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4313', |
2804
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31300', |
2805
|
|
|
'accuracy' => 0, |
2806
|
|
|
], |
2807
|
|
|
[ |
2808
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19961', |
2809
|
|
|
'name' => 'Belgian Lambert 72', |
2810
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4313', |
2811
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31370', |
2812
|
|
|
'accuracy' => 0, |
2813
|
|
|
], |
2814
|
|
|
[ |
2815
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15928', |
2816
|
|
|
'name' => 'BD72 to ETRS89 (2)', |
2817
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4313', |
2818
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2819
|
|
|
'accuracy' => 0.2, |
2820
|
|
|
], |
2821
|
|
|
[ |
2822
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8369', |
2823
|
|
|
'name' => 'BD72 to ETRS89 (3)', |
2824
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4313', |
2825
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2826
|
|
|
'accuracy' => 0.01, |
2827
|
|
|
], |
2828
|
|
|
[ |
2829
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1610', |
2830
|
|
|
'name' => 'BD72 to WGS 84 (2)', |
2831
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4313', |
2832
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2833
|
|
|
'accuracy' => 5.0, |
2834
|
|
|
], |
2835
|
|
|
[ |
2836
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19996', |
2837
|
|
|
'name' => 'Soldner Berlin', |
2838
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4314', |
2839
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3068', |
2840
|
|
|
'accuracy' => 0, |
2841
|
|
|
], |
2842
|
|
|
[ |
2843
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15948', |
2844
|
|
|
'name' => 'DHDN to ETRS89 (8)', |
2845
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4314', |
2846
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2847
|
|
|
'accuracy' => 0.9, |
2848
|
|
|
], |
2849
|
|
|
[ |
2850
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1778', |
2851
|
|
|
'name' => 'DHDN to ETRS89 (3)', |
2852
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4314', |
2853
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2854
|
|
|
'accuracy' => 1.0, |
2855
|
|
|
], |
2856
|
|
|
[ |
2857
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1779', |
2858
|
|
|
'name' => 'DHDN to ETRS89 (4)', |
2859
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4314', |
2860
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2861
|
|
|
'accuracy' => 1.0, |
2862
|
|
|
], |
2863
|
|
|
[ |
2864
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1780', |
2865
|
|
|
'name' => 'DHDN to ETRS89 (5)', |
2866
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4314', |
2867
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2868
|
|
|
'accuracy' => 1.0, |
2869
|
|
|
], |
2870
|
|
|
[ |
2871
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9310', |
2872
|
|
|
'name' => 'DHDN to ETRS89 (10)', |
2873
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4314', |
2874
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
2875
|
|
|
'accuracy' => 0.01, |
2876
|
|
|
], |
2877
|
|
|
[ |
2878
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19927', |
2879
|
|
|
'name' => 'Stereo 33', |
2880
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4316', |
2881
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31600', |
2882
|
|
|
'accuracy' => 0, |
2883
|
|
|
], |
2884
|
|
|
[ |
2885
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1995', |
2886
|
|
|
'name' => 'Dealul Piscului 1930 to WGS 84 (1)', |
2887
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4316', |
2888
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2889
|
|
|
'accuracy' => 10.0, |
2890
|
|
|
], |
2891
|
|
|
[ |
2892
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10595', |
2893
|
|
|
'name' => 'GLANCE projection - Europe', |
2894
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2895
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10596', |
2896
|
|
|
'accuracy' => 0, |
2897
|
|
|
], |
2898
|
|
|
[ |
2899
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1888', |
2900
|
|
|
'name' => 'Porto Santo to WGS 84 (1)', |
2901
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4615', |
2902
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2903
|
|
|
'accuracy' => 44.0, |
2904
|
|
|
], |
2905
|
|
|
[ |
2906
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1965', |
2907
|
|
|
'name' => 'Selvagem Grande to WGS 84 (1)', |
2908
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4616', |
2909
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2910
|
|
|
'accuracy' => 44.0, |
2911
|
|
|
], |
2912
|
|
|
[ |
2913
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17333', |
2914
|
|
|
'name' => 'SWEREF99 TM', |
2915
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
2916
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3006', |
2917
|
|
|
'accuracy' => 0, |
2918
|
|
|
], |
2919
|
|
|
[ |
2920
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17321', |
2921
|
|
|
'name' => 'SWEREF99 12 00', |
2922
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
2923
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3007', |
2924
|
|
|
'accuracy' => 0, |
2925
|
|
|
], |
2926
|
|
|
[ |
2927
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17322', |
2928
|
|
|
'name' => 'SWEREF99 13 30', |
2929
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
2930
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3008', |
2931
|
|
|
'accuracy' => 0, |
2932
|
|
|
], |
2933
|
|
|
[ |
2934
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17323', |
2935
|
|
|
'name' => 'SWEREF99 15 00', |
2936
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
2937
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3009', |
2938
|
|
|
'accuracy' => 0, |
2939
|
|
|
], |
2940
|
|
|
[ |
2941
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17324', |
2942
|
|
|
'name' => 'SWEREF99 16 30', |
2943
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
2944
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3010', |
2945
|
|
|
'accuracy' => 0, |
2946
|
|
|
], |
2947
|
|
|
[ |
2948
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17325', |
2949
|
|
|
'name' => 'SWEREF99 18 00', |
2950
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
2951
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3011', |
2952
|
|
|
'accuracy' => 0, |
2953
|
|
|
], |
2954
|
|
|
[ |
2955
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17326', |
2956
|
|
|
'name' => 'SWEREF99 14 15', |
2957
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
2958
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3012', |
2959
|
|
|
'accuracy' => 0, |
2960
|
|
|
], |
2961
|
|
|
[ |
2962
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17327', |
2963
|
|
|
'name' => 'SWEREF99 15 45', |
2964
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
2965
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3013', |
2966
|
|
|
'accuracy' => 0, |
2967
|
|
|
], |
2968
|
|
|
[ |
2969
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17328', |
2970
|
|
|
'name' => 'SWEREF99 17 15', |
2971
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
2972
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3014', |
2973
|
|
|
'accuracy' => 0, |
2974
|
|
|
], |
2975
|
|
|
[ |
2976
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17329', |
2977
|
|
|
'name' => 'SWEREF99 18 45', |
2978
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
2979
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3015', |
2980
|
|
|
'accuracy' => 0, |
2981
|
|
|
], |
2982
|
|
|
[ |
2983
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17330', |
2984
|
|
|
'name' => 'SWEREF99 20 15', |
2985
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
2986
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3016', |
2987
|
|
|
'accuracy' => 0, |
2988
|
|
|
], |
2989
|
|
|
[ |
2990
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17331', |
2991
|
|
|
'name' => 'SWEREF99 21 45', |
2992
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
2993
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3017', |
2994
|
|
|
'accuracy' => 0, |
2995
|
|
|
], |
2996
|
|
|
[ |
2997
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17332', |
2998
|
|
|
'name' => 'SWEREF99 23 15', |
2999
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
3000
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3018', |
3001
|
|
|
'accuracy' => 0, |
3002
|
|
|
], |
3003
|
|
|
[ |
3004
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19876', |
3005
|
|
|
'name' => 'ST74', |
3006
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
3007
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3152', |
3008
|
|
|
'accuracy' => 0, |
3009
|
|
|
], |
3010
|
|
|
[ |
3011
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17339', |
3012
|
|
|
'name' => 'RT90 zone 7.5 gon V emulation', |
3013
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
3014
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3845', |
3015
|
|
|
'accuracy' => 0, |
3016
|
|
|
], |
3017
|
|
|
[ |
3018
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17340', |
3019
|
|
|
'name' => 'RT90 zone 5 gon V emulation', |
3020
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
3021
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3846', |
3022
|
|
|
'accuracy' => 0, |
3023
|
|
|
], |
3024
|
|
|
[ |
3025
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17341', |
3026
|
|
|
'name' => 'RT90 zone 2.5 gon V emulation', |
3027
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
3028
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3847', |
3029
|
|
|
'accuracy' => 0, |
3030
|
|
|
], |
3031
|
|
|
[ |
3032
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17342', |
3033
|
|
|
'name' => 'RT90 zone 0 gon emulation', |
3034
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
3035
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3848', |
3036
|
|
|
'accuracy' => 0, |
3037
|
|
|
], |
3038
|
|
|
[ |
3039
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17343', |
3040
|
|
|
'name' => 'RT90 zone 2.5 gon O emulation', |
3041
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
3042
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3849', |
3043
|
|
|
'accuracy' => 0, |
3044
|
|
|
], |
3045
|
|
|
[ |
3046
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17344', |
3047
|
|
|
'name' => 'RT90 zone 5 gon O emulation', |
3048
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
3049
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3850', |
3050
|
|
|
'accuracy' => 0, |
3051
|
|
|
], |
3052
|
|
|
[ |
3053
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3853', |
3054
|
|
|
'name' => 'County ST74', |
3055
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
3056
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3854', |
3057
|
|
|
'accuracy' => 0, |
3058
|
|
|
], |
3059
|
|
|
[ |
3060
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1878', |
3061
|
|
|
'name' => 'SWEREF99 to ETRS89 (1)', |
3062
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4619', |
3063
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
3064
|
|
|
'accuracy' => 0.0, |
3065
|
|
|
], |
3066
|
|
|
[ |
3067
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19987', |
3068
|
|
|
'name' => 'Iceland Lambert 1900', |
3069
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4657', |
3070
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3052', |
3071
|
|
|
'accuracy' => 0, |
3072
|
|
|
], |
3073
|
|
|
[ |
3074
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1994', |
3075
|
|
|
'name' => 'Reykjavik 1900 to WGS 84 (1)', |
3076
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4657', |
3077
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
3078
|
|
|
'accuracy' => 10.0, |
3079
|
|
|
], |
3080
|
|
|
[ |
3081
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19988', |
3082
|
|
|
'name' => 'Iceland Lambert 1955', |
3083
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4658', |
3084
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3053', |
3085
|
|
|
'accuracy' => 0, |
3086
|
|
|
], |
3087
|
|
|
[ |
3088
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6909', |
3089
|
|
|
'name' => 'Hjorsey 1955 to WGS 84 (2)', |
3090
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4658', |
3091
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
3092
|
|
|
'accuracy' => 7.0, |
3093
|
|
|
], |
3094
|
|
|
[ |
3095
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19989', |
3096
|
|
|
'name' => 'Iceland Lambert 1993', |
3097
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4659', |
3098
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3057', |
3099
|
|
|
'accuracy' => 0, |
3100
|
|
|
], |
3101
|
|
|
[ |
3102
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1952', |
3103
|
|
|
'name' => 'ISN93 to WGS 84 (1)', |
3104
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4659', |
3105
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
3106
|
|
|
'accuracy' => 1.0, |
3107
|
|
|
], |
3108
|
|
|
[ |
3109
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9232', |
3110
|
|
|
'name' => 'ISN93 to ISN2016 (1)', |
3111
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4659', |
3112
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8086', |
3113
|
|
|
'accuracy' => 0.05, |
3114
|
|
|
], |
3115
|
|
|
[ |
3116
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19991', |
3117
|
|
|
'name' => 'Jan Mayen Grid', |
3118
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4660', |
3119
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3058', |
3120
|
|
|
'accuracy' => 0, |
3121
|
|
|
], |
3122
|
|
|
[ |
3123
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1957', |
3124
|
|
|
'name' => 'Helle 1954 to WGS 84 (1)', |
3125
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4660', |
3126
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
3127
|
|
|
'accuracy' => 1.0, |
3128
|
|
|
], |
3129
|
|
|
[ |
3130
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19990', |
3131
|
|
|
'name' => 'Latvian Transverse Mercator', |
3132
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4661', |
3133
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3059', |
3134
|
|
|
'accuracy' => 0, |
3135
|
|
|
], |
3136
|
|
|
[ |
3137
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8891', |
3138
|
|
|
'name' => 'LKS-92 to ETRS89 (1)', |
3139
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4661', |
3140
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
3141
|
|
|
'accuracy' => 0.0, |
3142
|
|
|
], |
3143
|
|
|
[ |
3144
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1966', |
3145
|
|
|
'name' => 'Porto Santo 1995 to WGS 84 (2)', |
3146
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4663', |
3147
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
3148
|
|
|
'accuracy' => 5.0, |
3149
|
|
|
], |
3150
|
|
|
[ |
3151
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1967', |
3152
|
|
|
'name' => 'Porto Santo 1995 to WGS 84 (3)', |
3153
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4663', |
3154
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
3155
|
|
|
'accuracy' => 1.0, |
3156
|
|
|
], |
3157
|
|
|
[ |
3158
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5021', |
3159
|
|
|
'name' => 'Porto Santo 1995 to PTRA08 (1)', |
3160
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4663', |
3161
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5013', |
3162
|
|
|
'accuracy' => 2.0, |
3163
|
|
|
], |
3164
|
|
|
[ |
3165
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5022', |
3166
|
|
|
'name' => 'Porto Santo 1995 to PTRA08 (2)', |
3167
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4663', |
3168
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5013', |
3169
|
|
|
'accuracy' => 1.0, |
3170
|
|
|
], |
3171
|
|
|
[ |
3172
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5023', |
3173
|
|
|
'name' => 'Porto Santo 1995 to PTRA08 (3)', |
3174
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4663', |
3175
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5013', |
3176
|
|
|
'accuracy' => 0.2, |
3177
|
|
|
], |
3178
|
|
|
[ |
3179
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5025', |
3180
|
|
|
'name' => 'Azores Oriental 1995 to PTRA08 (2)', |
3181
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4664', |
3182
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5013', |
3183
|
|
|
'accuracy' => 0.3, |
3184
|
|
|
], |
3185
|
|
|
[ |
3186
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5026', |
3187
|
|
|
'name' => 'Azores Oriental 1995 to PTRA08 (3)', |
3188
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4664', |
3189
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5013', |
3190
|
|
|
'accuracy' => 0.1, |
3191
|
|
|
], |
3192
|
|
|
[ |
3193
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5028', |
3194
|
|
|
'name' => 'Azores Central 1995 to PTRA08 (2)', |
3195
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4665', |
3196
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5013', |
3197
|
|
|
'accuracy' => 0.5, |
3198
|
|
|
], |
3199
|
|
|
[ |
3200
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5029', |
3201
|
|
|
'name' => 'Azores Central 1995 to PTRA08 (3)', |
3202
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4665', |
3203
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5013', |
3204
|
|
|
'accuracy' => 0.2, |
3205
|
|
|
], |
3206
|
|
|
[ |
3207
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5030', |
3208
|
|
|
'name' => 'Azores Central 1995 to PTRA08 (4)', |
3209
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4665', |
3210
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5013', |
3211
|
|
|
'accuracy' => 1.0, |
3212
|
|
|
], |
3213
|
|
|
[ |
3214
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5031', |
3215
|
|
|
'name' => 'Azores Central 1995 to PTRA08 (5)', |
3216
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4665', |
3217
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5013', |
3218
|
|
|
'accuracy' => 0.8, |
3219
|
|
|
], |
3220
|
|
|
[ |
3221
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5032', |
3222
|
|
|
'name' => 'Azores Central 1995 to PTRA08 (6)', |
3223
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4665', |
3224
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5013', |
3225
|
|
|
'accuracy' => 0.6, |
3226
|
|
|
], |
3227
|
|
|
[ |
3228
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5039', |
3229
|
|
|
'name' => 'Lisbon 1890 to ETRS89 (1)', |
3230
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4666', |
3231
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
3232
|
|
|
'accuracy' => 5.0, |
3233
|
|
|
], |
3234
|
|
|
[ |
3235
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5019', |
3236
|
|
|
'name' => 'Portugal Bonne New', |
3237
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4666', |
3238
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5017', |
3239
|
|
|
'accuracy' => 0, |
3240
|
|
|
], |
3241
|
|
|
[ |
3242
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15752', |
3243
|
|
|
'name' => 'ED79 to WGS 84 (1)', |
3244
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4668', |
3245
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
3246
|
|
|
'accuracy' => 6.0, |
3247
|
|
|
], |
3248
|
|
|
[ |
3249
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19934', |
3250
|
|
|
'name' => 'Lithuania 1994', |
3251
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4669', |
3252
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3346', |
3253
|
|
|
'accuracy' => 0, |
3254
|
|
|
], |
3255
|
|
|
[ |
3256
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8892', |
3257
|
|
|
'name' => 'LKS94 to ETRS89 (1)', |
3258
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4669', |
3259
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
3260
|
|
|
'accuracy' => 0.0, |
3261
|
|
|
], |
3262
|
|
|
[ |
3263
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1098', |
3264
|
|
|
'name' => 'IGM95 to ETRS89 (1)', |
3265
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4670', |
3266
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
3267
|
|
|
'accuracy' => 0.5, |
3268
|
|
|
], |
3269
|
|
|
[ |
3270
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15815', |
3271
|
|
|
'name' => 'PN84 to WGS 84 (1)', |
3272
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4728', |
3273
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
3274
|
|
|
'accuracy' => 44.0, |
3275
|
|
|
], |
3276
|
|
|
[ |
3277
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1244', |
3278
|
|
|
'name' => 'PZ-90 to WGS 84 (2)', |
3279
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4740', |
3280
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
3281
|
|
|
'accuracy' => 0.5, |
3282
|
|
|
], |
3283
|
|
|
[ |
3284
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19870', |
3285
|
|
|
'name' => 'Faroe Lambert', |
3286
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4741', |
3287
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3144', |
3288
|
|
|
'accuracy' => 0, |
3289
|
|
|
], |
3290
|
|
|
[ |
3291
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15866', |
3292
|
|
|
'name' => 'FD54 to ED50 (1)', |
3293
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4741', |
3294
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4230', |
3295
|
|
|
'accuracy' => 0.0, |
3296
|
|
|
], |
3297
|
|
|
[ |
3298
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15868', |
3299
|
|
|
'name' => 'RD/83 to ETRS89 (1)', |
3300
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4745', |
3301
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
3302
|
|
|
'accuracy' => 1.0, |
3303
|
|
|
], |
3304
|
|
|
[ |
3305
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6948', |
3306
|
|
|
'name' => 'RD/83 to ETRS89 (2)', |
3307
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4745', |
3308
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
3309
|
|
|
'accuracy' => 0.03, |
3310
|
|
|
], |
3311
|
|
|
[ |
3312
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10677', |
3313
|
|
|
'name' => 'PD/83 to ETRS89 (2)', |
3314
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4746', |
3315
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
3316
|
|
|
'accuracy' => 0.3, |
3317
|
|
|
], |
3318
|
|
|
[ |
3319
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15867', |
3320
|
|
|
'name' => 'PD/83 to ETRS89 (1)', |
3321
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4746', |
3322
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
3323
|
|
|
'accuracy' => 1.0, |
3324
|
|
|
], |
3325
|
|
|
[ |
3326
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19877', |
3327
|
|
|
'name' => 'Faroe Lambert fk89', |
3328
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4753', |
3329
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3173', |
3330
|
|
|
'accuracy' => 0, |
3331
|
|
|
], |
3332
|
|
|
[ |
3333
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19851', |
3334
|
|
|
'name' => 'Croatia Transverse Mercator', |
3335
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4761', |
3336
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3765', |
3337
|
|
|
'accuracy' => 0, |
3338
|
|
|
], |
3339
|
|
|
[ |
3340
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19852', |
3341
|
|
|
'name' => 'Croatia Lambert Conformal Conic', |
3342
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4761', |
3343
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3766', |
3344
|
|
|
'accuracy' => 0, |
3345
|
|
|
], |
3346
|
|
|
[ |
3347
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15966', |
3348
|
|
|
'name' => 'HTRS96 to ETRS89 (1)', |
3349
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4761', |
3350
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
3351
|
|
|
'accuracy' => 0.0, |
3352
|
|
|
], |
3353
|
|
|
[ |
3354
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19845', |
3355
|
|
|
'name' => 'Slovene National Grid', |
3356
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4765', |
3357
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3794', |
3358
|
|
|
'accuracy' => 0, |
3359
|
|
|
], |
3360
|
|
|
[ |
3361
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15977', |
3362
|
|
|
'name' => 'Slovenia 1996 to ETRS89 (1)', |
3363
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4765', |
3364
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
3365
|
|
|
'accuracy' => 0.0, |
3366
|
|
|
], |
3367
|
|
|
[ |
3368
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19923', |
3369
|
|
|
'name' => 'Swiss Oblique Mercator 1903C', |
3370
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4801', |
3371
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21780', |
3372
|
|
|
'accuracy' => 0, |
3373
|
|
|
], |
3374
|
|
|
[ |
3375
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1765', |
3376
|
|
|
'name' => 'CH1903 (Bern) to CH1903 (1)', |
3377
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4801', |
3378
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4149', |
3379
|
|
|
'accuracy' => 0.0, |
3380
|
|
|
], |
3381
|
|
|
[ |
3382
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19936', |
3383
|
|
|
'name' => 'Portuguese National Grid', |
3384
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4803', |
3385
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20790', |
3386
|
|
|
'accuracy' => 0, |
3387
|
|
|
], |
3388
|
|
|
[ |
3389
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19969', |
3390
|
|
|
'name' => 'Portuguese Grid', |
3391
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4803', |
3392
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20791', |
3393
|
|
|
'accuracy' => 0, |
3394
|
|
|
], |
3395
|
|
|
[ |
3396
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1756', |
3397
|
|
|
'name' => 'Lisbon (Lisbon) to Lisbon (1)', |
3398
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4803', |
3399
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4207', |
3400
|
|
|
'accuracy' => 0.0, |
3401
|
|
|
], |
3402
|
|
|
[ |
3403
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18001', |
3404
|
|
|
'name' => 'Austria Gauss-Kruger West Zone', |
3405
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4805', |
3406
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31251', |
3407
|
|
|
'accuracy' => 0, |
3408
|
|
|
], |
3409
|
|
|
[ |
3410
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18002', |
3411
|
|
|
'name' => 'Austria Gauss-Kruger Central Zone', |
3412
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4805', |
3413
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31252', |
3414
|
|
|
'accuracy' => 0, |
3415
|
|
|
], |
3416
|
|
|
[ |
3417
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18003', |
3418
|
|
|
'name' => 'Austria Gauss-Kruger East Zone', |
3419
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4805', |
3420
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31253', |
3421
|
|
|
'accuracy' => 0, |
3422
|
|
|
], |
3423
|
|
|
[ |
3424
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18041', |
3425
|
|
|
'name' => 'Austria West Zone', |
3426
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4805', |
3427
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31281', |
3428
|
|
|
'accuracy' => 0, |
3429
|
|
|
], |
3430
|
|
|
[ |
3431
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18042', |
3432
|
|
|
'name' => 'Austria Central Zone', |
3433
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4805', |
3434
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31282', |
3435
|
|
|
'accuracy' => 0, |
3436
|
|
|
], |
3437
|
|
|
[ |
3438
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18043', |
3439
|
|
|
'name' => 'Austria East Zone', |
3440
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4805', |
3441
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31283', |
3442
|
|
|
'accuracy' => 0, |
3443
|
|
|
], |
3444
|
|
|
[ |
3445
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18047', |
3446
|
|
|
'name' => 'Austria zone M28', |
3447
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4805', |
3448
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31288', |
3449
|
|
|
'accuracy' => 0, |
3450
|
|
|
], |
3451
|
|
|
[ |
3452
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18048', |
3453
|
|
|
'name' => 'Austria zone M31', |
3454
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4805', |
3455
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31289', |
3456
|
|
|
'accuracy' => 0, |
3457
|
|
|
], |
3458
|
|
|
[ |
3459
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18049', |
3460
|
|
|
'name' => 'Austria zone M34', |
3461
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4805', |
3462
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31290', |
3463
|
|
|
'accuracy' => 0, |
3464
|
|
|
], |
3465
|
|
|
[ |
3466
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3913', |
3467
|
|
|
'name' => 'MGI (Ferro) to MGI 1901 (1)', |
3468
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4805', |
3469
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3906', |
3470
|
|
|
'accuracy' => 1.0, |
3471
|
|
|
], |
3472
|
|
|
[ |
3473
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3895', |
3474
|
|
|
'name' => 'MGI (Ferro) to MGI (1)', |
3475
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4805', |
3476
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4312', |
3477
|
|
|
'accuracy' => 0.0, |
3478
|
|
|
], |
3479
|
|
|
[ |
3480
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1262', |
3481
|
|
|
'name' => 'Monte Mario (Rome) to Monte Mario (1)', |
3482
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4806', |
3483
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4265', |
3484
|
|
|
'accuracy' => 0.0, |
3485
|
|
|
], |
3486
|
|
|
[ |
3487
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18091', |
3488
|
|
|
'name' => 'Lambert Nord France', |
3489
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4807', |
3490
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27561', |
3491
|
|
|
'accuracy' => 0, |
3492
|
|
|
], |
3493
|
|
|
[ |
3494
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18092', |
3495
|
|
|
'name' => 'Lambert Centre France', |
3496
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4807', |
3497
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27562', |
3498
|
|
|
'accuracy' => 0, |
3499
|
|
|
], |
3500
|
|
|
[ |
3501
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18093', |
3502
|
|
|
'name' => 'Lambert Sud France', |
3503
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4807', |
3504
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27563', |
3505
|
|
|
'accuracy' => 0, |
3506
|
|
|
], |
3507
|
|
|
[ |
3508
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18094', |
3509
|
|
|
'name' => 'Lambert Corse', |
3510
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4807', |
3511
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27564', |
3512
|
|
|
'accuracy' => 0, |
3513
|
|
|
], |
3514
|
|
|
[ |
3515
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18081', |
3516
|
|
|
'name' => 'Lambert zone I', |
3517
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4807', |
3518
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27571', |
3519
|
|
|
'accuracy' => 0, |
3520
|
|
|
], |
3521
|
|
|
[ |
3522
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18082', |
3523
|
|
|
'name' => 'Lambert zone II', |
3524
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4807', |
3525
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27572', |
3526
|
|
|
'accuracy' => 0, |
3527
|
|
|
], |
3528
|
|
|
[ |
3529
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18083', |
3530
|
|
|
'name' => 'Lambert zone III', |
3531
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4807', |
3532
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27573', |
3533
|
|
|
'accuracy' => 0, |
3534
|
|
|
], |
3535
|
|
|
[ |
3536
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18084', |
3537
|
|
|
'name' => 'Lambert zone IV', |
3538
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4807', |
3539
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27574', |
3540
|
|
|
'accuracy' => 0, |
3541
|
|
|
], |
3542
|
|
|
[ |
3543
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1763', |
3544
|
|
|
'name' => 'NTF (Paris) to NTF (1)', |
3545
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4807', |
3546
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4275', |
3547
|
|
|
'accuracy' => 0.0, |
3548
|
|
|
], |
3549
|
|
|
[ |
3550
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19901', |
3551
|
|
|
'name' => 'Belge Lambert 50', |
3552
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4809', |
3553
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21500', |
3554
|
|
|
'accuracy' => 0, |
3555
|
|
|
], |
3556
|
|
|
[ |
3557
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1264', |
3558
|
|
|
'name' => 'BD50 (Brussels) to BD50 (1)', |
3559
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4809', |
3560
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4215', |
3561
|
|
|
'accuracy' => 0.0, |
3562
|
|
|
], |
3563
|
|
|
[ |
3564
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1760', |
3565
|
|
|
'name' => 'RT38 (Stockholm) to RT38 (1)', |
3566
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4814', |
3567
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4308', |
3568
|
|
|
'accuracy' => 0.0, |
3569
|
|
|
], |
3570
|
|
|
[ |
3571
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1761', |
3572
|
|
|
'name' => 'Greek (Athens) to Greek (1)', |
3573
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4815', |
3574
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4120', |
3575
|
|
|
'accuracy' => 0.0, |
3576
|
|
|
], |
3577
|
|
|
[ |
3578
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18221', |
3579
|
|
|
'name' => 'NGO zone I', |
3580
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4817', |
3581
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27391', |
3582
|
|
|
'accuracy' => 0, |
3583
|
|
|
], |
3584
|
|
|
[ |
3585
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18222', |
3586
|
|
|
'name' => 'NGO zone II', |
3587
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4817', |
3588
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27392', |
3589
|
|
|
'accuracy' => 0, |
3590
|
|
|
], |
3591
|
|
|
[ |
3592
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18223', |
3593
|
|
|
'name' => 'NGO zone III', |
3594
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4817', |
3595
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27393', |
3596
|
|
|
'accuracy' => 0, |
3597
|
|
|
], |
3598
|
|
|
[ |
3599
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18224', |
3600
|
|
|
'name' => 'NGO zone IV', |
3601
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4817', |
3602
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27394', |
3603
|
|
|
'accuracy' => 0, |
3604
|
|
|
], |
3605
|
|
|
[ |
3606
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18225', |
3607
|
|
|
'name' => 'NGO zone V', |
3608
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4817', |
3609
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27395', |
3610
|
|
|
'accuracy' => 0, |
3611
|
|
|
], |
3612
|
|
|
[ |
3613
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18226', |
3614
|
|
|
'name' => 'NGO zone VI', |
3615
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4817', |
3616
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27396', |
3617
|
|
|
'accuracy' => 0, |
3618
|
|
|
], |
3619
|
|
|
[ |
3620
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18227', |
3621
|
|
|
'name' => 'NGO zone VII', |
3622
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4817', |
3623
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27397', |
3624
|
|
|
'accuracy' => 0, |
3625
|
|
|
], |
3626
|
|
|
[ |
3627
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18228', |
3628
|
|
|
'name' => 'NGO zone VIII', |
3629
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4817', |
3630
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27398', |
3631
|
|
|
'accuracy' => 0, |
3632
|
|
|
], |
3633
|
|
|
[ |
3634
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1762', |
3635
|
|
|
'name' => 'NGO 1948 (Oslo) to NGO1948 (1)', |
3636
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4817', |
3637
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4273', |
3638
|
|
|
'accuracy' => 0.0, |
3639
|
|
|
], |
3640
|
|
|
[ |
3641
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19952', |
3642
|
|
|
'name' => 'Krovak', |
3643
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4818', |
3644
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2065', |
3645
|
|
|
'accuracy' => 0, |
3646
|
|
|
], |
3647
|
|
|
[ |
3648
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1884', |
3649
|
|
|
'name' => 'S-JTSK (Ferro) to S-JTSK (1)', |
3650
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4818', |
3651
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4156', |
3652
|
|
|
'accuracy' => 0.0, |
3653
|
|
|
], |
3654
|
|
|
[ |
3655
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5218', |
3656
|
|
|
'name' => 'Krovak East North', |
3657
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4818', |
3658
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5221', |
3659
|
|
|
'accuracy' => 0, |
3660
|
|
|
], |
3661
|
|
|
[ |
3662
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10248', |
3663
|
|
|
'name' => 'Slovenia 1996 to Slovenia 1996 + SVS2010 height (1)', |
3664
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4883', |
3665
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10245', |
3666
|
|
|
'accuracy' => 0.1, |
3667
|
|
|
], |
3668
|
|
|
[ |
3669
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10247', |
3670
|
|
|
'name' => 'Slovenia 1996 to SVS2010 height (1)', |
3671
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4883', |
3672
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8690', |
3673
|
|
|
'accuracy' => 0.1, |
3674
|
|
|
], |
3675
|
|
|
[ |
3676
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10576', |
3677
|
|
|
'name' => 'ITRF2005 to ETRF2020 (1)', |
3678
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4896', |
3679
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10569', |
3680
|
|
|
'accuracy' => 0.0, |
3681
|
|
|
], |
3682
|
|
|
[ |
3683
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7950', |
3684
|
|
|
'name' => 'ITRF2005 to ETRF2000 (1)', |
3685
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4896', |
3686
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7930', |
3687
|
|
|
'accuracy' => 0.0, |
3688
|
|
|
], |
3689
|
|
|
[ |
3690
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5900', |
3691
|
|
|
'name' => 'ITRF2005 to ETRF2005 (1)', |
3692
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4896', |
3693
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8397', |
3694
|
|
|
'accuracy' => 0.0, |
3695
|
|
|
], |
3696
|
|
|
[ |
3697
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8870', |
3698
|
|
|
'name' => 'ITRF2005 to ETRF2014 (1)', |
3699
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4896', |
3700
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8401', |
3701
|
|
|
'accuracy' => 0.0, |
3702
|
|
|
], |
3703
|
|
|
[ |
3704
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19903', |
3705
|
|
|
'name' => 'Nord de Guerre', |
3706
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4901', |
3707
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27500', |
3708
|
|
|
'accuracy' => 0, |
3709
|
|
|
], |
3710
|
|
|
[ |
3711
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19921', |
3712
|
|
|
'name' => 'Spain', |
3713
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4903', |
3714
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2062', |
3715
|
|
|
'accuracy' => 0, |
3716
|
|
|
], |
3717
|
|
|
[ |
3718
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1027', |
3719
|
|
|
'name' => 'Madrid 1870 (Madrid) to ED50 (2)', |
3720
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4903', |
3721
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4230', |
3722
|
|
|
'accuracy' => 5.0, |
3723
|
|
|
], |
3724
|
|
|
[ |
3725
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1028', |
3726
|
|
|
'name' => 'Madrid 1870 (Madrid) to ED50 (3)', |
3727
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4903', |
3728
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4230', |
3729
|
|
|
'accuracy' => 5.0, |
3730
|
|
|
], |
3731
|
|
|
[ |
3732
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19979', |
3733
|
|
|
'name' => 'Portugal Bonne', |
3734
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4904', |
3735
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2963', |
3736
|
|
|
'accuracy' => 0, |
3737
|
|
|
], |
3738
|
|
|
[ |
3739
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1991', |
3740
|
|
|
'name' => 'Lisbon 1890 (Lisbon) to Lisbon 1890 (1)', |
3741
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4904', |
3742
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4666', |
3743
|
|
|
'accuracy' => 0.0, |
3744
|
|
|
], |
3745
|
|
|
[ |
3746
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10585', |
3747
|
|
|
'name' => 'ITRF89 to ETRF2020 (1)', |
3748
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4911', |
3749
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10569', |
3750
|
|
|
'accuracy' => 0.0, |
3751
|
|
|
], |
3752
|
|
|
[ |
3753
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7932', |
3754
|
|
|
'name' => 'ITRF89 to ETRF89 (1)', |
3755
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4911', |
3756
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7914', |
3757
|
|
|
'accuracy' => 0.0, |
3758
|
|
|
], |
3759
|
|
|
[ |
3760
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7942', |
3761
|
|
|
'name' => 'ITRF89 to ETRF2000 (1)', |
3762
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4911', |
3763
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7930', |
3764
|
|
|
'accuracy' => 0.0, |
3765
|
|
|
], |
3766
|
|
|
[ |
3767
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8879', |
3768
|
|
|
'name' => 'ITRF89 to ETRF2014 (1)', |
3769
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4911', |
3770
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8401', |
3771
|
|
|
'accuracy' => 0.0, |
3772
|
|
|
], |
3773
|
|
|
[ |
3774
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10584', |
3775
|
|
|
'name' => 'ITRF90 to ETRF2020 (1)', |
3776
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4912', |
3777
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10569', |
3778
|
|
|
'accuracy' => 0.0, |
3779
|
|
|
], |
3780
|
|
|
[ |
3781
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7933', |
3782
|
|
|
'name' => 'ITRF90 to ETRF90 (1)', |
3783
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4912', |
3784
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7916', |
3785
|
|
|
'accuracy' => 0.0, |
3786
|
|
|
], |
3787
|
|
|
[ |
3788
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7943', |
3789
|
|
|
'name' => 'ITRF90 to ETRF2000 (1)', |
3790
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4912', |
3791
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7930', |
3792
|
|
|
'accuracy' => 0.0, |
3793
|
|
|
], |
3794
|
|
|
[ |
3795
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8878', |
3796
|
|
|
'name' => 'ITRF90 to ETRF2014 (1)', |
3797
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4912', |
3798
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8401', |
3799
|
|
|
'accuracy' => 0.0, |
3800
|
|
|
], |
3801
|
|
|
[ |
3802
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10583', |
3803
|
|
|
'name' => 'ITRF91 to ETRF2020 (1)', |
3804
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4913', |
3805
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10569', |
3806
|
|
|
'accuracy' => 0.0, |
3807
|
|
|
], |
3808
|
|
|
[ |
3809
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7934', |
3810
|
|
|
'name' => 'ITRF91 to ETRF91 (1)', |
3811
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4913', |
3812
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7918', |
3813
|
|
|
'accuracy' => 0.0, |
3814
|
|
|
], |
3815
|
|
|
[ |
3816
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7944', |
3817
|
|
|
'name' => 'ITRF91 to ETRF2000 (1)', |
3818
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4913', |
3819
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7930', |
3820
|
|
|
'accuracy' => 0.0, |
3821
|
|
|
], |
3822
|
|
|
[ |
3823
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8877', |
3824
|
|
|
'name' => 'ITRF91 to ETRF2014 (1)', |
3825
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4913', |
3826
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8401', |
3827
|
|
|
'accuracy' => 0.0, |
3828
|
|
|
], |
3829
|
|
|
[ |
3830
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10582', |
3831
|
|
|
'name' => 'ITRF92 to ETRF2020 (1)', |
3832
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4914', |
3833
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10569', |
3834
|
|
|
'accuracy' => 0.0, |
3835
|
|
|
], |
3836
|
|
|
[ |
3837
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7935', |
3838
|
|
|
'name' => 'ITRF92 to ETRF92 (1)', |
3839
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4914', |
3840
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7920', |
3841
|
|
|
'accuracy' => 0.0, |
3842
|
|
|
], |
3843
|
|
|
[ |
3844
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7945', |
3845
|
|
|
'name' => 'ITRF92 to ETRF2000 (1)', |
3846
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4914', |
3847
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7930', |
3848
|
|
|
'accuracy' => 0.0, |
3849
|
|
|
], |
3850
|
|
|
[ |
3851
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8876', |
3852
|
|
|
'name' => 'ITRF92 to ETRF2014 (1)', |
3853
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4914', |
3854
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8401', |
3855
|
|
|
'accuracy' => 0.0, |
3856
|
|
|
], |
3857
|
|
|
[ |
3858
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10581', |
3859
|
|
|
'name' => 'ITRF93 to ETRF2020 (1)', |
3860
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4915', |
3861
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10569', |
3862
|
|
|
'accuracy' => 0.0, |
3863
|
|
|
], |
3864
|
|
|
[ |
3865
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7936', |
3866
|
|
|
'name' => 'ITRF93 to ETRF93 (1)', |
3867
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4915', |
3868
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7922', |
3869
|
|
|
'accuracy' => 0.0, |
3870
|
|
|
], |
3871
|
|
|
[ |
3872
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7946', |
3873
|
|
|
'name' => 'ITRF93 to ETRF2000 (1)', |
3874
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4915', |
3875
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7930', |
3876
|
|
|
'accuracy' => 0.0, |
3877
|
|
|
], |
3878
|
|
|
[ |
3879
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8875', |
3880
|
|
|
'name' => 'ITRF93 to ETRF2014 (1)', |
3881
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4915', |
3882
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8401', |
3883
|
|
|
'accuracy' => 0.0, |
3884
|
|
|
], |
3885
|
|
|
[ |
3886
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10580', |
3887
|
|
|
'name' => 'ITRF94 to ETRF2020 (1)', |
3888
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4916', |
3889
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10569', |
3890
|
|
|
'accuracy' => 0.0, |
3891
|
|
|
], |
3892
|
|
|
[ |
3893
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7937', |
3894
|
|
|
'name' => 'ITRF94 to ETRF94 (1)', |
3895
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4916', |
3896
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7924', |
3897
|
|
|
'accuracy' => 0.0, |
3898
|
|
|
], |
3899
|
|
|
[ |
3900
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7947', |
3901
|
|
|
'name' => 'ITRF94 to ETRF2000 (1)', |
3902
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4916', |
3903
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7930', |
3904
|
|
|
'accuracy' => 0.0, |
3905
|
|
|
], |
3906
|
|
|
[ |
3907
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8874', |
3908
|
|
|
'name' => 'ITRF94 to ETRF2014 (1)', |
3909
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4916', |
3910
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8401', |
3911
|
|
|
'accuracy' => 0.0, |
3912
|
|
|
], |
3913
|
|
|
[ |
3914
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10579', |
3915
|
|
|
'name' => 'ITRF96 to ETRF2020 (1)', |
3916
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4917', |
3917
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10569', |
3918
|
|
|
'accuracy' => 0.0, |
3919
|
|
|
], |
3920
|
|
|
[ |
3921
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7938', |
3922
|
|
|
'name' => 'ITRF96 to ETRF96 (1)', |
3923
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4917', |
3924
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7926', |
3925
|
|
|
'accuracy' => 0.0, |
3926
|
|
|
], |
3927
|
|
|
[ |
3928
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7948', |
3929
|
|
|
'name' => 'ITRF96 to ETRF2000 (1)', |
3930
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4917', |
3931
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7930', |
3932
|
|
|
'accuracy' => 0.0, |
3933
|
|
|
], |
3934
|
|
|
[ |
3935
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8873', |
3936
|
|
|
'name' => 'ITRF96 to ETRF2014 (1)', |
3937
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4917', |
3938
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8401', |
3939
|
|
|
'accuracy' => 0.0, |
3940
|
|
|
], |
3941
|
|
|
[ |
3942
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10578', |
3943
|
|
|
'name' => 'ITRF97 to ETRF2020 (1)', |
3944
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4918', |
3945
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10569', |
3946
|
|
|
'accuracy' => 0.0, |
3947
|
|
|
], |
3948
|
|
|
[ |
3949
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7939', |
3950
|
|
|
'name' => 'ITRF97 to ETRF97 (1)', |
3951
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4918', |
3952
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7928', |
3953
|
|
|
'accuracy' => 0.0, |
3954
|
|
|
], |
3955
|
|
|
[ |
3956
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7949', |
3957
|
|
|
'name' => 'ITRF97 to ETRF2000 (1)', |
3958
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4918', |
3959
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7930', |
3960
|
|
|
'accuracy' => 0.0, |
3961
|
|
|
], |
3962
|
|
|
[ |
3963
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8872', |
3964
|
|
|
'name' => 'ITRF97 to ETRF2014 (1)', |
3965
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4918', |
3966
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8401', |
3967
|
|
|
'accuracy' => 0.0, |
3968
|
|
|
], |
3969
|
|
|
[ |
3970
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10577', |
3971
|
|
|
'name' => 'ITRF2000 to ETRF2020 (1)', |
3972
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4919', |
3973
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10569', |
3974
|
|
|
'accuracy' => 0.0, |
3975
|
|
|
], |
3976
|
|
|
[ |
3977
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7941', |
3978
|
|
|
'name' => 'ITRF2000 to ETRF2000 (2)', |
3979
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4919', |
3980
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7930', |
3981
|
|
|
'accuracy' => 0.0, |
3982
|
|
|
], |
3983
|
|
|
[ |
3984
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8871', |
3985
|
|
|
'name' => 'ITRF2000 to ETRF2014 (1)', |
3986
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4919', |
3987
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8401', |
3988
|
|
|
'accuracy' => 0.0, |
3989
|
|
|
], |
3990
|
|
|
[ |
3991
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::32773', |
3992
|
|
|
'name' => 'ETRS89 to ETRF2000 (geocen)', |
3993
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4936', |
3994
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7930', |
3995
|
|
|
'accuracy' => 0.0, |
3996
|
|
|
], |
3997
|
|
|
[ |
3998
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10358', |
3999
|
|
|
'name' => 'ETRS89 to Formentera height (1)', |
4000
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4001
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10352', |
4002
|
|
|
'accuracy' => 0.05, |
4003
|
|
|
], |
4004
|
|
|
[ |
4005
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10360', |
4006
|
|
|
'name' => 'ETRS89 to Alboran height (1)', |
4007
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4008
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10353', |
4009
|
|
|
'accuracy' => 0.05, |
4010
|
|
|
], |
4011
|
|
|
[ |
4012
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10362', |
4013
|
|
|
'name' => 'ETRS89 to Melilla height (1)', |
4014
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4015
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10354', |
4016
|
|
|
'accuracy' => 0.05, |
4017
|
|
|
], |
4018
|
|
|
[ |
4019
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10359', |
4020
|
|
|
'name' => 'ETRS89 to ETRS89 + Formentera height (1)', |
4021
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4022
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10355', |
4023
|
|
|
'accuracy' => 0.05, |
4024
|
|
|
], |
4025
|
|
|
[ |
4026
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10361', |
4027
|
|
|
'name' => 'ETRS89 to ETRS89 + Alboran height (1)', |
4028
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4029
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10356', |
4030
|
|
|
'accuracy' => 0.05, |
4031
|
|
|
], |
4032
|
|
|
[ |
4033
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10363', |
4034
|
|
|
'name' => 'ETRS89 to ETRS89 + Melilla height (1)', |
4035
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4036
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10357', |
4037
|
|
|
'accuracy' => 0.05, |
4038
|
|
|
], |
4039
|
|
|
[ |
4040
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10546', |
4041
|
|
|
'name' => 'ETRS89 to ETRS89 + Cascais height (1)', |
4042
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4043
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10545', |
4044
|
|
|
'accuracy' => 0.04, |
4045
|
|
|
], |
4046
|
|
|
[ |
4047
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7711', |
4048
|
|
|
'name' => 'ETRS89 to ODN height (2)', |
4049
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4050
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5701', |
4051
|
|
|
'accuracy' => 0.008, |
4052
|
|
|
], |
4053
|
|
|
[ |
4054
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9283', |
4055
|
|
|
'name' => 'ETRS89 to NAP height (2)', |
4056
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4057
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5709', |
4058
|
|
|
'accuracy' => 0.001, |
4059
|
|
|
], |
4060
|
|
|
[ |
4061
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9908', |
4062
|
|
|
'name' => 'ETRS89 to Ostend height (1)', |
4063
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4064
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5710', |
4065
|
|
|
'accuracy' => 0.02, |
4066
|
|
|
], |
4067
|
|
|
[ |
4068
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7959', |
4069
|
|
|
'name' => 'ETRS89 to Malin Head height (2)', |
4070
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4071
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5731', |
4072
|
|
|
'accuracy' => 0.023, |
4073
|
|
|
], |
4074
|
|
|
[ |
4075
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7958', |
4076
|
|
|
'name' => 'ETRS89 to Belfast height (2)', |
4077
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4078
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5732', |
4079
|
|
|
'accuracy' => 0.014, |
4080
|
|
|
], |
4081
|
|
|
[ |
4082
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7712', |
4083
|
|
|
'name' => 'ETRS89 to ODN Orkney height (2)', |
4084
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4085
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5740', |
4086
|
|
|
'accuracy' => 0.017, |
4087
|
|
|
], |
4088
|
|
|
[ |
4089
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7714', |
4090
|
|
|
'name' => 'ETRS89 to Lerwick height (2)', |
4091
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4092
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5742', |
4093
|
|
|
'accuracy' => 0.018, |
4094
|
|
|
], |
4095
|
|
|
[ |
4096
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7715', |
4097
|
|
|
'name' => 'ETRS89 to Stornoway height (2)', |
4098
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4099
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5746', |
4100
|
|
|
'accuracy' => 0.011, |
4101
|
|
|
], |
4102
|
|
|
[ |
4103
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7716', |
4104
|
|
|
'name' => 'ETRS89 to St. Marys height (2)', |
4105
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4106
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5749', |
4107
|
|
|
'accuracy' => 0.01, |
4108
|
|
|
], |
4109
|
|
|
[ |
4110
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7717', |
4111
|
|
|
'name' => 'ETRS89 to Douglas height (2)', |
4112
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4113
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5750', |
4114
|
|
|
'accuracy' => 0.03, |
4115
|
|
|
], |
4116
|
|
|
[ |
4117
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9484', |
4118
|
|
|
'name' => 'ETRS89 to NN54 height (1)', |
4119
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4120
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5776', |
4121
|
|
|
'accuracy' => 0.02, |
4122
|
|
|
], |
4123
|
|
|
[ |
4124
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10544', |
4125
|
|
|
'name' => 'ETRS89 to Cascais height (1)', |
4126
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4127
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5780', |
4128
|
|
|
'accuracy' => 0.04, |
4129
|
|
|
], |
4130
|
|
|
[ |
4131
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9410', |
4132
|
|
|
'name' => 'ETRS89 to Alicante height (1)', |
4133
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4134
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5782', |
4135
|
|
|
'accuracy' => 0.05, |
4136
|
|
|
], |
4137
|
|
|
[ |
4138
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9485', |
4139
|
|
|
'name' => 'ETRS89 to NN2000 height (1)', |
4140
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4141
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5941', |
4142
|
|
|
'accuracy' => 0.02, |
4143
|
|
|
], |
4144
|
|
|
[ |
4145
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9593', |
4146
|
|
|
'name' => 'ETRS89 to ETRS89 + NN2000 height (1)', |
4147
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4148
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5942', |
4149
|
|
|
'accuracy' => 0.02, |
4150
|
|
|
], |
4151
|
|
|
[ |
4152
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9594', |
4153
|
|
|
'name' => 'ETRS89 to ETRS89 + NN54 height (1)', |
4154
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4155
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6144', |
4156
|
|
|
'accuracy' => 0.02, |
4157
|
|
|
], |
4158
|
|
|
[ |
4159
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8362', |
4160
|
|
|
'name' => 'ETRS89 to ETRS89 + EVRF2007 height (1)', |
4161
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4162
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7423', |
4163
|
|
|
'accuracy' => 0.03, |
4164
|
|
|
], |
4165
|
|
|
[ |
4166
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7713', |
4167
|
|
|
'name' => 'ETRS89 to ODN (Offshore) height (1)', |
4168
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4169
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7707', |
4170
|
|
|
'accuracy' => 0.02, |
4171
|
|
|
], |
4172
|
|
|
[ |
4173
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::32777', |
4174
|
|
|
'name' => 'ETRS89 to ETRF2000 (geog3D to geocen)', |
4175
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4176
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7930', |
4177
|
|
|
'accuracy' => 0.0, |
4178
|
|
|
], |
4179
|
|
|
[ |
4180
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::32775', |
4181
|
|
|
'name' => 'ETRS89 to ETRF2000 (geog3D)', |
4182
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4183
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7931', |
4184
|
|
|
'accuracy' => 0.0, |
4185
|
|
|
], |
4186
|
|
|
[ |
4187
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10567', |
4188
|
|
|
'name' => 'ETRS89 to Baltic 1957 height (2)', |
4189
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4190
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8357', |
4191
|
|
|
'accuracy' => 0.03, |
4192
|
|
|
], |
4193
|
|
|
[ |
4194
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10568', |
4195
|
|
|
'name' => 'ETRS89 to ETRS89 + Baltic 1957 height (2)', |
4196
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4197
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8360', |
4198
|
|
|
'accuracy' => 0.03, |
4199
|
|
|
], |
4200
|
|
|
[ |
4201
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8361', |
4202
|
|
|
'name' => 'ETRS89 to ETRS89 + Baltic 1957 height (1)', |
4203
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4204
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8360', |
4205
|
|
|
'accuracy' => 0.03, |
4206
|
|
|
], |
4207
|
|
|
[ |
4208
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9276', |
4209
|
|
|
'name' => 'ETRS89 to EVRF2000 Austria height (1)', |
4210
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4211
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9274', |
4212
|
|
|
'accuracy' => 0.05, |
4213
|
|
|
], |
4214
|
|
|
[ |
4215
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9597', |
4216
|
|
|
'name' => 'ETRS89 to ETRS89 + NAP height (2)', |
4217
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4218
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9286', |
4219
|
|
|
'accuracy' => 0.001, |
4220
|
|
|
], |
4221
|
|
|
[ |
4222
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9411', |
4223
|
|
|
'name' => 'ETRS89 to Mallorca height (1)', |
4224
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4225
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9392', |
4226
|
|
|
'accuracy' => 0.05, |
4227
|
|
|
], |
4228
|
|
|
[ |
4229
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9412', |
4230
|
|
|
'name' => 'ETRS89 to Menorca height (1)', |
4231
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4232
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9393', |
4233
|
|
|
'accuracy' => 0.05, |
4234
|
|
|
], |
4235
|
|
|
[ |
4236
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9413', |
4237
|
|
|
'name' => 'ETRS89 to Ibiza height (1)', |
4238
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4239
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9394', |
4240
|
|
|
'accuracy' => 0.05, |
4241
|
|
|
], |
4242
|
|
|
[ |
4243
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9414', |
4244
|
|
|
'name' => 'ETRS89 to Ceuta 2 height (1)', |
4245
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4246
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9402', |
4247
|
|
|
'accuracy' => 0.05, |
4248
|
|
|
], |
4249
|
|
|
[ |
4250
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9587', |
4251
|
|
|
'name' => 'ETRS89 to ETRS89 + ODN height (2)', |
4252
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4253
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9424', |
4254
|
|
|
'accuracy' => 0.008, |
4255
|
|
|
], |
4256
|
|
|
[ |
4257
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9588', |
4258
|
|
|
'name' => 'ETRS89 to ETRS89 + ODN (Offshore) height (1)', |
4259
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4260
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9425', |
4261
|
|
|
'accuracy' => 0.02, |
4262
|
|
|
], |
4263
|
|
|
[ |
4264
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9586', |
4265
|
|
|
'name' => 'ETRS89 to ETRS89 + ODN Orkney height (2)', |
4266
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4267
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9426', |
4268
|
|
|
'accuracy' => 0.017, |
4269
|
|
|
], |
4270
|
|
|
[ |
4271
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9589', |
4272
|
|
|
'name' => 'ETRS89 to ETRS89 + Lerwick height (2)', |
4273
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4274
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9427', |
4275
|
|
|
'accuracy' => 0.018, |
4276
|
|
|
], |
4277
|
|
|
[ |
4278
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9584', |
4279
|
|
|
'name' => 'ETRS89 to ETRS89 + Stornoway height (2)', |
4280
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4281
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9428', |
4282
|
|
|
'accuracy' => 0.011, |
4283
|
|
|
], |
4284
|
|
|
[ |
4285
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9590', |
4286
|
|
|
'name' => 'ETRS89 to ETRS89 + Douglas height (2)', |
4287
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4288
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9429', |
4289
|
|
|
'accuracy' => 0.03, |
4290
|
|
|
], |
4291
|
|
|
[ |
4292
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9585', |
4293
|
|
|
'name' => 'ETRS89 to ETRS89 + St. Marys height (2)', |
4294
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4295
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9430', |
4296
|
|
|
'accuracy' => 0.01, |
4297
|
|
|
], |
4298
|
|
|
[ |
4299
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9591', |
4300
|
|
|
'name' => 'ETRS89 to ETRS89 + Malin Head height (2)', |
4301
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4302
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9449', |
4303
|
|
|
'accuracy' => 0.023, |
4304
|
|
|
], |
4305
|
|
|
[ |
4306
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9592', |
4307
|
|
|
'name' => 'ETRS89 to ETRS89 + Belfast height (2)', |
4308
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4309
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9450', |
4310
|
|
|
'accuracy' => 0.014, |
4311
|
|
|
], |
4312
|
|
|
[ |
4313
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9914', |
4314
|
|
|
'name' => 'ETRS89 to BI height (1)', |
4315
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4316
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9451', |
4317
|
|
|
'accuracy' => 0.02, |
4318
|
|
|
], |
4319
|
|
|
[ |
4320
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9916', |
4321
|
|
|
'name' => 'ETRS89 to BI height (2)', |
4322
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4323
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9451', |
4324
|
|
|
'accuracy' => 0.014, |
4325
|
|
|
], |
4326
|
|
|
[ |
4327
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9918', |
4328
|
|
|
'name' => 'ETRS89 to BI height (3)', |
4329
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4330
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9451', |
4331
|
|
|
'accuracy' => 0.023, |
4332
|
|
|
], |
4333
|
|
|
[ |
4334
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9915', |
4335
|
|
|
'name' => 'ETRS89 to ETRS89 + BI height (1)', |
4336
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4337
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9452', |
4338
|
|
|
'accuracy' => 0.02, |
4339
|
|
|
], |
4340
|
|
|
[ |
4341
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9917', |
4342
|
|
|
'name' => 'ETRS89 to ETRS89 + BI height (2)', |
4343
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4344
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9452', |
4345
|
|
|
'accuracy' => 0.014, |
4346
|
|
|
], |
4347
|
|
|
[ |
4348
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9919', |
4349
|
|
|
'name' => 'ETRS89 to ETRS89 + BI height (3)', |
4350
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4351
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9452', |
4352
|
|
|
'accuracy' => 0.023, |
4353
|
|
|
], |
4354
|
|
|
[ |
4355
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9600', |
4356
|
|
|
'name' => 'ETRS89 to ETRS89 + EVRF2000 Austria height (1)', |
4357
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4358
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9500', |
4359
|
|
|
'accuracy' => 0.05, |
4360
|
|
|
], |
4361
|
|
|
[ |
4362
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9605', |
4363
|
|
|
'name' => 'ETRS89 to ETRS89 + Alicante height (1)', |
4364
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4365
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9505', |
4366
|
|
|
'accuracy' => 0.05, |
4367
|
|
|
], |
4368
|
|
|
[ |
4369
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9606', |
4370
|
|
|
'name' => 'ETRS89 to ETRS89 + Ceuta 2 height (1)', |
4371
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4372
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9506', |
4373
|
|
|
'accuracy' => 0.05, |
4374
|
|
|
], |
4375
|
|
|
[ |
4376
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9607', |
4377
|
|
|
'name' => 'ETRS89 to ETRS89 + Ibiza height (1)', |
4378
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4379
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9507', |
4380
|
|
|
'accuracy' => 0.05, |
4381
|
|
|
], |
4382
|
|
|
[ |
4383
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9608', |
4384
|
|
|
'name' => 'ETRS89 to ETRS89 + Mallorca height (1)', |
4385
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4386
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9508', |
4387
|
|
|
'accuracy' => 0.05, |
4388
|
|
|
], |
4389
|
|
|
[ |
4390
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9609', |
4391
|
|
|
'name' => 'ETRS89 to ETRS89 + Menorca height (1)', |
4392
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4393
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9509', |
4394
|
|
|
'accuracy' => 0.05, |
4395
|
|
|
], |
4396
|
|
|
[ |
4397
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9909', |
4398
|
|
|
'name' => 'ETRS89 to ETRS89 + Ostend height (1)', |
4399
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4937', |
4400
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9907', |
4401
|
|
|
'accuracy' => 0.02, |
4402
|
|
|
], |
4403
|
|
|
[ |
4404
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9225', |
4405
|
|
|
'name' => 'WGS 84 to ETRS89 (2)', |
4406
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4978', |
4407
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4936', |
4408
|
|
|
'accuracy' => 0.1, |
4409
|
|
|
], |
4410
|
|
|
[ |
4411
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4905', |
4412
|
|
|
'name' => 'PTRA08 to WGS 84 (1)', |
4413
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5013', |
4414
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
4415
|
|
|
'accuracy' => 1.0, |
4416
|
|
|
], |
4417
|
|
|
[ |
4418
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19985', |
4419
|
|
|
'name' => 'Europe Conformal 2001', |
4420
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5013', |
4421
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5632', |
4422
|
|
|
'accuracy' => 0, |
4423
|
|
|
], |
4424
|
|
|
[ |
4425
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19986', |
4426
|
|
|
'name' => 'Europe Equal Area 2001', |
4427
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5013', |
4428
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5633', |
4429
|
|
|
'accuracy' => 0, |
4430
|
|
|
], |
4431
|
|
|
[ |
4432
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5215', |
4433
|
|
|
'name' => 'Genoa 1942 height to EVRF2007 height (1)', |
4434
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5214', |
4435
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5621', |
4436
|
|
|
'accuracy' => 0.1, |
4437
|
|
|
], |
4438
|
|
|
[ |
4439
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5217', |
4440
|
|
|
'name' => 'Genoa 1942 height to EVRF2007 height (2)', |
4441
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5214', |
4442
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5621', |
4443
|
|
|
'accuracy' => 0.1, |
4444
|
|
|
], |
4445
|
|
|
[ |
4446
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5213', |
4447
|
|
|
'name' => 'Genoa 1942 height to EVRF2000 height (1)', |
4448
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5214', |
4449
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
4450
|
|
|
'accuracy' => 0.1, |
4451
|
|
|
], |
4452
|
|
|
[ |
4453
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5216', |
4454
|
|
|
'name' => 'Genoa 1942 height to EVRF2000 height (2)', |
4455
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5214', |
4456
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
4457
|
|
|
'accuracy' => 0.1, |
4458
|
|
|
], |
4459
|
|
|
[ |
4460
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9726', |
4461
|
|
|
'name' => 'Genoa 1942 height to Catania 1965 height (1)', |
4462
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5214', |
4463
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9721', |
4464
|
|
|
'accuracy' => 0.01, |
4465
|
|
|
], |
4466
|
|
|
[ |
4467
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5226', |
4468
|
|
|
'name' => 'S-JTSK/05 to ETRS89 (1)', |
4469
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5228', |
4470
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
4471
|
|
|
'accuracy' => 0.0, |
4472
|
|
|
], |
4473
|
|
|
[ |
4474
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5511', |
4475
|
|
|
'name' => 'Modified Krovak (Greenwich)', |
4476
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5228', |
4477
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5515', |
4478
|
|
|
'accuracy' => 0, |
4479
|
|
|
], |
4480
|
|
|
[ |
4481
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5512', |
4482
|
|
|
'name' => 'Modified Krovak East North (Greenwich)', |
4483
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5228', |
4484
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5516', |
4485
|
|
|
'accuracy' => 0, |
4486
|
|
|
], |
4487
|
|
|
[ |
4488
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5219', |
4489
|
|
|
'name' => 'Modified Krovak', |
4490
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5229', |
4491
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5224', |
4492
|
|
|
'accuracy' => 0, |
4493
|
|
|
], |
4494
|
|
|
[ |
4495
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5220', |
4496
|
|
|
'name' => 'Modified Krovak East North', |
4497
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5229', |
4498
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5225', |
4499
|
|
|
'accuracy' => 0, |
4500
|
|
|
], |
4501
|
|
|
[ |
4502
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5238', |
4503
|
|
|
'name' => 'S-JTSK/05 (Ferro) to S-JTSK/05 (1)', |
4504
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5229', |
4505
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5228', |
4506
|
|
|
'accuracy' => 0.0, |
4507
|
|
|
], |
4508
|
|
|
[ |
4509
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5260', |
4510
|
|
|
'name' => 'TUREF to ETRS89 (1)', |
4511
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5252', |
4512
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
4513
|
|
|
'accuracy' => 0.1, |
4514
|
|
|
], |
4515
|
|
|
[ |
4516
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19986', |
4517
|
|
|
'name' => 'Europe Equal Area 2001', |
4518
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5252', |
4519
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5636', |
4520
|
|
|
'accuracy' => 0, |
4521
|
|
|
], |
4522
|
|
|
[ |
4523
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19985', |
4524
|
|
|
'name' => 'Europe Conformal 2001', |
4525
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5252', |
4526
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5637', |
4527
|
|
|
'accuracy' => 0, |
4528
|
|
|
], |
4529
|
|
|
[ |
4530
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5327', |
4531
|
|
|
'name' => 'ISN2004 to WGS 84 (1)', |
4532
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5324', |
4533
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
4534
|
|
|
'accuracy' => 1.0, |
4535
|
|
|
], |
4536
|
|
|
[ |
4537
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5326', |
4538
|
|
|
'name' => 'Iceland Lambert 2004', |
4539
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5324', |
4540
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5325', |
4541
|
|
|
'accuracy' => 0, |
4542
|
|
|
], |
4543
|
|
|
[ |
4544
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19986', |
4545
|
|
|
'name' => 'Europe Equal Area 2001', |
4546
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5324', |
4547
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5638', |
4548
|
|
|
'accuracy' => 0, |
4549
|
|
|
], |
4550
|
|
|
[ |
4551
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19985', |
4552
|
|
|
'name' => 'Europe Conformal 2001', |
4553
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5324', |
4554
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5639', |
4555
|
|
|
'accuracy' => 0, |
4556
|
|
|
], |
4557
|
|
|
[ |
4558
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9233', |
4559
|
|
|
'name' => 'ISN2004 to ISN2016 (1)', |
4560
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5324', |
4561
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8086', |
4562
|
|
|
'accuracy' => 0.05, |
4563
|
|
|
], |
4564
|
|
|
[ |
4565
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9946', |
4566
|
|
|
'name' => 'Iceland Lambert Azimuthal Equal Area', |
4567
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5324', |
4568
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9947', |
4569
|
|
|
'accuracy' => 0, |
4570
|
|
|
], |
4571
|
|
|
[ |
4572
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10575', |
4573
|
|
|
'name' => 'ITRF2008 to ETRF2020 (1)', |
4574
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5332', |
4575
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10569', |
4576
|
|
|
'accuracy' => 0.0, |
4577
|
|
|
], |
4578
|
|
|
[ |
4579
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7951', |
4580
|
|
|
'name' => 'ITRF2008 to ETRF2000 (1)', |
4581
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5332', |
4582
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7930', |
4583
|
|
|
'accuracy' => 0.0, |
4584
|
|
|
], |
4585
|
|
|
[ |
4586
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8869', |
4587
|
|
|
'name' => 'ITRF2008 to ETRF2014 (1)', |
4588
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5332', |
4589
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8401', |
4590
|
|
|
'accuracy' => 0.0, |
4591
|
|
|
], |
4592
|
|
|
[ |
4593
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7817', |
4594
|
|
|
'name' => 'UCS-2000 to ITRF2000 (1)', |
4595
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5558', |
4596
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4919', |
4597
|
|
|
'accuracy' => 0.0, |
4598
|
|
|
], |
4599
|
|
|
[ |
4600
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6374', |
4601
|
|
|
'name' => 'Ukraine TM zone 7', |
4602
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4603
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6381', |
4604
|
|
|
'accuracy' => 0, |
4605
|
|
|
], |
4606
|
|
|
[ |
4607
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6375', |
4608
|
|
|
'name' => 'Ukraine TM zone 8', |
4609
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4610
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6382', |
4611
|
|
|
'accuracy' => 0, |
4612
|
|
|
], |
4613
|
|
|
[ |
4614
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6376', |
4615
|
|
|
'name' => 'Ukraine TM zone 9', |
4616
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4617
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6383', |
4618
|
|
|
'accuracy' => 0, |
4619
|
|
|
], |
4620
|
|
|
[ |
4621
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6377', |
4622
|
|
|
'name' => 'Ukraine TM zone 10', |
4623
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4624
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6384', |
4625
|
|
|
'accuracy' => 0, |
4626
|
|
|
], |
4627
|
|
|
[ |
4628
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6378', |
4629
|
|
|
'name' => 'Ukraine TM zone 11', |
4630
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4631
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6385', |
4632
|
|
|
'accuracy' => 0, |
4633
|
|
|
], |
4634
|
|
|
[ |
4635
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6379', |
4636
|
|
|
'name' => 'Ukraine TM zone 12', |
4637
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4638
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6386', |
4639
|
|
|
'accuracy' => 0, |
4640
|
|
|
], |
4641
|
|
|
[ |
4642
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6380', |
4643
|
|
|
'name' => 'Ukraine TM zone 13', |
4644
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4645
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6387', |
4646
|
|
|
'accuracy' => 0, |
4647
|
|
|
], |
4648
|
|
|
[ |
4649
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9796', |
4650
|
|
|
'name' => 'Local coordinate system of Kyiv', |
4651
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4652
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9821', |
4653
|
|
|
'accuracy' => 0, |
4654
|
|
|
], |
4655
|
|
|
[ |
4656
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9797', |
4657
|
|
|
'name' => 'Local coordinate system of Crimea region', |
4658
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4659
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9831', |
4660
|
|
|
'accuracy' => 0, |
4661
|
|
|
], |
4662
|
|
|
[ |
4663
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9798', |
4664
|
|
|
'name' => 'Local coordinate system of Vinnytsia region', |
4665
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4666
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9832', |
4667
|
|
|
'accuracy' => 0, |
4668
|
|
|
], |
4669
|
|
|
[ |
4670
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9799', |
4671
|
|
|
'name' => 'Local coordinate system of Volyn region', |
4672
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4673
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9833', |
4674
|
|
|
'accuracy' => 0, |
4675
|
|
|
], |
4676
|
|
|
[ |
4677
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9800', |
4678
|
|
|
'name' => 'Local coordinate system of Dnipropetrovsk region', |
4679
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4680
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9834', |
4681
|
|
|
'accuracy' => 0, |
4682
|
|
|
], |
4683
|
|
|
[ |
4684
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9801', |
4685
|
|
|
'name' => 'Local coordinate system of Donetsk region', |
4686
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4687
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9835', |
4688
|
|
|
'accuracy' => 0, |
4689
|
|
|
], |
4690
|
|
|
[ |
4691
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9802', |
4692
|
|
|
'name' => 'Local coordinate system of Zhytomyr region', |
4693
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4694
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9836', |
4695
|
|
|
'accuracy' => 0, |
4696
|
|
|
], |
4697
|
|
|
[ |
4698
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9803', |
4699
|
|
|
'name' => 'Local coordinate system of Zakarpattia region', |
4700
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4701
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9837', |
4702
|
|
|
'accuracy' => 0, |
4703
|
|
|
], |
4704
|
|
|
[ |
4705
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9804', |
4706
|
|
|
'name' => 'Local coordinate system of Zaporizhzhia region', |
4707
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4708
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9838', |
4709
|
|
|
'accuracy' => 0, |
4710
|
|
|
], |
4711
|
|
|
[ |
4712
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9805', |
4713
|
|
|
'name' => 'Local coordinate system of Ivano-Frankivsk region', |
4714
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4715
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9839', |
4716
|
|
|
'accuracy' => 0, |
4717
|
|
|
], |
4718
|
|
|
[ |
4719
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9806', |
4720
|
|
|
'name' => 'Local coordinate system of Kirovohrad region', |
4721
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4722
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9840', |
4723
|
|
|
'accuracy' => 0, |
4724
|
|
|
], |
4725
|
|
|
[ |
4726
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9807', |
4727
|
|
|
'name' => 'Local coordinate system of Luhansk region', |
4728
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4729
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9841', |
4730
|
|
|
'accuracy' => 0, |
4731
|
|
|
], |
4732
|
|
|
[ |
4733
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9808', |
4734
|
|
|
'name' => 'Local coordinate system of Lviv region', |
4735
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4736
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9851', |
4737
|
|
|
'accuracy' => 0, |
4738
|
|
|
], |
4739
|
|
|
[ |
4740
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9809', |
4741
|
|
|
'name' => 'Local coordinate system of Mykolaiv region', |
4742
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4743
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9852', |
4744
|
|
|
'accuracy' => 0, |
4745
|
|
|
], |
4746
|
|
|
[ |
4747
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9810', |
4748
|
|
|
'name' => 'Local coordinate system of Odessa region', |
4749
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4750
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9853', |
4751
|
|
|
'accuracy' => 0, |
4752
|
|
|
], |
4753
|
|
|
[ |
4754
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9811', |
4755
|
|
|
'name' => 'Local coordinate system of Poltava region', |
4756
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4757
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9854', |
4758
|
|
|
'accuracy' => 0, |
4759
|
|
|
], |
4760
|
|
|
[ |
4761
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9812', |
4762
|
|
|
'name' => 'Local coordinate system of Rivne and Khmelnytsky regions', |
4763
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4764
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9855', |
4765
|
|
|
'accuracy' => 0, |
4766
|
|
|
], |
4767
|
|
|
[ |
4768
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9813', |
4769
|
|
|
'name' => 'Local coordinate system of Sumy region', |
4770
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4771
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9856', |
4772
|
|
|
'accuracy' => 0, |
4773
|
|
|
], |
4774
|
|
|
[ |
4775
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9814', |
4776
|
|
|
'name' => 'Local coordinate system of Ternopil region', |
4777
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4778
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9857', |
4779
|
|
|
'accuracy' => 0, |
4780
|
|
|
], |
4781
|
|
|
[ |
4782
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9815', |
4783
|
|
|
'name' => 'Local coordinate system of Kharkiv region', |
4784
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4785
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9858', |
4786
|
|
|
'accuracy' => 0, |
4787
|
|
|
], |
4788
|
|
|
[ |
4789
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9816', |
4790
|
|
|
'name' => 'Local coordinate system of Kherson region', |
4791
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4792
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9859', |
4793
|
|
|
'accuracy' => 0, |
4794
|
|
|
], |
4795
|
|
|
[ |
4796
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9812', |
4797
|
|
|
'name' => 'Local coordinate system of Rivne and Khmelnytsky regions', |
4798
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4799
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9860', |
4800
|
|
|
'accuracy' => 0, |
4801
|
|
|
], |
4802
|
|
|
[ |
4803
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9817', |
4804
|
|
|
'name' => 'Local coordinate system of Cherkasy region', |
4805
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4806
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9861', |
4807
|
|
|
'accuracy' => 0, |
4808
|
|
|
], |
4809
|
|
|
[ |
4810
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9818', |
4811
|
|
|
'name' => 'Local coordinate system of Chernivtsi region', |
4812
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4813
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9862', |
4814
|
|
|
'accuracy' => 0, |
4815
|
|
|
], |
4816
|
|
|
[ |
4817
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9819', |
4818
|
|
|
'name' => 'Local coordinate system of Chernihiv region', |
4819
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4820
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9863', |
4821
|
|
|
'accuracy' => 0, |
4822
|
|
|
], |
4823
|
|
|
[ |
4824
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9796', |
4825
|
|
|
'name' => 'Local coordinate system of Kyiv', |
4826
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4827
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9864', |
4828
|
|
|
'accuracy' => 0, |
4829
|
|
|
], |
4830
|
|
|
[ |
4831
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9820', |
4832
|
|
|
'name' => 'Local coordinate system of Sevastopol city', |
4833
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5561', |
4834
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9865', |
4835
|
|
|
'accuracy' => 0, |
4836
|
|
|
], |
4837
|
|
|
[ |
4838
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5599', |
4839
|
|
|
'name' => 'FEH2010 to WGS 84 (1)', |
4840
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5593', |
4841
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
4842
|
|
|
'accuracy' => 1.0, |
4843
|
|
|
], |
4844
|
|
|
[ |
4845
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5595', |
4846
|
|
|
'name' => 'Fehmarnbelt TM', |
4847
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5593', |
4848
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5596', |
4849
|
|
|
'accuracy' => 0, |
4850
|
|
|
], |
4851
|
|
|
[ |
4852
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5197', |
4853
|
|
|
'name' => 'HVRS71 height to EVRF2007 height (1)', |
4854
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5610', |
4855
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5621', |
4856
|
|
|
'accuracy' => 0.1, |
4857
|
|
|
], |
4858
|
|
|
[ |
4859
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5196', |
4860
|
|
|
'name' => 'HVRS71 height to EVRF2000 height (1)', |
4861
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5610', |
4862
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
4863
|
|
|
'accuracy' => 0.1, |
4864
|
|
|
], |
4865
|
|
|
[ |
4866
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5440', |
4867
|
|
|
'name' => 'Baltic 1977 depth to Caspian depth (1)', |
4868
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5612', |
4869
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5706', |
4870
|
|
|
'accuracy' => 0.0, |
4871
|
|
|
], |
4872
|
|
|
[ |
4873
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5445', |
4874
|
|
|
'name' => 'Baltic 1977 depth to AIOC95 depth (1)', |
4875
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5612', |
4876
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5734', |
4877
|
|
|
'accuracy' => 0.0, |
4878
|
|
|
], |
4879
|
|
|
[ |
4880
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5208', |
4881
|
|
|
'name' => 'RH2000 height to EVRF2007 height (1)', |
4882
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5613', |
4883
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5621', |
4884
|
|
|
'accuracy' => 0.1, |
4885
|
|
|
], |
4886
|
|
|
[ |
4887
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4651', |
4888
|
|
|
'name' => 'ODN height to EVRF2000 height (1)', |
4889
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5701', |
4890
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
4891
|
|
|
'accuracy' => 0.1, |
4892
|
|
|
], |
4893
|
|
|
[ |
4894
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9562', |
4895
|
|
|
'name' => 'ODN height to EVRF2019 mean-tide height (2)', |
4896
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5701', |
4897
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9390', |
4898
|
|
|
'accuracy' => 0.02, |
4899
|
|
|
], |
4900
|
|
|
[ |
4901
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5438', |
4902
|
|
|
'name' => 'Baltic 1977 height to Caspian height (1)', |
4903
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5705', |
4904
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5611', |
4905
|
|
|
'accuracy' => 0.0, |
4906
|
|
|
], |
4907
|
|
|
[ |
4908
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5203', |
4909
|
|
|
'name' => 'Baltic 1977 height to EVRF2007 height (2)', |
4910
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5705', |
4911
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5621', |
4912
|
|
|
'accuracy' => 0.1, |
4913
|
|
|
], |
4914
|
|
|
[ |
4915
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5204', |
4916
|
|
|
'name' => 'Baltic 1977 height to EVRF2007 height (3)', |
4917
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5705', |
4918
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5621', |
4919
|
|
|
'accuracy' => 0.1, |
4920
|
|
|
], |
4921
|
|
|
[ |
4922
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5210', |
4923
|
|
|
'name' => 'Baltic 1977 height to EVRF2007 height (4)', |
4924
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5705', |
4925
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5621', |
4926
|
|
|
'accuracy' => 0.1, |
4927
|
|
|
], |
4928
|
|
|
[ |
4929
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5209', |
4930
|
|
|
'name' => 'Baltic 1977 height to EVRF2000 height (5)', |
4931
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5705', |
4932
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
4933
|
|
|
'accuracy' => 0.1, |
4934
|
|
|
], |
4935
|
|
|
[ |
4936
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5436', |
4937
|
|
|
'name' => 'Baltic 1977 height to EVRF2000 height (1)', |
4938
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5705', |
4939
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
4940
|
|
|
'accuracy' => 0.1, |
4941
|
|
|
], |
4942
|
|
|
[ |
4943
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5437', |
4944
|
|
|
'name' => 'Baltic 1977 height to EVRF2000 height (2)', |
4945
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5705', |
4946
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
4947
|
|
|
'accuracy' => 0.1, |
4948
|
|
|
], |
4949
|
|
|
[ |
4950
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5447', |
4951
|
|
|
'name' => 'Baltic 1977 height to Black Sea height (1)', |
4952
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5705', |
4953
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5735', |
4954
|
|
|
'accuracy' => 0.0, |
4955
|
|
|
], |
4956
|
|
|
[ |
4957
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5443', |
4958
|
|
|
'name' => 'Baltic 1977 height to AIOC95 height (1)', |
4959
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5705', |
4960
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5797', |
4961
|
|
|
'accuracy' => 0.0, |
4962
|
|
|
], |
4963
|
|
|
[ |
4964
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5425', |
4965
|
|
|
'name' => 'NAP height to EVRF2000 height (1)', |
4966
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5709', |
4967
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
4968
|
|
|
'accuracy' => 0.1, |
4969
|
|
|
], |
4970
|
|
|
[ |
4971
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5199', |
4972
|
|
|
'name' => 'Ostend height to EVRF2007 height (1)', |
4973
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5710', |
4974
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5621', |
4975
|
|
|
'accuracy' => 0.1, |
4976
|
|
|
], |
4977
|
|
|
[ |
4978
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5198', |
4979
|
|
|
'name' => 'Ostend height to EVRF2000 height (1)', |
4980
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5710', |
4981
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
4982
|
|
|
'accuracy' => 0.1, |
4983
|
|
|
], |
4984
|
|
|
[ |
4985
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5432', |
4986
|
|
|
'name' => 'N60 height to EVRF2000 height (1)', |
4987
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5717', |
4988
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
4989
|
|
|
'accuracy' => 0.1, |
4990
|
|
|
], |
4991
|
|
|
[ |
4992
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5430', |
4993
|
|
|
'name' => 'RH70 height to EVRF2000 height (1)', |
4994
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5718', |
4995
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
4996
|
|
|
'accuracy' => 0.1, |
4997
|
|
|
], |
4998
|
|
|
[ |
4999
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5419', |
5000
|
|
|
'name' => 'NGF-IGN69 height to EVRF2000 height (1)', |
5001
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5720', |
5002
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
5003
|
|
|
'accuracy' => 0.1, |
5004
|
|
|
], |
5005
|
|
|
[ |
5006
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5207', |
5007
|
|
|
'name' => 'LN02 height to EVRF2007 height (1)', |
5008
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5728', |
5009
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5621', |
5010
|
|
|
'accuracy' => 0.1, |
5011
|
|
|
], |
5012
|
|
|
[ |
5013
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5431', |
5014
|
|
|
'name' => 'LN02 height to EVRF2000 height (1)', |
5015
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5728', |
5016
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
5017
|
|
|
'accuracy' => 0.1, |
5018
|
|
|
], |
5019
|
|
|
[ |
5020
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5452', |
5021
|
|
|
'name' => 'Belfast height to Malin Head height (1)', |
5022
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5732', |
5023
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5731', |
5024
|
|
|
'accuracy' => 0.01, |
5025
|
|
|
], |
5026
|
|
|
[ |
5027
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5417', |
5028
|
|
|
'name' => 'DNN height to EVRF2000 height (1)', |
5029
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5733', |
5030
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
5031
|
|
|
'accuracy' => 0.1, |
5032
|
|
|
], |
5033
|
|
|
[ |
5034
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5403', |
5035
|
|
|
'name' => 'AIOC95 depth to Caspian depth (1)', |
5036
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5734', |
5037
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5706', |
5038
|
|
|
'accuracy' => 0.0, |
5039
|
|
|
], |
5040
|
|
|
[ |
5041
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9551', |
5042
|
|
|
'name' => 'Antalya height to EVRF2019 height (2)', |
5043
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5775', |
5044
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9389', |
5045
|
|
|
'accuracy' => 0.02, |
5046
|
|
|
], |
5047
|
|
|
[ |
5048
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9552', |
5049
|
|
|
'name' => 'Antalya height to EVRF2019 mean-tide height (2)', |
5050
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5775', |
5051
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9390', |
5052
|
|
|
'accuracy' => 0.02, |
5053
|
|
|
], |
5054
|
|
|
[ |
5055
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5426', |
5056
|
|
|
'name' => 'NN54 height to EVRF2000 height (1)', |
5057
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5776', |
5058
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
5059
|
|
|
'accuracy' => 0.1, |
5060
|
|
|
], |
5061
|
|
|
[ |
5062
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5557', |
5063
|
|
|
'name' => 'GHA height to EVRF2007 height (1)', |
5064
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5778', |
5065
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5621', |
5066
|
|
|
'accuracy' => 0.1, |
5067
|
|
|
], |
5068
|
|
|
[ |
5069
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5415', |
5070
|
|
|
'name' => 'GHA height to EVRF2000 height (1)', |
5071
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5778', |
5072
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
5073
|
|
|
'accuracy' => 0.1, |
5074
|
|
|
], |
5075
|
|
|
[ |
5076
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9275', |
5077
|
|
|
'name' => 'GHA height to EVRF2000 Austria height (1)', |
5078
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5778', |
5079
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9274', |
5080
|
|
|
'accuracy' => 0.05, |
5081
|
|
|
], |
5082
|
|
|
[ |
5083
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5428', |
5084
|
|
|
'name' => 'SVS2000 height to EVRF2000 height (1)', |
5085
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5779', |
5086
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
5087
|
|
|
'accuracy' => 0.1, |
5088
|
|
|
], |
5089
|
|
|
[ |
5090
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5427', |
5091
|
|
|
'name' => 'Cascais height to EVRF2000 height (1)', |
5092
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5780', |
5093
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
5094
|
|
|
'accuracy' => 0.1, |
5095
|
|
|
], |
5096
|
|
|
[ |
5097
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5206', |
5098
|
|
|
'name' => 'Constanta height to EVRF2007 height (1)', |
5099
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5781', |
5100
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5621', |
5101
|
|
|
'accuracy' => 0.1, |
5102
|
|
|
], |
5103
|
|
|
[ |
5104
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5205', |
5105
|
|
|
'name' => 'Constanta height to EVRF2000 height (1)', |
5106
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5781', |
5107
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
5108
|
|
|
'accuracy' => 0.1, |
5109
|
|
|
], |
5110
|
|
|
[ |
5111
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5429', |
5112
|
|
|
'name' => 'Alicante height to EVRF2000 height (1)', |
5113
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5782', |
5114
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
5115
|
|
|
'accuracy' => 0.1, |
5116
|
|
|
], |
5117
|
|
|
[ |
5118
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5211', |
5119
|
|
|
'name' => 'DHHN92 height to EVRF2007 height (1)', |
5120
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5783', |
5121
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5621', |
5122
|
|
|
'accuracy' => 0.1, |
5123
|
|
|
], |
5124
|
|
|
[ |
5125
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5420', |
5126
|
|
|
'name' => 'DHHN92 height to EVRF2000 height (1)', |
5127
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5783', |
5128
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
5129
|
|
|
'accuracy' => 0.1, |
5130
|
|
|
], |
5131
|
|
|
[ |
5132
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5212', |
5133
|
|
|
'name' => 'DHHN85 height to EVRF2007 height (1)', |
5134
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5784', |
5135
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5621', |
5136
|
|
|
'accuracy' => 0.1, |
5137
|
|
|
], |
5138
|
|
|
[ |
5139
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5421', |
5140
|
|
|
'name' => 'DHHN85 height to EVRF2000 height (1)', |
5141
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5784', |
5142
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
5143
|
|
|
'accuracy' => 0.1, |
5144
|
|
|
], |
5145
|
|
|
[ |
5146
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5422', |
5147
|
|
|
'name' => 'SNN76 height to EVRF2000 height (1)', |
5148
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5785', |
5149
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
5150
|
|
|
'accuracy' => 0.1, |
5151
|
|
|
], |
5152
|
|
|
[ |
5153
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5200', |
5154
|
|
|
'name' => 'Baltic 1982 height to EVRF2007 height (1)', |
5155
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5786', |
5156
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5621', |
5157
|
|
|
'accuracy' => 0.1, |
5158
|
|
|
], |
5159
|
|
|
[ |
5160
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5416', |
5161
|
|
|
'name' => 'Baltic 1982 height to EVRF2000 height (1)', |
5162
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5786', |
5163
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
5164
|
|
|
'accuracy' => 0.1, |
5165
|
|
|
], |
5166
|
|
|
[ |
5167
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5424', |
5168
|
|
|
'name' => 'EOMA 1980 height to EVRF2000 height (1)', |
5169
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5787', |
5170
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
5171
|
|
|
'accuracy' => 0.1, |
5172
|
|
|
], |
5173
|
|
|
[ |
5174
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7720', |
5175
|
|
|
'name' => 'CGRS93 to ETRS89 (1)', |
5176
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6311', |
5177
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
5178
|
|
|
'accuracy' => 0.1, |
5179
|
|
|
], |
5180
|
|
|
[ |
5181
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6308', |
5182
|
|
|
'name' => 'Cyprus Transverse Mercator', |
5183
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6311', |
5184
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6312', |
5185
|
|
|
'accuracy' => 0, |
5186
|
|
|
], |
5187
|
|
|
[ |
5188
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6710', |
5189
|
|
|
'name' => 'RDN2008 to ETRS89 (1)', |
5190
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6706', |
5191
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
5192
|
|
|
'accuracy' => 0.0, |
5193
|
|
|
], |
5194
|
|
|
[ |
5195
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6877', |
5196
|
|
|
'name' => 'Italy zone', |
5197
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6706', |
5198
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6875', |
5199
|
|
|
'accuracy' => 0, |
5200
|
|
|
], |
5201
|
|
|
[ |
5202
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6878', |
5203
|
|
|
'name' => 'Italy zone 12', |
5204
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6706', |
5205
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6876', |
5206
|
|
|
'accuracy' => 0, |
5207
|
|
|
], |
5208
|
|
|
[ |
5209
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6877', |
5210
|
|
|
'name' => 'Italy zone', |
5211
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6706', |
5212
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7794', |
5213
|
|
|
'accuracy' => 0, |
5214
|
|
|
], |
5215
|
|
|
[ |
5216
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6878', |
5217
|
|
|
'name' => 'Italy zone 12', |
5218
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6706', |
5219
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7795', |
5220
|
|
|
'accuracy' => 0, |
5221
|
|
|
], |
5222
|
|
|
[ |
5223
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7705', |
5224
|
|
|
'name' => 'GSK-2011 to PZ-90.11 (1)', |
5225
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7681', |
5226
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7679', |
5227
|
|
|
'accuracy' => 0.03, |
5228
|
|
|
], |
5229
|
|
|
[ |
5230
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16908', |
5231
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 8', |
5232
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5233
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21208', |
5234
|
|
|
'accuracy' => 0, |
5235
|
|
|
], |
5236
|
|
|
[ |
5237
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16909', |
5238
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 9', |
5239
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5240
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21209', |
5241
|
|
|
'accuracy' => 0, |
5242
|
|
|
], |
5243
|
|
|
[ |
5244
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16911', |
5245
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 11', |
5246
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5247
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21211', |
5248
|
|
|
'accuracy' => 0, |
5249
|
|
|
], |
5250
|
|
|
[ |
5251
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16912', |
5252
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 12', |
5253
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5254
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21212', |
5255
|
|
|
'accuracy' => 0, |
5256
|
|
|
], |
5257
|
|
|
[ |
5258
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16913', |
5259
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 13', |
5260
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5261
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21213', |
5262
|
|
|
'accuracy' => 0, |
5263
|
|
|
], |
5264
|
|
|
[ |
5265
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16914', |
5266
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 14', |
5267
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5268
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21214', |
5269
|
|
|
'accuracy' => 0, |
5270
|
|
|
], |
5271
|
|
|
[ |
5272
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16915', |
5273
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 15', |
5274
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5275
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21215', |
5276
|
|
|
'accuracy' => 0, |
5277
|
|
|
], |
5278
|
|
|
[ |
5279
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16916', |
5280
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 16', |
5281
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5282
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21216', |
5283
|
|
|
'accuracy' => 0, |
5284
|
|
|
], |
5285
|
|
|
[ |
5286
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16917', |
5287
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 17', |
5288
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5289
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21217', |
5290
|
|
|
'accuracy' => 0, |
5291
|
|
|
], |
5292
|
|
|
[ |
5293
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16918', |
5294
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 18', |
5295
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5296
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21218', |
5297
|
|
|
'accuracy' => 0, |
5298
|
|
|
], |
5299
|
|
|
[ |
5300
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16919', |
5301
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 19', |
5302
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5303
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21219', |
5304
|
|
|
'accuracy' => 0, |
5305
|
|
|
], |
5306
|
|
|
[ |
5307
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16920', |
5308
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 20', |
5309
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5310
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21220', |
5311
|
|
|
'accuracy' => 0, |
5312
|
|
|
], |
5313
|
|
|
[ |
5314
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16922', |
5315
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 22', |
5316
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5317
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21222', |
5318
|
|
|
'accuracy' => 0, |
5319
|
|
|
], |
5320
|
|
|
[ |
5321
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16923', |
5322
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 23', |
5323
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5324
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21223', |
5325
|
|
|
'accuracy' => 0, |
5326
|
|
|
], |
5327
|
|
|
[ |
5328
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16924', |
5329
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 24', |
5330
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5331
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21224', |
5332
|
|
|
'accuracy' => 0, |
5333
|
|
|
], |
5334
|
|
|
[ |
5335
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16925', |
5336
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 25', |
5337
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5338
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21225', |
5339
|
|
|
'accuracy' => 0, |
5340
|
|
|
], |
5341
|
|
|
[ |
5342
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16926', |
5343
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 26', |
5344
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5345
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21226', |
5346
|
|
|
'accuracy' => 0, |
5347
|
|
|
], |
5348
|
|
|
[ |
5349
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16927', |
5350
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 27', |
5351
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5352
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21227', |
5353
|
|
|
'accuracy' => 0, |
5354
|
|
|
], |
5355
|
|
|
[ |
5356
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16928', |
5357
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 28', |
5358
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5359
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21228', |
5360
|
|
|
'accuracy' => 0, |
5361
|
|
|
], |
5362
|
|
|
[ |
5363
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16929', |
5364
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 29', |
5365
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5366
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21229', |
5367
|
|
|
'accuracy' => 0, |
5368
|
|
|
], |
5369
|
|
|
[ |
5370
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16930', |
5371
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 30', |
5372
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5373
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21230', |
5374
|
|
|
'accuracy' => 0, |
5375
|
|
|
], |
5376
|
|
|
[ |
5377
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16931', |
5378
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 31', |
5379
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5380
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21231', |
5381
|
|
|
'accuracy' => 0, |
5382
|
|
|
], |
5383
|
|
|
[ |
5384
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16932', |
5385
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 32', |
5386
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5387
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21232', |
5388
|
|
|
'accuracy' => 0, |
5389
|
|
|
], |
5390
|
|
|
[ |
5391
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16933', |
5392
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 33', |
5393
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5394
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21233', |
5395
|
|
|
'accuracy' => 0, |
5396
|
|
|
], |
5397
|
|
|
[ |
5398
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16934', |
5399
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 34', |
5400
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5401
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21234', |
5402
|
|
|
'accuracy' => 0, |
5403
|
|
|
], |
5404
|
|
|
[ |
5405
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16935', |
5406
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 35', |
5407
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5408
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21235', |
5409
|
|
|
'accuracy' => 0, |
5410
|
|
|
], |
5411
|
|
|
[ |
5412
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16936', |
5413
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 36', |
5414
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5415
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21236', |
5416
|
|
|
'accuracy' => 0, |
5417
|
|
|
], |
5418
|
|
|
[ |
5419
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16937', |
5420
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 37', |
5421
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5422
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21237', |
5423
|
|
|
'accuracy' => 0, |
5424
|
|
|
], |
5425
|
|
|
[ |
5426
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16938', |
5427
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 38', |
5428
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5429
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21238', |
5430
|
|
|
'accuracy' => 0, |
5431
|
|
|
], |
5432
|
|
|
[ |
5433
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16939', |
5434
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 39', |
5435
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5436
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21239', |
5437
|
|
|
'accuracy' => 0, |
5438
|
|
|
], |
5439
|
|
|
[ |
5440
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16940', |
5441
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 40', |
5442
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5443
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21240', |
5444
|
|
|
'accuracy' => 0, |
5445
|
|
|
], |
5446
|
|
|
[ |
5447
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16941', |
5448
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 41', |
5449
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5450
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21241', |
5451
|
|
|
'accuracy' => 0, |
5452
|
|
|
], |
5453
|
|
|
[ |
5454
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16942', |
5455
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 42', |
5456
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5457
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21242', |
5458
|
|
|
'accuracy' => 0, |
5459
|
|
|
], |
5460
|
|
|
[ |
5461
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16943', |
5462
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 43', |
5463
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5464
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21243', |
5465
|
|
|
'accuracy' => 0, |
5466
|
|
|
], |
5467
|
|
|
[ |
5468
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16944', |
5469
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 44', |
5470
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5471
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21244', |
5472
|
|
|
'accuracy' => 0, |
5473
|
|
|
], |
5474
|
|
|
[ |
5475
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16945', |
5476
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 45', |
5477
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5478
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21245', |
5479
|
|
|
'accuracy' => 0, |
5480
|
|
|
], |
5481
|
|
|
[ |
5482
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16946', |
5483
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 46', |
5484
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5485
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21246', |
5486
|
|
|
'accuracy' => 0, |
5487
|
|
|
], |
5488
|
|
|
[ |
5489
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16947', |
5490
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 47', |
5491
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5492
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21247', |
5493
|
|
|
'accuracy' => 0, |
5494
|
|
|
], |
5495
|
|
|
[ |
5496
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16948', |
5497
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 48', |
5498
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5499
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21248', |
5500
|
|
|
'accuracy' => 0, |
5501
|
|
|
], |
5502
|
|
|
[ |
5503
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16949', |
5504
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 49', |
5505
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5506
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21249', |
5507
|
|
|
'accuracy' => 0, |
5508
|
|
|
], |
5509
|
|
|
[ |
5510
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16950', |
5511
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 50', |
5512
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5513
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21250', |
5514
|
|
|
'accuracy' => 0, |
5515
|
|
|
], |
5516
|
|
|
[ |
5517
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16951', |
5518
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 51', |
5519
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5520
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21251', |
5521
|
|
|
'accuracy' => 0, |
5522
|
|
|
], |
5523
|
|
|
[ |
5524
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16952', |
5525
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 52', |
5526
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5527
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21252', |
5528
|
|
|
'accuracy' => 0, |
5529
|
|
|
], |
5530
|
|
|
[ |
5531
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16953', |
5532
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 53', |
5533
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5534
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21253', |
5535
|
|
|
'accuracy' => 0, |
5536
|
|
|
], |
5537
|
|
|
[ |
5538
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16954', |
5539
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 54', |
5540
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5541
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21254', |
5542
|
|
|
'accuracy' => 0, |
5543
|
|
|
], |
5544
|
|
|
[ |
5545
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16955', |
5546
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 55', |
5547
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5548
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21255', |
5549
|
|
|
'accuracy' => 0, |
5550
|
|
|
], |
5551
|
|
|
[ |
5552
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16956', |
5553
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 56', |
5554
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5555
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21256', |
5556
|
|
|
'accuracy' => 0, |
5557
|
|
|
], |
5558
|
|
|
[ |
5559
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16957', |
5560
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 57', |
5561
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5562
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21257', |
5563
|
|
|
'accuracy' => 0, |
5564
|
|
|
], |
5565
|
|
|
[ |
5566
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16958', |
5567
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 58', |
5568
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5569
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21258', |
5570
|
|
|
'accuracy' => 0, |
5571
|
|
|
], |
5572
|
|
|
[ |
5573
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16959', |
5574
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 59', |
5575
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5576
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21259', |
5577
|
|
|
'accuracy' => 0, |
5578
|
|
|
], |
5579
|
|
|
[ |
5580
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16960', |
5581
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 60', |
5582
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5583
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21260', |
5584
|
|
|
'accuracy' => 0, |
5585
|
|
|
], |
5586
|
|
|
[ |
5587
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16961', |
5588
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 61', |
5589
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5590
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21261', |
5591
|
|
|
'accuracy' => 0, |
5592
|
|
|
], |
5593
|
|
|
[ |
5594
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16962', |
5595
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 62', |
5596
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5597
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21262', |
5598
|
|
|
'accuracy' => 0, |
5599
|
|
|
], |
5600
|
|
|
[ |
5601
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16963', |
5602
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 63', |
5603
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5604
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21263', |
5605
|
|
|
'accuracy' => 0, |
5606
|
|
|
], |
5607
|
|
|
[ |
5608
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16964', |
5609
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger zone 64', |
5610
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5611
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21264', |
5612
|
|
|
'accuracy' => 0, |
5613
|
|
|
], |
5614
|
|
|
[ |
5615
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17108', |
5616
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 24E', |
5617
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5618
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21308', |
5619
|
|
|
'accuracy' => 0, |
5620
|
|
|
], |
5621
|
|
|
[ |
5622
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17109', |
5623
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 27E', |
5624
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5625
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21309', |
5626
|
|
|
'accuracy' => 0, |
5627
|
|
|
], |
5628
|
|
|
[ |
5629
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17110', |
5630
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 30E', |
5631
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5632
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21310', |
5633
|
|
|
'accuracy' => 0, |
5634
|
|
|
], |
5635
|
|
|
[ |
5636
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17111', |
5637
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 33E', |
5638
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5639
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21311', |
5640
|
|
|
'accuracy' => 0, |
5641
|
|
|
], |
5642
|
|
|
[ |
5643
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17112', |
5644
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 36E', |
5645
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5646
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21312', |
5647
|
|
|
'accuracy' => 0, |
5648
|
|
|
], |
5649
|
|
|
[ |
5650
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17113', |
5651
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 39E', |
5652
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5653
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21313', |
5654
|
|
|
'accuracy' => 0, |
5655
|
|
|
], |
5656
|
|
|
[ |
5657
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17114', |
5658
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 42E', |
5659
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5660
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21314', |
5661
|
|
|
'accuracy' => 0, |
5662
|
|
|
], |
5663
|
|
|
[ |
5664
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17115', |
5665
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 45E', |
5666
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5667
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21315', |
5668
|
|
|
'accuracy' => 0, |
5669
|
|
|
], |
5670
|
|
|
[ |
5671
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17116', |
5672
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 48E', |
5673
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5674
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21316', |
5675
|
|
|
'accuracy' => 0, |
5676
|
|
|
], |
5677
|
|
|
[ |
5678
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17117', |
5679
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 51E', |
5680
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5681
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21317', |
5682
|
|
|
'accuracy' => 0, |
5683
|
|
|
], |
5684
|
|
|
[ |
5685
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17118', |
5686
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 54E', |
5687
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5688
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21318', |
5689
|
|
|
'accuracy' => 0, |
5690
|
|
|
], |
5691
|
|
|
[ |
5692
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17119', |
5693
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 57E', |
5694
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5695
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21319', |
5696
|
|
|
'accuracy' => 0, |
5697
|
|
|
], |
5698
|
|
|
[ |
5699
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17120', |
5700
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 60E', |
5701
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5702
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21320', |
5703
|
|
|
'accuracy' => 0, |
5704
|
|
|
], |
5705
|
|
|
[ |
5706
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17121', |
5707
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 63E', |
5708
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5709
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21321', |
5710
|
|
|
'accuracy' => 0, |
5711
|
|
|
], |
5712
|
|
|
[ |
5713
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17122', |
5714
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 66E', |
5715
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5716
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21322', |
5717
|
|
|
'accuracy' => 0, |
5718
|
|
|
], |
5719
|
|
|
[ |
5720
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17123', |
5721
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 69E', |
5722
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5723
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21323', |
5724
|
|
|
'accuracy' => 0, |
5725
|
|
|
], |
5726
|
|
|
[ |
5727
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17124', |
5728
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 72E', |
5729
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5730
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21324', |
5731
|
|
|
'accuracy' => 0, |
5732
|
|
|
], |
5733
|
|
|
[ |
5734
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17125', |
5735
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 75E', |
5736
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5737
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21325', |
5738
|
|
|
'accuracy' => 0, |
5739
|
|
|
], |
5740
|
|
|
[ |
5741
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17126', |
5742
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 78E', |
5743
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5744
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21326', |
5745
|
|
|
'accuracy' => 0, |
5746
|
|
|
], |
5747
|
|
|
[ |
5748
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17127', |
5749
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 81E', |
5750
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5751
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21327', |
5752
|
|
|
'accuracy' => 0, |
5753
|
|
|
], |
5754
|
|
|
[ |
5755
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17128', |
5756
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 84E', |
5757
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5758
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21328', |
5759
|
|
|
'accuracy' => 0, |
5760
|
|
|
], |
5761
|
|
|
[ |
5762
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17129', |
5763
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 87E', |
5764
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5765
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21329', |
5766
|
|
|
'accuracy' => 0, |
5767
|
|
|
], |
5768
|
|
|
[ |
5769
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17130', |
5770
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 90E', |
5771
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5772
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21330', |
5773
|
|
|
'accuracy' => 0, |
5774
|
|
|
], |
5775
|
|
|
[ |
5776
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17131', |
5777
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 93E', |
5778
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5779
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21331', |
5780
|
|
|
'accuracy' => 0, |
5781
|
|
|
], |
5782
|
|
|
[ |
5783
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17132', |
5784
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 96E', |
5785
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5786
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21332', |
5787
|
|
|
'accuracy' => 0, |
5788
|
|
|
], |
5789
|
|
|
[ |
5790
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17133', |
5791
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 99E', |
5792
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5793
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21333', |
5794
|
|
|
'accuracy' => 0, |
5795
|
|
|
], |
5796
|
|
|
[ |
5797
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17134', |
5798
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 102E', |
5799
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5800
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21334', |
5801
|
|
|
'accuracy' => 0, |
5802
|
|
|
], |
5803
|
|
|
[ |
5804
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17135', |
5805
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 105E', |
5806
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5807
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21335', |
5808
|
|
|
'accuracy' => 0, |
5809
|
|
|
], |
5810
|
|
|
[ |
5811
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17136', |
5812
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 108E', |
5813
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5814
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21336', |
5815
|
|
|
'accuracy' => 0, |
5816
|
|
|
], |
5817
|
|
|
[ |
5818
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17137', |
5819
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 111E', |
5820
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5821
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21337', |
5822
|
|
|
'accuracy' => 0, |
5823
|
|
|
], |
5824
|
|
|
[ |
5825
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17138', |
5826
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 114E', |
5827
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5828
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21338', |
5829
|
|
|
'accuracy' => 0, |
5830
|
|
|
], |
5831
|
|
|
[ |
5832
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17139', |
5833
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 117E', |
5834
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5835
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21339', |
5836
|
|
|
'accuracy' => 0, |
5837
|
|
|
], |
5838
|
|
|
[ |
5839
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17140', |
5840
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 120E', |
5841
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5842
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21340', |
5843
|
|
|
'accuracy' => 0, |
5844
|
|
|
], |
5845
|
|
|
[ |
5846
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17141', |
5847
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 123E', |
5848
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5849
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21341', |
5850
|
|
|
'accuracy' => 0, |
5851
|
|
|
], |
5852
|
|
|
[ |
5853
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17142', |
5854
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 126E', |
5855
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5856
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21342', |
5857
|
|
|
'accuracy' => 0, |
5858
|
|
|
], |
5859
|
|
|
[ |
5860
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17143', |
5861
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 129E', |
5862
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5863
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21343', |
5864
|
|
|
'accuracy' => 0, |
5865
|
|
|
], |
5866
|
|
|
[ |
5867
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17144', |
5868
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 132E', |
5869
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5870
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21344', |
5871
|
|
|
'accuracy' => 0, |
5872
|
|
|
], |
5873
|
|
|
[ |
5874
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17145', |
5875
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 135E', |
5876
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5877
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21345', |
5878
|
|
|
'accuracy' => 0, |
5879
|
|
|
], |
5880
|
|
|
[ |
5881
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17146', |
5882
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 138E', |
5883
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5884
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21346', |
5885
|
|
|
'accuracy' => 0, |
5886
|
|
|
], |
5887
|
|
|
[ |
5888
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17147', |
5889
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 141E', |
5890
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5891
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21347', |
5892
|
|
|
'accuracy' => 0, |
5893
|
|
|
], |
5894
|
|
|
[ |
5895
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17148', |
5896
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 144E', |
5897
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5898
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21348', |
5899
|
|
|
'accuracy' => 0, |
5900
|
|
|
], |
5901
|
|
|
[ |
5902
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17149', |
5903
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 147E', |
5904
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5905
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21349', |
5906
|
|
|
'accuracy' => 0, |
5907
|
|
|
], |
5908
|
|
|
[ |
5909
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17150', |
5910
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 150E', |
5911
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5912
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21350', |
5913
|
|
|
'accuracy' => 0, |
5914
|
|
|
], |
5915
|
|
|
[ |
5916
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17151', |
5917
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 153E', |
5918
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5919
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21351', |
5920
|
|
|
'accuracy' => 0, |
5921
|
|
|
], |
5922
|
|
|
[ |
5923
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17152', |
5924
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 156E', |
5925
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5926
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21352', |
5927
|
|
|
'accuracy' => 0, |
5928
|
|
|
], |
5929
|
|
|
[ |
5930
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17153', |
5931
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 159E', |
5932
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5933
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21353', |
5934
|
|
|
'accuracy' => 0, |
5935
|
|
|
], |
5936
|
|
|
[ |
5937
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17154', |
5938
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 162E', |
5939
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5940
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21354', |
5941
|
|
|
'accuracy' => 0, |
5942
|
|
|
], |
5943
|
|
|
[ |
5944
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17155', |
5945
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 165E', |
5946
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5947
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21355', |
5948
|
|
|
'accuracy' => 0, |
5949
|
|
|
], |
5950
|
|
|
[ |
5951
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17156', |
5952
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 168E', |
5953
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5954
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21356', |
5955
|
|
|
'accuracy' => 0, |
5956
|
|
|
], |
5957
|
|
|
[ |
5958
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17157', |
5959
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 171E', |
5960
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5961
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21357', |
5962
|
|
|
'accuracy' => 0, |
5963
|
|
|
], |
5964
|
|
|
[ |
5965
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17158', |
5966
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 174E', |
5967
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5968
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21358', |
5969
|
|
|
'accuracy' => 0, |
5970
|
|
|
], |
5971
|
|
|
[ |
5972
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17159', |
5973
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 177E', |
5974
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5975
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21359', |
5976
|
|
|
'accuracy' => 0, |
5977
|
|
|
], |
5978
|
|
|
[ |
5979
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17160', |
5980
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 180E', |
5981
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5982
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21360', |
5983
|
|
|
'accuracy' => 0, |
5984
|
|
|
], |
5985
|
|
|
[ |
5986
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17161', |
5987
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 177W', |
5988
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5989
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21361', |
5990
|
|
|
'accuracy' => 0, |
5991
|
|
|
], |
5992
|
|
|
[ |
5993
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17162', |
5994
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 174W', |
5995
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
5996
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21362', |
5997
|
|
|
'accuracy' => 0, |
5998
|
|
|
], |
5999
|
|
|
[ |
6000
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17163', |
6001
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 171W', |
6002
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
6003
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21363', |
6004
|
|
|
'accuracy' => 0, |
6005
|
|
|
], |
6006
|
|
|
[ |
6007
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17164', |
6008
|
|
|
'name' => 'GSK 3-degree Gauss-Kruger CM 168W', |
6009
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
6010
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21364', |
6011
|
|
|
'accuracy' => 0, |
6012
|
|
|
], |
6013
|
|
|
[ |
6014
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9773', |
6015
|
|
|
'name' => 'GSK-2011 to WGS 84 (1)', |
6016
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7683', |
6017
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
6018
|
|
|
'accuracy' => 1.0, |
6019
|
|
|
], |
6020
|
|
|
[ |
6021
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9768', |
6022
|
|
|
'name' => 'Kyrg-06 to WGS 84 (1)', |
6023
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7686', |
6024
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
6025
|
|
|
'accuracy' => 1.0, |
6026
|
|
|
], |
6027
|
|
|
[ |
6028
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7687', |
6029
|
|
|
'name' => 'Kyrgyzstan zone 1', |
6030
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7686', |
6031
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7692', |
6032
|
|
|
'accuracy' => 0, |
6033
|
|
|
], |
6034
|
|
|
[ |
6035
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7688', |
6036
|
|
|
'name' => 'Kyrgyzstan zone 2', |
6037
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7686', |
6038
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7693', |
6039
|
|
|
'accuracy' => 0, |
6040
|
|
|
], |
6041
|
|
|
[ |
6042
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7689', |
6043
|
|
|
'name' => 'Kyrgyzstan zone 3', |
6044
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7686', |
6045
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7694', |
6046
|
|
|
'accuracy' => 0, |
6047
|
|
|
], |
6048
|
|
|
[ |
6049
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7690', |
6050
|
|
|
'name' => 'Kyrgyzstan zone 4', |
6051
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7686', |
6052
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7695', |
6053
|
|
|
'accuracy' => 0, |
6054
|
|
|
], |
6055
|
|
|
[ |
6056
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7691', |
6057
|
|
|
'name' => 'Kyrgyzstan zone 5', |
6058
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7686', |
6059
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7696', |
6060
|
|
|
'accuracy' => 0, |
6061
|
|
|
], |
6062
|
|
|
[ |
6063
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7701', |
6064
|
|
|
'name' => 'Latvia 2000 height to EVRF2007 height (1)', |
6065
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7700', |
6066
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5621', |
6067
|
|
|
'accuracy' => 0.1, |
6068
|
|
|
], |
6069
|
|
|
[ |
6070
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10574', |
6071
|
|
|
'name' => 'ITRF2014 to ETRF2020 (1)', |
6072
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7789', |
6073
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10569', |
6074
|
|
|
'accuracy' => 0.0, |
6075
|
|
|
], |
6076
|
|
|
[ |
6077
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8405', |
6078
|
|
|
'name' => 'ITRF2014 to ETRF2000 (1)', |
6079
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7789', |
6080
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7930', |
6081
|
|
|
'accuracy' => 0.0, |
6082
|
|
|
], |
6083
|
|
|
[ |
6084
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8880', |
6085
|
|
|
'name' => 'ITRF2014 to ETRF2014 (2)', |
6086
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7789', |
6087
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8401', |
6088
|
|
|
'accuracy' => 0.0, |
6089
|
|
|
], |
6090
|
|
|
[ |
6091
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8889', |
6092
|
|
|
'name' => 'BGS2005 to ETRS89 (1)', |
6093
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7798', |
6094
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
6095
|
|
|
'accuracy' => 0.0, |
6096
|
|
|
], |
6097
|
|
|
[ |
6098
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7802', |
6099
|
|
|
'name' => 'Cadastral Coordinate System 2005', |
6100
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7798', |
6101
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7801', |
6102
|
|
|
'accuracy' => 0, |
6103
|
|
|
], |
6104
|
|
|
[ |
6105
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7838', |
6106
|
|
|
'name' => 'DHHN2016 height to EVRF2007 height (1)', |
6107
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7837', |
6108
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5621', |
6109
|
|
|
'accuracy' => 0.1, |
6110
|
|
|
], |
6111
|
|
|
[ |
6112
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7964', |
6113
|
|
|
'name' => 'Poolbeg height (m) to Malin Head height (1)', |
6114
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7962', |
6115
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5731', |
6116
|
|
|
'accuracy' => 0.1, |
6117
|
|
|
], |
6118
|
|
|
[ |
6119
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7966', |
6120
|
|
|
'name' => 'Poolbeg height (m) to Belfast height (1)', |
6121
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7962', |
6122
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5732', |
6123
|
|
|
'accuracy' => 0.1, |
6124
|
|
|
], |
6125
|
|
|
[ |
6126
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8040', |
6127
|
|
|
'name' => 'Gusterberg Grid', |
6128
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8042', |
6129
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8044', |
6130
|
|
|
'accuracy' => 0, |
6131
|
|
|
], |
6132
|
|
|
[ |
6133
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8041', |
6134
|
|
|
'name' => 'St. Stephen Grid', |
6135
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8043', |
6136
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8045', |
6137
|
|
|
'accuracy' => 0, |
6138
|
|
|
], |
6139
|
|
|
[ |
6140
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9958', |
6141
|
|
|
'name' => 'ISN2016 to ISH2004 height (1)', |
6142
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8085', |
6143
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8089', |
6144
|
|
|
'accuracy' => 0.05, |
6145
|
|
|
], |
6146
|
|
|
[ |
6147
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9959', |
6148
|
|
|
'name' => 'ISN2016 to ISN2016 + ISH2004 height (1)', |
6149
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8085', |
6150
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9950', |
6151
|
|
|
'accuracy' => 0.05, |
6152
|
|
|
], |
6153
|
|
|
[ |
6154
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9291', |
6155
|
|
|
'name' => 'ISN2016 to WGS 84 (1)', |
6156
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8086', |
6157
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
6158
|
|
|
'accuracy' => 1.0, |
6159
|
|
|
], |
6160
|
|
|
[ |
6161
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8087', |
6162
|
|
|
'name' => 'Iceland Lambert 2016', |
6163
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8086', |
6164
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8088', |
6165
|
|
|
'accuracy' => 0, |
6166
|
|
|
], |
6167
|
|
|
[ |
6168
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19986', |
6169
|
|
|
'name' => 'Europe Equal Area 2001', |
6170
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8086', |
6171
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9039', |
6172
|
|
|
'accuracy' => 0, |
6173
|
|
|
], |
6174
|
|
|
[ |
6175
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19985', |
6176
|
|
|
'name' => 'Europe Conformal 2001', |
6177
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8086', |
6178
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9040', |
6179
|
|
|
'accuracy' => 0, |
6180
|
|
|
], |
6181
|
|
|
[ |
6182
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8364', |
6183
|
|
|
'name' => 'S-JTSK [JTSK03] to S-JTSK (1)', |
6184
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8351', |
6185
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4156', |
6186
|
|
|
'accuracy' => 0.05, |
6187
|
|
|
], |
6188
|
|
|
[ |
6189
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8367', |
6190
|
|
|
'name' => 'S-JTSK [JTSK03] to ETRS89 (1)', |
6191
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8351', |
6192
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
6193
|
|
|
'accuracy' => 0.001, |
6194
|
|
|
], |
6195
|
|
|
[ |
6196
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5509', |
6197
|
|
|
'name' => 'Krovak (Greenwich)', |
6198
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8351', |
6199
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8352', |
6200
|
|
|
'accuracy' => 0, |
6201
|
|
|
], |
6202
|
|
|
[ |
6203
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5510', |
6204
|
|
|
'name' => 'Krovak East North (Greenwich)', |
6205
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8351', |
6206
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8353', |
6207
|
|
|
'accuracy' => 0, |
6208
|
|
|
], |
6209
|
|
|
[ |
6210
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5202', |
6211
|
|
|
'name' => 'Baltic 1957 height to EVRF2007 height (1)', |
6212
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8357', |
6213
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5621', |
6214
|
|
|
'accuracy' => 0.1, |
6215
|
|
|
], |
6216
|
|
|
[ |
6217
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5201', |
6218
|
|
|
'name' => 'Baltic 1957 height to EVRF2000 height (4)', |
6219
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8357', |
6220
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
6221
|
|
|
'accuracy' => 0.1, |
6222
|
|
|
], |
6223
|
|
|
[ |
6224
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5435', |
6225
|
|
|
'name' => 'Baltic 1957 height to EVRF2000 height (3)', |
6226
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8357', |
6227
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5730', |
6228
|
|
|
'accuracy' => 0.1, |
6229
|
|
|
], |
6230
|
|
|
[ |
6231
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9745', |
6232
|
|
|
'name' => 'Baltic 1957 height to EVRF2019 height (1)', |
6233
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8357', |
6234
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9389', |
6235
|
|
|
'accuracy' => 0.01, |
6236
|
|
|
], |
6237
|
|
|
[ |
6238
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9744', |
6239
|
|
|
'name' => 'Baltic 1957 height to EVRF2019 mean-tide height (1)', |
6240
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8357', |
6241
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9390', |
6242
|
|
|
'accuracy' => 0.01, |
6243
|
|
|
], |
6244
|
|
|
[ |
6245
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8893', |
6246
|
|
|
'name' => 'SRB_ETRS89 to ETRS89 (1)', |
6247
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8685', |
6248
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
6249
|
|
|
'accuracy' => 0.0, |
6250
|
|
|
], |
6251
|
|
|
[ |
6252
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9371', |
6253
|
|
|
'name' => 'Vienna height to GHA height (1)', |
6254
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8881', |
6255
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5778', |
6256
|
|
|
'accuracy' => 0.0, |
6257
|
|
|
], |
6258
|
|
|
[ |
6259
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9144', |
6260
|
|
|
'name' => 'KOSOVAREF01 to WGS 84 (1)', |
6261
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9140', |
6262
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
6263
|
|
|
'accuracy' => 1.0, |
6264
|
|
|
], |
6265
|
|
|
[ |
6266
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18277', |
6267
|
|
|
'name' => 'Balkans zone 7', |
6268
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9140', |
6269
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9141', |
6270
|
|
|
'accuracy' => 0, |
6271
|
|
|
], |
6272
|
|
|
[ |
6273
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9277', |
6274
|
|
|
'name' => 'MGI to EVRF2000 Austria height (1)', |
6275
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9267', |
6276
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9274', |
6277
|
|
|
'accuracy' => 0.05, |
6278
|
|
|
], |
6279
|
|
|
[ |
6280
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9601', |
6281
|
|
|
'name' => 'MGI to MGI + EVRF2000 Austria height (1)', |
6282
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9267', |
6283
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9501', |
6284
|
|
|
'accuracy' => 0.05, |
6285
|
|
|
], |
6286
|
|
|
[ |
6287
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9301', |
6288
|
|
|
'name' => 'HS2-TM', |
6289
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9299', |
6290
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9300', |
6291
|
|
|
'accuracy' => 0, |
6292
|
|
|
], |
6293
|
|
|
[ |
6294
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9366', |
6295
|
|
|
'name' => 'TPEN11-TM', |
6296
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9364', |
6297
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9367', |
6298
|
|
|
'accuracy' => 0, |
6299
|
|
|
], |
6300
|
|
|
[ |
6301
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9370', |
6302
|
|
|
'name' => 'MML07-TM', |
6303
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9372', |
6304
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9373', |
6305
|
|
|
'accuracy' => 0, |
6306
|
|
|
], |
6307
|
|
|
[ |
6308
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9385', |
6309
|
|
|
'name' => 'AbInvA96_2020-TM', |
6310
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9384', |
6311
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9387', |
6312
|
|
|
'accuracy' => 0, |
6313
|
|
|
], |
6314
|
|
|
[ |
6315
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9710', |
6316
|
|
|
'name' => 'EVRF2019 height to EVRF2019 mean-tide height (1)', |
6317
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9389', |
6318
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9390', |
6319
|
|
|
'accuracy' => 0.0, |
6320
|
|
|
], |
6321
|
|
|
[ |
6322
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9743', |
6323
|
|
|
'name' => 'PN68 to WGS 84 (1)', |
6324
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9403', |
6325
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
6326
|
|
|
'accuracy' => 44.0, |
6327
|
|
|
], |
6328
|
|
|
[ |
6329
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9455', |
6330
|
|
|
'name' => 'GBK19-TM', |
6331
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9453', |
6332
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9456', |
6333
|
|
|
'accuracy' => 0, |
6334
|
|
|
], |
6335
|
|
|
[ |
6336
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9548', |
6337
|
|
|
'name' => 'Lyon Turin Ferroviaire 2004 (C)', |
6338
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9547', |
6339
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9549', |
6340
|
|
|
'accuracy' => 0, |
6341
|
|
|
], |
6342
|
|
|
[ |
6343
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9662', |
6344
|
|
|
'name' => 'Baltic 1986 height to EVRF2007-PL height (1)', |
6345
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9650', |
6346
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9651', |
6347
|
|
|
'accuracy' => 0.04, |
6348
|
|
|
], |
6349
|
|
|
[ |
6350
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9717', |
6351
|
|
|
'name' => 'ETRF2000-PL to Baltic 1986 height (1)', |
6352
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9701', |
6353
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9650', |
6354
|
|
|
'accuracy' => 0.03, |
6355
|
|
|
], |
6356
|
|
|
[ |
6357
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10347', |
6358
|
|
|
'name' => 'ETRF2000-PL to EVRF2007-PL height (2)', |
6359
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9701', |
6360
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9651', |
6361
|
|
|
'accuracy' => 0.02, |
6362
|
|
|
], |
6363
|
|
|
[ |
6364
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9718', |
6365
|
|
|
'name' => 'ETRF2000-PL to ETRF2000-PL + Baltic 1986 height (1)', |
6366
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9701', |
6367
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9656', |
6368
|
|
|
'accuracy' => 0.03, |
6369
|
|
|
], |
6370
|
|
|
[ |
6371
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10348', |
6372
|
|
|
'name' => 'ETRF2000-PL to ETRF2000-PL + EVRF2007-PL height (2)', |
6373
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9701', |
6374
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9657', |
6375
|
|
|
'accuracy' => 0.02, |
6376
|
|
|
], |
6377
|
|
|
[ |
6378
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18305', |
6379
|
|
|
'name' => 'Poland CS2000 zone 5', |
6380
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9702', |
6381
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2176', |
6382
|
|
|
'accuracy' => 0, |
6383
|
|
|
], |
6384
|
|
|
[ |
6385
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18306', |
6386
|
|
|
'name' => 'Poland CS2000 zone 6', |
6387
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9702', |
6388
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2177', |
6389
|
|
|
'accuracy' => 0, |
6390
|
|
|
], |
6391
|
|
|
[ |
6392
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18307', |
6393
|
|
|
'name' => 'Poland CS2000 zone 7', |
6394
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9702', |
6395
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2178', |
6396
|
|
|
'accuracy' => 0, |
6397
|
|
|
], |
6398
|
|
|
[ |
6399
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18308', |
6400
|
|
|
'name' => 'Poland CS2000 zone 8', |
6401
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9702', |
6402
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2179', |
6403
|
|
|
'accuracy' => 0, |
6404
|
|
|
], |
6405
|
|
|
[ |
6406
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18300', |
6407
|
|
|
'name' => 'Poland CS92', |
6408
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9702', |
6409
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2180', |
6410
|
|
|
'accuracy' => 0, |
6411
|
|
|
], |
6412
|
|
|
[ |
6413
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9703', |
6414
|
|
|
'name' => 'ETRF2000-PL to ETRS89 (1)', |
6415
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9702', |
6416
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
6417
|
|
|
'accuracy' => 0.0, |
6418
|
|
|
], |
6419
|
|
|
[ |
6420
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9738', |
6421
|
|
|
'name' => 'EOS21-TM', |
6422
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9739', |
6423
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9741', |
6424
|
|
|
'accuracy' => 0, |
6425
|
|
|
], |
6426
|
|
|
[ |
6427
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9760', |
6428
|
|
|
'name' => 'ECML14_NB-TM', |
6429
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9758', |
6430
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9761', |
6431
|
|
|
'accuracy' => 0, |
6432
|
|
|
], |
6433
|
|
|
[ |
6434
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9765', |
6435
|
|
|
'name' => 'EWR2-TM', |
6436
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9763', |
6437
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9766', |
6438
|
|
|
'accuracy' => 0, |
6439
|
|
|
], |
6440
|
|
|
[ |
6441
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9789', |
6442
|
|
|
'name' => 'RGF93 v2 to ETRS89 (1)', |
6443
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9777', |
6444
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
6445
|
|
|
'accuracy' => 0.02, |
6446
|
|
|
], |
6447
|
|
|
[ |
6448
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9788', |
6449
|
|
|
'name' => 'RGF93 v2 to RGF93 v2b', |
6450
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9777', |
6451
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9782', |
6452
|
|
|
'accuracy' => 0.005, |
6453
|
|
|
], |
6454
|
|
|
[ |
6455
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18085', |
6456
|
|
|
'name' => 'Lambert-93', |
6457
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9777', |
6458
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9793', |
6459
|
|
|
'accuracy' => 0, |
6460
|
|
|
], |
6461
|
|
|
[ |
6462
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18101', |
6463
|
|
|
'name' => 'France Conic Conformal zone 1', |
6464
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9777', |
6465
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9822', |
6466
|
|
|
'accuracy' => 0, |
6467
|
|
|
], |
6468
|
|
|
[ |
6469
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18102', |
6470
|
|
|
'name' => 'France Conic Conformal zone 2', |
6471
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9777', |
6472
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9823', |
6473
|
|
|
'accuracy' => 0, |
6474
|
|
|
], |
6475
|
|
|
[ |
6476
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18103', |
6477
|
|
|
'name' => 'France Conic Conformal zone 3', |
6478
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9777', |
6479
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9824', |
6480
|
|
|
'accuracy' => 0, |
6481
|
|
|
], |
6482
|
|
|
[ |
6483
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18104', |
6484
|
|
|
'name' => 'France Conic Conformal zone 4', |
6485
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9777', |
6486
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9825', |
6487
|
|
|
'accuracy' => 0, |
6488
|
|
|
], |
6489
|
|
|
[ |
6490
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18105', |
6491
|
|
|
'name' => 'France Conic Conformal zone 5', |
6492
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9777', |
6493
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9826', |
6494
|
|
|
'accuracy' => 0, |
6495
|
|
|
], |
6496
|
|
|
[ |
6497
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18106', |
6498
|
|
|
'name' => 'France Conic Conformal zone 6', |
6499
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9777', |
6500
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9827', |
6501
|
|
|
'accuracy' => 0, |
6502
|
|
|
], |
6503
|
|
|
[ |
6504
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18107', |
6505
|
|
|
'name' => 'France Conic Conformal zone 7', |
6506
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9777', |
6507
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9828', |
6508
|
|
|
'accuracy' => 0, |
6509
|
|
|
], |
6510
|
|
|
[ |
6511
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18108', |
6512
|
|
|
'name' => 'France Conic Conformal zone 8', |
6513
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9777', |
6514
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9829', |
6515
|
|
|
'accuracy' => 0, |
6516
|
|
|
], |
6517
|
|
|
[ |
6518
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18109', |
6519
|
|
|
'name' => 'France Conic Conformal zone 9', |
6520
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9777', |
6521
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9830', |
6522
|
|
|
'accuracy' => 0, |
6523
|
|
|
], |
6524
|
|
|
[ |
6525
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10508', |
6526
|
|
|
'name' => 'RGF93 v2b to RGF93 v2b + NGF-IGN78 height (3)', |
6527
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9781', |
6528
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10507', |
6529
|
|
|
'accuracy' => 0.02, |
6530
|
|
|
], |
6531
|
|
|
[ |
6532
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9876', |
6533
|
|
|
'name' => 'RGF93 v2b to NGF-IGN69 height (5)', |
6534
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9781', |
6535
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5720', |
6536
|
|
|
'accuracy' => 0.01, |
6537
|
|
|
], |
6538
|
|
|
[ |
6539
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10506', |
6540
|
|
|
'name' => 'RGF93 v2b to NGF-IGN78 height (3)', |
6541
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9781', |
6542
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5721', |
6543
|
|
|
'accuracy' => 0.02, |
6544
|
|
|
], |
6545
|
|
|
[ |
6546
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9877', |
6547
|
|
|
'name' => 'RGF93 v2b to RGF93 v2b + NGF-IGN69 height (5)', |
6548
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9781', |
6549
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9785', |
6550
|
|
|
'accuracy' => 0.01, |
6551
|
|
|
], |
6552
|
|
|
[ |
6553
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9790', |
6554
|
|
|
'name' => 'RGF93 v2b to ETRS89 (1)', |
6555
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9782', |
6556
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4258', |
6557
|
|
|
'accuracy' => 0.01, |
6558
|
|
|
], |
6559
|
|
|
[ |
6560
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18085', |
6561
|
|
|
'name' => 'Lambert-93', |
6562
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9782', |
6563
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9794', |
6564
|
|
|
'accuracy' => 0, |
6565
|
|
|
], |
6566
|
|
|
[ |
6567
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18101', |
6568
|
|
|
'name' => 'France Conic Conformal zone 1', |
6569
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9782', |
6570
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9842', |
6571
|
|
|
'accuracy' => 0, |
6572
|
|
|
], |
6573
|
|
|
[ |
6574
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18102', |
6575
|
|
|
'name' => 'France Conic Conformal zone 2', |
6576
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9782', |
6577
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9843', |
6578
|
|
|
'accuracy' => 0, |
6579
|
|
|
], |
6580
|
|
|
[ |
6581
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18103', |
6582
|
|
|
'name' => 'France Conic Conformal zone 3', |
6583
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9782', |
6584
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9844', |
6585
|
|
|
'accuracy' => 0, |
6586
|
|
|
], |
6587
|
|
|
[ |
6588
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18104', |
6589
|
|
|
'name' => 'France Conic Conformal zone 4', |
6590
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9782', |
6591
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9845', |
6592
|
|
|
'accuracy' => 0, |
6593
|
|
|
], |
6594
|
|
|
[ |
6595
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18105', |
6596
|
|
|
'name' => 'France Conic Conformal zone 5', |
6597
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9782', |
6598
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9846', |
6599
|
|
|
'accuracy' => 0, |
6600
|
|
|
], |
6601
|
|
|
[ |
6602
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18106', |
6603
|
|
|
'name' => 'France Conic Conformal zone 6', |
6604
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9782', |
6605
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9847', |
6606
|
|
|
'accuracy' => 0, |
6607
|
|
|
], |
6608
|
|
|
[ |
6609
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18107', |
6610
|
|
|
'name' => 'France Conic Conformal zone 7', |
6611
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9782', |
6612
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9848', |
6613
|
|
|
'accuracy' => 0, |
6614
|
|
|
], |
6615
|
|
|
[ |
6616
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18108', |
6617
|
|
|
'name' => 'France Conic Conformal zone 8', |
6618
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9782', |
6619
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9849', |
6620
|
|
|
'accuracy' => 0, |
6621
|
|
|
], |
6622
|
|
|
[ |
6623
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18109', |
6624
|
|
|
'name' => 'France Conic Conformal zone 9', |
6625
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9782', |
6626
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9850', |
6627
|
|
|
'accuracy' => 0, |
6628
|
|
|
], |
6629
|
|
|
[ |
6630
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9868', |
6631
|
|
|
'name' => 'MRH21-TM', |
6632
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9866', |
6633
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9869', |
6634
|
|
|
'accuracy' => 0, |
6635
|
|
|
], |
6636
|
|
|
[ |
6637
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9879', |
6638
|
|
|
'name' => 'MOLDOR11-TM', |
6639
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9871', |
6640
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9880', |
6641
|
|
|
'accuracy' => 0, |
6642
|
|
|
], |
6643
|
|
|
[ |
6644
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9894', |
6645
|
|
|
'name' => 'Luxembourg TM (3D)', |
6646
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9893', |
6647
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9895', |
6648
|
|
|
'accuracy' => 0, |
6649
|
|
|
], |
6650
|
|
|
[ |
6651
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9942', |
6652
|
|
|
'name' => 'EBBWV14-TM', |
6653
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9939', |
6654
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9943', |
6655
|
|
|
'accuracy' => 0, |
6656
|
|
|
], |
6657
|
|
|
[ |
6658
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9966', |
6659
|
|
|
'name' => 'HULLEE13-TM', |
6660
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9964', |
6661
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9967', |
6662
|
|
|
'accuracy' => 0, |
6663
|
|
|
], |
6664
|
|
|
[ |
6665
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9971', |
6666
|
|
|
'name' => 'SCM22-TM', |
6667
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9969', |
6668
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9972', |
6669
|
|
|
'accuracy' => 0, |
6670
|
|
|
], |
6671
|
|
|
[ |
6672
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9976', |
6673
|
|
|
'name' => 'FNL22-TM', |
6674
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9974', |
6675
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9977', |
6676
|
|
|
'accuracy' => 0, |
6677
|
|
|
], |
6678
|
|
|
[ |
6679
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10572', |
6680
|
|
|
'name' => 'ITRF2020 to ETRF2020 (1)', |
6681
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9988', |
6682
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10569', |
6683
|
|
|
'accuracy' => 0.0, |
6684
|
|
|
], |
6685
|
|
|
[ |
6686
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10573', |
6687
|
|
|
'name' => 'ITRF2020 to ETRF2020 (2)', |
6688
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9988', |
6689
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10569', |
6690
|
|
|
'accuracy' => 0.0, |
6691
|
|
|
], |
6692
|
|
|
[ |
6693
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10586', |
6694
|
|
|
'name' => 'ITRF2020 to ETRF2000 (1)', |
6695
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9988', |
6696
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7930', |
6697
|
|
|
'accuracy' => 0.0, |
6698
|
|
|
], |
6699
|
|
|
[ |
6700
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10587', |
6701
|
|
|
'name' => 'ITRF2020 to ETRF2014 (1)', |
6702
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9988', |
6703
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8401', |
6704
|
144 |
|
'accuracy' => 0.0, |
6705
|
|
|
], |
6706
|
144 |
|
]; |
6707
|
|
|
|
6708
|
|
|
/** |
6709
|
|
|
* @return array<array{operation: string, name: string, source_crs: string, target_crs: string, accuracy: float}> |
6710
|
|
|
*/ |
6711
|
|
|
public static function getSupportedTransformations(): array |
6712
|
|
|
{ |
6713
|
|
|
return static::$sridData; |
6714
|
|
|
} |
6715
|
|
|
} |
6716
|
|
|
|