Revision 31469

View differences:

tags/tmp_build/binaries/build.xml
1
<project name="binaries_build" default="main" basedir=".">
2
	<dirname file="${ant.file.binaries}" property="ant.file.binaries.dir"/>
3
	<import file="${basedir}/ant/utilities.xml"/>
4
    <description>
5
        Reorganiza el directorio binaries, para que pueda usarse directamente por gvSIG.
6
    </description>
7

  
8
	<target name="batch-build"
9
		depends="main"/>
10

  
11
	<target name="main">
12
		<description>Reorders the directory for the current platform, so that it
13
			can be used by gvSIG.</description>
14
		<echo> Sistema operativo: ${os.name}</echo>
15

  
16
		<condition property="isLinux">
17
			<os family="unix"/>
18
		</condition>
19

  
20
		<condition property="isWindows">
21
			<or>
22
				<os family="windows"/>
23
				<os family="win9x"/>
24
				<os name="Windows Vista"/>
25
			</or>
26
		</condition>
27

  
28
		<condition property="isMac">
29
			<os family="mac"/>
30
		</condition>
31

  
32
		<condition property="is_OS_dectected">
33
			<or>
34
				<istrue value="${isLinux}"/>
35
				<istrue value="${isWindows}"/>
36
				<istrue value="${isMac}"/>
37
			</or>
38

  
39
		</condition>
40

  
41

  
42
		<antcall target="linux" />
43
		<antcall target="windows" />
44
		<antcall target="mac" />
45
		<antcall target="no_SO_Detected" />
46

  
47

  
48
	</target>
49

  
50
	<target name="build-all">
51
		<description>Reorders the directory for all the platforms, so that it
52
			can be used by gvSIG.</description>
53
  		<ant dir="linux"  inheritAll="false" />
54
  		<ant dir="w32"  inheritAll="false" />
55
  		<ant dir="mac"  inheritAll="false" />
56
	</target>
57

  
58
	<target name="linux" if="isLinux">
59
  		<ant dir="linux"  inheritAll="false" />
60
		<echo> Compilando librerias linux </echo>
61
	</target>
62

  
63
	<target name="windows" if="isWindows">
64
  		<ant dir="w32"  inheritAll="false" />
65
		<echo> Compilando librerias w32 </echo>
66
	</target>
67

  
68
	<target name="mac" if="isMac">
69
  		<ant dir="mac"  inheritAll="false" />
70
		<echo> Compilando librerias mac </echo>
71
	</target>
72

  
73
	<target name="no_SO_Detected" unless="is_OS_dectected">
74
		<fail message="Error al detectar el Sistema Operativo"/>
75
	</target>
76

  
77
	<target name="clean">
78
		<description>
79
			Restores the directory to its original shape.
80
		</description>
81
  		<ant target="clean" dir="linux"  inheritAll="false" />
82
  		<ant target="clean" dir="w32"  inheritAll="false" />
83
  		<!--<ant target="clean" dir="mac"  inheritAll="false" />-->
84
	</target>
85
</project>
0 86

  
tags/tmp_build/binaries/linux/.cvsignore
1
*.so*
0 2

  
tags/tmp_build/binaries/linux/build.xml
1
<project name="binaries linux" default="main" basedir=".">
2
    <description>
3
        Reorganiza el directorio binaries/linux, para que pueda usarse directamente por gvSIG.
4
    </description>
5

  
6
	<available property="is3D" file="3D" />
7

  
8
	<target name="init">
9
		<condition property="isLinux">
10
			<os family="unix"/>
11
		</condition>
12
	</target>
13
	<property name="targetDir" location="." />
14

  
15
	<target name="main" depends="init, ecw, gdal, mrsid, crs, potrace, 3D, grass" />
16
	<target name="without-3D" depends="init, ecw, gdal, mrsid, crs, potrace" />
17

  
18
	<target name="ecw">
19
		<copy todir="${targetDir}">
20
			<fileset dir="raster/ecw" includes="libjecw.so.0.0.7, libNCScnet.so, libNCSEcwC.so, libNCSEcw.so, libNCSUtil.so" />
21
		</copy>
22
		<!-- necesitamos borrar los links antes de crearlos, porque failonerror=false no
23
		      funciona correctamente -->
24

  
25
		<antcall target="makeLink">
26
			<param name="ml.file" location="${targetDir}/libjecw.so.0.0.7"/>
27
			<param name="ml.link" value="${targetDir}/libjecw.so"/>
28
			<param name="ml.failonerror" value="false"/>
29
		</antcall>
30

  
31
		<antcall target="makeLink">
32
			<param name="ml.file" location="${targetDir}/libjecw.so.0.0.7"/>
33
			<param name="ml.link" value="${targetDir}/libjecw.so.0"/>
34
			<param name="ml.failonerror" value="false"/>
35
		</antcall>
36

  
37
		<antcall target="makeLink">
38
			<param name="ml.file" location="${targetDir}/libNCScnet.so"/>
39
			<param name="ml.link" value="${targetDir}/libNCScnet.so.0"/>
40
			<param name="ml.failonerror" value="false"/>
41
		</antcall>
42

  
43
		<antcall target="makeLink">
44
			<param name="ml.file" location="${targetDir}/libNCScnet.so"/>
45
			<param name="ml.link" value="${targetDir}/libNCSCnet.so"/>
46
			<param name="ml.failonerror" value="false"/>
47
		</antcall>
48

  
49
		<antcall target="makeLink">
50
			<param name="ml.file" location="${targetDir}/libNCScnet.so"/>
51
			<param name="ml.link" value="${targetDir}/libNCSCnet.so.0"/>
52
			<param name="ml.failonerror" value="false"/>
53
		</antcall>
54

  
55

  
56
		<antcall target="makeLink">
57
			<param name="ml.file" location="${targetDir}/libNCScnet.so"/>
58
			<param name="ml.link" value="${targetDir}/libNCSCNet.so"/>
59
			<param name="ml.failonerror" value="false"/>
60
		</antcall>
61

  
62
		<antcall target="makeLink">
63
			<param name="ml.file" location="${targetDir}/libNCScnet.so"/>
64
			<param name="ml.link" value="${targetDir}/libNCSCNet.so.0"/>
65
			<param name="ml.failonerror" value="false"/>
66
		</antcall>
67

  
68
		<antcall target="makeLink">
69
			<param name="ml.file" location="${targetDir}/libNCSEcw.so"/>
70
			<param name="ml.link" value="${targetDir}/libNCSEcw.so.0"/>
71
			<param name="ml.failonerror" value="false"/>
72
		</antcall>
73

  
74
		<antcall target="makeLink">
75
			<param name="ml.file" location="${targetDir}/libNCSEcwC.so"/>
76
			<param name="ml.link" value="${targetDir}/libNCSEcwC.so.0"/>
77
			<param name="ml.failonerror" value="false"/>
78
		</antcall>
79

  
80
		<antcall target="makeLink">
81
			<param name="ml.file" location="${targetDir}/libNCSUtil.so"/>
82
			<param name="ml.link" value="${targetDir}/libNCSUtil.so.0"/>
83
			<param name="ml.failonerror" value="false"/>
84
		</antcall>
85

  
86
	</target>
87

  
88
	<target name="gdal">
89
		<copy todir="${targetDir}">
90
			<fileset dir="raster/gdal"
91
				 includes="lib*.so*"/>
92
		</copy>
93
		<antcall target="makeLink">
94
			<param name="ml.file" location="${targetDir}/libcrypto.so.0.9.7"/>
95
			<param name="ml.link" value="${targetDir}/libcrypto.so"/>
96
			<param name="ml.failonerror" value="false"/>
97
		</antcall>
98

  
99
		<antcall target="makeLink">
100
			<param name="ml.file" location="${targetDir}/libcrypto.so.0.9.7"/>
101
			<param name="ml.link" value="${targetDir}/libcrypto.so.0"/>
102
			<param name="ml.failonerror" value="false"/>
103
		</antcall>
104

  
105
		<antcall target="makeLink">
106
			<param name="ml.file" location="${targetDir}/libgdal1.5.0.so.1"/>
107
			<param name="ml.link" value="${targetDir}/libgdal.so"/>
108
			<param name="ml.failonerror" value="false"/>
109
		</antcall>
110

  
111
		<antcall target="makeLink">
112
			<param name="ml.file" location="${targetDir}/libgdal1.5.0.so.1"/>
113
			<param name="ml.link" value="${targetDir}/libgdal.so.1"/>
114
			<param name="ml.failonerror" value="false"/>
115
		</antcall>
116

  
117

  
118
		<antcall target="makeLink">
119
			<param name="ml.file" location="${targetDir}/libjasper-1.701.so.1"/>
120
			<param name="ml.link" value="${targetDir}/libjasper-1.701.so"/>
121
			<param name="ml.failonerror" value="false"/>
122
		</antcall>
123

  
124
		<!--
125
		<antcall target="makeLink">
126
			<param name="ml.file" location="libjasper-1.701.so.1.0.0"/>
127
			<param name="ml.link" value="${targetDir}/libjasper-1.701.so.1"/>
128
			<param name="ml.failonerror" value="false"/>
129
		</antcall>
130
		-->
131

  
132
		<antcall target="makeLink">
133
			<param name="ml.file" location="${targetDir}/libjgdal.so.0.9.2"/>
134
			<param name="ml.link" value="${targetDir}/libjgdal.so"/>
135
			<param name="ml.failonerror" value="false"/>
136
		</antcall>
137

  
138
		<antcall target="makeLink">
139
			<param name="ml.file" location="${targetDir}/libjgdal.so.0.9.2"/>
140
			<param name="ml.link" value="${targetDir}/libjgdal.so.0"/>
141
			<param name="ml.failonerror" value="false"/>
142
		</antcall>
143

  
144
		<antcall target="makeLink">
145
			<param name="ml.file" location="${targetDir}/libodbc.so.1"/>
146
			<param name="ml.link" value="${targetDir}/libodbc.so"/>
147
			<param name="ml.failonerror" value="false"/>
148
		</antcall>
149

  
150
		<antcall target="makeLink">
151
			<param name="ml.file" location="${targetDir}/libpng.so.3"/>
152
			<param name="ml.link" value="${targetDir}/libpng.so"/>
153
			<param name="ml.failonerror" value="false"/>
154
		</antcall>
155

  
156
		<!--<antcall target="makeLink">
157
			<param name="ml.file" location="${targetDir}/libpq.so.3"/>
158
			<param name="ml.link" value="${targetDir}/libpq.so"/>
159
			<param name="ml.failonerror" value="false"/>
160
		</antcall>-->
161
		
162
		<antcall target="makeLink">
163
			<param name="ml.file" location="${targetDir}/libpq.so.5.1"/>
164
			<param name="ml.link" value="${targetDir}/libpq.so.5"/>
165
			<param name="ml.failonerror" value="false"/>
166
		</antcall>
167

  
168
		<antcall target="makeLink">
169
			<param name="ml.file" location="${targetDir}/libssl.so.0.9.7"/>
170
			<param name="ml.link" value="${targetDir}/libssl.so"/>
171
			<param name="ml.failonerror" value="false"/>
172
		</antcall>
173

  
174
		<antcall target="makeLink">
175
			<param name="ml.file" location="${targetDir}/libssl.so.0.9.7"/>
176
			<param name="ml.link" value="${targetDir}/libssl.so.0"/>
177
			<param name="ml.failonerror" value="false"/>
178
		</antcall>
179

  
180
		<antcall target="makeLink">
181
			<param name="ml.file" location="${targetDir}/libcrypt.so.1"/>
182
			<param name="ml.link" value="${targetDir}/libcrypt.so"/>
183
			<param name="ml.failonerror" value="false"/>
184
		</antcall>
185

  
186
		<antcall target="makeLink">
187
			<param name="ml.file" location="${targetDir}/libjpeg.so.62"/>
188
			<param name="ml.link" value="${targetDir}/libjpeg.so"/>
189
			<param name="ml.failonerror" value="false"/>
190
		</antcall>
191

  
192
		<antcall target="makeLink">
193
			<param name="ml.file" location="${targetDir}/libm.so.6"/>
194
			<param name="ml.link" value="${targetDir}/libm.so"/>
195
			<param name="ml.failonerror" value="false"/>
196
		</antcall>
197

  
198
		<antcall target="makeLink">
199
			<param name="ml.file" location="${targetDir}/libnsl.so.1"/>
200
			<param name="ml.link" value="${targetDir}/libnsl.so"/>
201
			<param name="ml.failonerror" value="false"/>
202
		</antcall>
203

  
204
		<antcall target="makeLink">
205
			<param name="ml.file" location="${targetDir}/libodbc.so.1"/>
206
			<param name="ml.link" value="${targetDir}/libodbc.so"/>
207
			<param name="ml.failonerror" value="false"/>
208
		</antcall>
209

  
210

  
211
		<antcall target="makeLink">
212
			<param name="ml.file" location="${targetDir}/libpng.so.3"/>
213
			<param name="ml.link" value="${targetDir}/libpng.so"/>
214
			<param name="ml.failonerror" value="false"/>
215
		</antcall>
216

  
217
		<!--<antcall target="makeLink">
218
			<param name="ml.file" location="${targetDir}/libpq.so.3"/>
219
			<param name="ml.link" value="${targetDir}/libpq.so"/>
220
			<param name="ml.failonerror" value="false"/>
221
		</antcall>-->
222

  
223
		<antcall target="makeLink">
224
			<param name="ml.file" location="${targetDir}/libz.so.1"/>
225
			<param name="ml.link" value="${targetDir}/libz.so"/>
226
			<param name="ml.failonerror" value="false"/>
227
		</antcall>
228
		<!--
229
		<antcall target="makeLink">
230
			<param name="ml.file" location="${targetDir}/libhdf5_hl.so.0.0.0"/>
231
			<param name="ml.link" value="${targetDir}/libhdf5_hl.so.0"/>
232
			<param name="ml.failonerror" value="false"/>
233
		</antcall>
234
		
235
		<antcall target="makeLink">
236
			<param name="ml.file" location="${targetDir}/libhdf5_hl.so.0.0.0"/>
237
			<param name="ml.link" value="${targetDir}/libhdf5_hl.so"/>
238
			<param name="ml.failonerror" value="false"/>
239
		</antcall>
240
		
241
		<antcall target="makeLink">
242
			<param name="ml.file" location="${targetDir}/libhdf5.so.0.0.0"/>
243
			<param name="ml.link" value="${targetDir}/libhdf5.so.0"/>
244
			<param name="ml.failonerror" value="false"/>
245
		</antcall>
246
		
247
		<antcall target="makeLink">
248
			<param name="ml.file" location="${targetDir}/libhdf5.so.0.0.0"/>
249
			<param name="ml.link" value="${targetDir}/libhdf5.so"/>
250
			<param name="ml.failonerror" value="false"/>
251
		</antcall>
252
		-->
253
	</target>
254

  
255
	<target name="mrsid">
256
		<copy todir="${targetDir}">
