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
| exports.wgs84 = {
| towgs84: "0,0,0",
| ellipse: "WGS84",
| datumName: "WGS84"
| };
| exports.ch1903 = {
| towgs84: "674.374,15.056,405.346",
| ellipse: "bessel",
| datumName: "swiss"
| };
| exports.ggrs87 = {
| towgs84: "-199.87,74.79,246.62",
| ellipse: "GRS80",
| datumName: "Greek_Geodetic_Reference_System_1987"
| };
| exports.nad83 = {
| towgs84: "0,0,0",
| ellipse: "GRS80",
| datumName: "North_American_Datum_1983"
| };
| exports.nad27 = {
| nadgrids: "@conus,@alaska,@ntv2_0.gsb,@ntv1_can.dat",
| ellipse: "clrk66",
| datumName: "North_American_Datum_1927"
| };
| exports.potsdam = {
| towgs84: "606.0,23.0,413.0",
| ellipse: "bessel",
| datumName: "Potsdam Rauenberg 1950 DHDN"
| };
| exports.carthage = {
| towgs84: "-263.0,6.0,431.0",
| ellipse: "clark80",
| datumName: "Carthage 1934 Tunisia"
| };
| exports.hermannskogel = {
| towgs84: "653.0,-212.0,449.0",
| ellipse: "bessel",
| datumName: "Hermannskogel"
| };
| exports.ire65 = {
| towgs84: "482.530,-130.596,564.557,-1.042,-0.214,-0.631,8.15",
| ellipse: "mod_airy",
| datumName: "Ireland 1965"
| };
| exports.rassadiran = {
| towgs84: "-133.63,-157.5,-158.62",
| ellipse: "intl",
| datumName: "Rassadiran"
| };
| exports.nzgd49 = {
| towgs84: "59.47,-5.04,187.44,0.47,-0.1,1.024,-4.5993",
| ellipse: "intl",
| datumName: "New Zealand Geodetic Datum 1949"
| };
| exports.osgb36 = {
| towgs84: "446.448,-125.157,542.060,0.1502,0.2470,0.8421,-20.4894",
| ellipse: "airy",
| datumName: "Airy 1830"
| };
| exports.s_jtsk = {
| towgs84: "589,76,480",
| ellipse: 'bessel',
| datumName: 'S-JTSK (Ferro)'
| };
| exports.beduaram = {
| towgs84: '-106,-87,188',
| ellipse: 'clrk80',
| datumName: 'Beduaram'
| };
| exports.gunung_segara = {
| towgs84: '-403,684,41',
| ellipse: 'bessel',
| datumName: 'Gunung Segara Jakarta'
| };
| exports.rnb72 = {
| towgs84: "106.869,-52.2978,103.724,-0.33657,0.456955,-1.84218,1",
| ellipse: "intl",
| datumName: "Reseau National Belge 1972"
| };
|
|