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 CRSTransformationsAfrica |
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::10264', |
23
|
|
|
'name' => 'RGSH2020 to WGS 84 (1)', |
24
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10299', |
25
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
26
|
|
|
'accuracy' => 1.0, |
27
|
|
|
], |
28
|
|
|
[ |
29
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17412', |
30
|
|
|
'name' => 'Congo Transverse Mercator zone 12', |
31
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4046', |
32
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4048', |
33
|
|
|
'accuracy' => 0, |
34
|
|
|
], |
35
|
|
|
[ |
36
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17414', |
37
|
|
|
'name' => 'Congo Transverse Mercator zone 14', |
38
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4046', |
39
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4049', |
40
|
|
|
'accuracy' => 0, |
41
|
|
|
], |
42
|
|
|
[ |
43
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17416', |
44
|
|
|
'name' => 'Congo Transverse Mercator zone 16', |
45
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4046', |
46
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4050', |
47
|
|
|
'accuracy' => 0, |
48
|
|
|
], |
49
|
|
|
[ |
50
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17418', |
51
|
|
|
'name' => 'Congo Transverse Mercator zone 18', |
52
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4046', |
53
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4051', |
54
|
|
|
'accuracy' => 0, |
55
|
|
|
], |
56
|
|
|
[ |
57
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17420', |
58
|
|
|
'name' => 'Congo Transverse Mercator zone 20', |
59
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4046', |
60
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4056', |
61
|
|
|
'accuracy' => 0, |
62
|
|
|
], |
63
|
|
|
[ |
64
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17422', |
65
|
|
|
'name' => 'Congo Transverse Mercator zone 22', |
66
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4046', |
67
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4057', |
68
|
|
|
'accuracy' => 0, |
69
|
|
|
], |
70
|
|
|
[ |
71
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17424', |
72
|
|
|
'name' => 'Congo Transverse Mercator zone 24', |
73
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4046', |
74
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4058', |
75
|
|
|
'accuracy' => 0, |
76
|
|
|
], |
77
|
|
|
[ |
78
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17426', |
79
|
|
|
'name' => 'Congo Transverse Mercator zone 26', |
80
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4046', |
81
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4059', |
82
|
|
|
'accuracy' => 0, |
83
|
|
|
], |
84
|
|
|
[ |
85
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17428', |
86
|
|
|
'name' => 'Congo Transverse Mercator zone 28', |
87
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4046', |
88
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4060', |
89
|
|
|
'accuracy' => 0, |
90
|
|
|
], |
91
|
|
|
[ |
92
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17430', |
93
|
|
|
'name' => 'Congo Transverse Mercator zone 30', |
94
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4046', |
95
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5844', |
96
|
|
|
'accuracy' => 0, |
97
|
|
|
], |
98
|
|
|
[ |
99
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1298', |
100
|
|
|
'name' => 'Tete to Moznet (2)', |
101
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4127', |
102
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4130', |
103
|
|
|
'accuracy' => 1.0, |
104
|
|
|
], |
105
|
|
|
[ |
106
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1299', |
107
|
|
|
'name' => 'Tete to Moznet (3)', |
108
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4127', |
109
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4130', |
110
|
|
|
'accuracy' => 4.0, |
111
|
|
|
], |
112
|
|
|
[ |
113
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1300', |
114
|
|
|
'name' => 'Tete to Moznet (4)', |
115
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4127', |
116
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4130', |
117
|
|
|
'accuracy' => 3.0, |
118
|
|
|
], |
119
|
|
|
[ |
120
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1301', |
121
|
|
|
'name' => 'Tete to Moznet (5)', |
122
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4127', |
123
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4130', |
124
|
|
|
'accuracy' => 10.0, |
125
|
|
|
], |
126
|
|
|
[ |
127
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6900', |
128
|
|
|
'name' => 'Observatario to WGS 84 (1)', |
129
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4129', |
130
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
131
|
|
|
'accuracy' => 17.0, |
132
|
|
|
], |
133
|
|
|
[ |
134
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1302', |
135
|
|
|
'name' => 'Moznet to WGS 84 (1)', |
136
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4130', |
137
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
138
|
|
|
'accuracy' => 1.0, |
139
|
|
|
], |
140
|
|
|
[ |
141
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17005', |
142
|
|
|
'name' => 'TM 5 NW', |
143
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4142', |
144
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2164', |
145
|
|
|
'accuracy' => 0, |
146
|
|
|
], |
147
|
|
|
[ |
148
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1469', |
149
|
|
|
'name' => 'Locodjo 1965 to WGS 84 (1)', |
150
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4142', |
151
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
152
|
|
|
'accuracy' => 15.0, |
153
|
|
|
], |
154
|
|
|
[ |
155
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17005', |
156
|
|
|
'name' => 'TM 5 NW', |
157
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4143', |
158
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2165', |
159
|
|
|
'accuracy' => 0, |
160
|
|
|
], |
161
|
|
|
[ |
162
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1470', |
163
|
|
|
'name' => 'Abidjan 1987 to WGS 84 (1)', |
164
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4143', |
165
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
166
|
|
|
'accuracy' => 2.0, |
167
|
|
|
], |
168
|
|
|
[ |
169
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17515', |
170
|
|
|
'name' => 'South African Survey Grid zone 15', |
171
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4148', |
172
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2046', |
173
|
|
|
'accuracy' => 0, |
174
|
|
|
], |
175
|
|
|
[ |
176
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17517', |
177
|
|
|
'name' => 'South African Survey Grid zone 17', |
178
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4148', |
179
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2047', |
180
|
|
|
'accuracy' => 0, |
181
|
|
|
], |
182
|
|
|
[ |
183
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17519', |
184
|
|
|
'name' => 'South African Survey Grid zone 19', |
185
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4148', |
186
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2048', |
187
|
|
|
'accuracy' => 0, |
188
|
|
|
], |
189
|
|
|
[ |
190
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17521', |
191
|
|
|
'name' => 'South African Survey Grid zone 21', |
192
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4148', |
193
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2049', |
194
|
|
|
'accuracy' => 0, |
195
|
|
|
], |
196
|
|
|
[ |
197
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17523', |
198
|
|
|
'name' => 'South African Survey Grid zone 23', |
199
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4148', |
200
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2050', |
201
|
|
|
'accuracy' => 0, |
202
|
|
|
], |
203
|
|
|
[ |
204
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17525', |
205
|
|
|
'name' => 'South African Survey Grid zone 25', |
206
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4148', |
207
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2051', |
208
|
|
|
'accuracy' => 0, |
209
|
|
|
], |
210
|
|
|
[ |
211
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17527', |
212
|
|
|
'name' => 'South African Survey Grid zone 27', |
213
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4148', |
214
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2052', |
215
|
|
|
'accuracy' => 0, |
216
|
|
|
], |
217
|
|
|
[ |
218
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17529', |
219
|
|
|
'name' => 'South African Survey Grid zone 29', |
220
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4148', |
221
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2053', |
222
|
|
|
'accuracy' => 0, |
223
|
|
|
], |
224
|
|
|
[ |
225
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17531', |
226
|
|
|
'name' => 'South African Survey Grid zone 31', |
227
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4148', |
228
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2054', |
229
|
|
|
'accuracy' => 0, |
230
|
|
|
], |
231
|
|
|
[ |
232
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17533', |
233
|
|
|
'name' => 'South African Survey Grid zone 33', |
234
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4148', |
235
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2055', |
236
|
|
|
'accuracy' => 0, |
237
|
|
|
], |
238
|
|
|
[ |
239
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1505', |
240
|
|
|
'name' => 'Hartebeesthoek94 to WGS 84 (1)', |
241
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4148', |
242
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
243
|
|
|
'accuracy' => 1.0, |
244
|
|
|
], |
245
|
|
|
[ |
246
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9219', |
247
|
|
|
'name' => 'South Africa Basic Survey Unit Albers 25E', |
248
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4148', |
249
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9221', |
250
|
|
|
'accuracy' => 0, |
251
|
|
|
], |
252
|
|
|
[ |
253
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9220', |
254
|
|
|
'name' => 'South Africa Basic Survey Unit Albers 44E', |
255
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4148', |
256
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9222', |
257
|
|
|
'accuracy' => 0, |
258
|
|
|
], |
259
|
|
|
[ |
260
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1518', |
261
|
|
|
'name' => 'Dabola 1981 to WGS 84 (1)', |
262
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4155', |
263
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
264
|
|
|
'accuracy' => 25.0, |
265
|
|
|
], |
266
|
|
|
[ |
267
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18240', |
268
|
|
|
'name' => 'Libya zone 5', |
269
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4159', |
270
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2068', |
271
|
|
|
'accuracy' => 0, |
272
|
|
|
], |
273
|
|
|
[ |
274
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18241', |
275
|
|
|
'name' => 'Libya zone 6', |
276
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4159', |
277
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2069', |
278
|
|
|
'accuracy' => 0, |
279
|
|
|
], |
280
|
|
|
[ |
281
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18242', |
282
|
|
|
'name' => 'Libya zone 7', |
283
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4159', |
284
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2070', |
285
|
|
|
'accuracy' => 0, |
286
|
|
|
], |
287
|
|
|
[ |
288
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18243', |
289
|
|
|
'name' => 'Libya zone 8', |
290
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4159', |
291
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2071', |
292
|
|
|
'accuracy' => 0, |
293
|
|
|
], |
294
|
|
|
[ |
295
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18244', |
296
|
|
|
'name' => 'Libya zone 9', |
297
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4159', |
298
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2072', |
299
|
|
|
'accuracy' => 0, |
300
|
|
|
], |
301
|
|
|
[ |
302
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18245', |
303
|
|
|
'name' => 'Libya zone 10', |
304
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4159', |
305
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2073', |
306
|
|
|
'accuracy' => 0, |
307
|
|
|
], |
308
|
|
|
[ |
309
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18246', |
310
|
|
|
'name' => 'Libya zone 11', |
311
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4159', |
312
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2074', |
313
|
|
|
'accuracy' => 0, |
314
|
|
|
], |
315
|
|
|
[ |
316
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18247', |
317
|
|
|
'name' => 'Libya zone 12', |
318
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4159', |
319
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2075', |
320
|
|
|
'accuracy' => 0, |
321
|
|
|
], |
322
|
|
|
[ |
323
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18248', |
324
|
|
|
'name' => 'Libya zone 13', |
325
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4159', |
326
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2076', |
327
|
|
|
'accuracy' => 0, |
328
|
|
|
], |
329
|
|
|
[ |
330
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16412', |
331
|
|
|
'name' => 'TM 12 NE', |
332
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4159', |
333
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2087', |
334
|
|
|
'accuracy' => 0, |
335
|
|
|
], |
336
|
|
|
[ |
337
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15707', |
338
|
|
|
'name' => 'ELD79 to WGS 84 (6)', |
339
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4159', |
340
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
341
|
|
|
'accuracy' => 10.0, |
342
|
|
|
], |
343
|
|
|
[ |
344
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15778', |
345
|
|
|
'name' => 'ELD79 to WGS 84 (7)', |
346
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4159', |
347
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
348
|
|
|
'accuracy' => 0.5, |
349
|
|
|
], |
350
|
|
|
[ |
351
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15909', |
352
|
|
|
'name' => 'ELD79 to WGS 84 (8)', |
353
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4159', |
354
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
355
|
|
|
'accuracy' => 5.0, |
356
|
|
|
], |
357
|
|
|
[ |
358
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15923', |
359
|
|
|
'name' => 'ELD79 to WGS 84 (9)', |
360
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4159', |
361
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
362
|
|
|
'accuracy' => 2.0, |
363
|
|
|
], |
364
|
|
|
[ |
365
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1860', |
366
|
|
|
'name' => 'ELD79 to WGS 84 (2)', |
367
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4159', |
368
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
369
|
|
|
'accuracy' => 0.5, |
370
|
|
|
], |
371
|
|
|
[ |
372
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1862', |
373
|
|
|
'name' => 'ELD79 to WGS 84 (4)', |
374
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4159', |
375
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
376
|
|
|
'accuracy' => 0.5, |
377
|
|
|
], |
378
|
|
|
[ |
379
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15924', |
380
|
|
|
'name' => 'ELD79 to LGD2006 (1)', |
381
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4159', |
382
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4754', |
383
|
|
|
'accuracy' => 5.0, |
384
|
|
|
], |
385
|
|
|
[ |
386
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1547', |
387
|
|
|
'name' => 'Bissau to WGS 84 (1)', |
388
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4165', |
389
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
390
|
|
|
'accuracy' => 25.0, |
391
|
|
|
], |
392
|
|
|
[ |
393
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19959', |
394
|
|
|
'name' => 'Ghana National Grid', |
395
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4168', |
396
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2136', |
397
|
|
|
'accuracy' => 0, |
398
|
|
|
], |
399
|
|
|
[ |
400
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17001', |
401
|
|
|
'name' => 'TM 1 NW', |
402
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4168', |
403
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2137', |
404
|
|
|
'accuracy' => 0, |
405
|
|
|
], |
406
|
|
|
[ |
407
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1570', |
408
|
|
|
'name' => 'Accra to WGS 72BE (1)', |
409
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4168', |
410
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4324', |
411
|
|
|
'accuracy' => 25.0, |
412
|
|
|
], |
413
|
|
|
[ |
414
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6896', |
415
|
|
|
'name' => 'Accra to WGS 84 (4)', |
416
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4168', |
417
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
418
|
|
|
'accuracy' => 6.0, |
419
|
|
|
], |
420
|
|
|
[ |
421
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19963', |
422
|
|
|
'name' => 'Sierra Leone New Colony Grid', |
423
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4174', |
424
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2159', |
425
|
|
|
'accuracy' => 0, |
426
|
|
|
], |
427
|
|
|
[ |
428
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19964', |
429
|
|
|
'name' => 'New War Office Sierra Leone Grid', |
430
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4174', |
431
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2160', |
432
|
|
|
'accuracy' => 0, |
433
|
|
|
], |
434
|
|
|
[ |
435
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1614', |
436
|
|
|
'name' => 'Sierra Leone 1968 to WGS 84 (1)', |
437
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4175', |
438
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
439
|
|
|
'accuracy' => 26.0, |
440
|
|
|
], |
441
|
|
|
[ |
442
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18415', |
443
|
|
|
'name' => 'French Equatorial Africa west zone', |
444
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4192', |
445
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3119', |
446
|
|
|
'accuracy' => 0, |
447
|
|
|
], |
448
|
|
|
[ |
449
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15873', |
450
|
|
|
'name' => 'Douala 1948 to WGS 84 (1)', |
451
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4192', |
452
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
453
|
|
|
'accuracy' => 10.0, |
454
|
|
|
], |
455
|
|
|
[ |
456
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1902', |
457
|
|
|
'name' => 'Manoca 1962 to WGS 72BE (1)', |
458
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4193', |
459
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4324', |
460
|
|
|
'accuracy' => 5.0, |
461
|
|
|
], |
462
|
|
|
[ |
463
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1796', |
464
|
|
|
'name' => 'Manoca 1962 to WGS 84 (1)', |
465
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4193', |
466
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
467
|
|
|
'accuracy' => 0.5, |
468
|
|
|
], |
469
|
|
|
[ |
470
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1805', |
471
|
|
|
'name' => 'Garoua to WGS 72BE (1)', |
472
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4197', |
473
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4324', |
474
|
|
|
'accuracy' => 5.0, |
475
|
|
|
], |
476
|
|
|
[ |
477
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1806', |
478
|
|
|
'name' => 'Kousseri to WGS 72BE (1)', |
479
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4198', |
480
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4324', |
481
|
|
|
'accuracy' => 5.0, |
482
|
|
|
], |
483
|
|
|
[ |
484
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1100', |
485
|
|
|
'name' => 'Adindan to WGS 84 (1)', |
486
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4201', |
487
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
488
|
|
|
'accuracy' => 9.0, |
489
|
|
|
], |
490
|
|
|
[ |
491
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1101', |
492
|
|
|
'name' => 'Adindan to WGS 84 (2)', |
493
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4201', |
494
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
495
|
|
|
'accuracy' => 44.0, |
496
|
|
|
], |
497
|
|
|
[ |
498
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1102', |
499
|
|
|
'name' => 'Adindan to WGS 84 (3)', |
500
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4201', |
501
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
502
|
|
|
'accuracy' => 44.0, |
503
|
|
|
], |
504
|
|
|
[ |
505
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1103', |
506
|
|
|
'name' => 'Adindan to WGS 84 (4)', |
507
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4201', |
508
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
509
|
|
|
'accuracy' => 6.0, |
510
|
|
|
], |
511
|
|
|
[ |
512
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1104', |
513
|
|
|
'name' => 'Adindan to WGS 84 (5)', |
514
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4201', |
515
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
516
|
|
|
'accuracy' => 44.0, |
517
|
|
|
], |
518
|
|
|
[ |
519
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1105', |
520
|
|
|
'name' => 'Adindan to WGS 84 (6)', |
521
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4201', |
522
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
523
|
|
|
'accuracy' => 44.0, |
524
|
|
|
], |
525
|
|
|
[ |
526
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1106', |
527
|
|
|
'name' => 'Adindan to WGS 84 (7)', |
528
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4201', |
529
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
530
|
|
|
'accuracy' => 7.0, |
531
|
|
|
], |
532
|
|
|
[ |
533
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1107', |
534
|
|
|
'name' => 'Afgooye to WGS 84 (1)', |
535
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4205', |
536
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
537
|
|
|
'accuracy' => 44.0, |
538
|
|
|
], |
539
|
|
|
[ |
540
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1114', |
541
|
|
|
'name' => 'Arc 1950 to WGS 84 (2)', |
542
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4209', |
543
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
544
|
|
|
'accuracy' => 7.0, |
545
|
|
|
], |
546
|
|
|
[ |
547
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1116', |
548
|
|
|
'name' => 'Arc 1950 to WGS 84 (4)', |
549
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4209', |
550
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
551
|
|
|
'accuracy' => 10.0, |
552
|
|
|
], |
553
|
|
|
[ |
554
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1117', |
555
|
|
|
'name' => 'Arc 1950 to WGS 84 (5)', |
556
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4209', |
557
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
558
|
|
|
'accuracy' => 27.0, |
559
|
|
|
], |
560
|
|
|
[ |
561
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1118', |
562
|
|
|
'name' => 'Arc 1950 to WGS 84 (6)', |
563
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4209', |
564
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
565
|
|
|
'accuracy' => 26.0, |
566
|
|
|
], |
567
|
|
|
[ |
568
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1120', |
569
|
|
|
'name' => 'Arc 1950 to WGS 84 (8)', |
570
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4209', |
571
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
572
|
|
|
'accuracy' => 41.0, |
573
|
|
|
], |
574
|
|
|
[ |
575
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6904', |
576
|
|
|
'name' => 'Arc 1950 to WGS 84 (11)', |
577
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4209', |
578
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
579
|
|
|
'accuracy' => 29.0, |
580
|
|
|
], |
581
|
|
|
[ |
582
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6906', |
583
|
|
|
'name' => 'Arc 1950 to WGS 84 (10)', |
584
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4209', |
585
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
586
|
|
|
'accuracy' => 17.0, |
587
|
|
|
], |
588
|
|
|
[ |
589
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1122', |
590
|
|
|
'name' => 'Arc 1960 to WGS 84 (1)', |
591
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4210', |
592
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
593
|
|
|
'accuracy' => 35.0, |
594
|
|
|
], |
595
|
|
|
[ |
596
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1284', |
597
|
|
|
'name' => 'Arc 1960 to WGS 84 (2)', |
598
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4210', |
599
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
600
|
|
|
'accuracy' => 6.0, |
601
|
|
|
], |
602
|
|
|
[ |
603
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1285', |
604
|
|
|
'name' => 'Arc 1960 to WGS 84 (3)', |
605
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4210', |
606
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
607
|
|
|
'accuracy' => 15.0, |
608
|
|
|
], |
609
|
|
|
[ |
610
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3998', |
611
|
|
|
'name' => 'Arc 1960 to WGS 84 (4)', |
612
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4210', |
613
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
614
|
|
|
'accuracy' => 35.0, |
615
|
|
|
], |
616
|
|
|
[ |
617
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16413', |
618
|
|
|
'name' => 'TM 13 NE', |
619
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4213', |
620
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2931', |
621
|
|
|
'accuracy' => 0, |
622
|
|
|
], |
623
|
|
|
[ |
624
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1839', |
625
|
|
|
'name' => 'Beduaram to WGS 72BE (1)', |
626
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4213', |
627
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4324', |
628
|
|
|
'accuracy' => 15.0, |
629
|
|
|
], |
630
|
|
|
[ |
631
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15849', |
632
|
|
|
'name' => 'Beduaram to WGS 84 (2)', |
633
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4213', |
634
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
635
|
|
|
'accuracy' => 15.0, |
636
|
|
|
], |
637
|
|
|
[ |
638
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16611', |
639
|
|
|
'name' => 'TM 11.30 SE', |
640
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4220', |
641
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22091', |
642
|
|
|
'accuracy' => 0, |
643
|
|
|
], |
644
|
|
|
[ |
645
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16612', |
646
|
|
|
'name' => 'TM 12 SE', |
647
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4220', |
648
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22092', |
649
|
|
|
'accuracy' => 0, |
650
|
|
|
], |
651
|
|
|
[ |
652
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1317', |
653
|
|
|
'name' => 'Camacupa 1948 to WGS 72BE (1)', |
654
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4220', |
655
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4324', |
656
|
|
|
'accuracy' => 10.0, |
657
|
|
|
], |
658
|
|
|
[ |
659
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9904', |
660
|
|
|
'name' => 'Camacupa 1948 to RSAO13 (3)', |
661
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4220', |
662
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8699', |
663
|
|
|
'accuracy' => 8.0, |
664
|
|
|
], |
665
|
|
|
[ |
666
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9905', |
667
|
|
|
'name' => 'Camacupa 1948 to RSAO13 (4)', |
668
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4220', |
669
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8699', |
670
|
|
|
'accuracy' => 10.0, |
671
|
|
|
], |
672
|
|
|
[ |
673
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17515', |
674
|
|
|
'name' => 'South African Survey Grid zone 15', |
675
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4222', |
676
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22275', |
677
|
|
|
'accuracy' => 0, |
678
|
|
|
], |
679
|
|
|
[ |
680
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17517', |
681
|
|
|
'name' => 'South African Survey Grid zone 17', |
682
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4222', |
683
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22277', |
684
|
|
|
'accuracy' => 0, |
685
|
|
|
], |
686
|
|
|
[ |
687
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17519', |
688
|
|
|
'name' => 'South African Survey Grid zone 19', |
689
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4222', |
690
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22279', |
691
|
|
|
'accuracy' => 0, |
692
|
|
|
], |
693
|
|
|
[ |
694
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17521', |
695
|
|
|
'name' => 'South African Survey Grid zone 21', |
696
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4222', |
697
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22281', |
698
|
|
|
'accuracy' => 0, |
699
|
|
|
], |
700
|
|
|
[ |
701
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17523', |
702
|
|
|
'name' => 'South African Survey Grid zone 23', |
703
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4222', |
704
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22283', |
705
|
|
|
'accuracy' => 0, |
706
|
|
|
], |
707
|
|
|
[ |
708
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17525', |
709
|
|
|
'name' => 'South African Survey Grid zone 25', |
710
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4222', |
711
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22285', |
712
|
|
|
'accuracy' => 0, |
713
|
|
|
], |
714
|
|
|
[ |
715
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17527', |
716
|
|
|
'name' => 'South African Survey Grid zone 27', |
717
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4222', |
718
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22287', |
719
|
|
|
'accuracy' => 0, |
720
|
|
|
], |
721
|
|
|
[ |
722
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17529', |
723
|
|
|
'name' => 'South African Survey Grid zone 29', |
724
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4222', |
725
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22289', |
726
|
|
|
'accuracy' => 0, |
727
|
|
|
], |
728
|
|
|
[ |
729
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17531', |
730
|
|
|
'name' => 'South African Survey Grid zone 31', |
731
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4222', |
732
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22291', |
733
|
|
|
'accuracy' => 0, |
734
|
|
|
], |
735
|
|
|
[ |
736
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17533', |
737
|
|
|
'name' => 'South African Survey Grid zone 33', |
738
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4222', |
739
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22293', |
740
|
|
|
'accuracy' => 0, |
741
|
|
|
], |
742
|
|
|
[ |
743
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1504', |
744
|
|
|
'name' => 'Cape to Hartebeesthoek94 (1)', |
745
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4222', |
746
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4148', |
747
|
|
|
'accuracy' => 15.0, |
748
|
|
|
], |
749
|
|
|
[ |
750
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1129', |
751
|
|
|
'name' => 'Cape to WGS 84 (2)', |
752
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4222', |
753
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
754
|
|
|
'accuracy' => 15.0, |
755
|
|
|
], |
756
|
|
|
[ |
757
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16411', |
758
|
|
|
'name' => 'TM 11 NE', |
759
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4223', |
760
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2088', |
761
|
|
|
'accuracy' => 0, |
762
|
|
|
], |
763
|
|
|
[ |
764
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18181', |
765
|
|
|
'name' => 'Nord Tunisie', |
766
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4223', |
767
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22391', |
768
|
|
|
'accuracy' => 0, |
769
|
|
|
], |
770
|
|
|
[ |
771
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18182', |
772
|
|
|
'name' => 'Sud Tunisie', |
773
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4223', |
774
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22392', |
775
|
|
|
'accuracy' => 0, |
776
|
|
|
], |
777
|
|
|
[ |
778
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1130', |
779
|
|
|
'name' => 'Carthage to WGS 84 (1)', |
780
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4223', |
781
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
782
|
|
|
'accuracy' => 14.0, |
783
|
|
|
], |
784
|
|
|
[ |
785
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18071', |
786
|
|
|
'name' => 'Egypt Blue Belt', |
787
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4229', |
788
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22991', |
789
|
|
|
'accuracy' => 0, |
790
|
|
|
], |
791
|
|
|
[ |
792
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18072', |
793
|
|
|
'name' => 'Egypt Red Belt', |
794
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4229', |
795
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22992', |
796
|
|
|
'accuracy' => 0, |
797
|
|
|
], |
798
|
|
|
[ |
799
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18073', |
800
|
|
|
'name' => 'Egypt Purple Belt', |
801
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4229', |
802
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22993', |
803
|
|
|
'accuracy' => 0, |
804
|
|
|
], |
805
|
|
|
[ |
806
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18074', |
807
|
|
|
'name' => 'Egypt Extended Purple Belt', |
808
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4229', |
809
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22994', |
810
|
|
|
'accuracy' => 0, |
811
|
|
|
], |
812
|
|
|
[ |
813
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1545', |
814
|
|
|
'name' => 'Egypt 1907 to WGS 72 (1)', |
815
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4229', |
816
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4322', |
817
|
|
|
'accuracy' => 5.0, |
818
|
|
|
], |
819
|
|
|
[ |
820
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7697', |
821
|
|
|
'name' => 'Egypt 1907 to WGS 84 (4)', |
822
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4229', |
823
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
824
|
|
|
'accuracy' => 1.2, |
825
|
|
|
], |
826
|
|
|
[ |
827
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1137', |
828
|
|
|
'name' => 'ED50 to WGS 84 (5)', |
829
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
830
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
831
|
|
|
'accuracy' => 13.0, |
832
|
|
|
], |
833
|
|
|
[ |
834
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1245', |
835
|
|
|
'name' => 'ED50 to WGS 84 (16)', |
836
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
837
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
838
|
|
|
'accuracy' => 44.0, |
839
|
|
|
], |
840
|
|
|
[ |
841
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1810', |
842
|
|
|
'name' => 'ED50 to WGS 84 (31)', |
843
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
844
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
845
|
|
|
'accuracy' => 15.0, |
846
|
|
|
], |
847
|
|
|
[ |
848
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19904', |
849
|
|
|
'name' => 'Ghana Metre Grid', |
850
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4250', |
851
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::25000', |
852
|
|
|
'accuracy' => 0, |
853
|
|
|
], |
854
|
|
|
[ |
855
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1159', |
856
|
|
|
'name' => 'Leigon to WGS 84 (1)', |
857
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4250', |
858
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
859
|
|
|
'accuracy' => 5.0, |
860
|
|
|
], |
861
|
|
|
[ |
862
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1160', |
863
|
|
|
'name' => 'Liberia 1964 to WGS 84 (1)', |
864
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4251', |
865
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
866
|
|
|
'accuracy' => 26.0, |
867
|
|
|
], |
868
|
|
|
[ |
869
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1164', |
870
|
|
|
'name' => 'Mahe 1971 to WGS 84 (1)', |
871
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4256', |
872
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
873
|
|
|
'accuracy' => 44.0, |
874
|
|
|
], |
875
|
|
|
[ |
876
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1557', |
877
|
|
|
'name' => 'Malongo 1987 to WGS 84 (2)', |
878
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4259', |
879
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
880
|
|
|
'accuracy' => 5.0, |
881
|
|
|
], |
882
|
|
|
[ |
883
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9906', |
884
|
|
|
'name' => 'Malongo 1987 to RSAO13 (1)', |
885
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4259', |
886
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8699', |
887
|
|
|
'accuracy' => 5.0, |
888
|
|
|
], |
889
|
|
|
[ |
890
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18131', |
891
|
|
|
'name' => 'Nord Maroc', |
892
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4261', |
893
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::26191', |
894
|
|
|
'accuracy' => 0, |
895
|
|
|
], |
896
|
|
|
[ |
897
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18132', |
898
|
|
|
'name' => 'Sud Maroc', |
899
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4261', |
900
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::26192', |
901
|
|
|
'accuracy' => 0, |
902
|
|
|
], |
903
|
|
|
[ |
904
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18134', |
905
|
|
|
'name' => 'Sahara Nord', |
906
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4261', |
907
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::26194', |
908
|
|
|
'accuracy' => 0, |
909
|
|
|
], |
910
|
|
|
[ |
911
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18135', |
912
|
|
|
'name' => 'Sahara Sud', |
913
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4261', |
914
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::26195', |
915
|
|
|
'accuracy' => 0, |
916
|
|
|
], |
917
|
|
|
[ |
918
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1166', |
919
|
|
|
'name' => 'Merchich to WGS 84 (1)', |
920
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4261', |
921
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
922
|
|
|
'accuracy' => 7.0, |
923
|
|
|
], |
924
|
|
|
[ |
925
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1165', |
926
|
|
|
'name' => 'Massawa to WGS 84 (1)', |
927
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4262', |
928
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
929
|
|
|
'accuracy' => 44.0, |
930
|
|
|
], |
931
|
|
|
[ |
932
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18151', |
933
|
|
|
'name' => 'Nigeria West Belt', |
934
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4263', |
935
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::26391', |
936
|
|
|
'accuracy' => 0, |
937
|
|
|
], |
938
|
|
|
[ |
939
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18152', |
940
|
|
|
'name' => 'Nigeria Mid Belt', |
941
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4263', |
942
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::26392', |
943
|
|
|
'accuracy' => 0, |
944
|
|
|
], |
945
|
|
|
[ |
946
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18153', |
947
|
|
|
'name' => 'Nigeria East Belt', |
948
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4263', |
949
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::26393', |
950
|
|
|
'accuracy' => 0, |
951
|
|
|
], |
952
|
|
|
[ |
953
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1167', |
954
|
|
|
'name' => 'Minna to WGS 84 (1)', |
955
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4263', |
956
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
957
|
|
|
'accuracy' => 44.0, |
958
|
|
|
], |
959
|
|
|
[ |
960
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1168', |
961
|
|
|
'name' => 'Minna to WGS 84 (2)', |
962
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4263', |
963
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
964
|
|
|
'accuracy' => 15.0, |
965
|
|
|
], |
966
|
|
|
[ |
967
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1754', |
968
|
|
|
'name' => 'Minna to WGS 84 (3)', |
969
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4263', |
970
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
971
|
|
|
'accuracy' => 5.0, |
972
|
|
|
], |
973
|
|
|
[ |
974
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1532', |
975
|
|
|
'name' => 'M\'poraloko to WGS 84 (2)', |
976
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4266', |
977
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
978
|
|
|
'accuracy' => 0.5, |
979
|
|
|
], |
980
|
|
|
[ |
981
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1200', |
982
|
|
|
'name' => 'Pointe Noire to WGS 84 (1)', |
983
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4282', |
984
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
985
|
|
|
'accuracy' => 44.0, |
986
|
|
|
], |
987
|
|
|
[ |
988
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1802', |
989
|
|
|
'name' => 'Pointe Noire to WGS 84 (3)', |
990
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4282', |
991
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
992
|
|
|
'accuracy' => 0.15, |
993
|
|
|
], |
994
|
|
|
[ |
995
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17611', |
996
|
|
|
'name' => 'South West African Survey Grid zone 11', |
997
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4293', |
998
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29371', |
999
|
|
|
'accuracy' => 0, |
1000
|
|
|
], |
1001
|
|
|
[ |
1002
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17613', |
1003
|
|
|
'name' => 'South West African Survey Grid zone 13', |
1004
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4293', |
1005
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29373', |
1006
|
|
|
'accuracy' => 0, |
1007
|
|
|
], |
1008
|
|
|
[ |
1009
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17615', |
1010
|
|
|
'name' => 'South West African Survey Grid zone 15', |
1011
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4293', |
1012
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29375', |
1013
|
|
|
'accuracy' => 0, |
1014
|
|
|
], |
1015
|
|
|
[ |
1016
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17617', |
1017
|
|
|
'name' => 'South West African Survey Grid zone 17', |
1018
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4293', |
1019
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29377', |
1020
|
|
|
'accuracy' => 0, |
1021
|
|
|
], |
1022
|
|
|
[ |
1023
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17619', |
1024
|
|
|
'name' => 'South West African Survey Grid zone 19', |
1025
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4293', |
1026
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29379', |
1027
|
|
|
'accuracy' => 0, |
1028
|
|
|
], |
1029
|
|
|
[ |
1030
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17621', |
1031
|
|
|
'name' => 'South West African Survey Grid zone 21', |
1032
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4293', |
1033
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29381', |
1034
|
|
|
'accuracy' => 0, |
1035
|
|
|
], |
1036
|
|
|
[ |
1037
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17623', |
1038
|
|
|
'name' => 'South West African Survey Grid zone 23', |
1039
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4293', |
1040
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29383', |
1041
|
|
|
'accuracy' => 0, |
1042
|
|
|
], |
1043
|
|
|
[ |
1044
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17625', |
1045
|
|
|
'name' => 'South West African Survey Grid zone 25', |
1046
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4293', |
1047
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29385', |
1048
|
|
|
'accuracy' => 0, |
1049
|
|
|
], |
1050
|
|
|
[ |
1051
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1271', |
1052
|
|
|
'name' => 'Schwarzeck to WGS 84 (2)', |
1053
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4293', |
1054
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1055
|
|
|
'accuracy' => 999.0, |
1056
|
|
|
], |
1057
|
|
|
[ |
1058
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6873', |
1059
|
|
|
'name' => 'Tananarive to WGS 84 (2)', |
1060
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4297', |
1061
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1062
|
|
|
'accuracy' => 3.0, |
1063
|
|
|
], |
1064
|
|
|
[ |
1065
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8440', |
1066
|
|
|
'name' => 'Laborde Grid (Greenwich)', |
1067
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4297', |
1068
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8441', |
1069
|
|
|
'accuracy' => 0, |
1070
|
|
|
], |
1071
|
|
|
[ |
1072
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18011', |
1073
|
|
|
'name' => 'Nord Algerie (ancienne)', |
1074
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4304', |
1075
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30491', |
1076
|
|
|
'accuracy' => 0, |
1077
|
|
|
], |
1078
|
|
|
[ |
1079
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18012', |
1080
|
|
|
'name' => 'Sud Algerie (ancienne)', |
1081
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4304', |
1082
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30492', |
1083
|
|
|
'accuracy' => 0, |
1084
|
|
|
], |
1085
|
|
|
[ |
1086
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1294', |
1087
|
|
|
'name' => 'Voirol 1875 to WGS 84 (1)', |
1088
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4304', |
1089
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1090
|
|
|
'accuracy' => 999.0, |
1091
|
|
|
], |
1092
|
|
|
[ |
1093
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10339', |
1094
|
|
|
'name' => 'Nord Sahara 1959 to RGSH2020 (1)', |
1095
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4307', |
1096
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10299', |
1097
|
|
|
'accuracy' => 5.0, |
1098
|
|
|
], |
1099
|
|
|
[ |
1100
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10340', |
1101
|
|
|
'name' => 'Nord Sahara 1959 to RGSH2020 (2)', |
1102
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4307', |
1103
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10299', |
1104
|
|
|
'accuracy' => 100.0, |
1105
|
|
|
], |
1106
|
|
|
[ |
1107
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10341', |
1108
|
|
|
'name' => 'Nord Sahara 1959 to RGSH2020 (3)', |
1109
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4307', |
1110
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10299', |
1111
|
|
|
'accuracy' => 100.0, |
1112
|
|
|
], |
1113
|
|
|
[ |
1114
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10342', |
1115
|
|
|
'name' => 'Nord Sahara 1959 to RGSH2020 (4)', |
1116
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4307', |
1117
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10299', |
1118
|
|
|
'accuracy' => 5.0, |
1119
|
|
|
], |
1120
|
|
|
[ |
1121
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10343', |
1122
|
|
|
'name' => 'Nord Sahara 1959 to RGSH2020 (5)', |
1123
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4307', |
1124
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10299', |
1125
|
|
|
'accuracy' => 5.0, |
1126
|
|
|
], |
1127
|
|
|
[ |
1128
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10344', |
1129
|
|
|
'name' => 'Nord Sahara 1959 to RGSH2020 (6)', |
1130
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4307', |
1131
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10299', |
1132
|
|
|
'accuracy' => 100.0, |
1133
|
|
|
], |
1134
|
|
|
[ |
1135
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18021', |
1136
|
|
|
'name' => 'Nord Algerie', |
1137
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4307', |
1138
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30791', |
1139
|
|
|
'accuracy' => 0, |
1140
|
|
|
], |
1141
|
|
|
[ |
1142
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18022', |
1143
|
|
|
'name' => 'Sud Algerie', |
1144
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4307', |
1145
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30792', |
1146
|
|
|
'accuracy' => 0, |
1147
|
|
|
], |
1148
|
|
|
[ |
1149
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1560', |
1150
|
|
|
'name' => 'Nord Sahara 1959 to WGS 72BE (1)', |
1151
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4307', |
1152
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4324', |
1153
|
|
|
'accuracy' => 8.0, |
1154
|
|
|
], |
1155
|
|
|
[ |
1156
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10296', |
1157
|
|
|
'name' => 'Nord Sahara 1959 to WGS 84 (11)', |
1158
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4307', |
1159
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1160
|
|
|
'accuracy' => 1.0, |
1161
|
|
|
], |
1162
|
|
|
[ |
1163
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1828', |
1164
|
|
|
'name' => 'Yoff to WGS 72 (1)', |
1165
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4310', |
1166
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4322', |
1167
|
|
|
'accuracy' => 25.0, |
1168
|
|
|
], |
1169
|
|
|
[ |
1170
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6903', |
1171
|
|
|
'name' => 'Yoff to WGS 84 (2)', |
1172
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4310', |
1173
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1174
|
|
|
'accuracy' => 5.0, |
1175
|
|
|
], |
1176
|
|
|
[ |
1177
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1517', |
1178
|
|
|
'name' => 'Conakry 1905 to WGS 84 (1)', |
1179
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4315', |
1180
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1181
|
|
|
'accuracy' => 30.0, |
1182
|
|
|
], |
1183
|
|
|
[ |
1184
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10591', |
1185
|
|
|
'name' => 'GLANCE projection - Africa', |
1186
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1187
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10592', |
1188
|
|
|
'accuracy' => 0, |
1189
|
|
|
], |
1190
|
|
|
[ |
1191
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16636', |
1192
|
|
|
'name' => 'TM 36 SE', |
1193
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1194
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::32766', |
1195
|
|
|
'accuracy' => 0, |
1196
|
|
|
], |
1197
|
|
|
[ |
1198
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4825', |
1199
|
|
|
'name' => 'Cape Verde National', |
1200
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1201
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4826', |
1202
|
|
|
'accuracy' => 0, |
1203
|
|
|
], |
1204
|
|
|
[ |
1205
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5222', |
1206
|
|
|
'name' => 'Gabon Transverse Mercator', |
1207
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1208
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5223', |
1209
|
|
|
'accuracy' => 0, |
1210
|
|
|
], |
1211
|
|
|
[ |
1212
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5522', |
1213
|
|
|
'name' => 'Gabon Transverse Mercator 2011', |
1214
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1215
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5523', |
1216
|
|
|
'accuracy' => 0, |
1217
|
|
|
], |
1218
|
|
|
[ |
1219
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16612', |
1220
|
|
|
'name' => 'TM 12 SE', |
1221
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1222
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5842', |
1223
|
|
|
'accuracy' => 0, |
1224
|
|
|
], |
1225
|
|
|
[ |
1226
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4476', |
1227
|
|
|
'name' => 'RGM04 to WGS 84 (1)', |
1228
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4470', |
1229
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1230
|
|
|
'accuracy' => 1.0, |
1231
|
|
|
], |
1232
|
|
|
[ |
1233
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4478', |
1234
|
|
|
'name' => 'Cadastre 1997 to RGM04 (1)', |
1235
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4475', |
1236
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4470', |
1237
|
|
|
'accuracy' => 0.1, |
1238
|
|
|
], |
1239
|
|
|
[ |
1240
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1880', |
1241
|
|
|
'name' => 'Point 58 to WGS 84 (1)', |
1242
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4620', |
1243
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1244
|
|
|
'accuracy' => 44.0, |
1245
|
|
|
], |
1246
|
|
|
[ |
1247
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19856', |
1248
|
|
|
'name' => 'TM Reunion', |
1249
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4626', |
1250
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3727', |
1251
|
|
|
'accuracy' => 0, |
1252
|
|
|
], |
1253
|
|
|
[ |
1254
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1926', |
1255
|
|
|
'name' => 'Reunion 1947 to RGR92 (1)', |
1256
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4626', |
1257
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4627', |
1258
|
|
|
'accuracy' => 0.1, |
1259
|
|
|
], |
1260
|
|
|
[ |
1261
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1912', |
1262
|
|
|
'name' => 'RGR92 to WGS 84 (1)', |
1263
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4627', |
1264
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1265
|
|
|
'accuracy' => 1.0, |
1266
|
|
|
], |
1267
|
|
|
[ |
1268
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1964', |
1269
|
|
|
'name' => 'RGR92 to Reunion 1947 (1)', |
1270
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4627', |
1271
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4626', |
1272
|
|
|
'accuracy' => 0.1, |
1273
|
|
|
], |
1274
|
|
|
[ |
1275
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5888', |
1276
|
|
|
'name' => 'Combani 1950 to RGM04 (1)', |
1277
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4632', |
1278
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4470', |
1279
|
|
|
'accuracy' => 0.3, |
1280
|
|
|
], |
1281
|
|
|
[ |
1282
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5521', |
1283
|
|
|
'name' => 'Grand Comoros to WGS 84 (1)', |
1284
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4646', |
1285
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1286
|
|
|
'accuracy' => 999.0, |
1287
|
|
|
], |
1288
|
|
|
[ |
1289
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18011', |
1290
|
|
|
'name' => 'Nord Algerie (ancienne)', |
1291
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4671', |
1292
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30493', |
1293
|
|
|
'accuracy' => 0, |
1294
|
|
|
], |
1295
|
|
|
[ |
1296
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18012', |
1297
|
|
|
'name' => 'Sud Algerie (ancienne)', |
1298
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4671', |
1299
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30494', |
1300
|
|
|
'accuracy' => 0, |
1301
|
|
|
], |
1302
|
|
|
[ |
1303
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15870', |
1304
|
|
|
'name' => 'Jouik 1961 to WGS 84 (1)', |
1305
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4679', |
1306
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1307
|
|
|
'accuracy' => 1.0, |
1308
|
|
|
], |
1309
|
|
|
[ |
1310
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15709', |
1311
|
|
|
'name' => 'Nouakchott 1965 to WGS 84 (1)', |
1312
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4680', |
1313
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1314
|
|
|
'accuracy' => 5.0, |
1315
|
|
|
], |
1316
|
|
|
[ |
1317
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3981', |
1318
|
|
|
'name' => 'Katanga Gauss zone A', |
1319
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4695', |
1320
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3986', |
1321
|
|
|
'accuracy' => 0, |
1322
|
|
|
], |
1323
|
|
|
[ |
1324
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3982', |
1325
|
|
|
'name' => 'Katanga Gauss zone B', |
1326
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4695', |
1327
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3987', |
1328
|
|
|
'accuracy' => 0, |
1329
|
|
|
], |
1330
|
|
|
[ |
1331
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3983', |
1332
|
|
|
'name' => 'Katanga Gauss zone C', |
1333
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4695', |
1334
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3988', |
1335
|
|
|
'accuracy' => 0, |
1336
|
|
|
], |
1337
|
|
|
[ |
1338
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3984', |
1339
|
|
|
'name' => 'Katanga Gauss zone D', |
1340
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4695', |
1341
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3989', |
1342
|
|
|
'accuracy' => 0, |
1343
|
|
|
], |
1344
|
|
|
[ |
1345
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4067', |
1346
|
|
|
'name' => 'Katanga 1955 to RGRDC 2005 (2)', |
1347
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4695', |
1348
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4046', |
1349
|
|
|
'accuracy' => 0.5, |
1350
|
|
|
], |
1351
|
|
|
[ |
1352
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4416', |
1353
|
|
|
'name' => 'Katanga Lambert', |
1354
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4695', |
1355
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4415', |
1356
|
|
|
'accuracy' => 0, |
1357
|
|
|
], |
1358
|
|
|
[ |
1359
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17422', |
1360
|
|
|
'name' => 'Congo Transverse Mercator zone 22', |
1361
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4696', |
1362
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3316', |
1363
|
|
|
'accuracy' => 0, |
1364
|
|
|
], |
1365
|
|
|
[ |
1366
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17424', |
1367
|
|
|
'name' => 'Congo Transverse Mercator zone 24', |
1368
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4696', |
1369
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3317', |
1370
|
|
|
'accuracy' => 0, |
1371
|
|
|
], |
1372
|
|
|
[ |
1373
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17412', |
1374
|
|
|
'name' => 'Congo Transverse Mercator zone 12', |
1375
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4697', |
1376
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3318', |
1377
|
|
|
'accuracy' => 0, |
1378
|
|
|
], |
1379
|
|
|
[ |
1380
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17414', |
1381
|
|
|
'name' => 'Congo Transverse Mercator zone 14', |
1382
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4697', |
1383
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3319', |
1384
|
|
|
'accuracy' => 0, |
1385
|
|
|
], |
1386
|
|
|
[ |
1387
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17416', |
1388
|
|
|
'name' => 'Congo Transverse Mercator zone 16', |
1389
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4697', |
1390
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3320', |
1391
|
|
|
'accuracy' => 0, |
1392
|
|
|
], |
1393
|
|
|
[ |
1394
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17418', |
1395
|
|
|
'name' => 'Congo Transverse Mercator zone 18', |
1396
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4697', |
1397
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3321', |
1398
|
|
|
'accuracy' => 0, |
1399
|
|
|
], |
1400
|
|
|
[ |
1401
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17420', |
1402
|
|
|
'name' => 'Congo Transverse Mercator zone 20', |
1403
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4697', |
1404
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3322', |
1405
|
|
|
'accuracy' => 0, |
1406
|
|
|
], |
1407
|
|
|
[ |
1408
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17422', |
1409
|
|
|
'name' => 'Congo Transverse Mercator zone 22', |
1410
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4697', |
1411
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3323', |
1412
|
|
|
'accuracy' => 0, |
1413
|
|
|
], |
1414
|
|
|
[ |
1415
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17424', |
1416
|
|
|
'name' => 'Congo Transverse Mercator zone 24', |
1417
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4697', |
1418
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3324', |
1419
|
|
|
'accuracy' => 0, |
1420
|
|
|
], |
1421
|
|
|
[ |
1422
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17426', |
1423
|
|
|
'name' => 'Congo Transverse Mercator zone 26', |
1424
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4697', |
1425
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3325', |
1426
|
|
|
'accuracy' => 0, |
1427
|
|
|
], |
1428
|
|
|
[ |
1429
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17428', |
1430
|
|
|
'name' => 'Congo Transverse Mercator zone 28', |
1431
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4697', |
1432
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3326', |
1433
|
|
|
'accuracy' => 0, |
1434
|
|
|
], |
1435
|
|
|
[ |
1436
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17430', |
1437
|
|
|
'name' => 'Congo Transverse Mercator zone 30', |
1438
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4697', |
1439
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3327', |
1440
|
|
|
'accuracy' => 0, |
1441
|
|
|
], |
1442
|
|
|
[ |
1443
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15850', |
1444
|
|
|
'name' => 'IGN 1962 Kerguelen to WGS 84 (1)', |
1445
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4698', |
1446
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1447
|
|
|
'accuracy' => 10.0, |
1448
|
|
|
], |
1449
|
|
|
[ |
1450
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19899', |
1451
|
|
|
'name' => 'Mauritius Grid', |
1452
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4699', |
1453
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3337', |
1454
|
|
|
'accuracy' => 0, |
1455
|
|
|
], |
1456
|
|
|
[ |
1457
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15784', |
1458
|
|
|
'name' => 'Le Pouce 1934 to WGS 84 (1)', |
1459
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4699', |
1460
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1461
|
|
|
'accuracy' => 2.0, |
1462
|
|
|
], |
1463
|
|
|
[ |
1464
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17412', |
1465
|
|
|
'name' => 'Congo Transverse Mercator zone 12', |
1466
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4701', |
1467
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3339', |
1468
|
|
|
'accuracy' => 0, |
1469
|
|
|
], |
1470
|
|
|
[ |
1471
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17414', |
1472
|
|
|
'name' => 'Congo Transverse Mercator zone 14', |
1473
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4701', |
1474
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3340', |
1475
|
|
|
'accuracy' => 0, |
1476
|
|
|
], |
1477
|
|
|
[ |
1478
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17416', |
1479
|
|
|
'name' => 'Congo Transverse Mercator zone 16', |
1480
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4701', |
1481
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3341', |
1482
|
|
|
'accuracy' => 0, |
1483
|
|
|
], |
1484
|
|
|
[ |
1485
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15787', |
1486
|
|
|
'name' => 'IGCB 1955 to WGS 84 (1)', |
1487
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4701', |
1488
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1489
|
|
|
'accuracy' => 5.0, |
1490
|
|
|
], |
1491
|
|
|
[ |
1492
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15860', |
1493
|
|
|
'name' => 'Mauritania 1999 to WGS 84 (1)', |
1494
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4702', |
1495
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1496
|
|
|
'accuracy' => 1.0, |
1497
|
|
|
], |
1498
|
|
|
[ |
1499
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15790', |
1500
|
|
|
'name' => 'Mhast (offshore) to WGS 72BE (1)', |
1501
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4705', |
1502
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4324', |
1503
|
|
|
'accuracy' => 10.0, |
1504
|
|
|
], |
1505
|
|
|
[ |
1506
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18072', |
1507
|
|
|
'name' => 'Egypt Red Belt', |
1508
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4706', |
1509
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3355', |
1510
|
|
|
'accuracy' => 0, |
1511
|
|
|
], |
1512
|
|
|
[ |
1513
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15792', |
1514
|
|
|
'name' => 'Egypt Gulf of Suez S-650 TL to WGS 72BE (1)', |
1515
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4706', |
1516
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4324', |
1517
|
|
|
'accuracy' => 5.0, |
1518
|
|
|
], |
1519
|
|
|
[ |
1520
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15846', |
1521
|
|
|
'name' => 'Egypt Gulf of Suez S-650 TL to WGS 84 (2)', |
1522
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4706', |
1523
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1524
|
|
|
'accuracy' => 5.0, |
1525
|
|
|
], |
1526
|
|
|
[ |
1527
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7894', |
1528
|
|
|
'name' => 'Astro DOS 71 to WGS 84 (2)', |
1529
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4710', |
1530
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1531
|
|
|
'accuracy' => 1.0, |
1532
|
|
|
], |
1533
|
|
|
[ |
1534
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7875', |
1535
|
|
|
'name' => 'St. Helena Local Grid 1971', |
1536
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4710', |
1537
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7877', |
1538
|
|
|
'accuracy' => 0, |
1539
|
|
|
], |
1540
|
|
|
[ |
1541
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7895', |
1542
|
|
|
'name' => 'Astro DOS 71 to SHGD2015 (2)', |
1543
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4710', |
1544
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7886', |
1545
|
|
|
'accuracy' => 0.1, |
1546
|
|
|
], |
1547
|
|
|
[ |
1548
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15797', |
1549
|
|
|
'name' => 'Ascension Island 1958 to WGS 84 (1)', |
1550
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4712', |
1551
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1552
|
|
|
'accuracy' => 44.0, |
1553
|
|
|
], |
1554
|
|
|
[ |
1555
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6907', |
1556
|
|
|
'name' => 'Ayabelle Lighthouse to WGS 84 (2)', |
1557
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4713', |
1558
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1559
|
|
|
'accuracy' => 17.0, |
1560
|
|
|
], |
1561
|
|
|
[ |
1562
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15816', |
1563
|
|
|
'name' => 'Tristan 1968 to WGS 84 (1)', |
1564
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4734', |
1565
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1566
|
|
|
'accuracy' => 44.0, |
1567
|
|
|
], |
1568
|
|
|
[ |
1569
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18319', |
1570
|
|
|
'name' => 'Libya TM', |
1571
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4754', |
1572
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3177', |
1573
|
|
|
'accuracy' => 0, |
1574
|
|
|
], |
1575
|
|
|
[ |
1576
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18310', |
1577
|
|
|
'name' => 'Libya TM zone 5', |
1578
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4754', |
1579
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3190', |
1580
|
|
|
'accuracy' => 0, |
1581
|
|
|
], |
1582
|
|
|
[ |
1583
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18311', |
1584
|
|
|
'name' => 'Libya TM zone 6', |
1585
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4754', |
1586
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3191', |
1587
|
|
|
'accuracy' => 0, |
1588
|
|
|
], |
1589
|
|
|
[ |
1590
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18312', |
1591
|
|
|
'name' => 'Libya TM zone 7', |
1592
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4754', |
1593
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3192', |
1594
|
|
|
'accuracy' => 0, |
1595
|
|
|
], |
1596
|
|
|
[ |
1597
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18313', |
1598
|
|
|
'name' => 'Libya TM zone 8', |
1599
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4754', |
1600
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3193', |
1601
|
|
|
'accuracy' => 0, |
1602
|
|
|
], |
1603
|
|
|
[ |
1604
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18314', |
1605
|
|
|
'name' => 'Libya TM zone 9', |
1606
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4754', |
1607
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3194', |
1608
|
|
|
'accuracy' => 0, |
1609
|
|
|
], |
1610
|
|
|
[ |
1611
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18315', |
1612
|
|
|
'name' => 'Libya TM zone 10', |
1613
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4754', |
1614
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3195', |
1615
|
|
|
'accuracy' => 0, |
1616
|
|
|
], |
1617
|
|
|
[ |
1618
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18316', |
1619
|
|
|
'name' => 'Libya TM zone 11', |
1620
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4754', |
1621
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3196', |
1622
|
|
|
'accuracy' => 0, |
1623
|
|
|
], |
1624
|
|
|
[ |
1625
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18317', |
1626
|
|
|
'name' => 'Libya TM zone 12', |
1627
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4754', |
1628
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3197', |
1629
|
|
|
'accuracy' => 0, |
1630
|
|
|
], |
1631
|
|
|
[ |
1632
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18318', |
1633
|
|
|
'name' => 'Libya TM zone 13', |
1634
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4754', |
1635
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3198', |
1636
|
|
|
'accuracy' => 0, |
1637
|
|
|
], |
1638
|
|
|
[ |
1639
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15908', |
1640
|
|
|
'name' => 'LGD2006 to WGS 84 (1)', |
1641
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4754', |
1642
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1643
|
|
|
'accuracy' => 0.1, |
1644
|
|
|
], |
1645
|
|
|
[ |
1646
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19861', |
1647
|
|
|
'name' => 'Laborde Grid', |
1648
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4810', |
1649
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29701', |
1650
|
|
|
'accuracy' => 0, |
1651
|
|
|
], |
1652
|
|
|
[ |
1653
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19911', |
1654
|
|
|
'name' => 'Laborde Grid approximation', |
1655
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4810', |
1656
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29702', |
1657
|
|
|
'accuracy' => 0, |
1658
|
|
|
], |
1659
|
|
|
[ |
1660
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1265', |
1661
|
|
|
'name' => 'Tananarive (Paris) to Tananarive (1)', |
1662
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4810', |
1663
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4297', |
1664
|
|
|
'accuracy' => 0.0, |
1665
|
|
|
], |
1666
|
|
|
[ |
1667
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1266', |
1668
|
|
|
'name' => 'Voirol 1875 (Paris) to Voirol 1875 (1)', |
1669
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4811', |
1670
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4304', |
1671
|
|
|
'accuracy' => 0.0, |
1672
|
|
|
], |
1673
|
|
|
[ |
1674
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1881', |
1675
|
|
|
'name' => 'Carthage (Paris) to Carthage (1)', |
1676
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4816', |
1677
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4223', |
1678
|
|
|
'accuracy' => 0.0, |
1679
|
|
|
], |
1680
|
|
|
[ |
1681
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6912', |
1682
|
|
|
'name' => 'Bioko to WGS 84 (1)', |
1683
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6883', |
1684
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1685
|
|
|
'accuracy' => 42.0, |
1686
|
|
|
], |
1687
|
|
|
[ |
1688
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6926', |
1689
|
|
|
'name' => 'South East Island 1943 to WGS 84 (2)', |
1690
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6892', |
1691
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1692
|
|
|
'accuracy' => 1.0, |
1693
|
|
|
], |
1694
|
|
|
[ |
1695
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6913', |
1696
|
|
|
'name' => 'Gambia to WGS 84 (1)', |
1697
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6894', |
1698
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1699
|
|
|
'accuracy' => 43.0, |
1700
|
|
|
], |
1701
|
|
|
[ |
1702
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9770', |
1703
|
|
|
'name' => 'RGTAAF07 to WGS 84 (1)', |
1704
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7073', |
1705
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1706
|
|
|
'accuracy' => 1.0, |
1707
|
|
|
], |
1708
|
|
|
[ |
1709
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7876', |
1710
|
|
|
'name' => 'St. Helena Local Grid (Tritan)', |
1711
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7881', |
1712
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7882', |
1713
|
|
|
'accuracy' => 0, |
1714
|
|
|
], |
1715
|
|
|
[ |
1716
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7897', |
1717
|
|
|
'name' => 'St. Helena Tritan to SHGD2015 (1)', |
1718
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7881', |
1719
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7886', |
1720
|
|
|
'accuracy' => 0.05, |
1721
|
|
|
], |
1722
|
|
|
[ |
1723
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7892', |
1724
|
|
|
'name' => 'SHGD2015 to WGS 84 (1)', |
1725
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7886', |
1726
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1727
|
|
|
'accuracy' => 1.0, |
1728
|
|
|
], |
1729
|
|
|
[ |
1730
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9226', |
1731
|
|
|
'name' => 'SHGD2015 to Astro DOS 71 (2)', |
1732
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7886', |
1733
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4710', |
1734
|
|
|
'accuracy' => 0.1, |
1735
|
|
|
], |
1736
|
|
|
[ |
1737
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9280', |
1738
|
|
|
'name' => 'ITRF2005 to SA LLD height (1)', |
1739
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7910', |
1740
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9279', |
1741
|
|
|
'accuracy' => 0.07000000000000001, |
1742
|
|
|
], |
1743
|
|
|
[ |
1744
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9643', |
1745
|
|
|
'name' => 'ITRF2005 to ITRF2005 + SA LLD height (1)', |
1746
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7910', |
1747
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9543', |
1748
|
|
|
'accuracy' => 0.07000000000000001, |
1749
|
|
|
], |
1750
|
|
|
[ |
1751
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8882', |
1752
|
|
|
'name' => 'Camacupa 2015 to WGS 84 (11)', |
1753
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8694', |
1754
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1755
|
|
|
'accuracy' => 3.0, |
1756
|
|
|
], |
1757
|
|
|
[ |
1758
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8827', |
1759
|
|
|
'name' => 'Camacupa 2015 to RSAO13 (1)', |
1760
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8694', |
1761
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8699', |
1762
|
|
|
'accuracy' => 3.0, |
1763
|
|
|
], |
1764
|
|
|
[ |
1765
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8819', |
1766
|
|
|
'name' => 'RSAO13 to WGS 84 (1)', |
1767
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8699', |
1768
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1769
|
|
|
'accuracy' => 1.0, |
1770
|
|
|
], |
1771
|
|
|
[ |
1772
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16612', |
1773
|
|
|
'name' => 'TM 12 SE', |
1774
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8699', |
1775
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9159', |
1776
|
|
|
'accuracy' => 0, |
1777
|
|
|
], |
1778
|
|
|
]; |
1779
|
|
|
|
1780
|
|
|
/** |
1781
|
|
|
* @return array<array{operation: string, name: string, source_crs: string, target_crs: string, accuracy: float}> |
1782
|
|
|
*/ |
1783
|
|
|
public static function getSupportedTransformations(): array |
1784
|
|
|
{ |
1785
|
|
|
return static::$sridData; |
1786
|
|
|
} |
1787
|
|
|
} |
1788
|
|
|
|