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 CRSTransformationsAsia |
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::3818', |
23
|
|
|
'name' => 'Taiwan 2-degree TM zone 119', |
24
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3821', |
25
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3827', |
26
|
|
|
'accuracy' => 0, |
27
|
|
|
], |
28
|
|
|
[ |
29
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3820', |
30
|
|
|
'name' => 'Taiwan 2-degree TM zone 121', |
31
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3821', |
32
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3828', |
33
|
|
|
'accuracy' => 0, |
34
|
|
|
], |
35
|
|
|
[ |
36
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3818', |
37
|
|
|
'name' => 'Taiwan 2-degree TM zone 119', |
38
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3824', |
39
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3825', |
40
|
|
|
'accuracy' => 0, |
41
|
|
|
], |
42
|
|
|
[ |
43
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3820', |
44
|
|
|
'name' => 'Taiwan 2-degree TM zone 121', |
45
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3824', |
46
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3826', |
47
|
|
|
'accuracy' => 0, |
48
|
|
|
], |
49
|
|
|
[ |
50
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3830', |
51
|
|
|
'name' => 'TWD97 to WGS 84 (1)', |
52
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3824', |
53
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
54
|
|
|
'accuracy' => 1.0, |
55
|
|
|
], |
56
|
|
|
[ |
57
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::3894', |
58
|
|
|
'name' => 'IGRS to WGS 84 (1)', |
59
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3889', |
60
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
61
|
|
|
'accuracy' => 1.0, |
62
|
|
|
], |
63
|
|
|
[ |
64
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16506', |
65
|
|
|
'name' => 'TM 106 NE', |
66
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4131', |
67
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3176', |
68
|
|
|
'accuracy' => 0, |
69
|
|
|
], |
70
|
|
|
[ |
71
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1541', |
72
|
|
|
'name' => 'Indian 1960 to WGS 72BE (1)', |
73
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4131', |
74
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4324', |
75
|
|
|
'accuracy' => 25.0, |
76
|
|
|
], |
77
|
|
|
[ |
78
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1542', |
79
|
|
|
'name' => 'Indian 1960 to WGS 84 (2)', |
80
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4131', |
81
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
82
|
|
|
'accuracy' => 44.0, |
83
|
|
|
], |
84
|
|
|
[ |
85
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1543', |
86
|
|
|
'name' => 'Indian 1960 to WGS 84 (3)', |
87
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4131', |
88
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
89
|
|
|
'accuracy' => 44.0, |
90
|
|
|
], |
91
|
|
|
[ |
92
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19906', |
93
|
|
|
'name' => 'Iraq zone', |
94
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4132', |
95
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3200', |
96
|
|
|
'accuracy' => 0, |
97
|
|
|
], |
98
|
|
|
[ |
99
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1513', |
100
|
|
|
'name' => 'FD58 to WGS 84 (1)', |
101
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4132', |
102
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
103
|
|
|
'accuracy' => 0.5, |
104
|
|
|
], |
105
|
|
|
[ |
106
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1854', |
107
|
|
|
'name' => 'FD58 to WGS 84 (2)', |
108
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4132', |
109
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
110
|
|
|
'accuracy' => 0.5, |
111
|
|
|
], |
112
|
|
|
[ |
113
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1855', |
114
|
|
|
'name' => 'FD58 to WGS 84 (3)', |
115
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4132', |
116
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
117
|
|
|
'accuracy' => 0.5, |
118
|
|
|
], |
119
|
|
|
[ |
120
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1616', |
121
|
|
|
'name' => 'PSD93 to WGS 72 (1)', |
122
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4134', |
123
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4322', |
124
|
|
|
'accuracy' => 1.2, |
125
|
|
|
], |
126
|
|
|
[ |
127
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1439', |
128
|
|
|
'name' => 'PSD93 to WGS 84 (1)', |
129
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4134', |
130
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
131
|
|
|
'accuracy' => 0.5, |
132
|
|
|
], |
133
|
|
|
[ |
134
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1617', |
135
|
|
|
'name' => 'PSD93 to WGS 84 (3)', |
136
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4134', |
137
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
138
|
|
|
'accuracy' => 0.5, |
139
|
|
|
], |
140
|
|
|
[ |
141
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18204', |
142
|
|
|
'name' => 'Israeli TM', |
143
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4141', |
144
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2039', |
145
|
|
|
'accuracy' => 0, |
146
|
|
|
], |
147
|
|
|
[ |
148
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9676', |
149
|
|
|
'name' => 'Israel 1993 to WGS 84 (2)', |
150
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4141', |
151
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
152
|
|
|
'accuracy' => 0.5, |
153
|
|
|
], |
154
|
|
|
[ |
155
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18238', |
156
|
|
|
'name' => 'India zone IIb (1937 metres)', |
157
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4144', |
158
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24375', |
159
|
|
|
'accuracy' => 0, |
160
|
|
|
], |
161
|
|
|
[ |
162
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1155', |
163
|
|
|
'name' => 'Kalianpur 1937 to WGS 84 (1)', |
164
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4144', |
165
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
166
|
|
|
'accuracy' => 18.0, |
167
|
|
|
], |
168
|
|
|
[ |
169
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1533', |
170
|
|
|
'name' => 'Kalianpur 1937 to WGS 84 (2)', |
171
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4144', |
172
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
173
|
|
|
'accuracy' => 5.0, |
174
|
|
|
], |
175
|
|
|
[ |
176
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18236', |
177
|
|
|
'name' => 'India zone I (1962 metres)', |
178
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4145', |
179
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24376', |
180
|
|
|
'accuracy' => 0, |
181
|
|
|
], |
182
|
|
|
[ |
183
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18237', |
184
|
|
|
'name' => 'India zone IIa (1962 metres)', |
185
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4145', |
186
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24377', |
187
|
|
|
'accuracy' => 0, |
188
|
|
|
], |
189
|
|
|
[ |
190
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15494', |
191
|
|
|
'name' => 'Kalianpur 1962 to WGS 84 (6)', |
192
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4145', |
193
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
194
|
|
|
'accuracy' => 3.0, |
195
|
|
|
], |
196
|
|
|
[ |
197
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15701', |
198
|
|
|
'name' => 'Kalianpur 1962 to WGS 84 (2)', |
199
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4145', |
200
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
201
|
|
|
'accuracy' => 1.0, |
202
|
|
|
], |
203
|
|
|
[ |
204
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15702', |
205
|
|
|
'name' => 'Kalianpur 1962 to WGS 84 (3)', |
206
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4145', |
207
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
208
|
|
|
'accuracy' => 3.0, |
209
|
|
|
], |
210
|
|
|
[ |
211
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15703', |
212
|
|
|
'name' => 'Kalianpur 1962 to WGS 84 (4)', |
213
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4145', |
214
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
215
|
|
|
'accuracy' => 3.0, |
216
|
|
|
], |
217
|
|
|
[ |
218
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9234', |
219
|
|
|
'name' => 'Kalianpur 1962 to WGS 84 (5)', |
220
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4145', |
221
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
222
|
|
|
'accuracy' => 3.0, |
223
|
|
|
], |
224
|
|
|
[ |
225
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18231', |
226
|
|
|
'name' => 'India zone I (1975 metres)', |
227
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4146', |
228
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24378', |
229
|
|
|
'accuracy' => 0, |
230
|
|
|
], |
231
|
|
|
[ |
232
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18232', |
233
|
|
|
'name' => 'India zone IIa (1975 metres)', |
234
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4146', |
235
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24379', |
236
|
|
|
'accuracy' => 0, |
237
|
|
|
], |
238
|
|
|
[ |
239
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18235', |
240
|
|
|
'name' => 'India zone IIb (1975 metres)', |
241
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4146', |
242
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24380', |
243
|
|
|
'accuracy' => 0, |
244
|
|
|
], |
245
|
|
|
[ |
246
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18233', |
247
|
|
|
'name' => 'India zone IIIa (1975 metres)', |
248
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4146', |
249
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24381', |
250
|
|
|
'accuracy' => 0, |
251
|
|
|
], |
252
|
|
|
[ |
253
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18234', |
254
|
|
|
'name' => 'India zone IVa (1975 metres)', |
255
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4146', |
256
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24383', |
257
|
|
|
'accuracy' => 0, |
258
|
|
|
], |
259
|
|
|
[ |
260
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16586', |
261
|
|
|
'name' => 'GK 106 NE', |
262
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4147', |
263
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2093', |
264
|
|
|
'accuracy' => 0, |
265
|
|
|
], |
266
|
|
|
[ |
267
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1544', |
268
|
|
|
'name' => 'Hanoi 1972 to WGS 84 (1)', |
269
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4147', |
270
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
271
|
|
|
'accuracy' => 5.0, |
272
|
|
|
], |
273
|
|
|
[ |
274
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19951', |
275
|
|
|
'name' => 'Nakhl e Taqi Oblique Mercator', |
276
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4153', |
277
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2057', |
278
|
|
|
'accuracy' => 0, |
279
|
|
|
], |
280
|
|
|
[ |
281
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1512', |
282
|
|
|
'name' => 'Rassadiran to WGS 84 (1)', |
283
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4153', |
284
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
285
|
|
|
'accuracy' => 0.5, |
286
|
|
|
], |
287
|
|
|
[ |
288
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1141', |
289
|
|
|
'name' => 'ED50(ED77) to WGS 84 (2)', |
290
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4154', |
291
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
292
|
|
|
'accuracy' => 19.0, |
293
|
|
|
], |
294
|
|
|
[ |
295
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1514', |
296
|
|
|
'name' => 'ED50(ED77) to WGS 84 (1)', |
297
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4154', |
298
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
299
|
|
|
'accuracy' => 1.0, |
300
|
|
|
], |
301
|
|
|
[ |
302
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15745', |
303
|
|
|
'name' => 'ED50(ED77) to WGS 84 (6)', |
304
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4154', |
305
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
306
|
|
|
'accuracy' => 0.2, |
307
|
|
|
], |
308
|
|
|
[ |
309
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1856', |
310
|
|
|
'name' => 'ED50(ED77) to WGS 84 (3)', |
311
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4154', |
312
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
313
|
|
|
'accuracy' => 0.5, |
314
|
|
|
], |
315
|
|
|
[ |
316
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1857', |
317
|
|
|
'name' => 'ED50(ED77) to WGS 84 (4)', |
318
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4154', |
319
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
320
|
|
|
'accuracy' => 0.5, |
321
|
|
|
], |
322
|
|
|
[ |
323
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1858', |
324
|
|
|
'name' => 'ED50(ED77) to WGS 84 (5)', |
325
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4154', |
326
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
327
|
|
|
'accuracy' => 0.5, |
328
|
|
|
], |
329
|
|
|
[ |
330
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18251', |
331
|
|
|
'name' => 'Korea East Belt', |
332
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4162', |
333
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2096', |
334
|
|
|
'accuracy' => 0, |
335
|
|
|
], |
336
|
|
|
[ |
337
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18252', |
338
|
|
|
'name' => 'Korea Central Belt', |
339
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4162', |
340
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2097', |
341
|
|
|
'accuracy' => 0, |
342
|
|
|
], |
343
|
|
|
[ |
344
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18253', |
345
|
|
|
'name' => 'Korea West Belt', |
346
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4162', |
347
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2098', |
348
|
|
|
'accuracy' => 0, |
349
|
|
|
], |
350
|
|
|
[ |
351
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5189', |
352
|
|
|
'name' => 'Korean 1985 to KGD2002 (1)', |
353
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4162', |
354
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4737', |
355
|
|
|
'accuracy' => 1.0, |
356
|
|
|
], |
357
|
|
|
[ |
358
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5049', |
359
|
|
|
'name' => 'Korea East Sea Belt', |
360
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4162', |
361
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5167', |
362
|
|
|
'accuracy' => 0, |
363
|
|
|
], |
364
|
|
|
[ |
365
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5131', |
366
|
|
|
'name' => 'Korea Central Belt Jeju', |
367
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4162', |
368
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5168', |
369
|
|
|
'accuracy' => 0, |
370
|
|
|
], |
371
|
|
|
[ |
372
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5161', |
373
|
|
|
'name' => 'Korea Modified West Belt', |
374
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4162', |
375
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5173', |
376
|
|
|
'accuracy' => 0, |
377
|
|
|
], |
378
|
|
|
[ |
379
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5162', |
380
|
|
|
'name' => 'Korea Modified Central Belt', |
381
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4162', |
382
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5174', |
383
|
|
|
'accuracy' => 0, |
384
|
|
|
], |
385
|
|
|
[ |
386
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5163', |
387
|
|
|
'name' => 'Korea Modified Central Belt Jeju', |
388
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4162', |
389
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5175', |
390
|
|
|
'accuracy' => 0, |
391
|
|
|
], |
392
|
|
|
[ |
393
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5164', |
394
|
|
|
'name' => 'Korea Modified East Belt', |
395
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4162', |
396
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5176', |
397
|
|
|
'accuracy' => 0, |
398
|
|
|
], |
399
|
|
|
[ |
400
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5165', |
401
|
|
|
'name' => 'Korea Modified East Sea Belt', |
402
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4162', |
403
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5177', |
404
|
|
|
'accuracy' => 0, |
405
|
|
|
], |
406
|
|
|
[ |
407
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5100', |
408
|
|
|
'name' => 'Korea Unified Belt', |
409
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4162', |
410
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5178', |
411
|
|
|
'accuracy' => 0, |
412
|
|
|
], |
413
|
|
|
[ |
414
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1540', |
415
|
|
|
'name' => 'Yemen NGN96 to WGS 84 (1)', |
416
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4163', |
417
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
418
|
|
|
'accuracy' => 1.0, |
419
|
|
|
], |
420
|
|
|
[ |
421
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1539', |
422
|
|
|
'name' => 'South Yemen to Yemen NGN96 (1)', |
423
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4164', |
424
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4163', |
425
|
|
|
'accuracy' => 5.0, |
426
|
|
|
], |
427
|
|
|
[ |
428
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1558', |
429
|
|
|
'name' => 'Korean 1995 to WGS 84 (1)', |
430
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4166', |
431
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
432
|
|
|
'accuracy' => 2.0, |
433
|
|
|
], |
434
|
|
|
[ |
435
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19900', |
436
|
|
|
'name' => 'Bahrain State Grid', |
437
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4204', |
438
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20499', |
439
|
|
|
'accuracy' => 0, |
440
|
|
|
], |
441
|
|
|
[ |
442
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19977', |
443
|
|
|
'name' => 'Aramco Lambert', |
444
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4204', |
445
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2318', |
446
|
|
|
'accuracy' => 0, |
447
|
|
|
], |
448
|
|
|
[ |
449
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1057', |
450
|
|
|
'name' => 'Ain el Abd to WGS 84 (5)', |
451
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4204', |
452
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
453
|
|
|
'accuracy' => 1.0, |
454
|
|
|
], |
455
|
|
|
[ |
456
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1058', |
457
|
|
|
'name' => 'Ain el Abd to WGS 84 (6)', |
458
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4204', |
459
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
460
|
|
|
'accuracy' => 1.0, |
461
|
|
|
], |
462
|
|
|
[ |
463
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1110', |
464
|
|
|
'name' => 'Ain el Abd to WGS 84 (1)', |
465
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4204', |
466
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
467
|
|
|
'accuracy' => 44.0, |
468
|
|
|
], |
469
|
|
|
[ |
470
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1111', |
471
|
|
|
'name' => 'Ain el Abd to WGS 84 (2)', |
472
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4204', |
473
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
474
|
|
|
'accuracy' => 18.0, |
475
|
|
|
], |
476
|
|
|
[ |
477
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8824', |
478
|
|
|
'name' => 'Ain el Abd to MTRF-2000 (1)', |
479
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4204', |
480
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8818', |
481
|
|
|
'accuracy' => 5.0, |
482
|
|
|
], |
483
|
|
|
[ |
484
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9362', |
485
|
|
|
'name' => 'Ain el Abd to KSA-GRF17 (1)', |
486
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4204', |
487
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9333', |
488
|
|
|
'accuracy' => 2.0, |
489
|
|
|
], |
490
|
|
|
[ |
491
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16709', |
492
|
|
|
'name' => 'TM 109 SE', |
493
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4211', |
494
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2308', |
495
|
|
|
'accuracy' => 0, |
496
|
|
|
], |
497
|
|
|
[ |
498
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19905', |
499
|
|
|
'name' => 'Netherlands East Indies Equatorial Zone', |
500
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4211', |
501
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3001', |
502
|
|
|
'accuracy' => 0, |
503
|
|
|
], |
504
|
|
|
[ |
505
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8452', |
506
|
|
|
'name' => 'Batavia to WGS 84 (1)', |
507
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4211', |
508
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
509
|
|
|
'accuracy' => 6.0, |
510
|
|
|
], |
511
|
|
|
[ |
512
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15918', |
513
|
|
|
'name' => 'Beijing 1954 to WGS 84 (1)', |
514
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4214', |
515
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
516
|
|
|
'accuracy' => 1.0, |
517
|
|
|
], |
518
|
|
|
[ |
519
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15919', |
520
|
|
|
'name' => 'Beijing 1954 to WGS 84 (2)', |
521
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4214', |
522
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
523
|
|
|
'accuracy' => 15.0, |
524
|
|
|
], |
525
|
|
|
[ |
526
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15920', |
527
|
|
|
'name' => 'Beijing 1954 to WGS 84 (3)', |
528
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4214', |
529
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
530
|
|
|
'accuracy' => 15.0, |
531
|
|
|
], |
532
|
|
|
[ |
533
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15921', |
534
|
|
|
'name' => 'Beijing 1954 to WGS 84 (4)', |
535
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4214', |
536
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
537
|
|
|
'accuracy' => 1.0, |
538
|
|
|
], |
539
|
|
|
[ |
540
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15935', |
541
|
|
|
'name' => 'Beijing 1954 to WGS 84 (5)', |
542
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4214', |
543
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
544
|
|
|
'accuracy' => 10.0, |
545
|
|
|
], |
546
|
|
|
[ |
547
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15936', |
548
|
|
|
'name' => 'Beijing 1954 to WGS 84 (6)', |
549
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4214', |
550
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
551
|
|
|
'accuracy' => 1.0, |
552
|
|
|
], |
553
|
|
|
[ |
554
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1126', |
555
|
|
|
'name' => 'Bukit Rimpah to WGS 84 (1)', |
556
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4219', |
557
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
558
|
|
|
'accuracy' => 999.0, |
559
|
|
|
], |
560
|
|
|
[ |
561
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19940', |
562
|
|
|
'name' => 'Levant Zone', |
563
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4227', |
564
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22700', |
565
|
|
|
'accuracy' => 0, |
566
|
|
|
], |
567
|
|
|
[ |
568
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19948', |
569
|
|
|
'name' => 'Syria Lambert', |
570
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4227', |
571
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22770', |
572
|
|
|
'accuracy' => 0, |
573
|
|
|
], |
574
|
|
|
[ |
575
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19949', |
576
|
|
|
'name' => 'Levant Stereographic', |
577
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4227', |
578
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::22780', |
579
|
|
|
'accuracy' => 0, |
580
|
|
|
], |
581
|
|
|
[ |
582
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1584', |
583
|
|
|
'name' => 'Deir ez Zor to WGS 72BE (1)', |
584
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4227', |
585
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4324', |
586
|
|
|
'accuracy' => 5.0, |
587
|
|
|
], |
588
|
|
|
[ |
589
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15742', |
590
|
|
|
'name' => 'Deir ez Zor to WGS 84 (5)', |
591
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4227', |
592
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
593
|
|
|
'accuracy' => 5.0, |
594
|
|
|
], |
595
|
|
|
[ |
596
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15743', |
597
|
|
|
'name' => 'Deir ez Zor to WGS 84 (6)', |
598
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4227', |
599
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
600
|
|
|
'accuracy' => 0.5, |
601
|
|
|
], |
602
|
|
|
[ |
603
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1587', |
604
|
|
|
'name' => 'Deir ez Zor to WGS 84 (4)', |
605
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4227', |
606
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
607
|
|
|
'accuracy' => 1.0, |
608
|
|
|
], |
609
|
|
|
[ |
610
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19995', |
611
|
|
|
'name' => 'Jordan Transverse Mercator', |
612
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
613
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3066', |
614
|
|
|
'accuracy' => 0, |
615
|
|
|
], |
616
|
|
|
[ |
617
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19907', |
618
|
|
|
'name' => 'Iraq National Grid', |
619
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
620
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3893', |
621
|
|
|
'accuracy' => 0, |
622
|
|
|
], |
623
|
|
|
[ |
624
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1087', |
625
|
|
|
'name' => 'ED50 to WGS 84 (37)', |
626
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
627
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
628
|
|
|
'accuracy' => 2.5, |
629
|
|
|
], |
630
|
|
|
[ |
631
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1135', |
632
|
|
|
'name' => 'ED50 to WGS 84 (3)', |
633
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4230', |
634
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
635
|
|
|
'accuracy' => 999.0, |
636
|
|
|
], |
637
|
|
|
[ |
638
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6908', |
639
|
|
|
'name' => 'Fahud to WGS 84 (3)', |
640
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4232', |
641
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
642
|
|
|
'accuracy' => 7.0, |
643
|
|
|
], |
644
|
|
|
[ |
645
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1152', |
646
|
|
|
'name' => 'Hu Tzu Shan 1950 to WGS 84 (1)', |
647
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4236', |
648
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
649
|
|
|
'accuracy' => 26.0, |
650
|
|
|
], |
651
|
|
|
[ |
652
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15911', |
653
|
|
|
'name' => 'ID74 to DGN95 (1)', |
654
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4238', |
655
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4755', |
656
|
|
|
'accuracy' => 3.0, |
657
|
|
|
], |
658
|
|
|
[ |
659
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1153', |
660
|
|
|
'name' => 'Indian 1954 to WGS 84 (1)', |
661
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4239', |
662
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
663
|
|
|
'accuracy' => 21.0, |
664
|
|
|
], |
665
|
|
|
[ |
666
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1304', |
667
|
|
|
'name' => 'Indian 1975 to WGS 84 (2)', |
668
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4240', |
669
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
670
|
|
|
'accuracy' => 5.0, |
671
|
|
|
], |
672
|
|
|
[ |
673
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1812', |
674
|
|
|
'name' => 'Indian 1975 to WGS 84 (4)', |
675
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4240', |
676
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
677
|
|
|
'accuracy' => 3.0, |
678
|
|
|
], |
679
|
|
|
[ |
680
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18110', |
681
|
|
|
'name' => 'India zone 0', |
682
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4243', |
683
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24370', |
684
|
|
|
'accuracy' => 0, |
685
|
|
|
], |
686
|
|
|
[ |
687
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18111', |
688
|
|
|
'name' => 'India zone I', |
689
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4243', |
690
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24371', |
691
|
|
|
'accuracy' => 0, |
692
|
|
|
], |
693
|
|
|
[ |
694
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18112', |
695
|
|
|
'name' => 'India zone IIa', |
696
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4243', |
697
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24372', |
698
|
|
|
'accuracy' => 0, |
699
|
|
|
], |
700
|
|
|
[ |
701
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18114', |
702
|
|
|
'name' => 'India zone IIIa', |
703
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4243', |
704
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24373', |
705
|
|
|
'accuracy' => 0, |
706
|
|
|
], |
707
|
|
|
[ |
708
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18116', |
709
|
|
|
'name' => 'India zone IVa', |
710
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4243', |
711
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24374', |
712
|
|
|
'accuracy' => 0, |
713
|
|
|
], |
714
|
|
|
[ |
715
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18113', |
716
|
|
|
'name' => 'India zone IIb', |
717
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4243', |
718
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24382', |
719
|
|
|
'accuracy' => 0, |
720
|
|
|
], |
721
|
|
|
[ |
722
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1157', |
723
|
|
|
'name' => 'Kandawala to WGS 84 (1)', |
724
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4244', |
725
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
726
|
|
|
'accuracy' => 35.0, |
727
|
|
|
], |
728
|
|
|
[ |
729
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5231', |
730
|
|
|
'name' => 'Sri Lanka Grid', |
731
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4244', |
732
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5234', |
733
|
|
|
'accuracy' => 0, |
734
|
|
|
], |
735
|
|
|
[ |
736
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19920', |
737
|
|
|
'name' => 'Singapore Grid', |
738
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4245', |
739
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24500', |
740
|
|
|
'accuracy' => 0, |
741
|
|
|
], |
742
|
|
|
[ |
743
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1158', |
744
|
|
|
'name' => 'Kertau 1968 to WGS 84 (1)', |
745
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4245', |
746
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
747
|
|
|
'accuracy' => 15.0, |
748
|
|
|
], |
749
|
|
|
[ |
750
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4114', |
751
|
|
|
'name' => 'Johor Cassini Grid', |
752
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4245', |
753
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4390', |
754
|
|
|
'accuracy' => 0, |
755
|
|
|
], |
756
|
|
|
[ |
757
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4115', |
758
|
|
|
'name' => 'Sembilan and Melaka Cassini Grid', |
759
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4245', |
760
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4391', |
761
|
|
|
'accuracy' => 0, |
762
|
|
|
], |
763
|
|
|
[ |
764
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4116', |
765
|
|
|
'name' => 'Pahang Cassini Grid', |
766
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4245', |
767
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4392', |
768
|
|
|
'accuracy' => 0, |
769
|
|
|
], |
770
|
|
|
[ |
771
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4117', |
772
|
|
|
'name' => 'Selangor Cassini Grid', |
773
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4245', |
774
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4393', |
775
|
|
|
'accuracy' => 0, |
776
|
|
|
], |
777
|
|
|
[ |
778
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4177', |
779
|
|
|
'name' => 'Terengganu Cassini Grid', |
780
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4245', |
781
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4394', |
782
|
|
|
'accuracy' => 0, |
783
|
|
|
], |
784
|
|
|
[ |
785
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4305', |
786
|
|
|
'name' => 'Pinang Cassini Grid', |
787
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4245', |
788
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4395', |
789
|
|
|
'accuracy' => 0, |
790
|
|
|
], |
791
|
|
|
[ |
792
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4320', |
793
|
|
|
'name' => 'Kedah and Perlis Cassini Grid', |
794
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4245', |
795
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4396', |
796
|
|
|
'accuracy' => 0, |
797
|
|
|
], |
798
|
|
|
[ |
799
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4321', |
800
|
|
|
'name' => 'Perak Revised Cassini Grid', |
801
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4245', |
802
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4397', |
803
|
|
|
'accuracy' => 0, |
804
|
|
|
], |
805
|
|
|
[ |
806
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4323', |
807
|
|
|
'name' => 'Kelantan Cassini Grid', |
808
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4245', |
809
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4398', |
810
|
|
|
'accuracy' => 0, |
811
|
|
|
], |
812
|
|
|
[ |
813
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19906', |
814
|
|
|
'name' => 'Iraq zone', |
815
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4246', |
816
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::24600', |
817
|
|
|
'accuracy' => 0, |
818
|
|
|
], |
819
|
|
|
[ |
820
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1059', |
821
|
|
|
'name' => 'KOC to WGS 84 (1)', |
822
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4246', |
823
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
824
|
|
|
'accuracy' => 1.0, |
825
|
|
|
], |
826
|
|
|
[ |
827
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18171', |
828
|
|
|
'name' => 'Philippines zone I', |
829
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4253', |
830
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::25391', |
831
|
|
|
'accuracy' => 0, |
832
|
|
|
], |
833
|
|
|
[ |
834
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18172', |
835
|
|
|
'name' => 'Philippines zone II', |
836
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4253', |
837
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::25392', |
838
|
|
|
'accuracy' => 0, |
839
|
|
|
], |
840
|
|
|
[ |
841
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18173', |
842
|
|
|
'name' => 'Philippines zone III', |
843
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4253', |
844
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::25393', |
845
|
|
|
'accuracy' => 0, |
846
|
|
|
], |
847
|
|
|
[ |
848
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18174', |
849
|
|
|
'name' => 'Philippines zone IV', |
850
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4253', |
851
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::25394', |
852
|
|
|
'accuracy' => 0, |
853
|
|
|
], |
854
|
|
|
[ |
855
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18175', |
856
|
|
|
'name' => 'Philippines zone V', |
857
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4253', |
858
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::25395', |
859
|
|
|
'accuracy' => 0, |
860
|
|
|
], |
861
|
|
|
[ |
862
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1161', |
863
|
|
|
'name' => 'Luzon 1911 to WGS 84 (1)', |
864
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4253', |
865
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
866
|
|
|
'accuracy' => 17.0, |
867
|
|
|
], |
868
|
|
|
[ |
869
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1162', |
870
|
|
|
'name' => 'Luzon 1911 to WGS 84 (2)', |
871
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4253', |
872
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
873
|
|
|
'accuracy' => 44.0, |
874
|
|
|
], |
875
|
|
|
[ |
876
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1246', |
877
|
|
|
'name' => 'Herat North to WGS 84 (1)', |
878
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4255', |
879
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
880
|
|
|
'accuracy' => 999.0, |
881
|
|
|
], |
882
|
|
|
[ |
883
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19905', |
884
|
|
|
'name' => 'Netherlands East Indies Equatorial Zone', |
885
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4257', |
886
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3002', |
887
|
|
|
'accuracy' => 0, |
888
|
|
|
], |
889
|
|
|
[ |
890
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1837', |
891
|
|
|
'name' => 'Makassar to WGS 84 (1)', |
892
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4257', |
893
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
894
|
|
|
'accuracy' => 999.0, |
895
|
|
|
], |
896
|
|
|
[ |
897
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1190', |
898
|
|
|
'name' => 'Nahrwan 1967 to WGS 84 (2)', |
899
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4270', |
900
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
901
|
|
|
'accuracy' => 35.0, |
902
|
|
|
], |
903
|
|
|
[ |
904
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1191', |
905
|
|
|
'name' => 'Nahrwan 1967 to WGS 84 (3)', |
906
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4270', |
907
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
908
|
|
|
'accuracy' => 44.0, |
909
|
|
|
], |
910
|
|
|
[ |
911
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1531', |
912
|
|
|
'name' => 'Nahrwan 1967 to WGS 84 (4)', |
913
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4270', |
914
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
915
|
|
|
'accuracy' => 0.5, |
916
|
|
|
], |
917
|
|
|
[ |
918
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15953', |
919
|
|
|
'name' => 'Nahrwan 1967 to WGS 84 (10)', |
920
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4270', |
921
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
922
|
|
|
'accuracy' => 5.0, |
923
|
|
|
], |
924
|
|
|
[ |
925
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6999', |
926
|
|
|
'name' => 'Nahrwan 1967 to WGS 84 (12)', |
927
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4270', |
928
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
929
|
|
|
'accuracy' => 0.15, |
930
|
|
|
], |
931
|
|
|
[ |
932
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18201', |
933
|
|
|
'name' => 'Palestine Grid', |
934
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4281', |
935
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::28191', |
936
|
|
|
'accuracy' => 0, |
937
|
|
|
], |
938
|
|
|
[ |
939
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18202', |
940
|
|
|
'name' => 'Palestine Belt', |
941
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4281', |
942
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::28192', |
943
|
|
|
'accuracy' => 0, |
944
|
|
|
], |
945
|
|
|
[ |
946
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18203', |
947
|
|
|
'name' => 'Israeli CS', |
948
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4281', |
949
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::28193', |
950
|
|
|
'accuracy' => 0, |
951
|
|
|
], |
952
|
|
|
[ |
953
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1071', |
954
|
|
|
'name' => 'Palestine 1923 to Israel 1993 (1)', |
955
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4281', |
956
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4141', |
957
|
|
|
'accuracy' => 1.5, |
958
|
|
|
], |
959
|
|
|
[ |
960
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1074', |
961
|
|
|
'name' => 'Palestine 1923 to WGS 84 (1)', |
962
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4281', |
963
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
964
|
|
|
'accuracy' => 2.0, |
965
|
|
|
], |
966
|
|
|
[ |
967
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7141', |
968
|
|
|
'name' => 'Palestine Grid modified', |
969
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4281', |
970
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7142', |
971
|
|
|
'accuracy' => 0, |
972
|
|
|
], |
973
|
|
|
[ |
974
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19919', |
975
|
|
|
'name' => 'Qatar National Grid', |
976
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4285', |
977
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::28600', |
978
|
|
|
'accuracy' => 0, |
979
|
|
|
], |
980
|
|
|
[ |
981
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1563', |
982
|
|
|
'name' => 'Qatar 1974 to WGS 84 (3)', |
983
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4285', |
984
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
985
|
|
|
'accuracy' => 1.0, |
986
|
|
|
], |
987
|
|
|
[ |
988
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19953', |
989
|
|
|
'name' => 'Qatar Grid', |
990
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4286', |
991
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2099', |
992
|
|
|
'accuracy' => 0, |
993
|
|
|
], |
994
|
|
|
[ |
995
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19956', |
996
|
|
|
'name' => 'Rectified Skew Orthomorphic Borneo Grid (chain)', |
997
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4298', |
998
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29871', |
999
|
|
|
'accuracy' => 0, |
1000
|
|
|
], |
1001
|
|
|
[ |
1002
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19957', |
1003
|
|
|
'name' => 'Rectified Skew Orthomorphic Borneo Grid (foot)', |
1004
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4298', |
1005
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29872', |
1006
|
|
|
'accuracy' => 0, |
1007
|
|
|
], |
1008
|
|
|
[ |
1009
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19958', |
1010
|
|
|
'name' => 'Rectified Skew Orthomorphic Borneo Grid (metre)', |
1011
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4298', |
1012
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29873', |
1013
|
|
|
'accuracy' => 0, |
1014
|
|
|
], |
1015
|
|
|
[ |
1016
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19838', |
1017
|
|
|
'name' => 'Rectified Skew Orthomorphic Sarawak LSD (metre)', |
1018
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4298', |
1019
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::29874', |
1020
|
|
|
'accuracy' => 0, |
1021
|
|
|
], |
1022
|
|
|
[ |
1023
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5878', |
1024
|
|
|
'name' => 'Timbalai 1948 to GDBD2009 (1)', |
1025
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4298', |
1026
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5246', |
1027
|
|
|
'accuracy' => 1.0, |
1028
|
|
|
], |
1029
|
|
|
[ |
1030
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17801', |
1031
|
|
|
'name' => 'Japan Plane Rectangular CS zone I', |
1032
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1033
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30161', |
1034
|
|
|
'accuracy' => 0, |
1035
|
|
|
], |
1036
|
|
|
[ |
1037
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17802', |
1038
|
|
|
'name' => 'Japan Plane Rectangular CS zone II', |
1039
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1040
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30162', |
1041
|
|
|
'accuracy' => 0, |
1042
|
|
|
], |
1043
|
|
|
[ |
1044
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17803', |
1045
|
|
|
'name' => 'Japan Plane Rectangular CS zone III', |
1046
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1047
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30163', |
1048
|
|
|
'accuracy' => 0, |
1049
|
|
|
], |
1050
|
|
|
[ |
1051
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17804', |
1052
|
|
|
'name' => 'Japan Plane Rectangular CS zone IV', |
1053
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1054
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30164', |
1055
|
|
|
'accuracy' => 0, |
1056
|
|
|
], |
1057
|
|
|
[ |
1058
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17805', |
1059
|
|
|
'name' => 'Japan Plane Rectangular CS zone V', |
1060
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1061
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30165', |
1062
|
|
|
'accuracy' => 0, |
1063
|
|
|
], |
1064
|
|
|
[ |
1065
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17806', |
1066
|
|
|
'name' => 'Japan Plane Rectangular CS zone VI', |
1067
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1068
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30166', |
1069
|
|
|
'accuracy' => 0, |
1070
|
|
|
], |
1071
|
|
|
[ |
1072
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17807', |
1073
|
|
|
'name' => 'Japan Plane Rectangular CS zone VII', |
1074
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1075
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30167', |
1076
|
|
|
'accuracy' => 0, |
1077
|
|
|
], |
1078
|
|
|
[ |
1079
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17808', |
1080
|
|
|
'name' => 'Japan Plane Rectangular CS zone VIII', |
1081
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1082
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30168', |
1083
|
|
|
'accuracy' => 0, |
1084
|
|
|
], |
1085
|
|
|
[ |
1086
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17809', |
1087
|
|
|
'name' => 'Japan Plane Rectangular CS zone IX', |
1088
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1089
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30169', |
1090
|
|
|
'accuracy' => 0, |
1091
|
|
|
], |
1092
|
|
|
[ |
1093
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17810', |
1094
|
|
|
'name' => 'Japan Plane Rectangular CS zone X', |
1095
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1096
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30170', |
1097
|
|
|
'accuracy' => 0, |
1098
|
|
|
], |
1099
|
|
|
[ |
1100
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17811', |
1101
|
|
|
'name' => 'Japan Plane Rectangular CS zone XI', |
1102
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1103
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30171', |
1104
|
|
|
'accuracy' => 0, |
1105
|
|
|
], |
1106
|
|
|
[ |
1107
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17812', |
1108
|
|
|
'name' => 'Japan Plane Rectangular CS zone XII', |
1109
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1110
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30172', |
1111
|
|
|
'accuracy' => 0, |
1112
|
|
|
], |
1113
|
|
|
[ |
1114
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17813', |
1115
|
|
|
'name' => 'Japan Plane Rectangular CS zone XIII', |
1116
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1117
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30173', |
1118
|
|
|
'accuracy' => 0, |
1119
|
|
|
], |
1120
|
|
|
[ |
1121
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17814', |
1122
|
|
|
'name' => 'Japan Plane Rectangular CS zone XIV', |
1123
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1124
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30174', |
1125
|
|
|
'accuracy' => 0, |
1126
|
|
|
], |
1127
|
|
|
[ |
1128
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17815', |
1129
|
|
|
'name' => 'Japan Plane Rectangular CS zone XV', |
1130
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1131
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30175', |
1132
|
|
|
'accuracy' => 0, |
1133
|
|
|
], |
1134
|
|
|
[ |
1135
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17816', |
1136
|
|
|
'name' => 'Japan Plane Rectangular CS zone XVI', |
1137
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1138
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30176', |
1139
|
|
|
'accuracy' => 0, |
1140
|
|
|
], |
1141
|
|
|
[ |
1142
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17817', |
1143
|
|
|
'name' => 'Japan Plane Rectangular CS zone XVII', |
1144
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1145
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30177', |
1146
|
|
|
'accuracy' => 0, |
1147
|
|
|
], |
1148
|
|
|
[ |
1149
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17818', |
1150
|
|
|
'name' => 'Japan Plane Rectangular CS zone XVIII', |
1151
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1152
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30178', |
1153
|
|
|
'accuracy' => 0, |
1154
|
|
|
], |
1155
|
|
|
[ |
1156
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17819', |
1157
|
|
|
'name' => 'Japan Plane Rectangular CS zone XIX', |
1158
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1159
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::30179', |
1160
|
|
|
'accuracy' => 0, |
1161
|
|
|
], |
1162
|
|
|
[ |
1163
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1231', |
1164
|
|
|
'name' => 'Tokyo to WGS 84 (2)', |
1165
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1166
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1167
|
|
|
'accuracy' => 13.0, |
1168
|
|
|
], |
1169
|
|
|
[ |
1170
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1233', |
1171
|
|
|
'name' => 'Tokyo to WGS 84 (4)', |
1172
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1173
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1174
|
|
|
'accuracy' => 29.0, |
1175
|
|
|
], |
1176
|
|
|
[ |
1177
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1305', |
1178
|
|
|
'name' => 'Tokyo to WGS 84 (5)', |
1179
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1180
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1181
|
|
|
'accuracy' => 4.0, |
1182
|
|
|
], |
1183
|
|
|
[ |
1184
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15483', |
1185
|
|
|
'name' => 'Tokyo to JGD2000 (1)', |
1186
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1187
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1188
|
|
|
'accuracy' => 9.0, |
1189
|
|
|
], |
1190
|
|
|
[ |
1191
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6712', |
1192
|
|
|
'name' => 'Tokyo to JGD2000 (2)', |
1193
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1194
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1195
|
|
|
'accuracy' => 0.2, |
1196
|
|
|
], |
1197
|
|
|
[ |
1198
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6740', |
1199
|
|
|
'name' => 'Tokyo to JGD2011 (2)', |
1200
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4301', |
1201
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6668', |
1202
|
|
|
'accuracy' => 0.2, |
1203
|
|
|
], |
1204
|
|
|
[ |
1205
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1060', |
1206
|
|
|
'name' => 'NGN to WGS 84 (1)', |
1207
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4318', |
1208
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1209
|
|
|
'accuracy' => 1.0, |
1210
|
|
|
], |
1211
|
|
|
[ |
1212
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19997', |
1213
|
|
|
'name' => 'Kuwait Transverse Mercator', |
1214
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4319', |
1215
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::31901', |
1216
|
|
|
'accuracy' => 0, |
1217
|
|
|
], |
1218
|
|
|
[ |
1219
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1062', |
1220
|
|
|
'name' => 'Kudams to WGS 84 (2)', |
1221
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4319', |
1222
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1223
|
|
|
'accuracy' => 1.0, |
1224
|
|
|
], |
1225
|
|
|
[ |
1226
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16506', |
1227
|
|
|
'name' => 'TM 106 NE', |
1228
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4324', |
1229
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2094', |
1230
|
|
|
'accuracy' => 0, |
1231
|
|
|
], |
1232
|
|
|
[ |
1233
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19863', |
1234
|
|
|
'name' => 'South China Sea Lambert', |
1235
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4324', |
1236
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3415', |
1237
|
|
|
'accuracy' => 0, |
1238
|
|
|
], |
1239
|
|
|
[ |
1240
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10593', |
1241
|
|
|
'name' => 'GLANCE projection - Asia', |
1242
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1243
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10594', |
1244
|
|
|
'accuracy' => 0, |
1245
|
|
|
], |
1246
|
|
|
[ |
1247
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16716', |
1248
|
|
|
'name' => 'TM 116 SE', |
1249
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1250
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2309', |
1251
|
|
|
'accuracy' => 0, |
1252
|
|
|
], |
1253
|
|
|
[ |
1254
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16732', |
1255
|
|
|
'name' => 'TM 132 SE', |
1256
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1257
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2310', |
1258
|
|
|
'accuracy' => 0, |
1259
|
|
|
], |
1260
|
|
|
[ |
1261
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19839', |
1262
|
|
|
'name' => 'Dubai Local Transverse Mercator', |
1263
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1264
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3997', |
1265
|
|
|
'accuracy' => 0, |
1266
|
|
|
], |
1267
|
|
|
[ |
1268
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9189', |
1269
|
|
|
'name' => 'WGS 84 to IG05/12 Intermediate CRS', |
1270
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1271
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6990', |
1272
|
|
|
'accuracy' => 0.1, |
1273
|
|
|
], |
1274
|
|
|
[ |
1275
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7722', |
1276
|
|
|
'name' => 'Survey of India Lambert', |
1277
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1278
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7755', |
1279
|
|
|
'accuracy' => 0, |
1280
|
|
|
], |
1281
|
|
|
[ |
1282
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7723', |
1283
|
|
|
'name' => 'Andhra Pradesh NSF LCC', |
1284
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1285
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7756', |
1286
|
|
|
'accuracy' => 0, |
1287
|
|
|
], |
1288
|
|
|
[ |
1289
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7724', |
1290
|
|
|
'name' => 'Arunachal Pradesh NSF LCC', |
1291
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1292
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7757', |
1293
|
|
|
'accuracy' => 0, |
1294
|
|
|
], |
1295
|
|
|
[ |
1296
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7725', |
1297
|
|
|
'name' => 'Assam NSF LCC', |
1298
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1299
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7758', |
1300
|
|
|
'accuracy' => 0, |
1301
|
|
|
], |
1302
|
|
|
[ |
1303
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7726', |
1304
|
|
|
'name' => 'Bihar NSF LCC', |
1305
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1306
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7759', |
1307
|
|
|
'accuracy' => 0, |
1308
|
|
|
], |
1309
|
|
|
[ |
1310
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7727', |
1311
|
|
|
'name' => 'Delhi NSF LCC', |
1312
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1313
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7760', |
1314
|
|
|
'accuracy' => 0, |
1315
|
|
|
], |
1316
|
|
|
[ |
1317
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7728', |
1318
|
|
|
'name' => 'Gujarat NSF LCC', |
1319
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1320
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7761', |
1321
|
|
|
'accuracy' => 0, |
1322
|
|
|
], |
1323
|
|
|
[ |
1324
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7729', |
1325
|
|
|
'name' => 'Haryana NSF LCC', |
1326
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1327
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7762', |
1328
|
|
|
'accuracy' => 0, |
1329
|
|
|
], |
1330
|
|
|
[ |
1331
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7730', |
1332
|
|
|
'name' => 'Himachal Pradesh NSF LCC', |
1333
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1334
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7763', |
1335
|
|
|
'accuracy' => 0, |
1336
|
|
|
], |
1337
|
|
|
[ |
1338
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7731', |
1339
|
|
|
'name' => 'Jammu and Kashmir NSF LCC', |
1340
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1341
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7764', |
1342
|
|
|
'accuracy' => 0, |
1343
|
|
|
], |
1344
|
|
|
[ |
1345
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7732', |
1346
|
|
|
'name' => 'Jharkhand NSF LCC', |
1347
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1348
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7765', |
1349
|
|
|
'accuracy' => 0, |
1350
|
|
|
], |
1351
|
|
|
[ |
1352
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7733', |
1353
|
|
|
'name' => 'Madhya Pradesh NSF LCC', |
1354
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1355
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7766', |
1356
|
|
|
'accuracy' => 0, |
1357
|
|
|
], |
1358
|
|
|
[ |
1359
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7734', |
1360
|
|
|
'name' => 'Maharashtra NSF LCC', |
1361
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1362
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7767', |
1363
|
|
|
'accuracy' => 0, |
1364
|
|
|
], |
1365
|
|
|
[ |
1366
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7735', |
1367
|
|
|
'name' => 'Manipur NSF LCC', |
1368
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1369
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7768', |
1370
|
|
|
'accuracy' => 0, |
1371
|
|
|
], |
1372
|
|
|
[ |
1373
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7736', |
1374
|
|
|
'name' => 'Meghalaya NSF LCC', |
1375
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1376
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7769', |
1377
|
|
|
'accuracy' => 0, |
1378
|
|
|
], |
1379
|
|
|
[ |
1380
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7737', |
1381
|
|
|
'name' => 'Nagaland NSF LCC', |
1382
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1383
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7770', |
1384
|
|
|
'accuracy' => 0, |
1385
|
|
|
], |
1386
|
|
|
[ |
1387
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7738', |
1388
|
|
|
'name' => 'Northeast India NSF LCC', |
1389
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1390
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7771', |
1391
|
|
|
'accuracy' => 0, |
1392
|
|
|
], |
1393
|
|
|
[ |
1394
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7739', |
1395
|
|
|
'name' => 'Orissa NSF LCC', |
1396
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1397
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7772', |
1398
|
|
|
'accuracy' => 0, |
1399
|
|
|
], |
1400
|
|
|
[ |
1401
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7740', |
1402
|
|
|
'name' => 'Punjab NSF LCC', |
1403
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1404
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7773', |
1405
|
|
|
'accuracy' => 0, |
1406
|
|
|
], |
1407
|
|
|
[ |
1408
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7741', |
1409
|
|
|
'name' => 'Rajasthan NSF LCC', |
1410
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1411
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7774', |
1412
|
|
|
'accuracy' => 0, |
1413
|
|
|
], |
1414
|
|
|
[ |
1415
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7742', |
1416
|
|
|
'name' => 'Uttar Pradesh NSF LCC', |
1417
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1418
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7775', |
1419
|
|
|
'accuracy' => 0, |
1420
|
|
|
], |
1421
|
|
|
[ |
1422
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7743', |
1423
|
|
|
'name' => 'Uttaranchal NSF LCC', |
1424
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1425
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7776', |
1426
|
|
|
'accuracy' => 0, |
1427
|
|
|
], |
1428
|
|
|
[ |
1429
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7744', |
1430
|
|
|
'name' => 'Andaman and Nicobar NSF TM', |
1431
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1432
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7777', |
1433
|
|
|
'accuracy' => 0, |
1434
|
|
|
], |
1435
|
|
|
[ |
1436
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7745', |
1437
|
|
|
'name' => 'Chhattisgarh NSF TM', |
1438
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1439
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7778', |
1440
|
|
|
'accuracy' => 0, |
1441
|
|
|
], |
1442
|
|
|
[ |
1443
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7746', |
1444
|
|
|
'name' => 'Goa NSF TM', |
1445
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1446
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7779', |
1447
|
|
|
'accuracy' => 0, |
1448
|
|
|
], |
1449
|
|
|
[ |
1450
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7747', |
1451
|
|
|
'name' => 'Karnataka NSF TM', |
1452
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1453
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7780', |
1454
|
|
|
'accuracy' => 0, |
1455
|
|
|
], |
1456
|
|
|
[ |
1457
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7748', |
1458
|
|
|
'name' => 'Kerala NSF TM', |
1459
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1460
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7781', |
1461
|
|
|
'accuracy' => 0, |
1462
|
|
|
], |
1463
|
|
|
[ |
1464
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7749', |
1465
|
|
|
'name' => 'Lakshadweep NSF TM', |
1466
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1467
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7782', |
1468
|
|
|
'accuracy' => 0, |
1469
|
|
|
], |
1470
|
|
|
[ |
1471
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7750', |
1472
|
|
|
'name' => 'Mizoram NSF TM', |
1473
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1474
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7783', |
1475
|
|
|
'accuracy' => 0, |
1476
|
|
|
], |
1477
|
|
|
[ |
1478
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7751', |
1479
|
|
|
'name' => 'Sikkim NSF TM', |
1480
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1481
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7784', |
1482
|
|
|
'accuracy' => 0, |
1483
|
|
|
], |
1484
|
|
|
[ |
1485
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7752', |
1486
|
|
|
'name' => 'Tamil Nadu NSF TM', |
1487
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1488
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7785', |
1489
|
|
|
'accuracy' => 0, |
1490
|
|
|
], |
1491
|
|
|
[ |
1492
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7753', |
1493
|
|
|
'name' => 'Tripura NSF TM', |
1494
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1495
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7786', |
1496
|
|
|
'accuracy' => 0, |
1497
|
|
|
], |
1498
|
|
|
[ |
1499
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7754', |
1500
|
|
|
'name' => 'West Bengal NSF TM', |
1501
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1502
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7787', |
1503
|
|
|
'accuracy' => 0, |
1504
|
|
|
], |
1505
|
|
|
[ |
1506
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16490', |
1507
|
|
|
'name' => 'TM 90 NE', |
1508
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1509
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9680', |
1510
|
|
|
'accuracy' => 0, |
1511
|
|
|
], |
1512
|
|
|
[ |
1513
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19978', |
1514
|
|
|
'name' => 'Hong Kong 1980 Grid', |
1515
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4611', |
1516
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2326', |
1517
|
|
|
'accuracy' => 0, |
1518
|
|
|
], |
1519
|
|
|
[ |
1520
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9913', |
1521
|
|
|
'name' => 'Hong Kong 1980 to Hong Kong Geodetic CS (1)', |
1522
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4611', |
1523
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8427', |
1524
|
|
|
'accuracy' => 1.0, |
1525
|
|
|
], |
1526
|
|
|
[ |
1527
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17801', |
1528
|
|
|
'name' => 'Japan Plane Rectangular CS zone I', |
1529
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1530
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2443', |
1531
|
|
|
'accuracy' => 0, |
1532
|
|
|
], |
1533
|
|
|
[ |
1534
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17802', |
1535
|
|
|
'name' => 'Japan Plane Rectangular CS zone II', |
1536
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1537
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2444', |
1538
|
|
|
'accuracy' => 0, |
1539
|
|
|
], |
1540
|
|
|
[ |
1541
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17803', |
1542
|
|
|
'name' => 'Japan Plane Rectangular CS zone III', |
1543
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1544
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2445', |
1545
|
|
|
'accuracy' => 0, |
1546
|
|
|
], |
1547
|
|
|
[ |
1548
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17804', |
1549
|
|
|
'name' => 'Japan Plane Rectangular CS zone IV', |
1550
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1551
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2446', |
1552
|
|
|
'accuracy' => 0, |
1553
|
|
|
], |
1554
|
|
|
[ |
1555
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17805', |
1556
|
|
|
'name' => 'Japan Plane Rectangular CS zone V', |
1557
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1558
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2447', |
1559
|
|
|
'accuracy' => 0, |
1560
|
|
|
], |
1561
|
|
|
[ |
1562
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17806', |
1563
|
|
|
'name' => 'Japan Plane Rectangular CS zone VI', |
1564
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1565
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2448', |
1566
|
|
|
'accuracy' => 0, |
1567
|
|
|
], |
1568
|
|
|
[ |
1569
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17807', |
1570
|
|
|
'name' => 'Japan Plane Rectangular CS zone VII', |
1571
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1572
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2449', |
1573
|
|
|
'accuracy' => 0, |
1574
|
|
|
], |
1575
|
|
|
[ |
1576
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17808', |
1577
|
|
|
'name' => 'Japan Plane Rectangular CS zone VIII', |
1578
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1579
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2450', |
1580
|
|
|
'accuracy' => 0, |
1581
|
|
|
], |
1582
|
|
|
[ |
1583
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17809', |
1584
|
|
|
'name' => 'Japan Plane Rectangular CS zone IX', |
1585
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1586
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2451', |
1587
|
|
|
'accuracy' => 0, |
1588
|
|
|
], |
1589
|
|
|
[ |
1590
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17810', |
1591
|
|
|
'name' => 'Japan Plane Rectangular CS zone X', |
1592
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1593
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2452', |
1594
|
|
|
'accuracy' => 0, |
1595
|
|
|
], |
1596
|
|
|
[ |
1597
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17811', |
1598
|
|
|
'name' => 'Japan Plane Rectangular CS zone XI', |
1599
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1600
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2453', |
1601
|
|
|
'accuracy' => 0, |
1602
|
|
|
], |
1603
|
|
|
[ |
1604
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17812', |
1605
|
|
|
'name' => 'Japan Plane Rectangular CS zone XII', |
1606
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1607
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2454', |
1608
|
|
|
'accuracy' => 0, |
1609
|
|
|
], |
1610
|
|
|
[ |
1611
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17813', |
1612
|
|
|
'name' => 'Japan Plane Rectangular CS zone XIII', |
1613
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1614
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2455', |
1615
|
|
|
'accuracy' => 0, |
1616
|
|
|
], |
1617
|
|
|
[ |
1618
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17814', |
1619
|
|
|
'name' => 'Japan Plane Rectangular CS zone XIV', |
1620
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1621
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2456', |
1622
|
|
|
'accuracy' => 0, |
1623
|
|
|
], |
1624
|
|
|
[ |
1625
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17815', |
1626
|
|
|
'name' => 'Japan Plane Rectangular CS zone XV', |
1627
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1628
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2457', |
1629
|
|
|
'accuracy' => 0, |
1630
|
|
|
], |
1631
|
|
|
[ |
1632
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17816', |
1633
|
|
|
'name' => 'Japan Plane Rectangular CS zone XVI', |
1634
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1635
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2458', |
1636
|
|
|
'accuracy' => 0, |
1637
|
|
|
], |
1638
|
|
|
[ |
1639
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17817', |
1640
|
|
|
'name' => 'Japan Plane Rectangular CS zone XVII', |
1641
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1642
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2459', |
1643
|
|
|
'accuracy' => 0, |
1644
|
|
|
], |
1645
|
|
|
[ |
1646
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17818', |
1647
|
|
|
'name' => 'Japan Plane Rectangular CS zone XVIII', |
1648
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1649
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2460', |
1650
|
|
|
'accuracy' => 0, |
1651
|
|
|
], |
1652
|
|
|
[ |
1653
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17819', |
1654
|
|
|
'name' => 'Japan Plane Rectangular CS zone XIX', |
1655
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1656
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2461', |
1657
|
|
|
'accuracy' => 0, |
1658
|
|
|
], |
1659
|
|
|
[ |
1660
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1826', |
1661
|
|
|
'name' => 'JGD2000 to WGS 84 (1)', |
1662
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1663
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1664
|
|
|
'accuracy' => 1.0, |
1665
|
|
|
], |
1666
|
|
|
[ |
1667
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9896', |
1668
|
|
|
'name' => 'JGD2000 to WGS 84 (2)', |
1669
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1670
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1671
|
|
|
'accuracy' => 1.0, |
1672
|
|
|
], |
1673
|
|
|
[ |
1674
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6698', |
1675
|
|
|
'name' => 'JGD2000 to JGD2011 (2)', |
1676
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1677
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6668', |
1678
|
|
|
'accuracy' => 1.0, |
1679
|
|
|
], |
1680
|
|
|
[ |
1681
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6713', |
1682
|
|
|
'name' => 'JGD2000 to JGD2011 (1)', |
1683
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4612', |
1684
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6668', |
1685
|
|
|
'accuracy' => 0.2, |
1686
|
|
|
], |
1687
|
|
|
[ |
1688
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19905', |
1689
|
|
|
'name' => 'Netherlands East Indies Equatorial Zone', |
1690
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4613', |
1691
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3000', |
1692
|
|
|
'accuracy' => 0, |
1693
|
|
|
], |
1694
|
|
|
[ |
1695
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1897', |
1696
|
|
|
'name' => 'Segara to WGS 84 (1)', |
1697
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4613', |
1698
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1699
|
|
|
'accuracy' => 999.0, |
1700
|
|
|
], |
1701
|
|
|
[ |
1702
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1898', |
1703
|
|
|
'name' => 'Segara to WGS 84 (2)', |
1704
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4613', |
1705
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1706
|
|
|
'accuracy' => 5.0, |
1707
|
|
|
], |
1708
|
|
|
[ |
1709
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1899', |
1710
|
|
|
'name' => 'Segara to WGS 84 (3)', |
1711
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4613', |
1712
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1713
|
|
|
'accuracy' => 10.0, |
1714
|
|
|
], |
1715
|
|
|
[ |
1716
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19919', |
1717
|
|
|
'name' => 'Qatar National Grid', |
1718
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4614', |
1719
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2932', |
1720
|
|
|
'accuracy' => 0, |
1721
|
|
|
], |
1722
|
|
|
[ |
1723
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1840', |
1724
|
|
|
'name' => 'QND95 to WGS 84 (1)', |
1725
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4614', |
1726
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1727
|
|
|
'accuracy' => 0.0, |
1728
|
|
|
], |
1729
|
|
|
[ |
1730
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1993', |
1731
|
|
|
'name' => 'IKBD-92 to WGS 84 (4)', |
1732
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4667', |
1733
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1734
|
|
|
'accuracy' => 1.0, |
1735
|
|
|
], |
1736
|
|
|
[ |
1737
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1063', |
1738
|
|
|
'name' => 'Vientiane 1982 to Lao 1997 (1)', |
1739
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4676', |
1740
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4678', |
1741
|
|
|
'accuracy' => 2.0, |
1742
|
|
|
], |
1743
|
|
|
[ |
1744
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1064', |
1745
|
|
|
'name' => 'Lao 1993 to Lao 1997 (1)', |
1746
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4677', |
1747
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4678', |
1748
|
|
|
'accuracy' => 0.15, |
1749
|
|
|
], |
1750
|
|
|
[ |
1751
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1065', |
1752
|
|
|
'name' => 'Lao 1997 to WGS 84 (1)', |
1753
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4678', |
1754
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1755
|
|
|
'accuracy' => 5.0, |
1756
|
|
|
], |
1757
|
|
|
[ |
1758
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::16490', |
1759
|
|
|
'name' => 'TM 90 NE', |
1760
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4682', |
1761
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3106', |
1762
|
|
|
'accuracy' => 0, |
1763
|
|
|
], |
1764
|
|
|
[ |
1765
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9679', |
1766
|
|
|
'name' => 'Gulshan 303 to WGS 84 (2)', |
1767
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4682', |
1768
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1769
|
|
|
'accuracy' => 1.0, |
1770
|
|
|
], |
1771
|
|
|
[ |
1772
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9677', |
1773
|
|
|
'name' => 'Bangladesh Transverse Mercator', |
1774
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4682', |
1775
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9678', |
1776
|
|
|
'accuracy' => 0, |
1777
|
|
|
], |
1778
|
|
|
[ |
1779
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18171', |
1780
|
|
|
'name' => 'Philippines zone I', |
1781
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4683', |
1782
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3121', |
1783
|
|
|
'accuracy' => 0, |
1784
|
|
|
], |
1785
|
|
|
[ |
1786
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18172', |
1787
|
|
|
'name' => 'Philippines zone II', |
1788
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4683', |
1789
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3122', |
1790
|
|
|
'accuracy' => 0, |
1791
|
|
|
], |
1792
|
|
|
[ |
1793
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18173', |
1794
|
|
|
'name' => 'Philippines zone III', |
1795
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4683', |
1796
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3123', |
1797
|
|
|
'accuracy' => 0, |
1798
|
|
|
], |
1799
|
|
|
[ |
1800
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18174', |
1801
|
|
|
'name' => 'Philippines zone IV', |
1802
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4683', |
1803
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3124', |
1804
|
|
|
'accuracy' => 0, |
1805
|
|
|
], |
1806
|
|
|
[ |
1807
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18175', |
1808
|
|
|
'name' => 'Philippines zone V', |
1809
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4683', |
1810
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3125', |
1811
|
|
|
'accuracy' => 0, |
1812
|
|
|
], |
1813
|
|
|
[ |
1814
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15708', |
1815
|
|
|
'name' => 'PRS92 to WGS 84 (1)', |
1816
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4683', |
1817
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1818
|
|
|
'accuracy' => 0.05, |
1819
|
|
|
], |
1820
|
|
|
[ |
1821
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15713', |
1822
|
|
|
'name' => 'Gan 1970 to WGS 84 (1)', |
1823
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4684', |
1824
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1825
|
|
|
'accuracy' => 44.0, |
1826
|
|
|
], |
1827
|
|
|
[ |
1828
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15746', |
1829
|
|
|
'name' => 'Nakhl-e Ghanem to WGS 84 (6)', |
1830
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4693', |
1831
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1832
|
|
|
'accuracy' => 0.2, |
1833
|
|
|
], |
1834
|
|
|
[ |
1835
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15796', |
1836
|
|
|
'name' => 'Iwo Jima 1945 to WGS 84 (1)', |
1837
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4709', |
1838
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1839
|
|
|
'accuracy' => 44.0, |
1840
|
|
|
], |
1841
|
|
|
[ |
1842
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15799', |
1843
|
|
|
'name' => 'Marcus Island 1952 to WGS 84 (1)', |
1844
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4711', |
1845
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1846
|
|
|
'accuracy' => 44.0, |
1847
|
|
|
], |
1848
|
|
|
[ |
1849
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15808', |
1850
|
|
|
'name' => 'Diego Garcia 1969 to WGS 84 (1)', |
1851
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4724', |
1852
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1853
|
|
|
'accuracy' => 44.0, |
1854
|
|
|
], |
1855
|
|
|
[ |
1856
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15831', |
1857
|
|
|
'name' => 'KGD2002 to WGS 84 (1)', |
1858
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4737', |
1859
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1860
|
|
|
'accuracy' => 1.0, |
1861
|
|
|
], |
1862
|
|
|
[ |
1863
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5100', |
1864
|
|
|
'name' => 'Korea Unified Belt', |
1865
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4737', |
1866
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5179', |
1867
|
|
|
'accuracy' => 0, |
1868
|
|
|
], |
1869
|
|
|
[ |
1870
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18253', |
1871
|
|
|
'name' => 'Korea West Belt', |
1872
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4737', |
1873
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5180', |
1874
|
|
|
'accuracy' => 0, |
1875
|
|
|
], |
1876
|
|
|
[ |
1877
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18252', |
1878
|
|
|
'name' => 'Korea Central Belt', |
1879
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4737', |
1880
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5181', |
1881
|
|
|
'accuracy' => 0, |
1882
|
|
|
], |
1883
|
|
|
[ |
1884
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5131', |
1885
|
|
|
'name' => 'Korea Central Belt Jeju', |
1886
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4737', |
1887
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5182', |
1888
|
|
|
'accuracy' => 0, |
1889
|
|
|
], |
1890
|
|
|
[ |
1891
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18251', |
1892
|
|
|
'name' => 'Korea East Belt', |
1893
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4737', |
1894
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5183', |
1895
|
|
|
'accuracy' => 0, |
1896
|
|
|
], |
1897
|
|
|
[ |
1898
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5049', |
1899
|
|
|
'name' => 'Korea East Sea Belt', |
1900
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4737', |
1901
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5184', |
1902
|
|
|
'accuracy' => 0, |
1903
|
|
|
], |
1904
|
|
|
[ |
1905
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5101', |
1906
|
|
|
'name' => 'Korea West Belt 2010', |
1907
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4737', |
1908
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5185', |
1909
|
|
|
'accuracy' => 0, |
1910
|
|
|
], |
1911
|
|
|
[ |
1912
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5102', |
1913
|
|
|
'name' => 'Korea Central Belt 2010', |
1914
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4737', |
1915
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5186', |
1916
|
|
|
'accuracy' => 0, |
1917
|
|
|
], |
1918
|
|
|
[ |
1919
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5103', |
1920
|
|
|
'name' => 'Korea East Belt 2010', |
1921
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4737', |
1922
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5187', |
1923
|
|
|
'accuracy' => 0, |
1924
|
|
|
], |
1925
|
|
|
[ |
1926
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5104', |
1927
|
|
|
'name' => 'Korea East Sea Belt 2010', |
1928
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4737', |
1929
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5188', |
1930
|
|
|
'accuracy' => 0, |
1931
|
|
|
], |
1932
|
|
|
[ |
1933
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19896', |
1934
|
|
|
'name' => 'Hong Kong 1963 Grid', |
1935
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4738', |
1936
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3407', |
1937
|
|
|
'accuracy' => 0, |
1938
|
|
|
], |
1939
|
|
|
[ |
1940
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15842', |
1941
|
|
|
'name' => 'Hong Kong 1963(67) to WGS 84 (1)', |
1942
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4739', |
1943
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1944
|
|
|
'accuracy' => 1.0, |
1945
|
|
|
], |
1946
|
|
|
[ |
1947
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19895', |
1948
|
|
|
'name' => 'Peninsular RSO', |
1949
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4742', |
1950
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3375', |
1951
|
|
|
'accuracy' => 0, |
1952
|
|
|
], |
1953
|
|
|
[ |
1954
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19894', |
1955
|
|
|
'name' => 'Borneo RSO', |
1956
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4742', |
1957
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3376', |
1958
|
|
|
'accuracy' => 0, |
1959
|
|
|
], |
1960
|
|
|
[ |
1961
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19893', |
1962
|
|
|
'name' => 'Johor Grid', |
1963
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4742', |
1964
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3377', |
1965
|
|
|
'accuracy' => 0, |
1966
|
|
|
], |
1967
|
|
|
[ |
1968
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19892', |
1969
|
|
|
'name' => 'Sembilan and Melaka Grid', |
1970
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4742', |
1971
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3378', |
1972
|
|
|
'accuracy' => 0, |
1973
|
|
|
], |
1974
|
|
|
[ |
1975
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19891', |
1976
|
|
|
'name' => 'Pahang Grid', |
1977
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4742', |
1978
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3379', |
1979
|
|
|
'accuracy' => 0, |
1980
|
|
|
], |
1981
|
|
|
[ |
1982
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19890', |
1983
|
|
|
'name' => 'Selangor Grid', |
1984
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4742', |
1985
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3380', |
1986
|
|
|
'accuracy' => 0, |
1987
|
|
|
], |
1988
|
|
|
[ |
1989
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19889', |
1990
|
|
|
'name' => 'Terengganu Grid', |
1991
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4742', |
1992
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3381', |
1993
|
|
|
'accuracy' => 0, |
1994
|
|
|
], |
1995
|
|
|
[ |
1996
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19888', |
1997
|
|
|
'name' => 'Pinang Grid', |
1998
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4742', |
1999
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3382', |
2000
|
|
|
'accuracy' => 0, |
2001
|
|
|
], |
2002
|
|
|
[ |
2003
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19887', |
2004
|
|
|
'name' => 'Kedah and Perlis Grid', |
2005
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4742', |
2006
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3383', |
2007
|
|
|
'accuracy' => 0, |
2008
|
|
|
], |
2009
|
|
|
[ |
2010
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19886', |
2011
|
|
|
'name' => 'Perak Grid', |
2012
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4742', |
2013
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3384', |
2014
|
|
|
'accuracy' => 0, |
2015
|
|
|
], |
2016
|
|
|
[ |
2017
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19885', |
2018
|
|
|
'name' => 'Kelantan Grid', |
2019
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4742', |
2020
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3385', |
2021
|
|
|
'accuracy' => 0, |
2022
|
|
|
], |
2023
|
|
|
[ |
2024
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10543', |
2025
|
|
|
'name' => 'GDM2000 to WGS 84 (1)', |
2026
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4742', |
2027
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2028
|
|
|
'accuracy' => 1.0, |
2029
|
|
|
], |
2030
|
|
|
[ |
2031
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5077', |
2032
|
|
|
'name' => 'Karbala 1979 to IGRS (1)', |
2033
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4743', |
2034
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3889', |
2035
|
|
|
'accuracy' => 0.3, |
2036
|
|
|
], |
2037
|
|
|
[ |
2038
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19907', |
2039
|
|
|
'name' => 'Iraq National Grid', |
2040
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4743', |
2041
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6646', |
2042
|
|
|
'accuracy' => 0, |
2043
|
|
|
], |
2044
|
|
|
[ |
2045
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19906', |
2046
|
|
|
'name' => 'Iraq zone', |
2047
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4744', |
2048
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3394', |
2049
|
|
|
'accuracy' => 0, |
2050
|
|
|
], |
2051
|
|
|
[ |
2052
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7033', |
2053
|
|
|
'name' => 'Nahrwan 1934 to WGS 84 (6)', |
2054
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4744', |
2055
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2056
|
|
|
'accuracy' => 30.0, |
2057
|
|
|
], |
2058
|
|
|
[ |
2059
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19871', |
2060
|
|
|
'name' => 'Rectified Skew Orthomorphic Malaya Grid (chain)', |
2061
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4751', |
2062
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3167', |
2063
|
|
|
'accuracy' => 0, |
2064
|
|
|
], |
2065
|
|
|
[ |
2066
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19872', |
2067
|
|
|
'name' => 'Rectified Skew Orthomorphic Malaya Grid (metre)', |
2068
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4751', |
2069
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3168', |
2070
|
|
|
'accuracy' => 0, |
2071
|
|
|
], |
2072
|
|
|
[ |
2073
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15896', |
2074
|
|
|
'name' => 'Kertau (RSO) to Kertau 1968 (1)', |
2075
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4751', |
2076
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4245', |
2077
|
|
|
'accuracy' => 0.0, |
2078
|
|
|
], |
2079
|
|
|
[ |
2080
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17432', |
2081
|
|
|
'name' => 'Indonesia TM-3 zone 46.2', |
2082
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2083
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23830', |
2084
|
|
|
'accuracy' => 0, |
2085
|
|
|
], |
2086
|
|
|
[ |
2087
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17433', |
2088
|
|
|
'name' => 'Indonesia TM-3 zone 47.1', |
2089
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2090
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23831', |
2091
|
|
|
'accuracy' => 0, |
2092
|
|
|
], |
2093
|
|
|
[ |
2094
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17434', |
2095
|
|
|
'name' => 'Indonesia TM-3 zone 47.2', |
2096
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2097
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23832', |
2098
|
|
|
'accuracy' => 0, |
2099
|
|
|
], |
2100
|
|
|
[ |
2101
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17435', |
2102
|
|
|
'name' => 'Indonesia TM-3 zone 48.1', |
2103
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2104
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23833', |
2105
|
|
|
'accuracy' => 0, |
2106
|
|
|
], |
2107
|
|
|
[ |
2108
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17436', |
2109
|
|
|
'name' => 'Indonesia TM-3 zone 48.2', |
2110
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2111
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23834', |
2112
|
|
|
'accuracy' => 0, |
2113
|
|
|
], |
2114
|
|
|
[ |
2115
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17437', |
2116
|
|
|
'name' => 'Indonesia TM-3 zone 49.1', |
2117
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2118
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23835', |
2119
|
|
|
'accuracy' => 0, |
2120
|
|
|
], |
2121
|
|
|
[ |
2122
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17438', |
2123
|
|
|
'name' => 'Indonesia TM-3 zone 49.2', |
2124
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2125
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23836', |
2126
|
|
|
'accuracy' => 0, |
2127
|
|
|
], |
2128
|
|
|
[ |
2129
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17439', |
2130
|
|
|
'name' => 'Indonesia TM-3 zone 50.1', |
2131
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2132
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23837', |
2133
|
|
|
'accuracy' => 0, |
2134
|
|
|
], |
2135
|
|
|
[ |
2136
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17440', |
2137
|
|
|
'name' => 'Indonesia TM-3 zone 50.2', |
2138
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2139
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23838', |
2140
|
|
|
'accuracy' => 0, |
2141
|
|
|
], |
2142
|
|
|
[ |
2143
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17441', |
2144
|
|
|
'name' => 'Indonesia TM-3 zone 51.1', |
2145
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2146
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23839', |
2147
|
|
|
'accuracy' => 0, |
2148
|
|
|
], |
2149
|
|
|
[ |
2150
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17442', |
2151
|
|
|
'name' => 'Indonesia TM-3 zone 51.2', |
2152
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2153
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23840', |
2154
|
|
|
'accuracy' => 0, |
2155
|
|
|
], |
2156
|
|
|
[ |
2157
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17443', |
2158
|
|
|
'name' => 'Indonesia TM-3 zone 52.1', |
2159
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2160
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23841', |
2161
|
|
|
'accuracy' => 0, |
2162
|
|
|
], |
2163
|
|
|
[ |
2164
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17444', |
2165
|
|
|
'name' => 'Indonesia TM-3 zone 52.2', |
2166
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2167
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23842', |
2168
|
|
|
'accuracy' => 0, |
2169
|
|
|
], |
2170
|
|
|
[ |
2171
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17445', |
2172
|
|
|
'name' => 'Indonesia TM-3 zone 53.1', |
2173
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2174
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23843', |
2175
|
|
|
'accuracy' => 0, |
2176
|
|
|
], |
2177
|
|
|
[ |
2178
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17446', |
2179
|
|
|
'name' => 'Indonesia TM-3 zone 53.2', |
2180
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2181
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23844', |
2182
|
|
|
'accuracy' => 0, |
2183
|
|
|
], |
2184
|
|
|
[ |
2185
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17447', |
2186
|
|
|
'name' => 'Indonesia TM-3 zone 54.1', |
2187
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2188
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::23845', |
2189
|
|
|
'accuracy' => 0, |
2190
|
|
|
], |
2191
|
|
|
[ |
2192
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15912', |
2193
|
|
|
'name' => 'DGN95 to WGS 84 (1)', |
2194
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2195
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2196
|
|
|
'accuracy' => 1.0, |
2197
|
|
|
], |
2198
|
|
|
[ |
2199
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9472', |
2200
|
|
|
'name' => 'DGN95 to SRGI2013 (1)', |
2201
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4755', |
2202
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9470', |
2203
|
|
|
'accuracy' => 0.2, |
2204
|
|
|
], |
2205
|
|
|
[ |
2206
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6960', |
2207
|
|
|
'name' => 'VN-2000 to WGS 84 (2)', |
2208
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2209
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2210
|
|
|
'accuracy' => 1.0, |
2211
|
|
|
], |
2212
|
|
|
[ |
2213
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5892', |
2214
|
|
|
'name' => 'Vietnam TM-3 zone 481', |
2215
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2216
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5896', |
2217
|
|
|
'accuracy' => 0, |
2218
|
|
|
], |
2219
|
|
|
[ |
2220
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5893', |
2221
|
|
|
'name' => 'Vietnam TM-3 zone 482', |
2222
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2223
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5897', |
2224
|
|
|
'accuracy' => 0, |
2225
|
|
|
], |
2226
|
|
|
[ |
2227
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5894', |
2228
|
|
|
'name' => 'Vietnam TM-3 zone 491', |
2229
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2230
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5898', |
2231
|
|
|
'accuracy' => 0, |
2232
|
|
|
], |
2233
|
|
|
[ |
2234
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5895', |
2235
|
|
|
'name' => 'Vietnam TM-3 107-45', |
2236
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2237
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5899', |
2238
|
|
|
'accuracy' => 0, |
2239
|
|
|
], |
2240
|
|
|
[ |
2241
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9058', |
2242
|
|
|
'name' => 'Vietnam TM-3 103-00', |
2243
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2244
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9205', |
2245
|
|
|
'accuracy' => 0, |
2246
|
|
|
], |
2247
|
|
|
[ |
2248
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9192', |
2249
|
|
|
'name' => 'Vietnam TM-3 104-00', |
2250
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2251
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9206', |
2252
|
|
|
'accuracy' => 0, |
2253
|
|
|
], |
2254
|
|
|
[ |
2255
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9193', |
2256
|
|
|
'name' => 'Vietnam TM-3 104-30', |
2257
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2258
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9207', |
2259
|
|
|
'accuracy' => 0, |
2260
|
|
|
], |
2261
|
|
|
[ |
2262
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9194', |
2263
|
|
|
'name' => 'Vietnam TM-3 104-45', |
2264
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2265
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9208', |
2266
|
|
|
'accuracy' => 0, |
2267
|
|
|
], |
2268
|
|
|
[ |
2269
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9195', |
2270
|
|
|
'name' => 'Vietnam TM-3 105-30', |
2271
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2272
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9209', |
2273
|
|
|
'accuracy' => 0, |
2274
|
|
|
], |
2275
|
|
|
[ |
2276
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9196', |
2277
|
|
|
'name' => 'Vietnam TM-3 105-45', |
2278
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2279
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9210', |
2280
|
|
|
'accuracy' => 0, |
2281
|
|
|
], |
2282
|
|
|
[ |
2283
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9197', |
2284
|
|
|
'name' => 'Vietnam TM-3 106-00', |
2285
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2286
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9211', |
2287
|
|
|
'accuracy' => 0, |
2288
|
|
|
], |
2289
|
|
|
[ |
2290
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9198', |
2291
|
|
|
'name' => 'Vietnam TM-3 106-15', |
2292
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2293
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9212', |
2294
|
|
|
'accuracy' => 0, |
2295
|
|
|
], |
2296
|
|
|
[ |
2297
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9199', |
2298
|
|
|
'name' => 'Vietnam TM-3 106-30', |
2299
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2300
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9213', |
2301
|
|
|
'accuracy' => 0, |
2302
|
|
|
], |
2303
|
|
|
[ |
2304
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9200', |
2305
|
|
|
'name' => 'Vietnam TM-3 107-00', |
2306
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2307
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9214', |
2308
|
|
|
'accuracy' => 0, |
2309
|
|
|
], |
2310
|
|
|
[ |
2311
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9201', |
2312
|
|
|
'name' => 'Vietnam TM-3 107-15', |
2313
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2314
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9215', |
2315
|
|
|
'accuracy' => 0, |
2316
|
|
|
], |
2317
|
|
|
[ |
2318
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9202', |
2319
|
|
|
'name' => 'Vietnam TM-3 107-30', |
2320
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2321
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9216', |
2322
|
|
|
'accuracy' => 0, |
2323
|
|
|
], |
2324
|
|
|
[ |
2325
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9203', |
2326
|
|
|
'name' => 'Vietnam TM-3 108-15', |
2327
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2328
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9217', |
2329
|
|
|
'accuracy' => 0, |
2330
|
|
|
], |
2331
|
|
|
[ |
2332
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9204', |
2333
|
|
|
'name' => 'Vietnam TM-3 108-30', |
2334
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4756', |
2335
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9218', |
2336
|
|
|
'accuracy' => 0, |
2337
|
|
|
], |
2338
|
|
|
[ |
2339
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19864', |
2340
|
|
|
'name' => 'Singapore Transverse Mercator', |
2341
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4757', |
2342
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3414', |
2343
|
|
|
'accuracy' => 0, |
2344
|
|
|
], |
2345
|
|
|
[ |
2346
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8886', |
2347
|
|
|
'name' => 'SVY21 to WGS 84 (1)', |
2348
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4757', |
2349
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2350
|
|
|
'accuracy' => 1.0, |
2351
|
|
|
], |
2352
|
|
|
[ |
2353
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1260', |
2354
|
|
|
'name' => 'Makassar (Jakarta) to Makassar (1)', |
2355
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4804', |
2356
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4257', |
2357
|
|
|
'accuracy' => 0.0, |
2358
|
|
|
], |
2359
|
|
|
[ |
2360
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5328', |
2361
|
|
|
'name' => 'Netherlands East Indies Equatorial Zone (Jkt)', |
2362
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4804', |
2363
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5331', |
2364
|
|
|
'accuracy' => 0, |
2365
|
|
|
], |
2366
|
|
|
[ |
2367
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1759', |
2368
|
|
|
'name' => 'Batavia (Jakarta) to Batavia (1)', |
2369
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4813', |
2370
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4211', |
2371
|
|
|
'accuracy' => 0.0, |
2372
|
|
|
], |
2373
|
|
|
[ |
2374
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5328', |
2375
|
|
|
'name' => 'Netherlands East Indies Equatorial Zone (Jkt)', |
2376
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4813', |
2377
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5330', |
2378
|
|
|
'accuracy' => 0, |
2379
|
|
|
], |
2380
|
|
|
[ |
2381
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1883', |
2382
|
|
|
'name' => 'Segara (Jakarta) to Segara (1)', |
2383
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4820', |
2384
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4613', |
2385
|
|
|
'accuracy' => 0.0, |
2386
|
|
|
], |
2387
|
|
|
[ |
2388
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5328', |
2389
|
|
|
'name' => 'Netherlands East Indies Equatorial Zone (Jkt)', |
2390
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4820', |
2391
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5329', |
2392
|
|
|
'accuracy' => 0, |
2393
|
|
|
], |
2394
|
|
|
[ |
2395
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5134', |
2396
|
|
|
'name' => 'Tokyo 1892 to Korean 1985 (1)', |
2397
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5132', |
2398
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4162', |
2399
|
|
|
'accuracy' => 0.0, |
2400
|
|
|
], |
2401
|
|
|
[ |
2402
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5133', |
2403
|
|
|
'name' => 'Tokyo 1892 to Tokyo (1)', |
2404
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5132', |
2405
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4301', |
2406
|
|
|
'accuracy' => 0.0, |
2407
|
|
|
], |
2408
|
|
|
[ |
2409
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18253', |
2410
|
|
|
'name' => 'Korea West Belt', |
2411
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5132', |
2412
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5169', |
2413
|
|
|
'accuracy' => 0, |
2414
|
|
|
], |
2415
|
|
|
[ |
2416
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18252', |
2417
|
|
|
'name' => 'Korea Central Belt', |
2418
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5132', |
2419
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5170', |
2420
|
|
|
'accuracy' => 0, |
2421
|
|
|
], |
2422
|
|
|
[ |
2423
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18251', |
2424
|
|
|
'name' => 'Korea East Belt', |
2425
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5132', |
2426
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5171', |
2427
|
|
|
'accuracy' => 0, |
2428
|
|
|
], |
2429
|
|
|
[ |
2430
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5049', |
2431
|
|
|
'name' => 'Korea East Sea Belt', |
2432
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5132', |
2433
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5172', |
2434
|
|
|
'accuracy' => 0, |
2435
|
|
|
], |
2436
|
|
|
[ |
2437
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5236', |
2438
|
|
|
'name' => 'SLD99 to WGS 84 (1)', |
2439
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5233', |
2440
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2441
|
|
|
'accuracy' => 14.0, |
2442
|
|
|
], |
2443
|
|
|
[ |
2444
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5232', |
2445
|
|
|
'name' => 'Sri Lanka Grid 1999', |
2446
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5233', |
2447
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5235', |
2448
|
|
|
'accuracy' => 0, |
2449
|
|
|
], |
2450
|
|
|
[ |
2451
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6701', |
2452
|
|
|
'name' => 'GDBD2009 to WGS 84 (1)', |
2453
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5246', |
2454
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2455
|
|
|
'accuracy' => 1.0, |
2456
|
|
|
], |
2457
|
|
|
[ |
2458
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19894', |
2459
|
|
|
'name' => 'Borneo RSO', |
2460
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5246', |
2461
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5247', |
2462
|
|
|
'accuracy' => 0, |
2463
|
|
|
], |
2464
|
|
|
[ |
2465
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5267', |
2466
|
|
|
'name' => 'DRUKREF 03 to WGS 84 (1)', |
2467
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2468
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2469
|
|
|
'accuracy' => 1.0, |
2470
|
|
|
], |
2471
|
|
|
[ |
2472
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5265', |
2473
|
|
|
'name' => 'Bhutan National Grid', |
2474
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2475
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5266', |
2476
|
|
|
'accuracy' => 0, |
2477
|
|
|
], |
2478
|
|
|
[ |
2479
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5268', |
2480
|
|
|
'name' => 'Bumthang TM', |
2481
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2482
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5292', |
2483
|
|
|
'accuracy' => 0, |
2484
|
|
|
], |
2485
|
|
|
[ |
2486
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5276', |
2487
|
|
|
'name' => 'Chhukha TM', |
2488
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2489
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5293', |
2490
|
|
|
'accuracy' => 0, |
2491
|
|
|
], |
2492
|
|
|
[ |
2493
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5277', |
2494
|
|
|
'name' => 'Dagana TM', |
2495
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2496
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5294', |
2497
|
|
|
'accuracy' => 0, |
2498
|
|
|
], |
2499
|
|
|
[ |
2500
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5278', |
2501
|
|
|
'name' => 'Gasa TM', |
2502
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2503
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5295', |
2504
|
|
|
'accuracy' => 0, |
2505
|
|
|
], |
2506
|
|
|
[ |
2507
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5279', |
2508
|
|
|
'name' => 'Ha TM', |
2509
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2510
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5296', |
2511
|
|
|
'accuracy' => 0, |
2512
|
|
|
], |
2513
|
|
|
[ |
2514
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5280', |
2515
|
|
|
'name' => 'Lhuentse TM', |
2516
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2517
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5297', |
2518
|
|
|
'accuracy' => 0, |
2519
|
|
|
], |
2520
|
|
|
[ |
2521
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5281', |
2522
|
|
|
'name' => 'Mongar TM', |
2523
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2524
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5298', |
2525
|
|
|
'accuracy' => 0, |
2526
|
|
|
], |
2527
|
|
|
[ |
2528
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5282', |
2529
|
|
|
'name' => 'Paro TM', |
2530
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2531
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5299', |
2532
|
|
|
'accuracy' => 0, |
2533
|
|
|
], |
2534
|
|
|
[ |
2535
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5283', |
2536
|
|
|
'name' => 'Pemagatshel TM', |
2537
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2538
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5300', |
2539
|
|
|
'accuracy' => 0, |
2540
|
|
|
], |
2541
|
|
|
[ |
2542
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5313', |
2543
|
|
|
'name' => 'Punakha TM', |
2544
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2545
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5301', |
2546
|
|
|
'accuracy' => 0, |
2547
|
|
|
], |
2548
|
|
|
[ |
2549
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5285', |
2550
|
|
|
'name' => 'Samdrup Jongkhar TM', |
2551
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2552
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5302', |
2553
|
|
|
'accuracy' => 0, |
2554
|
|
|
], |
2555
|
|
|
[ |
2556
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5286', |
2557
|
|
|
'name' => 'Samtse TM', |
2558
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2559
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5303', |
2560
|
|
|
'accuracy' => 0, |
2561
|
|
|
], |
2562
|
|
|
[ |
2563
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5287', |
2564
|
|
|
'name' => 'Sarpang TM', |
2565
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2566
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5304', |
2567
|
|
|
'accuracy' => 0, |
2568
|
|
|
], |
2569
|
|
|
[ |
2570
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5312', |
2571
|
|
|
'name' => 'Thimphu TM', |
2572
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2573
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5305', |
2574
|
|
|
'accuracy' => 0, |
2575
|
|
|
], |
2576
|
|
|
[ |
2577
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5289', |
2578
|
|
|
'name' => 'Trashigang TM', |
2579
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2580
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5306', |
2581
|
|
|
'accuracy' => 0, |
2582
|
|
|
], |
2583
|
|
|
[ |
2584
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5290', |
2585
|
|
|
'name' => 'Trongsa TM', |
2586
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2587
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5307', |
2588
|
|
|
'accuracy' => 0, |
2589
|
|
|
], |
2590
|
|
|
[ |
2591
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5284', |
2592
|
|
|
'name' => 'Tsirang TM', |
2593
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2594
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5308', |
2595
|
|
|
'accuracy' => 0, |
2596
|
|
|
], |
2597
|
|
|
[ |
2598
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5288', |
2599
|
|
|
'name' => 'Wangdue Phodrang TM', |
2600
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2601
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5309', |
2602
|
|
|
'accuracy' => 0, |
2603
|
|
|
], |
2604
|
|
|
[ |
2605
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5314', |
2606
|
|
|
'name' => 'Yangtse TM', |
2607
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2608
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5310', |
2609
|
|
|
'accuracy' => 0, |
2610
|
|
|
], |
2611
|
|
|
[ |
2612
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5291', |
2613
|
|
|
'name' => 'Zhemgang TM', |
2614
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5264', |
2615
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5311', |
2616
|
|
|
'accuracy' => 0, |
2617
|
|
|
], |
2618
|
|
|
[ |
2619
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7981', |
2620
|
|
|
'name' => 'Kuwait PWD height to KOC WD height (1)', |
2621
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5788', |
2622
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7979', |
2623
|
|
|
'accuracy' => 0.1, |
2624
|
|
|
], |
2625
|
|
|
[ |
2626
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5450', |
2627
|
|
|
'name' => 'KOC CD height to Kuwait PWD height (1)', |
2628
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5790', |
2629
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5788', |
2630
|
|
|
'accuracy' => 0.1, |
2631
|
|
|
], |
2632
|
|
|
[ |
2633
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7980', |
2634
|
|
|
'name' => 'KOC CD height to KOC WD height (1)', |
2635
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5790', |
2636
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7979', |
2637
|
|
|
'accuracy' => 0.1, |
2638
|
|
|
], |
2639
|
|
|
[ |
2640
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6208', |
2641
|
|
|
'name' => 'Nepal 1981 to WGS 84 (1)', |
2642
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6207', |
2643
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2644
|
|
|
'accuracy' => 0.3, |
2645
|
|
|
], |
2646
|
|
|
[ |
2647
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9936', |
2648
|
|
|
'name' => 'JGD2011 to WGS 84 (1)', |
2649
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2650
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2651
|
|
|
'accuracy' => 1.0, |
2652
|
|
|
], |
2653
|
|
|
[ |
2654
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17801', |
2655
|
|
|
'name' => 'Japan Plane Rectangular CS zone I', |
2656
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2657
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6669', |
2658
|
|
|
'accuracy' => 0, |
2659
|
|
|
], |
2660
|
|
|
[ |
2661
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17802', |
2662
|
|
|
'name' => 'Japan Plane Rectangular CS zone II', |
2663
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2664
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6670', |
2665
|
|
|
'accuracy' => 0, |
2666
|
|
|
], |
2667
|
|
|
[ |
2668
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17803', |
2669
|
|
|
'name' => 'Japan Plane Rectangular CS zone III', |
2670
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2671
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6671', |
2672
|
|
|
'accuracy' => 0, |
2673
|
|
|
], |
2674
|
|
|
[ |
2675
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17804', |
2676
|
|
|
'name' => 'Japan Plane Rectangular CS zone IV', |
2677
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2678
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6672', |
2679
|
|
|
'accuracy' => 0, |
2680
|
|
|
], |
2681
|
|
|
[ |
2682
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17805', |
2683
|
|
|
'name' => 'Japan Plane Rectangular CS zone V', |
2684
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2685
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6673', |
2686
|
|
|
'accuracy' => 0, |
2687
|
|
|
], |
2688
|
|
|
[ |
2689
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17806', |
2690
|
|
|
'name' => 'Japan Plane Rectangular CS zone VI', |
2691
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2692
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6674', |
2693
|
|
|
'accuracy' => 0, |
2694
|
|
|
], |
2695
|
|
|
[ |
2696
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17807', |
2697
|
|
|
'name' => 'Japan Plane Rectangular CS zone VII', |
2698
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2699
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6675', |
2700
|
|
|
'accuracy' => 0, |
2701
|
|
|
], |
2702
|
|
|
[ |
2703
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17808', |
2704
|
|
|
'name' => 'Japan Plane Rectangular CS zone VIII', |
2705
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2706
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6676', |
2707
|
|
|
'accuracy' => 0, |
2708
|
|
|
], |
2709
|
|
|
[ |
2710
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17809', |
2711
|
|
|
'name' => 'Japan Plane Rectangular CS zone IX', |
2712
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2713
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6677', |
2714
|
|
|
'accuracy' => 0, |
2715
|
|
|
], |
2716
|
|
|
[ |
2717
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17810', |
2718
|
|
|
'name' => 'Japan Plane Rectangular CS zone X', |
2719
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2720
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6678', |
2721
|
|
|
'accuracy' => 0, |
2722
|
|
|
], |
2723
|
|
|
[ |
2724
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17811', |
2725
|
|
|
'name' => 'Japan Plane Rectangular CS zone XI', |
2726
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2727
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6679', |
2728
|
|
|
'accuracy' => 0, |
2729
|
|
|
], |
2730
|
|
|
[ |
2731
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17812', |
2732
|
|
|
'name' => 'Japan Plane Rectangular CS zone XII', |
2733
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2734
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6680', |
2735
|
|
|
'accuracy' => 0, |
2736
|
|
|
], |
2737
|
|
|
[ |
2738
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17813', |
2739
|
|
|
'name' => 'Japan Plane Rectangular CS zone XIII', |
2740
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2741
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6681', |
2742
|
|
|
'accuracy' => 0, |
2743
|
|
|
], |
2744
|
|
|
[ |
2745
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17814', |
2746
|
|
|
'name' => 'Japan Plane Rectangular CS zone XIV', |
2747
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2748
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6682', |
2749
|
|
|
'accuracy' => 0, |
2750
|
|
|
], |
2751
|
|
|
[ |
2752
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17815', |
2753
|
|
|
'name' => 'Japan Plane Rectangular CS zone XV', |
2754
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2755
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6683', |
2756
|
|
|
'accuracy' => 0, |
2757
|
|
|
], |
2758
|
|
|
[ |
2759
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17816', |
2760
|
|
|
'name' => 'Japan Plane Rectangular CS zone XVI', |
2761
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2762
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6684', |
2763
|
|
|
'accuracy' => 0, |
2764
|
|
|
], |
2765
|
|
|
[ |
2766
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17817', |
2767
|
|
|
'name' => 'Japan Plane Rectangular CS zone XVII', |
2768
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2769
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6685', |
2770
|
|
|
'accuracy' => 0, |
2771
|
|
|
], |
2772
|
|
|
[ |
2773
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17818', |
2774
|
|
|
'name' => 'Japan Plane Rectangular CS zone XVIII', |
2775
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2776
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6686', |
2777
|
|
|
'accuracy' => 0, |
2778
|
|
|
], |
2779
|
|
|
[ |
2780
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17819', |
2781
|
|
|
'name' => 'Japan Plane Rectangular CS zone XIX', |
2782
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6668', |
2783
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6687', |
2784
|
|
|
'accuracy' => 0, |
2785
|
|
|
], |
2786
|
|
|
[ |
2787
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6699', |
2788
|
|
|
'name' => 'JGD2000 (vertical) height to JGD2011 (vertical) height (1)', |
2789
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6694', |
2790
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6695', |
2791
|
|
|
'accuracy' => 0.01, |
2792
|
|
|
], |
2793
|
|
|
[ |
2794
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6910', |
2795
|
|
|
'name' => 'Aden 1925 to WGS 84 (1)', |
2796
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6881', |
2797
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2798
|
|
|
'accuracy' => 999.0, |
2799
|
|
|
], |
2800
|
|
|
[ |
2801
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6911', |
2802
|
|
|
'name' => 'Bekaa Valley 1920 to WGS 84 (1)', |
2803
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6882', |
2804
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2805
|
|
|
'accuracy' => 999.0, |
2806
|
|
|
], |
2807
|
|
|
[ |
2808
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6935', |
2809
|
|
|
'name' => 'IGS08 to IGRS (1)', |
2810
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6934', |
2811
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3887', |
2812
|
|
|
'accuracy' => 0.05, |
2813
|
|
|
], |
2814
|
|
|
[ |
2815
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6936', |
2816
|
|
|
'name' => 'IGS08 to IGRS (2)', |
2817
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6934', |
2818
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3887', |
2819
|
|
|
'accuracy' => 0.05, |
2820
|
|
|
], |
2821
|
|
|
[ |
2822
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18204', |
2823
|
|
|
'name' => 'Israeli TM', |
2824
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6983', |
2825
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6984', |
2826
|
|
|
'accuracy' => 0, |
2827
|
|
|
], |
2828
|
|
|
[ |
2829
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18204', |
2830
|
|
|
'name' => 'Israeli TM', |
2831
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6990', |
2832
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6991', |
2833
|
|
|
'accuracy' => 0, |
2834
|
|
|
], |
2835
|
|
|
[ |
2836
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7140', |
2837
|
|
|
'name' => 'IGD05 to IG05 Intermediate CRS', |
2838
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7136', |
2839
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6983', |
2840
|
|
|
'accuracy' => 0.0, |
2841
|
|
|
], |
2842
|
|
|
[ |
2843
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6992', |
2844
|
|
|
'name' => 'IGD05 to IGD05/12', |
2845
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7136', |
2846
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7139', |
2847
|
|
|
'accuracy' => 0.05, |
2848
|
|
|
], |
2849
|
|
|
[ |
2850
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6993', |
2851
|
|
|
'name' => 'IGD05/12 to IG05/12 Intermediate CRS', |
2852
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7139', |
2853
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6990', |
2854
|
|
|
'accuracy' => 0.0, |
2855
|
|
|
], |
2856
|
|
|
[ |
2857
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7377', |
2858
|
|
|
'name' => 'ONGD14 to WGS 84 (1)', |
2859
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7371', |
2860
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4978', |
2861
|
|
|
'accuracy' => 0.1, |
2862
|
|
|
], |
2863
|
|
|
[ |
2864
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15596', |
2865
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (7)', |
2866
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2867
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2868
|
|
|
'accuracy' => 1.0, |
2869
|
|
|
], |
2870
|
|
|
[ |
2871
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15597', |
2872
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (8)', |
2873
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2874
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2875
|
|
|
'accuracy' => 1.0, |
2876
|
|
|
], |
2877
|
|
|
[ |
2878
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15598', |
2879
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (9)', |
2880
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2881
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2882
|
|
|
'accuracy' => 1.0, |
2883
|
|
|
], |
2884
|
|
|
[ |
2885
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15599', |
2886
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (10)', |
2887
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2888
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2889
|
|
|
'accuracy' => 1.0, |
2890
|
|
|
], |
2891
|
|
|
[ |
2892
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15600', |
2893
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (11)', |
2894
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2895
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2896
|
|
|
'accuracy' => 1.0, |
2897
|
|
|
], |
2898
|
|
|
[ |
2899
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15601', |
2900
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (12)', |
2901
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2902
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2903
|
|
|
'accuracy' => 1.0, |
2904
|
|
|
], |
2905
|
|
|
[ |
2906
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15602', |
2907
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (13)', |
2908
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2909
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2910
|
|
|
'accuracy' => 1.0, |
2911
|
|
|
], |
2912
|
|
|
[ |
2913
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15603', |
2914
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (14)', |
2915
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2916
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2917
|
|
|
'accuracy' => 1.0, |
2918
|
|
|
], |
2919
|
|
|
[ |
2920
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15604', |
2921
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (15)', |
2922
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2923
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2924
|
|
|
'accuracy' => 1.0, |
2925
|
|
|
], |
2926
|
|
|
[ |
2927
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15605', |
2928
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (16)', |
2929
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2930
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2931
|
|
|
'accuracy' => 1.0, |
2932
|
|
|
], |
2933
|
|
|
[ |
2934
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15606', |
2935
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (17)', |
2936
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2937
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2938
|
|
|
'accuracy' => 1.0, |
2939
|
|
|
], |
2940
|
|
|
[ |
2941
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15607', |
2942
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (18)', |
2943
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2944
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2945
|
|
|
'accuracy' => 1.0, |
2946
|
|
|
], |
2947
|
|
|
[ |
2948
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15608', |
2949
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (19)', |
2950
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2951
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2952
|
|
|
'accuracy' => 1.0, |
2953
|
|
|
], |
2954
|
|
|
[ |
2955
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15609', |
2956
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (20)', |
2957
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2958
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2959
|
|
|
'accuracy' => 1.0, |
2960
|
|
|
], |
2961
|
|
|
[ |
2962
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15610', |
2963
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (21)', |
2964
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2965
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2966
|
|
|
'accuracy' => 1.0, |
2967
|
|
|
], |
2968
|
|
|
[ |
2969
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15611', |
2970
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (22)', |
2971
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2972
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2973
|
|
|
'accuracy' => 1.0, |
2974
|
|
|
], |
2975
|
|
|
[ |
2976
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15612', |
2977
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (23)', |
2978
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2979
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2980
|
|
|
'accuracy' => 1.0, |
2981
|
|
|
], |
2982
|
|
|
[ |
2983
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15613', |
2984
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (24)', |
2985
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2986
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2987
|
|
|
'accuracy' => 1.0, |
2988
|
|
|
], |
2989
|
|
|
[ |
2990
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15614', |
2991
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (25)', |
2992
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
2993
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
2994
|
|
|
'accuracy' => 1.0, |
2995
|
|
|
], |
2996
|
|
|
[ |
2997
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15615', |
2998
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (26)', |
2999
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3000
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3001
|
|
|
'accuracy' => 1.0, |
3002
|
|
|
], |
3003
|
|
|
[ |
3004
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15616', |
3005
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (27)', |
3006
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3007
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3008
|
|
|
'accuracy' => 1.0, |
3009
|
|
|
], |
3010
|
|
|
[ |
3011
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15617', |
3012
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (28)', |
3013
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3014
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3015
|
|
|
'accuracy' => 1.0, |
3016
|
|
|
], |
3017
|
|
|
[ |
3018
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15618', |
3019
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (29)', |
3020
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3021
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3022
|
|
|
'accuracy' => 1.0, |
3023
|
|
|
], |
3024
|
|
|
[ |
3025
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15619', |
3026
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (30)', |
3027
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3028
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3029
|
|
|
'accuracy' => 1.0, |
3030
|
|
|
], |
3031
|
|
|
[ |
3032
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15620', |
3033
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (31)', |
3034
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3035
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3036
|
|
|
'accuracy' => 1.0, |
3037
|
|
|
], |
3038
|
|
|
[ |
3039
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15621', |
3040
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (32)', |
3041
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3042
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3043
|
|
|
'accuracy' => 1.0, |
3044
|
|
|
], |
3045
|
|
|
[ |
3046
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15622', |
3047
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (33)', |
3048
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3049
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3050
|
|
|
'accuracy' => 1.0, |
3051
|
|
|
], |
3052
|
|
|
[ |
3053
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15623', |
3054
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (34)', |
3055
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3056
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3057
|
|
|
'accuracy' => 1.0, |
3058
|
|
|
], |
3059
|
|
|
[ |
3060
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15624', |
3061
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (35)', |
3062
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3063
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3064
|
|
|
'accuracy' => 1.0, |
3065
|
|
|
], |
3066
|
|
|
[ |
3067
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15625', |
3068
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (36)', |
3069
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3070
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3071
|
|
|
'accuracy' => 1.0, |
3072
|
|
|
], |
3073
|
|
|
[ |
3074
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15626', |
3075
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (37)', |
3076
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3077
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3078
|
|
|
'accuracy' => 1.0, |
3079
|
|
|
], |
3080
|
|
|
[ |
3081
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15627', |
3082
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (38)', |
3083
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3084
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3085
|
|
|
'accuracy' => 1.0, |
3086
|
|
|
], |
3087
|
|
|
[ |
3088
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15628', |
3089
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (39)', |
3090
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3091
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3092
|
|
|
'accuracy' => 1.0, |
3093
|
|
|
], |
3094
|
|
|
[ |
3095
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15629', |
3096
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (40)', |
3097
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3098
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3099
|
|
|
'accuracy' => 1.0, |
3100
|
|
|
], |
3101
|
|
|
[ |
3102
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15630', |
3103
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (41)', |
3104
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3105
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3106
|
|
|
'accuracy' => 1.0, |
3107
|
|
|
], |
3108
|
|
|
[ |
3109
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15631', |
3110
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (42)', |
3111
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3112
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3113
|
|
|
'accuracy' => 1.0, |
3114
|
|
|
], |
3115
|
|
|
[ |
3116
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15632', |
3117
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (43)', |
3118
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3119
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3120
|
|
|
'accuracy' => 1.0, |
3121
|
|
|
], |
3122
|
|
|
[ |
3123
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15633', |
3124
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (44)', |
3125
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3126
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3127
|
|
|
'accuracy' => 1.0, |
3128
|
|
|
], |
3129
|
|
|
[ |
3130
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15634', |
3131
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (45)', |
3132
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3133
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3134
|
|
|
'accuracy' => 1.0, |
3135
|
|
|
], |
3136
|
|
|
[ |
3137
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15635', |
3138
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (46)', |
3139
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3140
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3141
|
|
|
'accuracy' => 1.0, |
3142
|
|
|
], |
3143
|
|
|
[ |
3144
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15636', |
3145
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (47)', |
3146
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3147
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3148
|
|
|
'accuracy' => 1.0, |
3149
|
|
|
], |
3150
|
|
|
[ |
3151
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15637', |
3152
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (48)', |
3153
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3154
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3155
|
|
|
'accuracy' => 1.0, |
3156
|
|
|
], |
3157
|
|
|
[ |
3158
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15638', |
3159
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (49)', |
3160
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3161
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3162
|
|
|
'accuracy' => 1.0, |
3163
|
|
|
], |
3164
|
|
|
[ |
3165
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15639', |
3166
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (50)', |
3167
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3168
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3169
|
|
|
'accuracy' => 1.0, |
3170
|
|
|
], |
3171
|
|
|
[ |
3172
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15640', |
3173
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (51)', |
3174
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3175
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3176
|
|
|
'accuracy' => 1.0, |
3177
|
|
|
], |
3178
|
|
|
[ |
3179
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15641', |
3180
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (52)', |
3181
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3182
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3183
|
|
|
'accuracy' => 1.0, |
3184
|
|
|
], |
3185
|
|
|
[ |
3186
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15642', |
3187
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (53)', |
3188
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3189
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3190
|
|
|
'accuracy' => 1.0, |
3191
|
|
|
], |
3192
|
|
|
[ |
3193
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15643', |
3194
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (54)', |
3195
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3196
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3197
|
|
|
'accuracy' => 1.0, |
3198
|
|
|
], |
3199
|
|
|
[ |
3200
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15644', |
3201
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (55)', |
3202
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3203
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3204
|
|
|
'accuracy' => 1.0, |
3205
|
|
|
], |
3206
|
|
|
[ |
3207
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15645', |
3208
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (56)', |
3209
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3210
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3211
|
|
|
'accuracy' => 1.0, |
3212
|
|
|
], |
3213
|
|
|
[ |
3214
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15646', |
3215
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (57)', |
3216
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3217
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3218
|
|
|
'accuracy' => 1.0, |
3219
|
|
|
], |
3220
|
|
|
[ |
3221
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15647', |
3222
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (58)', |
3223
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3224
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3225
|
|
|
'accuracy' => 1.0, |
3226
|
|
|
], |
3227
|
|
|
[ |
3228
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15648', |
3229
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (59)', |
3230
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3231
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3232
|
|
|
'accuracy' => 1.0, |
3233
|
|
|
], |
3234
|
|
|
[ |
3235
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15649', |
3236
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (60)', |
3237
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3238
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3239
|
|
|
'accuracy' => 1.0, |
3240
|
|
|
], |
3241
|
|
|
[ |
3242
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15650', |
3243
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (61)', |
3244
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3245
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3246
|
|
|
'accuracy' => 1.0, |
3247
|
|
|
], |
3248
|
|
|
[ |
3249
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15651', |
3250
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (62)', |
3251
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3252
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3253
|
|
|
'accuracy' => 1.0, |
3254
|
|
|
], |
3255
|
|
|
[ |
3256
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15652', |
3257
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (63)', |
3258
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3259
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3260
|
|
|
'accuracy' => 1.0, |
3261
|
|
|
], |
3262
|
|
|
[ |
3263
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15653', |
3264
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (64)', |
3265
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3266
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3267
|
|
|
'accuracy' => 1.0, |
3268
|
|
|
], |
3269
|
|
|
[ |
3270
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15654', |
3271
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (65)', |
3272
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3273
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3274
|
|
|
'accuracy' => 1.0, |
3275
|
|
|
], |
3276
|
|
|
[ |
3277
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15655', |
3278
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (66)', |
3279
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3280
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3281
|
|
|
'accuracy' => 1.0, |
3282
|
|
|
], |
3283
|
|
|
[ |
3284
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15656', |
3285
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (67)', |
3286
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3287
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3288
|
|
|
'accuracy' => 1.0, |
3289
|
|
|
], |
3290
|
|
|
[ |
3291
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15657', |
3292
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (68)', |
3293
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3294
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3295
|
|
|
'accuracy' => 1.0, |
3296
|
|
|
], |
3297
|
|
|
[ |
3298
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15658', |
3299
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (69)', |
3300
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3301
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3302
|
|
|
'accuracy' => 1.0, |
3303
|
|
|
], |
3304
|
|
|
[ |
3305
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15659', |
3306
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (70)', |
3307
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3308
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3309
|
|
|
'accuracy' => 1.0, |
3310
|
|
|
], |
3311
|
|
|
[ |
3312
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15660', |
3313
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (71)', |
3314
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3315
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3316
|
|
|
'accuracy' => 1.0, |
3317
|
|
|
], |
3318
|
|
|
[ |
3319
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15661', |
3320
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (72)', |
3321
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3322
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3323
|
|
|
'accuracy' => 1.0, |
3324
|
|
|
], |
3325
|
|
|
[ |
3326
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15662', |
3327
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (73)', |
3328
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3329
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3330
|
|
|
'accuracy' => 1.0, |
3331
|
|
|
], |
3332
|
|
|
[ |
3333
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15663', |
3334
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (74)', |
3335
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3336
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3337
|
|
|
'accuracy' => 1.0, |
3338
|
|
|
], |
3339
|
|
|
[ |
3340
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15664', |
3341
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (75)', |
3342
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3343
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3344
|
|
|
'accuracy' => 1.0, |
3345
|
|
|
], |
3346
|
|
|
[ |
3347
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15665', |
3348
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (76)', |
3349
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3350
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3351
|
|
|
'accuracy' => 1.0, |
3352
|
|
|
], |
3353
|
|
|
[ |
3354
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15666', |
3355
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (77)', |
3356
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3357
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3358
|
|
|
'accuracy' => 1.0, |
3359
|
|
|
], |
3360
|
|
|
[ |
3361
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15667', |
3362
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (78)', |
3363
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3364
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3365
|
|
|
'accuracy' => 1.0, |
3366
|
|
|
], |
3367
|
|
|
[ |
3368
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15668', |
3369
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (79)', |
3370
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3371
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3372
|
|
|
'accuracy' => 1.0, |
3373
|
|
|
], |
3374
|
|
|
[ |
3375
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15669', |
3376
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (80)', |
3377
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3378
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3379
|
|
|
'accuracy' => 1.0, |
3380
|
|
|
], |
3381
|
|
|
[ |
3382
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15670', |
3383
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (81)', |
3384
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3385
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3386
|
|
|
'accuracy' => 1.0, |
3387
|
|
|
], |
3388
|
|
|
[ |
3389
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15671', |
3390
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (82)', |
3391
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3392
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3393
|
|
|
'accuracy' => 1.0, |
3394
|
|
|
], |
3395
|
|
|
[ |
3396
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15672', |
3397
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (83)', |
3398
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3399
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3400
|
|
|
'accuracy' => 1.0, |
3401
|
|
|
], |
3402
|
|
|
[ |
3403
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15673', |
3404
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (84)', |
3405
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3406
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3407
|
|
|
'accuracy' => 1.0, |
3408
|
|
|
], |
3409
|
|
|
[ |
3410
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15674', |
3411
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (85)', |
3412
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3413
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3414
|
|
|
'accuracy' => 1.0, |
3415
|
|
|
], |
3416
|
|
|
[ |
3417
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15675', |
3418
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (86)', |
3419
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3420
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3421
|
|
|
'accuracy' => 1.0, |
3422
|
|
|
], |
3423
|
|
|
[ |
3424
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15676', |
3425
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (87)', |
3426
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3427
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3428
|
|
|
'accuracy' => 1.0, |
3429
|
|
|
], |
3430
|
|
|
[ |
3431
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15677', |
3432
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (88)', |
3433
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3434
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3435
|
|
|
'accuracy' => 1.0, |
3436
|
|
|
], |
3437
|
|
|
[ |
3438
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15678', |
3439
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (89)', |
3440
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3441
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3442
|
|
|
'accuracy' => 1.0, |
3443
|
|
|
], |
3444
|
|
|
[ |
3445
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15679', |
3446
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (90)', |
3447
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3448
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3449
|
|
|
'accuracy' => 1.0, |
3450
|
|
|
], |
3451
|
|
|
[ |
3452
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15680', |
3453
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (91)', |
3454
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3455
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3456
|
|
|
'accuracy' => 1.0, |
3457
|
|
|
], |
3458
|
|
|
[ |
3459
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15681', |
3460
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (92)', |
3461
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3462
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3463
|
|
|
'accuracy' => 1.0, |
3464
|
|
|
], |
3465
|
|
|
[ |
3466
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15682', |
3467
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (93)', |
3468
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3469
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3470
|
|
|
'accuracy' => 1.0, |
3471
|
|
|
], |
3472
|
|
|
[ |
3473
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15683', |
3474
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (94)', |
3475
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3476
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3477
|
|
|
'accuracy' => 1.0, |
3478
|
|
|
], |
3479
|
|
|
[ |
3480
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15684', |
3481
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (95)', |
3482
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3483
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3484
|
|
|
'accuracy' => 1.0, |
3485
|
|
|
], |
3486
|
|
|
[ |
3487
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15685', |
3488
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (96)', |
3489
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3490
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3491
|
|
|
'accuracy' => 1.0, |
3492
|
|
|
], |
3493
|
|
|
[ |
3494
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15686', |
3495
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (97)', |
3496
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3497
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3498
|
|
|
'accuracy' => 1.0, |
3499
|
|
|
], |
3500
|
|
|
[ |
3501
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15687', |
3502
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (98)', |
3503
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3504
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3505
|
|
|
'accuracy' => 1.0, |
3506
|
|
|
], |
3507
|
|
|
[ |
3508
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15688', |
3509
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (99)', |
3510
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3511
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3512
|
|
|
'accuracy' => 1.0, |
3513
|
|
|
], |
3514
|
|
|
[ |
3515
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15689', |
3516
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (100)', |
3517
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3518
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3519
|
|
|
'accuracy' => 1.0, |
3520
|
|
|
], |
3521
|
|
|
[ |
3522
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15690', |
3523
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (101)', |
3524
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3525
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3526
|
|
|
'accuracy' => 1.0, |
3527
|
|
|
], |
3528
|
|
|
[ |
3529
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15691', |
3530
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (102)', |
3531
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3532
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3533
|
|
|
'accuracy' => 1.0, |
3534
|
|
|
], |
3535
|
|
|
[ |
3536
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15692', |
3537
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (103)', |
3538
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3539
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3540
|
|
|
'accuracy' => 1.0, |
3541
|
|
|
], |
3542
|
|
|
[ |
3543
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15693', |
3544
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (104)', |
3545
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3546
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3547
|
|
|
'accuracy' => 1.0, |
3548
|
|
|
], |
3549
|
|
|
[ |
3550
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15694', |
3551
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (105)', |
3552
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3553
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3554
|
|
|
'accuracy' => 1.0, |
3555
|
|
|
], |
3556
|
|
|
[ |
3557
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15695', |
3558
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (106)', |
3559
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3560
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3561
|
|
|
'accuracy' => 1.0, |
3562
|
|
|
], |
3563
|
|
|
[ |
3564
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15696', |
3565
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (107)', |
3566
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3567
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3568
|
|
|
'accuracy' => 1.0, |
3569
|
|
|
], |
3570
|
|
|
[ |
3571
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15697', |
3572
|
|
|
'name' => 'Tokyo + JSLD height to WGS 84 (6)', |
3573
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7414', |
3574
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4979', |
3575
|
|
|
'accuracy' => 1.0, |
3576
|
|
|
], |
3577
|
|
|
[ |
3578
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9334', |
3579
|
|
|
'name' => 'ITRF2014 to KSA-GRF17 (1)', |
3580
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7789', |
3581
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9331', |
3582
|
|
|
'accuracy' => 0.001, |
3583
|
|
|
], |
3584
|
|
|
[ |
3585
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7977', |
3586
|
|
|
'name' => 'HKPD depth to HKCD depth (1)', |
3587
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7976', |
3588
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5739', |
3589
|
|
|
'accuracy' => 0.0, |
3590
|
|
|
], |
3591
|
|
|
[ |
3592
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8439', |
3593
|
|
|
'name' => 'Hong Kong Geodetic CS to WGS 84 (1)', |
3594
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8427', |
3595
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
3596
|
|
|
'accuracy' => 1.0, |
3597
|
|
|
], |
3598
|
|
|
[ |
3599
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8438', |
3600
|
|
|
'name' => 'Macao 1920 to WGS 84 (1)', |
3601
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8428', |
3602
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
3603
|
|
|
'accuracy' => 1.0, |
3604
|
|
|
], |
3605
|
|
|
[ |
3606
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8432', |
3607
|
|
|
'name' => 'Macau Grid', |
3608
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8428', |
3609
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8433', |
3610
|
|
|
'accuracy' => 0, |
3611
|
|
|
], |
3612
|
|
|
[ |
3613
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8436', |
3614
|
|
|
'name' => 'Macao 2008 to WGS 84 (1)', |
3615
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8431', |
3616
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
3617
|
|
|
'accuracy' => 1.0, |
3618
|
|
|
], |
3619
|
|
|
[ |
3620
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8435', |
3621
|
|
|
'name' => 'Macao 2008 to Macao 1920 (1)', |
3622
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8431', |
3623
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8428', |
3624
|
|
|
'accuracy' => 999.0, |
3625
|
|
|
], |
3626
|
|
|
[ |
3627
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9361', |
3628
|
|
|
'name' => 'MTRF-2000 to KSA-GRF17 (1)', |
3629
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8818', |
3630
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9333', |
3631
|
|
|
'accuracy' => 0.1, |
3632
|
|
|
], |
3633
|
|
|
[ |
3634
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9186', |
3635
|
|
|
'name' => 'ITRF2008 to IG05/12 Intermediate CRS', |
3636
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8999', |
3637
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6990', |
3638
|
|
|
'accuracy' => 0.05, |
3639
|
|
|
], |
3640
|
|
|
[ |
3641
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10589', |
3642
|
|
|
'name' => 'ITRF2014 to Segara (1)', |
3643
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9000', |
3644
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4613', |
3645
|
|
|
'accuracy' => 0.2, |
3646
|
|
|
], |
3647
|
|
|
[ |
3648
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9298', |
3649
|
|
|
'name' => 'ONGD17 to WGS 84 (1)', |
3650
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9292', |
3651
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4978', |
3652
|
|
|
'accuracy' => 0.1, |
3653
|
|
|
], |
3654
|
|
|
[ |
3655
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9383', |
3656
|
|
|
'name' => 'KSA-GRF17 to WGS 84 (1)', |
3657
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9333', |
3658
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
3659
|
|
|
'accuracy' => 1.0, |
3660
|
|
|
], |
3661
|
|
|
]; |
3662
|
|
|
|
3663
|
|
|
/** |
3664
|
|
|
* @return array<array{operation: string, name: string, source_crs: string, target_crs: string, accuracy: float}> |
3665
|
|
|
*/ |
3666
|
36 |
|
public static function getSupportedTransformations(): array |
3667
|
|
|
{ |
3668
|
36 |
|
return static::$sridData; |
3669
|
|
|
} |
3670
|
|
|
} |
3671
|
|
|
|