257
			<fileset dir="raster/mrsid" includes="libjmrsid.so.0.0.2" />
258
		</copy>
259
		<antcall target="makeLink">
260
			<param name="ml.file" location="${targetDir}/libjmrsid.so.0.0.2"/>
261
			<param name="ml.link" value="${targetDir}/libjmrsid.so"/>
262
			<param name="ml.failonerror" value="false"/>
263
		</antcall>
264

  
265
		<antcall target="makeLink">
266
			<param name="ml.file" location="${targetDir}/libjmrsid.so.0.0.2"/>
267
			<param name="ml.link" value="${targetDir}/libjmrsid.so.0"/>
268
			<param name="ml.failonerror" value="false"/>
269
		</antcall>
270

  
271
	</target>
272
	
273
	<target name="grass">
274
		<copy todir="${targetDir}">
275
			<fileset dir="raster/grass" includes="lib*.so*" />
276
		</copy>
277
		<antcall target="makeLink">
278
			<param name="ml.file" location="${targetDir}/libgrass_datetime.6.0.2.so"/>
279
			<param name="ml.link" value="${targetDir}/libgrass_datetime.so"/>
280
			<param name="ml.failonerror" value="false"/>
281
		</antcall>
282

  
283
		<antcall target="makeLink">
284
			<param name="ml.file" location="${targetDir}/libgrass_dbmibase.6.0.2.so"/>
285
			<param name="ml.link" value="${targetDir}/libgrass_dbmibase.so"/>
286
			<param name="ml.failonerror" value="false"/>
287
		</antcall>
288
			
289
		<antcall target="makeLink">
290
			<param name="ml.file" location="${targetDir}/libgrass_dbmiclient.6.0.2.so"/>
291
			<param name="ml.link" value="${targetDir}/libgrass_dbmiclient.so"/>
292
			<param name="ml.failonerror" value="false"/>
293
		</antcall>
294
		
295
		<antcall target="makeLink">
296
			<param name="ml.file" location="${targetDir}/libgrass_dgl.6.0.2.so"/>
297
			<param name="ml.link" value="${targetDir}/libgrass_dgl.so"/>
298
			<param name="ml.failonerror" value="false"/>
299
		</antcall>
300
		
301
		<antcall target="makeLink">
302
			<param name="ml.file" location="${targetDir}/libgrass_dig2.6.0.2.so"/>
303
			<param name="ml.link" value="${targetDir}/libgrass_dig2.so"/>
304
			<param name="ml.failonerror" value="false"/>
305
		</antcall>
306
		
307
		<antcall target="makeLink">
308
			<param name="ml.file" location="${targetDir}/libgrass_gis.6.0.2.so"/>
309
			<param name="ml.link" value="${targetDir}/libgrass_gis.so"/>
310
			<param name="ml.failonerror" value="false"/>
311
		</antcall>
312
		
313
		<antcall target="makeLink">
314
			<param name="ml.file" location="${targetDir}/libgrass_gmath.6.0.2.so"/>
315
			<param name="ml.link" value="${targetDir}/libgrass_gmath.so"/>
316
			<param name="ml.failonerror" value="false"/>
317
		</antcall>
318
		
319
		<antcall target="makeLink">
320
			<param name="ml.file" location="${targetDir}/libgrass_gproj.6.0.2.so"/>
321
			<param name="ml.link" value="${targetDir}/libgrass_gproj.so"/>
322
			<param name="ml.failonerror" value="false"/>
323
		</antcall>
324
		
325
		<antcall target="makeLink">
326
			<param name="ml.file" location="${targetDir}/libgrass_I.6.0.2.so"/>
327
			<param name="ml.link" value="${targetDir}/libgrass_I.so"/>
328
			<param name="ml.failonerror" value="false"/>
329
		</antcall>
330
		
331
		<antcall target="makeLink">
332
			<param name="ml.file" location="${targetDir}/libgrass_linkm.6.0.2.so"/>
333
			<param name="ml.link" value="${targetDir}/libgrass_linkm.so"/>
334
			<param name="ml.failonerror" value="false"/>
335
		</antcall>
336
		
337
		<antcall target="makeLink">
338
			<param name="ml.file" location="${targetDir}/libgrass_rtree.6.0.2.so"/>
339
			<param name="ml.link" value="${targetDir}/libgrass_rtree.so"/>
340
			<param name="ml.failonerror" value="false"/>
341
		</antcall>
342
		
343
		<antcall target="makeLink">
344
			<param name="ml.file" location="${targetDir}/libgrass_vask.6.0.2.so"/>
345
			<param name="ml.link" value="${targetDir}/libgrass_vask.so"/>
346
			<param name="ml.failonerror" value="false"/>
347
		</antcall>
348
		
349
		<antcall target="makeLink">
350
			<param name="ml.file" location="${targetDir}/libgrass_vect.6.0.2.so"/>
351
			<param name="ml.link" value="${targetDir}/libgrass_vect.so"/>
352
			<param name="ml.failonerror" value="false"/>
353
		</antcall>
354
		
355
		<!--<antcall target="makeLink">
356
			<param name="ml.file" location="${targetDir}/libproj.so.0.5.0"/>
357
			<param name="ml.link" value="${targetDir}/libproj.so"/>
358
			<param name="ml.failonerror" value="false"/>
359
		</antcall>-->
360
	</target>
361

  
362
	<target name="potrace">
363
		<copy todir="${targetDir}">
364
			<fileset dir="raster/potrace" includes="lib*.so*"/>
365
		</copy>
366

  
367
		<antcall target="makeLink">
368
			<param name="ml.file" location="${targetDir}/libpotrace.so.0.0.1"/>
369
			<param name="ml.link" value="${targetDir}/libpotrace.so"/>
370
			<param name="ml.failonerror" value="false"/>
371
		</antcall>
372

  
373
		<antcall target="makeLink">
374
			<param name="ml.file" location="${targetDir}/libjpotrace.so.0.0.1"/>
375
			<param name="ml.link" value="${targetDir}/libjpotrace.so"/>
376
			<param name="ml.failonerror" value="false"/>
377
		</antcall>
378

  
379
		<antcall target="makeLink">
380
			<param name="ml.file" location="${targetDir}/libpotrace.so.0.0.1"/>
381
			<param name="ml.link" value="${targetDir}/libpotrace.so.0"/>
382
			<param name="ml.failonerror" value="false"/>
383
		</antcall>
384

  
385
		<antcall target="makeLink">
386
			<param name="ml.file" location="${targetDir}/libjpotrace.so.0.0.1"/>
387
			<param name="ml.link" value="${targetDir}/libjpotrace.so.0"/>
388
			<param name="ml.failonerror" value="false"/>
389
		</antcall>
390
	</target>
391

  
392
	<target name="crs">
393
		<copy todir="${targetDir}">
394
			<fileset dir="crs"
395
				includes="*.so.*,*.so"/>
396
		</copy>
397

  
398

  
399
		<antcall target="makeLink">
400
			<param name="ml.file" location="${targetDir}/libproj.so.0.5.0"/>
401
			<param name="ml.link" value="${targetDir}/libproj.so"/>
402
			<param name="ml.failonerror" value="false"/>
403
		</antcall>
404

  
405
		<antcall target="makeLink">
406
			<param name="ml.file" location="${targetDir}/libproj.so.0.5.0"/>
407
			<param name="ml.link" value="${targetDir}/libproj.so.0"/>
408
			<param name="ml.failonerror" value="false"/>
409
		</antcall>
410

  
411
		<antcall target="makeLink">
412
			<param name="ml.file" location="${targetDir}/libcrsjniproj.so.0.1.1"/>
413
			<param name="ml.link" value="${targetDir}/libcrsjniproj.so"/>
414
			<param name="ml.failonerror" value="false"/>
415
		</antcall>
416
		<antcall target="makeLink">
417
			<param name="ml.file" location="${targetDir}/libcrsjniproj.so.0.1.1"/>
418
			<param name="ml.link" value="${targetDir}/libcrsjniproj.so.0"/>
419
			<param name="ml.failonerror" value="false"/>
420
		</antcall>
421

  
422
	</target>
423

  
424

  
425

  
426

  
427
	<target name="makeLink" if="isLinux">
428
		<!--<exec executable="ln" os="unix" failonerror="${ml.failonerror}">-->
429
		<exec executable="ln" failonerror="true">
430
		    <arg value="-sf"/>
431
		    <arg value="${ml.file}"/>
432
		    <arg value="${ml.link}"/>
433
		</exec>
434
	</target>
435

  
436
	<target name="clean3D" if="is3D">
437
		<delete includeemptydirs="true">
438
			<fileset dir="${targetDir}" includes="osgPlugins**/**" />
439
		</delete>
440
	</target>
441

  
442
	<target name="clean" depends="clean3D">
443
		<delete>
444
			<fileset
445
				dir="${targetDir}"
446
				includes="*.so*"/>
447
		</delete>
448
	</target>
449

  
450

  
451
	<target name="3D" if="is3D">
452
		<copy todir="${targetDir}">
453
			<fileset dir="3D" includes="*.so*" />
454
		</copy>
455
		<copy todir="${targetDir}">
456
			<fileset dir="3D" includes="**/*.so*" />
457
		</copy>
458

  
459
		<!--<property file="3D/links.properties" prefix="links3D"/>-->
460
		<exec executable="${basedir}/3D/install-3D.sh">
461
			<arg value="${targetDir}"/>
462
		</exec>
463

  
464
		<!-- cd $HOME/.depman/lib ; find . -type l -exec ls -l {} ';' | sed 's/.*[.][/]//g' | sed 's/\(.*\) -> \(.*\)$/ln -sf \2 \1/g' > ${3D}/install-3D.sh ; cat ${3D}/install-3D.sh.head ${3D}/install-3D.sh > ${3D}/install-3D.sh -->
465

  
466
	</target>
