|
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 CRSTransformationsSouthAmerica |
|
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::10134', |
|
23
|
|
|
'name' => 'SIRGAS-Chile 2021 to ITRF2014 (1)', |
|
24
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::20039', |
|
25
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7789', |
|
26
|
|
|
'accuracy' => 0.1, |
|
27
|
|
|
], |
|
28
|
|
|
[ |
|
29
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18065', |
|
30
|
|
|
'name' => 'Colombia MAGNA 2018 Far West zone', |
|
31
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::20046', |
|
32
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::11114', |
|
33
|
|
|
'accuracy' => 0, |
|
34
|
|
|
], |
|
35
|
|
|
[ |
|
36
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18066', |
|
37
|
|
|
'name' => 'Colombia MAGNA 2018 West zone', |
|
38
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::20046', |
|
39
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::11115', |
|
40
|
|
|
'accuracy' => 0, |
|
41
|
|
|
], |
|
42
|
|
|
[ |
|
43
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18067', |
|
44
|
|
|
'name' => 'Colombia MAGNA 2018 Bogota zone', |
|
45
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::20046', |
|
46
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::11116', |
|
47
|
|
|
'accuracy' => 0, |
|
48
|
|
|
], |
|
49
|
|
|
[ |
|
50
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18068', |
|
51
|
|
|
'name' => 'Colombia MAGNA 2018 East Central zone', |
|
52
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::20046', |
|
53
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::11117', |
|
54
|
|
|
'accuracy' => 0, |
|
55
|
|
|
], |
|
56
|
|
|
[ |
|
57
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18069', |
|
58
|
|
|
'name' => 'Colombia MAGNA 2018 East zone', |
|
59
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::20046', |
|
60
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::11118', |
|
61
|
|
|
'accuracy' => 0, |
|
62
|
|
|
], |
|
63
|
|
|
[ |
|
64
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10149', |
|
65
|
|
|
'name' => 'MAGNA-SIRGAS 2018 to WGS 84 (1)', |
|
66
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::20046', |
|
67
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
68
|
|
|
'accuracy' => 1.0, |
|
69
|
|
|
], |
|
70
|
|
|
[ |
|
71
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9376', |
|
72
|
|
|
'name' => 'Colombia Transverse Mercator', |
|
73
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::20046', |
|
74
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9377', |
|
75
|
|
|
'accuracy' => 0, |
|
76
|
|
|
], |
|
77
|
|
|
[ |
|
78
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19924', |
|
79
|
|
|
'name' => 'Tobago Grid', |
|
80
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4157', |
|
81
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2066', |
|
82
|
|
|
'accuracy' => 0, |
|
83
|
|
|
], |
|
84
|
|
|
[ |
|
85
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1555', |
|
86
|
|
|
'name' => 'Naparima 1955 to WGS 84 (2)', |
|
87
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4158', |
|
88
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
89
|
|
|
'accuracy' => 1.0, |
|
90
|
|
|
], |
|
91
|
|
|
[ |
|
92
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18032', |
|
93
|
|
|
'name' => 'Argentina zone 2', |
|
94
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4160', |
|
95
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2081', |
|
96
|
|
|
'accuracy' => 0, |
|
97
|
|
|
], |
|
98
|
|
|
[ |
|
99
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1528', |
|
100
|
|
|
'name' => 'Chos Malal 1914 to Campo Inchauspe (1)', |
|
101
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4160', |
|
102
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4221', |
|
103
|
|
|
'accuracy' => 10.0, |
|
104
|
|
|
], |
|
105
|
|
|
[ |
|
106
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9257', |
|
107
|
|
|
'name' => 'Chos Malal 1914 to WGS 84 (2)', |
|
108
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4160', |
|
109
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
110
|
|
|
'accuracy' => 2.5, |
|
111
|
|
|
], |
|
112
|
|
|
[ |
|
113
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9258', |
|
114
|
|
|
'name' => 'Chos Malal 1914 to WGS 84 (3)', |
|
115
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4160', |
|
116
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
117
|
|
|
'accuracy' => 2.5, |
|
118
|
|
|
], |
|
119
|
|
|
[ |
|
120
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18032', |
|
121
|
|
|
'name' => 'Argentina zone 2', |
|
122
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4161', |
|
123
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2082', |
|
124
|
|
|
'accuracy' => 0, |
|
125
|
|
|
], |
|
126
|
|
|
[ |
|
127
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9259', |
|
128
|
|
|
'name' => 'Pampa del Castillo to WGS 84 (2)', |
|
129
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4161', |
|
130
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
131
|
|
|
'accuracy' => 2.5, |
|
132
|
|
|
], |
|
133
|
|
|
[ |
|
134
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18031', |
|
135
|
|
|
'name' => 'Argentina zone 1', |
|
136
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4161', |
|
137
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9284', |
|
138
|
|
|
'accuracy' => 0, |
|
139
|
|
|
], |
|
140
|
|
|
[ |
|
141
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18033', |
|
142
|
|
|
'name' => 'Argentina zone 3', |
|
143
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4161', |
|
144
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9285', |
|
145
|
|
|
'accuracy' => 0, |
|
146
|
|
|
], |
|
147
|
|
|
[ |
|
148
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1581', |
|
149
|
|
|
'name' => 'SIRGAS 1995 to WGS 84 (1)', |
|
150
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4170', |
|
151
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
152
|
|
|
'accuracy' => 2.0, |
|
153
|
|
|
], |
|
154
|
|
|
[ |
|
155
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1767', |
|
156
|
|
|
'name' => 'REGVEN to SIRGAS 1995 (1)', |
|
157
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4189', |
|
158
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4170', |
|
159
|
|
|
'accuracy' => 0.02, |
|
160
|
|
|
], |
|
161
|
|
|
[ |
|
162
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1768', |
|
163
|
|
|
'name' => 'REGVEN to WGS 84 (1)', |
|
164
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4189', |
|
165
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
166
|
|
|
'accuracy' => 1.0, |
|
167
|
|
|
], |
|
168
|
|
|
[ |
|
169
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18031', |
|
170
|
|
|
'name' => 'Argentina zone 1', |
|
171
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4190', |
|
172
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22171', |
|
173
|
|
|
'accuracy' => 0, |
|
174
|
|
|
], |
|
175
|
|
|
[ |
|
176
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18032', |
|
177
|
|
|
'name' => 'Argentina zone 2', |
|
178
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4190', |
|
179
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22172', |
|
180
|
|
|
'accuracy' => 0, |
|
181
|
|
|
], |
|
182
|
|
|
[ |
|
183
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18033', |
|
184
|
|
|
'name' => 'Argentina zone 3', |
|
185
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4190', |
|
186
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22173', |
|
187
|
|
|
'accuracy' => 0, |
|
188
|
|
|
], |
|
189
|
|
|
[ |
|
190
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18034', |
|
191
|
|
|
'name' => 'Argentina zone 4', |
|
192
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4190', |
|
193
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22174', |
|
194
|
|
|
'accuracy' => 0, |
|
195
|
|
|
], |
|
196
|
|
|
[ |
|
197
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18035', |
|
198
|
|
|
'name' => 'Argentina zone 5', |
|
199
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4190', |
|
200
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22175', |
|
201
|
|
|
'accuracy' => 0, |
|
202
|
|
|
], |
|
203
|
|
|
[ |
|
204
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18036', |
|
205
|
|
|
'name' => 'Argentina zone 6', |
|
206
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4190', |
|
207
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22176', |
|
208
|
|
|
'accuracy' => 0, |
|
209
|
|
|
], |
|
210
|
|
|
[ |
|
211
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18037', |
|
212
|
|
|
'name' => 'Argentina zone 7', |
|
213
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4190', |
|
214
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22177', |
|
215
|
|
|
'accuracy' => 0, |
|
216
|
|
|
], |
|
217
|
|
|
[ |
|
218
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1774', |
|
219
|
|
|
'name' => 'POSGAR 98 to SIRGAS 1995 (1)', |
|
220
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4190', |
|
221
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4170', |
|
222
|
|
|
'accuracy' => 0.0, |
|
223
|
|
|
], |
|
224
|
|
|
[ |
|
225
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1773', |
|
226
|
|
|
'name' => 'POSGAR 98 to WGS 84 (1)', |
|
227
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4190', |
|
228
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
229
|
|
|
'accuracy' => 1.0, |
|
230
|
|
|
], |
|
231
|
|
|
[ |
|
232
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5050', |
|
233
|
|
|
'name' => 'Aratu to SIRGAS 2000 (1)', |
|
234
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4208', |
|
235
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
236
|
|
|
'accuracy' => 0.5, |
|
237
|
|
|
], |
|
238
|
|
|
[ |
|
239
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5052', |
|
240
|
|
|
'name' => 'Aratu to SIRGAS 2000 (2)', |
|
241
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4208', |
|
242
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
243
|
|
|
'accuracy' => 0.5, |
|
244
|
|
|
], |
|
245
|
|
|
[ |
|
246
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5054', |
|
247
|
|
|
'name' => 'Aratu to SIRGAS 2000 (3)', |
|
248
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4208', |
|
249
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
250
|
|
|
'accuracy' => 0.5, |
|
251
|
|
|
], |
|
252
|
|
|
[ |
|
253
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5056', |
|
254
|
|
|
'name' => 'Aratu to SIRGAS 2000 (4)', |
|
255
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4208', |
|
256
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
257
|
|
|
'accuracy' => 0.5, |
|
258
|
|
|
], |
|
259
|
|
|
[ |
|
260
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5058', |
|
261
|
|
|
'name' => 'Aratu to SIRGAS 2000 (5)', |
|
262
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4208', |
|
263
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
264
|
|
|
'accuracy' => 0.5, |
|
265
|
|
|
], |
|
266
|
|
|
[ |
|
267
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5060', |
|
268
|
|
|
'name' => 'Aratu to SIRGAS 2000 (6)', |
|
269
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4208', |
|
270
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
271
|
|
|
'accuracy' => 0.5, |
|
272
|
|
|
], |
|
273
|
|
|
[ |
|
274
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5062', |
|
275
|
|
|
'name' => 'Aratu to SIRGAS 2000 (7)', |
|
276
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4208', |
|
277
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
278
|
|
|
'accuracy' => 0.5, |
|
279
|
|
|
], |
|
280
|
|
|
[ |
|
281
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5064', |
|
282
|
|
|
'name' => 'Aratu to SIRGAS 2000 (8)', |
|
283
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4208', |
|
284
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
285
|
|
|
'accuracy' => 0.5, |
|
286
|
|
|
], |
|
287
|
|
|
[ |
|
288
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5066', |
|
289
|
|
|
'name' => 'Aratu to SIRGAS 2000 (9)', |
|
290
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4208', |
|
291
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
292
|
|
|
'accuracy' => 0.5, |
|
293
|
|
|
], |
|
294
|
|
|
[ |
|
295
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18051', |
|
296
|
|
|
'name' => 'Colombia West zone', |
|
297
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4218', |
|
298
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21896', |
|
299
|
|
|
'accuracy' => 0, |
|
300
|
|
|
], |
|
301
|
|
|
[ |
|
302
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18052', |
|
303
|
|
|
'name' => 'Colombia Bogota zone', |
|
304
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4218', |
|
305
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21897', |
|
306
|
|
|
'accuracy' => 0, |
|
307
|
|
|
], |
|
308
|
|
|
[ |
|
309
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18053', |
|
310
|
|
|
'name' => 'Colombia East Central zone', |
|
311
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4218', |
|
312
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21898', |
|
313
|
|
|
'accuracy' => 0, |
|
314
|
|
|
], |
|
315
|
|
|
[ |
|
316
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18054', |
|
317
|
|
|
'name' => 'Colombia East zone', |
|
318
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4218', |
|
319
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::21899', |
|
320
|
|
|
'accuracy' => 0, |
|
321
|
|
|
], |
|
322
|
|
|
[ |
|
323
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15730', |
|
324
|
|
|
'name' => 'Bogota 1975 to MAGNA-SIRGAS (9)', |
|
325
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4218', |
|
326
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
327
|
|
|
'accuracy' => 1.0, |
|
328
|
|
|
], |
|
329
|
|
|
[ |
|
330
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15731', |
|
331
|
|
|
'name' => 'Bogota 1975 to MAGNA-SIRGAS (10)', |
|
332
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4218', |
|
333
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
334
|
|
|
'accuracy' => 1.0, |
|
335
|
|
|
], |
|
336
|
|
|
[ |
|
337
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15732', |
|
338
|
|
|
'name' => 'Bogota 1975 to MAGNA-SIRGAS (11)', |
|
339
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4218', |
|
340
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
341
|
|
|
'accuracy' => 1.0, |
|
342
|
|
|
], |
|
343
|
|
|
[ |
|
344
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15733', |
|
345
|
|
|
'name' => 'Bogota 1975 to MAGNA-SIRGAS (12)', |
|
346
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4218', |
|
347
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
348
|
|
|
'accuracy' => 1.0, |
|
349
|
|
|
], |
|
350
|
|
|
[ |
|
351
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15734', |
|
352
|
|
|
'name' => 'Bogota 1975 to MAGNA-SIRGAS (13)', |
|
353
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4218', |
|
354
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
355
|
|
|
'accuracy' => 1.0, |
|
356
|
|
|
], |
|
357
|
|
|
[ |
|
358
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15735', |
|
359
|
|
|
'name' => 'Bogota 1975 to MAGNA-SIRGAS (14)', |
|
360
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4218', |
|
361
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
362
|
|
|
'accuracy' => 1.0, |
|
363
|
|
|
], |
|
364
|
|
|
[ |
|
365
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15736', |
|
366
|
|
|
'name' => 'Bogota 1975 to MAGNA-SIRGAS (15)', |
|
367
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4218', |
|
368
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
369
|
|
|
'accuracy' => 1.0, |
|
370
|
|
|
], |
|
371
|
|
|
[ |
|
372
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15737', |
|
373
|
|
|
'name' => 'Bogota 1975 to MAGNA-SIRGAS (16)', |
|
374
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4218', |
|
375
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
376
|
|
|
'accuracy' => 1.0, |
|
377
|
|
|
], |
|
378
|
|
|
[ |
|
379
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18031', |
|
380
|
|
|
'name' => 'Argentina zone 1', |
|
381
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4221', |
|
382
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22191', |
|
383
|
|
|
'accuracy' => 0, |
|
384
|
|
|
], |
|
385
|
|
|
[ |
|
386
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18032', |
|
387
|
|
|
'name' => 'Argentina zone 2', |
|
388
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4221', |
|
389
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22192', |
|
390
|
|
|
'accuracy' => 0, |
|
391
|
|
|
], |
|
392
|
|
|
[ |
|
393
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18033', |
|
394
|
|
|
'name' => 'Argentina zone 3', |
|
395
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4221', |
|
396
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22193', |
|
397
|
|
|
'accuracy' => 0, |
|
398
|
|
|
], |
|
399
|
|
|
[ |
|
400
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18034', |
|
401
|
|
|
'name' => 'Argentina zone 4', |
|
402
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4221', |
|
403
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22194', |
|
404
|
|
|
'accuracy' => 0, |
|
405
|
|
|
], |
|
406
|
|
|
[ |
|
407
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18035', |
|
408
|
|
|
'name' => 'Argentina zone 5', |
|
409
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4221', |
|
410
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22195', |
|
411
|
|
|
'accuracy' => 0, |
|
412
|
|
|
], |
|
413
|
|
|
[ |
|
414
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18036', |
|
415
|
|
|
'name' => 'Argentina zone 6', |
|
416
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4221', |
|
417
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22196', |
|
418
|
|
|
'accuracy' => 0, |
|
419
|
|
|
], |
|
420
|
|
|
[ |
|
421
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18037', |
|
422
|
|
|
'name' => 'Argentina zone 7', |
|
423
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4221', |
|
424
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22197', |
|
425
|
|
|
'accuracy' => 0, |
|
426
|
|
|
], |
|
427
|
|
|
[ |
|
428
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1527', |
|
429
|
|
|
'name' => 'Campo Inchauspe to WGS 84 (2)', |
|
430
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4221', |
|
431
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
432
|
|
|
'accuracy' => 0.5, |
|
433
|
|
|
], |
|
434
|
|
|
[ |
|
435
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15782', |
|
436
|
|
|
'name' => 'Campo Inchauspe to POSGAR 94 (1)', |
|
437
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4221', |
|
438
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4694', |
|
439
|
|
|
'accuracy' => 5.0, |
|
440
|
|
|
], |
|
441
|
|
|
[ |
|
442
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5350', |
|
443
|
|
|
'name' => 'Campo Inchauspe to POSGAR 2007 (1)', |
|
444
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4221', |
|
445
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5340', |
|
446
|
|
|
'accuracy' => 5.0, |
|
447
|
|
|
], |
|
448
|
|
|
[ |
|
449
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4069', |
|
450
|
|
|
'name' => 'Chua to SIRGAS 2000 (1)', |
|
451
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4224', |
|
452
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
453
|
|
|
'accuracy' => 5.0, |
|
454
|
|
|
], |
|
455
|
|
|
[ |
|
456
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1132', |
|
457
|
|
|
'name' => 'Corrego Alegre 1970-72 to WGS 84 (1)', |
|
458
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4225', |
|
459
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
460
|
|
|
'accuracy' => 8.0, |
|
461
|
|
|
], |
|
462
|
|
|
[ |
|
463
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6191', |
|
464
|
|
|
'name' => 'Corrego Alegre 1970-72 to SAD69 (1)', |
|
465
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4225', |
|
466
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
467
|
|
|
'accuracy' => 5.0, |
|
468
|
|
|
], |
|
469
|
|
|
[ |
|
470
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5526', |
|
471
|
|
|
'name' => 'Corrego Alegre 1970-72 to SIRGAS 2000 (1)', |
|
472
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4225', |
|
473
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
474
|
|
|
'accuracy' => 2.0, |
|
475
|
|
|
], |
|
476
|
|
|
[ |
|
477
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6193', |
|
478
|
|
|
'name' => 'Corrego Alegre 1970-72 to SIRGAS 2000 (2)', |
|
479
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4225', |
|
480
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
481
|
|
|
'accuracy' => 5.0, |
|
482
|
|
|
], |
|
483
|
|
|
[ |
|
484
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1771', |
|
485
|
|
|
'name' => 'La Canoa to REGVEN (1)', |
|
486
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4247', |
|
487
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4189', |
|
488
|
|
|
'accuracy' => 15.0, |
|
489
|
|
|
], |
|
490
|
|
|
[ |
|
491
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8674', |
|
492
|
|
|
'name' => 'La Canoa to PSAD56 (1)', |
|
493
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4247', |
|
494
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
495
|
|
|
'accuracy' => 0.0, |
|
496
|
|
|
], |
|
497
|
|
|
[ |
|
498
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1096', |
|
499
|
|
|
'name' => 'La Canoa to WGS 84 (13)', |
|
500
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4247', |
|
501
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
502
|
|
|
'accuracy' => 15.0, |
|
503
|
|
|
], |
|
504
|
|
|
[ |
|
505
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1516', |
|
506
|
|
|
'name' => 'La Canoa to WGS 84 (18)', |
|
507
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4247', |
|
508
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
509
|
|
|
'accuracy' => 2.5, |
|
510
|
|
|
], |
|
511
|
|
|
[ |
|
512
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10135', |
|
513
|
|
|
'name' => 'PSAD56 to SIRGAS-Chile 2021 (1)', |
|
514
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
515
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20041', |
|
516
|
|
|
'accuracy' => 5.0, |
|
517
|
|
|
], |
|
518
|
|
|
[ |
|
519
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10136', |
|
520
|
|
|
'name' => 'PSAD56 to SIRGAS-Chile 2021 (2)', |
|
521
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
522
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20041', |
|
523
|
|
|
'accuracy' => 5.0, |
|
524
|
|
|
], |
|
525
|
|
|
[ |
|
526
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10137', |
|
527
|
|
|
'name' => 'PSAD56 to SIRGAS-Chile 2021 (3)', |
|
528
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
529
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20041', |
|
530
|
|
|
'accuracy' => 5.0, |
|
531
|
|
|
], |
|
532
|
|
|
[ |
|
533
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19976', |
|
534
|
|
|
'name' => 'ICN Regional', |
|
535
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
536
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2317', |
|
537
|
|
|
'accuracy' => 0, |
|
538
|
|
|
], |
|
539
|
|
|
[ |
|
540
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18161', |
|
541
|
|
|
'name' => 'Peru west zone', |
|
542
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
543
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24891', |
|
544
|
|
|
'accuracy' => 0, |
|
545
|
|
|
], |
|
546
|
|
|
[ |
|
547
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18162', |
|
548
|
|
|
'name' => 'Peru central zone', |
|
549
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
550
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24892', |
|
551
|
|
|
'accuracy' => 0, |
|
552
|
|
|
], |
|
553
|
|
|
[ |
|
554
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18163', |
|
555
|
|
|
'name' => 'Peru east zone', |
|
556
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
557
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24893', |
|
558
|
|
|
'accuracy' => 0, |
|
559
|
|
|
], |
|
560
|
|
|
[ |
|
561
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3971', |
|
562
|
|
|
'name' => 'PSAD56 to SIRGAS 1995 (1)', |
|
563
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
564
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4170', |
|
565
|
|
|
'accuracy' => 5.0, |
|
566
|
|
|
], |
|
567
|
|
|
[ |
|
568
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1769', |
|
569
|
|
|
'name' => 'PSAD56 to REGVEN (1)', |
|
570
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
571
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4189', |
|
572
|
|
|
'accuracy' => 15.0, |
|
573
|
|
|
], |
|
574
|
|
|
[ |
|
575
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1095', |
|
576
|
|
|
'name' => 'PSAD56 to WGS 84 (13)', |
|
577
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
578
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
579
|
|
|
'accuracy' => 15.0, |
|
580
|
|
|
], |
|
581
|
|
|
[ |
|
582
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1201', |
|
583
|
|
|
'name' => 'PSAD56 to WGS 84 (1)', |
|
584
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
585
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
586
|
|
|
'accuracy' => 42.0, |
|
587
|
|
|
], |
|
588
|
|
|
[ |
|
589
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1202', |
|
590
|
|
|
'name' => 'PSAD56 to WGS 84 (2)', |
|
591
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
592
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
593
|
|
|
'accuracy' => 19.0, |
|
594
|
|
|
], |
|
595
|
|
|
[ |
|
596
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1205', |
|
597
|
|
|
'name' => 'PSAD56 to WGS 84 (5)', |
|
598
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
599
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
600
|
|
|
'accuracy' => 26.0, |
|
601
|
|
|
], |
|
602
|
|
|
[ |
|
603
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1206', |
|
604
|
|
|
'name' => 'PSAD56 to WGS 84 (6)', |
|
605
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
606
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
607
|
|
|
'accuracy' => 7.0, |
|
608
|
|
|
], |
|
609
|
|
|
[ |
|
610
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1207', |
|
611
|
|
|
'name' => 'PSAD56 to WGS 84 (7)', |
|
612
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
613
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
614
|
|
|
'accuracy' => 17.0, |
|
615
|
|
|
], |
|
616
|
|
|
[ |
|
617
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1208', |
|
618
|
|
|
'name' => 'PSAD56 to WGS 84 (8)', |
|
619
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
620
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
621
|
|
|
'accuracy' => 16.0, |
|
622
|
|
|
], |
|
623
|
|
|
[ |
|
624
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1209', |
|
625
|
|
|
'name' => 'PSAD56 to WGS 84 (9)', |
|
626
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
627
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
628
|
|
|
'accuracy' => 23.0, |
|
629
|
|
|
], |
|
630
|
|
|
[ |
|
631
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1582', |
|
632
|
|
|
'name' => 'PSAD56 to WGS 84 (10)', |
|
633
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
634
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
635
|
|
|
'accuracy' => 3.0, |
|
636
|
|
|
], |
|
637
|
|
|
[ |
|
638
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1583', |
|
639
|
|
|
'name' => 'PSAD56 to WGS 84 (11)', |
|
640
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
641
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
642
|
|
|
'accuracy' => 0.5, |
|
643
|
|
|
], |
|
644
|
|
|
[ |
|
645
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1811', |
|
646
|
|
|
'name' => 'PSAD56 to WGS 84 (12)', |
|
647
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
648
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
649
|
|
|
'accuracy' => 10.0, |
|
650
|
|
|
], |
|
651
|
|
|
[ |
|
652
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3990', |
|
653
|
|
|
'name' => 'PSAD56 to WGS 84 (14)', |
|
654
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
655
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
656
|
|
|
'accuracy' => 5.0, |
|
657
|
|
|
], |
|
658
|
|
|
[ |
|
659
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6971', |
|
660
|
|
|
'name' => 'PSAD56 to WGS 84 (15)', |
|
661
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
662
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
663
|
|
|
'accuracy' => 17.0, |
|
664
|
|
|
], |
|
665
|
|
|
[ |
|
666
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6972', |
|
667
|
|
|
'name' => 'PSAD56 to WGS 84 (16)', |
|
668
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
669
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
670
|
|
|
'accuracy' => 17.0, |
|
671
|
|
|
], |
|
672
|
|
|
[ |
|
673
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6973', |
|
674
|
|
|
'name' => 'PSAD56 to WGS 84 (17)', |
|
675
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
676
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
677
|
|
|
'accuracy' => 17.0, |
|
678
|
|
|
], |
|
679
|
|
|
[ |
|
680
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6949', |
|
681
|
|
|
'name' => 'PSAD56 to SIRGAS-Chile 2002 (1)', |
|
682
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
683
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5360', |
|
684
|
|
|
'accuracy' => 5.0, |
|
685
|
|
|
], |
|
686
|
|
|
[ |
|
687
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6950', |
|
688
|
|
|
'name' => 'PSAD56 to SIRGAS-Chile 2002 (2)', |
|
689
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
690
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5360', |
|
691
|
|
|
'accuracy' => 5.0, |
|
692
|
|
|
], |
|
693
|
|
|
[ |
|
694
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6951', |
|
695
|
|
|
'name' => 'PSAD56 to SIRGAS-Chile 2002 (3)', |
|
696
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
697
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5360', |
|
698
|
|
|
'accuracy' => 5.0, |
|
699
|
|
|
], |
|
700
|
|
|
[ |
|
701
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9339', |
|
702
|
|
|
'name' => 'PSAD56 to SIRGAS-Chile 2010 (1)', |
|
703
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
704
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8949', |
|
705
|
|
|
'accuracy' => 5.0, |
|
706
|
|
|
], |
|
707
|
|
|
[ |
|
708
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9340', |
|
709
|
|
|
'name' => 'PSAD56 to SIRGAS-Chile 2010 (2)', |
|
710
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
711
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8949', |
|
712
|
|
|
'accuracy' => 5.0, |
|
713
|
|
|
], |
|
714
|
|
|
[ |
|
715
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9341', |
|
716
|
|
|
'name' => 'PSAD56 to SIRGAS-Chile 2010 (3)', |
|
717
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
718
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8949', |
|
719
|
|
|
'accuracy' => 5.0, |
|
720
|
|
|
], |
|
721
|
|
|
[ |
|
722
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9342', |
|
723
|
|
|
'name' => 'PSAD56 to SIRGAS-Chile 2013 (1)', |
|
724
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
725
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9148', |
|
726
|
|
|
'accuracy' => 5.0, |
|
727
|
|
|
], |
|
728
|
|
|
[ |
|
729
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9343', |
|
730
|
|
|
'name' => 'PSAD56 to SIRGAS-Chile 2013 (2)', |
|
731
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
732
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9148', |
|
733
|
|
|
'accuracy' => 5.0, |
|
734
|
|
|
], |
|
735
|
|
|
[ |
|
736
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9344', |
|
737
|
|
|
'name' => 'PSAD56 to SIRGAS-Chile 2013 (3)', |
|
738
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
739
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9148', |
|
740
|
|
|
'accuracy' => 5.0, |
|
741
|
|
|
], |
|
742
|
|
|
[ |
|
743
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9345', |
|
744
|
|
|
'name' => 'PSAD56 to SIRGAS-Chile 2016 (1)', |
|
745
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
746
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9153', |
|
747
|
|
|
'accuracy' => 5.0, |
|
748
|
|
|
], |
|
749
|
|
|
[ |
|
750
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9346', |
|
751
|
|
|
'name' => 'PSAD56 to SIRGAS-Chile 2016 (2)', |
|
752
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
753
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9153', |
|
754
|
|
|
'accuracy' => 5.0, |
|
755
|
|
|
], |
|
756
|
|
|
[ |
|
757
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9347', |
|
758
|
|
|
'name' => 'PSAD56 to SIRGAS-Chile 2016 (3)', |
|
759
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4248', |
|
760
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9153', |
|
761
|
|
|
'accuracy' => 5.0, |
|
762
|
|
|
], |
|
763
|
|
|
[ |
|
764
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18260', |
|
765
|
|
|
'name' => 'Maracaibo Grid (M1)', |
|
766
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4249', |
|
767
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2101', |
|
768
|
|
|
'accuracy' => 0, |
|
769
|
|
|
], |
|
770
|
|
|
[ |
|
771
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18261', |
|
772
|
|
|
'name' => 'Maracaibo Grid', |
|
773
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4249', |
|
774
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2102', |
|
775
|
|
|
'accuracy' => 0, |
|
776
|
|
|
], |
|
777
|
|
|
[ |
|
778
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18262', |
|
779
|
|
|
'name' => 'Maracaibo Grid (M3)', |
|
780
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4249', |
|
781
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2103', |
|
782
|
|
|
'accuracy' => 0, |
|
783
|
|
|
], |
|
784
|
|
|
[ |
|
785
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18263', |
|
786
|
|
|
'name' => 'Maracaibo La Rosa Grid', |
|
787
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4249', |
|
788
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2104', |
|
789
|
|
|
'accuracy' => 0, |
|
790
|
|
|
], |
|
791
|
|
|
[ |
|
792
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18032', |
|
793
|
|
|
'name' => 'Argentina zone 2', |
|
794
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4254', |
|
795
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2083', |
|
796
|
|
|
'accuracy' => 0, |
|
797
|
|
|
], |
|
798
|
|
|
[ |
|
799
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1529', |
|
800
|
|
|
'name' => 'Hito XVIII to WGS 84 (1)', |
|
801
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4254', |
|
802
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
803
|
|
|
'accuracy' => 0.5, |
|
804
|
|
|
], |
|
805
|
|
|
[ |
|
806
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1892', |
|
807
|
|
|
'name' => 'Hito XVIII 1963 to WGS 84 (2)', |
|
808
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4254', |
|
809
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
810
|
|
|
'accuracy' => 44.0, |
|
811
|
|
|
], |
|
812
|
|
|
[ |
|
813
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1307', |
|
814
|
|
|
'name' => 'Naparima 1972 to WGS 84 (3)', |
|
815
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4271', |
|
816
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
817
|
|
|
'accuracy' => 26.0, |
|
818
|
|
|
], |
|
819
|
|
|
[ |
|
820
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1225', |
|
821
|
|
|
'name' => 'Sapper Hill 1943 to WGS 84 (1)', |
|
822
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4292', |
|
823
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
824
|
|
|
'accuracy' => 2.0, |
|
825
|
|
|
], |
|
826
|
|
|
[ |
|
827
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19975', |
|
828
|
|
|
'name' => 'Trinidad Grid (Clarke\'s foot)', |
|
829
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4302', |
|
830
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2314', |
|
831
|
|
|
'accuracy' => 0, |
|
832
|
|
|
], |
|
833
|
|
|
[ |
|
834
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19925', |
|
835
|
|
|
'name' => 'Trinidad Grid', |
|
836
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4302', |
|
837
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30200', |
|
838
|
|
|
'accuracy' => 0, |
|
839
|
|
|
], |
|
840
|
|
|
[ |
|
841
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1296', |
|
842
|
|
|
'name' => 'Trinidad 1903 to WGS 84 (1)', |
|
843
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4302', |
|
844
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
845
|
|
|
'accuracy' => 2.0, |
|
846
|
|
|
], |
|
847
|
|
|
[ |
|
848
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5386', |
|
849
|
|
|
'name' => 'Yacare to WGS 84 (2)', |
|
850
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4309', |
|
851
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
852
|
|
|
'accuracy' => 1.5, |
|
853
|
|
|
], |
|
854
|
|
|
[ |
|
855
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5385', |
|
856
|
|
|
'name' => 'Yacare to SIRGAS-ROU98 (1)', |
|
857
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4309', |
|
858
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5381', |
|
859
|
|
|
'accuracy' => 1.5, |
|
860
|
|
|
], |
|
861
|
|
|
[ |
|
862
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17054', |
|
863
|
|
|
'name' => 'TM 54 NW', |
|
864
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4311', |
|
865
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31154', |
|
866
|
|
|
'accuracy' => 0, |
|
867
|
|
|
], |
|
868
|
|
|
[ |
|
869
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19954', |
|
870
|
|
|
'name' => 'Suriname Old TM', |
|
871
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4311', |
|
872
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31170', |
|
873
|
|
|
'accuracy' => 0, |
|
874
|
|
|
], |
|
875
|
|
|
[ |
|
876
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19955', |
|
877
|
|
|
'name' => 'Suriname TM', |
|
878
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4311', |
|
879
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31171', |
|
880
|
|
|
'accuracy' => 0, |
|
881
|
|
|
], |
|
882
|
|
|
[ |
|
883
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1235', |
|
884
|
|
|
'name' => 'Zanderij to WGS 84 (1)', |
|
885
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4311', |
|
886
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
887
|
|
|
'accuracy' => 11.0, |
|
888
|
|
|
], |
|
889
|
|
|
[ |
|
890
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10602', |
|
891
|
|
|
'name' => 'GLANCE projection - South America', |
|
892
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
893
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10603', |
|
894
|
|
|
'accuracy' => 0, |
|
895
|
|
|
], |
|
896
|
|
|
[ |
|
897
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6702', |
|
898
|
|
|
'name' => 'TM 60 SW', |
|
899
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
900
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6703', |
|
901
|
|
|
'accuracy' => 0, |
|
902
|
|
|
], |
|
903
|
|
|
[ |
|
904
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8033', |
|
905
|
|
|
'name' => 'TM Zone 20N (US survey foot)', |
|
906
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
907
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8035', |
|
908
|
|
|
'accuracy' => 0, |
|
909
|
|
|
], |
|
910
|
|
|
[ |
|
911
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8034', |
|
912
|
|
|
'name' => 'TM Zone 21N (US survey foot)', |
|
913
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
914
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8036', |
|
915
|
|
|
'accuracy' => 0, |
|
916
|
|
|
], |
|
917
|
|
|
[ |
|
918
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10138', |
|
919
|
|
|
'name' => 'SAD69 to SIRGAS-Chile 2021 (4)', |
|
920
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
921
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20041', |
|
922
|
|
|
'accuracy' => 5.0, |
|
923
|
|
|
], |
|
924
|
|
|
[ |
|
925
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19941', |
|
926
|
|
|
'name' => 'Brazil Polyconic', |
|
927
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
928
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29101', |
|
929
|
|
|
'accuracy' => 0, |
|
930
|
|
|
], |
|
931
|
|
|
[ |
|
932
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1864', |
|
933
|
|
|
'name' => 'SAD69 to WGS 84 (1)', |
|
934
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
935
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
936
|
|
|
'accuracy' => 19.0, |
|
937
|
|
|
], |
|
938
|
|
|
[ |
|
939
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1865', |
|
940
|
|
|
'name' => 'SAD69 to WGS 84 (2)', |
|
941
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
942
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
943
|
|
|
'accuracy' => 9.0, |
|
944
|
|
|
], |
|
945
|
|
|
[ |
|
946
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1866', |
|
947
|
|
|
'name' => 'SAD69 to WGS 84 (3)', |
|
948
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
949
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
950
|
|
|
'accuracy' => 26.0, |
|
951
|
|
|
], |
|
952
|
|
|
[ |
|
953
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1867', |
|
954
|
|
|
'name' => 'SAD69 to WGS 84 (4)', |
|
955
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
956
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
957
|
|
|
'accuracy' => 8.0, |
|
958
|
|
|
], |
|
959
|
|
|
[ |
|
960
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1869', |
|
961
|
|
|
'name' => 'SAD69 to WGS 84 (6)', |
|
962
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
963
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
964
|
|
|
'accuracy' => 10.0, |
|
965
|
|
|
], |
|
966
|
|
|
[ |
|
967
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1870', |
|
968
|
|
|
'name' => 'SAD69 to WGS 84 (7)', |
|
969
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
970
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
971
|
|
|
'accuracy' => 6.0, |
|
972
|
|
|
], |
|
973
|
|
|
[ |
|
974
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1871', |
|
975
|
|
|
'name' => 'SAD69 to WGS 84 (8)', |
|
976
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
977
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
978
|
|
|
'accuracy' => 44.0, |
|
979
|
|
|
], |
|
980
|
|
|
[ |
|
981
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1872', |
|
982
|
|
|
'name' => 'SAD69 to WGS 84 (9)', |
|
983
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
984
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
985
|
|
|
'accuracy' => 12.0, |
|
986
|
|
|
], |
|
987
|
|
|
[ |
|
988
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1873', |
|
989
|
|
|
'name' => 'SAD69 to WGS 84 (10)', |
|
990
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
991
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
992
|
|
|
'accuracy' => 26.0, |
|
993
|
|
|
], |
|
994
|
|
|
[ |
|
995
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1874', |
|
996
|
|
|
'name' => 'SAD69 to WGS 84 (11)', |
|
997
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
998
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
999
|
|
|
'accuracy' => 9.0, |
|
1000
|
|
|
], |
|
1001
|
|
|
[ |
|
1002
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1875', |
|
1003
|
|
|
'name' => 'SAD69 to WGS 84 (12)', |
|
1004
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
1005
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1006
|
|
|
'accuracy' => 44.0, |
|
1007
|
|
|
], |
|
1008
|
|
|
[ |
|
1009
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1876', |
|
1010
|
|
|
'name' => 'SAD69 to WGS 84 (13)', |
|
1011
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
1012
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1013
|
|
|
'accuracy' => 8.0, |
|
1014
|
|
|
], |
|
1015
|
|
|
[ |
|
1016
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1877', |
|
1017
|
|
|
'name' => 'SAD69 to WGS 84 (14)', |
|
1018
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
1019
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1020
|
|
|
'accuracy' => 5.0, |
|
1021
|
|
|
], |
|
1022
|
|
|
[ |
|
1023
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6974', |
|
1024
|
|
|
'name' => 'SAD69 to WGS 84 (17)', |
|
1025
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
1026
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1027
|
|
|
'accuracy' => 4.0, |
|
1028
|
|
|
], |
|
1029
|
|
|
[ |
|
1030
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6975', |
|
1031
|
|
|
'name' => 'SAD69 to WGS 84 (18)', |
|
1032
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
1033
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1034
|
|
|
'accuracy' => 4.0, |
|
1035
|
|
|
], |
|
1036
|
|
|
[ |
|
1037
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6976', |
|
1038
|
|
|
'name' => 'SAD69 to WGS 84 (19)', |
|
1039
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
1040
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1041
|
|
|
'accuracy' => 7.0, |
|
1042
|
|
|
], |
|
1043
|
|
|
[ |
|
1044
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6977', |
|
1045
|
|
|
'name' => 'SAD69 to WGS 84 (20)', |
|
1046
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
1047
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1048
|
|
|
'accuracy' => 6.0, |
|
1049
|
|
|
], |
|
1050
|
|
|
[ |
|
1051
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15485', |
|
1052
|
|
|
'name' => 'SAD69 to SIRGAS 2000 (1)', |
|
1053
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
1054
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
1055
|
|
|
'accuracy' => 5.0, |
|
1056
|
|
|
], |
|
1057
|
|
|
[ |
|
1058
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5528', |
|
1059
|
|
|
'name' => 'SAD69 to SIRGAS 2000 (2)', |
|
1060
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
1061
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
1062
|
|
|
'accuracy' => 1.0, |
|
1063
|
|
|
], |
|
1064
|
|
|
[ |
|
1065
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6968', |
|
1066
|
|
|
'name' => 'SAD69 to SIRGAS-Chile 2002 (2)', |
|
1067
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
1068
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5360', |
|
1069
|
|
|
'accuracy' => 5.0, |
|
1070
|
|
|
], |
|
1071
|
|
|
[ |
|
1072
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6970', |
|
1073
|
|
|
'name' => 'SAD69 to SIRGAS-Chile 2002 (4)', |
|
1074
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
1075
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5360', |
|
1076
|
|
|
'accuracy' => 5.0, |
|
1077
|
|
|
], |
|
1078
|
|
|
[ |
|
1079
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7448', |
|
1080
|
|
|
'name' => 'SAD69 to SIRGAS-Chile 2002 (1)', |
|
1081
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
1082
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5360', |
|
1083
|
|
|
'accuracy' => 5.0, |
|
1084
|
|
|
], |
|
1085
|
|
|
[ |
|
1086
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7449', |
|
1087
|
|
|
'name' => 'SAD69 to SIRGAS-Chile 2002 (3)', |
|
1088
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
1089
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5360', |
|
1090
|
|
|
'accuracy' => 5.0, |
|
1091
|
|
|
], |
|
1092
|
|
|
[ |
|
1093
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9348', |
|
1094
|
|
|
'name' => 'SAD69 to SIRGAS-Chile 2010 (4)', |
|
1095
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
1096
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8949', |
|
1097
|
|
|
'accuracy' => 5.0, |
|
1098
|
|
|
], |
|
1099
|
|
|
[ |
|
1100
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9349', |
|
1101
|
|
|
'name' => 'SAD69 to SIRGAS-Chile 2013 (4)', |
|
1102
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
1103
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9148', |
|
1104
|
|
|
'accuracy' => 5.0, |
|
1105
|
|
|
], |
|
1106
|
|
|
[ |
|
1107
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9350', |
|
1108
|
|
|
'name' => 'SAD69 to SIRGAS-Chile 2016 (4)', |
|
1109
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4618', |
|
1110
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9153', |
|
1111
|
|
|
'accuracy' => 5.0, |
|
1112
|
|
|
], |
|
1113
|
|
|
[ |
|
1114
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1906', |
|
1115
|
|
|
'name' => 'CSG67 to WGS 84 (1)', |
|
1116
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4623', |
|
1117
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1118
|
|
|
'accuracy' => 10.0, |
|
1119
|
|
|
], |
|
1120
|
|
|
[ |
|
1121
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1908', |
|
1122
|
|
|
'name' => 'CSG67 to RGFG95 (1)', |
|
1123
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4623', |
|
1124
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4624', |
|
1125
|
|
|
'accuracy' => 1.0, |
|
1126
|
|
|
], |
|
1127
|
|
|
[ |
|
1128
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4840', |
|
1129
|
|
|
'name' => 'RGFG95 to WGS 84 (2)', |
|
1130
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4624', |
|
1131
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1132
|
|
|
'accuracy' => 1.0, |
|
1133
|
|
|
], |
|
1134
|
|
|
[ |
|
1135
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10664', |
|
1136
|
|
|
'name' => 'Porto Alegre Transverse Mercator', |
|
1137
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
1138
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10665', |
|
1139
|
|
|
'accuracy' => 0, |
|
1140
|
|
|
], |
|
1141
|
|
|
[ |
|
1142
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15894', |
|
1143
|
|
|
'name' => 'SIRGAS 2000 to WGS 84 (1)', |
|
1144
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
1145
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1146
|
|
|
'accuracy' => 1.0, |
|
1147
|
|
|
], |
|
1148
|
|
|
[ |
|
1149
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5640', |
|
1150
|
|
|
'name' => 'Petrobras Mercator', |
|
1151
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
1152
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5641', |
|
1153
|
|
|
'accuracy' => 0, |
|
1154
|
|
|
], |
|
1155
|
|
|
[ |
|
1156
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19941', |
|
1157
|
|
|
'name' => 'Brazil Polyconic', |
|
1158
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
1159
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5880', |
|
1160
|
|
|
'accuracy' => 0, |
|
1161
|
|
|
], |
|
1162
|
|
|
[ |
|
1163
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18055', |
|
1164
|
|
|
'name' => 'Colombia MAGNA Far West zone', |
|
1165
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1166
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3114', |
|
1167
|
|
|
'accuracy' => 0, |
|
1168
|
|
|
], |
|
1169
|
|
|
[ |
|
1170
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18056', |
|
1171
|
|
|
'name' => 'Colombia MAGNA West zone', |
|
1172
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1173
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3115', |
|
1174
|
|
|
'accuracy' => 0, |
|
1175
|
|
|
], |
|
1176
|
|
|
[ |
|
1177
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18057', |
|
1178
|
|
|
'name' => 'Colombia MAGNA Bogota zone', |
|
1179
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1180
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3116', |
|
1181
|
|
|
'accuracy' => 0, |
|
1182
|
|
|
], |
|
1183
|
|
|
[ |
|
1184
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18058', |
|
1185
|
|
|
'name' => 'Colombia MAGNA East Central zone', |
|
1186
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1187
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3117', |
|
1188
|
|
|
'accuracy' => 0, |
|
1189
|
|
|
], |
|
1190
|
|
|
[ |
|
1191
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18059', |
|
1192
|
|
|
'name' => 'Colombia MAGNA East zone', |
|
1193
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1194
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3118', |
|
1195
|
|
|
'accuracy' => 0, |
|
1196
|
|
|
], |
|
1197
|
|
|
[ |
|
1198
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15738', |
|
1199
|
|
|
'name' => 'MAGNA-SIRGAS to WGS 84 (1)', |
|
1200
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1201
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1202
|
|
|
'accuracy' => 1.0, |
|
1203
|
|
|
], |
|
1204
|
|
|
[ |
|
1205
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6212', |
|
1206
|
|
|
'name' => 'Arauca urban grid', |
|
1207
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1208
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6244', |
|
1209
|
|
|
'accuracy' => 0, |
|
1210
|
|
|
], |
|
1211
|
|
|
[ |
|
1212
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6213', |
|
1213
|
|
|
'name' => 'Armenia urban grid', |
|
1214
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1215
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6245', |
|
1216
|
|
|
'accuracy' => 0, |
|
1217
|
|
|
], |
|
1218
|
|
|
[ |
|
1219
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6214', |
|
1220
|
|
|
'name' => 'Barranquilla urban grid', |
|
1221
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1222
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6246', |
|
1223
|
|
|
'accuracy' => 0, |
|
1224
|
|
|
], |
|
1225
|
|
|
[ |
|
1226
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6215', |
|
1227
|
|
|
'name' => 'Bogota urban grid', |
|
1228
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1229
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6247', |
|
1230
|
|
|
'accuracy' => 0, |
|
1231
|
|
|
], |
|
1232
|
|
|
[ |
|
1233
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6216', |
|
1234
|
|
|
'name' => 'Bucaramanga urban grid', |
|
1235
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1236
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6248', |
|
1237
|
|
|
'accuracy' => 0, |
|
1238
|
|
|
], |
|
1239
|
|
|
[ |
|
1240
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6217', |
|
1241
|
|
|
'name' => 'Cali urban grid', |
|
1242
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1243
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6249', |
|
1244
|
|
|
'accuracy' => 0, |
|
1245
|
|
|
], |
|
1246
|
|
|
[ |
|
1247
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6218', |
|
1248
|
|
|
'name' => 'Cartagena urban grid', |
|
1249
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1250
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6250', |
|
1251
|
|
|
'accuracy' => 0, |
|
1252
|
|
|
], |
|
1253
|
|
|
[ |
|
1254
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6219', |
|
1255
|
|
|
'name' => 'Cucuta urban grid', |
|
1256
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1257
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6251', |
|
1258
|
|
|
'accuracy' => 0, |
|
1259
|
|
|
], |
|
1260
|
|
|
[ |
|
1261
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6220', |
|
1262
|
|
|
'name' => 'Florencia urban grid', |
|
1263
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1264
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6252', |
|
1265
|
|
|
'accuracy' => 0, |
|
1266
|
|
|
], |
|
1267
|
|
|
[ |
|
1268
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6221', |
|
1269
|
|
|
'name' => 'Ibague urban grid', |
|
1270
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1271
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6253', |
|
1272
|
|
|
'accuracy' => 0, |
|
1273
|
|
|
], |
|
1274
|
|
|
[ |
|
1275
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6222', |
|
1276
|
|
|
'name' => 'Inirida urban grid', |
|
1277
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1278
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6254', |
|
1279
|
|
|
'accuracy' => 0, |
|
1280
|
|
|
], |
|
1281
|
|
|
[ |
|
1282
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6223', |
|
1283
|
|
|
'name' => 'Leticia urban grid', |
|
1284
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1285
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6255', |
|
1286
|
|
|
'accuracy' => 0, |
|
1287
|
|
|
], |
|
1288
|
|
|
[ |
|
1289
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6224', |
|
1290
|
|
|
'name' => 'Manizales urban grid', |
|
1291
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1292
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6256', |
|
1293
|
|
|
'accuracy' => 0, |
|
1294
|
|
|
], |
|
1295
|
|
|
[ |
|
1296
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6225', |
|
1297
|
|
|
'name' => 'Medellin urban grid', |
|
1298
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1299
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6257', |
|
1300
|
|
|
'accuracy' => 0, |
|
1301
|
|
|
], |
|
1302
|
|
|
[ |
|
1303
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6226', |
|
1304
|
|
|
'name' => 'Mitu urban grid', |
|
1305
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1306
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6258', |
|
1307
|
|
|
'accuracy' => 0, |
|
1308
|
|
|
], |
|
1309
|
|
|
[ |
|
1310
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6227', |
|
1311
|
|
|
'name' => 'Mocoa urban grid', |
|
1312
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1313
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6259', |
|
1314
|
|
|
'accuracy' => 0, |
|
1315
|
|
|
], |
|
1316
|
|
|
[ |
|
1317
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6228', |
|
1318
|
|
|
'name' => 'Monteria urban grid', |
|
1319
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1320
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6260', |
|
1321
|
|
|
'accuracy' => 0, |
|
1322
|
|
|
], |
|
1323
|
|
|
[ |
|
1324
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6229', |
|
1325
|
|
|
'name' => 'Neiva urban grid', |
|
1326
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1327
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6261', |
|
1328
|
|
|
'accuracy' => 0, |
|
1329
|
|
|
], |
|
1330
|
|
|
[ |
|
1331
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6230', |
|
1332
|
|
|
'name' => 'Pasto urban grid', |
|
1333
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1334
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6262', |
|
1335
|
|
|
'accuracy' => 0, |
|
1336
|
|
|
], |
|
1337
|
|
|
[ |
|
1338
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6231', |
|
1339
|
|
|
'name' => 'Pereira urban grid', |
|
1340
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1341
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6263', |
|
1342
|
|
|
'accuracy' => 0, |
|
1343
|
|
|
], |
|
1344
|
|
|
[ |
|
1345
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6232', |
|
1346
|
|
|
'name' => 'Popayan urban grid', |
|
1347
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1348
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6264', |
|
1349
|
|
|
'accuracy' => 0, |
|
1350
|
|
|
], |
|
1351
|
|
|
[ |
|
1352
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6233', |
|
1353
|
|
|
'name' => 'Puerto Carreno urban grid', |
|
1354
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1355
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6265', |
|
1356
|
|
|
'accuracy' => 0, |
|
1357
|
|
|
], |
|
1358
|
|
|
[ |
|
1359
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6234', |
|
1360
|
|
|
'name' => 'Quibdo urban grid', |
|
1361
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1362
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6266', |
|
1363
|
|
|
'accuracy' => 0, |
|
1364
|
|
|
], |
|
1365
|
|
|
[ |
|
1366
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6235', |
|
1367
|
|
|
'name' => 'Riohacha urban grid', |
|
1368
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1369
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6267', |
|
1370
|
|
|
'accuracy' => 0, |
|
1371
|
|
|
], |
|
1372
|
|
|
[ |
|
1373
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6236', |
|
1374
|
|
|
'name' => 'San Andres urban grid', |
|
1375
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1376
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6268', |
|
1377
|
|
|
'accuracy' => 0, |
|
1378
|
|
|
], |
|
1379
|
|
|
[ |
|
1380
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6237', |
|
1381
|
|
|
'name' => 'San Jose del Guaviare urban grid', |
|
1382
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1383
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6269', |
|
1384
|
|
|
'accuracy' => 0, |
|
1385
|
|
|
], |
|
1386
|
|
|
[ |
|
1387
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6238', |
|
1388
|
|
|
'name' => 'Santa Marta urban grid', |
|
1389
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1390
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6270', |
|
1391
|
|
|
'accuracy' => 0, |
|
1392
|
|
|
], |
|
1393
|
|
|
[ |
|
1394
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6239', |
|
1395
|
|
|
'name' => 'Sucre urban grid', |
|
1396
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1397
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6271', |
|
1398
|
|
|
'accuracy' => 0, |
|
1399
|
|
|
], |
|
1400
|
|
|
[ |
|
1401
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6240', |
|
1402
|
|
|
'name' => 'Tunja urban grid', |
|
1403
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1404
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6272', |
|
1405
|
|
|
'accuracy' => 0, |
|
1406
|
|
|
], |
|
1407
|
|
|
[ |
|
1408
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6241', |
|
1409
|
|
|
'name' => 'Valledupar urban grid', |
|
1410
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1411
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6273', |
|
1412
|
|
|
'accuracy' => 0, |
|
1413
|
|
|
], |
|
1414
|
|
|
[ |
|
1415
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6242', |
|
1416
|
|
|
'name' => 'Villavicencio urban grid', |
|
1417
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1418
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6274', |
|
1419
|
|
|
'accuracy' => 0, |
|
1420
|
|
|
], |
|
1421
|
|
|
[ |
|
1422
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6243', |
|
1423
|
|
|
'name' => 'Yopal urban grid', |
|
1424
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4686', |
|
1425
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6275', |
|
1426
|
|
|
'accuracy' => 0, |
|
1427
|
|
|
], |
|
1428
|
|
|
[ |
|
1429
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18031', |
|
1430
|
|
|
'name' => 'Argentina zone 1', |
|
1431
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4694', |
|
1432
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22181', |
|
1433
|
|
|
'accuracy' => 0, |
|
1434
|
|
|
], |
|
1435
|
|
|
[ |
|
1436
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18032', |
|
1437
|
|
|
'name' => 'Argentina zone 2', |
|
1438
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4694', |
|
1439
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22182', |
|
1440
|
|
|
'accuracy' => 0, |
|
1441
|
|
|
], |
|
1442
|
|
|
[ |
|
1443
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18033', |
|
1444
|
|
|
'name' => 'Argentina zone 3', |
|
1445
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4694', |
|
1446
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22183', |
|
1447
|
|
|
'accuracy' => 0, |
|
1448
|
|
|
], |
|
1449
|
|
|
[ |
|
1450
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18034', |
|
1451
|
|
|
'name' => 'Argentina zone 4', |
|
1452
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4694', |
|
1453
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22184', |
|
1454
|
|
|
'accuracy' => 0, |
|
1455
|
|
|
], |
|
1456
|
|
|
[ |
|
1457
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18035', |
|
1458
|
|
|
'name' => 'Argentina zone 5', |
|
1459
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4694', |
|
1460
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22185', |
|
1461
|
|
|
'accuracy' => 0, |
|
1462
|
|
|
], |
|
1463
|
|
|
[ |
|
1464
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18036', |
|
1465
|
|
|
'name' => 'Argentina zone 6', |
|
1466
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4694', |
|
1467
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22186', |
|
1468
|
|
|
'accuracy' => 0, |
|
1469
|
|
|
], |
|
1470
|
|
|
[ |
|
1471
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18037', |
|
1472
|
|
|
'name' => 'Argentina zone 7', |
|
1473
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4694', |
|
1474
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22187', |
|
1475
|
|
|
'accuracy' => 0, |
|
1476
|
|
|
], |
|
1477
|
|
|
[ |
|
1478
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1210', |
|
1479
|
|
|
'name' => 'POSGAR 94 to WGS 84 (1)', |
|
1480
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4694', |
|
1481
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1482
|
|
|
'accuracy' => 1.0, |
|
1483
|
|
|
], |
|
1484
|
|
|
[ |
|
1485
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15806', |
|
1486
|
|
|
'name' => 'Easter Island 1967 to WGS 84 (1)', |
|
1487
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4719', |
|
1488
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1489
|
|
|
'accuracy' => 44.0, |
|
1490
|
|
|
], |
|
1491
|
|
|
[ |
|
1492
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1755', |
|
1493
|
|
|
'name' => 'Bogota 1975 (Bogota) to Bogota 1975 (1)', |
|
1494
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4802', |
|
1495
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4218', |
|
1496
|
|
|
'accuracy' => 0.0, |
|
1497
|
|
|
], |
|
1498
|
|
|
[ |
|
1499
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9051', |
|
1500
|
|
|
'name' => 'ITRF94 to SIRGAS 1995 (1)', |
|
1501
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4916', |
|
1502
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4974', |
|
1503
|
|
|
'accuracy' => 0.01, |
|
1504
|
|
|
], |
|
1505
|
|
|
[ |
|
1506
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8952', |
|
1507
|
|
|
'name' => 'ITRF97 to SIRGAS-CON DGF00P01 (1)', |
|
1508
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4918', |
|
1509
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8915', |
|
1510
|
|
|
'accuracy' => 0.01, |
|
1511
|
|
|
], |
|
1512
|
|
|
[ |
|
1513
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9052', |
|
1514
|
|
|
'name' => 'ITRF2000 to SIRGAS 2000 (1)', |
|
1515
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4919', |
|
1516
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4988', |
|
1517
|
|
|
'accuracy' => 0.01, |
|
1518
|
|
|
], |
|
1519
|
|
|
[ |
|
1520
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8953', |
|
1521
|
|
|
'name' => 'ITRF2000 to SIRGAS-CON DGF01P01 (1)', |
|
1522
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4919', |
|
1523
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8917', |
|
1524
|
|
|
'accuracy' => 0.01, |
|
1525
|
|
|
], |
|
1526
|
|
|
[ |
|
1527
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8954', |
|
1528
|
|
|
'name' => 'ITRF2000 to SIRGAS-CON DGF01P02 (1)', |
|
1529
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4919', |
|
1530
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8919', |
|
1531
|
|
|
'accuracy' => 0.01, |
|
1532
|
|
|
], |
|
1533
|
|
|
[ |
|
1534
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8955', |
|
1535
|
|
|
'name' => 'ITRF2000 to SIRGAS-CON DGF02P01 (1)', |
|
1536
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4919', |
|
1537
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8921', |
|
1538
|
|
|
'accuracy' => 0.01, |
|
1539
|
|
|
], |
|
1540
|
|
|
[ |
|
1541
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8956', |
|
1542
|
|
|
'name' => 'ITRF2000 to SIRGAS-CON DGF04P01 (1)', |
|
1543
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4919', |
|
1544
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8923', |
|
1545
|
|
|
'accuracy' => 0.01, |
|
1546
|
|
|
], |
|
1547
|
|
|
[ |
|
1548
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8957', |
|
1549
|
|
|
'name' => 'ITRF2000 to SIRGAS-CON DGF05P01 (1)', |
|
1550
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4919', |
|
1551
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8925', |
|
1552
|
|
|
'accuracy' => 0.01, |
|
1553
|
|
|
], |
|
1554
|
|
|
[ |
|
1555
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8958', |
|
1556
|
|
|
'name' => 'ITRF2000 to SIRGAS-CON DGF06P01 (1)', |
|
1557
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4919', |
|
1558
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8927', |
|
1559
|
|
|
'accuracy' => 0.01, |
|
1560
|
|
|
], |
|
1561
|
|
|
[ |
|
1562
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8962', |
|
1563
|
|
|
'name' => 'ITRF2008 to SIRGAS-CON SIR10P01 (1)', |
|
1564
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5332', |
|
1565
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8935', |
|
1566
|
|
|
'accuracy' => 0.01, |
|
1567
|
|
|
], |
|
1568
|
|
|
[ |
|
1569
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8963', |
|
1570
|
|
|
'name' => 'ITRF2008 to SIRGAS-CON SIR11P01 (1)', |
|
1571
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5332', |
|
1572
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8937', |
|
1573
|
|
|
'accuracy' => 0.01, |
|
1574
|
|
|
], |
|
1575
|
|
|
[ |
|
1576
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9264', |
|
1577
|
|
|
'name' => 'POSGAR 2007 to WGS 84 (2)', |
|
1578
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5340', |
|
1579
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1580
|
|
|
'accuracy' => 0.5, |
|
1581
|
|
|
], |
|
1582
|
|
|
[ |
|
1583
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5497', |
|
1584
|
|
|
'name' => 'POSGAR 2007 to SIRGAS 2000 (1)', |
|
1585
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5340', |
|
1586
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
1587
|
|
|
'accuracy' => 0.1, |
|
1588
|
|
|
], |
|
1589
|
|
|
[ |
|
1590
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18031', |
|
1591
|
|
|
'name' => 'Argentina zone 1', |
|
1592
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5340', |
|
1593
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5343', |
|
1594
|
|
|
'accuracy' => 0, |
|
1595
|
|
|
], |
|
1596
|
|
|
[ |
|
1597
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18032', |
|
1598
|
|
|
'name' => 'Argentina zone 2', |
|
1599
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5340', |
|
1600
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5344', |
|
1601
|
|
|
'accuracy' => 0, |
|
1602
|
|
|
], |
|
1603
|
|
|
[ |
|
1604
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18033', |
|
1605
|
|
|
'name' => 'Argentina zone 3', |
|
1606
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5340', |
|
1607
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5345', |
|
1608
|
|
|
'accuracy' => 0, |
|
1609
|
|
|
], |
|
1610
|
|
|
[ |
|
1611
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18034', |
|
1612
|
|
|
'name' => 'Argentina zone 4', |
|
1613
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5340', |
|
1614
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5346', |
|
1615
|
|
|
'accuracy' => 0, |
|
1616
|
|
|
], |
|
1617
|
|
|
[ |
|
1618
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18035', |
|
1619
|
|
|
'name' => 'Argentina zone 5', |
|
1620
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5340', |
|
1621
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5347', |
|
1622
|
|
|
'accuracy' => 0, |
|
1623
|
|
|
], |
|
1624
|
|
|
[ |
|
1625
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18036', |
|
1626
|
|
|
'name' => 'Argentina zone 6', |
|
1627
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5340', |
|
1628
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5348', |
|
1629
|
|
|
'accuracy' => 0, |
|
1630
|
|
|
], |
|
1631
|
|
|
[ |
|
1632
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18037', |
|
1633
|
|
|
'name' => 'Argentina zone 7', |
|
1634
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5340', |
|
1635
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5349', |
|
1636
|
|
|
'accuracy' => 0, |
|
1637
|
|
|
], |
|
1638
|
|
|
[ |
|
1639
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9497', |
|
1640
|
|
|
'name' => 'Gauss-Kruger CABA 2019', |
|
1641
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5340', |
|
1642
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9498', |
|
1643
|
|
|
'accuracy' => 0, |
|
1644
|
|
|
], |
|
1645
|
|
|
[ |
|
1646
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9256', |
|
1647
|
|
|
'name' => 'POSGAR 2007 to SRVN16 height (1)', |
|
1648
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5342', |
|
1649
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9255', |
|
1650
|
|
|
'accuracy' => 0.05, |
|
1651
|
|
|
], |
|
1652
|
|
|
[ |
|
1653
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9621', |
|
1654
|
|
|
'name' => 'POSGAR 2007 to POSGAR 2007 + SRVN16 height (1)', |
|
1655
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5342', |
|
1656
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9521', |
|
1657
|
|
|
'accuracy' => 0.05, |
|
1658
|
|
|
], |
|
1659
|
|
|
[ |
|
1660
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5374', |
|
1661
|
|
|
'name' => 'MARGEN to WGS 84 (1)', |
|
1662
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5354', |
|
1663
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1664
|
|
|
'accuracy' => 1.0, |
|
1665
|
|
|
], |
|
1666
|
|
|
[ |
|
1667
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9177', |
|
1668
|
|
|
'name' => 'SIRGAS-Chile 2002 to ITRF2000 (1)', |
|
1669
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5358', |
|
1670
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4919', |
|
1671
|
|
|
'accuracy' => 0.1, |
|
1672
|
|
|
], |
|
1673
|
|
|
[ |
|
1674
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5378', |
|
1675
|
|
|
'name' => 'Peru96 to WGS 84 (1)', |
|
1676
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5373', |
|
1677
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1678
|
|
|
'accuracy' => 1.0, |
|
1679
|
|
|
], |
|
1680
|
|
|
[ |
|
1681
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5384', |
|
1682
|
|
|
'name' => 'SIRGAS-ROU98 to WGS 84 (1)', |
|
1683
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5381', |
|
1684
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1685
|
|
|
'accuracy' => 1.0, |
|
1686
|
|
|
], |
|
1687
|
|
|
[ |
|
1688
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5525', |
|
1689
|
|
|
'name' => 'Corrego Alegre 1961 to SIRGAS 2000 (1)', |
|
1690
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5524', |
|
1691
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
1692
|
|
|
'accuracy' => 2.0, |
|
1693
|
|
|
], |
|
1694
|
|
|
[ |
|
1695
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5529', |
|
1696
|
|
|
'name' => 'SAD69(96) to SIRGAS 2000 (1)', |
|
1697
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5527', |
|
1698
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
1699
|
|
|
'accuracy' => 0.5, |
|
1700
|
|
|
], |
|
1701
|
|
|
[ |
|
1702
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5881', |
|
1703
|
|
|
'name' => 'SAD69(96) to SIRGAS 2000 (2)', |
|
1704
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5527', |
|
1705
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4674', |
|
1706
|
|
|
'accuracy' => 5.0, |
|
1707
|
|
|
], |
|
1708
|
|
|
[ |
|
1709
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19941', |
|
1710
|
|
|
'name' => 'Brazil Polyconic', |
|
1711
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5527', |
|
1712
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5530', |
|
1713
|
|
|
'accuracy' => 0, |
|
1714
|
|
|
], |
|
1715
|
|
|
[ |
|
1716
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8967', |
|
1717
|
|
|
'name' => 'IGS14 to SIRGAS-CON SIR17P01 (1)', |
|
1718
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8227', |
|
1719
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8945', |
|
1720
|
|
|
'accuracy' => 0.01, |
|
1721
|
|
|
], |
|
1722
|
|
|
[ |
|
1723
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9178', |
|
1724
|
|
|
'name' => 'SIRGAS-Chile 2010 to IGS08 (1)', |
|
1725
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8947', |
|
1726
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6934', |
|
1727
|
|
|
'accuracy' => 0.1, |
|
1728
|
|
|
], |
|
1729
|
|
|
[ |
|
1730
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8959', |
|
1731
|
|
|
'name' => 'IGS05 to SIRGAS-CON DGF07P01 (1)', |
|
1732
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9010', |
|
1733
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8929', |
|
1734
|
|
|
'accuracy' => 0.01, |
|
1735
|
|
|
], |
|
1736
|
|
|
[ |
|
1737
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8960', |
|
1738
|
|
|
'name' => 'IGS05 to SIRGAS-CON DGF08P01 (1)', |
|
1739
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9010', |
|
1740
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8931', |
|
1741
|
|
|
'accuracy' => 0.01, |
|
1742
|
|
|
], |
|
1743
|
|
|
[ |
|
1744
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8961', |
|
1745
|
|
|
'name' => 'IGS05 to SIRGAS-CON SIR09P01 (1)', |
|
1746
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9010', |
|
1747
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8933', |
|
1748
|
|
|
'accuracy' => 0.01, |
|
1749
|
|
|
], |
|
1750
|
|
|
[ |
|
1751
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8964', |
|
1752
|
|
|
'name' => 'IGb08 to SIRGAS-CON SIR13P01 (1)', |
|
1753
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9015', |
|
1754
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8939', |
|
1755
|
|
|
'accuracy' => 0.01, |
|
1756
|
|
|
], |
|
1757
|
|
|
[ |
|
1758
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8965', |
|
1759
|
|
|
'name' => 'IGb08 to SIRGAS-CON SIR14P01 (1)', |
|
1760
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9015', |
|
1761
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8941', |
|
1762
|
|
|
'accuracy' => 0.01, |
|
1763
|
|
|
], |
|
1764
|
|
|
[ |
|
1765
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8966', |
|
1766
|
|
|
'name' => 'IGb08 to SIRGAS-CON SIR15P01 (1)', |
|
1767
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9015', |
|
1768
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8943', |
|
1769
|
|
|
'accuracy' => 0.01, |
|
1770
|
|
|
], |
|
1771
|
|
|
[ |
|
1772
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9179', |
|
1773
|
|
|
'name' => 'SIRGAS-Chile 2013 to IGb08 (1)', |
|
1774
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9146', |
|
1775
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9015', |
|
1776
|
|
|
'accuracy' => 0.1, |
|
1777
|
|
|
], |
|
1778
|
|
|
[ |
|
1779
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9180', |
|
1780
|
|
|
'name' => 'SIRGAS-Chile 2016 to IGb08 (1)', |
|
1781
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9151', |
|
1782
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9015', |
|
1783
|
|
|
'accuracy' => 0.1, |
|
1784
|
|
|
], |
|
1785
|
|
|
[ |
|
1786
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9260', |
|
1787
|
|
|
'name' => 'Tapi Aike to WGS 84 (1)', |
|
1788
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9248', |
|
1789
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1790
|
|
|
'accuracy' => 5.0, |
|
1791
|
|
|
], |
|
1792
|
|
|
[ |
|
1793
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18031', |
|
1794
|
|
|
'name' => 'Argentina zone 1', |
|
1795
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9248', |
|
1796
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9249', |
|
1797
|
|
|
'accuracy' => 0, |
|
1798
|
|
|
], |
|
1799
|
|
|
[ |
|
1800
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18032', |
|
1801
|
|
|
'name' => 'Argentina zone 2', |
|
1802
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9248', |
|
1803
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9250', |
|
1804
|
|
|
'accuracy' => 0, |
|
1805
|
|
|
], |
|
1806
|
|
|
[ |
|
1807
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9261', |
|
1808
|
|
|
'name' => 'MMN to WGS 84 (1)', |
|
1809
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9251', |
|
1810
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1811
|
|
|
'accuracy' => 2.5, |
|
1812
|
|
|
], |
|
1813
|
|
|
[ |
|
1814
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18032', |
|
1815
|
|
|
'name' => 'Argentina zone 2', |
|
1816
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9251', |
|
1817
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9252', |
|
1818
|
|
|
'accuracy' => 0, |
|
1819
|
|
|
], |
|
1820
|
|
|
[ |
|
1821
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9262', |
|
1822
|
|
|
'name' => 'MMS to WGS 84 (1)', |
|
1823
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9253', |
|
1824
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
|
1825
|
|
|
'accuracy' => 2.5, |
|
1826
|
|
|
], |
|
1827
|
|
|
[ |
|
1828
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18032', |
|
1829
|
|
|
'name' => 'Argentina zone 2', |
|
1830
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9253', |
|
1831
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9254', |
|
1832
|
|
|
'accuracy' => 0, |
|
1833
|
|
|
], |
|
1834
|
|
|
]; |
|
1835
|
|
|
|
|
1836
|
|
|
/** |
|
1837
|
|
|
* @return array<array{operation: string, name: string, source_crs: string, target_crs: string, accuracy: float}> |
|
1838
|
|
|
*/ |
|
1839
|
|
|
public static function getSupportedTransformations(): array |
|
1840
|
|
|
{ |
|
1841
|
|
|
return static::$sridData; |
|
1842
|
|
|
} |
|
1843
|
|
|
} |
|
1844
|
|
|
|