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 CRSTransformationsOceania |
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::10321', |
23
|
|
|
'name' => 'RGNC91-93 to RGNC15 (1)', |
24
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10307', |
25
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10312', |
26
|
|
|
'accuracy' => 1.0, |
27
|
|
|
], |
28
|
|
|
[ |
29
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10313', |
30
|
|
|
'name' => 'Lambert New Caledonia 2015', |
31
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10310', |
32
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10314', |
33
|
|
|
'accuracy' => 0, |
34
|
|
|
], |
35
|
|
|
[ |
36
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10324', |
37
|
|
|
'name' => 'RGNC15 to WGS 84 (1)', |
38
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::10310', |
39
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
40
|
|
|
'accuracy' => 1.0, |
41
|
|
|
], |
42
|
|
|
[ |
43
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7654', |
44
|
|
|
'name' => 'EGM2008 height to Kiunga height (1)', |
45
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3855', |
46
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7652', |
47
|
|
|
'accuracy' => 0.0, |
48
|
|
|
], |
49
|
|
|
[ |
50
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7874', |
51
|
|
|
'name' => 'EGM2008 height to POM08 height (1)', |
52
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::3855', |
53
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7841', |
54
|
|
|
'accuracy' => 0.0, |
55
|
|
|
], |
56
|
|
|
[ |
57
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4325', |
58
|
|
|
'name' => 'Guam Map Grid', |
59
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4152', |
60
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4414', |
61
|
|
|
'accuracy' => 0, |
62
|
|
|
], |
63
|
|
|
[ |
64
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8863', |
65
|
|
|
'name' => 'NAD83(HARN) to NAD83(FBN) (2)', |
66
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4152', |
67
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8860', |
68
|
|
|
'accuracy' => 0.05, |
69
|
|
|
], |
70
|
|
|
[ |
71
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8865', |
72
|
|
|
'name' => 'NAD83(HARN) to NAD83(FBN) (3)', |
73
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4152', |
74
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8860', |
75
|
|
|
'accuracy' => 0.05, |
76
|
|
|
], |
77
|
|
|
[ |
78
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17931', |
79
|
|
|
'name' => 'Mount Eden 2000', |
80
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
81
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2105', |
82
|
|
|
'accuracy' => 0, |
83
|
|
|
], |
84
|
|
|
[ |
85
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17932', |
86
|
|
|
'name' => 'Bay of Plenty 2000', |
87
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
88
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2106', |
89
|
|
|
'accuracy' => 0, |
90
|
|
|
], |
91
|
|
|
[ |
92
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17933', |
93
|
|
|
'name' => 'Poverty Bay 2000', |
94
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
95
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2107', |
96
|
|
|
'accuracy' => 0, |
97
|
|
|
], |
98
|
|
|
[ |
99
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17934', |
100
|
|
|
'name' => 'Hawkes Bay 2000', |
101
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
102
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2108', |
103
|
|
|
'accuracy' => 0, |
104
|
|
|
], |
105
|
|
|
[ |
106
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17935', |
107
|
|
|
'name' => 'Taranaki 2000', |
108
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
109
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2109', |
110
|
|
|
'accuracy' => 0, |
111
|
|
|
], |
112
|
|
|
[ |
113
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17936', |
114
|
|
|
'name' => 'Tuhirangi 2000', |
115
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
116
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2110', |
117
|
|
|
'accuracy' => 0, |
118
|
|
|
], |
119
|
|
|
[ |
120
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17937', |
121
|
|
|
'name' => 'Wanganui 2000', |
122
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
123
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2111', |
124
|
|
|
'accuracy' => 0, |
125
|
|
|
], |
126
|
|
|
[ |
127
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17938', |
128
|
|
|
'name' => 'Wairarapa 2000', |
129
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
130
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2112', |
131
|
|
|
'accuracy' => 0, |
132
|
|
|
], |
133
|
|
|
[ |
134
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17939', |
135
|
|
|
'name' => 'Wellington 2000', |
136
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
137
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2113', |
138
|
|
|
'accuracy' => 0, |
139
|
|
|
], |
140
|
|
|
[ |
141
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17940', |
142
|
|
|
'name' => 'Collingwood 2000', |
143
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
144
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2114', |
145
|
|
|
'accuracy' => 0, |
146
|
|
|
], |
147
|
|
|
[ |
148
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17941', |
149
|
|
|
'name' => 'Nelson 2000', |
150
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
151
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2115', |
152
|
|
|
'accuracy' => 0, |
153
|
|
|
], |
154
|
|
|
[ |
155
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17942', |
156
|
|
|
'name' => 'Karamea 2000', |
157
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
158
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2116', |
159
|
|
|
'accuracy' => 0, |
160
|
|
|
], |
161
|
|
|
[ |
162
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17943', |
163
|
|
|
'name' => 'Buller 2000', |
164
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
165
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2117', |
166
|
|
|
'accuracy' => 0, |
167
|
|
|
], |
168
|
|
|
[ |
169
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17944', |
170
|
|
|
'name' => 'Grey 2000', |
171
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
172
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2118', |
173
|
|
|
'accuracy' => 0, |
174
|
|
|
], |
175
|
|
|
[ |
176
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17945', |
177
|
|
|
'name' => 'Amuri 2000', |
178
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
179
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2119', |
180
|
|
|
'accuracy' => 0, |
181
|
|
|
], |
182
|
|
|
[ |
183
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17946', |
184
|
|
|
'name' => 'Marlborough 2000', |
185
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
186
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2120', |
187
|
|
|
'accuracy' => 0, |
188
|
|
|
], |
189
|
|
|
[ |
190
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17947', |
191
|
|
|
'name' => 'Hokitika 2000', |
192
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
193
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2121', |
194
|
|
|
'accuracy' => 0, |
195
|
|
|
], |
196
|
|
|
[ |
197
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17948', |
198
|
|
|
'name' => 'Okarito 2000', |
199
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
200
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2122', |
201
|
|
|
'accuracy' => 0, |
202
|
|
|
], |
203
|
|
|
[ |
204
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17949', |
205
|
|
|
'name' => 'Jacksons Bay 2000', |
206
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
207
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2123', |
208
|
|
|
'accuracy' => 0, |
209
|
|
|
], |
210
|
|
|
[ |
211
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17950', |
212
|
|
|
'name' => 'Mount Pleasant 2000', |
213
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
214
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2124', |
215
|
|
|
'accuracy' => 0, |
216
|
|
|
], |
217
|
|
|
[ |
218
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17951', |
219
|
|
|
'name' => 'Gawler 2000', |
220
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
221
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2125', |
222
|
|
|
'accuracy' => 0, |
223
|
|
|
], |
224
|
|
|
[ |
225
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17952', |
226
|
|
|
'name' => 'Timaru 2000', |
227
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
228
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2126', |
229
|
|
|
'accuracy' => 0, |
230
|
|
|
], |
231
|
|
|
[ |
232
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17953', |
233
|
|
|
'name' => 'Lindis Peak 2000', |
234
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
235
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2127', |
236
|
|
|
'accuracy' => 0, |
237
|
|
|
], |
238
|
|
|
[ |
239
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17954', |
240
|
|
|
'name' => 'Mount Nicholas 2000', |
241
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
242
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2128', |
243
|
|
|
'accuracy' => 0, |
244
|
|
|
], |
245
|
|
|
[ |
246
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17955', |
247
|
|
|
'name' => 'Mount York 2000', |
248
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
249
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2129', |
250
|
|
|
'accuracy' => 0, |
251
|
|
|
], |
252
|
|
|
[ |
253
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17956', |
254
|
|
|
'name' => 'Observation Point 2000', |
255
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
256
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2130', |
257
|
|
|
'accuracy' => 0, |
258
|
|
|
], |
259
|
|
|
[ |
260
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17957', |
261
|
|
|
'name' => 'North Taieri 2000', |
262
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
263
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2131', |
264
|
|
|
'accuracy' => 0, |
265
|
|
|
], |
266
|
|
|
[ |
267
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17958', |
268
|
|
|
'name' => 'Bluff 2000', |
269
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
270
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2132', |
271
|
|
|
'accuracy' => 0, |
272
|
|
|
], |
273
|
|
|
[ |
274
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19971', |
275
|
|
|
'name' => 'New Zealand Transverse Mercator 2000', |
276
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
277
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::2193', |
278
|
|
|
'accuracy' => 0, |
279
|
|
|
], |
280
|
|
|
[ |
281
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17959', |
282
|
|
|
'name' => 'Chatham Island Circuit 2000', |
283
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
284
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3764', |
285
|
|
|
'accuracy' => 0, |
286
|
|
|
], |
287
|
|
|
[ |
288
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17960', |
289
|
|
|
'name' => 'Auckland Islands Transverse Mercator 2000', |
290
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
291
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3788', |
292
|
|
|
'accuracy' => 0, |
293
|
|
|
], |
294
|
|
|
[ |
295
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17961', |
296
|
|
|
'name' => 'Campbell Island Transverse Mercator 2000', |
297
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
298
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3789', |
299
|
|
|
'accuracy' => 0, |
300
|
|
|
], |
301
|
|
|
[ |
302
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17962', |
303
|
|
|
'name' => 'Antipodes Islands Transverse Mercator 2000', |
304
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
305
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3790', |
306
|
|
|
'accuracy' => 0, |
307
|
|
|
], |
308
|
|
|
[ |
309
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17963', |
310
|
|
|
'name' => 'Raoul Island Transverse Mercator 2000', |
311
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
312
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3791', |
313
|
|
|
'accuracy' => 0, |
314
|
|
|
], |
315
|
|
|
[ |
316
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17965', |
317
|
|
|
'name' => 'Chatham Islands Transverse Mercator 2000', |
318
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
319
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3793', |
320
|
|
|
'accuracy' => 0, |
321
|
|
|
], |
322
|
|
|
[ |
323
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17964', |
324
|
|
|
'name' => 'New Zealand Continental Shelf Lambert Conformal 2000', |
325
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
326
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3851', |
327
|
|
|
'accuracy' => 0, |
328
|
|
|
], |
329
|
|
|
[ |
330
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1565', |
331
|
|
|
'name' => 'NZGD2000 to WGS 84 (1)', |
332
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4167', |
333
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
334
|
|
|
'accuracy' => 1.0, |
335
|
|
|
], |
336
|
|
|
[ |
337
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15376', |
338
|
|
|
'name' => 'American Samoa Lambert', |
339
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4169', |
340
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3102', |
341
|
|
|
'accuracy' => 0, |
342
|
|
|
], |
343
|
|
|
[ |
344
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8662', |
345
|
|
|
'name' => 'American Samoa 1962 to NAD83(HARN) (3)', |
346
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4169', |
347
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4152', |
348
|
|
|
'accuracy' => 5.0, |
349
|
|
|
], |
350
|
|
|
[ |
351
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1577', |
352
|
|
|
'name' => 'American Samoa 1962 to WGS 84 (1)', |
353
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4169', |
354
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
355
|
|
|
'accuracy' => 44.0, |
356
|
|
|
], |
357
|
|
|
[ |
358
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17449', |
359
|
|
|
'name' => 'Australian Map Grid zone 49', |
360
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
361
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20249', |
362
|
|
|
'accuracy' => 0, |
363
|
|
|
], |
364
|
|
|
[ |
365
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17450', |
366
|
|
|
'name' => 'Australian Map Grid zone 50', |
367
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
368
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20250', |
369
|
|
|
'accuracy' => 0, |
370
|
|
|
], |
371
|
|
|
[ |
372
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17451', |
373
|
|
|
'name' => 'Australian Map Grid zone 51', |
374
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
375
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20251', |
376
|
|
|
'accuracy' => 0, |
377
|
|
|
], |
378
|
|
|
[ |
379
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17452', |
380
|
|
|
'name' => 'Australian Map Grid zone 52', |
381
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
382
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20252', |
383
|
|
|
'accuracy' => 0, |
384
|
|
|
], |
385
|
|
|
[ |
386
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17453', |
387
|
|
|
'name' => 'Australian Map Grid zone 53', |
388
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
389
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20253', |
390
|
|
|
'accuracy' => 0, |
391
|
|
|
], |
392
|
|
|
[ |
393
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17454', |
394
|
|
|
'name' => 'Australian Map Grid zone 54', |
395
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
396
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20254', |
397
|
|
|
'accuracy' => 0, |
398
|
|
|
], |
399
|
|
|
[ |
400
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17455', |
401
|
|
|
'name' => 'Australian Map Grid zone 55', |
402
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
403
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20255', |
404
|
|
|
'accuracy' => 0, |
405
|
|
|
], |
406
|
|
|
[ |
407
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17456', |
408
|
|
|
'name' => 'Australian Map Grid zone 56', |
409
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
410
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20256', |
411
|
|
|
'accuracy' => 0, |
412
|
|
|
], |
413
|
|
|
[ |
414
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17457', |
415
|
|
|
'name' => 'Australian Map Grid zone 57', |
416
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
417
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20257', |
418
|
|
|
'accuracy' => 0, |
419
|
|
|
], |
420
|
|
|
[ |
421
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17458', |
422
|
|
|
'name' => 'Australian Map Grid zone 58', |
423
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
424
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20258', |
425
|
|
|
'accuracy' => 0, |
426
|
|
|
], |
427
|
|
|
[ |
428
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17360', |
429
|
|
|
'name' => 'Vicgrid66', |
430
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
431
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3110', |
432
|
|
|
'accuracy' => 0, |
433
|
|
|
], |
434
|
|
|
[ |
435
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1278', |
436
|
|
|
'name' => 'AGD66 to GDA94 (1)', |
437
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
438
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4283', |
439
|
|
|
'accuracy' => 5.0, |
440
|
|
|
], |
441
|
|
|
[ |
442
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1460', |
443
|
|
|
'name' => 'AGD66 to GDA94 (4)', |
444
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
445
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4283', |
446
|
|
|
'accuracy' => 1.0, |
447
|
|
|
], |
448
|
|
|
[ |
449
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1594', |
450
|
|
|
'name' => 'AGD66 to GDA94 (8)', |
451
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
452
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4283', |
453
|
|
|
'accuracy' => 1.0, |
454
|
|
|
], |
455
|
|
|
[ |
456
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1595', |
457
|
|
|
'name' => 'AGD66 to GDA94 (9)', |
458
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
459
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4283', |
460
|
|
|
'accuracy' => 1.0, |
461
|
|
|
], |
462
|
|
|
[ |
463
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15979', |
464
|
|
|
'name' => 'AGD66 to GDA94 (12)', |
465
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
466
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4283', |
467
|
|
|
'accuracy' => 3.0, |
468
|
|
|
], |
469
|
|
|
[ |
470
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1803', |
471
|
|
|
'name' => 'AGD66 to GDA94 (11)', |
472
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
473
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4283', |
474
|
|
|
'accuracy' => 0.5, |
475
|
|
|
], |
476
|
|
|
[ |
477
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5827', |
478
|
|
|
'name' => 'AGD66 to GDA94 (19)', |
479
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
480
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4283', |
481
|
|
|
'accuracy' => 0.5, |
482
|
|
|
], |
483
|
|
|
[ |
484
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5841', |
485
|
|
|
'name' => 'AGD66 to WGS 84 (19)', |
486
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
487
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
488
|
|
|
'accuracy' => 2.0, |
489
|
|
|
], |
490
|
|
|
[ |
491
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6905', |
492
|
|
|
'name' => 'AGD66 to WGS 84 (20)', |
493
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
494
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
495
|
|
|
'accuracy' => 9.0, |
496
|
|
|
], |
497
|
|
|
[ |
498
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6937', |
499
|
|
|
'name' => 'AGD66 to PNG94 (2)', |
500
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
501
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5546', |
502
|
|
|
'accuracy' => 1.0, |
503
|
|
|
], |
504
|
|
|
[ |
505
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6939', |
506
|
|
|
'name' => 'AGD66 to PNG94 (4)', |
507
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
508
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5546', |
509
|
|
|
'accuracy' => 1.0, |
510
|
|
|
], |
511
|
|
|
[ |
512
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6941', |
513
|
|
|
'name' => 'AGD66 to PNG94 (6)', |
514
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
515
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5546', |
516
|
|
|
'accuracy' => 0.5, |
517
|
|
|
], |
518
|
|
|
[ |
519
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5824', |
520
|
|
|
'name' => 'ACT Standard Grid', |
521
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
522
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5825', |
523
|
|
|
'accuracy' => 0, |
524
|
|
|
], |
525
|
|
|
[ |
526
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9185', |
527
|
|
|
'name' => 'AGD66 to GDA2020 (1)', |
528
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4202', |
529
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7844', |
530
|
|
|
'accuracy' => 0.05, |
531
|
|
|
], |
532
|
|
|
[ |
533
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17449', |
534
|
|
|
'name' => 'Australian Map Grid zone 49', |
535
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4203', |
536
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20349', |
537
|
|
|
'accuracy' => 0, |
538
|
|
|
], |
539
|
|
|
[ |
540
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17450', |
541
|
|
|
'name' => 'Australian Map Grid zone 50', |
542
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4203', |
543
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20350', |
544
|
|
|
'accuracy' => 0, |
545
|
|
|
], |
546
|
|
|
[ |
547
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17451', |
548
|
|
|
'name' => 'Australian Map Grid zone 51', |
549
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4203', |
550
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20351', |
551
|
|
|
'accuracy' => 0, |
552
|
|
|
], |
553
|
|
|
[ |
554
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17452', |
555
|
|
|
'name' => 'Australian Map Grid zone 52', |
556
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4203', |
557
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20352', |
558
|
|
|
'accuracy' => 0, |
559
|
|
|
], |
560
|
|
|
[ |
561
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17453', |
562
|
|
|
'name' => 'Australian Map Grid zone 53', |
563
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4203', |
564
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20353', |
565
|
|
|
'accuracy' => 0, |
566
|
|
|
], |
567
|
|
|
[ |
568
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17454', |
569
|
|
|
'name' => 'Australian Map Grid zone 54', |
570
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4203', |
571
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20354', |
572
|
|
|
'accuracy' => 0, |
573
|
|
|
], |
574
|
|
|
[ |
575
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17455', |
576
|
|
|
'name' => 'Australian Map Grid zone 55', |
577
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4203', |
578
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20355', |
579
|
|
|
'accuracy' => 0, |
580
|
|
|
], |
581
|
|
|
[ |
582
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17456', |
583
|
|
|
'name' => 'Australian Map Grid zone 56', |
584
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4203', |
585
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20356', |
586
|
|
|
'accuracy' => 0, |
587
|
|
|
], |
588
|
|
|
[ |
589
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1280', |
590
|
|
|
'name' => 'AGD84 to GDA94 (2)', |
591
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4203', |
592
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4283', |
593
|
|
|
'accuracy' => 1.0, |
594
|
|
|
], |
595
|
|
|
[ |
596
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1804', |
597
|
|
|
'name' => 'AGD84 to GDA94 (5)', |
598
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4203', |
599
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4283', |
600
|
|
|
'accuracy' => 0.1, |
601
|
|
|
], |
602
|
|
|
[ |
603
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19917', |
604
|
|
|
'name' => 'New Zealand Map Grid', |
605
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
606
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27200', |
607
|
|
|
'accuracy' => 0, |
608
|
|
|
], |
609
|
|
|
[ |
610
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17901', |
611
|
|
|
'name' => 'Mount Eden Circuit', |
612
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
613
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27205', |
614
|
|
|
'accuracy' => 0, |
615
|
|
|
], |
616
|
|
|
[ |
617
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17902', |
618
|
|
|
'name' => 'Bay of Plenty Circuit', |
619
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
620
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27206', |
621
|
|
|
'accuracy' => 0, |
622
|
|
|
], |
623
|
|
|
[ |
624
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17903', |
625
|
|
|
'name' => 'Poverty Bay Circuit', |
626
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
627
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27207', |
628
|
|
|
'accuracy' => 0, |
629
|
|
|
], |
630
|
|
|
[ |
631
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17904', |
632
|
|
|
'name' => 'Hawkes Bay Circuit', |
633
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
634
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27208', |
635
|
|
|
'accuracy' => 0, |
636
|
|
|
], |
637
|
|
|
[ |
638
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17905', |
639
|
|
|
'name' => 'Taranaki Circuit', |
640
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
641
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27209', |
642
|
|
|
'accuracy' => 0, |
643
|
|
|
], |
644
|
|
|
[ |
645
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17906', |
646
|
|
|
'name' => 'Tuhirangi Circuit', |
647
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
648
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27210', |
649
|
|
|
'accuracy' => 0, |
650
|
|
|
], |
651
|
|
|
[ |
652
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17907', |
653
|
|
|
'name' => 'Wanganui Circuit', |
654
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
655
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27211', |
656
|
|
|
'accuracy' => 0, |
657
|
|
|
], |
658
|
|
|
[ |
659
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17908', |
660
|
|
|
'name' => 'Wairarapa Circuit', |
661
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
662
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27212', |
663
|
|
|
'accuracy' => 0, |
664
|
|
|
], |
665
|
|
|
[ |
666
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17909', |
667
|
|
|
'name' => 'Wellington Circuit', |
668
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
669
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27213', |
670
|
|
|
'accuracy' => 0, |
671
|
|
|
], |
672
|
|
|
[ |
673
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17910', |
674
|
|
|
'name' => 'Collingwood Circuit', |
675
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
676
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27214', |
677
|
|
|
'accuracy' => 0, |
678
|
|
|
], |
679
|
|
|
[ |
680
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17911', |
681
|
|
|
'name' => 'Nelson Circuit', |
682
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
683
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27215', |
684
|
|
|
'accuracy' => 0, |
685
|
|
|
], |
686
|
|
|
[ |
687
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17912', |
688
|
|
|
'name' => 'Karamea Circuit', |
689
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
690
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27216', |
691
|
|
|
'accuracy' => 0, |
692
|
|
|
], |
693
|
|
|
[ |
694
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17913', |
695
|
|
|
'name' => 'Buller Circuit', |
696
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
697
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27217', |
698
|
|
|
'accuracy' => 0, |
699
|
|
|
], |
700
|
|
|
[ |
701
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17914', |
702
|
|
|
'name' => 'Grey Circuit', |
703
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
704
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27218', |
705
|
|
|
'accuracy' => 0, |
706
|
|
|
], |
707
|
|
|
[ |
708
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17915', |
709
|
|
|
'name' => 'Amuri Circuit', |
710
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
711
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27219', |
712
|
|
|
'accuracy' => 0, |
713
|
|
|
], |
714
|
|
|
[ |
715
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17916', |
716
|
|
|
'name' => 'Marlborough Circuit', |
717
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
718
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27220', |
719
|
|
|
'accuracy' => 0, |
720
|
|
|
], |
721
|
|
|
[ |
722
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17917', |
723
|
|
|
'name' => 'Hokitika Circuit', |
724
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
725
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27221', |
726
|
|
|
'accuracy' => 0, |
727
|
|
|
], |
728
|
|
|
[ |
729
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17918', |
730
|
|
|
'name' => 'Okarito Circuit', |
731
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
732
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27222', |
733
|
|
|
'accuracy' => 0, |
734
|
|
|
], |
735
|
|
|
[ |
736
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17919', |
737
|
|
|
'name' => 'Jacksons Bay Circuit', |
738
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
739
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27223', |
740
|
|
|
'accuracy' => 0, |
741
|
|
|
], |
742
|
|
|
[ |
743
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17920', |
744
|
|
|
'name' => 'Mount Pleasant Circuit', |
745
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
746
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27224', |
747
|
|
|
'accuracy' => 0, |
748
|
|
|
], |
749
|
|
|
[ |
750
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17921', |
751
|
|
|
'name' => 'Gawler Circuit', |
752
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
753
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27225', |
754
|
|
|
'accuracy' => 0, |
755
|
|
|
], |
756
|
|
|
[ |
757
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17922', |
758
|
|
|
'name' => 'Timaru Circuit', |
759
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
760
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27226', |
761
|
|
|
'accuracy' => 0, |
762
|
|
|
], |
763
|
|
|
[ |
764
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17923', |
765
|
|
|
'name' => 'Lindis Peak Circuit', |
766
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
767
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27227', |
768
|
|
|
'accuracy' => 0, |
769
|
|
|
], |
770
|
|
|
[ |
771
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17924', |
772
|
|
|
'name' => 'Mount Nicholas Circuit', |
773
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
774
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27228', |
775
|
|
|
'accuracy' => 0, |
776
|
|
|
], |
777
|
|
|
[ |
778
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17925', |
779
|
|
|
'name' => 'Mount York Circuit', |
780
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
781
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27229', |
782
|
|
|
'accuracy' => 0, |
783
|
|
|
], |
784
|
|
|
[ |
785
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17926', |
786
|
|
|
'name' => 'Observation Point Circuit', |
787
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
788
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27230', |
789
|
|
|
'accuracy' => 0, |
790
|
|
|
], |
791
|
|
|
[ |
792
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17927', |
793
|
|
|
'name' => 'North Taieri Circuit', |
794
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
795
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27231', |
796
|
|
|
'accuracy' => 0, |
797
|
|
|
], |
798
|
|
|
[ |
799
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17928', |
800
|
|
|
'name' => 'Bluff Circuit', |
801
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
802
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27232', |
803
|
|
|
'accuracy' => 0, |
804
|
|
|
], |
805
|
|
|
[ |
806
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18141', |
807
|
|
|
'name' => 'New Zealand North Island National Grid', |
808
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
809
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27291', |
810
|
|
|
'accuracy' => 0, |
811
|
|
|
], |
812
|
|
|
[ |
813
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::18142', |
814
|
|
|
'name' => 'New Zealand South Island National Grid', |
815
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
816
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::27292', |
817
|
|
|
'accuracy' => 0, |
818
|
|
|
], |
819
|
|
|
[ |
820
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1566', |
821
|
|
|
'name' => 'NZGD49 to NZGD2000 (1)', |
822
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
823
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4167', |
824
|
|
|
'accuracy' => 5.0, |
825
|
|
|
], |
826
|
|
|
[ |
827
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1568', |
828
|
|
|
'name' => 'NZGD49 to NZGD2000 (3)', |
829
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
830
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4167', |
831
|
|
|
'accuracy' => 0.2, |
832
|
|
|
], |
833
|
|
|
[ |
834
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1701', |
835
|
|
|
'name' => 'NZGD49 to NZGD2000 (2)', |
836
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
837
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4167', |
838
|
|
|
'accuracy' => 4.0, |
839
|
|
|
], |
840
|
|
|
[ |
841
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1151', |
842
|
|
|
'name' => 'NZGD49 to WGS 84 (1)', |
843
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4272', |
844
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
845
|
|
|
'accuracy' => 8.0, |
846
|
|
|
], |
847
|
|
|
[ |
848
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10424', |
849
|
|
|
'name' => 'Albany Grid 1994', |
850
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
851
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10448', |
852
|
|
|
'accuracy' => 0, |
853
|
|
|
], |
854
|
|
|
[ |
855
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10425', |
856
|
|
|
'name' => 'Barrow Island Grid 1994', |
857
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
858
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10449', |
859
|
|
|
'accuracy' => 0, |
860
|
|
|
], |
861
|
|
|
[ |
862
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10426', |
863
|
|
|
'name' => 'Broome Grid 1994', |
864
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
865
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10450', |
866
|
|
|
'accuracy' => 0, |
867
|
|
|
], |
868
|
|
|
[ |
869
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10427', |
870
|
|
|
'name' => 'Busselton Coastal Grid 1994', |
871
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
872
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10451', |
873
|
|
|
'accuracy' => 0, |
874
|
|
|
], |
875
|
|
|
[ |
876
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10428', |
877
|
|
|
'name' => 'Carnarvon Grid 1994', |
878
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
879
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10452', |
880
|
|
|
'accuracy' => 0, |
881
|
|
|
], |
882
|
|
|
[ |
883
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10429', |
884
|
|
|
'name' => 'Collie Grid 1994', |
885
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
886
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10453', |
887
|
|
|
'accuracy' => 0, |
888
|
|
|
], |
889
|
|
|
[ |
890
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10430', |
891
|
|
|
'name' => 'Esperance Grid 1994', |
892
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
893
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10454', |
894
|
|
|
'accuracy' => 0, |
895
|
|
|
], |
896
|
|
|
[ |
897
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10437', |
898
|
|
|
'name' => 'Exmouth Grid 1994', |
899
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
900
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10455', |
901
|
|
|
'accuracy' => 0, |
902
|
|
|
], |
903
|
|
|
[ |
904
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10438', |
905
|
|
|
'name' => 'Geraldton Coastal Grid 1994', |
906
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
907
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10456', |
908
|
|
|
'accuracy' => 0, |
909
|
|
|
], |
910
|
|
|
[ |
911
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10439', |
912
|
|
|
'name' => 'Goldfields Grid 1994', |
913
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
914
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10457', |
915
|
|
|
'accuracy' => 0, |
916
|
|
|
], |
917
|
|
|
[ |
918
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10440', |
919
|
|
|
'name' => 'Jurien Coastal Grid 1994', |
920
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
921
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10458', |
922
|
|
|
'accuracy' => 0, |
923
|
|
|
], |
924
|
|
|
[ |
925
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10441', |
926
|
|
|
'name' => 'Kalbarri Grid 1994', |
927
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
928
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10459', |
929
|
|
|
'accuracy' => 0, |
930
|
|
|
], |
931
|
|
|
[ |
932
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10442', |
933
|
|
|
'name' => 'Karratha Grid 1994', |
934
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
935
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10460', |
936
|
|
|
'accuracy' => 0, |
937
|
|
|
], |
938
|
|
|
[ |
939
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10443', |
940
|
|
|
'name' => 'Kununurra Grid 1994', |
941
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
942
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10461', |
943
|
|
|
'accuracy' => 0, |
944
|
|
|
], |
945
|
|
|
[ |
946
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10444', |
947
|
|
|
'name' => 'Lancelin Coastal Grid 1994', |
948
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
949
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10462', |
950
|
|
|
'accuracy' => 0, |
951
|
|
|
], |
952
|
|
|
[ |
953
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10445', |
954
|
|
|
'name' => 'Margaret River Coastal Grid 1994', |
955
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
956
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10463', |
957
|
|
|
'accuracy' => 0, |
958
|
|
|
], |
959
|
|
|
[ |
960
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10446', |
961
|
|
|
'name' => 'Perth Coastal Grid 1994', |
962
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
963
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10464', |
964
|
|
|
'accuracy' => 0, |
965
|
|
|
], |
966
|
|
|
[ |
967
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10447', |
968
|
|
|
'name' => 'Port Hedland Grid 1994', |
969
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
970
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10465', |
971
|
|
|
'accuracy' => 0, |
972
|
|
|
], |
973
|
|
|
[ |
974
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17348', |
975
|
|
|
'name' => 'Map Grid of Australia zone 48', |
976
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
977
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::28348', |
978
|
|
|
'accuracy' => 0, |
979
|
|
|
], |
980
|
|
|
[ |
981
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17349', |
982
|
|
|
'name' => 'Map Grid of Australia zone 49', |
983
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
984
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::28349', |
985
|
|
|
'accuracy' => 0, |
986
|
|
|
], |
987
|
|
|
[ |
988
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17350', |
989
|
|
|
'name' => 'Map Grid of Australia zone 50', |
990
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
991
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::28350', |
992
|
|
|
'accuracy' => 0, |
993
|
|
|
], |
994
|
|
|
[ |
995
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17351', |
996
|
|
|
'name' => 'Map Grid of Australia zone 51', |
997
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
998
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::28351', |
999
|
|
|
'accuracy' => 0, |
1000
|
|
|
], |
1001
|
|
|
[ |
1002
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17352', |
1003
|
|
|
'name' => 'Map Grid of Australia zone 52', |
1004
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1005
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::28352', |
1006
|
|
|
'accuracy' => 0, |
1007
|
|
|
], |
1008
|
|
|
[ |
1009
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17353', |
1010
|
|
|
'name' => 'Map Grid of Australia zone 53', |
1011
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1012
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::28353', |
1013
|
|
|
'accuracy' => 0, |
1014
|
|
|
], |
1015
|
|
|
[ |
1016
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17354', |
1017
|
|
|
'name' => 'Map Grid of Australia zone 54', |
1018
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1019
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::28354', |
1020
|
|
|
'accuracy' => 0, |
1021
|
|
|
], |
1022
|
|
|
[ |
1023
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17355', |
1024
|
|
|
'name' => 'Map Grid of Australia zone 55', |
1025
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1026
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::28355', |
1027
|
|
|
'accuracy' => 0, |
1028
|
|
|
], |
1029
|
|
|
[ |
1030
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17356', |
1031
|
|
|
'name' => 'Map Grid of Australia zone 56', |
1032
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1033
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::28356', |
1034
|
|
|
'accuracy' => 0, |
1035
|
|
|
], |
1036
|
|
|
[ |
1037
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17357', |
1038
|
|
|
'name' => 'Map Grid of Australia zone 57', |
1039
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1040
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::28357', |
1041
|
|
|
'accuracy' => 0, |
1042
|
|
|
], |
1043
|
|
|
[ |
1044
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17358', |
1045
|
|
|
'name' => 'Map Grid of Australia zone 58', |
1046
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1047
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::28358', |
1048
|
|
|
'accuracy' => 0, |
1049
|
|
|
], |
1050
|
|
|
[ |
1051
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17359', |
1052
|
|
|
'name' => 'South Australia Lambert', |
1053
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1054
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3107', |
1055
|
|
|
'accuracy' => 0, |
1056
|
|
|
], |
1057
|
|
|
[ |
1058
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17361', |
1059
|
|
|
'name' => 'Vicgrid', |
1060
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1061
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3111', |
1062
|
|
|
'accuracy' => 0, |
1063
|
|
|
], |
1064
|
|
|
[ |
1065
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17362', |
1066
|
|
|
'name' => 'Geoscience Australia Standard National Scale Lambert Projection', |
1067
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1068
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3112', |
1069
|
|
|
'accuracy' => 0, |
1070
|
|
|
], |
1071
|
|
|
[ |
1072
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17363', |
1073
|
|
|
'name' => 'Brisbane City Survey Grid 02', |
1074
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1075
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3113', |
1076
|
|
|
'accuracy' => 0, |
1077
|
|
|
], |
1078
|
|
|
[ |
1079
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17364', |
1080
|
|
|
'name' => 'New South Wales Lambert', |
1081
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1082
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3308', |
1083
|
|
|
'accuracy' => 0, |
1084
|
|
|
], |
1085
|
|
|
[ |
1086
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17365', |
1087
|
|
|
'name' => 'Australian Albers', |
1088
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1089
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3577', |
1090
|
|
|
'accuracy' => 0, |
1091
|
|
|
], |
1092
|
|
|
[ |
1093
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6717', |
1094
|
|
|
'name' => 'Christmas Island Grid 1994', |
1095
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1096
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6721', |
1097
|
|
|
'accuracy' => 0, |
1098
|
|
|
], |
1099
|
|
|
[ |
1100
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6719', |
1101
|
|
|
'name' => 'Cocos Island Grid 1994', |
1102
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1103
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6723', |
1104
|
|
|
'accuracy' => 0, |
1105
|
|
|
], |
1106
|
|
|
[ |
1107
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6729', |
1108
|
|
|
'name' => 'Map Grid of Australia zone 46', |
1109
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1110
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6736', |
1111
|
|
|
'accuracy' => 0, |
1112
|
|
|
], |
1113
|
|
|
[ |
1114
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6730', |
1115
|
|
|
'name' => 'Map Grid of Australia zone 47', |
1116
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1117
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6737', |
1118
|
|
|
'accuracy' => 0, |
1119
|
|
|
], |
1120
|
|
|
[ |
1121
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6731', |
1122
|
|
|
'name' => 'Map Grid of Australia zone 59', |
1123
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1124
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6738', |
1125
|
|
|
'accuracy' => 0, |
1126
|
|
|
], |
1127
|
|
|
[ |
1128
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8048', |
1129
|
|
|
'name' => 'GDA94 to GDA2020 (1)', |
1130
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1131
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7844', |
1132
|
|
|
'accuracy' => 0.01, |
1133
|
|
|
], |
1134
|
|
|
[ |
1135
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8447', |
1136
|
|
|
'name' => 'GDA94 to GDA2020 (2)', |
1137
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1138
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7844', |
1139
|
|
|
'accuracy' => 0.05, |
1140
|
|
|
], |
1141
|
|
|
[ |
1142
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8389', |
1143
|
|
|
'name' => 'WEIPA94', |
1144
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4283', |
1145
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8391', |
1146
|
|
|
'accuracy' => 0, |
1147
|
|
|
], |
1148
|
|
|
[ |
1149
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10599', |
1150
|
|
|
'name' => 'GLANCE projection - Oceania', |
1151
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1152
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::10601', |
1153
|
|
|
'accuracy' => 0, |
1154
|
|
|
], |
1155
|
|
|
[ |
1156
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19843', |
1157
|
|
|
'name' => 'Mercator 41', |
1158
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1159
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3994', |
1160
|
|
|
'accuracy' => 0, |
1161
|
|
|
], |
1162
|
|
|
[ |
1163
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4460', |
1164
|
|
|
'name' => 'Australian Centre for Remote Sensing Lambert Conformal Projection', |
1165
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1166
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4462', |
1167
|
|
|
'accuracy' => 0, |
1168
|
|
|
], |
1169
|
|
|
[ |
1170
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6716', |
1171
|
|
|
'name' => 'Christmas Island Grid 1992', |
1172
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1173
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6720', |
1174
|
|
|
'accuracy' => 0, |
1175
|
|
|
], |
1176
|
|
|
[ |
1177
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6718', |
1178
|
|
|
'name' => 'Cocos Island Grid 1992', |
1179
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1180
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6722', |
1181
|
|
|
'accuracy' => 0, |
1182
|
|
|
], |
1183
|
|
|
[ |
1184
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9690', |
1185
|
|
|
'name' => 'WGS 84 to GDA2020 (3)', |
1186
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1187
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7844', |
1188
|
|
|
'accuracy' => 3.0, |
1189
|
|
|
], |
1190
|
|
|
[ |
1191
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9691', |
1192
|
|
|
'name' => 'WGS 84 to GDA2020 (4)', |
1193
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1194
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7844', |
1195
|
|
|
'accuracy' => 3.0, |
1196
|
|
|
], |
1197
|
|
|
[ |
1198
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9190', |
1199
|
|
|
'name' => 'NIWA Albers', |
1200
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1201
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9191', |
1202
|
|
|
'accuracy' => 0, |
1203
|
|
|
], |
1204
|
|
|
[ |
1205
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4453', |
1206
|
|
|
'name' => 'NZVD2009 height to Dunedin-Bluff 1960 height (1)', |
1207
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4440', |
1208
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4458', |
1209
|
|
|
'accuracy' => 0.04, |
1210
|
|
|
], |
1211
|
|
|
[ |
1212
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4442', |
1213
|
|
|
'name' => 'NZVD2009 height to Auckland 1946 height (1)', |
1214
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4440', |
1215
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5759', |
1216
|
|
|
'accuracy' => 0.05, |
1217
|
|
|
], |
1218
|
|
|
[ |
1219
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4451', |
1220
|
|
|
'name' => 'NZVD2009 height to Bluff 1955 height (1)', |
1221
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4440', |
1222
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5760', |
1223
|
|
|
'accuracy' => 0.05, |
1224
|
|
|
], |
1225
|
|
|
[ |
1226
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4450', |
1227
|
|
|
'name' => 'NZVD2009 height to Dunedin 1958 height (1)', |
1228
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4440', |
1229
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5761', |
1230
|
|
|
'accuracy' => 0.07000000000000001, |
1231
|
|
|
], |
1232
|
|
|
[ |
1233
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4445', |
1234
|
|
|
'name' => 'NZVD2009 height to Gisborne 1926 height (1)', |
1235
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4440', |
1236
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5762', |
1237
|
|
|
'accuracy' => 0.02, |
1238
|
|
|
], |
1239
|
|
|
[ |
1240
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4449', |
1241
|
|
|
'name' => 'NZVD2009 height to Lyttelton 1937 height (1)', |
1242
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4440', |
1243
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5763', |
1244
|
|
|
'accuracy' => 0.09, |
1245
|
|
|
], |
1246
|
|
|
[ |
1247
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4443', |
1248
|
|
|
'name' => 'NZVD2009 height to Moturiki 1953 height (1)', |
1249
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4440', |
1250
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5764', |
1251
|
|
|
'accuracy' => 0.06, |
1252
|
|
|
], |
1253
|
|
|
[ |
1254
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4446', |
1255
|
|
|
'name' => 'NZVD2009 height to Napier 1962 height (1)', |
1256
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4440', |
1257
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5765', |
1258
|
|
|
'accuracy' => 0.05, |
1259
|
|
|
], |
1260
|
|
|
[ |
1261
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4444', |
1262
|
|
|
'name' => 'NZVD2009 height to Nelson 1955 height (1)', |
1263
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4440', |
1264
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5766', |
1265
|
|
|
'accuracy' => 0.07000000000000001, |
1266
|
|
|
], |
1267
|
|
|
[ |
1268
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4441', |
1269
|
|
|
'name' => 'NZVD2009 height to One Tree Point 1964 height (1)', |
1270
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4440', |
1271
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5767', |
1272
|
|
|
'accuracy' => 0.03, |
1273
|
|
|
], |
1274
|
|
|
[ |
1275
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4447', |
1276
|
|
|
'name' => 'NZVD2009 height to Taranaki 1970 height (1)', |
1277
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4440', |
1278
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5769', |
1279
|
|
|
'accuracy' => 0.05, |
1280
|
|
|
], |
1281
|
|
|
[ |
1282
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4448', |
1283
|
|
|
'name' => 'NZVD2009 height to Wellington 1953 height (1)', |
1284
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4440', |
1285
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5770', |
1286
|
|
|
'accuracy' => 0.04, |
1287
|
|
|
], |
1288
|
|
|
[ |
1289
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4452', |
1290
|
|
|
'name' => 'NZVD2009 height to Stewart Island 1977 height (1)', |
1291
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4440', |
1292
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5772', |
1293
|
|
|
'accuracy' => 0.15, |
1294
|
|
|
], |
1295
|
|
|
[ |
1296
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1924', |
1297
|
|
|
'name' => 'Tahiti 52 to WGS 84 (1)', |
1298
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4628', |
1299
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1300
|
|
|
'accuracy' => 10.0, |
1301
|
|
|
], |
1302
|
|
|
[ |
1303
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8833', |
1304
|
|
|
'name' => 'Tahaa 54 to RGPF (1)', |
1305
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4629', |
1306
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4687', |
1307
|
|
|
'accuracy' => 0.5, |
1308
|
|
|
], |
1309
|
|
|
[ |
1310
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8848', |
1311
|
|
|
'name' => 'IGN72 Nuku Hiva to WGS 84 (5)', |
1312
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4630', |
1313
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1314
|
|
|
'accuracy' => 1.0, |
1315
|
|
|
], |
1316
|
|
|
[ |
1317
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8847', |
1318
|
|
|
'name' => 'IGN72 Nuku Hiva to RGPF (1)', |
1319
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4630', |
1320
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4687', |
1321
|
|
|
'accuracy' => 0.5, |
1322
|
|
|
], |
1323
|
|
|
[ |
1324
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8849', |
1325
|
|
|
'name' => 'IGN72 Nuku Hiva to RGPF (2)', |
1326
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4630', |
1327
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4687', |
1328
|
|
|
'accuracy' => 2.0, |
1329
|
|
|
], |
1330
|
|
|
[ |
1331
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8851', |
1332
|
|
|
'name' => 'IGN72 Nuku Hiva to RGPF (3)', |
1333
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4630', |
1334
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4687', |
1335
|
|
|
'accuracy' => 0.5, |
1336
|
|
|
], |
1337
|
|
|
[ |
1338
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15847', |
1339
|
|
|
'name' => 'MOP78 to WGS 84 (2)', |
1340
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4639', |
1341
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1342
|
|
|
'accuracy' => 10.0, |
1343
|
|
|
], |
1344
|
|
|
[ |
1345
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15893', |
1346
|
|
|
'name' => 'ST84 Ile des Pins to RGNC91-93 (1)', |
1347
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4642', |
1348
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4749', |
1349
|
|
|
'accuracy' => 0.1, |
1350
|
|
|
], |
1351
|
|
|
[ |
1352
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1931', |
1353
|
|
|
'name' => 'ST71 Belep to WGS 84 (1)', |
1354
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4643', |
1355
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1356
|
|
|
'accuracy' => 1.0, |
1357
|
|
|
], |
1358
|
|
|
[ |
1359
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19873', |
1360
|
|
|
'name' => 'Noumea Lambert', |
1361
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4644', |
1362
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3165', |
1363
|
|
|
'accuracy' => 0, |
1364
|
|
|
], |
1365
|
|
|
[ |
1366
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19874', |
1367
|
|
|
'name' => 'Noumea Lambert 2', |
1368
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4644', |
1369
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3166', |
1370
|
|
|
'accuracy' => 0, |
1371
|
|
|
], |
1372
|
|
|
[ |
1373
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15889', |
1374
|
|
|
'name' => 'NEA74 Noumea to RGNC91-93 (2)', |
1375
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4644', |
1376
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4749', |
1377
|
|
|
'accuracy' => 0.1, |
1378
|
|
|
], |
1379
|
|
|
[ |
1380
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9328', |
1381
|
|
|
'name' => 'NEA74 Noumea to RGNC91-93 (3)', |
1382
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4644', |
1383
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4749', |
1384
|
|
|
'accuracy' => 0.05, |
1385
|
|
|
], |
1386
|
|
|
[ |
1387
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9329', |
1388
|
|
|
'name' => 'IGN72 Grande Terre to RGNC91-93 (4)', |
1389
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4662', |
1390
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4749', |
1391
|
|
|
'accuracy' => 0.1, |
1392
|
|
|
], |
1393
|
|
|
[ |
1394
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9330', |
1395
|
|
|
'name' => 'IGN72 Grande Terre to RGNC91-93 (5)', |
1396
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4662', |
1397
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4749', |
1398
|
|
|
'accuracy' => 0.05, |
1399
|
|
|
], |
1400
|
|
|
[ |
1401
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1080', |
1402
|
|
|
'name' => 'CI1971 to WGS 84 (1)', |
1403
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4672', |
1404
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1405
|
|
|
'accuracy' => 26.0, |
1406
|
|
|
], |
1407
|
|
|
[ |
1408
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5517', |
1409
|
|
|
'name' => 'Chatham Islands Map Grid', |
1410
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4672', |
1411
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5518', |
1412
|
|
|
'accuracy' => 0, |
1413
|
|
|
], |
1414
|
|
|
[ |
1415
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1082', |
1416
|
|
|
'name' => 'CI1979 to NZGD2000 (1)', |
1417
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4673', |
1418
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4167', |
1419
|
|
|
'accuracy' => 2.0, |
1420
|
|
|
], |
1421
|
|
|
[ |
1422
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5517', |
1423
|
|
|
'name' => 'Chatham Islands Map Grid', |
1424
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4673', |
1425
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5519', |
1426
|
|
|
'accuracy' => 0, |
1427
|
|
|
], |
1428
|
|
|
[ |
1429
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15399', |
1430
|
|
|
'name' => 'Yap Islands', |
1431
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4675', |
1432
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3295', |
1433
|
|
|
'accuracy' => 0, |
1434
|
|
|
], |
1435
|
|
|
[ |
1436
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15400', |
1437
|
|
|
'name' => 'Guam SPCS', |
1438
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4675', |
1439
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3993', |
1440
|
|
|
'accuracy' => 0, |
1441
|
|
|
], |
1442
|
|
|
[ |
1443
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8665', |
1444
|
|
|
'name' => 'Guam 1963 to NAD83(HARN) (2)', |
1445
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4675', |
1446
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4152', |
1447
|
|
|
'accuracy' => 5.0, |
1448
|
|
|
], |
1449
|
|
|
[ |
1450
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::1070', |
1451
|
|
|
'name' => 'Guam 1963 to WGS 84 (1)', |
1452
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4675', |
1453
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1454
|
|
|
'accuracy' => 6.0, |
1455
|
|
|
], |
1456
|
|
|
[ |
1457
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15833', |
1458
|
|
|
'name' => 'RGPF to WGS 84 (2)', |
1459
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4687', |
1460
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1461
|
|
|
'accuracy' => 1.0, |
1462
|
|
|
], |
1463
|
|
|
[ |
1464
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8835', |
1465
|
|
|
'name' => 'Fatu Iva 72 to RGPF (1)', |
1466
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4688', |
1467
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4687', |
1468
|
|
|
'accuracy' => 2.0, |
1469
|
|
|
], |
1470
|
|
|
[ |
1471
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8843', |
1472
|
|
|
'name' => 'IGN63 Hiva Oa to RGPF (1)', |
1473
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4689', |
1474
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4687', |
1475
|
|
|
'accuracy' => 0.5, |
1476
|
|
|
], |
1477
|
|
|
[ |
1478
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8845', |
1479
|
|
|
'name' => 'IGN63 Hiva Oa to RGPF (2)', |
1480
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4689', |
1481
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4687', |
1482
|
|
|
'accuracy' => 2.0, |
1483
|
|
|
], |
1484
|
|
|
[ |
1485
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8829', |
1486
|
|
|
'name' => 'Tahiti 79 to RGPF (1)', |
1487
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4690', |
1488
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4687', |
1489
|
|
|
'accuracy' => 0.5, |
1490
|
|
|
], |
1491
|
|
|
[ |
1492
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8831', |
1493
|
|
|
'name' => 'Moorea 87 to RGPF (2)', |
1494
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4691', |
1495
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4687', |
1496
|
|
|
'accuracy' => 0.5, |
1497
|
|
|
], |
1498
|
|
|
[ |
1499
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15759', |
1500
|
|
|
'name' => 'Maupiti 83 to RGPF (1)', |
1501
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4692', |
1502
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4687', |
1503
|
|
|
'accuracy' => 0.5, |
1504
|
|
|
], |
1505
|
|
|
[ |
1506
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15795', |
1507
|
|
|
'name' => 'Tern Island 1961 to WGS 84 (1)', |
1508
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4707', |
1509
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1510
|
|
|
'accuracy' => 44.0, |
1511
|
|
|
], |
1512
|
|
|
[ |
1513
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15794', |
1514
|
|
|
'name' => 'Cocos Islands 1965 to WGS 84 (1)', |
1515
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4708', |
1516
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1517
|
|
|
'accuracy' => 44.0, |
1518
|
|
|
], |
1519
|
|
|
[ |
1520
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15801', |
1521
|
|
|
'name' => 'Bellevue to WGS 84 (1)', |
1522
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4714', |
1523
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1524
|
|
|
'accuracy' => 35.0, |
1525
|
|
|
], |
1526
|
|
|
[ |
1527
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15803', |
1528
|
|
|
'name' => 'Phoenix Islands 1966 to WGS 84 (1)', |
1529
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4716', |
1530
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1531
|
|
|
'accuracy' => 26.0, |
1532
|
|
|
], |
1533
|
|
|
[ |
1534
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15805', |
1535
|
|
|
'name' => 'Solomon 1968 to WGS 84 (1)', |
1536
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4718', |
1537
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1538
|
|
|
'accuracy' => 44.0, |
1539
|
|
|
], |
1540
|
|
|
[ |
1541
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15807', |
1542
|
|
|
'name' => 'Solomon 1968 to WGS 84 (2)', |
1543
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4718', |
1544
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1545
|
|
|
'accuracy' => 44.0, |
1546
|
|
|
], |
1547
|
|
|
[ |
1548
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19859', |
1549
|
|
|
'name' => 'Fiji Map Grid', |
1550
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4720', |
1551
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3460', |
1552
|
|
|
'accuracy' => 0, |
1553
|
|
|
], |
1554
|
|
|
[ |
1555
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15876', |
1556
|
|
|
'name' => 'Fiji 1986 to WGS 84 (1)', |
1557
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4720', |
1558
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1559
|
|
|
'accuracy' => 2.0, |
1560
|
|
|
], |
1561
|
|
|
[ |
1562
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15875', |
1563
|
|
|
'name' => 'Fiji 1956 to WGS 84 (1)', |
1564
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4721', |
1565
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1566
|
|
|
'accuracy' => 7.0, |
1567
|
|
|
], |
1568
|
|
|
[ |
1569
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15809', |
1570
|
|
|
'name' => 'Johnston Island 1961 to WGS 84 (1)', |
1571
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4725', |
1572
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1573
|
|
|
'accuracy' => 44.0, |
1574
|
|
|
], |
1575
|
|
|
[ |
1576
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15818', |
1577
|
|
|
'name' => 'Midway 1961 to WGS 84 (2)', |
1578
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4727', |
1579
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1580
|
|
|
'accuracy' => 44.0, |
1581
|
|
|
], |
1582
|
|
|
[ |
1583
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15819', |
1584
|
|
|
'name' => 'Pitcairn 1967 to WGS 84 (1)', |
1585
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4729', |
1586
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1587
|
|
|
'accuracy' => 44.0, |
1588
|
|
|
], |
1589
|
|
|
[ |
1590
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15820', |
1591
|
|
|
'name' => 'Santo 1965 to WGS 84 (1)', |
1592
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4730', |
1593
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1594
|
|
|
'accuracy' => 44.0, |
1595
|
|
|
], |
1596
|
|
|
[ |
1597
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15822', |
1598
|
|
|
'name' => 'Marshall Islands 1960 to WGS 84 (1)', |
1599
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4732', |
1600
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1601
|
|
|
'accuracy' => 6.0, |
1602
|
|
|
], |
1603
|
|
|
[ |
1604
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15823', |
1605
|
|
|
'name' => 'Wake Island 1952 to WGS 84 (1)', |
1606
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4733', |
1607
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1608
|
|
|
'accuracy' => 44.0, |
1609
|
|
|
], |
1610
|
|
|
[ |
1611
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15810', |
1612
|
|
|
'name' => 'Kusaie 1951 to WGS 84 (1)', |
1613
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4735', |
1614
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1615
|
|
|
'accuracy' => 44.0, |
1616
|
|
|
], |
1617
|
|
|
[ |
1618
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19878', |
1619
|
|
|
'name' => 'Vanua Levu Grid', |
1620
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4748', |
1621
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3139', |
1622
|
|
|
'accuracy' => 0, |
1623
|
|
|
], |
1624
|
|
|
[ |
1625
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15878', |
1626
|
|
|
'name' => 'Vanua Levu 1915 to WGS 84 (1)', |
1627
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4748', |
1628
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1629
|
|
|
'accuracy' => 50.0, |
1630
|
|
|
], |
1631
|
|
|
[ |
1632
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19981', |
1633
|
|
|
'name' => 'Lambert New Caledonia', |
1634
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4749', |
1635
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3163', |
1636
|
|
|
'accuracy' => 0, |
1637
|
|
|
], |
1638
|
|
|
[ |
1639
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15880', |
1640
|
|
|
'name' => 'RGNC91-93 to WGS 84 (1)', |
1641
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4749', |
1642
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1643
|
|
|
'accuracy' => 1.0, |
1644
|
|
|
], |
1645
|
|
|
[ |
1646
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15892', |
1647
|
|
|
'name' => 'ST87 Ouvea to RGNC91-93 (2)', |
1648
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4750', |
1649
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4749', |
1650
|
|
|
'accuracy' => 0.1, |
1651
|
|
|
], |
1652
|
|
|
[ |
1653
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19879', |
1654
|
|
|
'name' => 'Viti Levu Grid', |
1655
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4752', |
1656
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3140', |
1657
|
|
|
'accuracy' => 0, |
1658
|
|
|
], |
1659
|
|
|
[ |
1660
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6895', |
1661
|
|
|
'name' => 'Viti Levu 1912 to WGS 84 (2)', |
1662
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4752', |
1663
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1664
|
|
|
'accuracy' => 5.0, |
1665
|
|
|
], |
1666
|
|
|
[ |
1667
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::19848', |
1668
|
|
|
'name' => 'Pitcairn TM 2006', |
1669
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4763', |
1670
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::3783', |
1671
|
|
|
'accuracy' => 0, |
1672
|
|
|
], |
1673
|
|
|
[ |
1674
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::15972', |
1675
|
|
|
'name' => 'Pitcairn 2006 to WGS 84 (1)', |
1676
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4763', |
1677
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1678
|
|
|
'accuracy' => 1.0, |
1679
|
|
|
], |
1680
|
|
|
[ |
1681
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6277', |
1682
|
|
|
'name' => 'ITRF2005 to GDA94 (1)', |
1683
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4896', |
1684
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4938', |
1685
|
|
|
'accuracy' => 0.03, |
1686
|
|
|
], |
1687
|
|
|
[ |
1688
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9352', |
1689
|
|
|
'name' => 'RGNC91-93 to NGNC08 height (1)', |
1690
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4907', |
1691
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9351', |
1692
|
|
|
'accuracy' => 0.03, |
1693
|
|
|
], |
1694
|
|
|
[ |
1695
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9640', |
1696
|
|
|
'name' => 'RGNC91-93 to RGNC91-93 + NGNC08 height (1)', |
1697
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4907', |
1698
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9540', |
1699
|
|
|
'accuracy' => 0.03, |
1700
|
|
|
], |
1701
|
|
|
[ |
1702
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6280', |
1703
|
|
|
'name' => 'ITRF96 to GDA94 (2)', |
1704
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4917', |
1705
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4938', |
1706
|
|
|
'accuracy' => 0.11, |
1707
|
|
|
], |
1708
|
|
|
[ |
1709
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6279', |
1710
|
|
|
'name' => 'ITRF97 to GDA94 (2)', |
1711
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4918', |
1712
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4938', |
1713
|
|
|
'accuracy' => 0.18, |
1714
|
|
|
], |
1715
|
|
|
[ |
1716
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6278', |
1717
|
|
|
'name' => 'ITRF2000 to GDA94 (2)', |
1718
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4919', |
1719
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4938', |
1720
|
|
|
'accuracy' => 0.06, |
1721
|
|
|
], |
1722
|
|
|
[ |
1723
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9467', |
1724
|
|
|
'name' => 'GDA94 to GDA94 + AHD height (1)', |
1725
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4939', |
1726
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9464', |
1727
|
|
|
'accuracy' => 0.15, |
1728
|
|
|
], |
1729
|
|
|
[ |
1730
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9325', |
1731
|
|
|
'name' => 'NZGD2000 to NZVD2009 height (2)', |
1732
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4959', |
1733
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4440', |
1734
|
|
|
'accuracy' => 0.1, |
1735
|
|
|
], |
1736
|
|
|
[ |
1737
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9326', |
1738
|
|
|
'name' => 'NZGD2000 to NZVD2016 height (2)', |
1739
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4959', |
1740
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7839', |
1741
|
|
|
'accuracy' => 0.1, |
1742
|
|
|
], |
1743
|
|
|
[ |
1744
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9627', |
1745
|
|
|
'name' => 'NZGD2000 to NZGD2000 + NZVD2009 height (2)', |
1746
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4959', |
1747
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9527', |
1748
|
|
|
'accuracy' => 0.1, |
1749
|
|
|
], |
1750
|
|
|
[ |
1751
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9628', |
1752
|
|
|
'name' => 'NZGD2000 to NZGD2000 + NZVD2016 height (2)', |
1753
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::4959', |
1754
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9528', |
1755
|
|
|
'accuracy' => 0.1, |
1756
|
|
|
], |
1757
|
|
|
[ |
1758
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6276', |
1759
|
|
|
'name' => 'ITRF2008 to GDA94 (1)', |
1760
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5332', |
1761
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4938', |
1762
|
|
|
'accuracy' => 0.03, |
1763
|
|
|
], |
1764
|
|
|
[ |
1765
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5553', |
1766
|
|
|
'name' => 'PNG94 to WGS 84 (1)', |
1767
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5546', |
1768
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1769
|
|
|
'accuracy' => 2.0, |
1770
|
|
|
], |
1771
|
|
|
[ |
1772
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5547', |
1773
|
|
|
'name' => 'Papua New Guinea Map Grid 1994 zone 54', |
1774
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5546', |
1775
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5550', |
1776
|
|
|
'accuracy' => 0, |
1777
|
|
|
], |
1778
|
|
|
[ |
1779
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5548', |
1780
|
|
|
'name' => 'Papua New Guinea Map Grid 1994 zone 55', |
1781
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5546', |
1782
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5551', |
1783
|
|
|
'accuracy' => 0, |
1784
|
|
|
], |
1785
|
|
|
[ |
1786
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5549', |
1787
|
|
|
'name' => 'Papua New Guinea Map Grid 1994 zone 56', |
1788
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5546', |
1789
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5552', |
1790
|
|
|
'accuracy' => 0, |
1791
|
|
|
], |
1792
|
|
|
[ |
1793
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9872', |
1794
|
|
|
'name' => 'Papua New Guinea Map Grid 1994 zone 57', |
1795
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5546', |
1796
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9874', |
1797
|
|
|
'accuracy' => 0, |
1798
|
|
|
], |
1799
|
|
|
[ |
1800
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9873', |
1801
|
|
|
'name' => 'Papua New Guinea Map Grid 1994 zone 58', |
1802
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5546', |
1803
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9875', |
1804
|
|
|
'accuracy' => 0, |
1805
|
|
|
], |
1806
|
|
|
[ |
1807
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7653', |
1808
|
|
|
'name' => 'EGM96 height to Kumul 34 height (1)', |
1809
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5773', |
1810
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7651', |
1811
|
|
|
'accuracy' => 0.0, |
1812
|
|
|
], |
1813
|
|
|
[ |
1814
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7873', |
1815
|
|
|
'name' => 'EGM96 height to POM96 height (1)', |
1816
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5773', |
1817
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7832', |
1818
|
|
|
'accuracy' => 0.0, |
1819
|
|
|
], |
1820
|
|
|
[ |
1821
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9771', |
1822
|
|
|
'name' => 'TGD2005 to WGS 84 (1)', |
1823
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5886', |
1824
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
1825
|
|
|
'accuracy' => 1.0, |
1826
|
|
|
], |
1827
|
|
|
[ |
1828
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::5883', |
1829
|
|
|
'name' => 'Tonga Map Grid', |
1830
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::5886', |
1831
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5887', |
1832
|
|
|
'accuracy' => 0, |
1833
|
|
|
], |
1834
|
|
|
[ |
1835
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7650', |
1836
|
|
|
'name' => 'NAD83(PA11) to ASVD02 height (1)', |
1837
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6321', |
1838
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6643', |
1839
|
|
|
'accuracy' => 0.02, |
1840
|
|
|
], |
1841
|
|
|
[ |
1842
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9626', |
1843
|
|
|
'name' => 'NAD83(PA11) to NAD83(PA11) + ASVD02 height (1)', |
1844
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6321', |
1845
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9526', |
1846
|
|
|
'accuracy' => 0.02, |
1847
|
|
|
], |
1848
|
|
|
[ |
1849
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7649', |
1850
|
|
|
'name' => 'NAD83(MA11) to NMVD03 height (1)', |
1851
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6324', |
1852
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6640', |
1853
|
|
|
'accuracy' => 0.02, |
1854
|
|
|
], |
1855
|
|
|
[ |
1856
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7648', |
1857
|
|
|
'name' => 'NAD83(MA11) to GUVD04 height (1)', |
1858
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6324', |
1859
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6644', |
1860
|
|
|
'accuracy' => 0.02, |
1861
|
|
|
], |
1862
|
|
|
[ |
1863
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9624', |
1864
|
|
|
'name' => 'NAD83(MA11) to NAD83(MA11) + GUVD04 height (1)', |
1865
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6324', |
1866
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9524', |
1867
|
|
|
'accuracy' => 0.02, |
1868
|
|
|
], |
1869
|
|
|
[ |
1870
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9625', |
1871
|
|
|
'name' => 'NAD83(MA11) to NAD83(MA11) + NMVD03 height (1)', |
1872
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6324', |
1873
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9525', |
1874
|
|
|
'accuracy' => 0.02, |
1875
|
|
|
], |
1876
|
|
|
[ |
1877
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::4325', |
1878
|
|
|
'name' => 'Guam Map Grid', |
1879
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::6325', |
1880
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6637', |
1881
|
|
|
'accuracy' => 0, |
1882
|
|
|
], |
1883
|
|
|
[ |
1884
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9682', |
1885
|
|
|
'name' => 'ITRF2014 to GDA94 (1)', |
1886
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7789', |
1887
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4938', |
1888
|
|
|
'accuracy' => 0.035, |
1889
|
|
|
], |
1890
|
|
|
[ |
1891
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8049', |
1892
|
|
|
'name' => 'ITRF2014 to GDA2020 (1)', |
1893
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7789', |
1894
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7842', |
1895
|
|
|
'accuracy' => 0.03, |
1896
|
|
|
], |
1897
|
|
|
[ |
1898
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9460', |
1899
|
|
|
'name' => 'ITRF2014 to ATRF2014 (1)', |
1900
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7789', |
1901
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9307', |
1902
|
|
|
'accuracy' => 0.01, |
1903
|
|
|
], |
1904
|
|
|
[ |
1905
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9315', |
1906
|
|
|
'name' => 'NZVD2016 height to Dunedin-Bluff 1960 height (2)', |
1907
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7839', |
1908
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4458', |
1909
|
|
|
'accuracy' => 0.02, |
1910
|
|
|
], |
1911
|
|
|
[ |
1912
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9312', |
1913
|
|
|
'name' => 'NZVD2016 height to Auckland 1946 height (2)', |
1914
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7839', |
1915
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5759', |
1916
|
|
|
'accuracy' => 0.02, |
1917
|
|
|
], |
1918
|
|
|
[ |
1919
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9313', |
1920
|
|
|
'name' => 'NZVD2016 height to Bluff 1955 height (2)', |
1921
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7839', |
1922
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5760', |
1923
|
|
|
'accuracy' => 0.02, |
1924
|
|
|
], |
1925
|
|
|
[ |
1926
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9314', |
1927
|
|
|
'name' => 'NZVD2016 height to Dunedin 1958 height (2)', |
1928
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7839', |
1929
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5761', |
1930
|
|
|
'accuracy' => 0.02, |
1931
|
|
|
], |
1932
|
|
|
[ |
1933
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9316', |
1934
|
|
|
'name' => 'NZVD2016 height to Gisborne 1926 height (2)', |
1935
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7839', |
1936
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5762', |
1937
|
|
|
'accuracy' => 0.02, |
1938
|
|
|
], |
1939
|
|
|
[ |
1940
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9317', |
1941
|
|
|
'name' => 'NZVD2016 height to Lyttelton 1937 height (2)', |
1942
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7839', |
1943
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5763', |
1944
|
|
|
'accuracy' => 0.01, |
1945
|
|
|
], |
1946
|
|
|
[ |
1947
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9318', |
1948
|
|
|
'name' => 'NZVD2016 height to Moturiki 1953 height (2)', |
1949
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7839', |
1950
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5764', |
1951
|
|
|
'accuracy' => 0.02, |
1952
|
|
|
], |
1953
|
|
|
[ |
1954
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9319', |
1955
|
|
|
'name' => 'NZVD2016 height to Napier 1962 height (2)', |
1956
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7839', |
1957
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5765', |
1958
|
|
|
'accuracy' => 0.02, |
1959
|
|
|
], |
1960
|
|
|
[ |
1961
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9320', |
1962
|
|
|
'name' => 'NZVD2016 height to Nelson 1955 height (2)', |
1963
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7839', |
1964
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5766', |
1965
|
|
|
'accuracy' => 0.02, |
1966
|
|
|
], |
1967
|
|
|
[ |
1968
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9321', |
1969
|
|
|
'name' => 'NZVD2016 height to One Tree Point 1964 height (2)', |
1970
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7839', |
1971
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5767', |
1972
|
|
|
'accuracy' => 0.01, |
1973
|
|
|
], |
1974
|
|
|
[ |
1975
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9323', |
1976
|
|
|
'name' => 'NZVD2016 height to Taranaki 1970 height (2)', |
1977
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7839', |
1978
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5769', |
1979
|
|
|
'accuracy' => 0.02, |
1980
|
|
|
], |
1981
|
|
|
[ |
1982
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9324', |
1983
|
|
|
'name' => 'NZVD2016 height to Wellington 1953 height (2)', |
1984
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7839', |
1985
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5770', |
1986
|
|
|
'accuracy' => 0.02, |
1987
|
|
|
], |
1988
|
|
|
[ |
1989
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9322', |
1990
|
|
|
'name' => 'NZVD2016 height to Stewart Island 1977 height (2)', |
1991
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7839', |
1992
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5772', |
1993
|
|
|
'accuracy' => 0.18, |
1994
|
|
|
], |
1995
|
|
|
[ |
1996
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8448', |
1997
|
|
|
'name' => 'GDA2020 to WGS 84 (G1762) (1)', |
1998
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7842', |
1999
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7664', |
2000
|
|
|
'accuracy' => 0.2, |
2001
|
|
|
], |
2002
|
|
|
[ |
2003
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8451', |
2004
|
|
|
'name' => 'GDA2020 to AHD height (1)', |
2005
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7843', |
2006
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::5711', |
2007
|
|
|
'accuracy' => 0.15, |
2008
|
|
|
], |
2009
|
|
|
[ |
2010
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9692', |
2011
|
|
|
'name' => 'GDA2020 to AVWS height (2)', |
2012
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7843', |
2013
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9458', |
2014
|
|
|
'accuracy' => 0.1, |
2015
|
|
|
], |
2016
|
|
|
[ |
2017
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9693', |
2018
|
|
|
'name' => 'GDA2020 to GDA2020 + AVWS height (2)', |
2019
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7843', |
2020
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9462', |
2021
|
|
|
'accuracy' => 0.1, |
2022
|
|
|
], |
2023
|
|
|
[ |
2024
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9466', |
2025
|
|
|
'name' => 'GDA2020 to GDA2020 + AHD height (1)', |
2026
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7843', |
2027
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9463', |
2028
|
|
|
'accuracy' => 0.15, |
2029
|
|
|
], |
2030
|
|
|
[ |
2031
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::10147', |
2032
|
|
|
'name' => 'Brisbane City Survey Grid 2020', |
2033
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2034
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::20047', |
2035
|
|
|
'accuracy' => 0, |
2036
|
|
|
], |
2037
|
|
|
[ |
2038
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8450', |
2039
|
|
|
'name' => 'GDA2020 to WGS 84 (2)', |
2040
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2041
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2042
|
|
|
'accuracy' => 3.0, |
2043
|
|
|
], |
2044
|
|
|
[ |
2045
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17362', |
2046
|
|
|
'name' => 'Geoscience Australia Standard National Scale Lambert Projection', |
2047
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2048
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7845', |
2049
|
|
|
'accuracy' => 0, |
2050
|
|
|
], |
2051
|
|
|
[ |
2052
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6729', |
2053
|
|
|
'name' => 'Map Grid of Australia zone 46', |
2054
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2055
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7846', |
2056
|
|
|
'accuracy' => 0, |
2057
|
|
|
], |
2058
|
|
|
[ |
2059
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6730', |
2060
|
|
|
'name' => 'Map Grid of Australia zone 47', |
2061
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2062
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7847', |
2063
|
|
|
'accuracy' => 0, |
2064
|
|
|
], |
2065
|
|
|
[ |
2066
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17348', |
2067
|
|
|
'name' => 'Map Grid of Australia zone 48', |
2068
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2069
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7848', |
2070
|
|
|
'accuracy' => 0, |
2071
|
|
|
], |
2072
|
|
|
[ |
2073
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17349', |
2074
|
|
|
'name' => 'Map Grid of Australia zone 49', |
2075
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2076
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7849', |
2077
|
|
|
'accuracy' => 0, |
2078
|
|
|
], |
2079
|
|
|
[ |
2080
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17350', |
2081
|
|
|
'name' => 'Map Grid of Australia zone 50', |
2082
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2083
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7850', |
2084
|
|
|
'accuracy' => 0, |
2085
|
|
|
], |
2086
|
|
|
[ |
2087
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17351', |
2088
|
|
|
'name' => 'Map Grid of Australia zone 51', |
2089
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2090
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7851', |
2091
|
|
|
'accuracy' => 0, |
2092
|
|
|
], |
2093
|
|
|
[ |
2094
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17352', |
2095
|
|
|
'name' => 'Map Grid of Australia zone 52', |
2096
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2097
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7852', |
2098
|
|
|
'accuracy' => 0, |
2099
|
|
|
], |
2100
|
|
|
[ |
2101
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17353', |
2102
|
|
|
'name' => 'Map Grid of Australia zone 53', |
2103
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2104
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7853', |
2105
|
|
|
'accuracy' => 0, |
2106
|
|
|
], |
2107
|
|
|
[ |
2108
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17354', |
2109
|
|
|
'name' => 'Map Grid of Australia zone 54', |
2110
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2111
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7854', |
2112
|
|
|
'accuracy' => 0, |
2113
|
|
|
], |
2114
|
|
|
[ |
2115
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17355', |
2116
|
|
|
'name' => 'Map Grid of Australia zone 55', |
2117
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2118
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7855', |
2119
|
|
|
'accuracy' => 0, |
2120
|
|
|
], |
2121
|
|
|
[ |
2122
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17356', |
2123
|
|
|
'name' => 'Map Grid of Australia zone 56', |
2124
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2125
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7856', |
2126
|
|
|
'accuracy' => 0, |
2127
|
|
|
], |
2128
|
|
|
[ |
2129
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17357', |
2130
|
|
|
'name' => 'Map Grid of Australia zone 57', |
2131
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2132
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7857', |
2133
|
|
|
'accuracy' => 0, |
2134
|
|
|
], |
2135
|
|
|
[ |
2136
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17358', |
2137
|
|
|
'name' => 'Map Grid of Australia zone 58', |
2138
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2139
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7858', |
2140
|
|
|
'accuracy' => 0, |
2141
|
|
|
], |
2142
|
|
|
[ |
2143
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::6731', |
2144
|
|
|
'name' => 'Map Grid of Australia zone 59', |
2145
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2146
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7859', |
2147
|
|
|
'accuracy' => 0, |
2148
|
|
|
], |
2149
|
|
|
[ |
2150
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17361', |
2151
|
|
|
'name' => 'Vicgrid', |
2152
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2153
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7899', |
2154
|
|
|
'accuracy' => 0, |
2155
|
|
|
], |
2156
|
|
|
[ |
2157
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7993', |
2158
|
|
|
'name' => 'Albany Grid 2020', |
2159
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2160
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8013', |
2161
|
|
|
'accuracy' => 0, |
2162
|
|
|
], |
2163
|
|
|
[ |
2164
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7994', |
2165
|
|
|
'name' => 'Barrow Island Grid 2020', |
2166
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2167
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8014', |
2168
|
|
|
'accuracy' => 0, |
2169
|
|
|
], |
2170
|
|
|
[ |
2171
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7995', |
2172
|
|
|
'name' => 'Broome Grid 2020', |
2173
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2174
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8015', |
2175
|
|
|
'accuracy' => 0, |
2176
|
|
|
], |
2177
|
|
|
[ |
2178
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7996', |
2179
|
|
|
'name' => 'Busselton Coastal Grid 2020', |
2180
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2181
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8016', |
2182
|
|
|
'accuracy' => 0, |
2183
|
|
|
], |
2184
|
|
|
[ |
2185
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7997', |
2186
|
|
|
'name' => 'Carnarvon Grid 2020', |
2187
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2188
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8017', |
2189
|
|
|
'accuracy' => 0, |
2190
|
|
|
], |
2191
|
|
|
[ |
2192
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7998', |
2193
|
|
|
'name' => 'Christmas Island Grid 2020', |
2194
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2195
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8018', |
2196
|
|
|
'accuracy' => 0, |
2197
|
|
|
], |
2198
|
|
|
[ |
2199
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::7999', |
2200
|
|
|
'name' => 'Cocos Island Grid 2020', |
2201
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2202
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8019', |
2203
|
|
|
'accuracy' => 0, |
2204
|
|
|
], |
2205
|
|
|
[ |
2206
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8000', |
2207
|
|
|
'name' => 'Collie Grid 2020', |
2208
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2209
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8020', |
2210
|
|
|
'accuracy' => 0, |
2211
|
|
|
], |
2212
|
|
|
[ |
2213
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8001', |
2214
|
|
|
'name' => 'Esperance Grid 2020', |
2215
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2216
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8021', |
2217
|
|
|
'accuracy' => 0, |
2218
|
|
|
], |
2219
|
|
|
[ |
2220
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8002', |
2221
|
|
|
'name' => 'Exmouth Grid 2020', |
2222
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2223
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8022', |
2224
|
|
|
'accuracy' => 0, |
2225
|
|
|
], |
2226
|
|
|
[ |
2227
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8003', |
2228
|
|
|
'name' => 'Geraldton Coastal Grid 2020', |
2229
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2230
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8023', |
2231
|
|
|
'accuracy' => 0, |
2232
|
|
|
], |
2233
|
|
|
[ |
2234
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8004', |
2235
|
|
|
'name' => 'Goldfields Grid 2020', |
2236
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2237
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8024', |
2238
|
|
|
'accuracy' => 0, |
2239
|
|
|
], |
2240
|
|
|
[ |
2241
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8005', |
2242
|
|
|
'name' => 'Jurien Coastal Grid 2020', |
2243
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2244
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8025', |
2245
|
|
|
'accuracy' => 0, |
2246
|
|
|
], |
2247
|
|
|
[ |
2248
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8006', |
2249
|
|
|
'name' => 'Kalbarri Grid 2020', |
2250
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2251
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8026', |
2252
|
|
|
'accuracy' => 0, |
2253
|
|
|
], |
2254
|
|
|
[ |
2255
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8007', |
2256
|
|
|
'name' => 'Karratha Grid 2020', |
2257
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2258
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8027', |
2259
|
|
|
'accuracy' => 0, |
2260
|
|
|
], |
2261
|
|
|
[ |
2262
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8008', |
2263
|
|
|
'name' => 'Kununurra Grid 2020', |
2264
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2265
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8028', |
2266
|
|
|
'accuracy' => 0, |
2267
|
|
|
], |
2268
|
|
|
[ |
2269
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8009', |
2270
|
|
|
'name' => 'Lancelin Coastal Grid 2020', |
2271
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2272
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8029', |
2273
|
|
|
'accuracy' => 0, |
2274
|
|
|
], |
2275
|
|
|
[ |
2276
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8010', |
2277
|
|
|
'name' => 'Margaret River Coastal Grid 2020', |
2278
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2279
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8030', |
2280
|
|
|
'accuracy' => 0, |
2281
|
|
|
], |
2282
|
|
|
[ |
2283
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8011', |
2284
|
|
|
'name' => 'Perth Coastal Grid 2020', |
2285
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2286
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8031', |
2287
|
|
|
'accuracy' => 0, |
2288
|
|
|
], |
2289
|
|
|
[ |
2290
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8012', |
2291
|
|
|
'name' => 'Port Hedland Grid 2020', |
2292
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2293
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8032', |
2294
|
|
|
'accuracy' => 0, |
2295
|
|
|
], |
2296
|
|
|
[ |
2297
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17364', |
2298
|
|
|
'name' => 'New South Wales Lambert', |
2299
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2300
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8058', |
2301
|
|
|
'accuracy' => 0, |
2302
|
|
|
], |
2303
|
|
|
[ |
2304
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17359', |
2305
|
|
|
'name' => 'South Australia Lambert', |
2306
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2307
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::8059', |
2308
|
|
|
'accuracy' => 0, |
2309
|
|
|
], |
2310
|
|
|
[ |
2311
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::17365', |
2312
|
|
|
'name' => 'Australian Albers', |
2313
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::7844', |
2314
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::9473', |
2315
|
|
|
'accuracy' => 0, |
2316
|
|
|
], |
2317
|
|
|
[ |
2318
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8864', |
2319
|
|
|
'name' => 'NAD83(FBN) to NAD83(PA11) (1)', |
2320
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8860', |
2321
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6322', |
2322
|
|
|
'accuracy' => 0.05, |
2323
|
|
|
], |
2324
|
|
|
[ |
2325
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::8866', |
2326
|
|
|
'name' => 'NAD83(FBN) to NAD83(MA11) (1)', |
2327
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8860', |
2328
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::6325', |
2329
|
|
|
'accuracy' => 0.05, |
2330
|
|
|
], |
2331
|
|
|
[ |
2332
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9769', |
2333
|
|
|
'name' => 'RGWF96 to WGS 84 (1)', |
2334
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::8900', |
2335
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4326', |
2336
|
|
|
'accuracy' => 1.0, |
2337
|
|
|
], |
2338
|
|
|
[ |
2339
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9684', |
2340
|
|
|
'name' => 'ATRF2014 to GDA94 (1)', |
2341
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9307', |
2342
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::4938', |
2343
|
|
|
'accuracy' => 0.035, |
2344
|
|
|
], |
2345
|
|
|
[ |
2346
|
|
|
'operation' => 'urn:ogc:def:coordinateOperation:EPSG::9459', |
2347
|
|
|
'name' => 'ATRF2014 to GDA2020 (1)', |
2348
|
|
|
'source_crs' => 'urn:ogc:def:crs:EPSG::9307', |
2349
|
|
|
'target_crs' => 'urn:ogc:def:crs:EPSG::7842', |
2350
|
|
|
'accuracy' => 0.03, |
2351
|
|
|
], |
2352
|
|
|
]; |
2353
|
|
|
|
2354
|
|
|
/** |
2355
|
|
|
* @return array<array{operation: string, name: string, source_crs: string, target_crs: string, accuracy: float}> |
2356
|
|
|
*/ |
2357
|
10 |
|
public static function getSupportedTransformations(): array |
2358
|
|
|
{ |
2359
|
10 |
|
return static::$sridData; |
2360
|
|
|
} |
2361
|
|
|
} |
2362
|
|
|
|