467

  
468
</project>
0 469

  
tags/tmp_build/binaries/linux/raster/ecw/libjecw.so
1
link libjecw.so.0.0.7
0 2

  
tags/tmp_build/binaries/linux/raster/gdal/data/s57attributes.csv
1
"Code","Attribute","Acronym","Attributetype","Class"
2
1,Agency responsible for production,AGENCY,A,F
3
2,Beacon shape,BCNSHP,E,F
4
3,Building shape,BUISHP,E,F
5
4,Buoy shape,BOYSHP,E,F
6
5,Buried depth,BURDEP,F,F
7
6,Call sign,CALSGN,S,F
8
7,Category of airport/airfield,CATAIR,L,F
9
8,Category of anchorage,CATACH,L,F
10
9,Category of bridge,CATBRG,L,F
11
10,Category of built-up area,CATBUA,E,F
12
11,Category of cable,CATCBL,E,F
13
12,Category of canal,CATCAN,E,F
14
13,Category of cardinal mark,CATCAM,E,F
15
14,Category of checkpoint,CATCHP,E,F
16
15,Category of coastline,CATCOA,E,F
17
16,Category of control point,CATCTR,E,F
18
17,Category of conveyor,CATCON,E,F
19
18,Category of coverage,CATCOV,E,F
20
19,Category of crane,CATCRN,E,F
21
20,Category of dam,CATDAM,E,F
22
21,Category of distance mark,CATDIS,E,F
23
22,Category of dock,CATDOC,E,F
24
23,Category of dumping ground,CATDPG,L,F
25
24,Category of  fence/wall,CATFNC,E,F
26
25,Category of ferry,CATFRY,E,F
27
26,Category of  fishing  facility,CATFIF,E,F
28
27,Category of  fog signal,CATFOG,E,F
29
28,Category of  fortified structure,CATFOR,E,F
30
29,Category of gate,CATGAT,E,F
31
30,Category of harbour facility,CATHAF,L,F
32
31,Category of hulk,CATHLK,L,F
33
32,Category of  ice,CATICE,E,F
34
33,Category of installation buoy,CATINB,E,F
35
34,Category of land region,CATLND,L,F
36
35,Category of landmark,CATLMK,L,F
37
36,Category of lateral mark,CATLAM,E,F
38
37,Category of light,CATLIT,L,F
39
38,Category of marine farm/culture,CATMFA,E,F
40
39,Category of military practice area,CATMPA,L,F
41
40,Category of mooring/warping facility,CATMOR,E,F
42
41,Category of navigation line,CATNAV,E,F
43
42,Category of obstruction,CATOBS,E,F
44
43,Category of offshore platform,CATOFP,L,F
45
44,Category of oil barrier,CATOLB,E,F
46
45,Category of pile,CATPLE,E,F
47
46,Category of pilot boarding place,CATPIL,E,F
48
47,Category of pipeline / pipe,CATPIP,L,F
49
48,Category of production area,CATPRA,E,F
50
49,Category of pylon,CATPYL,E,F
51
50,Category of quality of data,CATQUA,E,F
52
51,Category of radar station,CATRAS,E,F
53
52,Category of radar transponder beacon,CATRTB,E,F
54
53,Category of radio station,CATROS,L,F
55
54,Category of recommended track,CATTRK,E,F
56
55,Category of rescue station,CATRSC,L,F
57
56,Category of restricted area,CATREA,L,F
58
57,Category of road,CATROD,E,F
59
58,Category of runway,CATRUN,E,F
60
59,Category of sea area,CATSEA,E,F
61
60,Category of shoreline construction,CATSLC,E,F
62
61,"Category of signal station, traffic",CATSIT,L,F
63
62,"Category of signal station, warning",CATSIW,L,F
64
63,Category of silo/tank,CATSIL,E,F
65
64,Category of slope,CATSLO,E,F
66
65,Category of small craft facility,CATSCF,L,F
67
66,Category of special purpose mark,CATSPM,L,F
68
67,Category of Traffic Separation Scheme,CATTSS,E,F
69
68,Category of vegetation,CATVEG,L,F
70
69,Category of water turbulence,CATWAT,E,F
71
70,Category of weed/kelp,CATWED,E,F
72
71,Category of wreck,CATWRK,E,F
73
72,Category of zone of confidence data,CATZOC,E,F
74
73,Character spacing,$SPACE,E,$
75
74,Character specification,$CHARS,A,$
76
75,Colour,COLOUR,L,F
77
76,Colour pattern,COLPAT,L,F
78
77,Communication channel,COMCHA,A,F
79
78,Compass size,$CSIZE,F,$
80
79,Compilation date,CPDATE,A,F
81
80,Compilation scale,CSCALE,I,F
82
81,Condition,CONDTN,E,F
83
82,"Conspicuous, Radar",CONRAD,E,F
84
83,"Conspicuous, visual",CONVIS,E,F
85
84,Current velocity,CURVEL,F,F
86
85,Date end,DATEND,A,F
87
86,Date start,DATSTA,A,F
88
87,Depth range value 1,DRVAL1,F,F
89
88,Depth range value 2,DRVAL2,F,F
90
89,Depth units,DUNITS,E,F
91
90,Elevation,ELEVAT,F,F
92
91,Estimated range of transmission,ESTRNG,F,F
93
92,Exhibition condition of light,EXCLIT,E,F
94
93,Exposition of sounding,EXPSOU,E,F
95
94,Function,FUNCTN,L,F
96
95,Height,HEIGHT,F,F
97
96,Height/length units,HUNITS,E,F
98
97,Horizontal accuracy,HORACC,F,F
99
98,Horizontal clearance,HORCLR,F,F
100
99,Horizontal length,HORLEN,F,F
101
100,Horizontal width,HORWID,F,F
102
101,Ice factor,ICEFAC,F,F
103
102,Information,INFORM,S,F
104
103,Jurisdiction,JRSDTN,E,F
105
104,Justification - horizontal,$JUSTH,E,$
106
105,Justification - vertical,$JUSTV,E,$
107
106,Lifting capacity,LIFCAP,F,F
108
107,Light characteristic,LITCHR,E,F
109
108,Light visibility,LITVIS,L,F
110
109,Marks navigational - System of,MARSYS,E,F
111
110,Multiplicity of lights,MLTYLT,I,F
112
111,Nationality,NATION,A,F
113
112,Nature of construction,NATCON,L,F
114
113,Nature of surface,NATSUR,L,F
115
114,Nature of surface - qualifying terms,NATQUA,L,F
116
115,Notice to Mariners date,NMDATE,A,F
117
116,Object name,OBJNAM,S,F
118
117,Orientation,ORIENT,F,F
119
118,Periodic date end,PEREND,A,F
120
119,Periodic date start,PERSTA,A,F
121
120,Pictorial representation,PICREP,S,F
122
121,Pilot district,PILDST,S,F
123
122,Producing country,PRCTRY,A,F
124
123,Product,PRODCT,L,F
125
124,Publication reference,PUBREF,S,F
126
125,Quality of sounding measurement,QUASOU,L,F
127
126,Radar wave length,RADWAL,A,F
128
127,Radius,RADIUS,F,F
129
128,Recording date,RECDAT,A,F
130
129,Recording indication,RECIND,A,F
131
130,Reference year for magnetic variation,RYRMGV,A,F
132
131,Restriction,RESTRN,L,F
133
132,Scale maximum,SCAMAX,I,F
134
133,Scale minimum,SCAMIN,I,F
135
134,Scale value one,SCVAL1,I,F
136
135,Scale value two,SCVAL2,I,F
137
136,Sector limit one,SECTR1,F,F
138
137,Sector limit two,SECTR2,F,F
139
138,Shift parameters,SHIPAM,A,F
140
139,Signal frequency,SIGFRQ,I,F
141
140,Signal generation,SIGGEN,E,F
142
141,Signal group,SIGGRP,A,F
143
142,Signal period,SIGPER,F,F
144
143,Signal sequence,SIGSEQ,A,F
145
144,Sounding accuracy,SOUACC,F,F
146
145,Sounding distance - maximum,SDISMX,I,F
147
146,Sounding distance - minimum,SDISMN,I,F
148
147,Source date,SORDAT,A,F
149
148,Source indication,SORIND,A,F
150
149,Status,STATUS,L,F
151
150,Survey authority,SURATH,S,F
152
151,Survey date - end,SUREND,A,F
153
152,Survey date - start,SURSTA,A,F
154
153,Survey type,SURTYP,L,F
155
154,Symbol scaling factor,$SCALE,F,$
156
155,Symbolization code,$SCODE,A,$
157
156,Technique of sounding measurement,TECSOU,L,F
158
157,Text string,$TXSTR,S,$
159
158,Textual description,TXTDSC,S,F
160
159,Tidal stream - panel values,TS_TSP,A,F
161
160,"Tidal stream, current - time series values",TS_TSV,A,F
162
161,Tide - accuracy of water level,T_ACWL,E,F
163
162,Tide - high and low water values,T_HWLW,A,F
164
163,Tide - method of tidal prediction,T_MTOD,E,F
165
164,Tide - time and height differences,T_THDF,A,F
166
165,"Tide, current - time interval of values",T_TINT,I,F
167
166,Tide - time series values,T_TSVL,A,F
168
167,Tide - value of harmonic constituents,T_VAHC,A,F
169
168,Time end,TIMEND,A,F
170
169,Time start,TIMSTA,A,F
171
170,Tint,$TINTS,E,$
172
171,Topmark/daymark shape,TOPSHP,E,F
173
172,Traffic flow,TRAFIC,E,F
174
173,Value of annual change in magnetic variation,VALACM,F,F
175
174,Value of depth contour,VALDCO,F,F
176
175,Value of local magnetic anomaly,VALLMA,F,F
177
176,Value of magnetic variation,VALMAG,F,F
178
177,Value of maximum range,VALMXR,F,F
179
178,Value of nominal range,VALNMR,F,F
180
179,Value of sounding,VALSOU,F,F
181
180,Vertical accuracy,VERACC,F,F
182
181,Vertical clearance,VERCLR,F,F
183
182,"Vertical clearance, closed",VERCCL,F,F
184
183,"Vertical clearance, open",VERCOP,F,F
185
184,"Vertical clearance, safe",VERCSA,F,F
186
185,Vertical datum,VERDAT,E,F
187
186,Vertical length,VERLEN,F,F
188
187,Water level effect,WATLEV,E,F
189
188,Category of Tidal stream,CAT_TS,E,F
190
189,Positional accuracy units,PUNITS,E,F
191
300,Information in national language,NINFOM,S,N
192
301,Object name in national language,NOBJNM,S,N
193
302,Pilot district in national language,NPLDST,S,N
194
303,Text string in national language,$NTXST,S,N
195
304,Textual description in national language,NTXTDS,S,N
196
400,Horizontal datum,HORDAT,E,S
197
401,Positional Accuracy,POSACC,F,S
198
402,Quality of position,QUAPOS,E,S
tags/tmp_build/binaries/linux/raster/gdal/data/pcs.csv
1
"COORD_REF_SYS_CODE","COORD_REF_SYS_NAME","UOM_CODE","SOURCE_GEOGCRS_CODE","COORD_OP_CODE","COORD_OP_METHOD_CODE","SHOW_CRS","DEPRECATED","PARAMETER_CODE_1","PARAMETER_VALUE_1","PARAMETER_UOM_1","PARAMETER_CODE_2","PARAMETER_VALUE_2","PARAMETER_UOM_2","PARAMETER_CODE_3","PARAMETER_VALUE_3","PARAMETER_UOM_3","PARAMETER_CODE_4","PARAMETER_VALUE_4","PARAMETER_UOM_4","PARAMETER_CODE_5","PARAMETER_VALUE_5","PARAMETER_UOM_5","PARAMETER_CODE_6","PARAMETER_VALUE_6","PARAMETER_UOM_6","PARAMETER_CODE_7","PARAMETER_VALUE_7","PARAMETER_UOM_7"
2
2000,"Anguilla 1957 / British West Indies Grid",9001,4600,19942,9807,1,0,8801,0,9102,8802,-62,9102,8805,0.9995,9201,8806,400000,9001,8807,0,9001,,,,,,
3
2001,"Antigua 1943 / British West Indies Grid",9001,4601,19942,9807,1,0,8801,0,9102,8802,-62,9102,8805,0.9995,9201,8806,400000,9001,8807,0,9001,,,,,,
4
2002,"Dominica 1945 / British West Indies Grid",9001,4602,19942,9807,1,0,8801,0,9102,8802,-62,9102,8805,0.9995,9201,8806,400000,9001,8807,0,9001,,,,,,
5
2003,"Grenada 1953 / British West Indies Grid",9001,4603,19942,9807,1,0,8801,0,9102,8802,-62,9102,8805,0.9995,9201,8806,400000,9001,8807,0,9001,,,,,,
6
2004,"Montserrat 1958 / British West Indies Grid",9001,4604,19942,9807,1,0,8801,0,9102,8802,-62,9102,8805,0.9995,9201,8806,400000,9001,8807,0,9001,,,,,,
7
2005,"St. Kitts 1955 / British West Indies Grid",9001,4605,19942,9807,1,0,8801,0,9102,8802,-62,9102,8805,0.9995,9201,8806,400000,9001,8807,0,9001,,,,,,
8
2006,"St. Lucia 1955 / British West Indies Grid",9001,4606,19942,9807,1,0,8801,0,9102,8802,-62,9102,8805,0.9995,9201,8806,400000,9001,8807,0,9001,,,,,,
9
2007,"St. Vincent 45 / British West Indies Grid",9001,4607,19942,9807,1,0,8801,0,9102,8802,-62,9102,8805,0.9995,9201,8806,400000,9001,8807,0,9001,,,,,,
10
2008,"NAD27(CGQ77) / SCoPQ zone 2",9001,4609,17700,9807,1,0,8801,0,9110,8802,-55.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
11
2009,"NAD27(CGQ77) / SCoPQ zone 3",9001,4609,17703,9807,1,0,8801,0,9110,8802,-58.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
12
2010,"NAD27(CGQ77) / SCoPQ zone 4",9001,4609,17704,9807,1,0,8801,0,9110,8802,-61.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
13
2011,"NAD27(CGQ77) / SCoPQ zone 5",9001,4609,17705,9807,1,0,8801,0,9110,8802,-64.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
14
2012,"NAD27(CGQ77) / SCoPQ zone 6",9001,4609,17706,9807,1,0,8801,0,9110,8802,-67.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
15
2013,"NAD27(CGQ77) / SCoPQ zone 7",9001,4609,17707,9807,1,0,8801,0,9110,8802,-70.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
16
2014,"NAD27(CGQ77) / SCoPQ zone 8",9001,4609,17708,9807,1,0,8801,0,9110,8802,-73.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
17
2015,"NAD27(CGQ77) / SCoPQ zone 9",9001,4609,17709,9807,1,0,8801,0,9110,8802,-76.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
18
2016,"NAD27(CGQ77) / SCoPQ zone 10",9001,4609,17710,9807,1,0,8801,0,9110,8802,-79.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
19
2017,"NAD27(76) / MTM zone 8",9001,4608,17708,9807,1,0,8801,0,9110,8802,-73.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
20
2018,"NAD27(76) / MTM zone 9",9001,4608,17709,9807,1,0,8801,0,9110,8802,-76.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
21
2019,"NAD27(76) / MTM zone 10",9001,4608,17710,9807,1,0,8801,0,9110,8802,-79.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
22
2020,"NAD27(76) / MTM zone 11",9001,4608,17711,9807,1,0,8801,0,9110,8802,-82.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
23
2021,"NAD27(76) / MTM zone 12",9001,4608,17712,9807,1,0,8801,0,9102,8802,-81,9102,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
24
2022,"NAD27(76) / MTM zone 13",9001,4608,17713,9807,1,0,8801,0,9102,8802,-84,9102,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
25
2023,"NAD27(76) / MTM zone 14",9001,4608,17714,9807,1,0,8801,0,9102,8802,-87,9102,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
26
2024,"NAD27(76) / MTM zone 15",9001,4608,17715,9807,1,0,8801,0,9102,8802,-90,9102,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
27
2025,"NAD27(76) / MTM zone 16",9001,4608,17716,9807,1,0,8801,0,9102,8802,-93,9102,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
28
2026,"NAD27(76) / MTM zone 17",9001,4608,17717,9807,1,0,8801,0,9102,8802,-96,9102,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
29
2027,"NAD27(76) / UTM zone 15N",9001,4608,16015,9807,1,0,8801,0,9102,8802,-93,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
30
2028,"NAD27(76) / UTM zone 16N",9001,4608,16016,9807,1,0,8801,0,9102,8802,-87,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
31
2029,"NAD27(76) / UTM zone 17N",9001,4608,16017,9807,1,0,8801,0,9102,8802,-81,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
32
2030,"NAD27(76) / UTM zone 18N",9001,4608,16018,9807,1,0,8801,0,9102,8802,-75,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
33
2031,"NAD27(CGQ77) / UTM zone 17N",9001,4609,16017,9807,1,0,8801,0,9102,8802,-81,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
34
2032,"NAD27(CGQ77) / UTM zone 18N",9001,4609,16018,9807,1,0,8801,0,9102,8802,-75,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
35
2033,"NAD27(CGQ77) / UTM zone 19N",9001,4609,16019,9807,1,0,8801,0,9102,8802,-69,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
36
2034,"NAD27(CGQ77) / UTM zone 20N",9001,4609,16020,9807,1,0,8801,0,9102,8802,-63,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
37
2035,"NAD27(CGQ77) / UTM zone 21N",9001,4609,16021,9807,1,0,8801,0,9102,8802,-57,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
38
2036,"NAD83(CSRS98) / New Brunswick Stereo",9001,4140,19946,9809,1,1,8801,46.3,9110,8802,-66.3,9110,8805,0.999912,9201,8806,2500000,9001,8807,7500000,9001,,,,,,
39
2037,"NAD83(CSRS98) / UTM zone 19N",9001,4140,16019,9807,1,1,8801,0,9102,8802,-69,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
40
2038,"NAD83(CSRS98) / UTM zone 20N",9001,4140,16020,9807,1,1,8801,0,9102,8802,-63,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
41
2039,"Israel / Israeli TM Grid",9001,4141,18204,9807,1,0,8801,31.4403817,9110,8802,35.1216261,9110,8805,1.0000067,9201,8806,219529.584,9001,8807,626907.39,9001,,,,,,
42
2040,"Locodjo 1965 / UTM zone 30N",9001,4142,16030,9807,1,0,8801,0,9102,8802,-3,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
43
2041,"Abidjan 1987 / UTM zone 30N",9001,4143,16030,9807,1,0,8801,0,9102,8802,-3,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
44
2042,"Locodjo 1965 / UTM zone 29N",9001,4142,16029,9807,1,0,8801,0,9102,8802,-9,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
45
2043,"Abidjan 1987 / UTM zone 29N",9001,4143,16029,9807,1,0,8801,0,9102,8802,-9,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
46
2044,"Hanoi 1972 / Gauss-Kruger zone 18",9001,4147,16218,9807,1,0,8801,0,9102,8802,105,9102,8805,1,9201,8806,18500000,9001,8807,0,9001,,,,,,
47
2045,"Hanoi 1972 / Gauss-Kruger zone 19",9001,4147,16219,9807,1,0,8801,0,9102,8802,111,9102,8805,1,9201,8806,19500000,9001,8807,0,9001,,,,,,
48
2046,"Hartebeesthoek94 / Lo15",9001,4148,17515,9808,1,0,8801,0,9102,8802,15,9102,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
49
2047,"Hartebeesthoek94 / Lo17",9001,4148,17517,9808,1,0,8801,0,9102,8802,17,9102,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
50
2048,"Hartebeesthoek94 / Lo19",9001,4148,17519,9808,1,0,8801,0,9102,8802,19,9102,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
51
2049,"Hartebeesthoek94 / Lo21",9001,4148,17521,9808,1,0,8801,0,9102,8802,21,9102,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
52
2050,"Hartebeesthoek94 / Lo23",9001,4148,17523,9808,1,0,8801,0,9102,8802,23,9102,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
53
2051,"Hartebeesthoek94 / Lo25",9001,4148,17525,9808,1,0,8801,0,9102,8802,25,9102,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
54
2052,"Hartebeesthoek94 / Lo27",9001,4148,17527,9808,1,0,8801,0,9102,8802,27,9102,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
55
2053,"Hartebeesthoek94 / Lo29",9001,4148,17529,9808,1,0,8801,0,9102,8802,29,9102,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
56
2054,"Hartebeesthoek94 / Lo31",9001,4148,17531,9808,1,0,8801,0,9102,8802,31,9102,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
57
2055,"Hartebeesthoek94 / Lo33",9001,4148,17533,9808,1,0,8801,0,9102,8802,33,9102,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
58
2056,"CH1903+ / LV95",9001,4150,19950,9815,1,0,8811,46.570866,9110,8812,7.26225,9110,8813,90,9110,8814,90,9110,8815,1,9201,8816,2600000,9001,8817,1200000,9001
59
2057,"Rassadiran / Nakhl e Taqi",9001,4153,19951,9815,1,0,8811,27.31077837,9110,8812,52.3612741,9110,8813,0.34179803,9110,8814,0.34179803,9110,8815,0.999895934,9201,8816,658377.437,9001,8817,3044969.194,9001
60
2058,"ED50(ED77) / UTM zone 38N",9001,4154,16038,9807,1,0,8801,0,9102,8802,45,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
61
2059,"ED50(ED77) / UTM zone 39N",9001,4154,16039,9807,1,0,8801,0,9102,8802,51,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
62
2060,"ED50(ED77) / UTM zone 40N",9001,4154,16040,9807,1,0,8801,0,9102,8802,57,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
63
2061,"ED50(ED77) / UTM zone 41N",9001,4154,16041,9807,1,0,8801,0,9102,8802,63,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
64
2062,"Madrid 1870 (Madrid) / Spain",9001,4903,19921,9801,1,0,8801,40,9102,8802,0,9102,8805,0.9988085293,9201,8806,600000,9001,8807,600000,9001,,,,,,
65
2063,"Dabola 1981 / UTM zone 28N",9001,4315,16028,9807,1,0,8801,0,9102,8802,-15,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
66
2064,"Dabola 1981 / UTM zone 29N",9001,4315,16029,9807,1,0,8801,0,9102,8802,-9,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
67
2065,"S-JTSK (Ferro) / Krovak",9001,4818,19952,9819,1,0,8811,49.3,9110,8812,42.3,9110,8813,30.1717303,9110,8816,0,9001,8817,0,9001,8818,78.3,9110,8819,0.9999,9201
68
2066,"Mount Dillon / Tobago Grid",9039,4157,19924,9806,1,0,8801,11.1507843,9110,8802,-60.4109632,9110,8806,187500,9039,8807,180000,9039,,,,,,,,,
69
2067,"Naparima 1955 / UTM zone 20N",9001,4158,16020,9807,1,0,8801,0,9102,8802,-63,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
70
2068,"ELD79 / Libya zone 5",9001,4159,18240,9807,1,0,8801,0,9102,8802,9,9102,8805,0.9999,9201,8806,200000,9001,8807,0,9001,,,,,,
71
2069,"ELD79 / Libya zone 6",9001,4159,18241,9807,1,0,8801,0,9102,8802,11,9102,8805,0.9999,9201,8806,200000,9001,8807,0,9001,,,,,,
72
2070,"ELD79 / Libya zone 7",9001,4159,18242,9807,1,0,8801,0,9102,8802,13,9102,8805,0.9999,9201,8806,200000,9001,8807,0,9001,,,,,,
73
2071,"ELD79 / Libya zone 8",9001,4159,18243,9807,1,0,8801,0,9102,8802,15,9102,8805,0.9999,9201,8806,200000,9001,8807,0,9001,,,,,,
74
2072,"ELD79 / Libya zone 9",9001,4159,18244,9807,1,0,8801,0,9102,8802,17,9102,8805,0.9999,9201,8806,200000,9001,8807,0,9001,,,,,,
75
2073,"ELD79 / Libya zone 10",9001,4159,18245,9807,1,0,8801,0,9102,8802,19,9102,8805,0.9999,9201,8806,200000,9001,8807,0,9001,,,,,,
76
2074,"ELD79 / Libya zone 11",9001,4159,18246,9807,1,0,8801,0,9102,8802,21,9102,8805,0.9999,9201,8806,200000,9001,8807,0,9001,,,,,,
77
2075,"ELD79 / Libya zone 12",9001,4159,18247,9807,1,0,8801,0,9102,8802,23,9102,8805,0.9999,9201,8806,200000,9001,8807,0,9001,,,,,,
78
2076,"ELD79 / Libya zone 13",9001,4159,18248,9807,1,0,8801,0,9102,8802,25,9102,8805,0.9999,9201,8806,200000,9001,8807,0,9001,,,,,,
79
2077,"ELD79 / UTM zone 32N",9001,4159,16032,9807,1,0,8801,0,9102,8802,9,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
80
2078,"ELD79 / UTM zone 33N",9001,4159,16033,9807,1,0,8801,0,9102,8802,15,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
81
2079,"ELD79 / UTM zone 34N",9001,4159,16034,9807,1,0,8801,0,9102,8802,21,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
82
2080,"ELD79 / UTM zone 35N",9001,4159,16035,9807,1,0,8801,0,9102,8802,27,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
83
2081,"Chos Malal 1914 / Argentina zone 2",9001,4160,18032,9807,1,0,8801,-90,9102,8802,-69,9102,8805,1,9201,8806,2500000,9001,8807,0,9001,,,,,,
84
2082,"Pampa del Castillo / Argentina zone 2",9001,4161,18032,9807,1,0,8801,-90,9102,8802,-69,9102,8805,1,9201,8806,2500000,9001,8807,0,9001,,,,,,
85
2083,"Hito XVIII 1963 / Argentina zone 2",9001,4254,18032,9807,1,0,8801,-90,9102,8802,-69,9102,8805,1,9201,8806,2500000,9001,8807,0,9001,,,,,,
86
2084,"Hito XVIII 1963 / UTM zone 19S",9001,4254,16119,9807,1,0,8801,0,9102,8802,-69,9102,8805,0.9996,9201,8806,500000,9001,8807,10000000,9001,,,,,,
87
2085,"NAD27 / Cuba Norte",9001,4267,18061,9801,1,0,8801,22.21,9110,8802,-81,9110,8805,0.99993602,9201,8806,500000,9001,8807,280296.016,9001,,,,,,
88
2086,"NAD27 / Cuba Sur",9001,4267,18062,9801,1,0,8801,20.43,9110,8802,-76.5,9110,8805,0.99994848,9201,8806,500000,9001,8807,229126.939,9001,,,,,,
89
2087,"ELD79 / TM 12 NE",9001,4159,16412,9807,1,0,8801,0,9102,8802,12,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
90
2088,"Carthage / TM 11 NE",9001,4223,16411,9807,1,0,8801,0,9102,8802,11,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
91
2089,"Yemen NGN96 / UTM zone 38N",9001,4163,16038,9807,1,0,8801,0,9102,8802,45,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
92
2090,"Yemen NGN96 / UTM zone 39N",9001,4163,16039,9807,1,0,8801,0,9102,8802,51,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
93
2091,"South Yemen / Gauss Kruger zone 8",9001,4164,16208,9807,1,1,8801,0,9102,8802,45,9102,8805,1,9201,8806,8500000,9001,8807,0,9001,,,,,,
94
2092,"South Yemen / Gauss Kruger zone 9",9001,4164,16209,9807,1,1,8801,0,9102,8802,51,9102,8805,1,9201,8806,9500000,9001,8807,0,9001,,,,,,
95
2093,"Hanoi 1972 / GK 106 NE",9001,4147,16586,9807,1,0,8801,0,9102,8802,106,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
96
2094,"WGS 72BE / TM 106 NE",9001,4324,16506,9807,1,0,8801,0,9102,8802,106,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
97
2095,"Bissau / UTM zone 28N",9001,4165,16028,9807,1,0,8801,0,9102,8802,-15,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
98
2096,"Korean 1985 / Korea East Belt",9001,4162,18251,9807,1,0,8801,38,9102,8802,129,9102,8805,1,9201,8806,200000,9001,8807,500000,9001,,,,,,
99
2097,"Korean 1985 / Korea Central Belt",9001,4162,18252,9807,1,0,8801,38,9102,8802,127,9102,8805,1,9201,8806,200000,9001,8807,500000,9001,,,,,,
100
2098,"Korean 1985 / Korea West Belt",9001,4162,18253,9807,1,0,8801,38,9102,8802,125,9102,8805,1,9201,8806,200000,9001,8807,500000,9001,,,,,,
101
2099,"Qatar 1948 / Qatar Grid",9001,4286,19953,9806,1,0,8801,25.22565,9110,8802,50.4541,9110,8806,100000,9001,8807,100000,9001,,,,,,,,,
102
2100,"GGRS87 / Greek Grid",9001,4121,19930,9807,1,0,8801,0,9102,8802,24,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
103
2101,"Lake / Maracaibo Grid M1",9001,4249,18260,9801,1,0,8801,10.1,9110,8802,-71.3620224,9110,8805,1,9201,8806,0,9001,8807,-52684.972,9001,,,,,,
104
2102,"Lake / Maracaibo Grid",9001,4249,18261,9801,1,0,8801,10.1,9110,8802,-71.3620224,9110,8805,1,9201,8806,200000,9001,8807,147315.028,9001,,,,,,
105
2103,"Lake / Maracaibo Grid M3",9001,4249,18262,9801,1,0,8801,10.1,9110,8802,-71.3620224,9110,8805,1,9201,8806,500000,9001,8807,447315.028,9001,,,,,,
106
2104,"Lake / Maracaibo La Rosa Grid",9001,4249,18263,9801,1,0,8801,10.1,9110,8802,-71.3620224,9110,8805,1,9201,8806,-17044,9001,8807,-23139.97,9001,,,,,,
107
2105,"NZGD2000 / Mount Eden Circuit 2000",9001,4167,17931,9807,1,0,8801,-36.5247,9110,8802,174.4551,9110,8805,0.9999,9201,8806,400000,9001,8807,800000,9001,,,,,,
108
2106,"NZGD2000 / Bay of Plenty Circuit 2000",9001,4167,17932,9807,1,0,8801,-37.454,9110,8802,176.2758,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
109
2107,"NZGD2000 / Poverty Bay Circuit 2000",9001,4167,17933,9807,1,0,8801,-38.3728,9110,8802,177.5308,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
110
2108,"NZGD2000 / Hawkes Bay Circuit 2000",9001,4167,17934,9807,1,0,8801,-39.3903,9110,8802,176.4025,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
111
2109,"NZGD2000 / Taranaki Circuit 2000",9001,4167,17935,9807,1,0,8801,-39.0808,9110,8802,174.134,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
112
2110,"NZGD2000 / Tuhirangi Circuit 2000",9001,4167,17936,9807,1,0,8801,-39.3044,9110,8802,175.3824,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
113
2111,"NZGD2000 / Wanganui Circuit 2000",9001,4167,17937,9807,1,0,8801,-40.1431,9110,8802,175.2917,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
114
2112,"NZGD2000 / Wairarapa Circuit 2000",9001,4167,17938,9807,1,0,8801,-40.5531,9110,8802,175.385,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
115
2113,"NZGD2000 / Wellington Circuit 2000",9001,4167,17939,9807,1,0,8801,-41.1804,9110,8802,174.4635,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
116
2114,"NZGD2000 / Collingwood Circuit 2000",9001,4167,17940,9807,1,0,8801,-40.4253,9110,8802,172.4019,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
117
2115,"NZGD2000 / Nelson Circuit 2000",9001,4167,17941,9807,1,0,8801,-41.1628,9110,8802,173.1757,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
118
2116,"NZGD2000 / Karamea Circuit 2000",9001,4167,17942,9807,1,0,8801,-41.1723,9110,8802,172.0632,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
119
2117,"NZGD2000 / Buller Circuit 2000",9001,4167,17943,9807,1,0,8801,-41.4838,9110,8802,171.3452,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
120
2118,"NZGD2000 / Grey Circuit 2000",9001,4167,17944,9807,1,0,8801,-42.2001,9110,8802,171.3259,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
121
2119,"NZGD2000 / Amuri Circuit 2000",9001,4167,17945,9807,1,0,8801,-42.412,9110,8802,173.0036,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
122
2120,"NZGD2000 / Marlborough Circuit 2000",9001,4167,17946,9807,1,0,8801,-41.324,9110,8802,173.4807,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
123
2121,"NZGD2000 / Hokitika Circuit 2000",9001,4167,17947,9807,1,0,8801,-42.531,9110,8802,170.5847,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
124
2122,"NZGD2000 / Okarito Circuit 2000",9001,4167,17948,9807,1,0,8801,-43.0636,9110,8802,170.1539,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
125
2123,"NZGD2000 / Jacksons Bay Circuit 2000",9001,4167,17949,9807,1,0,8801,-43.584,9110,8802,168.3622,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
126
2124,"NZGD2000 / Mount Pleasant Circuit 2000",9001,4167,17950,9807,1,0,8801,-43.3526,9110,8802,172.4337,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
127
2125,"NZGD2000 / Gawler Circuit 2000",9001,4167,17951,9807,1,0,8801,-43.4455,9110,8802,171.2138,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
128
2126,"NZGD2000 / Timaru Circuit 2000",9001,4167,17952,9807,1,0,8801,-44.2407,9110,8802,171.0326,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
129
2127,"NZGD2000 / Lindis Peak Circuit 2000",9001,4167,17953,9807,1,0,8801,-44.4406,9110,8802,169.2803,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
130
2128,"NZGD2000 / Mount Nicholas Circuit 2000",9001,4167,17954,9807,1,0,8801,-45.0758,9110,8802,168.2355,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
131
2129,"NZGD2000 / Mount York Circuit 2000",9001,4167,17955,9807,1,0,8801,-45.3349,9110,8802,167.4419,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
132
2130,"NZGD2000 / Observation Point Circuit 2000",9001,4167,17956,9807,1,0,8801,-45.4858,9110,8802,170.3742,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
133
2131,"NZGD2000 / North Taieri Circuit 2000",9001,4167,17957,9807,1,0,8801,-45.5141,9110,8802,170.1657,9110,8805,0.99996,9201,8806,400000,9001,8807,800000,9001,,,,,,
134
2132,"NZGD2000 / Bluff Circuit 2000",9001,4167,17958,9807,1,0,8801,-46.36,9110,8802,168.2034,9110,8805,1,9201,8806,400000,9001,8807,800000,9001,,,,,,
135
2133,"NZGD2000 / UTM zone 58S",9001,4167,16158,9807,1,0,8801,0,9102,8802,165,9102,8805,0.9996,9201,8806,500000,9001,8807,10000000,9001,,,,,,
136
2134,"NZGD2000 / UTM zone 59S",9001,4167,16159,9807,1,0,8801,0,9102,8802,171,9102,8805,0.9996,9201,8806,500000,9001,8807,10000000,9001,,,,,,
137
2135,"NZGD2000 / UTM zone 60S",9001,4167,16160,9807,1,0,8801,0,9102,8802,177,9102,8805,0.9996,9201,8806,500000,9001,8807,10000000,9001,,,,,,
138
2136,"Accra / Ghana National Grid",9094,4168,19959,9807,1,0,8801,4.4,9110,8802,-1,9110,8805,0.99975,9201,8806,900000,9094,8807,0,9094,,,,,,
139
2137,"Accra / TM 1 NW",9001,4168,17001,9807,1,0,8801,0,9102,8802,-1,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
140
2138,"NAD27(CGQ77) / Quebec Lambert",9001,4609,19944,9802,1,0,8821,44,9110,8822,-68.3,9110,8823,60,9110,8824,46,9110,8826,0,9001,8827,0,9001,,,
141
2139,"NAD83(CSRS98) / SCoPQ zone 2",9001,4140,17700,9807,1,1,8801,0,9110,8802,-55.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
142
2140,"NAD83(CSRS98) / MTM zone 3",9001,4140,17703,9807,1,1,8801,0,9110,8802,-58.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
143
2141,"NAD83(CSRS98) / MTM zone 4",9001,4140,17704,9807,1,1,8801,0,9110,8802,-61.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
144
2142,"NAD83(CSRS98) / MTM zone 5",9001,4140,17705,9807,1,1,8801,0,9110,8802,-64.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
145
2143,"NAD83(CSRS98) / MTM zone 6",9001,4140,17706,9807,1,1,8801,0,9110,8802,-67.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
146
2144,"NAD83(CSRS98) / MTM zone 7",9001,4140,17707,9807,1,1,8801,0,9110,8802,-70.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
147
2145,"NAD83(CSRS98) / MTM zone 8",9001,4140,17708,9807,1,1,8801,0,9110,8802,-73.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
148
2146,"NAD83(CSRS98) / MTM zone 9",9001,4140,17709,9807,1,1,8801,0,9110,8802,-76.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
149
2147,"NAD83(CSRS98) / MTM zone 10",9001,4140,17710,9807,1,1,8801,0,9110,8802,-79.3,9110,8805,0.9999,9201,8806,304800,9001,8807,0,9001,,,,,,
150
2148,"NAD83(CSRS98) / UTM zone 21N",9001,4140,16021,9807,1,1,8801,0,9102,8802,-57,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
151
2149,"NAD83(CSRS98) / UTM zone 18N",9001,4140,16018,9807,1,1,8801,0,9102,8802,-75,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
152
2150,"NAD83(CSRS98) / UTM zone 17N",9001,4140,16017,9807,1,1,8801,0,9102,8802,-81,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
153
2151,"NAD83(CSRS98) / UTM zone 13N",9001,4140,16013,9807,1,1,8801,0,9102,8802,-105,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
154
2152,"NAD83(CSRS98) / UTM zone 12N",9001,4140,16012,9807,1,1,8801,0,9102,8802,-111,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
155
2153,"NAD83(CSRS98) / UTM zone 11N",9001,4140,16011,9807,1,1,8801,0,9102,8802,-117,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
156
2154,"RGF93 / Lambert-93",9001,4171,18085,9802,1,0,8821,46.3,9110,8822,3,9110,8823,49,9110,8824,44,9110,8826,700000,9001,8827,6600000,9001,,,
157
2155,"American Samoa 1962 / American Samoa Lambert",9003,4169,15300,9801,1,1,8801,-14.16,9110,8802,170,9110,8805,1,9201,8806,500000,9003,8807,0,9003,,,,,,
158
2156,"NAD83(HARN) / UTM zone 59S",9001,4152,16159,9807,1,1,8801,0,9102,8802,171,9102,8805,0.9996,9201,8806,500000,9001,8807,10000000,9001,,,,,,
159
2157,"IRENET95 / Irish Transverse Mercator",9001,4173,19962,9807,1,0,8801,53.3,9110,8802,-8,9110,8805,0.99982,9201,8806,600000,9001,8807,750000,9001,,,,,,
160
2158,"IRENET95 / UTM zone 29N",9001,4173,16029,9807,1,0,8801,0,9102,8802,-9,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
161
2159,"Sierra Leone 1924 / New Colony Grid",9094,4174,19963,9807,1,0,8801,6.4,9110,8802,-12,9110,8805,1,9201,8806,500000,9094,8807,0,9094,,,,,,
162
2160,"Sierra Leone 1924 / New War Office Grid",9094,4174,19964,9807,1,0,8801,6.4,9110,8802,-12,9110,8805,1,9201,8806,800000,9094,8807,600000,9094,,,,,,
163
2161,"Sierra Leone 1968 / UTM zone 28N",9001,4175,16028,9807,1,0,8801,0,9102,8802,-15,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
164
2162,"Sierra Leone 1968 / UTM zone 29N",9001,4175,16029,9807,1,0,8801,0,9102,8802,-9,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
165
2163,US National Atlas Equal Area,9001,4052,19965,9821,1,0,8806,0,9001,8807,0,9001,8828,45,9102,8829,-100,9102,,,,,,,,,
166
2164,"Locodjo 1965 / TM 5 NW",9001,4142,17005,9807,1,0,8801,0,9102,8802,-5,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
167
2165,"Abidjan 1987 / TM 5 NW",9001,4143,17005,9807,1,0,8801,0,9102,8802,-5,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
168
2166,"Pulkovo 1942(83) / Gauss Kruger zone 3",9001,4178,16263,9807,1,1,8801,0,9102,8802,9,9102,8805,1,9201,8806,3500000,9001,8807,0,9001,,,,,,
169
2167,"Pulkovo 1942(83) / Gauss Kruger zone 4",9001,4178,16264,9807,1,1,8801,0,9102,8802,12,9102,8805,1,9201,8806,4500000,9001,8807,0,9001,,,,,,
170
2168,"Pulkovo 1942(83) / Gauss Kruger zone 5",9001,4178,16265,9807,1,1,8801,0,9102,8802,15,9102,8805,1,9201,8806,5500000,9001,8807,0,9001,,,,,,
171
2169,"Luxembourg 1930 / Gauss",9001,4181,19966,9807,1,0,8801,49.5,9110,8802,6.1,9110,8805,1,9201,8806,80000,9001,8807,100000,9001,,,,,,
172
2170,"MGI / Slovenia Grid",9001,4312,19967,9807,1,0,8801,0,9110,8802,15,9110,8805,0.9999,9201,8806,500000,9001,8807,0,9001,,,,,,
173
2171,"Pulkovo 1942(58) / Poland zone I",9001,4179,18281,9809,1,1,8801,50.373,9110,8802,21.05,9110,8805,0.9998,9201,8806,4637000,9001,8807,5647000,9001,,,,,,
174
2172,"Pulkovo 1942(58) / Poland zone II",9001,4179,18282,9809,1,0,8801,53.0007,9110,8802,21.301,9110,8805,0.9998,9201,8806,4603000,9001,8807,5806000,9001,,,,,,
175
2173,"Pulkovo 1942(58) / Poland zone III",9001,4179,18283,9809,1,0,8801,53.35,9110,8802,17.003,9110,8805,0.9998,9201,8806,3501000,9001,8807,5999000,9001,,,,,,
176
2174,"Pulkovo 1942(58) / Poland zone IV",9001,4179,18284,9809,1,0,8801,51.4015,9110,8802,16.402,9110,8805,0.9998,9201,8806,3703000,9001,8807,5627000,9001,,,,,,
177
2175,"Pulkovo 1942(58) / Poland zone V",9001,4179,18285,9807,1,0,8801,0,9110,8802,18.573,9110,8805,0.999983,9201,8806,237000,9001,8807,-4700000,9001,,,,,,
178
2176,"ETRS89 / Poland CS2000 zone 5",9001,4258,18305,9807,1,0,8801,0,9102,8802,15,9102,8805,0.999923,9201,8806,5500000,9001,8807,0,9001,,,,,,
179
2177,"ETRS89 / Poland CS2000 zone 6",9001,4258,18306,9807,1,0,8801,0,9102,8802,18,9102,8805,0.999923,9201,8806,6500000,9001,8807,0,9001,,,,,,
180
2178,"ETRS89 / Poland CS2000 zone 7",9001,4258,18307,9807,1,0,8801,0,9102,8802,21,9102,8805,0.999923,9201,8806,7500000,9001,8807,0,9001,,,,,,
181
2179,"ETRS89 / Poland CS2000 zone 8",9001,4258,18308,9807,1,0,8801,0,9102,8802,24,9102,8805,0.999923,9201,8806,8500000,9001,8807,0,9001,,,,,,
182
2180,"ETRS89 / Poland CS92",9001,4258,18300,9807,1,0,8801,0,9102,8802,19,9102,8805,0.9993,9201,8806,500000,9001,8807,-5300000,9001,,,,,,
183
2188,"Azores Occidental 1939 / UTM zone 25N",9001,4182,16025,9807,1,0,8801,0,9102,8802,-33,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
184
2189,"Azores Central 1948 / UTM zone 26N",9001,4183,16026,9807,1,0,8801,0,9102,8802,-27,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
185
2190,"Azores Oriental 1940 / UTM zone 26N",9001,4184,16026,9807,1,0,8801,0,9102,8802,-27,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
186
2191,"Madeira 1936 / UTM zone 28N",9001,4185,16028,9807,1,1,8801,0,9102,8802,-15,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
187
2192,"ED50 / France EuroLambert",9001,4230,18086,9801,1,0,8801,46.48,9110,8802,2.2014025,9110,8805,0.99987742,9201,8806,600000,9001,8807,2200000,9001,,,,,,
188
2193,"NZGD2000 / New Zealand Transverse Mercator",9001,4167,19971,9807,1,0,8801,0,9102,8802,173,9102,8805,0.9996,9201,8806,1600000,9001,8807,10000000,9001,,,,,,
189
2194,"American Samoa 1962 / American Samoa Lambert",9003,4169,15301,9801,1,1,8801,-14.16,9110,8802,-170,9110,8805,1,9201,8806,500000,9003,8807,0,9003,,,,,,
190
2195,"NAD83(HARN) / UTM zone 2S",9001,4152,16102,9807,1,0,8801,0,9102,8802,-171,9102,8805,0.9996,9201,8806,500000,9001,8807,10000000,9001,,,,,,
191
2196,"ETRS89 / Kp2000 Jutland",9001,4258,18401,9807,1,0,8801,0,9110,8802,9.3,9110,8805,0.99995,9201,8806,200000,9001,8807,0,9001,,,,,,
192
2197,"ETRS89 / Kp2000 Zealand",9001,4258,18402,9807,1,0,8801,0,9102,8802,12,9102,8805,0.99995,9201,8806,500000,9001,8807,0,9001,,,,,,
193
2198,"ETRS89 / Kp2000 Bornholm",9001,4258,18403,9807,1,0,8801,0,9102,8802,15,9102,8805,1,9201,8806,900000,9001,8807,0,9001,,,,,,
194
2199,"Albanian 1987 / Gauss Kruger zone 4",9001,4191,16204,9807,1,1,8801,0,9102,8802,21,9102,8805,1,9201,8806,4500000,9001,8807,0,9001,,,,,,
195
2200,"ATS77 / New Brunswick Stereographic (ATS77)",9001,4122,19945,9809,1,0,8801,46.3,9110,8802,-66.3,9110,8805,0.999912,9201,8806,300000,9001,8807,800000,9001,,,,,,
196
2201,"REGVEN / UTM zone 18N",9001,4189,16018,9807,1,0,8801,0,9102,8802,-75,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
197
2202,"REGVEN / UTM zone 19N",9001,4189,16019,9807,1,0,8801,0,9102,8802,-69,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
198
2203,"REGVEN / UTM zone 20N",9001,4189,16020,9807,1,0,8801,0,9102,8802,-63,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
199
2204,"NAD27 / Tennessee",9003,4267,15302,9802,1,0,8821,34.4,9110,8822,-86,9110,8823,35.15,9110,8824,36.25,9110,8826,2000000,9003,8827,100000,9003,,,
200
2205,"NAD83 / Kentucky North",9001,4269,15303,9802,1,0,8821,37.3,9110,8822,-84.15,9110,8823,37.58,9110,8824,38.58,9110,8826,500000,9001,8827,0,9001,,,
201
2206,"ED50 / 3-degree Gauss-Kruger zone 9",9001,4230,16269,9807,1,0,8801,0,9102,8802,27,9102,8805,1,9201,8806,9500000,9001,8807,0,9001,,,,,,
202
2207,"ED50 / 3-degree Gauss-Kruger zone 10",9001,4230,16270,9807,1,0,8801,0,9102,8802,30,9102,8805,1,9201,8806,10500000,9001,8807,0,9001,,,,,,
203
2208,"ED50 / 3-degree Gauss-Kruger zone 11",9001,4230,16271,9807,1,0,8801,0,9102,8802,33,9102,8805,1,9201,8806,11500000,9001,8807,0,9001,,,,,,
204
2209,"ED50 / 3-degree Gauss-Kruger zone 12",9001,4230,16272,9807,1,0,8801,0,9102,8802,36,9102,8805,1,9201,8806,12500000,9001,8807,0,9001,,,,,,
205
2210,"ED50 / 3-degree Gauss-Kruger zone 13",9001,4230,16273,9807,1,0,8801,0,9102,8802,39,9102,8805,1,9201,8806,13500000,9001,8807,0,9001,,,,,,
206
2211,"ED50 / 3-degree Gauss-Kruger zone 14",9001,4230,16274,9807,1,0,8801,0,9102,8802,42,9102,8805,1,9201,8806,14500000,9001,8807,0,9001,,,,,,
207
2212,"ED50 / 3-degree Gauss-Kruger zone 15",9001,4230,16275,9807,1,0,8801,0,9102,8802,45,9102,8805,1,9201,8806,15500000,9001,8807,0,9001,,,,,,
208
2213,"ETRS89 / TM 30 NE",9001,4258,16430,9807,1,0,8801,0,9102,8802,30,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
209
2214,"Douala 1948 / AOF west",9001,4192,18415,9807,1,1,8801,0,9110,8802,10.3,9110,8805,0.999,9201,8806,1000000,9001,8807,1000000,9001,,,,,,
210
2215,"Manoca 1962 / UTM zone 32N",9001,4193,16032,9807,1,0,8801,0,9102,8802,9,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
211
2216,"Qornoq 1927 / UTM zone 22N",9001,4194,16022,9807,1,0,8801,0,9102,8802,-51,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
212
2217,"Qornoq 1927 / UTM zone 23N",9001,4194,16023,9807,1,0,8801,0,9102,8802,-45,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
213
2218,"Scoresbysund 1952 / Greenland zone 5 east",9001,4195,18425,9826,1,0,8801,70.3,9110,8802,-24,9110,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
214
2219,"ATS77 / UTM zone 19N",9001,4122,16019,9807,1,0,8801,0,9102,8802,-69,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
215
2220,"ATS77 / UTM zone 20N",9001,4122,16020,9807,1,0,8801,0,9102,8802,-63,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
216
2221,"Scoresbysund 1952 / Greenland zone 6 east",9001,4195,18426,9826,1,0,8801,67.3,9110,8802,-32,9110,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
217
2222,"NAD83 / Arizona East (ft)",9002,4269,15304,9807,1,0,8801,31,9110,8802,-110.1,9110,8805,0.9999,9201,8806,700000,9002,8807,0,9002,,,,,,
218
2223,"NAD83 / Arizona Central (ft)",9002,4269,15305,9807,1,0,8801,31,9110,8802,-111.55,9110,8805,0.9999,9201,8806,700000,9002,8807,0,9002,,,,,,
219
2224,"NAD83 / Arizona West (ft)",9002,4269,15306,9807,1,0,8801,31,9110,8802,-113.45,9110,8805,0.999933333,9201,8806,700000,9002,8807,0,9002,,,,,,
220
2225,"NAD83 / California zone 1 (ftUS)",9003,4269,15307,9802,1,0,8821,39.2,9110,8822,-122,9110,8823,41.4,9110,8824,40,9110,8826,6561666.667,9003,8827,1640416.667,9003,,,
221
2226,"NAD83 / California zone 2 (ftUS)",9003,4269,15308,9802,1,0,8821,37.4,9110,8822,-122,9110,8823,39.5,9110,8824,38.2,9110,8826,6561666.667,9003,8827,1640416.667,9003,,,
222
2227,"NAD83 / California zone 3 (ftUS)",9003,4269,15309,9802,1,0,8821,36.3,9110,8822,-120.3,9110,8823,38.26,9110,8824,37.04,9110,8826,6561666.667,9003,8827,1640416.667,9003,,,
223
2228,"NAD83 / California zone 4 (ftUS)",9003,4269,15310,9802,1,0,8821,35.2,9110,8822,-119,9110,8823,37.15,9110,8824,36,9110,8826,6561666.667,9003,8827,1640416.667,9003,,,
224
2229,"NAD83 / California zone 5 (ftUS)",9003,4269,15311,9802,1,0,8821,33.3,9110,8822,-118,9110,8823,35.28,9110,8824,34.02,9110,8826,6561666.667,9003,8827,1640416.667,9003,,,
225
2230,"NAD83 / California zone 6 (ftUS)",9003,4269,15312,9802,1,0,8821,32.1,9110,8822,-116.15,9110,8823,33.53,9110,8824,32.47,9110,8826,6561666.667,9003,8827,1640416.667,9003,,,
226
2231,"NAD83 / Colorado North (ftUS)",9003,4269,15313,9802,1,0,8821,39.2,9110,8822,-105.3,9110,8823,40.47,9110,8824,39.43,9110,8826,3000000,9003,8827,1000000,9003,,,
227
2232,"NAD83 / Colorado Central (ftUS)",9003,4269,15314,9802,1,0,8821,37.5,9110,8822,-105.3,9110,8823,39.45,9110,8824,38.27,9110,8826,3000000,9003,8827,1000000,9003,,,
228
2233,"NAD83 / Colorado South (ftUS)",9003,4269,15315,9802,1,0,8821,36.4,9110,8822,-105.3,9110,8823,38.26,9110,8824,37.14,9110,8826,3000000,9003,8827,1000000,9003,,,
229
2234,"NAD83 / Connecticut (ftUS)",9003,4269,15316,9802,1,0,8821,40.5,9110,8822,-72.45,9110,8823,41.52,9110,8824,41.12,9110,8826,1000000,9003,8827,500000,9003,,,
230
2235,"NAD83 / Delaware (ftUS)",9003,4269,15317,9807,1,0,8801,38,9110,8802,-75.25,9110,8805,0.999995,9201,8806,656166.667,9003,8807,0,9003,,,,,,
231
2236,"NAD83 / Florida East (ftUS)",9003,4269,15318,9807,1,0,8801,24.2,9110,8802,-81,9110,8805,0.999941177,9201,8806,656166.667,9003,8807,0,9003,,,,,,
232
2237,"NAD83 / Florida West (ftUS)",9003,4269,15319,9807,1,0,8801,24.2,9110,8802,-82,9110,8805,0.999941177,9201,8806,656166.667,9003,8807,0,9003,,,,,,
233
2238,"NAD83 / Florida North (ftUS)",9003,4269,15320,9802,1,0,8821,29,9110,8822,-84.3,9110,8823,30.45,9110,8824,29.35,9110,8826,1968500,9003,8827,0,9003,,,
234
2239,"NAD83 / Georgia East (ftUS)",9003,4269,15321,9807,1,0,8801,30,9110,8802,-82.1,9110,8805,0.9999,9201,8806,656166.667,9003,8807,0,9003,,,,,,
235
2240,"NAD83 / Georgia West (ftUS)",9003,4269,15322,9807,1,0,8801,30,9110,8802,-84.1,9110,8805,0.9999,9201,8806,2296583.333,9003,8807,0,9003,,,,,,
236
2241,"NAD83 / Idaho East (ftUS)",9003,4269,15323,9807,1,0,8801,41.4,9110,8802,-112.1,9110,8805,0.999947368,9201,8806,656166.667,9003,8807,0,9003,,,,,,
237
2242,"NAD83 / Idaho Central (ftUS)",9003,4269,15324,9807,1,0,8801,41.4,9110,8802,-114,9110,8805,0.999947368,9201,8806,1640416.667,9003,8807,0,9003,,,,,,
238
2243,"NAD83 / Idaho West (ftUS)",9003,4269,15325,9807,1,0,8801,41.4,9110,8802,-115.45,9110,8805,0.999933333,9201,8806,2624666.667,9003,8807,0,9003,,,,,,
239
2244,"NAD83 / Indiana East (ftUS)",9003,4269,15326,9807,1,1,8801,37.3,9110,8802,-85.4,9110,8805,0.999966667,9201,8806,328083.333,9003,8807,818125,9003,,,,,,
240
2245,"NAD83 / Indiana West (ftUS)",9003,4269,15327,9807,1,1,8801,37.3,9110,8802,-87.05,9110,8805,0.999966667,9201,8806,2952750,9003,8807,818125,9003,,,,,,
241
2246,"NAD83 / Kentucky North (ftUS)",9003,4269,15328,9802,1,0,8821,37.3,9110,8822,-84.15,9110,8823,37.58,9110,8824,38.58,9110,8826,1640416.667,9003,8827,0,9003,,,
242
2247,"NAD83 / Kentucky South (ftUS)",9003,4269,15329,9802,1,0,8821,36.2,9110,8822,-85.45,9110,8823,37.56,9110,8824,36.44,9110,8826,1640416.667,9003,8827,1640416.667,9003,,,
243
2248,"NAD83 / Maryland (ftUS)",9003,4269,15330,9802,1,0,8821,37.4,9110,8822,-77,9110,8823,39.27,9110,8824,38.18,9110,8826,1312333.333,9003,8827,0,9003,,,
244
2249,"NAD83 / Massachusetts Mainland (ftUS)",9003,4269,15331,9802,1,0,8821,41,9110,8822,-71.3,9110,8823,42.41,9110,8824,41.43,9110,8826,656166.667,9003,8827,2460625,9003,,,
245
2250,"NAD83 / Massachusetts Island (ftUS)",9003,4269,15332,9802,1,0,8821,41,9110,8822,-70.3,9110,8823,41.29,9110,8824,41.17,9110,8826,1640416.667,9003,8827,0,9003,,,
246
2251,"NAD83 / Michigan North (ft)",9002,4269,15333,9802,1,0,8821,44.47,9110,8822,-87,9110,8823,47.05,9110,8824,45.29,9110,8826,26246719.16,9002,8827,0,9002,,,
247
2252,"NAD83 / Michigan Central (ft)",9002,4269,15334,9802,1,0,8821,43.19,9110,8822,-84.22,9110,8823,45.42,9110,8824,44.11,9110,8826,19685039.37,9002,8827,0,9002,,,
248
2253,"NAD83 / Michigan South (ft)",9002,4269,15335,9802,1,0,8821,41.3,9110,8822,-84.22,9110,8823,43.4,9110,8824,42.06,9110,8826,13123359.58,9002,8827,0,9002,,,
249
2254,"NAD83 / Mississippi East (ftUS)",9003,4269,15336,9807,1,0,8801,29.3,9110,8802,-88.5,9110,8805,0.99995,9201,8806,984250,9003,8807,0,9003,,,,,,
250
2255,"NAD83 / Mississippi West (ftUS)",9003,4269,15337,9807,1,0,8801,29.3,9110,8802,-90.2,9110,8805,0.99995,9201,8806,2296583.333,9003,8807,0,9003,,,,,,
251
2256,"NAD83 / Montana (ft)",9002,4269,15338,9802,1,0,8821,44.15,9110,8822,-109.3,9110,8823,49,9110,8824,45,9110,8826,1968503.937,9002,8827,0,9002,,,
252
2257,"NAD83 / New Mexico East (ftUS)",9003,4269,15339,9807,1,0,8801,31,9110,8802,-104.2,9110,8805,0.999909091,9201,8806,541337.5,9003,8807,0,9003,,,,,,
253
2258,"NAD83 / New Mexico Central (ftUS)",9003,4269,15340,9807,1,0,8801,31,9110,8802,-106.15,9110,8805,0.9999,9201,8806,1640416.667,9003,8807,0,9003,,,,,,
254
2259,"NAD83 / New Mexico West (ftUS)",9003,4269,15341,9807,1,0,8801,31,9110,8802,-107.5,9110,8805,0.999916667,9201,8806,2723091.667,9003,8807,0,9003,,,,,,
255
2260,"NAD83 / New York East (ftUS)",9003,4269,15342,9807,1,0,8801,38.5,9110,8802,-74.3,9110,8805,0.9999,9201,8806,492125,9003,8807,0,9003,,,,,,
256
2261,"NAD83 / New York Central (ftUS)",9003,4269,15343,9807,1,0,8801,40,9110,8802,-76.35,9110,8805,0.9999375,9201,8806,820208.333,9003,8807,0,9003,,,,,,
257
2262,"NAD83 / New York West (ftUS)",9003,4269,15344,9807,1,0,8801,40,9110,8802,-78.35,9110,8805,0.9999375,9201,8806,1148291.667,9003,8807,0,9003,,,,,,
258
2263,"NAD83 / New York Long Island (ftUS)",9003,4269,15345,9802,1,0,8821,40.1,9110,8822,-74,9110,8823,41.02,9110,8824,40.4,9110,8826,984250,9003,8827,0,9003,,,
259
2264,"NAD83 / North Carolina (ftUS)",9003,4269,15346,9802,1,0,8821,33.45,9110,8822,-79,9110,8823,36.1,9110,8824,34.2,9110,8826,2000000,9003,8827,0,9003,,,
260
2265,"NAD83 / North Dakota North (ft)",9002,4269,15347,9802,1,0,8821,47,9110,8822,-100.3,9110,8823,48.44,9110,8824,47.26,9110,8826,1968503.937,9002,8827,0,9002,,,
261
2266,"NAD83 / North Dakota South (ft)",9002,4269,15348,9802,1,0,8821,45.4,9110,8822,-100.3,9110,8823,47.29,9110,8824,46.11,9110,8826,1968503.937,9002,8827,0,9002,,,
262
2267,"NAD83 / Oklahoma North (ftUS)",9003,4269,15349,9802,1,0,8821,35,9110,8822,-98,9110,8823,36.46,9110,8824,35.34,9110,8826,1968500,9003,8827,0,9003,,,
263
2268,"NAD83 / Oklahoma South (ftUS)",9003,4269,15350,9802,1,0,8821,33.2,9110,8822,-98,9110,8823,35.14,9110,8824,33.56,9110,8826,1968500,9003,8827,0,9003,,,
264
2269,"NAD83 / Oregon North (ft)",9002,4269,15351,9802,1,0,8821,43.4,9110,8822,-120.3,9110,8823,46,9110,8824,44.2,9110,8826,8202099.738,9002,8827,0,9002,,,
265
2270,"NAD83 / Oregon South (ft)",9002,4269,15352,9802,1,0,8821,41.4,9110,8822,-120.3,9110,8823,44,9110,8824,42.2,9110,8826,4921259.843,9002,8827,0,9002,,,
266
2271,"NAD83 / Pennsylvania North (ftUS)",9003,4269,15353,9802,1,0,8821,40.1,9110,8822,-77.45,9110,8823,41.57,9110,8824,40.53,9110,8826,1968500,9003,8827,0,9003,,,
267
2272,"NAD83 / Pennsylvania South (ftUS)",9003,4269,15354,9802,1,0,8821,39.2,9110,8822,-77.45,9110,8823,40.58,9110,8824,39.56,9110,8826,1968500,9003,8827,0,9003,,,
268
2273,"NAD83 / South Carolina (ft)",9002,4269,15355,9802,1,0,8821,31.5,9110,8822,-81,9110,8823,34.5,9110,8824,32.3,9110,8826,2000000,9002,8827,0,9002,,,
269
2274,"NAD83 / Tennessee (ftUS)",9003,4269,15356,9802,1,0,8821,34.2,9110,8822,-86,9110,8823,36.25,9110,8824,35.15,9110,8826,1968500,9003,8827,0,9003,,,
270
2275,"NAD83 / Texas North (ftUS)",9003,4269,15357,9802,1,0,8821,34,9110,8822,-101.3,9110,8823,36.11,9110,8824,34.39,9110,8826,656166.667,9003,8827,3280833.333,9003,,,
271
2276,"NAD83 / Texas North Central (ftUS)",9003,4269,15358,9802,1,0,8821,31.4,9110,8822,-98.3,9110,8823,33.58,9110,8824,32.08,9110,8826,1968500,9003,8827,6561666.667,9003,,,
272
2277,"NAD83 / Texas Central (ftUS)",9003,4269,15359,9802,1,0,8821,29.4,9110,8822,-100.2,9110,8823,31.53,9110,8824,30.07,9110,8826,2296583.333,9003,8827,9842500,9003,,,
273
2278,"NAD83 / Texas South Central (ftUS)",9003,4269,15360,9802,1,0,8821,27.5,9110,8822,-99,9110,8823,30.17,9110,8824,28.23,9110,8826,1968500,9003,8827,13123333.333,9003,,,
274
2279,"NAD83 / Texas South (ftUS)",9003,4269,15361,9802,1,0,8821,25.4,9110,8822,-98.3,9110,8823,27.5,9110,8824,26.1,9110,8826,984250,9003,8827,16404166.667,9003,,,
275
2280,"NAD83 / Utah North (ft)",9002,4269,15362,9802,1,0,8821,40.2,9110,8822,-111.3,9110,8823,41.47,9110,8824,40.43,9110,8826,1640419.948,9002,8827,3280839.895,9002,,,
276
2281,"NAD83 / Utah Central (ft)",9002,4269,15363,9802,1,0,8821,38.2,9110,8822,-111.3,9110,8823,40.39,9110,8824,39.01,9110,8826,1640419.948,9002,8827,6561679.79,9002,,,
277
2282,"NAD83 / Utah South (ft)",9002,4269,15364,9802,1,0,8821,36.4,9110,8822,-111.3,9110,8823,38.21,9110,8824,37.13,9110,8826,1640419.948,9002,8827,9842519.685,9002,,,
278
2283,"NAD83 / Virginia North (ftUS)",9003,4269,15365,9802,1,0,8821,37.4,9110,8822,-78.3,9110,8823,39.12,9110,8824,38.02,9110,8826,11482916.667,9003,8827,6561666.667,9003,,,
279
2284,"NAD83 / Virginia South (ftUS)",9003,4269,15366,9802,1,0,8821,36.2,9110,8822,-78.3,9110,8823,37.58,9110,8824,36.46,9110,8826,11482916.667,9003,8827,3280833.333,9003,,,
280
2285,"NAD83 / Washington North (ftUS)",9003,4269,15367,9802,1,0,8821,47,9110,8822,-120.5,9110,8823,48.44,9110,8824,47.3,9110,8826,1640416.667,9003,8827,0,9003,,,
281
2286,"NAD83 / Washington South (ftUS)",9003,4269,15368,9802,1,0,8821,45.2,9110,8822,-120.3,9110,8823,47.2,9110,8824,45.5,9110,8826,1640416.667,9003,8827,0,9003,,,
282
2287,"NAD83 / Wisconsin North (ftUS)",9003,4269,15369,9802,1,0,8821,45.1,9110,8822,-90,9110,8823,46.46,9110,8824,45.34,9110,8826,1968500,9003,8827,0,9003,,,
283
2288,"NAD83 / Wisconsin Central (ftUS)",9003,4269,15370,9802,1,0,8821,43.5,9110,8822,-90,9110,8823,45.3,9110,8824,44.15,9110,8826,1968500,9003,8827,0,9003,,,
284
2289,"NAD83 / Wisconsin South (ftUS)",9003,4269,15371,9802,1,0,8821,42,9110,8822,-90,9110,8823,44.04,9110,8824,42.44,9110,8826,1968500,9003,8827,0,9003,,,
285
2290,"ATS77 / Prince Edward Isl. Stereographic (ATS77)",9001,4122,19933,9809,1,0,8801,47.15,9110,8802,-63,9110,8805,0.999912,9201,8806,700000,9001,8807,400000,9001,,,,,,
286
2291,"NAD83(CSRS98) / Prince Edward Isl. Stereographic (NAD83)",9001,4122,19960,9809,1,1,8801,47.15,9110,8802,-63,9110,8805,0.999912,9201,8806,400000,9001,8807,800000,9001,,,,,,
287
2292,"NAD83(CSRS98) / Prince Edward Isl. Stereographic (NAD83)",9001,4140,19960,9809,1,1,8801,47.15,9110,8802,-63,9110,8805,0.999912,9201,8806,400000,9001,8807,800000,9001,,,,,,
288
2294,"ATS77 / MTM Nova Scotia zone 4",9001,4122,17794,9807,1,0,8801,0,9110,8802,-61.3,9110,8805,0.9999,9201,8806,4500000,9001,8807,0,9001,,,,,,
289
2295,"ATS77 / MTM Nova Scotia zone 5",9001,4122,17795,9807,1,0,8801,0,9110,8802,-64.3,9110,8805,0.9999,9201,8806,5500000,9001,8807,0,9001,,,,,,
290
2296,"Ammassalik 1958 / Greenland zone 7 east",9001,4196,18427,9826,1,0,8801,64.3,9110,8802,-40,9110,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
291
2297,"Qornoq 1927 / Greenland zone 1 east",9001,4194,18421,9826,1,0,8801,82.3,9110,8802,-40,9110,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
292
2298,"Qornoq 1927 / Greenland zone 2 east",9001,4194,18422,9826,1,0,8801,79.3,9110,8802,-24,9110,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
293
2299,"Qornoq 1927 / Greenland zone 2 west",9001,4194,18432,9826,1,0,8801,79.3,9110,8802,-64,9110,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
294
2300,"Qornoq 1927 / Greenland zone 3 east",9001,4194,18423,9826,1,0,8801,76.3,9110,8802,-20,9110,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
295
2301,"Qornoq 1927 / Greenland zone 3 west",9001,4194,18433,9826,1,0,8801,76.3,9110,8802,-64,9110,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
296
2302,"Qornoq 1927 / Greenland zone 4 east",9001,4194,18424,9826,1,0,8801,73.3,9110,8802,-24,9110,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
297
2303,"Qornoq 1927 / Greenland zone 4 west",9001,4194,18434,9826,1,0,8801,73.3,9110,8802,-52,9110,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
298
2304,"Qornoq 1927 / Greenland zone 5 west",9001,4194,18435,9826,1,0,8801,70.3,9110,8802,-52,9110,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
299
2305,"Qornoq 1927 / Greenland zone 6 west",9001,4194,18436,9826,1,0,8801,67.3,9110,8802,-52,9110,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
300
2306,"Qornoq 1927 / Greenland zone 7 west",9001,4194,18437,9826,1,0,8801,64.3,9110,8802,-52,9110,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
301
2307,"Qornoq 1927 / Greenland zone 8 east",9001,4194,18428,9826,1,0,8801,61.3,9110,8802,-48,9110,8805,1,9201,8806,0,9001,8807,0,9001,,,,,,
302
2308,"Batavia / TM 109 SE",9001,4211,16709,9807,1,0,8801,0,9102,8802,109,9102,8805,0.9996,9201,8806,500000,9001,8807,10000000,9001,,,,,,
303
2309,"WGS 84 / TM 116 SE",9001,4326,16716,9807,1,0,8801,0,9102,8802,116,9102,8805,0.9996,9201,8806,500000,9001,8807,10000000,9001,,,,,,
304
2310,"WGS 84 / TM 132 SE",9001,4326,16732,9807,1,0,8801,0,9102,8802,132,9102,8805,0.9996,9201,8806,500000,9001,8807,10000000,9001,,,,,,
305
2311,"WGS 84 / TM 6 NE",9001,4326,16406,9807,1,0,8801,0,9102,8802,6,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
306
2312,"Garoua / UTM zone 33N",9001,4197,16033,9807,1,0,8801,0,9102,8802,15,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
307
2313,"Kousseri / UTM zone 33N",9001,4198,16033,9807,1,0,8801,0,9102,8802,15,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,
308
2314,"Trinidad 1903 / Trinidad Grid (ftCla)",9005,4302,19975,9806,1,0,8801,10.263,9110,8802,-61.2,9110,8806,283800,9005,8807,214500,9005,,,,,,,,,
309
2315,"Campo Inchauspe / UTM zone 19S",9001,4221,16119,9807,1,0,8801,0,9102,8802,-69,9102,8805,0.9996,9201,8806,500000,9001,8807,10000000,9001,,,,,,
310
2316,"Campo Inchauspe / UTM zone 20S",9001,4221,16120,9807,1,0,8801,0,9102,8802,-63,9102,8805,0.9996,9201,8806,500000,9001,8807,10000000,9001,,,,,,
311
2317,"PSAD56 / ICN Regional",9001,4248,19976,9802,1,0,8821,6,9102,8822,-66,9102,8823,9,9102,8824,3,9102,8826,1000000,9001,8827,1000000,9001,,,
312
2318,"Ain el Abd / Aramco Lambert",9001,4204,19977,9802,1,0,8821,25.0522236,9110,8822,48,9102,8823,17,9102,8824,33,9102,8826,0,9001,8827,0,9001,,,
313
2319,"ED50 / TM27",9001,4230,16369,9807,1,0,8801,0,9102,8802,27,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
314
2320,"ED50 / TM30",9001,4230,16370,9807,1,0,8801,0,9102,8802,30,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
315
2321,"ED50 / TM33",9001,4230,16371,9807,1,0,8801,0,9102,8802,33,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
316
2322,"ED50 / TM36",9001,4230,16372,9807,1,0,8801,0,9102,8802,36,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
317
2323,"ED50 / TM39",9001,4230,16373,9807,1,0,8801,0,9102,8802,39,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
318
2324,"ED50 / TM42",9001,4230,16374,9807,1,0,8801,0,9102,8802,42,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
319
2325,"ED50 / TM45",9001,4230,16375,9807,1,0,8801,0,9102,8802,45,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
320
2326,Hong Kong 1980 Grid System,9001,4611,19978,9807,1,0,8801,22.184368,9110,8802,114.10428,9110,8805,1,9201,8806,836694.05,9001,8807,819069.8,9001,,,,,,
321
2327,"Xian 1980 / Gauss-Kruger zone 13",9001,4610,16213,9807,1,0,8801,0,9102,8802,75,9102,8805,1,9201,8806,13500000,9001,8807,0,9001,,,,,,
322
2328,"Xian 1980 / Gauss-Kruger zone 14",9001,4610,16214,9807,1,0,8801,0,9102,8802,81,9102,8805,1,9201,8806,14500000,9001,8807,0,9001,,,,,,
323
2329,"Xian 1980 / Gauss-Kruger zone 15",9001,4610,16215,9807,1,0,8801,0,9102,8802,87,9102,8805,1,9201,8806,15500000,9001,8807,0,9001,,,,,,
324
2330,"Xian 1980 / Gauss-Kruger zone 16",9001,4610,16216,9807,1,0,8801,0,9102,8802,93,9102,8805,1,9201,8806,16500000,9001,8807,0,9001,,,,,,
325
2331,"Xian 1980 / Gauss-Kruger zone 17",9001,4610,16217,9807,1,0,8801,0,9102,8802,99,9102,8805,1,9201,8806,17500000,9001,8807,0,9001,,,,,,
326
2332,"Xian 1980 / Gauss-Kruger zone 18",9001,4610,16218,9807,1,0,8801,0,9102,8802,105,9102,8805,1,9201,8806,18500000,9001,8807,0,9001,,,,,,
327
2333,"Xian 1980 / Gauss-Kruger zone 19",9001,4610,16219,9807,1,0,8801,0,9102,8802,111,9102,8805,1,9201,8806,19500000,9001,8807,0,9001,,,,,,
328
2334,"Xian 1980 / Gauss-Kruger zone 20",9001,4610,16220,9807,1,0,8801,0,9102,8802,117,9102,8805,1,9201,8806,20500000,9001,8807,0,9001,,,,,,
329
2335,"Xian 1980 / Gauss-Kruger zone 21",9001,4610,16221,9807,1,0,8801,0,9102,8802,123,9102,8805,1,9201,8806,21500000,9001,8807,0,9001,,,,,,
330
2336,"Xian 1980 / Gauss-Kruger zone 22",9001,4610,16222,9807,1,0,8801,0,9102,8802,129,9102,8805,1,9201,8806,22500000,9001,8807,0,9001,,,,,,
331
2337,"Xian 1980 / Gauss-Kruger zone 23",9001,4610,16223,9807,1,0,8801,0,9102,8802,135,9102,8805,1,9201,8806,23500000,9001,8807,0,9001,,,,,,
332
2338,"Xian 1980 / Gauss-Kruger CM 75E",9001,4610,16313,9807,1,0,8801,0,9102,8802,75,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
333
2339,"Xian 1980 / Gauss-Kruger CM 81E",9001,4610,16314,9807,1,0,8801,0,9102,8802,81,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
334
2340,"Xian 1980 / Gauss-Kruger CM 87E",9001,4610,16315,9807,1,0,8801,0,9102,8802,87,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
335
2341,"Xian 1980 / Gauss-Kruger CM 93E",9001,4610,16316,9807,1,0,8801,0,9102,8802,93,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
336
2342,"Xian 1980 / Gauss-Kruger CM 99E",9001,4610,16317,9807,1,0,8801,0,9102,8802,99,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
337
2343,"Xian 1980 / Gauss-Kruger CM 105E",9001,4610,16318,9807,1,0,8801,0,9102,8802,105,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
338
2344,"Xian 1980 / Gauss-Kruger CM 111E",9001,4610,16319,9807,1,0,8801,0,9102,8802,111,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
339
2345,"Xian 1980 / Gauss-Kruger CM 117E",9001,4610,16320,9807,1,0,8801,0,9102,8802,117,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
340
2346,"Xian 1980 / Gauss-Kruger CM 123E",9001,4610,16321,9807,1,0,8801,0,9102,8802,123,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
341
2347,"Xian 1980 / Gauss-Kruger CM 129E",9001,4610,16322,9807,1,0,8801,0,9102,8802,129,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
342
2348,"Xian 1980 / Gauss-Kruger CM 135E",9001,4610,16323,9807,1,0,8801,0,9102,8802,135,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
343
2349,"Xian 1980 / 3-degree Gauss-Kruger zone 25",9001,4610,16285,9807,1,0,8801,0,9102,8802,75,9102,8805,1,9201,8806,25500000,9001,8807,0,9001,,,,,,
344
2350,"Xian 1980 / 3-degree Gauss-Kruger zone 26",9001,4610,16286,9807,1,0,8801,0,9102,8802,78,9102,8805,1,9201,8806,26500000,9001,8807,0,9001,,,,,,
345
2351,"Xian 1980 / 3-degree Gauss-Kruger zone 27",9001,4610,16287,9807,1,0,8801,0,9102,8802,81,9102,8805,1,9201,8806,27500000,9001,8807,0,9001,,,,,,
346
2352,"Xian 1980 / 3-degree Gauss-Kruger zone 28",9001,4610,16288,9807,1,0,8801,0,9102,8802,84,9102,8805,1,9201,8806,28500000,9001,8807,0,9001,,,,,,
347
2353,"Xian 1980 / 3-degree Gauss-Kruger zone 29",9001,4610,16289,9807,1,0,8801,0,9102,8802,87,9102,8805,1,9201,8806,29500000,9001,8807,0,9001,,,,,,
348
2354,"Xian 1980 / 3-degree Gauss-Kruger zone 30",9001,4610,16290,9807,1,0,8801,0,9102,8802,90,9102,8805,1,9201,8806,30500000,9001,8807,0,9001,,,,,,
349
2355,"Xian 1980 / 3-degree Gauss-Kruger zone 31",9001,4610,16291,9807,1,0,8801,0,9102,8802,93,9102,8805,1,9201,8806,31500000,9001,8807,0,9001,,,,,,
350
2356,"Xian 1980 / 3-degree Gauss-Kruger zone 32",9001,4610,16292,9807,1,0,8801,0,9102,8802,96,9102,8805,1,9201,8806,32500000,9001,8807,0,9001,,,,,,
351
2357,"Xian 1980 / 3-degree Gauss-Kruger zone 33",9001,4610,16293,9807,1,0,8801,0,9102,8802,99,9102,8805,1,9201,8806,33500000,9001,8807,0,9001,,,,,,
352
2358,"Xian 1980 / 3-degree Gauss-Kruger zone 34",9001,4610,16294,9807,1,0,8801,0,9102,8802,102,9102,8805,1,9201,8806,34500000,9001,8807,0,9001,,,,,,
353
2359,"Xian 1980 / 3-degree Gauss-Kruger zone 35",9001,4610,16295,9807,1,0,8801,0,9102,8802,105,9102,8805,1,9201,8806,35500000,9001,8807,0,9001,,,,,,
354
2360,"Xian 1980 / 3-degree Gauss-Kruger zone 36",9001,4610,16296,9807,1,0,8801,0,9102,8802,108,9102,8805,1,9201,8806,36500000,9001,8807,0,9001,,,,,,
355
2361,"Xian 1980 / 3-degree Gauss-Kruger zone 37",9001,4610,16297,9807,1,0,8801,0,9102,8802,111,9102,8805,1,9201,8806,37500000,9001,8807,0,9001,,,,,,
356
2362,"Xian 1980 / 3-degree Gauss-Kruger zone 38",9001,4610,16298,9807,1,0,8801,0,9102,8802,114,9102,8805,1,9201,8806,38500000,9001,8807,0,9001,,,,,,
357
2363,"Xian 1980 / 3-degree Gauss-Kruger zone 39",9001,4610,16299,9807,1,0,8801,0,9102,8802,117,9102,8805,1,9201,8806,39500000,9001,8807,0,9001,,,,,,
358
2364,"Xian 1980 / 3-degree Gauss-Kruger zone 40",9001,4610,16070,9807,1,0,8801,0,9102,8802,120,9102,8805,1,9201,8806,40500000,9001,8807,0,9001,,,,,,
359
2365,"Xian 1980 / 3-degree Gauss-Kruger zone 41",9001,4610,16071,9807,1,0,8801,0,9102,8802,123,9102,8805,1,9201,8806,41500000,9001,8807,0,9001,,,,,,
360
2366,"Xian 1980 / 3-degree Gauss-Kruger zone 42",9001,4610,16072,9807,1,0,8801,0,9102,8802,126,9102,8805,1,9201,8806,42500000,9001,8807,0,9001,,,,,,
361
2367,"Xian 1980 / 3-degree Gauss-Kruger zone 43",9001,4610,16073,9807,1,0,8801,0,9102,8802,129,9102,8805,1,9201,8806,43500000,9001,8807,0,9001,,,,,,
362
2368,"Xian 1980 / 3-degree Gauss-Kruger zone 44",9001,4610,16074,9807,1,0,8801,0,9102,8802,132,9102,8805,1,9201,8806,44500000,9001,8807,0,9001,,,,,,
363
2369,"Xian 1980 / 3-degree Gauss-Kruger zone 45",9001,4610,16075,9807,1,0,8801,0,9102,8802,135,9102,8805,1,9201,8806,45500000,9001,8807,0,9001,,,,,,
364
2370,"Xian 1980 / 3-degree Gauss-Kruger CM 75E",9001,4610,16385,9807,1,0,8801,0,9102,8802,75,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
365
2371,"Xian 1980 / 3-degree Gauss-Kruger CM 78E",9001,4610,16386,9807,1,0,8801,0,9102,8802,78,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
366
2372,"Xian 1980 / 3-degree Gauss-Kruger CM 81E",9001,4610,16387,9807,1,0,8801,0,9102,8802,81,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
367
2373,"Xian 1980 / 3-degree Gauss-Kruger CM 84E",9001,4610,16388,9807,1,0,8801,0,9102,8802,84,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
368
2374,"Xian 1980 / 3-degree Gauss-Kruger CM 87E",9001,4610,16389,9807,1,0,8801,0,9102,8802,87,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
369
2375,"Xian 1980 / 3-degree Gauss-Kruger CM 90E",9001,4610,16390,9807,1,0,8801,0,9102,8802,90,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
370
2376,"Xian 1980 / 3-degree Gauss-Kruger CM 93E",9001,4610,16391,9807,1,0,8801,0,9102,8802,93,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
371
2377,"Xian 1980 / 3-degree Gauss-Kruger CM 96E",9001,4610,16392,9807,1,0,8801,0,9102,8802,96,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
372
2378,"Xian 1980 / 3-degree Gauss-Kruger CM 99E",9001,4610,16393,9807,1,0,8801,0,9102,8802,99,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
373
2379,"Xian 1980 / 3-degree Gauss-Kruger CM 102E",9001,4610,16394,9807,1,0,8801,0,9102,8802,102,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
374
2380,"Xian 1980 / 3-degree Gauss-Kruger CM 105E",9001,4610,16395,9807,1,0,8801,0,9102,8802,105,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
375
2381,"Xian 1980 / 3-degree Gauss-Kruger CM 108E",9001,4610,16396,9807,1,0,8801,0,9102,8802,108,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
376
2382,"Xian 1980 / 3-degree Gauss-Kruger CM 111E",9001,4610,16397,9807,1,0,8801,0,9102,8802,111,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
377
2383,"Xian 1980 / 3-degree Gauss-Kruger CM 114E",9001,4610,16398,9807,1,0,8801,0,9102,8802,114,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
378
2384,"Xian 1980 / 3-degree Gauss-Kruger CM 117E",9001,4610,16399,9807,1,0,8801,0,9102,8802,117,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
379
2385,"Xian 1980 / 3-degree Gauss-Kruger CM 120E",9001,4610,16170,9807,1,0,8801,0,9102,8802,120,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
380
2386,"Xian 1980 / 3-degree Gauss-Kruger CM 123E",9001,4610,16171,9807,1,0,8801,0,9102,8802,123,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
381
2387,"Xian 1980 / 3-degree Gauss-Kruger CM 126E",9001,4610,16172,9807,1,0,8801,0,9102,8802,126,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
382
2388,"Xian 1980 / 3-degree Gauss-Kruger CM 129E",9001,4610,16173,9807,1,0,8801,0,9102,8802,129,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
383
2389,"Xian 1980 / 3-degree Gauss-Kruger CM 132E",9001,4610,16174,9807,1,0,8801,0,9102,8802,132,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
384
2390,"Xian 1980 / 3-degree Gauss-Kruger CM 135E",9001,4610,16175,9807,1,0,8801,0,9102,8802,135,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
385
2391,"KKJ / Finland zone 1",9001,4123,18191,9807,1,0,8801,0,9102,8802,21,9102,8805,1,9201,8806,1500000,9001,8807,0,9001,,,,,,
386
2392,"KKJ / Finland zone 2",9001,4123,18192,9807,1,0,8801,0,9102,8802,24,9102,8805,1,9201,8806,2500000,9001,8807,0,9001,,,,,,
387
2393,"KKJ / Finland Uniform Coordinate System",9001,4123,18193,9807,1,0,8801,0,9102,8802,27,9102,8805,1,9201,8806,3500000,9001,8807,0,9001,,,,,,
388
2394,"KKJ / Finland zone 4",9001,4123,18194,9807,1,0,8801,0,9102,8802,30,9102,8805,1,9201,8806,4500000,9001,8807,0,9001,,,,,,
389
2395,"South Yemen / Gauss-Kruger zone 8",9001,4164,16208,9807,1,0,8801,0,9102,8802,45,9102,8805,1,9201,8806,8500000,9001,8807,0,9001,,,,,,
390
2396,"South Yemen / Gauss-Kruger zone 9",9001,4164,16209,9807,1,0,8801,0,9102,8802,51,9102,8805,1,9201,8806,9500000,9001,8807,0,9001,,,,,,
391
2397,"Pulkovo 1942(83) / Gauss-Kruger zone 3",9001,4178,16263,9807,1,0,8801,0,9102,8802,9,9102,8805,1,9201,8806,3500000,9001,8807,0,9001,,,,,,
392
2398,"Pulkovo 1942(83) / Gauss-Kruger zone 4",9001,4178,16264,9807,1,0,8801,0,9102,8802,12,9102,8805,1,9201,8806,4500000,9001,8807,0,9001,,,,,,
393
2399,"Pulkovo 1942(83) / Gauss-Kruger zone 5",9001,4178,16265,9807,1,0,8801,0,9102,8802,15,9102,8805,1,9201,8806,5500000,9001,8807,0,9001,,,,,,
394
2400,RT90 2.5 gon W,9001,4124,19929,9807,1,1,8801,0,9110,8802,15.48298,9110,8805,1,9201,8806,1500000,9001,8807,0,9001,,,,,,
395
2401,"Beijing 1954 / 3-degree Gauss-Kruger zone 25",9001,4214,16285,9807,1,0,8801,0,9102,8802,75,9102,8805,1,9201,8806,25500000,9001,8807,0,9001,,,,,,
396
2402,"Beijing 1954 / 3-degree Gauss-Kruger zone 26",9001,4214,16286,9807,1,0,8801,0,9102,8802,78,9102,8805,1,9201,8806,26500000,9001,8807,0,9001,,,,,,
397
2403,"Beijing 1954 / 3-degree Gauss-Kruger zone 27",9001,4214,16287,9807,1,0,8801,0,9102,8802,81,9102,8805,1,9201,8806,27500000,9001,8807,0,9001,,,,,,
398
2404,"Beijing 1954 / 3-degree Gauss-Kruger zone 28",9001,4214,16288,9807,1,0,8801,0,9102,8802,84,9102,8805,1,9201,8806,28500000,9001,8807,0,9001,,,,,,
399
2405,"Beijing 1954 / 3-degree Gauss-Kruger zone 29",9001,4214,16289,9807,1,0,8801,0,9102,8802,87,9102,8805,1,9201,8806,29500000,9001,8807,0,9001,,,,,,
400
2406,"Beijing 1954 / 3-degree Gauss-Kruger zone 30",9001,4214,16290,9807,1,0,8801,0,9102,8802,90,9102,8805,1,9201,8806,30500000,9001,8807,0,9001,,,,,,
401
2407,"Beijing 1954 / 3-degree Gauss-Kruger zone 31",9001,4214,16291,9807,1,0,8801,0,9102,8802,93,9102,8805,1,9201,8806,31500000,9001,8807,0,9001,,,,,,
402
2408,"Beijing 1954 / 3-degree Gauss-Kruger zone 32",9001,4214,16292,9807,1,0,8801,0,9102,8802,96,9102,8805,1,9201,8806,32500000,9001,8807,0,9001,,,,,,
403
2409,"Beijing 1954 / 3-degree Gauss-Kruger zone 33",9001,4214,16293,9807,1,0,8801,0,9102,8802,99,9102,8805,1,9201,8806,33500000,9001,8807,0,9001,,,,,,
404
2410,"Beijing 1954 / 3-degree Gauss-Kruger zone 34",9001,4214,16294,9807,1,0,8801,0,9102,8802,102,9102,8805,1,9201,8806,34500000,9001,8807,0,9001,,,,,,
405
2411,"Beijing 1954 / 3-degree Gauss-Kruger zone 35",9001,4214,16295,9807,1,0,8801,0,9102,8802,105,9102,8805,1,9201,8806,35500000,9001,8807,0,9001,,,,,,
406
2412,"Beijing 1954 / 3-degree Gauss-Kruger zone 36",9001,4214,16296,9807,1,0,8801,0,9102,8802,108,9102,8805,1,9201,8806,36500000,9001,8807,0,9001,,,,,,
407
2413,"Beijing 1954 / 3-degree Gauss-Kruger zone 37",9001,4214,16297,9807,1,0,8801,0,9102,8802,111,9102,8805,1,9201,8806,37500000,9001,8807,0,9001,,,,,,
408
2414,"Beijing 1954 / 3-degree Gauss-Kruger zone 38",9001,4214,16298,9807,1,0,8801,0,9102,8802,114,9102,8805,1,9201,8806,38500000,9001,8807,0,9001,,,,,,
409
2415,"Beijing 1954 / 3-degree Gauss-Kruger zone 39",9001,4214,16299,9807,1,0,8801,0,9102,8802,117,9102,8805,1,9201,8806,39500000,9001,8807,0,9001,,,,,,
410
2416,"Beijing 1954 / 3-degree Gauss-Kruger zone 40",9001,4214,16070,9807,1,0,8801,0,9102,8802,120,9102,8805,1,9201,8806,40500000,9001,8807,0,9001,,,,,,
411
2417,"Beijing 1954 / 3-degree Gauss-Kruger zone 41",9001,4214,16071,9807,1,0,8801,0,9102,8802,123,9102,8805,1,9201,8806,41500000,9001,8807,0,9001,,,,,,
412
2418,"Beijing 1954 / 3-degree Gauss-Kruger zone 42",9001,4214,16072,9807,1,0,8801,0,9102,8802,126,9102,8805,1,9201,8806,42500000,9001,8807,0,9001,,,,,,
413
2419,"Beijing 1954 / 3-degree Gauss-Kruger zone 43",9001,4214,16073,9807,1,0,8801,0,9102,8802,129,9102,8805,1,9201,8806,43500000,9001,8807,0,9001,,,,,,
414
2420,"Beijing 1954 / 3-degree Gauss-Kruger zone 44",9001,4214,16074,9807,1,0,8801,0,9102,8802,132,9102,8805,1,9201,8806,44500000,9001,8807,0,9001,,,,,,
415
2421,"Beijing 1954 / 3-degree Gauss-Kruger zone 45",9001,4214,16075,9807,1,0,8801,0,9102,8802,135,9102,8805,1,9201,8806,45500000,9001,8807,0,9001,,,,,,
416
2422,"Beijing 1954 / 3-degree Gauss-Kruger CM 75E",9001,4214,16385,9807,1,0,8801,0,9102,8802,75,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
417
2423,"Beijing 1954 / 3-degree Gauss-Kruger CM 78E",9001,4214,16386,9807,1,0,8801,0,9102,8802,78,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
418
2424,"Beijing 1954 / 3-degree Gauss-Kruger CM 81E",9001,4214,16387,9807,1,0,8801,0,9102,8802,81,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
419
2425,"Beijing 1954 / 3-degree Gauss-Kruger CM 84E",9001,4214,16388,9807,1,0,8801,0,9102,8802,84,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
420
2426,"Beijing 1954 / 3-degree Gauss-Kruger CM 87E",9001,4214,16389,9807,1,0,8801,0,9102,8802,87,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
421
2427,"Beijing 1954 / 3-degree Gauss-Kruger CM 90E",9001,4214,16390,9807,1,0,8801,0,9102,8802,90,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
422
2428,"Beijing 1954 / 3-degree Gauss-Kruger CM 93E",9001,4214,16391,9807,1,0,8801,0,9102,8802,93,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
423
2429,"Beijing 1954 / 3-degree Gauss-Kruger CM 96E",9001,4214,16392,9807,1,0,8801,0,9102,8802,96,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
424
2430,"Beijing 1954 / 3-degree Gauss-Kruger CM 99E",9001,4214,16393,9807,1,0,8801,0,9102,8802,99,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
425
2431,"Beijing 1954 / 3-degree Gauss-Kruger CM 102E",9001,4214,16394,9807,1,0,8801,0,9102,8802,102,9102,8805,1,9201,8806,500000,9001,8807,0,9001,,,,,,
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff