alias.csv 146 KB
Newer Older
xuebingbing's avatar
xuebingbing committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300
"ALIAS CODE","OBJECT_TABLE_NAME","OBJECT_CODE","NAMING_SYSTEM_CODE","ALIAS","REMARKS"
4,Datum,6258,7300,ETRF89,
5,Ellipsoid,7013,7300,Modified Clarke 1880 (South Africa),The Clarke 1880 (Arc) figure is one of several modifications to the original definition.  The name Clarke Modified is usually taken to be the RGS modification.  But in southern Africa it is usually taken to be the Arc or Cape modification.
6,Coordinate_Operation,8570,7300,ED50 to EUREF89 (2),
7,Unit of Measure,9001,7300,meter,
8,Unit of Measure,9036,7300,kilometer,Spelling used in US
9,Coordinate Reference System,21100,7300,Genuk / NEIEZ,
10,Coordinate_Operation,1036,7301,OSTN97,
11,Coordinate_Operation,1123,7301,Genuk to WGS 84 (1),
12,Coordinate_Operation,1149,7301,ETRF89 to WGS 84 (1),
13,Coordinate_Operation,1273,7301,HD72 to ETRF89 (1),
14,Coordinate_Operation,1309,7301,DHDN to ETRF89 (1),
15,Coordinate_Operation,1310,7301,Pulkovo 1942 to ETRF89 (1),
16,Coordinate_Operation,1311,7301,ED50 to WGS 84 (18),
17,Coordinate_Operation,1331,7301,EST92 to ETRF89 (1),
19,Coordinate_Operation,1513,7301,Final Datum 1958 to WGS 84 (1),
20,Coordinate_Operation,1571,7301,Amersfoort to ETRF89 (1),
21,Coordinate_Operation,1584,7301,Levant to WGS 72BE (1),
22,Coordinate_Operation,1585,7301,Levant to WGS 84 (2),
23,Coordinate_Operation,1586,7301,Levant to WGS 84 (3),
24,Coordinate_Operation,1587,7301,Levant to WGS 84 (4),
26,Coordinate_Operation,1589,7301,ED50 to ETRF89 (3),
28,Coordinate_Operation,1611,7301,IRENET95 to ETRF89 (1),
29,Coordinate Reference System,2140,7301,NAD83(CSRS98) / SCoPQ zone 3,
30,Coordinate Reference System,2141,7301,NAD83(CSRS98) / SCoPQ zone 4,
31,Coordinate Reference System,2142,7301,NAD83(CSRS98) / SCoPQ zone 5,
32,Coordinate Reference System,2143,7301,NAD83(CSRS98) / SCoPQ zone 6,
33,Coordinate Reference System,2144,7301,NAD83(CSRS98) / SCoPQ zone 7,
34,Coordinate Reference System,2145,7301,NAD83(CSRS98) / SCoPQ zone 8,
35,Coordinate Reference System,2146,7301,NAD83(CSRS98) / SCoPQ zone 9,
36,Coordinate Reference System,2147,7301,NAD83(CSRS98) / SCoPQ zone 10,
37,Coordinate Reference System,2159,7301,Sierra Leone 1924 / Peninsular Grid,
38,Coordinate Reference System,2291,7301,NAD83 / PEI Stereo,
39,Coordinate Reference System,3200,7301,Final Datum 1958 / Iraq zone,
40,Coordinate Reference System,4132,7301,Final Datum 1958 (Iran),
41,Coordinate Reference System,4140,7301,NAD83(CSRS),
42,Coordinate Reference System,4172,7301,National Geodetic System [Argentina],see http://www.igm.gov.ar/posgar.html
43,Coordinate Reference System,4211,7301,Genuk,
44,Datum,4218,7301,Bogota,
45,Coordinate Reference System,4227,7301,Levant,
46,Coordinate Reference System,4258,7301,ETRF89,
47,Coordinate Reference System,4272,7301,GD49,
48,Coordinate Reference System,4813,7301,Genuk (Jakarta),
49,Datum,5104,7301,Huang Hai 1956,
50,Datum,6120,7301,Old Greek,"Adjective ""Old"" applied since introduction of GGRS87 (code 6121)"
51,Datum,6125,7301,Samboja P2 exc T9,
52,Datum,6160,7301,Quini-Huao,
53,Datum,6174,7301,Sierra Leone Peninsular 1924,
54,Datum,6211,7301,Genuk,
55,Datum,6218,7301,Bogota,
56,Datum,6222,7301,South Africa,
57,Datum,6227,7301,Levant,
58,Datum,6258,7301,European Terrestrial Reference Frame 1989,
59,Datum,6269,7301,NAD83 (1986),
60,Datum,6272,7301,GD49,
61,Datum,6308,7301,Rikets koordinatsystem 1938,
62,Ellipsoid,7012,7301,Clarke Modified 1880,The Clarke 1880 (RGS) figure is one of several modifications to the original definition.  The name Clarke Modified is usually taken to be the RGS modification.
63,Ellipsoid,7013,7301,Clarke 1880 (Cape),
64,Ellipsoid,7019,7301,International 1979,Adopted by IUGG 1979 Canberra as the Geodetic Reference Spheroid of 1980 (GRS 1980).
65,Ellipsoid,7022,7301,Hayford 1909,Described as a=6378388 m. and b=6356909 m. from which 1/f derived to be 296.95926...   The figure was adopted as the International ellipsoid in 1924 but with 1/f taken as 297 exactly from which b is derved as 6356911.946 m.
66,Ellipsoid,7029,7301,McCaw 1924,
67,Ellipsoid,7030,7301,WGS84,
68,Ellipsoid,7036,7301,International 1967,More usually known as GRS 1967 to avoid confusion with the International 1924 figure.
69,Ellipsoid,7043,7301,NWL 10D,Used by Transit Broadcast Ephemeris before 1989. Also referred to as WGS72 spheroid.
70,Coordinate_Operation,8568,7301,Levant to WGS 84 (1),
71,Coordinate_Operation,8570,7301,ED50 to ETRF89 (2),
72,Coordinate_Operation Parameter,8602,7301,Longitude rotation,
73,Prime Meridian,8913,7301,Kristiania,
74,Unit of Measure,9001,7301,International metre,
75,Unit of Measure,9002,7301,international foot,
76,Unit of Measure,9003,7301,American foot,
77,Unit of Measure,9005,7301,South African geodetic foot,Not to be confused with the Cape foot.
78,Unit of Measure,9030,7301,International nautical mile,
79,Unit of Measure,9039,7301,link (Clarke's ratio),
80,Unit of Measure,9040,7301,yard,
81,Unit of Measure,9041,7301,foot,
82,Unit of Measure,9042,7301,chain,
83,Unit of Measure,9043,7301,link,
84,Unit of Measure,9050,7301,yard,
85,Unit of Measure,9051,7301,foot,
86,Unit of Measure,9052,7301,chain,
87,Unit of Measure,9053,7301,link,
88,Unit of Measure,9060,7301,yard,
89,Unit of Measure,9061,7301,foot,
90,Unit of Measure,9062,7301,chain,
91,Unit of Measure,9063,7301,link,
92,Unit of Measure,9070,7301,foot,
93,Unit of Measure,9080,7301,Indian geodetic foot,
94,Unit of Measure,9081,7301,Indian geodetic foot,
95,Unit of Measure,9084,7301,yard,= 3 Indian feet.
96,Unit of Measure,9085,7301,yard,= 3 Indian feet.
97,Unit of Measure,9094,7301,foot,
98,Unit of Measure,9114,7301,mil,"Alias also applies to other variations of a mil, especially mil_6300 and mil_6000."
100,Coordinate_Operation,17001,7301,Ghana TM,
101,Coordinate_Operation,17901,7301,Mount Eden Circuit 1949,
102,Coordinate_Operation,17902,7301,Bay of Plenty Circuit 1949,
103,Coordinate_Operation,17903,7301,Poverty Bay Circuit 1949,
104,Coordinate_Operation,17904,7301,Hawkes Bay Circuit 1949,
105,Coordinate_Operation,17905,7301,Taranaki Circuit 1949,
106,Coordinate_Operation,17906,7301,Tuhirangi Circuit 1949,
107,Coordinate_Operation,17907,7301,Wanganui Circuit 1949,
108,Coordinate_Operation,17908,7301,Wairarapa Circuit 1949,
109,Coordinate_Operation,17909,7301,Wellington Circuit 1949,
110,Coordinate_Operation,17910,7301,Collingwood Circuit 1949,
111,Coordinate_Operation,17911,7301,Nelson Circuit 1949,
112,Coordinate_Operation,17912,7301,Karamea Circuit 1949,
113,Coordinate_Operation,17913,7301,Buller Circuit 1949,
114,Coordinate_Operation,17914,7301,Grey Circuit 1949,
115,Coordinate_Operation,17915,7301,Amuri Circuit 1949,
116,Coordinate_Operation,17916,7301,Marlborough Circuit 1949,
117,Coordinate_Operation,17917,7301,Hokitika Circuit 1949,
118,Coordinate_Operation,17918,7301,Okarito Circuit 1949,
119,Coordinate_Operation,17919,7301,Jacksons Bay Circuit 1949,
120,Coordinate_Operation,17920,7301,Mount Pleasant Circuit 1949,
121,Coordinate_Operation,17921,7301,Gawler Circuit 1949,
122,Coordinate_Operation,17922,7301,Timaru Circuit 1949,
123,Coordinate_Operation,17923,7301,Lindis Peak Circuit 1949,
124,Coordinate_Operation,17924,7301,Mount Nicholas Circuit 1949,
125,Coordinate_Operation,17925,7301,Mount York Circuit 1949,
126,Coordinate_Operation,17926,7301,Observation Point Circuit 1949,
127,Coordinate_Operation,17927,7301,North Taieri Circuit 1949,
128,Coordinate_Operation,17928,7301,Bluff Circuit 1949,
129,Coordinate_Operation,19906,7301,IOEPC Lambert,Sometimes seen defined with 2 standard parallels.
130,Coordinate_Operation,19959,7301,Gold Coast Grid,
131,Coordinate_Operation,19963,7301,Sierra Leone Peninsula Grid,
132,Coordinate Reference System,21100,7301,Genuk (Jakarta) / NEIEZ,
133,Coordinate Reference System,21148,7301,Genuk / UTM zone 48S,
134,Coordinate Reference System,21150,7301,Genuk / UTM zone 50S,
135,Coordinate Reference System,22700,7301,Levant / Levant Zone,
136,Coordinate Reference System,22770,7301,Levant / Syria Lambert,
137,Coordinate Reference System,22780,7301,Levant / Levant Stereographic,
138,Coordinate Reference System,25828,7301,ETRF89 / UTM zone 28N,
139,Coordinate Reference System,25829,7301,ETRF89 / UTM zone 29N,
140,Coordinate Reference System,25830,7301,ETRF89 / UTM zone 30N,
141,Coordinate Reference System,25831,7301,ETRF89 / UTM zone 31N,
142,Coordinate Reference System,25832,7301,ETRF89 / UTM zone 32N,
143,Coordinate Reference System,25833,7301,ETRF89 / UTM zone 33N,
144,Coordinate Reference System,25834,7301,ETRF89 / UTM zone 34N,
145,Coordinate Reference System,25835,7301,ETRF89 / UTM zone 35N,
146,Coordinate Reference System,25836,7301,ETRF89 / UTM zone 36N,
147,Coordinate Reference System,25837,7301,ETRF89 / UTM zone 37N,
148,Coordinate Reference System,25838,7301,ETRF89 / UTM zone 38N,
149,Coordinate Reference System,25884,7301,ETRF89 / TM Baltic93,
150,Coordinate Reference System,27258,7301,GD49 / UTM zone 58,
151,Coordinate Reference System,27259,7301,GD49 / UTM zone 59,
152,Coordinate Reference System,27260,7301,GD49 / UTM zone 60,
153,Coordinate Reference System,27291,7301,GD49 / North Island Grid,
154,Coordinate Reference System,27292,7301,GD49 / South Island Grid,
155,Coordinate Reference System,30592,7301,Nord Sahara 1959/Voirol Unifie S Algerie,
156,Coordinate Reference System,30791,7301,Nord Sahara 1959 / Lambert Nord Voirol Unifie 1960,Voirol Unifie 1960 is NOT a geodetic datum nor GeogCRS.  It is two Lambert projected coordinate reference systems based on Nord Sahara 1959 Datum. See also code 30792.
157,Coordinate Reference System,30792,7301,Nord Sahara 1959 / Lambert Sud Voirol Unifie 1960,Voirol Unifie 1960 is NOT a geodetic datum nor GeogCRS.  It is two Lambert projected coordinate reference systems based on Nord Sahara 1959 Datum. See also code 30791.
158,Coordinate Reference System,31170,7301,Zanderij / Surinam Old TM,Old country name spelling.
159,Coordinate Reference System,31171,7301,Zanderij / Surinam TM,Old spelling for country name.
160,Coordinate Reference System,31300,7301,Belge Lambert 72,
161,Coordinate_Operation,1026,7302,Madrid to ED50 (1),
162,Coordinate_Operation,1027,7302,Madrid to ED50 (2),
163,Coordinate_Operation,1028,7302,Madrid to ED50 (3),
164,Coordinate_Operation,1029,7302,RD New to ED50/UTM31 (1),
165,Coordinate_Operation,1030,7302,ED50/UTM31 to RD New (1),
166,Coordinate_Operation,1031,7302,RD New to ED50/UTM31 (2),
167,Coordinate_Operation,1032,7302,ED50/UTM31 to RD New (2),
169,Coordinate_Operation,1283,7302,LKS94 to WGS 84 (1),
170,Coordinate Reference System,2000,7302,Anguilla 1957 / BWI Grid,
171,Coordinate Reference System,2001,7302,Antigua 1943 / BWI Grid,
172,Coordinate Reference System,2002,7302,Dominica 1945 / BWI Grid,
173,Coordinate Reference System,2003,7302,Grenada 1953 / BWI Grid,
174,Coordinate Reference System,2004,7302,Montserrat 58 / BWI Grid,
175,Coordinate Reference System,2005,7302,St Kitts 1955 / BWI Grid,
176,Coordinate Reference System,2006,7302,St Lucia 1955 / BWI Grid,
177,Coordinate Reference System,2007,7302,St Vincent 45 / BWI Grid,
178,Coordinate Reference System,2008,7302,CGQ77 / SCoPQ zone 2,
179,Coordinate Reference System,2009,7302,CGQ77 / SCoPQ zone 3,
180,Coordinate Reference System,2010,7302,CGQ77 / SCoPQ zone 4,
181,Coordinate Reference System,2011,7302,CGQ77 / SCoPQ zone 5,
182,Coordinate Reference System,2012,7302,CGQ77 / SCoPQ zone 6,
183,Coordinate Reference System,2013,7302,CGQ77 / SCoPQ zone 7,
184,Coordinate Reference System,2014,7302,CGQ77 / SCoPQ zone 8,
185,Coordinate Reference System,2015,7302,CGQ77 / SCoPQ zone 9,
186,Coordinate Reference System,2016,7302,CGQ77 / SCoPQ zone 10,
187,Coordinate Reference System,2036,7302,NAD83(CSRS) / NB Stereo,
188,Coordinate Reference System,2037,7302,NAD83(CSRS) / UTM 19N,
189,Coordinate Reference System,2038,7302,NAD83(CSRS) / UTM 20N,
190,Coordinate Reference System,2039,7302,Israeli TM Grid,
191,Coordinate Reference System,2040,7302,Locodjo 65 / UTM 30N,
192,Coordinate Reference System,2041,7302,Abidjan 87 / UTM 30N,
193,Coordinate Reference System,2042,7302,Locodjo 65 / UTM 29N,
194,Coordinate Reference System,2043,7302,Abidjan 87 / UTM 29N,
195,Coordinate Reference System,2044,7302,Hanoi 72 / Gauss zone 18,
196,Coordinate Reference System,2045,7302,Hanoi 72 / Gauss zone 19,
197,Coordinate Reference System,2046,7302,New S African CS zone 15,
198,Coordinate Reference System,2047,7302,New S African CS zone 17,
199,Coordinate Reference System,2048,7302,New S African CS zone 19,
200,Coordinate Reference System,2049,7302,New S African CS zone 21,
201,Coordinate Reference System,2050,7302,New S African CS zone 23,
202,Coordinate Reference System,2051,7302,New S African CS zone 25,
203,Coordinate Reference System,2052,7302,New S African CS zone 27,
204,Coordinate Reference System,2053,7302,New S African CS zone 29,
205,Coordinate Reference System,2054,7302,New S African CS zone 31,
206,Coordinate Reference System,2055,7302,New S African CS zone 33,
207,Coordinate Reference System,2056,7302,LV95,
208,Coordinate Reference System,2066,7302,Mount Dillon / Tobago,
209,Coordinate Reference System,2067,7302,Naparima 1955 / UTM 20N,
210,Coordinate Reference System,2081,7302,Chos Malal / Argentina 2,
211,Coordinate Reference System,2082,7302,Pampa d Castillo / Arg 2,
212,Coordinate Reference System,2083,7302,Hito XVIII / Argentina 2,
213,Coordinate Reference System,2084,7302,Hito XVIII / UTM 19S,
214,Coordinate Reference System,2089,7302,Yemen NGN96 / UTM 38N,
215,Coordinate Reference System,2090,7302,Yemen NGN96 / UTM 39N,
216,Coordinate Reference System,2091,7302,S Yemen / Gauss zone 8,
217,Coordinate Reference System,2092,7302,S Yemen / Gauss zone 9,
218,Coordinate Reference System,2096,7302,Korean 1985 / East Belt,
219,Coordinate Reference System,2097,7302,Korean 1985 / Cen. Belt,
220,Coordinate Reference System,2098,7302,Korean 1985 / West Belt,
221,Coordinate Reference System,2099,7302,Qatar Plane CS,
222,Coordinate Reference System,2136,7301,Accra / Gold Coast Grid,
223,Coordinate Reference System,2137,7301,Accra / Ghana TM,
224,Coordinate Reference System,2157,7302,IRENET95 / ITM,
225,Coordinate Reference System,2200,7302,ATS77 / NB Stereographic,
226,Coordinate Reference System,2290,7302,ATS77 / PEI Stereo,
227,Coordinate Reference System,2291,7302,NAD83(CSRS) / PEI Stereo,
228,Coordinate Reference System,2294,7302,ATS77 / MTM NS zone 4,
229,Coordinate Reference System,2295,7302,ATS77 / MTM NS zone 5,
230,Coordinate Reference System,2393,7302,KKJ / Finland zone 3,
231,Coordinate Reference System,2600,7302,LKS94,This alias is also used for geographical and geocentric CRSs.
232,Coordinate Reference System,3561,7302,Old Hawaiian / SP zone 1,
233,Coordinate Reference System,3562,7302,Old Hawaiian / SP zone 2,
234,Coordinate Reference System,3563,7302,Old Hawaiian / SP zone 3,
235,Coordinate Reference System,3564,7302,Old Hawaiian / SP zone 4,
236,Coordinate Reference System,3565,7302,Old Hawaiian / SP zone 5,
237,Coordinate Reference System,3991,7302,Puerto Rico SPCS 27,
238,Coordinate Reference System,4134,7302,PSD93,
239,Coordinate Reference System,4215,7302,BD 50,
240,Coordinate Reference System,4268,7302,NAD Michigan,
241,Coordinate Reference System,4313,7302,BD 72,
242,Coordinate Reference System,4609,7302,CGQ77,
243,Coordinate Reference System,4809,7302,BD 50 (Brussels),
244,Datum,5100,7302,msl,
245,Datum,5101,7302,ODN,
246,Datum,5102,7302,NGVD29,
247,Datum,5103,7302,NAVD88,
248,Datum,5104,7302,Yellow Sea,
249,Datum,5105,7302,Baltic,
250,Datum,5106,7302,Caspian,
251,Datum,5107,7302,NGF,
252,Datum,5109,7302,NAP,
253,Datum,5111,7302,AHD,
254,Datum,5112,7302,AHD (Tasmania),
255,Datum,5114,7302,CVD28,
256,Datum,5115,7302,Piraeus86,
257,Datum,5116,7302,N60,
258,Datum,5117,7302,RH70,
259,Datum,5118,7302,NGF - Lallemand,
260,Datum,5119,7302,NGF - IGN69,
261,Datum,5120,7302,NGF - IGN78,
262,Datum,5122,7302,JapanVD,
263,Datum,5123,7302,PHD93,
264,Datum,5127,7302,LN02,
265,Datum,5128,7302,LHN95,
266,Datum,5129,7302,EVRF2000,
267,Coordinate Reference System,5701,7302,ODN,
268,Coordinate Reference System,5702,7302,NGVD29,
269,Coordinate Reference System,5703,7302,NAVD88,
270,Coordinate Reference System,5709,7302,NAP,
271,Coordinate Reference System,5711,7302,AHD,
272,Coordinate Reference System,5712,7302,AHD (Tasmania),
273,Coordinate Reference System,5713,7302,CVD28,
274,Coordinate Reference System,5714,7302,msl height,
275,Coordinate Reference System,5715,7302,msl depth,
276,Coordinate Reference System,5723,7302,Japan Levelling Datum,
277,Coordinate Reference System,5724,7302,PHD93,
278,Coordinate Reference System,5728,7302,LN02,
279,Coordinate Reference System,5729,7302,LHN95,
280,Coordinate Reference System,5730,7302,EVRS2000,
281,Datum,6121,7302,GGRS87,
282,Datum,6122,7302,ATS77,
283,Datum,6123,7302,KKJ,
284,Datum,6124,7302,RT90,
285,Datum,6126,7302,LKS94 (ETRS89),
286,Datum,6130,7302,Moznet,
287,Datum,6132,7302,FD58,
288,Datum,6133,7302,EST92,
289,Datum,6134,7302,PSD93,
290,Datum,6140,7302,NAD83(CSRS98),
291,Datum,6151,7302,CHTRF95,
292,Datum,6152,7302,NAD83(HARN),
293,Datum,6154,7302,ED50(ED77),
294,Datum,6156,7302,S-JTSK,
295,Datum,6159,7302,ELD79,
296,Datum,6163,7302,YNGN96,
297,Datum,6170,7302,SIRGAS,
298,Datum,6171,7302,RGF93,
299,Datum,6172,7302,POSGAR,
300,Datum,6202,7302,AGD66,
301,Datum,6203,7302,AGD84,
302,Datum,6204,7302,Ain el Abd,
303,Datum,6215,7302,Belge 1950,
304,Datum,6230,7302,ED50,
305,Datum,6231,7302,ED87,
306,Datum,6237,7302,HD72,
307,Datum,6238,7302,ID74,
308,Datum,6242,7302,JAD69,
309,Datum,6246,7302,KOC,
310,Datum,6248,7302,PSAD56,
311,Datum,6258,7302,ETRS89,
312,Datum,6267,7302,NAD27,
313,Datum,6269,7302,NAD83,
314,Datum,6272,7302,NZGD49,
315,Datum,6275,7302,NTF,
316,Datum,6278,7302,OSGB70,
317,Datum,6279,7302,OS(SN)80,
318,Datum,6280,7302,Padang,
319,Datum,6283,7302,GDA94,
320,Datum,6291,7302,SAD69,
321,Datum,6297,7302,Tananarive,
322,Datum,6303,7302,TC(1948),
323,Datum,6305,7302,Voirol Unifie,
324,Datum,6308,7302,RT38,
325,Datum,6312,7302,MGI,
326,Datum,6313,7302,Belge 1972,
327,Datum,6314,7302,DHDN,
328,Datum,6318,7302,NGN,
329,Datum,6319,7302,KUDAMS,
330,Datum,6322,7302,WGS 72,
331,Datum,6324,7302,WGS 72BE,
332,Datum,6326,7302,WGS 84,
333,Datum,6608,7302,NAD27(76),
334,Datum,6609,7302,CGQ77,
335,Datum,6901,7302,ATF (Paris),
336,Datum,6902,7302,NDG (Paris),
337,Ellipsoid,7003,7302,ANS,
338,Coordinate Reference System,7401,7302,NTF / France II + Lalle,
339,Coordinate Reference System,7402,7302,NTF / France II + IGN69,
340,Coordinate Reference System,7403,7302,NTF / France III + IGN69,
341,Coordinate Reference System,7405,7302,GB National Grid + ODN,
342,Coordinate Reference System,7407,7302,NAD27 / TX_N + NGVD29,
343,Coordinate_Operation Parameter,8663,7302,k,
344,Unit of Measure,9001,7302,m,
345,Unit of Measure,9002,7302,ft,
346,Unit of Measure,9003,7302,ftUS,
347,Unit of Measure,9005,7302,ftCla,
348,Unit of Measure,9014,7302,f,
349,Unit of Measure,9030,7302,NM,
350,Unit of Measure,9031,7302,GLM,
351,Unit of Measure,9033,7302,chUS,
352,Unit of Measure,9034,7302,lkUS,
353,Unit of Measure,9035,7302,miUS,
354,Unit of Measure,9036,7302,km,
355,Unit of Measure,9037,7302,ydCla,
356,Unit of Measure,9038,7302,chCla,
357,Unit of Measure,9039,7302,lkCla,
358,Unit of Measure,9040,7302,ydSe,
359,Unit of Measure,9041,7302,ftSe,
360,Unit of Measure,9042,7302,chSe,
361,Unit of Measure,9043,7302,lkSe,
362,Unit of Measure,9050,7302,ydBnA,
363,Unit of Measure,9051,7302,ftBnA,
364,Unit of Measure,9052,7302,chBnA,
365,Unit of Measure,9053,7302,lkBnA,
366,Unit of Measure,9060,7302,ydBnB,
367,Unit of Measure,9061,7302,ftBnB,
368,Unit of Measure,9062,7302,chBnB,
369,Unit of Measure,9063,7302,lkBnB,
370,Unit of Measure,9070,7302,ftBr(65),
371,Unit of Measure,9080,7302,ftInd,
372,Unit of Measure,9081,7302,ftInd(37),
373,Unit of Measure,9082,7302,ftInd(62),
374,Unit of Measure,9083,7302,ftInd(75),
375,Unit of Measure,9084,7302,ydInd,
376,Unit of Measure,9085,7302,ydInd(37),
377,Unit of Measure,9086,7302,ydInd(62),
378,Unit of Measure,9087,7302,ydInd(75),
379,Unit of Measure,9093,7302,mi,
380,Unit of Measure,9094,7302,ftGC,
381,Unit of Measure,9101,7302,rad,
382,Unit of Measure,9102,7302,deg,
383,Unit of Measure,9103,7302,min,
384,Unit of Measure,9104,7302,sec,
385,Unit of Measure,9105,7302,gr,
386,Unit of Measure,9106,7302,g,
387,Unit of Measure,9107,7302,DMS,
388,Unit of Measure,9108,7302,DMSH,
389,Unit of Measure,9109,7302,µrad,
390,Unit of Measure,9110,7302,DDD.MMSSsss,
391,Unit of Measure,9111,7302,DDD.MMm,
392,Unit of Measure,9112,7302,c,
393,Unit of Measure,9113,7302,cc,
394,Unit of Measure,9114,7302,mil,
395,Unit of Measure,9202,7302,ppm,
396,Unit of Measure,9204,7302,Bin330ftUS,
397,Unit of Measure,9205,7302,Bin165ftUS,
398,Unit of Measure,9206,7302,Bin82.5ftUS,
399,Unit of Measure,9207,7302,Bin37.5m,
400,Unit of Measure,9208,7302,Bin25m,
401,Unit of Measure,9209,7302,Bin12.5m,
402,Unit of Measure,9210,7302,Bin6.25m,
403,Unit of Measure,9211,7302,Bin3.125m,
404,Coordinate_Operation Method,9633,7302,OSTN,
405,Coordinate_Operation Method,9824,7302,UTM,
406,Coordinate_Operation,10101,7302,Alabama East,
407,Coordinate_Operation,10102,7302,Alabama West,
408,Coordinate_Operation,10131,7302,Alabama East,
409,Coordinate_Operation,10132,7302,Alabama West,
410,Coordinate_Operation,10201,7302,Arizona East,
411,Coordinate_Operation,10202,7302,Arizona Central,
412,Coordinate_Operation,10203,7302,Arizona West,
413,Coordinate_Operation,10231,7302,Arizona East,
414,Coordinate_Operation,10232,7302,Arizona Central,
415,Coordinate_Operation,10233,7302,Arizona West,
416,Coordinate_Operation,10301,7302,Arkansas North,
417,Coordinate_Operation,10302,7302,Arkansas South,
418,Coordinate_Operation Method,9809,7301,Roussilhe,
419,Coordinate_Operation,10331,7302,Arkansas North,
420,Coordinate_Operation,10332,7302,Arkansas South,
421,Coordinate_Operation,10401,7302,California zone I,
422,Coordinate_Operation,10402,7302,California zone II,
423,Coordinate_Operation,10403,7302,California zone III,
424,Coordinate_Operation,10404,7302,California zone IV,
425,Coordinate_Operation,10405,7302,California zone V,
426,Coordinate_Operation,10406,7302,California zone VI,
427,Coordinate_Operation,10407,7302,California zone VII,
428,Coordinate_Operation,10431,7302,California zone 1,
429,Coordinate_Operation,10432,7302,California zone 2,
430,Coordinate_Operation,10433,7302,California zone 3,
431,Coordinate_Operation,10434,7302,California zone 4,
432,Coordinate_Operation,10435,7302,California zone 5,
433,Coordinate_Operation,10436,7302,California zone 6,
434,Coordinate_Operation,10501,7302,Colorado North,
435,Coordinate_Operation,10503,7302,Colorado South,
436,Coordinate_Operation,10531,7302,Colorado North,
437,Coordinate_Operation,10533,7302,Colorado South,
438,Coordinate_Operation,10600,7302,Connecticut,
439,Coordinate_Operation,10630,7302,Connecticut,
440,Coordinate_Operation,10700,7302,Delaware,
441,Coordinate_Operation,10730,7302,Delaware,
442,Coordinate_Operation,10901,7302,Florida East,
443,Coordinate_Operation,10902,7302,Florida West,
444,Coordinate_Operation,10903,7302,Florida North,
445,Coordinate_Operation,10931,7302,Florida East,
446,Coordinate_Operation,10932,7302,Florida West,
447,Coordinate_Operation,10933,7302,Florida North,
448,Coordinate_Operation,11001,7302,Georgia East,
449,Coordinate_Operation,11002,7302,Georgia West,
450,Coordinate_Operation,11031,7302,Georgia East,
451,Coordinate_Operation,11032,7302,Georgia West,
452,Coordinate_Operation,11101,7302,Idaho East,
453,Coordinate_Operation,11102,7302,Idaho Central,
454,Coordinate_Operation,11103,7302,Idaho West,
455,Coordinate_Operation,11131,7302,Idaho East,
456,Coordinate_Operation,11132,7302,Idaho Central,
457,Coordinate_Operation,11133,7302,Idaho West,
458,Coordinate_Operation,11201,7302,Illinois East,
459,Coordinate_Operation,11202,7302,Illinois West,
460,Coordinate_Operation,11231,7302,Illinois East,
461,Coordinate_Operation,11232,7302,Illinois West,
462,Coordinate_Operation,11301,7302,Indiana East,
463,Coordinate_Operation,11302,7302,Indiana West,
464,Coordinate_Operation,11331,7302,Indiana East,
465,Coordinate_Operation,11332,7302,Indiana West,
466,Coordinate_Operation,11401,7302,Iowa North,
467,Coordinate_Operation,11402,7302,Iowa South,
468,Coordinate_Operation,11431,7302,Iowa North,
469,Coordinate_Operation,11432,7302,Iowa South,
470,Coordinate_Operation,11501,7302,Kansas North,
471,Coordinate_Operation,11502,7302,Kansas South,
472,Coordinate_Operation,11531,7302,Kansas North,
473,Coordinate_Operation,11532,7302,Kansas South,
474,Coordinate_Operation,11601,7302,Kentucky North,
475,Coordinate_Operation,11602,7302,Kentucky South,
476,Coordinate_Operation,11631,7302,Kentucky North,
477,Coordinate_Operation,11632,7302,Kentucky South,
478,Coordinate_Operation,11701,7302,Louisiana North,
479,Coordinate_Operation,11702,7302,Louisiana South,
480,Coordinate_Operation,11731,7302,Louisiana North,
481,Coordinate_Operation,11732,7302,Louisiana South,
482,Coordinate_Operation,11801,7302,Maine East,
483,Coordinate_Operation,11802,7302,Maine West,
484,Coordinate_Operation,11831,7302,Maine East,
485,Coordinate_Operation,11832,7302,Maine West,
486,Coordinate_Operation,11900,7302,Maryland,
487,Coordinate_Operation,11930,7302,Maryland,
488,Coordinate_Operation,12001,7302,Massachusetts Mainland,
489,Coordinate_Operation,12002,7302,Massachusetts Island,
490,Coordinate_Operation,12031,7302,Massachusetts Mainland,
491,Coordinate_Operation,12032,7302,Massachusetts Island,
492,Coordinate_Operation,12101,7302,Michigan East,
493,Coordinate_Operation,12102,7302,Michigan Old Central,
494,Coordinate_Operation,12111,7302,Michigan North,
495,Coordinate_Operation,12112,7302,Michigan Central,
496,Coordinate_Operation,12113,7302,Michigan South,
497,Coordinate_Operation,12141,7302,Michigan North,
498,Coordinate_Operation,12142,7302,Michigan Central,
499,Coordinate_Operation,12143,7302,Michigan South,
500,Coordinate_Operation,12201,7302,Minnesota North,
501,Coordinate_Operation,12202,7302,Minnesota Central,
502,Coordinate_Operation,12203,7302,Minnesota South,
503,Coordinate_Operation,12231,7302,Minnesota North,
504,Coordinate_Operation,12232,7302,Minnesota Central,
505,Coordinate_Operation,12233,7302,Minnesota South,
506,Coordinate_Operation,12301,7302,Mississippi East,
507,Coordinate_Operation,12302,7302,Mississippi West,
508,Coordinate_Operation,12331,7302,Mississippi East,
509,Coordinate_Operation,12332,7302,Mississippi West,
510,Coordinate_Operation,12401,7302,Missouri  East,
511,Coordinate_Operation,12402,7302,Missouri Central,
512,Coordinate_Operation,12403,7302,Missouri West,
513,Coordinate_Operation,12431,7302,Missouri East,
514,Coordinate_Operation,12432,7302,Missouri Central,
515,Coordinate_Operation,12433,7302,Missouri West,
516,Coordinate_Operation,12501,7302,Montana North,
517,Coordinate_Operation,12502,7302,Montana Central,
518,Coordinate_Operation,12503,7302,Montana South,
519,Coordinate_Operation,12530,7302,Montana,
520,Coordinate_Operation,12601,7302,Nebraska North,
521,Coordinate_Operation,12602,7302,Nebraska South,
522,Coordinate_Operation,12630,7302,Nebraska,
523,Coordinate_Operation,12701,7302,Nevada  East,
524,Coordinate_Operation,12702,7302,Nevada Central,
525,Coordinate_Operation,12703,7302,Nevada West,
526,Coordinate_Operation,12731,7302,Nevada East,
527,Coordinate_Operation,12732,7302,Nevada Central,
528,Coordinate_Operation,12733,7302,Nevada West,
529,Coordinate_Operation,12800,7302,New Hampshire,
530,Coordinate_Operation,12830,7302,New Hampshire,
531,Coordinate_Operation,12900,7302,New Jersey,
532,Coordinate_Operation,12930,7302,New Jersey,
533,Coordinate_Operation,13001,7302,New Mexico East,
534,Coordinate_Operation,13002,7302,New Mexico Central,
535,Coordinate_Operation,13003,7302,New Mexico West,
536,Coordinate_Operation,13031,7302,New Mexico East,
537,Coordinate_Operation,13032,7302,New Mexico Central,
538,Coordinate_Operation,13033,7302,New Mexico West,
539,Coordinate_Operation,13101,7302,New York East,
540,Coordinate_Operation,13102,7302,New York Central,
541,Coordinate_Operation,13103,7302,New York  West,
542,Coordinate_Operation,13104,7302,New York Long Island,
543,Coordinate_Operation,13131,7302,New York East,
544,Coordinate_Operation,13132,7302,New York Central,
545,Coordinate_Operation,13133,7302,New York  West,
546,Coordinate_Operation,13134,7302,New York Long Island,
547,Coordinate_Operation,13200,7302,North Carolina,
548,Coordinate_Operation,13230,7302,North Carolina,
549,Coordinate_Operation,13301,7302,North Dakota North,
550,Coordinate_Operation,13302,7302,North Dakota South,
551,Coordinate_Operation,13331,7302,North Dakota North,
552,Coordinate_Operation,13332,7302,North Dakota South,
553,Coordinate_Operation,13401,7302,Ohio North,
554,Coordinate_Operation,13402,7302,Ohio South,
555,Coordinate_Operation,13431,7302,Ohio North,
556,Coordinate_Operation,13432,7302,Ohio South,
557,Coordinate_Operation,13501,7302,Oklahoma North,
558,Coordinate_Operation,13502,7302,Oklahoma South,
559,Coordinate_Operation,13531,7302,Oklahoma North,
560,Coordinate_Operation,13532,7302,Oklahoma South,
561,Coordinate_Operation,13601,7302,Oregon North,
562,Coordinate_Operation,13602,7302,Oregon South,
563,Coordinate_Operation,13631,7302,Oregon North,
564,Coordinate_Operation,13632,7302,Oregon South,
565,Coordinate_Operation,13701,7302,Pennsylvania North,
566,Coordinate_Operation,13702,7302,Pennsylvania South,
567,Coordinate_Operation,13731,7302,Pennsylvania North,
568,Coordinate_Operation,13732,7302,Pennsylvania South,
569,Coordinate_Operation,13800,7302,Rhode Island,
570,Coordinate_Operation,13830,7302,Rhode Island,
571,Coordinate_Operation,13901,7302,South Carolina North,
572,Coordinate_Operation,13902,7302,South Carolina South,
573,Coordinate_Operation,13930,7302,South Carolina,
574,Coordinate_Operation,14001,7302,South Dakota North,
575,Coordinate_Operation,14002,7302,South Dakota South,
576,Coordinate_Operation,14031,7302,South Dakota North,
577,Coordinate_Operation,14032,7302,South Dakota South,
578,Coordinate_Operation,14100,7302,Tennessee,
579,Coordinate_Operation,14130,7302,Tennessee,
580,Coordinate_Operation,14201,7302,Texas North,
581,Coordinate_Operation,14202,7302,Texas North Central,
582,Coordinate_Operation,14203,7302,Texas Central,
583,Coordinate_Operation,14204,7302,Texas South Central,
584,Coordinate_Operation,14205,7302,Texas South,
585,Coordinate_Operation,14231,7302,Texas North,
586,Coordinate_Operation,14232,7302,Texas North Central,
587,Coordinate_Operation,14233,7302,Texas Central,
588,Coordinate_Operation,14234,7302,Texas South Central,
589,Coordinate_Operation,14235,7302,Texas South,
590,Coordinate_Operation,14301,7302,Utah North,
591,Coordinate_Operation,14302,7302,Utah Central,
592,Coordinate_Operation,14303,7302,Utah South,
593,Coordinate_Operation,14331,7302,Utah North,
594,Coordinate_Operation,14332,7302,Utah Central,
595,Coordinate_Operation,14333,7302,Utah South,
596,Coordinate_Operation,14400,7302,Vermont,
597,Coordinate_Operation,14430,7302,Vermont,
598,Coordinate_Operation,14501,7302,Virginia North,
599,Coordinate_Operation,14502,7302,Virginia South,
600,Coordinate_Operation,14531,7302,Virginia North,
601,Coordinate_Operation,14532,7302,Virginia South,
602,Coordinate_Operation,14601,7302,Washington North,
603,Coordinate_Operation,14602,7302,Washington South,
604,Coordinate_Operation,14631,7302,Washington North,
605,Coordinate_Operation,14632,7302,Washington South,
606,Coordinate_Operation,14701,7302,West Virginia North,
607,Coordinate_Operation,14702,7302,West Virginia South,
608,Coordinate_Operation,14731,7302,West Virginia North,
609,Coordinate_Operation,14732,7302,West Virginia South,
610,Coordinate_Operation,14801,7302,Wisconsin North,
611,Coordinate_Operation,14802,7302,Wisconsin Central,
612,Coordinate_Operation,14803,7302,Wisconsin South,
613,Coordinate_Operation,14831,7302,Wisconsin North,
614,Coordinate_Operation,14832,7302,Wisconsin Central,
615,Coordinate_Operation,14833,7302,Wisconsin South,
616,Coordinate_Operation,14901,7302,Wyoming East,
617,Coordinate_Operation,14902,7302,Wyoming East Central,
618,Coordinate_Operation,14903,7302,Wyoming West Central,
619,Coordinate_Operation,14904,7302,Wyoming West,
620,Coordinate_Operation,14931,7302,Wyoming East,
621,Coordinate_Operation,14932,7302,Wyoming East Central,
622,Coordinate_Operation,14933,7302,Wyoming West Central,
623,Coordinate_Operation,14934,7302,Wyoming West,
624,Coordinate_Operation,15001,7302,Alaska zone 1,
625,Coordinate_Operation,15002,7302,Alaska zone 2,
626,Coordinate_Operation,15003,7302,Alaska zone 3,
627,Coordinate_Operation,15004,7302,Alaska zone 4,
628,Coordinate_Operation,15005,7302,Alaska zone 5,
629,Coordinate_Operation,15006,7302,Alaska zone 6,
630,Coordinate_Operation,15007,7302,Alaska zone 7,
631,Coordinate_Operation,15008,7302,Alaska zone 8,
632,Coordinate_Operation,15009,7302,Alaska zone 9,
633,Coordinate_Operation,15010,7302,Alaska zone 10,
634,Coordinate_Operation,15031,7302,Alaska zone 1,
635,Coordinate_Operation,15032,7302,Alaska zone 2,
636,Coordinate_Operation,15033,7302,Alaska zone 3,
637,Coordinate_Operation,15034,7302,Alaska zone 4,
638,Coordinate_Operation,15035,7302,Alaska zone 5,
639,Coordinate_Operation,15036,7302,Alaska zone 6,
640,Coordinate_Operation,15037,7302,Alaska zone 7,
641,Coordinate_Operation,15038,7302,Alaska zone 8,
642,Coordinate_Operation,15039,7302,Alaska zone 9,
643,Coordinate_Operation,15040,7302,Alaska zone 10,
644,Coordinate_Operation,15101,7302,Hawaii  zone 1,
645,Coordinate_Operation,15102,7302,Hawaii  zone 2,
646,Coordinate_Operation,15103,7302,Hawaii  zone 3,
647,Coordinate_Operation,15104,7302,Hawaii  zone 4,
648,Coordinate_Operation,15105,7302,Hawaii  zone 5,
649,Coordinate_Operation,15131,7302,Hawaii zone 1,
650,Coordinate_Operation,15132,7302,Hawaii zone 2,
651,Coordinate_Operation,15133,7302,Hawaii zone 3,
652,Coordinate_Operation,15134,7302,Hawaii zone 4,
653,Coordinate_Operation,15135,7302,Hawaii zone 5,
654,Coordinate_Operation,15201,7302,Puerto Rico,
655,Coordinate_Operation,15202,7302,St. Croix,
656,Coordinate_Operation,15230,7302,Puerto Rico & Virgin Is.,
657,Coordinate_Operation,15914,7302,BLM 14N (ftUS),
658,Coordinate_Operation,15915,7302,BLM 15N (ftUS),
659,Coordinate_Operation,15916,7302,BLM 16N (ftUS),
660,Coordinate_Operation,15917,7302,BLM 17N (ftUS),
661,Coordinate_Operation,16061,7302,UPS North,
662,Coordinate_Operation,16062,7302,UPS South,
663,Coordinate_Operation,16261,7302,3-degree Gauss zone 1,
664,Coordinate_Operation,16262,7302,3-degree Gauss zone 2,
665,Coordinate_Operation,16263,7302,3-degree Gauss zone 3,
666,Coordinate_Operation,16264,7302,3-degree Gauss zone 4,
667,Coordinate_Operation,16265,7302,3-degree Gauss zone 5,
668,Coordinate_Operation,16266,7302,3-degree Gauss zone 6,
669,Coordinate_Operation,16267,7302,3-degree Gauss zone 7,
670,Coordinate_Operation,16268,7302,3-degree Gauss zone 8,
671,Coordinate_Operation,16361,7302,3-deg Gauss-Kruger 3E,
672,Coordinate_Operation,16362,7302,3-deg Gauss-Kruger 6E,
673,Coordinate_Operation,16363,7302,3-deg Gauss-Kruger 9E,
674,Coordinate_Operation,16364,7302,3-deg Gauss-Kruger 12E,
675,Coordinate_Operation,16365,7302,3-deg Gauss-Kruger 15E,
676,Coordinate_Operation,16366,7302,3-deg Gauss-Kruger 18E,
677,Coordinate_Operation,16367,7302,3-deg Gauss-Kruger 21E,
678,Coordinate_Operation,16368,7302,3-deg Gauss-Kruger 24E,
679,Coordinate_Operation,17348,7302,MGA zone 48,
680,Coordinate_Operation,17349,7302,MGA zone 49,
681,Coordinate_Operation,17350,7302,MGA zone 50,
682,Coordinate_Operation,17351,7302,MGA zone 51,
683,Coordinate_Operation,17352,7302,MGA zone 52,
684,Coordinate_Operation,17353,7302,MGA zone 53,
685,Coordinate_Operation,17354,7302,MGA zone 54,
686,Coordinate_Operation,17355,7302,MGA zone 55,
687,Coordinate_Operation,17356,7302,MGA zone 56,
688,Coordinate_Operation,17357,7302,MGA zone 57,
689,Coordinate_Operation,17358,7302,MGA zone 58,
690,Coordinate_Operation,17448,7302,AMG zone 48,
691,Coordinate_Operation,17449,7302,AMG zone 49,
692,Coordinate_Operation,17450,7302,AMG zone 50,
693,Coordinate_Operation,17451,7302,AMG zone 51,
694,Coordinate_Operation,17452,7302,AMG zone 52,
695,Coordinate_Operation,17453,7302,AMG zone 53,
696,Coordinate_Operation,17454,7302,AMG zone 54,
697,Coordinate_Operation,17455,7302,AMG zone 55,
698,Coordinate_Operation,17456,7302,AMG zone 56,
699,Coordinate_Operation,17457,7302,AMG zone 57,
700,Coordinate_Operation,17458,7302,AMG zone 58,
701,Coordinate_Operation,17515,7302,S. African Grid zone 15,
702,Coordinate_Operation,17517,7302,S. African Grid zone 17,
703,Coordinate_Operation,17519,7302,S. African Grid zone 19,
704,Coordinate_Operation,17521,7302,S. African Grid zone 21,
705,Coordinate_Operation,17523,7302,S. African Grid zone 23,
706,Coordinate_Operation,17525,7302,S. African Grid zone 25,
707,Coordinate_Operation,17527,7302,S. African Grid zone 27,
708,Coordinate_Operation,17529,7302,S. African Grid zone 29,
709,Coordinate_Operation,17531,7302,S. African Grid zone 31,
710,Coordinate_Operation,17533,7302,S. African Grid zone 33,
711,Coordinate_Operation,17611,7302,SW African Grid zone 11,
712,Coordinate_Operation,17613,7302,SW African Grid zone 13,
713,Coordinate_Operation,17615,7302,SW African Grid zone 15,
714,Coordinate_Operation,17617,7302,SW African Grid zone 17,
715,Coordinate_Operation,17619,7302,SW African Grid zone 19,
716,Coordinate_Operation,17621,7302,SW African Grid zone 21,
717,Coordinate_Operation,17623,7302,SW African Grid zone 23,
718,Coordinate_Operation,17625,7302,SW African Grid zone 25,
719,Coordinate_Operation,17702,7302,MTM zone 2,
720,Coordinate_Operation,17801,7302,Japan zone I,
721,Coordinate_Operation,17802,7302,Japan zone II,
722,Coordinate_Operation,17803,7302,Japan zone III,
723,Coordinate_Operation,17804,7302,Japan zone IV,
724,Coordinate_Operation,17805,7302,Japan zone V,
725,Coordinate_Operation,17806,7302,Japan zone VI,
726,Coordinate_Operation,17807,7302,Japan zone VII,
727,Coordinate_Operation,17808,7302,Japan zone VIII,
728,Coordinate_Operation,17809,7302,Japan zone IX,
729,Coordinate_Operation,17810,7302,Japan zone X,
730,Coordinate_Operation,17811,7302,Japan zone XI,
731,Coordinate_Operation,17812,7302,Japan zone XII,
732,Coordinate_Operation,17813,7302,Japan zone XIII,
733,Coordinate_Operation,17814,7302,Japan zone XIV,
734,Coordinate_Operation,17815,7302,Japan zone XV,
735,Coordinate_Operation,17816,7302,Japan zone XVI,
736,Coordinate_Operation,17817,7302,Japan zone XVII,
737,Coordinate_Operation,17818,7302,Japan zone XVIII,
738,Coordinate_Operation,17901,7302,Mt Eden Circuit,
739,Coordinate_Operation,17920,7302,Mt Pleasant Circuit,
740,Coordinate_Operation,17924,7302,Mt Nicholas Circuit,
741,Coordinate_Operation,17925,7302,Mt York Circuit,
742,Coordinate_Operation,17926,7302,Observation Pt Circuit,
743,Coordinate_Operation,18031,7302,Argentina 1,
744,Coordinate_Operation,18032,7302,Argentina 2,
745,Coordinate_Operation,18033,7302,Argentina 3,
746,Coordinate_Operation,18034,7302,Argentina 4,
747,Coordinate_Operation,18035,7302,Argentina 5,
748,Coordinate_Operation,18036,7302,Argentina 6,
749,Coordinate_Operation,18037,7302,Argentina 7,
750,Coordinate_Operation,18044,7302,M28,
751,Coordinate_Operation,18045,7302,M31,
752,Coordinate_Operation,18046,7302,M34,
753,Coordinate_Operation,18051,7302,Colombia 3W,
754,Coordinate_Operation,18052,7302,Colombia Bogota,
755,Coordinate_Operation,18053,7302,Colombia 3E,
756,Coordinate_Operation,18054,7302,Colombia 6E,
757,Coordinate_Operation,18071,7302,Blue Belt,
758,Coordinate_Operation,18072,7302,Red Belt,
759,Coordinate_Operation,18073,7302,Purple Belt,
760,Coordinate_Operation,18074,7302,Extended Purple Belt,
761,Coordinate_Operation,18141,7302,North Island Grid,
762,Coordinate_Operation,18142,7302,South Island Grid,
763,Coordinate_Operation,18193,7302,Finland zone 3,
764,Coordinate_Operation,18203,7302,ICS,
765,Coordinate_Operation,18204,7302,ITM,
766,Coordinate_Operation,18231,7302,India zone I,
767,Coordinate_Operation,18232,7302,India zone IIa,
768,Coordinate_Operation,18233,7302,India zone IIIa,
769,Coordinate_Operation,18234,7302,India zone IVa,
770,Coordinate_Operation,18235,7302,India zone IIb,
771,Coordinate_Operation,18236,7302,India zone I,
772,Coordinate_Operation,18237,7302,India zone IIa,
773,Coordinate_Operation,18238,7302,India zone IIb,
774,Coordinate_Operation,19900,7302,Bahrain Grid,
775,Coordinate_Operation,19905,7302,NEIEZ,
776,Coordinate_Operation,19917,7302,NZMG,
777,Coordinate_Operation,19922,7302,LV03,
778,Coordinate_Operation,19923,7302,LV03C,
779,Coordinate_Operation,19928,7302,KTM,
781,Coordinate_Operation,19931,7302,EOV,
782,Coordinate_Operation,19933,7302,PEI Stereographic ATS77,
783,Coordinate_Operation,19935,7302,R.S.O. Malaya,
784,Coordinate_Operation,19945,7302,NB Stereographic ATS77,
785,Coordinate_Operation,19946,7302,NB Stereographic NAD83,
786,Coordinate_Operation,19950,7302,LV95,
787,Coordinate_Operation,19951,7302,Nakhl e Taqi,
788,Coordinate_Operation,19956,7302,R.S.O. Borneo (chSe),
789,Coordinate_Operation,19957,7302,R.S.O. Borneo (ftSe),
790,Coordinate_Operation,19958,7302,R.S.O. Borneo (m),
791,Coordinate_Operation,19960,7302,PEI Stereographic NAD83,
792,Coordinate_Operation,19962,7302,ITM,
793,Coordinate Reference System,20004,7302,1995 Coord. Sys. zone 4,
794,Coordinate Reference System,20005,7302,1995 Coord. Sys. zone 5,
795,Coordinate Reference System,20006,7302,1995 Coord. Sys. zone 6,
796,Coordinate Reference System,20007,7302,1995 Coord. Sys. zone 7,
797,Coordinate Reference System,20008,7302,1995 Coord. Sys. zone 8,
798,Coordinate Reference System,20009,7302,1995 Coord. Sys. zone 9,
799,Coordinate Reference System,20010,7302,1995 Coord. Sys. zone 10,
800,Coordinate Reference System,20011,7302,1995 Coord. Sys. zone 11,
801,Coordinate Reference System,20012,7302,1995 Coord. Sys. zone 12,
802,Coordinate Reference System,20013,7302,1995 Coord. Sys. zone 13,
803,Coordinate Reference System,20014,7302,1995 Coord. Sys. zone 14,
804,Coordinate Reference System,20015,7302,1995 Coord. Sys. zone 15,
805,Coordinate Reference System,20016,7302,1995 Coord. Sys. zone 16,
806,Coordinate Reference System,20017,7302,1995 Coord. Sys. zone 17,
807,Coordinate Reference System,20018,7302,1995 Coord. Sys. zone 18,
808,Coordinate Reference System,20019,7302,1995 Coord. Sys. zone 19,
809,Coordinate Reference System,20020,7302,1995 Coord. Sys. zone 20,
810,Coordinate Reference System,20021,7302,1995 Coord. Sys. zone 21,
811,Coordinate Reference System,20022,7302,1995 Coord. Sys. zone 22,
812,Coordinate Reference System,20023,7302,1995 Coord. Sys. zone 23,
813,Coordinate Reference System,20024,7302,1995 Coord. Sys. zone 24,
814,Coordinate Reference System,20025,7302,1995 Coord. Sys. zone 25,
815,Coordinate Reference System,20026,7302,1995 Coord. Sys. zone 26,
816,Coordinate Reference System,20027,7302,1995 Coord. Sys. zone 27,
817,Coordinate Reference System,20028,7302,1995 Coord. Sys. zone 28,
818,Coordinate Reference System,20029,7302,1995 Coord. Sys. zone 29,
819,Coordinate Reference System,20030,7302,1995 Coord. Sys. zone 30,
820,Coordinate Reference System,20031,7302,1995 Coord. Sys. zone 31,
821,Coordinate Reference System,20032,7302,1995 Coord. Sys. zone 32,
822,Coordinate Reference System,20064,7302,Pulkovo 1995 / Gauss 4N,
823,Coordinate Reference System,20065,7302,Pulkovo 1995 / Gauss 5N,
824,Coordinate Reference System,20066,7302,Pulkovo 1995 / Gauss 6N,
825,Coordinate Reference System,20067,7302,Pulkovo 1995 / Gauss 7N,
826,Coordinate Reference System,20068,7302,Pulkovo 1995 / Gauss 8N,
827,Coordinate Reference System,20069,7302,Pulkovo 1995 / Gauss 9N,
828,Coordinate Reference System,20070,7302,Pulkovo 1995 / Gauss 10N,
829,Coordinate Reference System,20071,7302,Pulkovo 1995 / Gauss 11N,
830,Coordinate Reference System,20072,7302,Pulkovo 1995 / Gauss 12N,
831,Coordinate Reference System,20073,7302,Pulkovo 1995 / Gauss 13N,
832,Coordinate Reference System,20074,7302,Pulkovo 1995 / Gauss 14N,
833,Coordinate Reference System,20075,7302,Pulkovo 1995 / Gauss 15N,
834,Coordinate Reference System,20076,7302,Pulkovo 1995 / Gauss 16N,
835,Coordinate Reference System,20077,7302,Pulkovo 1995 / Gauss 17N,
836,Coordinate Reference System,20078,7302,Pulkovo 1995 / Gauss 18N,
837,Coordinate Reference System,20079,7302,Pulkovo 1995 / Gauss 19N,
838,Coordinate Reference System,20080,7302,Pulkovo 1995 / Gauss 20N,
839,Coordinate Reference System,20081,7302,Pulkovo 1995 / Gauss 21N,
840,Coordinate Reference System,20082,7302,Pulkovo 1995 / Gauss 22N,
841,Coordinate Reference System,20083,7302,Pulkovo 1995 / Gauss 23N,
842,Coordinate Reference System,20084,7302,Pulkovo 1995 / Gauss 24N,
843,Coordinate Reference System,20085,7302,Pulkovo 1995 / Gauss 25N,
844,Coordinate Reference System,20086,7302,Pulkovo 1995 / Gauss 26N,
845,Coordinate Reference System,20087,7302,Pulkovo 1995 / Gauss 27N,
846,Coordinate Reference System,20088,7302,Pulkovo 1995 / Gauss 28N,
847,Coordinate Reference System,20089,7302,Pulkovo 1995 / Gauss 29N,
848,Coordinate Reference System,20090,7302,Pulkovo 1995 / Gauss 30N,
849,Coordinate Reference System,20091,7302,Pulkovo 1995 / Gauss 31N,
850,Coordinate Reference System,20092,7302,Pulkovo 1995 / Gauss 32N,
851,Coordinate Reference System,20437,7302,Ain el Abd / UTM 37N,
852,Coordinate Reference System,20438,7302,Ain el Abd / UTM 38N,
853,Coordinate Reference System,20439,7302,Ain el Abd / UTM 39N,
854,Coordinate Reference System,20790,7302,Lisbon / Portuguese National Grid,
855,Coordinate Reference System,21100,7302,Batavia / NEIEZ,
856,Coordinate Reference System,21291,7302,Barbados 1938 / BWI Grid,
857,Coordinate Reference System,21292,7302,Barbados NationaI Grid,
858,Coordinate Reference System,21413,7302,Beijing / Gauss zone 13,
859,Coordinate Reference System,21414,7302,Beijing / Gauss zone 14,
860,Coordinate Reference System,21415,7302,Beijing / Gauss zone 15,
861,Coordinate Reference System,21416,7302,Beijing / Gauss zone 16,
862,Coordinate Reference System,21417,7302,Beijing / Gauss zone 17,
863,Coordinate Reference System,21418,7302,Beijing / Gauss zone 18,
864,Coordinate Reference System,21419,7302,Beijing / Gauss zone 19,
865,Coordinate Reference System,21420,7302,Beijing / Gauss zone 20,
866,Coordinate Reference System,21421,7302,Beijing / Gauss zone 21,
867,Coordinate Reference System,21422,7302,Beijing / Gauss zone 22,
868,Coordinate Reference System,21423,7302,Beijing / Gauss zone 23,
869,Coordinate Reference System,21473,7302,Beijing / Gauss 13N,
870,Coordinate Reference System,21474,7302,Beijing / Gauss 14N,
871,Coordinate Reference System,21475,7302,Beijing / Gauss 15N,
872,Coordinate Reference System,21476,7302,Beijing / Gauss 16N,
873,Coordinate Reference System,21477,7302,Beijing / Gauss 17N,
874,Coordinate Reference System,21478,7302,Beijing / Gauss 18N,
875,Coordinate Reference System,21479,7302,Beijing / Gauss 19N,
876,Coordinate Reference System,21480,7302,Beijing / Gauss 20N,
877,Coordinate Reference System,21481,7302,Beijing / Gauss 21N,
878,Coordinate Reference System,21482,7302,Beijing / Gauss 22N,
879,Coordinate Reference System,21483,7302,Beijing / Gauss 23N,
880,Coordinate Reference System,21500,7302,Belge Lambert 50,
881,Coordinate Reference System,21780,7302,LV03C,
882,Coordinate Reference System,21781,7302,LV03,
883,Coordinate Reference System,21891,7302,Bogota / Colombia 3W,
884,Coordinate Reference System,21892,7302,Bogota / Colombia Bogota,
885,Coordinate Reference System,21893,7302,Bogota / Colombia 3E,
886,Coordinate Reference System,21894,7302,Bogota / Colombia 6E,
887,Coordinate Reference System,22191,7302,C Inchauspe /Argentina 1,
888,Coordinate Reference System,22192,7302,C Inchauspe /Argentina 2,
889,Coordinate Reference System,22193,7302,C Inchauspe /Argentina 3,
890,Coordinate Reference System,22194,7302,C Inchauspe /Argentina 4,
891,Coordinate Reference System,22195,7302,C Inchauspe /Argentina 5,
892,Coordinate Reference System,22196,7302,C Inchauspe /Argentina 6,
893,Coordinate Reference System,22197,7302,C Inchauspe /Argentina 7,
894,Coordinate Reference System,22275,7302,South African CS zone 15,
895,Coordinate Reference System,22277,7302,South African CS zone 17,
896,Coordinate Reference System,22279,7302,South African CS zone 19,
897,Coordinate Reference System,22281,7302,South African CS zone 21,
898,Coordinate Reference System,22283,7302,South African CS zone 23,
899,Coordinate Reference System,22285,7302,South African CS zone 25,
900,Coordinate Reference System,22287,7302,South African CS zone 27,
901,Coordinate Reference System,22289,7302,South African CS zone 29,
902,Coordinate Reference System,22291,7302,South African CS zone 31,
903,Coordinate Reference System,22293,7302,South African CS zone 33,
904,Coordinate Reference System,22300,7302,Tunisia Mining Grid,
905,Coordinate Reference System,22523,7302,Corrego Alegre / UTM 23S,
906,Coordinate Reference System,22524,7302,Corrego Alegre / UTM 24S,
907,Coordinate Reference System,22994,7302,Egypt 1907 / Ext. Purple,
908,Coordinate Reference System,23946,7302,Indian 1954 / UTM 46N,
909,Coordinate Reference System,23947,7302,Indian 1954 / UTM 47N,
910,Coordinate Reference System,23948,7302,Indian 1954 / UTM 48N,
911,Coordinate Reference System,24047,7302,Indian 1975 / UTM 47N,
912,Coordinate Reference System,24048,7302,Indian 1975 / UTM 48N,
913,Coordinate Reference System,24100,7302,Jamaica 1875 / Old Grid,
914,Coordinate Reference System,24200,7302,JAD69 / Jamaica Grid,
915,Coordinate Reference System,24305,7302,Kalianpur 37 / UTM 45N,
916,Coordinate Reference System,24306,7302,Kalianpur 37 / UTM 46N,
917,Coordinate Reference System,24311,7302,Kalianpur 62 / UTM 41N,
918,Coordinate Reference System,24312,7302,Kalianpur 62 / UTM 42N,
919,Coordinate Reference System,24313,7302,Kalianpur 62 / UTM 43N,
920,Coordinate Reference System,24342,7302,Kalianpur 75 / UTM 42N,
921,Coordinate Reference System,24343,7302,Kalianpur 75 / UTM 43N,
922,Coordinate Reference System,24344,7302,Kalianpur 75 / UTM 44N,
923,Coordinate Reference System,24345,7302,Kalianpur 75 / UTM 45N,
924,Coordinate Reference System,24346,7302,Kalianpur 75 / UTM 46N,
925,Coordinate Reference System,24347,7302,Kalianpur 75 / UTM 47N,
926,Coordinate Reference System,24370,7302,Kalianpur / India 0,
927,Coordinate Reference System,24371,7302,Kalianpur / India I,
928,Coordinate Reference System,24372,7302,Kalianpur / India IIa,
929,Coordinate Reference System,24373,7302,Kalianpur / India III,
930,Coordinate Reference System,24374,7302,Kalianpur / India IV,
931,Coordinate Reference System,24375,7302,Kalianpur 37 / India IIb,
932,Coordinate Reference System,24376,7302,Kalianpur 62 / India I,
933,Coordinate Reference System,24377,7302,Kalianpur 62 / India IIa,
934,Coordinate Reference System,24378,7302,Kalianpur 75 / India I,
935,Coordinate Reference System,24379,7302,Kalianpur 75 / India IIa,
936,Coordinate Reference System,24380,7302,Kalianpur 75 / India IIb,
937,Coordinate Reference System,24381,7302,Kalianpur 75 / India III,
938,Coordinate Reference System,24382,7302,Kalianpur / India IIb,
939,Coordinate Reference System,24383,7302,Kalianpur 75 / India IV,
940,Coordinate Reference System,24892,7302,PSAD56 / Peru central,
941,Coordinate Reference System,25000,7302,Leigon / Ghana Grid,
942,Coordinate Reference System,25391,7302,Luzon / Philippines I,
943,Coordinate Reference System,25392,7302,Luzon / Philippines II,
944,Coordinate Reference System,25393,7302,Luzon / Philippines III,
945,Coordinate Reference System,25394,7302,Luzon / Philippines IV,
946,Coordinate Reference System,25395,7302,Luzon / Philippines V,
947,Coordinate Reference System,25700,7302,Makassar / NEIEZ,
948,Coordinate Reference System,25932,7302,Malongo 1987 / UTM 32S,
949,Coordinate Reference System,26391,7302,Minna / Nigeria West,
950,Coordinate Reference System,26393,7302,Minna / Nigeria East,
951,Coordinate Reference System,26591,7302,Monte Mario / Italy 1,
952,Coordinate Reference System,26592,7302,Monte Mario / Italy 2,
953,Coordinate Reference System,26632,7302,M'poraloko / UTM 32N,
954,Coordinate Reference System,26692,7302,M'poraloko / UTM 32S,
955,Coordinate Reference System,26741,7302,NAD27 / California I,
956,Coordinate Reference System,26742,7302,NAD27 / California II,
957,Coordinate Reference System,26743,7302,NAD27 / California III,
958,Coordinate Reference System,26744,7302,NAD27 / California IV,
959,Coordinate Reference System,26745,7302,NAD27 / California V,
960,Coordinate Reference System,26746,7302,NAD27 / California VI,
961,Coordinate Reference System,26747,7302,NAD27 / California VII,
962,Coordinate Reference System,26786,7302,NAD27 / Massachusetts,
963,Coordinate Reference System,26787,7302,NAD27 / Massachusetts Is,
964,Coordinate Reference System,26792,7302,NAD27 / Minnesota Cent.,
965,Coordinate Reference System,26801,7302,NAD27 / Michigan East,
966,Coordinate Reference System,26802,7302,NAD27 / Michigan Old Cen,
967,Coordinate Reference System,26803,7302,NAD27 / Michigan West,
968,Coordinate Reference System,26811,7302,NAD27 / Michigan North,
969,Coordinate Reference System,26812,7302,NAD27 / Michigan Central,
970,Coordinate Reference System,26813,7302,NAD27 / Michigan South,
971,Coordinate Reference System,26941,7302,NAD83 / California 1,
972,Coordinate Reference System,26942,7302,NAD83 / California 2,
973,Coordinate Reference System,26943,7302,NAD83 / California 3,
974,Coordinate Reference System,26944,7302,NAD83 / California 4,
975,Coordinate Reference System,26945,7302,NAD83 / California 5,
976,Coordinate Reference System,26946,7302,NAD83 / California 6,
977,Coordinate Reference System,26986,7302,NAD83 / Massachusetts,
978,Coordinate Reference System,26987,7302,NAD83 / Massachusetts Is,
979,Coordinate Reference System,26992,7302,NAD83 / Minnesota Cent.,
980,Coordinate Reference System,27038,7302,Nahrwan 1967 / UTM 38N,
981,Coordinate Reference System,27039,7302,Nahrwan 1967 / UTM 39N,
982,Coordinate Reference System,27040,7302,Nahrwan 1967 / UTM 40N,
983,Coordinate Reference System,27120,7302,Naparima 1972 / UTM 20N,
984,Coordinate Reference System,27200,7302,GD49 / NZ Map Grid,
985,Coordinate Reference System,27391,7302,NGO 1948 / I,
986,Coordinate Reference System,27392,7302,NGO 1948 / II,
987,Coordinate Reference System,27393,7302,NGO 1948 / III,
988,Coordinate Reference System,27394,7302,NGO 1948 / IV,
989,Coordinate Reference System,27395,7302,NGO 1948 / V,
990,Coordinate Reference System,27396,7302,NGO 1948 / VI,
991,Coordinate Reference System,27397,7302,NGO 1948 / VII,
992,Coordinate Reference System,27398,7302,NGO 1948 / VIII,
993,Coordinate Reference System,27500,7302,ATF / Nord de Guerre,
994,Coordinate Reference System,27581,7302,NTF / France I,
995,Coordinate Reference System,27582,7302,NTF / France II,
996,Coordinate Reference System,27583,7302,NTF / France III,
997,Coordinate Reference System,27584,7302,NTF / France IV,
998,Coordinate Reference System,27591,7302,NTF / Nord France,
999,Coordinate Reference System,27592,7302,NTF / Centre France,
1000,Coordinate Reference System,27593,7302,NTF / Sud France,
1001,Coordinate Reference System,27594,7302,NTF / Corse,
1002,Coordinate Reference System,27700,7302,British National Grid,
1003,Coordinate Reference System,28191,7302,Palestine Grid,
1004,Coordinate Reference System,28192,7302,Palestine Belt,
1005,Coordinate Reference System,28193,7302,Israeli CS Grid,
1006,Coordinate Reference System,28232,7302,Point Noire / UTM 32S,
1007,Coordinate Reference System,28402,7302,1942 Coord. Sys. zone 2,
1008,Coordinate Reference System,28403,7302,1942 Coord. Sys. zone 3,
1009,Coordinate Reference System,28404,7302,1942 Coord. Sys. zone 4,
1010,Coordinate Reference System,28405,7302,1942 Coord. Sys. zone 5,
1011,Coordinate Reference System,28406,7302,1942 Coord. Sys. zone 6,
1012,Coordinate Reference System,28407,7302,1942 Coord. Sys. zone 7,
1013,Coordinate Reference System,28408,7302,1942 Coord. Sys. zone 8,
1014,Coordinate Reference System,28409,7302,1942 Coord. Sys. zone 9,
1015,Coordinate Reference System,28410,7302,1942 Coord. Sys. zone 10,
1016,Coordinate Reference System,28411,7302,1942 Coord. Sys. zone 11,
1017,Coordinate Reference System,28412,7302,1942 Coord. Sys. zone 12,
1018,Coordinate Reference System,28413,7302,1942 Coord. Sys. zone 13,
1019,Coordinate Reference System,28414,7302,1942 Coord. Sys. zone 14,
1020,Coordinate Reference System,28415,7302,1942 Coord. Sys. zone 15,
1021,Coordinate Reference System,28416,7302,1942 Coord. Sys. zone 16,
1022,Coordinate Reference System,28417,7302,1942 Coord. Sys. zone 17,
1023,Coordinate Reference System,28418,7302,1942 Coord. Sys. zone 18,
1024,Coordinate Reference System,28419,7302,1942 Coord. Sys. zone 19,
1025,Coordinate Reference System,28420,7302,1942 Coord. Sys. zone 20,
1026,Coordinate Reference System,28421,7302,1942 Coord. Sys. zone 21,
1027,Coordinate Reference System,28422,7302,1942 Coord. Sys. zone 22,
1028,Coordinate Reference System,28423,7302,1942 Coord. Sys. zone 23,
1029,Coordinate Reference System,28424,7302,1942 Coord. Sys. zone 24,
1030,Coordinate Reference System,28425,7302,1942 Coord. Sys. zone 25,
1031,Coordinate Reference System,28426,7302,1942 Coord. Sys. zone 26,
1032,Coordinate Reference System,28427,7302,1942 Coord. Sys. zone 27,
1033,Coordinate Reference System,28428,7302,1942 Coord. Sys. zone 28,
1034,Coordinate Reference System,28429,7302,1942 Coord. Sys. zone 29,
1035,Coordinate Reference System,28430,7302,1942 Coord. Sys. zone 30,
1036,Coordinate Reference System,28431,7302,1942 Coord. Sys. zone 31,
1037,Coordinate Reference System,28432,7302,1942 Coord. Sys. zone 32,
1038,Coordinate Reference System,28462,7302,Pulkovo / Gauss 2N,
1039,Coordinate Reference System,28463,7302,Pulkovo / Gauss 3N,
1040,Coordinate Reference System,28464,7302,Pulkovo / Gauss 4N,
1041,Coordinate Reference System,28465,7302,Pulkovo / Gauss 5N,
1042,Coordinate Reference System,28466,7302,Pulkovo / Gauss 6N,
1043,Coordinate Reference System,28467,7302,Pulkovo / Gauss 7N,
1044,Coordinate Reference System,28468,7302,Pulkovo / Gauss 8N,
1045,Coordinate Reference System,28469,7302,Pulkovo / Gauss 9N,
1046,Coordinate Reference System,28470,7302,Pulkovo / Gauss 10N,
1047,Coordinate Reference System,28471,7302,Pulkovo / Gauss 11N,
1048,Coordinate Reference System,28472,7302,Pulkovo / Gauss 12N,
1049,Coordinate Reference System,28473,7302,Pulkovo / Gauss 13N,
1050,Coordinate Reference System,28474,7302,Pulkovo / Gauss 14N,
1051,Coordinate Reference System,28475,7302,Pulkovo / Gauss 15N,
1052,Coordinate Reference System,28476,7302,Pulkovo / Gauss 16N,
1053,Coordinate Reference System,28477,7302,Pulkovo / Gauss 17N,
1054,Coordinate Reference System,28478,7302,Pulkovo / Gauss 18N,
1055,Coordinate Reference System,28479,7302,Pulkovo / Gauss 19N,
1056,Coordinate Reference System,28480,7302,Pulkovo / Gauss 20N,
1057,Coordinate Reference System,28481,7302,Pulkovo / Gauss 21N,
1058,Coordinate Reference System,28482,7302,Pulkovo / Gauss 22N,
1059,Coordinate Reference System,28483,7302,Pulkovo / Gauss 23N,
1060,Coordinate Reference System,28484,7302,Pulkovo / Gauss 24N,
1061,Coordinate Reference System,28485,7302,Pulkovo / Gauss 25N,
1062,Coordinate Reference System,28486,7302,Pulkovo / Gauss 26N,
1063,Coordinate Reference System,28487,7302,Pulkovo / Gauss 27N,
1064,Coordinate Reference System,28488,7302,Pulkovo / Gauss 28N,
1065,Coordinate Reference System,28489,7302,Pulkovo / Gauss 29N,
1066,Coordinate Reference System,28490,7302,Pulkovo / Gauss 30N,
1067,Coordinate Reference System,28491,7302,Pulkovo / Gauss 31N,
1068,Coordinate Reference System,28492,7302,Pulkovo / Gauss 32N,
1069,Coordinate Reference System,28600,7302,Qatar National Grid,
1070,Coordinate Reference System,29220,7302,Sapper Hill / UTM 20S,
1071,Coordinate Reference System,29221,7302,Sapper Hill / UTM 21S,
1072,Coordinate Reference System,29333,7302,Schwarzeck / UTM 33S,
1073,Coordinate Reference System,29371,7302,SW African CS zone 11,
1074,Coordinate Reference System,29373,7302,SW African CS zone 13,
1075,Coordinate Reference System,29375,7302,SW African CS zone 15,
1076,Coordinate Reference System,29377,7302,SW African CS zone 17,
1077,Coordinate Reference System,29379,7302,SW African CS zone 19,
1078,Coordinate Reference System,29381,7302,SW African CS zone 21,
1079,Coordinate Reference System,29383,7302,SW African CS zone 23,
1080,Coordinate Reference System,29385,7302,SW African CS zone 25,
1081,Coordinate Reference System,29700,7302,Tananarive  / Laborde,
1082,Coordinate Reference System,29738,7302,Tananarive / UTM 38S,
1083,Coordinate Reference System,29739,7302,Tananarive / UTM 39S,
1084,Coordinate Reference System,29849,7302,Timbalai 1948 / UTM 49N,
1085,Coordinate Reference System,29850,7302,Timbalai 1948 / UTM 50N,
1086,Coordinate Reference System,29871,7302,Timbalai  / Borneo (ch),
1087,Coordinate Reference System,29872,7302,Timbalai  / Borneo (ft),
1088,Coordinate Reference System,29873,7302,Timbalai  / Borneo (m),
1089,Coordinate Reference System,29900,7302,TM65 / Irish Nat Grid,
1090,Coordinate Reference System,30161,7302,Tokyo / Japan zone I,
1091,Coordinate Reference System,30162,7302,Tokyo / Japan zone II,
1092,Coordinate Reference System,30163,7302,Tokyo / Japan zone III,
1093,Coordinate Reference System,30164,7302,Tokyo / Japan zone IV,
1094,Coordinate Reference System,30165,7302,Tokyo / Japan zone V,
1095,Coordinate Reference System,30166,7302,Tokyo / Japan zone VI,
1096,Coordinate Reference System,30167,7302,Tokyo / Japan zone VII,
1097,Coordinate Reference System,30168,7302,Tokyo / Japan zone VIII,
1098,Coordinate Reference System,30169,7302,Tokyo / Japan zone IX,
1099,Coordinate Reference System,30170,7302,Tokyo / Japan zone X,
1100,Coordinate Reference System,30171,7302,Tokyo / Japan zone XI,
1101,Coordinate Reference System,30172,7302,Tokyo / Japan zone XII,
1102,Coordinate Reference System,30173,7302,Tokyo / Japan zone XIII,
1103,Coordinate Reference System,30174,7302,Tokyo / Japan zone XIV,
1104,Coordinate Reference System,30175,7302,Tokyo / Japan zone XV,
1105,Coordinate Reference System,30176,7302,Tokyo / Japan zone XVI,
1106,Coordinate Reference System,30177,7302,Tokyo / Japan zone XVII,
1107,Coordinate Reference System,30178,7302,Tokyo / Japan zone XVIII,
1108,Coordinate Reference System,30200,7302,Trinidad 1903 / Trinidad,
1109,Coordinate Reference System,30491,7302,Voirol /N Algerie ancien,
1110,Coordinate Reference System,30492,7302,Voirol /S Algerie ancien,
1111,Coordinate Reference System,30729,7302,Nord Sahara / UTM 29N,
1112,Coordinate Reference System,30730,7302,Nord Sahara / UTM 30N,
1113,Coordinate Reference System,30731,7302,Nord Sahara / UTM 31N,
1114,Coordinate Reference System,30732,7302,Nord Sahara / UTM 32N,
1115,Coordinate Reference System,30791,7302,Nord Sahara / N Algerie,
1116,Coordinate Reference System,30792,7302,Nord Sahara / S Algerie,
1117,Coordinate Reference System,31265,7302,MGI / Gauss zone 5,
1118,Coordinate Reference System,31266,7302,MGI / Gauss zone 6,
1119,Coordinate Reference System,31267,7302,MGI / Gauss zone 7,
1120,Coordinate Reference System,31268,7302,MGI / Gauss zone 8,
1121,Coordinate Reference System,31291,7302,MGI / Austria West,
1122,Coordinate Reference System,31292,7302,MGI / Austria Central,
1123,Coordinate Reference System,31293,7302,MGI / Austria East,
1124,Coordinate Reference System,31370,7302,BD 72 / Lambert 72,
1125,Coordinate Reference System,31461,7302,DHDN / Gauss zone 1,
1126,Coordinate Reference System,31462,7302,DHDN / Gauss zone 2,
1127,Coordinate Reference System,31463,7302,DHDN / Gauss zone 3,
1128,Coordinate Reference System,31464,7302,DHDN / Gauss zone 4,
1129,Coordinate Reference System,31465,7302,DHDN / Gauss zone 5,
1130,Coordinate Reference System,31600,7302,Stereo 33,
1131,Coordinate Reference System,31700,7302,Stereo 70,
1132,Coordinate Reference System,32013,7302,NAD27 / New Mexico Cent.,
1133,Coordinate Reference System,32018,7302,NAD27 / New York Long Is,
1134,Coordinate Reference System,32020,7302,NAD27 / North Dakota N,
1135,Coordinate Reference System,32021,7302,NAD27 / North Dakota S,
1136,Coordinate Reference System,32028,7302,NAD27 / Pennsylvania N,
1137,Coordinate Reference System,32029,7302,NAD27 / Pennsylvania S,
1138,Coordinate Reference System,32031,7302,NAD27 / South Carolina N,
1139,Coordinate Reference System,32033,7302,NAD27 / South Carolina S,
1140,Coordinate Reference System,32034,7302,NAD27 / South Dakota N,
1141,Coordinate Reference System,32035,7302,NAD27 / South Dakota S,
1142,Coordinate Reference System,32038,7302,NAD27 / Texas North Cen.,
1143,Coordinate Reference System,32040,7302,NAD27 / Texas South Cen.,
1144,Coordinate Reference System,32050,7302,NAD27 / West Virginia N,
1145,Coordinate Reference System,32051,7302,NAD27 / West Virginia S,
1146,Coordinate Reference System,32053,7302,NAD27 / Wisconsin Cen.,
1147,Coordinate Reference System,32056,7302,NAD27 / Wyoming E. Cen.,
1148,Coordinate Reference System,32057,7302,NAD27 / Wyoming W. Cen.,
1149,Coordinate Reference System,32113,7302,NAD83 / New Mexico Cent.,
1150,Coordinate Reference System,32118,7302,NAD83 / New York Long Is,
1151,Coordinate Reference System,32120,7302,NAD83 / North Dakota N,
1152,Coordinate Reference System,32121,7302,NAD83 / North Dakota S,
1153,Coordinate Reference System,32128,7302,NAD83 / Pennsylvania N,
1154,Coordinate Reference System,32129,7302,NAD83 / Pennsylvania S,
1155,Coordinate Reference System,32134,7302,NAD83 / South Dakota N,
1156,Coordinate Reference System,32135,7302,NAD83 / South Dakota S,
1157,Coordinate Reference System,32138,7302,NAD83 / Texas North Cen.,
1158,Coordinate Reference System,32140,7302,NAD83 / Texas South Cen.,
1159,Coordinate Reference System,32150,7302,NAD83 / West Virginia N,
1160,Coordinate Reference System,32151,7302,NAD83 / West Virginia S,
1161,Coordinate Reference System,32153,7302,NAD83 / Wisconsin Cen.,
1162,Coordinate Reference System,32156,7302,NAD83 / Wyoming E. Cen.,
1163,Coordinate Reference System,32157,7302,NAD83 / Wyoming W. Cen.,
1164,Unit of Measure,9001,7306,m,
1165,Unit of Measure,9002,7306,ft,
1166,Unit of Measure,9003,7306,ftUS,
1167,Unit of Measure,9005,7306,ftCla,
1168,Unit of Measure,9014,7306,fathom,
1169,Unit of Measure,9030,7306,nautmi,
1170,Unit of Measure,9031,7306,mGer,
1171,Unit of Measure,9033,7306,chUS,
1172,Unit of Measure,9034,7306,lkUS,
1173,Unit of Measure,9035,7306,miUS,
1174,Unit of Measure,9036,7306,km,
1175,Unit of Measure,9037,7306,ydCla,
1176,Unit of Measure,9038,7306,chCla,
1177,Unit of Measure,9039,7306,lkCla,
1178,Unit of Measure,9040,7306,ydSe,
1179,Unit of Measure,9041,7306,ftSe,
1180,Unit of Measure,9042,7306,chSe,
1181,Unit of Measure,9043,7306,lkSe,
1182,Unit of Measure,9050,7306,ydBnA,
1183,Unit of Measure,9051,7306,ftBnA,
1184,Unit of Measure,9052,7306,chBnA,
1185,Unit of Measure,9053,7306,lkBnA,
1186,Unit of Measure,9060,7306,ydBnB,
1187,Unit of Measure,9061,7306,ftBnB,
1188,Unit of Measure,9062,7306,chBnB,
1189,Unit of Measure,9063,7306,lkBnB,
1190,Unit of Measure,9070,7306,ftBr(65),
1191,Unit of Measure,9080,7306,ftInd,
1192,Unit of Measure,9081,7306,ftInd(37),
1193,Unit of Measure,9082,7306,ftInd(62),
1194,Unit of Measure,9083,7306,ftInd(75),
1195,Unit of Measure,9084,7306,ydInd,
1196,Unit of Measure,9085,7306,ydInd(37),
1197,Unit of Measure,9086,7306,ydInd(62),
1198,Unit of Measure,9087,7306,ydInd(75),
1199,Unit of Measure,9093,7306,mi,
1200,Unit of Measure,9094,7306,ftGC,
1201,Unit of Measure,9101,7306,rad,
1202,Unit of Measure,9102,7306,dega,
1203,Unit of Measure,9103,7306,mina,
1204,Unit of Measure,9104,7306,seca,
1205,Unit of Measure,9105,7306,gr,
1206,Unit of Measure,9106,7306,gon,
1207,Unit of Measure,9107,7306,dega,
1208,Unit of Measure,9108,7306,dega,
1209,Unit of Measure,9109,7306,urad,
1210,Unit of Measure,9110,7306,dega,
1211,Unit of Measure,9111,7306,dega,
1212,Unit of Measure,9112,7306,cgr,
1213,Unit of Measure,9113,7306,ccgr,
1214,Unit of Measure,9114,7306,mila,
1215,Coordinate_Operation Method,9824,7302,UTM grid system,
1216,Coordinate Reference System,4143,7301,Côte D'Ivoire,Same alias also applied to Locodjo 1965 (code 4142).
1217,Coordinate Reference System,4143,7301,Port Bouet,Same alias also applied to Locodjo 1965 (code 4142).
1218,Coordinate Reference System,4142,7301,Port Bouet,Same alias also applied to Abidjan 1987 (code 4143).
1219,Coordinate Reference System,4142,7301,Côte D'Ivoire,Same alias also applied to Abidjan 1987 (code 4143).
1220,Coordinate Reference System,2164,7301,Cote d'Ivoire / TM 5 NW,Same alias used for Abidjan 1987 / TM 5 NW (code 2165).
1221,Coordinate Reference System,2164,7301,Port Bouet / TM 5 NW,Same alias used for Abidjan 1987 / TM 5 NW (code 2165).
1222,Coordinate Reference System,2165,7301,Cote d'Ivoire / TM 5 NW,Same alias used for Locodjo 1965 / TM 5 NW (code 2164).
1223,Coordinate Reference System,2165,7301,Port Bouet / TM 5 NW,Same alias used for Abidjan 1987 / TM 5 NW (code 2165).
1224,Coordinate_Operation,1588,7301,ED50 to EUREF89 (1),
1225,Coordinate_Operation,1588,7301,ED50 to ETRF89 (1),
1227,Coordinate_Operation,1589,7301,ED50 to EUREF89 (3),
1229,Datum,6181,7301,LUREF,
1230,Datum,6180,7302,EST97,
1231,Datum,6179,7301,42/58,
1232,Datum,6178,7301,42/83,
1233,Datum,6312,7308,HR1901,
1234,Datum,6312,7309,D48,
1235,Coordinate_Operation Method,9807,7301,Gauss-Kruger,
1236,Coordinate_Operation Method,9807,7302,TM,
1237,Datum,6818,7301,Jednotné Trigonometrické Síte Katastrální (Ferro),
1238,Coordinate Reference System,2393,7301,KKJ / Basic Coordinate System zone 3,
1239,Coordinate Reference System,2391,7301,KKJ / Basic Coordinate System zone 1,
1240,Coordinate Reference System,2392,7301,KKJ / Basic Coordinate System zone 2,
1241,Coordinate Reference System,2394,7301,KKJ / Basic Coordinate System zone 4,
1242,Coordinate Reference System,31467,7301,DHDN / 3-degree Gauss-Kruger zone 3,
1243,Coordinate Reference System,31468,7301,DHDN / 3-degree Gauss-Kruger zone 4,
1244,Coordinate Reference System,31469,7301,DHDN / 3-degree Gauss-Kruger zone 5,
1247,Coordinate Reference System,4178,7301,42/83,
1248,Coordinate Reference System,31466,7301,DHDN / 3-degree Gauss-Kruger zone 2,
1249,Coordinate Reference System,2166,7301,Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 3,
1250,Coordinate Reference System,2167,7301,Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 4,
1251,Coordinate Reference System,4181,7301,LUREF,
1253,Coordinate Reference System,4258,7301,EUREF89,
1254,Coordinate Reference System,2170,7301,EUREF89 / CS92,
1255,Coordinate Reference System,4312,7308,HR1901,
1256,Coordinate Reference System,4312,7309,D48,
1257,Coordinate Reference System,4805,7308,HR1901 (Ferro),
1258,Coordinate Reference System,4805,7309,D48 (Ferro),
1259,Coordinate Reference System,31275,7308,HDKS zone 5,HDKS = Hrvatski Drzavni Koordinatni Sustav
1260,Coordinate Reference System,31276,7308,HDKS zone 6,HDKS = Hrvatski Drzavni Koordinatni Sustav
1261,Coordinate Reference System,31275,7309,D48 zone 5,
1262,Coordinate Reference System,2169,7301,LUREF / Gauss,
1263,Coordinate Reference System,31467,7310,PD/83 / Gauss-Kruger zone 3,PD/83 is the result of the transformation from Pulkovo 1942(83) to DHDN for Thuringen.
1264,Coordinate Reference System,31468,7310,PD/83 / Gauss-Kruger zone 4,PD/83 is the result of the transformation from Pulkovo 1942(83) to DHDN for Thuringen.
1265,Coordinate Reference System,31468,7310,RD/83 / Gauss-Kruger zone 4,RD/83 is the result of the transformation from Pulkovo 1942(83) to DHDN for Sachsen.
1266,Coordinate Reference System,31469,7310,RD/83 / Gauss-Kruger zone 4,RD/83 is the result of the transformation from Pulkovo 1942(83) to DHDN for Sachsen.
1267,Coordinate_Operation,1620,7308,HR1901 to ETRS89 (2),
1268,Coordinate_Operation,1619,7307,AT_MGI to ETRS89,
1269,Coordinate_Operation,1622,7307,CZ_S-JTSK to ETRS89,
1270,Coordinate_Operation,1620,7307,HR_HDKS to ETRS89,
1271,Coordinate_Operation,1624,7307,SK_S-JTSK to ETRS89,
1272,Coordinate_Operation,1626,7307,DK_ED50 to ETRS89,
1273,Coordinate_Operation,1628,7307,GI_ED50 to ETRS89,
1274,Coordinate_Operation,1630,7307,ES_ED50 (BAL99) to ETRS89,
1275,Coordinate_Operation,1632,7307,ES_ED50 (EST99) to ETRS89,
1276,Coordinate_Operation,1634,7307,ES_ED50 (ZNW99) to ETRS89,
1277,Coordinate_Operation,1636,7307,TR_ED50 to ETRS89,
1278,Coordinate_Operation,1638,7307,FI_KKJ to ETRS89,
1279,Coordinate_Operation,1640,7307,IE_Ireland65 to ETRS89,IE_Ireland65 to ETRS89 applies to the Republic of Ireland. Also referred to in EuroGeographics as NI_Ireland65 to ETRS89 for Northern Ireland.
1280,Coordinate_Operation,1642,7307,LU_LUREF to ETRS89,
1281,Coordinate_Operation,1644,7307,PL_42/58 to ETRS89,
1282,Coordinate_Operation,1646,7307,CH_CH1903 to ETRS89,
1283,Coordinate_Operation,1647,7307,CH_CH1903+ to ETRS89,
1284,Coordinate_Operation,1648,7307,EE_L-EST97 to ETRS89,
1285,Coordinate_Operation,1650,7307,FR_ED50 to ETRS89,
1286,Coordinate_Operation,1651,7307,FR_NTF to ETRS89,
1287,Coordinate_Operation,1653,7307,NO_NGO1948 to ETRS89,
1288,Coordinate_Operation,1657,7307,PT_D73 to ETRS89,
1289,Coordinate_Operation,1655,7307,PT_DLX(HAY) to ETRS89,
1290,Coordinate_Operation,1652,7307,BE_BD72 to ETRS89,
1291,Coordinate Reference System,31282,7302,MGI / Austria Central,
1292,Coordinate Reference System,31283,7302,MGI / Austria East,
1293,Coordinate Reference System,31281,7302,MGI / Austria West,
1294,Datum,6176,7302,AAD98,
1295,Coordinate Reference System,4176,7302,AAD98,
1296,Datum,6167,7302,NZGD2000,
1297,Coordinate Reference System,2193,7302,NZGD2000 / NZTM,
1298,Coordinate_Operation,19971,7302,NZTM,
1299,Datum,6186,7302,S-JTSK,
1300,Datum,5119,7301,Nivellement general de la France,This alias is also used for other datum realisations: see NGF - Lallemand (code 5118) and NGF - IGN78 (code 5120).
1301,Datum,5119,7301,NGF,This alias is also used for other datum realisations: see NGF - Lallemand (code 5118) and NGF - IGN78 (code 5120).
1302,Datum,5120,7301,NGF,This alias is also used for other datum realisations: see NGF - Lallemand (code 5118) and NGF - IGN69 (code 5119).
1303,Datum,5118,7301,NGF,This alias is also used for other datum realisations: see NGF - IGN69 (code 5119) and NGF - IGN78 (code 5120).
1304,Datum,5120,7301,Nivellement general de la France,This alias is also used for other datum realisations: see NGF - Lallemand (code 5118) and NGF - IGN69 (code 5119).
1305,Datum,5118,7301,Nivellement general de la France,This alias is also used for other datum realisations: see NGF - IGN69 (code 5119) and NGF - IGN78 (code 5120).
1306,Datum,6143,7301,Côte D'Ivoire (Ivory Coast),This alias is not unique: it is also used for code 6142.
1307,Datum,6142,7301,Côte D'Ivoire (Ivory Coast),This alias is not unique: it is also used for code 6143.
1308,Coordinate Reference System,4300,7301,1975 Mapping Adjustment,
1309,Coordinate Reference System,2196,7301,EUREF89 / Kp2000 Jutland,
1310,Coordinate Reference System,2196,7301,System 2000 Jylland zoner,
1311,Coordinate Reference System,2197,7301,EUREF89 / Kp2000 Zealand,
1312,Coordinate Reference System,2197,7301,System 2000 Sjaelland zoner,
1313,Coordinate Reference System,2198,7301,EUREF89 / Kp2000 Bornholm,
1314,Coordinate Reference System,2198,7301,System 2000 Bornholm zoner,
1315,Datum,6189,7301,SIRGAS-REGVEN,
1316,Datum,6189,7302,REGVEN,
1317,Datum,6171,7300,Réseau Géodésique Français 1993,
1318,Datum,6172,7300,Posiciones Geodésicas Argentinas,
1319,Datum,6186,7300,Jednotné Trigonometrické Síte Katastrální,
1320,Coordinate Reference System,4314,7310,PD/83,Used for describing result of transformation from Pulkovo 1942(83) to DHDN for Thuringen.
1321,Coordinate Reference System,4314,7310,RD/83,Used for describing result of transformation from Pulkovo 1942(83) to DHDN for Sachsen.
1322,Coordinate_Operation,15304,7302,Arizona East (ft),
1323,Coordinate_Operation,15305,7302,Arizona Central (ft),
1324,Coordinate_Operation,15306,7302,Arizona West (ft),
1325,Coordinate_Operation,15307,7302,California zone 1 (ftUS),
1326,Coordinate_Operation,15308,7302,California zone 2 (ftUS),
1327,Coordinate_Operation,15309,7302,California zone 3 (ftUS),
1328,Coordinate_Operation,15310,7302,California zone 4 (ftUS),
1329,Coordinate_Operation,15311,7302,California zone 5 (ftUS),
1330,Coordinate_Operation,15312,7302,California zone 6 (ftUS),
1331,Coordinate_Operation,15313,7302,Colorado North (ftUS),
1332,Coordinate_Operation,15314,7302,Colorado Central (ftUS),
1333,Coordinate_Operation,15315,7302,Colorado South (ftUS),
1334,Coordinate_Operation,15316,7301,Connecticut (ft US),
1335,Coordinate_Operation,15317,7302,Delaware (ftUS),
1336,Coordinate_Operation,15318,7301,Florida East (ft US),
1337,Coordinate_Operation,15319,7302,Florida West (ftUS),
1338,Coordinate_Operation,15320,7302,Florida North (ftUS),
1339,Coordinate_Operation,15321,7302,Georgia East (ftUS),
1340,Coordinate_Operation,15322,7302,Georgia West (ftUS),
1341,Coordinate_Operation,15323,7302,Idaho East (ftUS),
1342,Coordinate_Operation,15324,7302,Idaho Central (ftUS),
1343,Coordinate_Operation,15325,7302,Idaho West (ftUS),
1344,Coordinate_Operation,15326,7302,Indiana East (ftUS),
1345,Coordinate_Operation,15327,7302,Indiana West (ftUS),
1346,Coordinate_Operation,15328,7302,Kentucky North (ftUS),
1347,Coordinate_Operation,15329,7302,Kentucky South (ftUS),
1348,Coordinate_Operation,15330,7302,Maryland (ftUS),
1349,Coordinate_Operation,15331,7302,Massachusetts Mainland (ftUS),
1350,Coordinate_Operation,15332,7302,Massachusetts Island (ftUS),
1351,Coordinate_Operation,15333,7302,Michigan North (ft),
1352,Coordinate_Operation,15334,7302,Michigan Central (ft),
1353,Coordinate_Operation,15335,7302,Michigan South (ft),
1354,Coordinate_Operation,15336,7302,Mississippi East (ftUS),
1355,Coordinate_Operation,15337,7302,Mississippi West (ftUS),
1356,Coordinate_Operation,15338,7301,Montana (ftUS),
1357,Coordinate_Operation,15339,7302,New Mexico East (ftUS),
1358,Coordinate_Operation,15340,7302,New Mexico Central (ftUS),
1359,Coordinate_Operation,15341,7302,New Mexico West (ftUS),
1360,Coordinate_Operation,15342,7302,New York East (ftUS),
1361,Coordinate_Operation,15343,7302,New York Central (ftUS),
1362,Coordinate_Operation,15344,7302,New York  West (ftUS),
1363,Coordinate_Operation,15345,7302,New York Long Island (ftUS),
1364,Coordinate_Operation,15346,7302,North Carolina (ftUS),
1365,Coordinate_Operation,15347,7302,North Dakota North (ft),
1366,Coordinate_Operation,15348,7302,North Dakota South (ft),
1367,Coordinate_Operation,15349,7302,Oklahoma North (ftUS),
1368,Coordinate_Operation,15350,7302,Oklahoma South (ftUS),
1369,Coordinate_Operation,15351,7302,Oregon North (ft),
1370,Coordinate_Operation,15352,7302,Oregon South (ft),
1371,Coordinate_Operation,15353,7302,Pennsylvania North (ftUS),
1372,Coordinate_Operation,15354,7301,Pennsylvania South (ftUS),
1373,Coordinate_Operation,15355,7302,South Carolina (ft),
1374,Coordinate_Operation,15356,7302,Tennessee (ftUS),
1375,Coordinate_Operation,15357,7302,Texas North (ftUS),
1376,Coordinate_Operation,15358,7302,Texas North Central (ftUS),
1377,Coordinate_Operation,15359,7302,Texas Central (ftUS),
1378,Coordinate_Operation,15360,7302,Texas South Central (ftUS),
1379,Coordinate_Operation,15361,7302,Texas South (ftUS),
1380,Coordinate_Operation,15362,7302,Utah North (ft),
1381,Coordinate_Operation,15363,7302,Utah Central (ft),
1382,Coordinate_Operation,15364,7302,Utah South (ft),
1383,Coordinate_Operation,15365,7302,Virginia North (ftUS),
1384,Coordinate_Operation,15366,7302,Virginia South (ftUS),
1385,Coordinate_Operation,15367,7302,Washington North (ftUS),
1386,Coordinate_Operation,15368,7302,Washington South (ftUS),
1387,Coordinate_Operation,15369,7302,Wisconsin North (ftUS),
1388,Coordinate_Operation,15370,7302,Wisconsin Central (ftUS),
1389,Coordinate_Operation,15371,7302,Wisconsin South (ftUS),
1390,Datum,6190,7302,POSGAR 98,
1391,Datum,6190,7300,Posiciones Geodésicas Argentinas 1998,
1392,Coordinate Reference System,4190,7301,National Geodetic System [Argentina],see http://www.igm.gov.ar/posgar.html
1393,Datum,6182,7301,Observatario Flores,
1394,Datum,6182,7302,Azores Occidental 1939,
1395,Datum,6183,7301,Graciosa,The same name is also used for the 1995 adjustment (see datum code 6665).
1396,Datum,6183,7302,Azores Central 1948,
1397,Datum,6184,7301,Sao Bras,The same name is also used for the 1995 adjustment (see datum code 6664).
1398,Datum,6184,7302,Azores Oriental 1940,
1399,Coordinate Reference System,4182,7301,Observatorio Flores,
1400,Coordinate Reference System,4183,7301,Graciosa,The same name is also used for the 1995 adjustment (see CRS code 4665).
1401,Coordinate Reference System,4184,7301,Sao Braz,The same name is also used for the 1995 adjustment (see CRS code 4664).
1402,Coordinate_Operation,18084,7301,France zone IV,
1403,Coordinate_Operation,18083,7301,France zone III,
1404,Coordinate_Operation,18082,7301,France zone II,
1405,Coordinate_Operation,18081,7301,France zone I,
1406,Coordinate_Operation,18093,7301,Sud France,
1407,Coordinate_Operation,18094,7301,Corse,
1408,Coordinate_Operation,18092,7301,Centre France,
1409,Coordinate_Operation,18091,7301,Nord France,
1410,Coordinate Reference System,27561,7301,NTF (Paris) / Nord France,
1411,Coordinate Reference System,27562,7301,NTF (Paris) / Centre France,
1412,Coordinate Reference System,27563,7301,NTF (Paris) / Sud France,
1413,Coordinate Reference System,27564,7301,NTF (Paris) / Corse,
1414,Coordinate Reference System,27571,7301,NTF (Paris) / France I,
1415,Coordinate Reference System,27572,7301,NTF (Paris) / France II,
1416,Coordinate Reference System,27573,7301,NTF (Paris) / France III,
1417,Coordinate Reference System,27574,7301,NTF (Paris) / France IV,
1418,Coordinate Reference System,27572,7301,NTF (Paris) / Lambert zone II Etendue,
1419,Datum,6156,7300,Jednotné Trigonometrické Síte Katastrální,
1421,Coordinate_Operation,1751,7301,Amersfoort to ETRF89 (1),
1422,Coordinate Reference System,2168,7301,Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 5,
1423,Coordinate_Operation,15302,7302,Tennessee,
1424,Coordinate_Operation,16269,7302,3-degree Gauss zone 9,
1425,Coordinate_Operation,16270,7302,3-degree Gauss zone 10,
1426,Coordinate_Operation,16271,7302,3-degree Gauss zone 11,
1427,Coordinate_Operation,16272,7302,3-degree Gauss zone 12,
1428,Coordinate_Operation,16273,7302,3-degree Gauss zone 13,
1429,Coordinate_Operation,16274,7302,3-degree Gauss zone 14,
1430,Coordinate_Operation,16275,7302,3-degree Gauss zone 15,
1431,Datum,6123,7300,Kartasto Koordinaati Järjestelmä 1966,
1432,Coordinate Reference System,2181,7301,ED50 / Turkey zone 9,
1433,Coordinate Reference System,2182,7301,ED50 / Turkey zone 10,
1434,Coordinate Reference System,2183,7301,ED50 / Turkey zone 11,
1435,Coordinate Reference System,2184,7301,ED50 / Turkey zone 12,
1436,Coordinate Reference System,2185,7301,ED50 / Turkey zone 13,
1437,Coordinate Reference System,2186,7301,ED50 / Turkey zone 14,
1438,Coordinate Reference System,2187,7301,ED50 / Turkey zone 15,
1439,Coordinate Reference System,2188,7301,Observatorio Flores / UTM zone 25N,
1440,Coordinate Reference System,2189,7301,Graciosa / UTM zone 26N,The same name is also used for the 1995 adjustment (see CRS code 3063).
1441,Coordinate Reference System,2190,7301,Sao Braz / UTM zone 26N,The same name is also used for the 1995 adjustment (see CRS code 3062).
1442,Coordinate_Operation,1781,7310,PD/83 to ETRS89,
1443,Coordinate_Operation,1782,7310,RD/83 to ETRS89,
1444,Coordinate Reference System,4207,7301,Lisbon 1937,
1445,Coordinate Reference System,4803,7301,Lisbon 1937 (Lisbon),
1446,Coordinate Reference System,20791,7301,Lisbon 1937 (Lisbon)/Portuguese Grid,
1447,Coordinate Reference System,20790,7301,Lisbon 1937 (Lisbon)/Portuguese National Grid,
1448,Coordinate_Operation,18411,7301,Afrique Occidentale Française Senegal zone,
1449,Coordinate_Operation,18412,7301,Afrique Occidentale Française Côte d'Ivoire zone,
1450,Coordinate_Operation,18413,7301,Afrique Occidentale Française Dahomey zone,
1451,Coordinate_Operation,18415,7301,Afrique Equatoriale Française ouest zone,
1452,Coordinate_Operation,18416,7301,Afrique Equatoriale Française centrale zone,
1453,Coordinate_Operation,18417,7301,Afrique Equatoriale Française est zone,
1454,Coordinate_Operation,18414,7301,Afrique Occidentale Française Niger zone,
1455,Coordinate_Operation,18411,7302,AOF Senegal zone,
1456,Coordinate_Operation,18412,7302,AOF Côte d'Ivoire zone,
1457,Coordinate_Operation,18413,7302,AOF Dahomey zone,
1458,Coordinate_Operation,18414,7302,AOF Niger zone,
1459,Coordinate_Operation,18415,7302,AEF west,
1460,Coordinate_Operation,18416,7302,AEF central,
1461,Coordinate_Operation,18417,7302,AEF east,
1462,Coordinate_Operation Method,9823,7301,Plate Carrée,This alias only applies if the latitude of natural origin is at the equator.
1464,Coordinate_Operation,1469,7301,Côte D'Ivoire to WGS 84 (1),Same alias also applied to Abidjan 1987 to WGS 84 (1) (code 1470).
1465,Coordinate_Operation,1469,7301,Port Bouet to WGS 84 (1),Same alias also applied to Abidjan 1987 to WGS 84 (1) (code 1470).
1466,Coordinate_Operation,1470,7301,Côte D'Ivoire to WGS 84 (1),Same alias also applied to Locodjo 1965 to WGS 84 (1) (code 1469).
1467,Coordinate_Operation,1470,7301,Port Bouet to WGS 84 (1),Same alias also applied to Locodjo 1965 to WGS 84 (1) (code 1469).
1468,Coordinate Reference System,2040,7301,Port Bouet / UTM zone 30N,Same alias used for Abidjan 1987 / UTM zone 30N (code 2041).
1469,Coordinate Reference System,2040,7301,Côte d'Ivoire / UTM zone 30N,Same alias used for Abidjan 1987 / UTM zone 30N (code 2041).
1470,Coordinate Reference System,2041,7301,Port Bouet / UTM zone 30N,Same alias used for Locodjo 1965 / UTM zone 30N (code 2040).
1471,Coordinate Reference System,2041,7301,Côte d'Ivoire / UTM zone 30N,Same alias used for Locodjo 1965 / UTM zone 30N (code 2040).
1472,Coordinate Reference System,2042,7301,Port Bouet / UTM zone 29N,Same alias used for Abidjan 1987 / UTM zone 29N (code 2043).
1473,Coordinate Reference System,2042,7301,Côte d'Ivoire / UTM zone 29N,Same alias used for Abidjan 1987 / UTM zone 29N (code 2043).
1474,Coordinate Reference System,2043,7301,Port Bouet / UTM zone 29N,Same alias used for Locodjo 1965 / UTM zone 29N (code 2042).
1475,Coordinate Reference System,2043,7301,Côte d'Ivoire / UTM zone 29N,Same alias used for Locodjo 1965 / UTM zone 29N (code 2042).
1479,Coordinate_Operation,18421,7301,Greenland zone 1 west,
1480,Coordinate_Operation,18428,7301,Greenland zone 8 west,
1481,Coordinate Reference System,2297,7301,Qornoq 1927 / Greenland zone 1 west,
1482,Coordinate Reference System,2307,7301,Qornoq 1927 / Greenland zone 8 west,
1483,Coordinate Reference System,32113,7301,NAD83 / New Mexico Central (m),
1484,Coordinate Reference System,26949,7301,NAD83 / Arizona Central (m),
1485,Coordinate Reference System,26929,7301,NAD83 / Alabama East (m),
1486,Coordinate Reference System,26930,7301,NAD83 / Alabama West (m),
1487,Coordinate Reference System,26931,7301,NAD83 / Alaska zone 1 (m),
1488,Coordinate Reference System,26940,7301,NAD83 / Alaska zone 10 (m),
1489,Coordinate Reference System,26932,7301,NAD83 / Alaska zone 2 (m),
1490,Coordinate Reference System,26933,7301,NAD83 / Alaska zone 3 (m),
1491,Coordinate Reference System,26934,7301,NAD83 / Alaska zone 4 (m),
1492,Coordinate Reference System,26935,7301,NAD83 / Alaska zone 5 (m),
1493,Coordinate Reference System,26936,7301,NAD83 / Alaska zone 6 (m),
1494,Coordinate Reference System,26937,7301,NAD83 / Alaska zone 7 (m),
1495,Coordinate Reference System,26938,7301,NAD83 / Alaska zone 8 (m),
1496,Coordinate Reference System,26939,7301,NAD83 / Alaska zone 9 (m),
1497,Coordinate Reference System,26948,7301,NAD83 / Arizona East (m),
1498,Coordinate Reference System,26950,7301,NAD83 / Arizona West (m),
1499,Coordinate Reference System,26951,7301,NAD83 / Arkansas North (m),
1500,Coordinate Reference System,26952,7301,NAD83 / Arkansas South (m),
1501,Coordinate Reference System,26941,7301,NAD83 / California zone 1 (m),
1502,Coordinate Reference System,26942,7301,NAD83 / California zone 2 (m),
1503,Coordinate Reference System,26943,7301,NAD83 / California zone 3 (m),
1504,Coordinate Reference System,26944,7301,NAD83 / California zone 4 (m),
1505,Coordinate Reference System,26945,7301,NAD83 / California zone 5 (m),
1506,Coordinate Reference System,26946,7301,NAD83 / California zone 6 (m),
1507,Coordinate Reference System,26954,7301,NAD83 / Colorado Central (m),
1508,Coordinate Reference System,26953,7301,NAD83 / Colorado North (m),
1509,Coordinate Reference System,26955,7301,NAD83 / Colorado South (m),
1510,Coordinate Reference System,26956,7301,NAD83 / Connecticut (m),
1511,Coordinate Reference System,26957,7301,NAD83 / Delaware (m),
1512,Coordinate Reference System,26958,7301,NAD83 / Florida East (m),
1513,Coordinate Reference System,26960,7301,NAD83 / Florida North (m),
1514,Coordinate Reference System,26959,7301,NAD83 / Florida West (m),
1515,Coordinate Reference System,26966,7301,NAD83 / Georgia East (m),
1516,Coordinate Reference System,26967,7301,NAD83 / Georgia West (m),
1517,Coordinate Reference System,26961,7301,NAD83 / Hawaii zone 1 (m),
1518,Coordinate Reference System,26962,7301,NAD83 / Hawaii zone 2 (m),
1519,Coordinate Reference System,26963,7301,NAD83 / Hawaii zone 3 (m),
1520,Coordinate Reference System,26964,7301,NAD83 / Hawaii zone 4 (m),
1521,Coordinate Reference System,26965,7301,NAD83 / Hawaii zone 5 (m),
1522,Coordinate Reference System,26969,7301,NAD83 / Idaho Central (m),
1523,Coordinate Reference System,26968,7301,NAD83 / Idaho East (m),
1524,Coordinate Reference System,26970,7301,NAD83 / Idaho West (m),
1525,Coordinate Reference System,26971,7301,NAD83 / Illinois East (m),
1526,Coordinate Reference System,26972,7301,NAD83 / Illinois West (m),
1527,Coordinate Reference System,26973,7301,NAD83 / Indiana East (m),
1528,Coordinate Reference System,26974,7301,NAD83 / Indiana West (m),
1529,Coordinate Reference System,26975,7301,NAD83 / Iowa North (m),
1530,Coordinate Reference System,26976,7301,NAD83 / Iowa South (m),
1531,Coordinate Reference System,26977,7301,NAD83 / Kansas North (m),
1532,Coordinate Reference System,26978,7301,NAD83 / Kansas South (m),
1533,Coordinate Reference System,2205,7301,NAD83 / Kentucky North (m),
1534,Coordinate Reference System,26980,7301,NAD83 / Kentucky South (m),
1535,Coordinate Reference System,26981,7301,NAD83 / Louisiana North (m),
1536,Coordinate Reference System,26982,7301,NAD83 / Louisiana South (m),
1537,Coordinate Reference System,26983,7301,NAD83 / Maine East (m),
1538,Coordinate Reference System,26984,7301,NAD83 / Maine West (m),
1539,Coordinate Reference System,26985,7301,NAD83 / Maryland (m),
1540,Coordinate Reference System,26987,7301,NAD83 / Massachusetts Island (m),
1541,Coordinate Reference System,26986,7301,NAD83 / Massachusetts Mainland (m),
1542,Coordinate Reference System,26989,7301,NAD83 / Michigan Central (m),
1543,Coordinate Reference System,26988,7301,NAD83 / Michigan North (m),
1544,Coordinate Reference System,26990,7301,NAD83 / Michigan South (m),
1545,Coordinate Reference System,26992,7301,NAD83 / Minnesota Central (m),
1546,Coordinate Reference System,26991,7301,NAD83 / Minnesota North (m),
1547,Coordinate Reference System,26993,7301,NAD83 / Minnesota South (m),
1548,Coordinate Reference System,26994,7301,NAD83 / Mississippi East (m),
1549,Coordinate Reference System,26995,7301,NAD83 / Mississippi West (m),
1550,Coordinate Reference System,26997,7301,NAD83 / Missouri Central (m),
1551,Coordinate Reference System,26996,7301,NAD83 / Missouri East (m),
1552,Coordinate Reference System,26998,7301,NAD83 / Missouri West (m),
1553,Coordinate Reference System,32100,7301,NAD83 / Montana (m),
1554,Coordinate Reference System,32104,7301,NAD83 / Nebraska (m),
1555,Coordinate Reference System,32108,7301,NAD83 / Nevada Central (m),
1556,Coordinate Reference System,32107,7301,NAD83 / Nevada East (m),
1557,Coordinate Reference System,32109,7301,NAD83 / Nevada West (m),
1558,Coordinate Reference System,32110,7301,NAD83 / New Hampshire (m),
1559,Coordinate Reference System,32111,7301,NAD83 / New Jersey (m),
1560,Coordinate Reference System,32112,7301,NAD83 / New Mexico East (m),
1561,Coordinate Reference System,32114,7301,NAD83 / New Mexico West (m),
1562,Coordinate Reference System,32116,7301,NAD83 / New York Central (m),
1563,Coordinate Reference System,32115,7301,NAD83 / New York East (m),
1564,Coordinate Reference System,32118,7301,NAD83 / New York Long Island (m),
1565,Coordinate Reference System,32117,7301,NAD83 / New York West (m),
1566,Coordinate Reference System,32119,7301,NAD83 / North Carolina (m),
1567,Coordinate Reference System,32120,7301,NAD83 / North Dakota North (m),
1568,Coordinate Reference System,32121,7301,NAD83 / North Dakota South (m),
1569,Coordinate Reference System,32122,7301,NAD83 / Ohio North (m),
1570,Coordinate Reference System,32123,7301,NAD83 / Ohio South (m),
1571,Coordinate Reference System,32124,7301,NAD83 / Oklahoma North (m),
1572,Coordinate Reference System,32125,7301,NAD83 / Oklahoma South (m),
1573,Coordinate Reference System,32126,7301,NAD83 / Oregon North (m),
1574,Coordinate Reference System,32127,7301,NAD83 / Oregon South (m),
1575,Coordinate Reference System,32128,7301,NAD83 / Pennsylvania North (m),
1576,Coordinate Reference System,32129,7301,NAD83 / Pennsylvania South (m),
1577,Coordinate Reference System,32130,7301,NAD83 / Rhode Island (m),
1578,Coordinate Reference System,32133,7301,NAD83 / South Carolina (m),
1579,Coordinate Reference System,32134,7301,NAD83 / South Dakota North (m),
1580,Coordinate Reference System,32135,7301,NAD83 / South Dakota South (m),
1581,Coordinate Reference System,32136,7301,NAD83 / Tennessee (m),
1582,Coordinate Reference System,32139,7301,NAD83 / Texas Central (m),
1583,Coordinate Reference System,32137,7301,NAD83 / Texas North (m),
1584,Coordinate Reference System,32138,7301,NAD83 / Texas North Central (m),
1585,Coordinate Reference System,32141,7301,NAD83 / Texas South (m),
1586,Coordinate Reference System,32140,7301,NAD83 / Texas South Central (m),
1587,Coordinate Reference System,32143,7301,NAD83 / Utah Central (m),
1588,Coordinate Reference System,32142,7301,NAD83 / Utah North (m),
1589,Coordinate Reference System,32144,7301,NAD83 / Utah South (m),
1590,Coordinate Reference System,32145,7301,NAD83 / Vermont (m),
1591,Coordinate Reference System,32146,7301,NAD83 / Virginia North (m),
1592,Coordinate Reference System,32147,7301,NAD83 / Virginia South (m),
1593,Coordinate Reference System,32148,7301,NAD83 / Washington North (m),
1594,Coordinate Reference System,32149,7301,NAD83 / Washington South (m),
1595,Coordinate Reference System,32150,7301,NAD83 / West Virginia North (m),
1596,Coordinate Reference System,32151,7301,NAD83 / West Virginia South (m),
1597,Coordinate Reference System,32153,7301,NAD83 / Wisconsin Central (m),
1598,Coordinate Reference System,32152,7301,NAD83 / Wisconsin North (m),
1599,Coordinate Reference System,32154,7301,NAD83 / Wisconsin South (m),
1600,Coordinate Reference System,32155,7301,NAD83 / Wyoming East (m),
1601,Coordinate Reference System,32156,7301,NAD83 / Wyoming East Central (m),
1602,Coordinate Reference System,32158,7301,NAD83 / Wyoming West (m),
1603,Coordinate Reference System,32157,7301,NAD83 / Wyoming West Central (m),
1604,Coordinate Reference System,32161,7301,NAD83 / Puerto Rico & Virgin Is. (m),
1605,Coordinate_Operation,10131,7301,Alabama CS83 East zone,
1606,Coordinate_Operation,10132,7301,Alabama CS83 West zone,
1607,Coordinate_Operation,10231,7301,Arizona CS83 East zone,
1608,Coordinate_Operation,10232,7301,Arizona CS83 Central zone,
1609,Coordinate_Operation,10233,7301,Arizona CS83 West zone,
1610,Coordinate_Operation,10331,7301,Arkansas CS83 North zone,
1611,Coordinate_Operation,10332,7301,Arkansas CS83 South zone,
1612,Coordinate_Operation,10431,7301,California CS83 zone 1,
1613,Coordinate_Operation,10432,7301,California CS83 zone 2,
1614,Coordinate_Operation,10433,7301,California CS83 zone 3,
1615,Coordinate_Operation,10434,7301,California CS83 zone 4,
1616,Coordinate_Operation,10435,7301,California CS83 zone 5,
1617,Coordinate_Operation,10436,7301,California CS83 zone 6,
1618,Coordinate_Operation,10531,7301,Colorado CS83 North zone,
1619,Coordinate_Operation,10532,7301,Colorado CS83 Central zone,
1620,Coordinate_Operation,10533,7301,Colorado CS83 South zone,
1621,Coordinate_Operation,10630,7301,Connecticut CS83,
1622,Coordinate_Operation,10730,7301,Delaware CS83,
1623,Coordinate_Operation,10931,7301,Florida CS83 East zone,
1624,Coordinate_Operation,10932,7301,Florida CS83 West zone,
1625,Coordinate_Operation,10933,7301,Florida CS83 North zone,
1626,Coordinate_Operation,11031,7301,Georgia CS83 East zone,
1627,Coordinate_Operation,11032,7301,Georgia CS83 West zone,
1628,Coordinate_Operation,11131,7301,Idaho CS83 East zone,
1629,Coordinate_Operation,11132,7301,Idaho CS83 Central zone,
1630,Coordinate_Operation,11133,7301,Idaho CS83 West zone,
1631,Coordinate_Operation,11231,7301,Illinois CS83 East zone,
1632,Coordinate_Operation,11232,7301,Illinois CS83 West zone,
1633,Coordinate_Operation,11331,7301,Indiana CS83 East zone,
1634,Coordinate_Operation,11332,7301,Indiana CS83 West zone,
1635,Coordinate_Operation,11431,7301,Iowa CS83 North zone,
1636,Coordinate_Operation,11432,7301,Iowa CS83 South zone,
1637,Coordinate_Operation,11531,7301,Kansas CS83 North zone,
1638,Coordinate_Operation,11532,7301,Kansas CS83 South zone,
1640,Coordinate_Operation,11632,7301,Kentucky CS83 South zone,
1641,Coordinate_Operation,11731,7301,Louisiana CS83 North zone,
1642,Coordinate_Operation,11732,7301,Louisiana CS83 South zone,
1643,Coordinate_Operation,11831,7301,Maine CS83 East zone,
1644,Coordinate_Operation,11832,7301,Maine CS83 West zone,
1645,Coordinate_Operation,11930,7301,Maryland CS83,
1646,Coordinate_Operation,12031,7301,Massachusetts CS83 Mainland zone,
1647,Coordinate_Operation,12032,7301,Massachusetts CS83 Island zone,
1648,Coordinate_Operation,12141,7301,Michigan CS83 North zone,
1649,Coordinate_Operation,12142,7301,Michigan CS83 Central zone,
1650,Coordinate_Operation,12143,7301,Michigan CS83 South zone,
1651,Coordinate_Operation,12231,7301,Minnesota CS83 North zone,
1652,Coordinate_Operation,12232,7301,Minnesota CS83 Central zone,
1653,Coordinate_Operation,12233,7301,Minnesota CS83 South zone,
1654,Coordinate_Operation,12331,7301,Mississippi CS83 East zone,
1655,Coordinate_Operation,12332,7301,Mississippi CS83 West zone,
1656,Coordinate_Operation,12431,7301,Missouri CS83 East zone,
1657,Coordinate_Operation,12433,7301,Missouri CS83 West zone,
1658,Coordinate_Operation,12530,7301,Montana CS83,
1659,Coordinate_Operation,12630,7301,Nebraska CS83,
1660,Coordinate_Operation,12731,7301,Nevada CS83 East zone,
1661,Coordinate_Operation,12732,7301,Nevada CS83 Central zone,
1662,Coordinate_Operation,12733,7301,Nevada CS83 West zone,
1663,Coordinate_Operation,12830,7301,New Hampshire CS83,
1664,Coordinate_Operation,12930,7301,New Jersey CS83,
1665,Coordinate_Operation,13031,7301,New Mexico CS83 East zone,
1666,Coordinate_Operation,13032,7301,New Mexico CS83 Central zone,
1667,Coordinate_Operation,13033,7301,New Mexico CS83 West zone,
1668,Coordinate_Operation,13131,7301,New York CS83 East zone,
1669,Coordinate_Operation,13132,7301,New York CS83 Central zone,
1670,Coordinate_Operation,13133,7301,New York CS83 West zone,
1671,Coordinate_Operation,13134,7301,New York CS83 Long Island zone,
1672,Coordinate_Operation,13230,7301,North Carolina CS83,
1673,Coordinate_Operation,13331,7301,North Dakota CS83 North zone,
1674,Coordinate_Operation,13332,7301,North Dakota CS83 South zone,
1675,Coordinate_Operation,13431,7301,Ohio CS83 North zone,
1676,Coordinate_Operation,13432,7301,Ohio CS83 South zone,
1677,Coordinate_Operation,13531,7301,Oklahoma CS83 North zone,
1678,Coordinate_Operation,13532,7301,Oklahoma CS83 South zone,
1679,Coordinate_Operation,13631,7301,Oregon CS83 North zone,
1680,Coordinate_Operation,13632,7301,Oregon CS83 South zone,
1681,Coordinate_Operation,13731,7301,Pennsylvania CS83 North zone,
1682,Coordinate_Operation,13732,7301,Pennsylvania CS83 South zone,
1683,Coordinate_Operation,13830,7301,Rhode Island CS83,
1684,Coordinate_Operation,13930,7301,South Carolina CS83,
1685,Coordinate_Operation,14031,7301,South Dakota CS83 North zone,
1686,Coordinate_Operation,14032,7301,South Dakota CS83 South zone,
1687,Coordinate_Operation,14130,7301,Tennessee CS83,
1688,Coordinate_Operation,14231,7301,Texas CS83 North zone,
1689,Coordinate_Operation,14232,7301,Texas CS83 North Central zone,
1690,Coordinate_Operation,14233,7301,Texas CS83 Central zone,
1691,Coordinate_Operation,14234,7301,Texas CS83 South Central zone,
1692,Coordinate_Operation,14235,7301,Texas CS83 South zone,
1693,Coordinate_Operation,14331,7301,Utah CS83 North zone,
1694,Coordinate_Operation,14332,7301,Utah CS83 Central zone,
1695,Coordinate_Operation,14333,7301,Utah CS83 South zone,
1696,Coordinate_Operation,14430,7301,Vermont CS83,
1697,Coordinate_Operation,14531,7301,Virginia CS83 North zone,
1698,Coordinate_Operation,14532,7301,Virginia CS83 South zone,
1699,Coordinate_Operation,14631,7301,Washington CS83 North zone,
1700,Coordinate_Operation,14632,7301,Washington CS83 South zone,
1701,Coordinate_Operation,14731,7301,West Virginia CS83 North zone,
1702,Coordinate_Operation,14732,7301,West Virginia CS83 South zone,
1703,Coordinate_Operation,14831,7301,Wisconsin CS83 North zone,
1704,Coordinate_Operation,14832,7301,Wisconsin CS83 Central zone,
1705,Coordinate_Operation,14833,7301,Wisconsin CS83 South zone,
1706,Coordinate_Operation,14931,7301,Wyoming CS83 East zone,
1707,Coordinate_Operation,14932,7301,Wyoming CS83 East Central zone,
1708,Coordinate_Operation,14933,7301,Wyoming CS83 West Central zone,
1709,Coordinate_Operation,14934,7301,Wyoming CS83 West zone,
1710,Coordinate_Operation,15031,7301,Alaska CS83 zone 1,
1711,Coordinate_Operation,15032,7301,Alaska CS83 zone 2,
1712,Coordinate_Operation,15033,7301,Alaska CS83 zone 3,
1713,Coordinate_Operation,15034,7301,Alaska CS83 zone 4,
1714,Coordinate_Operation,15035,7301,Alaska CS83 zone 5,
1715,Coordinate_Operation,15036,7301,Alaska CS83 zone 6,
1716,Coordinate_Operation,15037,7301,Alaska CS83 zone 7,
1717,Coordinate_Operation,15038,7301,Alaska CS83 zone 8,
1718,Coordinate_Operation,15039,7301,Alaska CS83 zone 9,
1719,Coordinate_Operation,15040,7301,Alaska CS83 zone 10,
1720,Coordinate_Operation,15131,7301,Hawaii CS83 zone 1,
1721,Coordinate_Operation,15132,7301,Hawaii CS83 zone 2,
1722,Coordinate_Operation,15133,7301,Hawaii CS83 zone 3,
1723,Coordinate_Operation,15134,7301,Hawaii CS83 zone 4,
1724,Coordinate_Operation,15135,7301,Hawaii CS83 zone 5,
1725,Coordinate_Operation,15230,7301,Puerto Rico & Virgin Islands CS83,
1726,Coordinate_Operation,15303,7301,Kentucky CS83 North zone,
1727,Coordinate_Operation,12432,7301,Missouri CS83 Central zone,
1728,Coordinate_Operation,15303,7302,Kentucky North,
1729,Coordinate_Operation,10532,7302,Colorado Central,
1730,Coordinate Reference System,4282,7301,Congo 1960 Pointe Noire,
1731,Coordinate Reference System,28232,7301,Congo 1960 Pointe Noire / UTM zone 32S,
1732,Coordinate_Operation,1801,7301,Congo 1960 Pointe Noire to WGS 84 (2),
1733,Coordinate_Operation,1802,7301,Congo 1960 Pointe Noire to WGS 84 (3),
1734,Coordinate_Operation,1200,7301,Congo 1960 Pointe Noire to WGS 84 (1),
1735,Coordinate_Operation,15914,7301,BLM zone 14N in feet,
1736,Coordinate_Operation,15915,7301,BLM zone 15N in feet,
1737,Coordinate_Operation,15916,7301,BLM zone 16N in feet,
1738,Coordinate_Operation,15917,7301,BLM zone 17N in feet,
1739,Coordinate Reference System,21149,7301,Genuk / UTM zone 49S,
1740,Coordinate Reference System,2308,7301,Genuk / TM 109 SE,
1741,Datum,5133,7302,AIOC95,
1742,Coordinate Reference System,5705,7301,Kronshstadt,
1743,Datum,6199,7301,New Egyptian,Old Egyptian is an alias for Egypt 1907 (code 6229).
1744,Datum,6229,7301,Old Egyptian,New Egyptian is an alias for Egypt 1930 (code 6199).
1745,Coordinate Reference System,4199,7301,New Egyptian,Old Egyptian is an alias for Egypt 1907 (code 4229).
1746,Coordinate Reference System,4229,7301,Old Egyptian,New Egyptian is an alias for Egypt 1930 (code 4199).
1747,Coordinate_Operation,1516,7301,PSAD56 to WGS 84,
1748,Coordinate_Operation,1813,7301,Genuk to WGS 84 (ONWJ),
1749,Coordinate Reference System,32064,7301,NAD27 / UTM zone 14N (ftUS),Non-metric equivalent of NAD27 / UTM zone 14N (code 26714). UTM is a metric system so strictly this is not UTM.
1750,Coordinate Reference System,32065,7301,NAD27 / UTM zone 15N (ftUS),Non-metric equivalent of NAD27 / UTM zone 15N (code 26715). UTM is a metric system so strictly this is not UTM.
1751,Coordinate Reference System,32066,7301,NAD27 / UTM zone 16N (ftUS),Non-metric equivalent of NAD27 / UTM zone 16N (code 26716). UTM is a metric system so strictly this is not UTM.
1752,Coordinate Reference System,32067,7301,NAD27 / UTM zone 17N (ftUS),Non-metric equivalent of NAD27 / UTM zone 17N (code 26717). UTM is a metric system so strictly this is not UTM.
1754,Coordinate Reference System,2319,7301,ED50 / 3-degree Gauss-Kruger CM 27E,
1755,Coordinate Reference System,2320,7301,ED50 / 3-degree Gauss-Kruger CM 30E,
1756,Coordinate Reference System,2321,7301,ED50 / 3-degree Gauss-Kruger CM 33E,
1757,Coordinate Reference System,2322,7301,ED50 / 3-degree Gauss-Kruger CM 36E,
1758,Coordinate Reference System,2323,7301,ED50 / 3-degree Gauss-Kruger CM 39E,
1759,Coordinate Reference System,2324,7301,ED50 / 3-degree Gauss-Kruger CM 42E,
1760,Coordinate Reference System,2325,7301,ED50 / 3-degree Gauss-Kruger CM 45E,
1761,Datum,6612,7302,JGD2000,
1762,Datum,5137,7301,Huang Hai 1985,
1763,Datum,5135,7302,HKPD,
1765,Coordinate Reference System,5736,7301,Huang Hai 1956,
1766,Coordinate Reference System,5738,7302,HKPD,
1767,Coordinate Reference System,2343,7301,Xian 1980 / 6-degree Gauss-Kruger CM 105E,
1768,Coordinate Reference System,2344,7301,Xian 1980 / 6-degree Gauss-Kruger CM 111E,
1769,Coordinate Reference System,2338,7301,Xian 1980 / 6-degree Gauss-Kruger CM 75E,
1770,Coordinate Reference System,2342,7301,Xian 1980 / 6-degree Gauss-Kruger CM 99E,
1771,Coordinate Reference System,2348,7301,Xian 1980 / 6-degree Gauss-Kruger CM 135E,
1772,Coordinate Reference System,2339,7301,Xian 1980 / 6-degree Gauss-Kruger CM 81E,
1773,Coordinate Reference System,2340,7301,Xian 1980 / 6-degree Gauss-Kruger CM 87E,
1774,Coordinate Reference System,2341,7301,Xian 1980 / 6-degree Gauss-Kruger CM 93E,
1775,Coordinate Reference System,2345,7301,Xian 1980 / 6-degree Gauss-Kruger CM 117E,
1776,Coordinate Reference System,2346,7301,Xian 1980 / 6-degree Gauss-Kruger CM 123E,
1777,Coordinate Reference System,2347,7301,Xian 1980 / 6-degree Gauss-Kruger CM 129E,
1778,Datum,6611,7302,HK80,
1779,Datum,5135,7301,Ordnance Datum,This is the former name.
1780,Datum,5136,7301,Admiralty Datum,This is the former name.
1781,Coordinate Reference System,5737,7301,Huang Hai 1985,
1782,Coordinate Reference System,2326,7302,HK 1980 Grid System,
1783,Coordinate Reference System,4611,7302,HK1980,
1784,Coordinate_Operation Parameter,8802,7301,Central Meridian,"Abbeviated as ""CM""."
1785,Coordinate_Operation Parameter,8802,7302,CM,"Abbreviation for ""Central Meridian""."
1786,Coordinate Reference System,2327,7301,Xian 1980 / 6-degree Gauss-Kruger zone 13,Part of the China National Coordinate System of 1980.
1787,Coordinate Reference System,2328,7301,Xian 1980 / 6-degree Gauss-Kruger zone 14,Part of the China National Coordinate System of 1980.
1788,Coordinate Reference System,2329,7301,Xian 1980 / 6-degree Gauss-Kruger zone 15,Part of the China National Coordinate System of 1980.
1789,Coordinate Reference System,2330,7301,Xian 1980 / 6-degree Gauss-Kruger zone 16,Part of the China National Coordinate System of 1980.
1790,Coordinate Reference System,2331,7301,Xian 1980 / 6-degree Gauss-Kruger zone 17,Part of the China National Coordinate System of 1980.
1791,Coordinate Reference System,2332,7301,Xian 1980 / 6-degree Gauss-Kruger zone 18,Part of the China National Coordinate System of 1980.
1792,Coordinate Reference System,2333,7301,Xian 1980 / 6-degree Gauss-Kruger zone 19,Part of the China National Coordinate System of 1980.
1793,Coordinate Reference System,2334,7301,Xian 1980 / 6-degree Gauss-Kruger zone 20,Part of the China National Coordinate System of 1980.
1794,Coordinate Reference System,2335,7301,Xian 1980 / 6-degree Gauss-Kruger zone 21,Part of the China National Coordinate System of 1980.
1795,Coordinate Reference System,2336,7301,Xian 1980 / 6-degree Gauss-Kruger zone 22,Part of the China National Coordinate System of 1980.
1796,Coordinate Reference System,2333,7301,Xian 1980 / 6-degree Gauss-Kruger zone 23,Part of the China National Coordinate System of 1980.
1797,Coordinate Reference System,21413,7301,Beijing 1954 / 6-degree Gauss-Kruger zone 13,
1798,Coordinate Reference System,21414,7301,Beijing 1954 / 6-degree Gauss-Kruger zone 14,
1799,Coordinate Reference System,21415,7301,Beijing 1954 / 6-degree Gauss-Kruger zone 15,
1800,Coordinate Reference System,21416,7301,Beijing 1954 / 6-degree Gauss-Kruger zone 16,
1801,Coordinate Reference System,21417,7301,Beijing 1954 / 6-degree Gauss-Kruger zone 17,
1802,Coordinate Reference System,21418,7301,Beijing 1954 / 6-degree Gauss-Kruger zone 18,
1803,Coordinate Reference System,21419,7301,Beijing 1954 / 6-degree Gauss-Kruger zone 19,
1804,Coordinate Reference System,21420,7301,Beijing 1954 / 6-degree Gauss-Kruger zone 20,
1805,Coordinate Reference System,21421,7301,Beijing 1954 / 6-degree Gauss-Kruger zone 21,
1806,Coordinate Reference System,21422,7301,Beijing 1954 / 6-degree Gauss-Kruger zone 22,
1807,Coordinate Reference System,21423,7301,Beijing 1954 / 6-degree Gauss-Kruger zone 23,
1808,Coordinate Reference System,21453,7301,Beijing 1954 / 6-degree Gauss-Kruger CM 75E,
1809,Coordinate Reference System,21454,7301,Beijing 1954 / 6-degree Gauss-Kruger CM 81E,
1810,Coordinate Reference System,21455,7301,Beijing 1954 / 6-degree Gauss-Kruger CM 87E,
1811,Coordinate Reference System,21456,7301,Beijing 1954 / 6-degree Gauss-Kruger CM 93E,
1812,Coordinate Reference System,21457,7301,Beijing 1954 / 6-degree Gauss-Kruger CM 99E,
1813,Coordinate Reference System,21458,7301,Beijing 1954 / 6-degree Gauss-Kruger CM 105E,
1814,Coordinate Reference System,21459,7301,Beijing 1954 / 6-degree Gauss-Kruger CM 111E,
1815,Coordinate Reference System,21460,7301,Beijing 1954 / 6-degree Gauss-Kruger CM 117E,
1816,Coordinate Reference System,21461,7301,Beijing 1954 / 6-degree Gauss-Kruger CM 123E,
1817,Coordinate Reference System,21462,7301,Beijing 1954 / 6-degree Gauss-Kruger CM 129E,
1818,Coordinate Reference System,21463,7301,Beijing 1954 / 6-degree Gauss-Kruger CM 135E,
1819,Coordinate_Operation,5405,7302,HKPD to Hong Kong Chart,
1820,Coordinate Reference System,2044,7301,Hanoi 1972 / 6-degree Gauss-Kruger zone 18,
1821,Coordinate Reference System,2045,7301,Hanoi 1972 / 6-degree Gauss-Kruger zone 18,
1822,Coordinate Reference System,2462,7301,Albanian 1987 / 6-degree Gauss-Kruger zone 4,
1823,Coordinate Reference System,2397,7301,Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 3,
1824,Coordinate Reference System,2398,7301,Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 4,
1825,Coordinate Reference System,2399,7301,Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 3,
1826,Coordinate Reference System,2395,7302,S Yemen / Gauss zone 8,
1827,Coordinate Reference System,2396,7302,S Yemen / Gauss zone 9,
1828,Coordinate Reference System,2396,7301,South Yemen / 6-degree Gauss-Kruger zone 9,
1829,Coordinate Reference System,2395,7301,South Yemen / 6-degree Gauss-Kruger zone 8,
1830,Coordinate_Operation,18031,7301,Gauss-Kruger zone 1,
1831,Coordinate_Operation,18032,7301,Gauss-Kruger zone 2,
1832,Coordinate_Operation,18033,7301,Gauss-Kruger zone 3,
1833,Coordinate_Operation,18034,7301,Gauss-Kruger zone 4,
1834,Coordinate_Operation,18035,7301,Gauss-Kruger zone 5,
1835,Coordinate_Operation,18036,7301,Gauss-Kruger zone 6,
1836,Coordinate_Operation,18037,7301,Gauss-Kruger zone 7,
1837,Coordinate Reference System,22191,7301,Campo Inchauspe / Gauss-Kruger zone 1,
1838,Coordinate Reference System,22192,7301,Campo Inchauspe / Gauss-Kruger zone 2,
1839,Coordinate Reference System,22193,7301,Campo Inchauspe / Gauss-Kruger zone 3,
1840,Coordinate Reference System,22194,7301,Campo Inchauspe / Gauss-Kruger zone 4,
1841,Coordinate Reference System,22195,7301,Campo Inchauspe / Gauss-Kruger zone 5,
1842,Coordinate Reference System,22196,7301,Campo Inchauspe / Gauss-Kruger zone 6,
1843,Coordinate Reference System,22197,7301,Campo Inchauspe / Gauss-Kruger zone 7,
1844,Coordinate Reference System,2081,7301,Chos Malal 1914 / Gauss-Kruger zone 2,
1845,Coordinate Reference System,2082,7301,Pampa del Castillo / Gauss-Kruger zone 2,
1846,Coordinate Reference System,2083,7301,Hito XVIII 1963 / Gauss-Kruger zone 2,
1847,Coordinate Reference System,20004,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 4,
1848,Coordinate Reference System,20005,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 5,
1849,Coordinate Reference System,20006,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 6,
1850,Coordinate Reference System,20007,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 7,
1851,Coordinate Reference System,20008,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 8,
1852,Coordinate Reference System,20009,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 9,
1853,Coordinate Reference System,20010,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 10,
1854,Coordinate Reference System,20011,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 11,
1855,Coordinate Reference System,20012,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 12,
1856,Coordinate Reference System,20013,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 13,
1857,Coordinate Reference System,20014,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 14,
1858,Coordinate Reference System,20015,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 15,
1859,Coordinate Reference System,20016,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 16,
1860,Coordinate Reference System,20017,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 17,
1861,Coordinate Reference System,20018,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 18,
1862,Coordinate Reference System,20019,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 19,
1863,Coordinate Reference System,20020,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 20,
1864,Coordinate Reference System,20021,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 21,
1865,Coordinate Reference System,20022,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 22,
1866,Coordinate Reference System,20023,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 23,
1867,Coordinate Reference System,20024,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 24,
1868,Coordinate Reference System,20025,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 25,
1869,Coordinate Reference System,20026,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 26,
1870,Coordinate Reference System,20027,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 27,
1871,Coordinate Reference System,20028,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 28,
1872,Coordinate Reference System,20029,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 29,
1873,Coordinate Reference System,20030,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 30,
1874,Coordinate Reference System,20031,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 31,
1875,Coordinate Reference System,20032,7301,Pulkovo 1995 / 6-degree Gauss-Kruger zone 32,
1876,Coordinate Reference System,28402,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 2,
1877,Coordinate Reference System,28403,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 3,
1878,Coordinate Reference System,28404,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 4,
1879,Coordinate Reference System,28405,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 5,
1880,Coordinate Reference System,28406,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 6,
1881,Coordinate Reference System,28407,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 7,
1882,Coordinate Reference System,28408,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 8,
1883,Coordinate Reference System,28409,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 9,
1884,Coordinate Reference System,28410,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 10,
1885,Coordinate Reference System,28411,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 11,
1886,Coordinate Reference System,28412,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 12,
1887,Coordinate Reference System,28413,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 13,
1888,Coordinate Reference System,28414,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 14,
1889,Coordinate Reference System,28415,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 15,
1890,Coordinate Reference System,28416,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 16,
1891,Coordinate Reference System,28417,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 17,
1892,Coordinate Reference System,28418,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 18,
1893,Coordinate Reference System,28419,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 19,
1894,Coordinate Reference System,28420,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 20,
1895,Coordinate Reference System,28421,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 21,
1896,Coordinate Reference System,28422,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 22,
1897,Coordinate Reference System,28423,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 23,
1898,Coordinate Reference System,28424,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 24,
1899,Coordinate Reference System,28425,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 25,
1900,Coordinate Reference System,28426,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 26,
1901,Coordinate Reference System,28427,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 27,
1902,Coordinate Reference System,28428,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 28,
1903,Coordinate Reference System,28429,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 29,
1904,Coordinate Reference System,28430,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 30,
1905,Coordinate Reference System,28431,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 31,
1906,Coordinate Reference System,28432,7301,Pulkovo 1942 / 6-degree Gauss-Kruger zone 32,
1907,Coordinate Reference System,2463,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 21E,
1908,Coordinate Reference System,2464,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 27E,
1909,Coordinate Reference System,2465,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 33E,
1910,Coordinate Reference System,2466,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 39E,
1911,Coordinate Reference System,2467,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 45E,
1912,Coordinate Reference System,2468,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 51E,
1913,Coordinate Reference System,2469,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 57E,
1914,Coordinate Reference System,2470,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 63E,
1915,Coordinate Reference System,2471,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 69E,
1916,Coordinate Reference System,2472,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 75E,
1917,Coordinate Reference System,2473,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 81E,
1918,Coordinate Reference System,2474,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 87E,
1919,Coordinate Reference System,2475,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 93E,
1920,Coordinate Reference System,2476,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 99E,
1921,Coordinate Reference System,2477,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 105E,
1922,Coordinate Reference System,2478,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 111E,
1923,Coordinate Reference System,2479,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 117E,
1924,Coordinate Reference System,2480,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 123E,
1925,Coordinate Reference System,2481,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 129E,
1926,Coordinate Reference System,2482,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 135E,
1927,Coordinate Reference System,2483,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 141E,
1928,Coordinate Reference System,2484,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 147E,
1929,Coordinate Reference System,2485,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 153E,
1930,Coordinate Reference System,2486,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 159E,
1931,Coordinate Reference System,2487,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 165E,
1932,Coordinate Reference System,2488,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 171E,
1933,Coordinate Reference System,2489,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 177E,
1934,Coordinate Reference System,2490,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 177W,
1935,Coordinate Reference System,2491,7301,Pulkovo 1995 / 6-degree Gauss-Kruger CM 171W,
1936,Coordinate Reference System,2492,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 9E,
1937,Coordinate Reference System,2493,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 15E,
1938,Coordinate Reference System,2494,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 21E,
1939,Coordinate Reference System,2495,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 27E,
1940,Coordinate Reference System,2496,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 33E,
1941,Coordinate Reference System,2497,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 39E,
1942,Coordinate Reference System,2498,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 45E,
1943,Coordinate Reference System,2499,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 51E,
1944,Coordinate Reference System,2500,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 57E,
1945,Coordinate Reference System,2501,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 63E,
1946,Coordinate Reference System,2502,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 69E,
1947,Coordinate Reference System,2503,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 75E,
1948,Coordinate Reference System,2504,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 81E,
1949,Coordinate Reference System,2505,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 87E,
1950,Coordinate Reference System,2506,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 93E,
1951,Coordinate Reference System,2507,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 99E,
1952,Coordinate Reference System,2508,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 105E,
1953,Coordinate Reference System,2509,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 111E,
1954,Coordinate Reference System,2510,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 117E,
1955,Coordinate Reference System,2511,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 123E,
1956,Coordinate Reference System,2512,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 129E,
1957,Coordinate Reference System,2513,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 135E,
1958,Coordinate Reference System,2514,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 141E,
1959,Coordinate Reference System,2515,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 147E,
1960,Coordinate Reference System,2516,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 153E,
1961,Coordinate Reference System,2517,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 159E,
1962,Coordinate Reference System,2518,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 165E,
1963,Coordinate Reference System,2519,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 171E,
1964,Coordinate Reference System,2520,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 177E,
1965,Coordinate Reference System,2521,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 177W,
1966,Coordinate Reference System,2522,7301,Pulkovo 1942 / 6-degree Gauss-Kruger CM 171W,
1967,Unit of Measure,9115,7302,DM,
1968,Unit of Measure,9115,7306,dega,
1969,Coordinate_Operation,1833,7311,ID74 to DGN-95 (3),DGN-95 is a synonym in Indonesia for WGS 84.
1970,Coordinate_Operation,1832,7311,ID74 to DGN-95 (2),DGN-95 is a synonym in Indonesia for WGS 84.
1971,Coordinate_Operation,1248,7311,ID74 to DGN-95 (1),DGN-95 is a synonym in Indonesia for WGS 84.
1972,Coordinate Reference System,2309,7311,DGN-95 / TM 116 SE,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1973,Coordinate Reference System,2310,7311,DGN-95 / TM 132 SE,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1974,Coordinate Reference System,32646,7311,DGN-95 / UTM zone 46N,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1975,Coordinate Reference System,32647,7311,DGN-95 / UTM zone 47N,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1976,Coordinate Reference System,32648,7311,DGN-95 / UTM zone 48N,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1977,Coordinate Reference System,32649,7311,DGN-95 / UTM zone 49N,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1978,Coordinate Reference System,32650,7311,DGN-95 / UTM zone 50N,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1979,Coordinate Reference System,32651,7311,DGN-95 / UTM zone 51N,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1980,Coordinate Reference System,32652,7311,DGN-95 / UTM zone 52N,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1981,Coordinate Reference System,32747,7311,DGN-95 / UTM zone 47S,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1982,Coordinate Reference System,32748,7311,DGN-95 / UTM zone 48S,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1983,Coordinate Reference System,32749,7311,DGN-95 / UTM zone 49S,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1984,Coordinate Reference System,32750,7311,DGN-95 / UTM zone 50S,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1985,Coordinate Reference System,32751,7311,DGN-95 / UTM zone 51S,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1986,Coordinate Reference System,32752,7311,DGN-95 / UTM zone 52S,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1987,Coordinate Reference System,32753,7311,DGN-95 / UTM zone 53S,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1988,Coordinate Reference System,32754,7311,DGN-95 / UTM zone 54S,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1990,Coordinate Reference System,4326,7311,DGN-95,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1991,Coordinate Reference System,4327,7311,DGN-95 (geographic 3D),Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1992,Coordinate Reference System,4328,7311,DGN-95 (geocentric),Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1993,Datum,6326,7311,DGN-95,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
1994,Coordinate_Operation,1814,7301,Genuk to WGS 84 (3),
1996,Datum,6820,7302,Segara (Jakarta),
1997,Datum,6613,7302,Segara,
1998,Datum,6613,7301,Samboja,Samboja-1 is one of two stations used as the baseline for extension to government triangulation by Total Indonesia in 1970-71.
1999,Datum,6613,7301,P2 Exc,P2 Exc is one of two stations used as the baseline for extension to government triangulation by Total Indonesia in 1970-71. P2 Exc is a replacement satellite station to the destroyed station P2.
2000,Datum,6613,7301,P2 Exc-T9,P2 Exc was a replacement satellite station to the destroyed station P2 from which several Toran stations including T9 were coordinated in 1970-71. When further control work was executed in 1995 P2 Exc was by then destroyed and T9 was used as its origin.
2001,Coordinate Reference System,4613,7301,Samboja,Oil industry extension in the Mahakam delta region. Also known as P2 Exc and P2 Exc-T9.
2002,Coordinate Reference System,4613,7301,P2 Exc-T9,Oil industry extension in the Mahakam delta region. Also known as P2 Exc and Samboja.
2003,Coordinate Reference System,4613,7301,P2 Exc,Oil industry extension in the Mahakam delta region. Also known as P2 Exc-T9 and Samboja.
2004,Coordinate_Operation,1838,7301,Samboja to WGS 84 (4),
2005,Coordinate_Operation,1838,7301,P2 Exc-T9 to WGS 84 (4),
2006,Datum,6614,7302,QND95,
2008,Coordinate Reference System,2933,7301,Samboja / UTM zone 50S,
2009,Coordinate Reference System,2933,7301,P2 Exc-T9 / UTM zone 50S,
2010,Unit of Measure,9110,7301,sexagesimal degree,
2011,Coordinate Reference System,2952,7301,NAD83(CSRS) / SCoPQ zone 10,
2012,Coordinate Reference System,2945,7301,NAD83(CSRS) / SCoPQ zone 3,
2013,Coordinate Reference System,2946,7301,NAD83(CSRS) / SCoPQ zone 4,
2014,Coordinate Reference System,2947,7301,NAD83(CSRS) / SCoPQ zone 5,
2015,Coordinate Reference System,2948,7301,NAD83(CSRS) / SCoPQ zone 6,
2016,Coordinate Reference System,2949,7301,NAD83(CSRS) / SCoPQ zone 7,
2017,Coordinate Reference System,2950,7301,NAD83(CSRS) / SCoPQ zone 8,
2018,Coordinate Reference System,2951,7301,NAD83(CSRS) / SCoPQ zone 9,
2019,Coordinate_Operation,18071,7301,Green Belt,
2020,Coordinate Reference System,22991,7301,Egypt 1907 / Green Belt,
2021,Coordinate_Operation Parameter,8806,7301,False westing,"This alias applies only in the case of projection methods which have an axis positive west, e.g. Transverse Mercator (South Orientated)."
2022,Coordinate_Operation Parameter,8807,7301,False southing,"This alias applies only in the case of projection methods which have an axis positive south, e.g. Transverse Mercator (South Orientated)."
2023,Ellipsoid,7050,7301,GRS 1967,
2024,Coordinate_Operation,18131,7301,Zone 1 Nord Maroc,
2025,Coordinate_Operation,18132,7301,Zone 2 Sud Maroc,
2026,Coordinate_Operation,18134,7301,Zone 3 Sahara Nord,
2027,Coordinate_Operation,18135,7301,Zone 4 Sahara Sud,
2028,Coordinate Reference System,26191,7301,Merchich / Zone 1 Nord Maroc,
2029,Coordinate Reference System,26192,7301,Merchich / Zone 2 Sud Maroc,
2030,Coordinate Reference System,26194,7301,Merchich / Zone 3 Sahara Nord,
2031,Coordinate Reference System,26195,7301,Merchich / Zone 4 Sahara Sud,
2032,Datum,6620,7301,12th Parallel traverse,
2033,Coordinate Reference System,4620,7301,12th Parallel traverse,
2034,Datum,5131,7302,Belfast,
2035,Datum,5101,7301,Newlyn,
2036,Coordinate Reference System,5732,7301,Belfast Lough,
2038,Coordinate_Operation,1887,7301,Observatario Flores to WGS 84 (1),
2040,Coordinate_Operation,1886,7301,Graciosa to WGS 84 (1),
2041,Coordinate_Operation,1885,7301,Sao Braz to WGS 84 (1),
2042,Coordinate_Operation,1890,7302,AAD98 to WGS 84 (1),
2043,Coordinate Reference System,31281,7312,Gebrauchsnetz M28,
2044,Coordinate Reference System,31282,7312,Gebrauchsnetz M31,
2045,Coordinate Reference System,31283,7312,Gebrauchsnetz M34,
2046,Coordinate Reference System,31288,7312,Bundesmeldenetz M28,
2047,Coordinate Reference System,31289,7312,Bundesmeldenetz M31,
2048,Coordinate Reference System,31290,7312,Bundesmeldenetz M34,
2049,Coordinate_Operation,5401,7301,Belfast Lough to Malin Head,
2051,Coordinate_Operation,1895,7301,RT90 to ETRS89 (2),Supersedes RT90 to ETRS89 (1) (code 1437).
2053,Coordinate_Operation,1901,7301,NAD83(CSRS) to WGS 84,
2054,Unit of Measure,104,7302,DMH,
2055,Unit of Measure,102,7302,Hdeg,
2056,Unit of Measure,102,7306,dega,
2057,Unit of Measure,101,7302,degH,
2058,Unit of Measure,101,7306,dega,
2059,Unit of Measure,104,7306,dega,
2060,Unit of Measure,105,7306,dega,
2061,Unit of Measure,105,7302,HDM,
2062,Unit of Measure,108,7302,HDMS,
2063,Unit of Measure,108,7306,dega,
2064,Unit of Measure,9121,7302,DDDMMSS.sss,
2065,Unit of Measure,9121,7306,dega,
2066,Unit of Measure,9120,7302,HDMS,
2067,Unit of Measure,9120,7306,dega,
2068,Unit of Measure,9119,7302,HDM,
2069,Unit of Measure,9119,7306,dega,
2070,Unit of Measure,9117,7302,Hdeg,
2071,Unit of Measure,9117,7306,dega,
2072,Unit of Measure,9118,7302,DMH,
2073,Unit of Measure,9118,7306,dega,
2074,Unit of Measure,9116,7302,degH,
2075,Unit of Measure,9116,7306,dega,
2076,Datum,6637,7302,Perroud 1950,
2077,Datum,6634,7301,MHNC72,
2078,Datum,6627,7302,RGR92,
2079,Datum,6624,7302,RGFG95,
2080,Datum,6623,7302,CSG67,
2082,Datum,6648,7302,ITRF89,
2083,Datum,6649,7302,ITRF90,
2084,Datum,6650,7302,ITRF91,
2085,Datum,6651,7302,ITRF92,
2086,Datum,6652,7302,ITRF93,
2087,Datum,6653,7302,ITRF94,
2088,Datum,6654,7302,ITRF96,
2089,Datum,6655,7302,ITRF97,
2090,Datum,6656,7302,ITRF2000,
2091,Datum,6623,7301,Guyane Francaise,
2093,Datum,5151,7302,NGNC,
2095,Coordinate Reference System,4346,7301,ETRF89 (geocentric),
2096,Coordinate Reference System,4346,7301,EUREF89 (geocentric),
2097,Datum,6638,7302,St Pierre et Miquelon 1950,
2098,Coordinate Reference System,4638,7302,St Pierre et Miquelon 1950,
2099,Coordinate Reference System,66386405,7302,St Pierre et Miquelon 1950 (deg),
2100,Coordinate_Operation,1923,7302,St Pierre et Miquelon 1950 to WGS 84 (1),
2101,Coordinate_Operation,19981,7302,Lambert NC,
2102,Coordinate Reference System,2984,7302,RGNC 1991 / Lambert NC,
2103,Coordinate_Operation,13633,7302,Oregon Lambert,
2104,Coordinate_Operation,15374,7302,Oregon Lambert (ft),
2106,Coordinate Reference System,2985,7302,Petrels 1972 / Terre Adelie Stereo,
2107,Coordinate Reference System,2986,7302,Perroud 1950 / Terre Adelie Stereo,
2108,Coordinate Reference System,4634,7301,MHNC72,
2109,Coordinate Reference System,66346405,7301,MHNC72 (deg),
2110,Coordinate Reference System,2982,7301,MHNC72 / UTM zone 58S,
2111,Coordinate_Operation,1909,7301,Fort Desaix to RRAF 1991 (1),
2112,Coordinate_Operation,1910,7301,Fort Desaix to RRAF 1991 (2),
2113,Coordinate_Operation,1903,7301,Fort Marigot to RRAF 1991 (1),
2114,Coordinate_Operation,1904,7301,Sainte Anne to RRAF 1991 (1),
2115,Coordinate_Operation,1905,7301,Sainte Anne to RRAF 1991 (2),
2116,Datum,6647,7302,ITRF88,
2117,Datum,6645,7302,RGNC91,
2118,Datum,6640,7302,RRAF91,
2119,Coordinate Reference System,61436405,7301,Côte D'Ivoire (deg),Same alias also applied to Locodjo 1965 (deg) (code 61426405).
2120,Coordinate Reference System,61436405,7301,Port Bouet (deg),Same alias also applied to Locodjo 1965 (deg) (code 61426405).
2121,Coordinate Reference System,61766413,7302,AAD98 (3D deg),
2122,Coordinate Reference System,4339,7302,AAD98 (3D),
2123,Coordinate Reference System,61766405,7302,AAD98 (deg),
2124,Coordinate Reference System,4340,7302,AAD98 (geocentric),
2125,Coordinate Reference System,61836405,7301,Graciosa (deg),The same name is also used for the 1995 adjustment (see CRS code 66656405).
2126,Coordinate Reference System,61826405,7301,Observatorio Flores (deg),
2127,Coordinate Reference System,61846405,7301,Sao Braz (deg),
2128,Coordinate Reference System,62116405,7301,Genuk (deg),
2129,Coordinate Reference System,68136405,7301,Genuk (Jakarta) (deg),
2130,Coordinate Reference System,62156405,7302,BD 50 (deg),
2131,Coordinate Reference System,68096405,7302,BD 50 (Brussels) (deg),
2132,Coordinate Reference System,63136405,7302,BD 72 (deg),
2133,Coordinate Reference System,62276405,7301,Levant (deg),
2134,Coordinate Reference System,63146405,7310,PD/83 (deg),Used for describing result of transformation from Pulkovo 1942(83) to DHDN for Thuringen.
2135,Coordinate Reference System,63146405,7310,RD/83 (deg),Used for describing result of transformation from Pulkovo 1942(83) to DHDN for Sachsen.
2136,Coordinate Reference System,62296405,7301,Old Egyptian (deg),New Egyptian (deg) is an alias for Egypt 1930 (deg) (code 61996405).
2137,Coordinate Reference System,61996405,7301,New Egyptian (deg),Old Egyptian (deg) is an alias for Egypt 1907 (deg) (code 62296405).
2138,Coordinate Reference System,62586413,7301,ETRF89 (3D deg),
2139,Coordinate Reference System,4345,7301,ETRF89 (3D),
2140,Coordinate Reference System,62586405,7301,ETRF89 (deg),
2141,Coordinate Reference System,62586413,7301,EUREF89 (3D deg),
2142,Coordinate Reference System,4345,7301,EUREF89 (3D),
2143,Coordinate Reference System,62586405,7301,EUREF89 (deg),
2144,Coordinate Reference System,61326405,7301,Final Datum 1958 (Iran) (deg),
2145,Coordinate Reference System,66116405,7302,HK1980 (deg),
2146,Coordinate Reference System,62076405,7301,Lisbon 1937 (deg),
2147,Coordinate Reference System,68036405,7301,Lisbon 1937 (Lisbon) (deg),
2148,Coordinate Reference System,4356,7302,LKS94 (geocentric),
2149,Coordinate Reference System,61266405,7302,LKS94 (deg),
2150,Coordinate Reference System,4126,7302,LKS94,This same alias is used for both geographical and projected CRSs.
2151,Coordinate Reference System,4355,7302,LKS94 (3D),
2152,Coordinate Reference System,61266413,7302,LKS94 (3D deg),
2153,Coordinate Reference System,61426405,7301,Côte D'Ivoire (deg),Same alias also applied to Abidjan 1987 (deg) (code 61436405).
2154,Coordinate Reference System,61426405,7301,Port Bouet (deg),Same alias also applied to Abidjan 1987 (deg) (code 61436405).
2155,Coordinate Reference System,61816405,7301,LUREF (deg),
2156,Coordinate Reference System,63126405,7309,D48 (deg),
2157,Coordinate Reference System,68056405,7309,D48 (Ferro) (deg),
2158,Coordinate Reference System,63126405,7308,HR1901 (deg),
2159,Coordinate Reference System,68056405,7308,HR1901 (Ferro) (deg),
2160,Coordinate Reference System,62686405,7302,NAD Michigan (deg),
2161,Coordinate Reference System,66096405,7302,CGQ77 (deg),
2162,Coordinate Reference System,62726405,7301,GD49 (deg),
2163,Coordinate Reference System,61346405,7302,PSD93 (deg),
2164,Coordinate Reference System,66206405,7301,12th Parallel traverse (deg),
2165,Coordinate Reference System,62826405,7301,Congo 1960 Pointe Noire (deg),
2166,Coordinate Reference System,61906413,7301,National Geodetic System [Argentina] (3D deg),see http://www.igm.gov.ar/posgar.html
2167,Coordinate Reference System,4365,7301,National Geodetic System [Argentina] (3D),see http://www.igm.gov.ar/posgar.html
2168,Coordinate Reference System,61906405,7301,National Geodetic System [Argentina] (deg),see http://www.igm.gov.ar/posgar.html
2169,Coordinate Reference System,4366,7301,National Geodetic System [Argentina] (geocentric),see http://www.igm.gov.ar/posgar.html
2170,Coordinate Reference System,61786405,7301,42/83 (deg),
2171,Coordinate Reference System,66136405,7301,P2 Exc (deg),Oil industry extension in the Mahakam delta region. Also known as P2 Exc-T9 and Samboja.
2172,Coordinate Reference System,66136405,7301,P2 Exc-T9 (deg),Oil industry extension in the Mahakam delta region. Also known as P2 Exc and Samboja.
2173,Coordinate Reference System,66136405,7301,Samboja (deg),Oil industry extension in the Mahakam delta region. Also known as P2 Exc and P2 Exc-T9.
2174,Coordinate Reference System,4820,7301,Samboja (Jakarta),
2175,Coordinate Reference System,68206405,7301,Samboja (Jakarta) (deg),
2176,Coordinate Reference System,63006405,7301,1975 Mapping Adjustment (deg),
2177,Coordinate Reference System,63266405,7311,DGN-95 (deg),Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
2178,Coordinate_Operation,1274,7302,Pulkovo 1942 to LKS94,
2179,Area,2832,7302,BC,
2180,Coordinate_Operation,19984,7302,BC Albers,
2181,Coordinate_Operation,17311,7301,7.5 gon V 0:-15,
2182,Coordinate_Operation,17312,7301,5 gon V 0:-15,
2183,Coordinate_Operation,17313,7301,0 gon 0:-15,
2184,Coordinate_Operation,17314,7301,2.5 gon O 0:-15,
2185,Coordinate_Operation,17315,7301,5 gon O 0:-15,
2186,Coordinate_Operation,19929,7301,2.5 gon V 0:-15,
2187,Coordinate_Operation,19929,7301,Swedish National Projection,
2188,Coordinate Reference System,3019,7301,RT90 7.5 gon V 0:-15,
2190,Coordinate Reference System,3020,7301,RT90 5 gon V 0:-15,
2191,Coordinate Reference System,3021,7301,RT90 2.5 gon V 0:-15,
2192,Coordinate Reference System,3022,7301,RT90 0 gon 0:-15,
2193,Coordinate Reference System,3023,7301,RT90 2.5 gon O 0:-15,
2194,Coordinate Reference System,3024,7301,RT90 5 gon O 0:-15,
2195,Datum,6659,7302,ISN93,
2196,Coordinate_Operation,19985,7301,ETRS-LCC,
2197,Coordinate_Operation,19986,7301,ETRS-LAEA,
2199,Datum,6300,7302,TM75,
2200,Datum,6300,7301,1975 Mapping Adjustment,
2201,Coordinate_Operation,1953,7307,IE_Ireland65 to ETRS89,IE_Ireland65 to ETRS89 applies to the Republic of Ireland. Also referred to in EuroGeographics as NI_Ireland65 to ETRS89 for Northern Ireland.
2202,Unit of Measure,9095,7302,ftBr(36),
2203,Unit of Measure,9095,7306,ftBr(36),
2204,Unit of Measure,9095,7301,foot,
2205,Datum,5153,7302,NGG1977,
2206,Datum,5154,7301,Martinique 1987,
2207,Datum,5155,7301,Guadeloupe 1988,
2208,Datum,5159,7301,IGN89,
2209,Datum,5156,7301,Reunion 1989,
2210,Datum,5156,7302,IGN89,
2211,Datum,5155,7302,IGN88,
2212,Datum,5154,7302,IGN87,
2214,Datum,6661,7302,LKS92,
2215,Datum,6615,7301,Madeira SE Base,
2216,Datum,6665,7301,Graciosa,The same name is also used for the 1948 adjustment (see datum code 6183).
2217,Datum,6665,7302,Azores Central 1995,
2218,Datum,6665,7301,Base SW,The same name is also used for the 1948 adjustment (see datum code 6183).
2219,Datum,6183,7301,Base SW,The same name is also used for the 1995 adjustment (see datum code 6665).
2220,Datum,6664,7301,Sao Bras,The same name is also used for the 1940 adjustment (see datum code 6184).
2221,Datum,6664,7302,Azores Oriental 1995,
2222,Datum,6615,7301,Base SE,The same name is also used for the 1995 adjustment (see datum code 6663).
2223,Datum,6663,7301,Base SE,The same name is also used for the 1936 adjustment (see datum code 6615).
2224,Datum,6663,7301,Madeira SE Base 1995,
2225,Coordinate Reference System,4183,7301,Base SW,The same name is also used for the 1995 adjustment (see CRS code 4665).
2226,Coordinate Reference System,4665,7301,Base SW,The same name is also used for the 1948 adjustment (see CRS code 4183).
2227,Coordinate Reference System,4665,7301,Graciosa,The same name is also used for the 1948 adjustment (see CRS code 4183).
2228,Coordinate Reference System,2189,7301,Base SW / UTM zone 26N,The same name is also used for the 1995 adjustment (see CRS code 3063).
2229,Coordinate Reference System,4664,7301,Sao Braz,The same name is also used for the 1940 adjustment (see CRS code 4184).
2230,Coordinate Reference System,3062,7301,Sao Braz / UTM zone 26N,The same name is also used for the 1940 adjustment (see CRS code 2190).
2231,Coordinate Reference System,3063,7301,Base SW / UTM zone 26N,The same name is also used for the 1948 adjustment (see CRS code 2189).
2232,Coordinate Reference System,3063,7301,Graciosa / UTM zone 26N,The same name is also used for the 1948 adjustment (see CRS code 2189).
2233,Coordinate Reference System,4615,7301,Porto Santo 1936,
2234,Coordinate Reference System,4663,7301,Base SE,The same name is also used for the 1936 adjustment (see CRS code 4615).
2235,Coordinate Reference System,2942,7301,Base SE / UTM zone 28N,The same name is also used for the 1995 adjustment (see CRS code 3061).
2236,Coordinate Reference System,3061,7301,Base SE / UTM zone 28N,The same name is also used for the 1948 adjustment (see CRS code 2942).
2237,Datum,6615,7301,Porto Santo,
2238,Coordinate_Operation,1886,7301,Base SW to WGS 84 (1),
2239,Coordinate_Operation,1888,7301,Base SE to WGS 84 (1),
2240,Coordinate_Operation,1966,7301,Base SE to WGS 84 (2),
2241,Coordinate_Operation,1967,7301,Base SE to WGS 84 (3),
2242,Coordinate_Operation,1980,7301,Graciosa to WGS 84 (10),
2243,Coordinate_Operation,1981,7301,Base SW to WGS 84 (11),
2244,Coordinate_Operation,1972,7301,Base SW to WGS 84 (2),
2245,Coordinate_Operation,1973,7301,Base SW to WGS 84 (3),
2246,Coordinate_Operation,1974,7301,Base SW to WGS 84 (4),
2247,Coordinate_Operation,1975,7301,Base SW to WGS 84 (5),
2248,Coordinate_Operation,1976,7301,Base SW to WGS 84 (6),
2249,Coordinate_Operation,1977,7301,Base SW to WGS 84 (7),
2250,Coordinate_Operation,1978,7301,Base SW to WGS 84 (8),
2251,Coordinate_Operation,1979,7301,Base SW to WGS 84 (9),
2252,Coordinate_Operation,1980,7301,Base SW to WGS 84 (10),
2253,Coordinate_Operation,1981,7301,Graciosa to WGS 84 (11),
2254,Coordinate_Operation,1972,7301,Graciosa to WGS 84 (2),
2255,Coordinate_Operation,1973,7301,Graciosa to WGS 84 (3),
2256,Coordinate_Operation,1974,7301,Graciosa to WGS 84 (4),
2257,Coordinate_Operation,1975,7301,Graciosa to WGS 84 (5),
2258,Coordinate_Operation,1976,7301,Graciosa to WGS 84 (6),
2259,Coordinate_Operation,1977,7301,Graciosa to WGS 84 (7),
2260,Coordinate_Operation,1978,7301,Graciosa to WGS 84 (8),
2261,Coordinate_Operation,1979,7301,Graciosa to WGS 84 (9),
2262,Coordinate_Operation,1992,7302,D73 to ETRS89 (3),
2263,Coordinate_Operation,1968,7301,Sao Braz to WGS 84 (2),
2264,Coordinate_Operation,1969,7301,Sao Braz to WGS 84 (3),
2265,Coordinate_Operation,1970,7301,Sao Braz to WGS 84 (4),
2266,Coordinate_Operation,1971,7301,Sao Braz to WGS 84 (5),
2267,Coordinate_Operation,1982,7301,Observatario Flores to WGS 84 (2),
2268,Coordinate_Operation,1984,7301,Lisbon 1937 to WGS 84 (3),
2269,Coordinate_Operation,1756,7301,Lisbon 1937 (Lisbon) to Lisbon 1937,
2270,Coordinate_Operation,8637,7301,Lisbon 1937 (Lisbon) to WGS 84 (1),
2271,Coordinate_Operation,1655,7301,Lisbon 1937 to ETRS89 (1),
2272,Coordinate_Operation,1790,7301,Lisbon 1937 to ETRS89 (2),
2273,Coordinate_Operation,1988,7302,Lisbon 1937 to WGS 84 (4),
2274,Coordinate_Operation,17336,7301,0 gon 0:-15,
2275,Coordinate_Operation,17337,7301,2.5 gon O 0:-15,
2276,Coordinate_Operation,17338,7301,5 gon O 0:-15,
2277,Coordinate_Operation,17335,7301,5 gon V 0:-15,
2278,Coordinate_Operation,17334,7301,7.5 gon V 0:-15,
2279,Coordinate Reference System,3028,7301,RT38 0 gon 0:-15,
2280,Coordinate Reference System,3029,7301,RT38 2.5 gon O 0:-15,
2281,Coordinate Reference System,3027,7301,RT38 2.5 gon V 0:-15,
2282,Coordinate Reference System,3030,7301,RT38 5 gon O 0:-15,
2283,Coordinate Reference System,3026,7301,RT38 5 gon V 0:-15,
2284,Coordinate Reference System,3025,7301,RT38 2.5 gon V 0:-15,
2285,Datum,6667,7301,IKBD-92,
2286,Unit of Measure,9122,7302,deg,
2287,Unit of Measure,9122,7306,dega,
2288,Coordinate Reference System,66656405,7301,Base SW (deg),The same name is also used for the 1948 adjustment (see CRS code 61836405).
2289,Coordinate Reference System,61836405,7301,Base SW (deg),The same name is also used for the 1995 adjustment (see CRS code 66656405).
2290,Coordinate Reference System,66656405,7301,Graciosa (deg),The same name is also used for the 1948 adjustment (see CRS code 61836405).
2291,Coordinate Reference System,66646405,7301,Sao Braz (deg),The same name is also used for the 1940 adjustment (see CRS code 61846405).
2292,Coordinate Reference System,4615,7301,Base SE,The same name is also used for the 1995 adjustment (see CRS code 4663).
2293,Coordinate Reference System,66156405,7301,Base SE (deg),The same name is also used for the 1936 adjustment (see CRS code 66636405).
2294,Coordinate Reference System,66636405,7301,Base SE (deg),The same name is also used for the 1936 adjustment (see CRS code 66156405).
2295,Coordinate Reference System,66156405,7301,Porto Santo 1936 (deg),
2296,Coordinate_Operation,1792,7302,D73 to ETRS89 (2),
2297,Coordinate_Operation,1657,7302,D73 to ETRS89 (1),
2298,Coordinate_Operation,1983,7302,D73 to WGS 84 (3),
2299,Coordinate_Operation,1987,7302,D73 to WGS 84 (4),
2300,Coordinate_Operation,1986,7302,B DLx to WGS 84 (1),
2301,Coordinate_Operation,1990,7302,B DLx to WGS 84 (2),
2302,Coordinate_Operation,1655,7302,DLx to ETRS89 (1),
2303,Coordinate_Operation,1790,7302,DLx to ETRS89 (2),
2304,Coordinate_Operation,1984,7302,DLx to WGS 84 (3),
2305,Coordinate_Operation,1988,7302,DLx to WGS 84 (3),
2306,Coordinate Reference System,25884,7301,LKS92 / TM Baltic93,Alias used in Latvia.
2307,Coordinate Reference System,25884,7301,LKS94 / TM Baltic93,Alias used in Lithuania.
2308,Coordinate Reference System,25884,7301,EST97 / TM Baltic93,Alias used in Estonia.
2309,Coordinate Reference System,3300,7301,EST92,This same alias is used for both geographical and projected CRSs.
2310,Coordinate Reference System,3301,7301,EST97,This same alias is used for both geographical and projected CRSs.
2311,Coordinate Reference System,3059,7301,LKS92,This alias is used for both geographical and projected CRSs.
2312,Coordinate_Operation,1997,7302,DLx to ETRS89 (2),
2313,Coordinate_Operation,1997,7301,Lisbon 1937 to ETRS89 (2),
2314,Datum,6668,7302,ED79,
2315,Datum,6131,7301,Indian (DMA Reduced),
2316,Coordinate Reference System,4131,7301,Indian (DMA Reduced),
2317,Coordinate Reference System,61316405,7301,Indian (DMA Reduced) (deg),
2318,Coordinate Reference System,3176,7301,Indian (DMA Reduced) / TM 106 NE,
2319,Coordinate Reference System,3148,7301,Indian (DMA Reduced) / UTM zone 48N,
2320,Coordinate Reference System,3149,7301,Indian (DMA Reduced) / UTM zone 49N,
2321,Coordinate Reference System,4930,7302,AAD98,
2322,Coordinate Reference System,4936,7301,ETRF89,
2323,Coordinate Reference System,4936,7301,EUREF89,
2324,Coordinate Reference System,4960,7301,National Geodetic System [Argentina],see http://www.igm.gov.ar/posgar.html
2325,Coordinate Reference System,4978,7311,DGN-95,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
2326,Coordinate Reference System,4950,7301,LKS94 (ETRS89),
2327,Coordinate Reference System,4931,7302,AAD98,
2328,Coordinate Reference System,4937,7301,ETRF89,
2329,Coordinate Reference System,4937,7301,EUREF89,
2330,Coordinate Reference System,4951,7301,LKS94 (ETRS89),
2331,Coordinate Reference System,4961,7301,National Geodetic System [Argentina],see http://www.igm.gov.ar/posgar.html
2332,Coordinate Reference System,4979,7311,DGN-95,Datum Geodesi Nasional 1995 (DGN-95) is a synonym for WGS 84 in Indonesia.
2333,Datum,6265,7301,Rome 1940,
2334,Datum,6806,7301,Rome 1940 (Rome),
2335,Datum,6670,7302,IGM95,