proj4 2.16.2 → 2.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -0
- package/bower.json +1 -1
- package/component.json +1 -1
- package/dist/lib/Point.d.ts +24 -0
- package/dist/lib/Proj.d.ts +71 -0
- package/dist/lib/adjust_axis.d.ts +1 -0
- package/dist/lib/checkSanity.d.ts +1 -0
- package/dist/lib/common/acosh.d.ts +1 -0
- package/dist/lib/common/adjust_lat.d.ts +1 -0
- package/dist/lib/common/adjust_lon.d.ts +1 -0
- package/dist/lib/common/adjust_zone.d.ts +1 -0
- package/dist/lib/common/asinh.d.ts +1 -0
- package/dist/lib/common/asinhy.d.ts +1 -0
- package/dist/lib/common/asinz.d.ts +1 -0
- package/dist/lib/common/atanh.d.ts +1 -0
- package/dist/lib/common/clens.d.ts +1 -0
- package/dist/lib/common/clens_cmplx.d.ts +1 -0
- package/dist/lib/common/cosh.d.ts +1 -0
- package/dist/lib/common/e0fn.d.ts +1 -0
- package/dist/lib/common/e1fn.d.ts +1 -0
- package/dist/lib/common/e2fn.d.ts +1 -0
- package/dist/lib/common/e3fn.d.ts +1 -0
- package/dist/lib/common/fL.d.ts +1 -0
- package/dist/lib/common/gN.d.ts +1 -0
- package/dist/lib/common/gatg.d.ts +1 -0
- package/dist/lib/common/hypot.d.ts +1 -0
- package/dist/lib/common/imlfn.d.ts +1 -0
- package/dist/lib/common/invlatiso.d.ts +1 -0
- package/dist/lib/common/iqsfnz.d.ts +1 -0
- package/dist/lib/common/latiso.d.ts +1 -0
- package/dist/lib/common/log1py.d.ts +1 -0
- package/dist/lib/common/mlfn.d.ts +1 -0
- package/dist/lib/common/msfnz.d.ts +1 -0
- package/dist/lib/common/phi2z.d.ts +1 -0
- package/dist/lib/common/pj_enfn.d.ts +1 -0
- package/dist/lib/common/pj_inv_mlfn.d.ts +1 -0
- package/dist/lib/common/pj_mlfn.d.ts +1 -0
- package/dist/lib/common/qsfnz.d.ts +1 -0
- package/dist/lib/common/sign.d.ts +1 -0
- package/dist/lib/common/sinh.d.ts +1 -0
- package/dist/lib/common/srat.d.ts +1 -0
- package/dist/lib/common/tanh.d.ts +1 -0
- package/dist/lib/common/toPoint.d.ts +5 -0
- package/dist/lib/common/tsfnz.d.ts +1 -0
- package/dist/lib/common/vincenty.d.ts +35 -0
- package/dist/lib/constants/Datum.d.ts +1715 -0
- package/dist/lib/constants/Ellipsoid.d.ts +353 -0
- package/dist/lib/constants/PrimeMeridian.d.ts +16 -0
- package/dist/lib/constants/units.d.ts +63 -0
- package/dist/lib/constants/values.d.ts +19 -0
- package/dist/lib/core.d.ts +117 -0
- package/dist/lib/datum.d.ts +10 -0
- package/dist/lib/datumUtils.d.ts +28 -0
- package/dist/lib/datum_transform.d.ts +2 -0
- package/dist/lib/defs.d.ts +57 -0
- package/dist/lib/deriveConstants.d.ts +11 -0
- package/dist/lib/extend.d.ts +1 -0
- package/dist/lib/global.d.ts +1 -0
- package/dist/lib/includedProjections.d.ts +1 -0
- package/dist/lib/index.d.ts +24 -0
- package/dist/lib/match.d.ts +1 -0
- package/dist/lib/nadgrid.d.ts +107 -0
- package/dist/lib/parseCode.d.ts +6 -0
- package/dist/lib/projString.d.ts +5 -0
- package/dist/lib/projections/aea.d.ts +83 -0
- package/dist/lib/projections/aeqd.d.ts +32 -0
- package/dist/lib/projections/bonne.d.ts +27 -0
- package/dist/lib/projections/cass.d.ts +36 -0
- package/dist/lib/projections/cea.d.ts +28 -0
- package/dist/lib/projections/eqc.d.ts +20 -0
- package/dist/lib/projections/eqdc.d.ts +71 -0
- package/dist/lib/projections/eqearth.d.ts +15 -0
- package/dist/lib/projections/equi.d.ts +40 -0
- package/dist/lib/projections/etmerc.d.ts +45 -0
- package/dist/lib/projections/gauss.d.ts +38 -0
- package/dist/lib/projections/geocent.d.ts +22 -0
- package/dist/lib/projections/geos.d.ts +51 -0
- package/dist/lib/projections/gnom.d.ts +37 -0
- package/dist/lib/projections/gstmerc.d.ts +41 -0
- package/dist/lib/projections/krovak.d.ts +34 -0
- package/dist/lib/projections/laea.d.ts +70 -0
- package/dist/lib/projections/lcc.d.ts +36 -0
- package/dist/lib/projections/longlat.d.ts +11 -0
- package/dist/lib/projections/merc.d.ts +30 -0
- package/dist/lib/projections/mill.d.ts +11 -0
- package/dist/lib/projections/moll.d.ts +11 -0
- package/dist/lib/projections/nzmg.d.ts +33 -0
- package/dist/lib/projections/omerc.d.ts +60 -0
- package/dist/lib/projections/ortho.d.ts +25 -0
- package/dist/lib/projections/poly.d.ts +32 -0
- package/dist/lib/projections/qsc.d.ts +31 -0
- package/dist/lib/projections/robin.d.ts +24 -0
- package/dist/lib/projections/sinu.d.ts +37 -0
- package/dist/lib/projections/somerc.d.ts +35 -0
- package/dist/lib/projections/stere.d.ts +52 -0
- package/dist/lib/projections/sterea.d.ts +33 -0
- package/dist/lib/projections/tmerc.d.ts +38 -0
- package/dist/lib/projections/tpers.d.ts +45 -0
- package/dist/lib/projections/utm.d.ts +19 -0
- package/dist/lib/projections/vandg.d.ts +28 -0
- package/dist/lib/projections.d.ts +10 -0
- package/dist/lib/transform.d.ts +8 -0
- package/dist/proj4-src.js +908 -249
- package/dist/proj4.js +1 -1
- package/dist/projs.d.ts +1 -0
- package/lib/Point.js +9 -3
- package/lib/Proj.js +25 -1
- package/lib/adjust_axis.js +1 -0
- package/lib/common/toPoint.js +4 -0
- package/lib/common/vincenty.js +123 -0
- package/lib/constants/PrimeMeridian.js +16 -15
- package/lib/core.js +152 -16
- package/lib/defs.js +65 -5
- package/lib/index.js +17 -11
- package/lib/nadgrid.js +132 -2
- package/lib/parseCode.js +5 -1
- package/lib/projString.js +6 -0
- package/lib/projections/aea.js +25 -0
- package/lib/projections/aeqd.js +22 -26
- package/lib/projections/bonne.js +11 -0
- package/lib/projections/cass.js +11 -0
- package/lib/projections/cea.js +7 -1
- package/lib/projections/eqdc.js +29 -7
- package/lib/projections/equi.js +11 -2
- package/lib/projections/etmerc.js +12 -0
- package/lib/projections/gauss.js +12 -0
- package/lib/projections/geos.js +16 -0
- package/lib/projections/gnom.js +11 -2
- package/lib/projections/gstmerc.js +12 -0
- package/lib/projections/laea.js +30 -11
- package/lib/projections/lcc.js +10 -0
- package/lib/projections/merc.js +9 -0
- package/lib/projections/omerc.js +29 -4
- package/lib/projections/ortho.js +7 -0
- package/lib/projections/poly.js +14 -0
- package/lib/projections/qsc.js +11 -0
- package/lib/projections/sinu.js +11 -0
- package/lib/projections/somerc.js +10 -0
- package/lib/projections/stere.js +16 -2
- package/lib/projections/sterea.js +10 -0
- package/lib/projections/tmerc.js +8 -0
- package/lib/projections/tpers.js +24 -3
- package/lib/projections/utm.js +1 -0
- package/lib/projections/vandg.js +9 -2
- package/lib/transform.js +9 -0
- package/package.json +9 -10
- package/tsconfig.json +14 -0
- package/.github/workflows/build-and-test.yml +0 -69
- package/.nyc_output/6b047fc9-1bf2-4565-9e8a-9c0defc09dd7.json +0 -1
- package/.nyc_output/e2c5d0cc-9478-4f26-ad2f-de246d4c35de.json +0 -1
- package/.nyc_output/f4b0e40f-04ca-4b6d-bfeb-51d617db9841.json +0 -1
- package/.nyc_output/processinfo/6b047fc9-1bf2-4565-9e8a-9c0defc09dd7.json +0 -1
- package/.nyc_output/processinfo/e2c5d0cc-9478-4f26-ad2f-de246d4c35de.json +0 -1
- package/.nyc_output/processinfo/f4b0e40f-04ca-4b6d-bfeb-51d617db9841.json +0 -1
- package/.nyc_output/processinfo/index.json +0 -1
- package/scripts/readme.md +0 -10
- package/scripts/updateDatums.mjs +0 -119
- package/scripts/updateEllipsoids.mjs +0 -70
- package/test/BETA2007.gsb +0 -0
- package/test/ntv2_0_downsampled.gsb +0 -0
- package/test/ntv2_0_downsampled_no_error_columns.gsb +0 -0
- package/test/opt.html +0 -28
- package/test/puppeteer-tests.mjs +0 -110
- package/test/test-ci.mjs +0 -10
- package/test/test.js +0 -639
- package/test/testData.js +0 -2386
package/test/testData.js
DELETED
|
@@ -1,2386 +0,0 @@
|
|
|
1
|
-
var testPoints = [
|
|
2
|
-
{ code: 'testmerc',
|
|
3
|
-
xy: [-45007.0787624, 4151725.59875],
|
|
4
|
-
ll: [5.364315, 46.623154]
|
|
5
|
-
},
|
|
6
|
-
{ code: 'testmerc2',
|
|
7
|
-
xy: [4156404, 7480076.5],
|
|
8
|
-
ll: [37.33761240175515, 55.60447049026976]
|
|
9
|
-
},
|
|
10
|
-
{ code: 'PROJCS["CH1903 / LV03",GEOGCS["CH1903",DATUM["D_CH1903",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Hotine_Oblique_Mercator_Azimuth_Center"],PARAMETER["latitude_of_center",46.95240555555556],PARAMETER["longitude_of_center",7.439583333333333],PARAMETER["azimuth",90],PARAMETER["scale_factor",1],PARAMETER["false_easting",600000],PARAMETER["false_northing",200000],UNIT["Meter",1]]',
|
|
11
|
-
xy: [660013.4882918689, 185172.17110117766],
|
|
12
|
-
ll: [8.225, 46.815],
|
|
13
|
-
acc: {
|
|
14
|
-
xy: 0.1,
|
|
15
|
-
ll: 5
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
{ code: 'PROJCS["CH1903 / LV03",GEOGCS["CH1903",DATUM["CH1903",SPHEROID["Bessel 1841",6377397.155,299.1528128,AUTHORITY["EPSG","7004"]],TOWGS84[674.4,15.1,405.3,0,0,0,0],AUTHORITY["EPSG","6149"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4149"]],PROJECTION["Hotine_Oblique_Mercator_Azimuth_Center"],PARAMETER["latitude_of_center",46.95240555555556],PARAMETER["longitude_of_center",7.439583333333333],PARAMETER["azimuth",90],PARAMETER["rectified_grid_angle",90],PARAMETER["scale_factor",1],PARAMETER["false_easting",600000],PARAMETER["false_northing",200000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Y",EAST],AXIS["X",NORTH],AUTHORITY["EPSG","21781"]]',
|
|
19
|
-
xy: [660013.4882918689, 185172.17110117766],
|
|
20
|
-
ll: [8.225, 46.815],
|
|
21
|
-
acc: {
|
|
22
|
-
xy: 0.1,
|
|
23
|
-
ll: 5
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
code: `PROJCRS["CH1903 / LV03",
|
|
28
|
-
BASEGEOGCRS["CH1903",
|
|
29
|
-
DATUM["CH1903",
|
|
30
|
-
ELLIPSOID["Bessel 1841",6377397.155,299.1528128,
|
|
31
|
-
LENGTHUNIT["metre",1]]],
|
|
32
|
-
PRIMEM["Greenwich",0,
|
|
33
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
34
|
-
ID["EPSG",4149]],
|
|
35
|
-
CONVERSION["Swiss Oblique Mercator 1903M",
|
|
36
|
-
METHOD["Hotine Oblique Mercator (variant B)",
|
|
37
|
-
ID["EPSG",9815]],
|
|
38
|
-
PARAMETER["Latitude of projection centre",46.9524055555556,
|
|
39
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
40
|
-
ID["EPSG",8811]],
|
|
41
|
-
PARAMETER["Longitude of projection centre",7.43958333333333,
|
|
42
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
43
|
-
ID["EPSG",8812]],
|
|
44
|
-
PARAMETER["Azimuth at projection centre",90,
|
|
45
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
46
|
-
ID["EPSG",8813]],
|
|
47
|
-
PARAMETER["Angle from Rectified to Skew Grid",90,
|
|
48
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
49
|
-
ID["EPSG",8814]],
|
|
50
|
-
PARAMETER["Scale factor at projection centre",1,
|
|
51
|
-
SCALEUNIT["unity",1],
|
|
52
|
-
ID["EPSG",8815]],
|
|
53
|
-
PARAMETER["Easting at projection centre",600000,
|
|
54
|
-
LENGTHUNIT["metre",1],
|
|
55
|
-
ID["EPSG",8816]],
|
|
56
|
-
PARAMETER["Northing at projection centre",200000,
|
|
57
|
-
LENGTHUNIT["metre",1],
|
|
58
|
-
ID["EPSG",8817]]],
|
|
59
|
-
CS[Cartesian,2],
|
|
60
|
-
AXIS["easting (Y)",east,
|
|
61
|
-
ORDER[1],
|
|
62
|
-
LENGTHUNIT["metre",1]],
|
|
63
|
-
AXIS["northing (X)",north,
|
|
64
|
-
ORDER[2],
|
|
65
|
-
LENGTHUNIT["metre",1]],
|
|
66
|
-
USAGE[
|
|
67
|
-
SCOPE["Cadastre, engineering survey, topographic mapping (large and medium scale)."],
|
|
68
|
-
AREA["Liechtenstein; Switzerland."],
|
|
69
|
-
BBOX[45.82,5.96,47.81,10.49]],
|
|
70
|
-
ID["EPSG",21781]]`,
|
|
71
|
-
xy: [660013.4882918689, 185172.17110117766],
|
|
72
|
-
ll: [8.225, 46.815],
|
|
73
|
-
acc: {
|
|
74
|
-
xy: 0.1,
|
|
75
|
-
ll: 5
|
|
76
|
-
}
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
code: { $schema: 'https://proj.org/schemas/v0.7/projjson.schema.json', type: 'ProjectedCRS', name: 'CH1903 / LV03', base_crs: { type: 'GeographicCRS', name: 'CH1903', datum: { type: 'GeodeticReferenceFrame', name: 'CH1903', ellipsoid: { name: 'Bessel 1841', semi_major_axis: 6377397.155, inverse_flattening: 299.1528128 } }, coordinate_system: { subtype: 'ellipsoidal', axis: [{ name: 'Geodetic latitude', abbreviation: 'Lat', direction: 'north', unit: 'degree' }, { name: 'Geodetic longitude', abbreviation: 'Lon', direction: 'east', unit: 'degree' }] }, id: { authority: 'EPSG', code: 4149 } }, conversion: { name: 'Swiss Oblique Mercator 1903M', method: { name: 'Hotine Oblique Mercator (variant B)', id: { authority: 'EPSG', code: 9815 } }, parameters: [{ name: 'Latitude of projection centre', value: 46.9524055555556, unit: 'degree', id: { authority: 'EPSG', code: 8811 } }, { name: 'Longitude of projection centre', value: 7.43958333333333, unit: 'degree', id: { authority: 'EPSG', code: 8812 } }, { name: 'Azimuth at projection centre', value: 90, unit: 'degree', id: { authority: 'EPSG', code: 8813 } }, { name: 'Angle from Rectified to Skew Grid', value: 90, unit: 'degree', id: { authority: 'EPSG', code: 8814 } }, { name: 'Scale factor at projection centre', value: 1, unit: 'unity', id: { authority: 'EPSG', code: 8815 } }, { name: 'Easting at projection centre', value: 600000, unit: 'metre', id: { authority: 'EPSG', code: 8816 } }, { name: 'Northing at projection centre', value: 200000, unit: 'metre', id: { authority: 'EPSG', code: 8817 } }] }, coordinate_system: { subtype: 'Cartesian', axis: [{ name: 'Easting', abbreviation: 'Y', direction: 'east', unit: 'metre' }, { name: 'Northing', abbreviation: 'X', direction: 'north', unit: 'metre' }] }, scope: 'Cadastre, engineering survey, topographic mapping (large and medium scale).', area: 'Liechtenstein; Switzerland.', bbox: { south_latitude: 45.82, west_longitude: 5.96, north_latitude: 47.81, east_longitude: 10.49 }, id: { authority: 'EPSG', code: 21781 } },
|
|
80
|
-
xy: [660013.4882918689, 185172.17110117766],
|
|
81
|
-
ll: [8.225, 46.815],
|
|
82
|
-
acc: {
|
|
83
|
-
xy: 0.1,
|
|
84
|
-
ll: 5
|
|
85
|
-
}
|
|
86
|
-
},
|
|
87
|
-
{ code: 'PROJCS["NAD83 / Massachusetts Mainland",GEOGCS["NAD83",DATUM["North_American_Datum_1983",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","6269"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4269"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["standard_parallel_1",42.68333333333333],PARAMETER["standard_parallel_2",41.71666666666667],PARAMETER["latitude_of_origin",41],PARAMETER["central_meridian",-71.5],PARAMETER["false_easting",200000],PARAMETER["false_northing",750000],AUTHORITY["EPSG","26986"],AXIS["X",EAST],AXIS["Y",NORTH]]',
|
|
88
|
-
xy: [231394.84, 902621.11],
|
|
89
|
-
ll: [-71.11881762742996, 42.37346263960867]
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
code: `PROJCRS["NAD83 / Massachusetts Mainland",
|
|
93
|
-
BASEGEOGCRS["NAD83",
|
|
94
|
-
DATUM["North American Datum 1983",
|
|
95
|
-
ELLIPSOID["GRS 1980",6378137,298.257222101,
|
|
96
|
-
LENGTHUNIT["metre",1]]],
|
|
97
|
-
PRIMEM["Greenwich",0,
|
|
98
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
99
|
-
ID["EPSG",4269]],
|
|
100
|
-
CONVERSION["SPCS83 Massachusetts Mainland zone (meter)",
|
|
101
|
-
METHOD["Lambert Conic Conformal (2SP)",
|
|
102
|
-
ID["EPSG",9802]],
|
|
103
|
-
PARAMETER["Latitude of false origin",41,
|
|
104
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
105
|
-
ID["EPSG",8821]],
|
|
106
|
-
PARAMETER["Longitude of false origin",-71.5,
|
|
107
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
108
|
-
ID["EPSG",8822]],
|
|
109
|
-
PARAMETER["Latitude of 1st standard parallel",42.6833333333333,
|
|
110
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
111
|
-
ID["EPSG",8823]],
|
|
112
|
-
PARAMETER["Latitude of 2nd standard parallel",41.7166666666667,
|
|
113
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
114
|
-
ID["EPSG",8824]],
|
|
115
|
-
PARAMETER["Easting at false origin",200000,
|
|
116
|
-
LENGTHUNIT["metre",1],
|
|
117
|
-
ID["EPSG",8826]],
|
|
118
|
-
PARAMETER["Northing at false origin",750000,
|
|
119
|
-
LENGTHUNIT["metre",1],
|
|
120
|
-
ID["EPSG",8827]]],
|
|
121
|
-
CS[Cartesian,2],
|
|
122
|
-
AXIS["easting (X)",east,
|
|
123
|
-
ORDER[1],
|
|
124
|
-
LENGTHUNIT["metre",1]],
|
|
125
|
-
AXIS["northing (Y)",north,
|
|
126
|
-
ORDER[2],
|
|
127
|
-
LENGTHUNIT["metre",1]],
|
|
128
|
-
USAGE[
|
|
129
|
-
SCOPE["Engineering survey, topographic mapping."],
|
|
130
|
-
AREA["United States (USA) - Massachusetts onshore - counties of Barnstable; Berkshire; Bristol; Essex; Franklin; Hampden; Hampshire; Middlesex; Norfolk; Plymouth; Suffolk; Worcester."],
|
|
131
|
-
BBOX[41.46,-73.5,42.89,-69.86]],
|
|
132
|
-
ID["EPSG",26986]]`,
|
|
133
|
-
xy: [231394.84, 902621.11],
|
|
134
|
-
ll: [-71.11881762742996, 42.37346263960867]
|
|
135
|
-
},
|
|
136
|
-
{ code: 'PROJCS["NAD83 / Massachusetts Mainland",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Lambert_Conformal_Conic"],PARAMETER["standard_parallel_1",42.68333333333333],PARAMETER["standard_parallel_2",41.71666666666667],PARAMETER["latitude_of_origin",41],PARAMETER["central_meridian",-71.5],PARAMETER["false_easting",200000],PARAMETER["false_northing",750000],UNIT["Meter",1]]',
|
|
137
|
-
xy: [231394.84, 902621.11],
|
|
138
|
-
ll: [-71.11881762742996, 42.37346263960867]
|
|
139
|
-
},
|
|
140
|
-
{ code: 'PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert_Conformal_Conic_2SP", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]',
|
|
141
|
-
xy: [231394.84, 902621.11],
|
|
142
|
-
ll: [-71.11881762742996, 42.37346263960867]
|
|
143
|
-
},
|
|
144
|
-
{ code: 'PROJCS["Asia_North_Equidistant_Conic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Equidistant_Conic"],PARAMETER["False_Easting",0],PARAMETER["False_Northing",0],PARAMETER["Central_Meridian",95],PARAMETER["Standard_Parallel_1",15],PARAMETER["Standard_Parallel_2",65],PARAMETER["Latitude_Of_Origin",30],UNIT["Meter",1]]',
|
|
145
|
-
xy: [88280.59904432714, 111340.90165417176],
|
|
146
|
-
ll: [96, 31]
|
|
147
|
-
},
|
|
148
|
-
{
|
|
149
|
-
code: `PROJCRS["Asia_North_Equidistant_Conic",
|
|
150
|
-
BASEGEOGCRS["WGS 84",
|
|
151
|
-
DATUM["World Geodetic System 1984",
|
|
152
|
-
ELLIPSOID["WGS 84",6378137,298.257223563,
|
|
153
|
-
LENGTHUNIT["metre",1]]],
|
|
154
|
-
PRIMEM["Greenwich",0,
|
|
155
|
-
ANGLEUNIT["Degree",0.0174532925199433]]],
|
|
156
|
-
CONVERSION["Asia_North_Equidistant_Conic",
|
|
157
|
-
METHOD["Equidistant Conic",
|
|
158
|
-
ID["EPSG",1119]],
|
|
159
|
-
PARAMETER["Latitude of false origin",30,
|
|
160
|
-
ANGLEUNIT["Degree",0.0174532925199433],
|
|
161
|
-
ID["EPSG",8821]],
|
|
162
|
-
PARAMETER["Longitude of false origin",95,
|
|
163
|
-
ANGLEUNIT["Degree",0.0174532925199433],
|
|
164
|
-
ID["EPSG",8822]],
|
|
165
|
-
PARAMETER["Latitude of 1st standard parallel",15,
|
|
166
|
-
ANGLEUNIT["Degree",0.0174532925199433],
|
|
167
|
-
ID["EPSG",8823]],
|
|
168
|
-
PARAMETER["Latitude of 2nd standard parallel",65,
|
|
169
|
-
ANGLEUNIT["Degree",0.0174532925199433],
|
|
170
|
-
ID["EPSG",8824]],
|
|
171
|
-
PARAMETER["Easting at false origin",0,
|
|
172
|
-
LENGTHUNIT["metre",1],
|
|
173
|
-
ID["EPSG",8826]],
|
|
174
|
-
PARAMETER["Northing at false origin",0,
|
|
175
|
-
LENGTHUNIT["metre",1],
|
|
176
|
-
ID["EPSG",8827]]],
|
|
177
|
-
CS[Cartesian,2],
|
|
178
|
-
AXIS["(E)",east,
|
|
179
|
-
ORDER[1],
|
|
180
|
-
LENGTHUNIT["metre",1]],
|
|
181
|
-
AXIS["(N)",north,
|
|
182
|
-
ORDER[2],
|
|
183
|
-
LENGTHUNIT["metre",1]],
|
|
184
|
-
USAGE[
|
|
185
|
-
SCOPE["Not known."],
|
|
186
|
-
AREA["Asia - North"],
|
|
187
|
-
BBOX[10,25,85,-175]],
|
|
188
|
-
ID["ESRI",102026]]`,
|
|
189
|
-
xy: [88280.59904432714, 111340.90165417176],
|
|
190
|
-
ll: [96, 31]
|
|
191
|
-
},
|
|
192
|
-
{ code: 'PROJCS["World_Sinusoidal",GEOGCS["GCS_WGS_1984",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Sinusoidal"],PARAMETER["False_Easting",0],PARAMETER["False_Northing",0],PARAMETER["Central_Meridian",0],UNIT["Meter",1],AUTHORITY["EPSG","54008"]]',
|
|
193
|
-
xy: [738509.49, 5874620.38],
|
|
194
|
-
ll: [11.0, 53.0]
|
|
195
|
-
},
|
|
196
|
-
{ code: 'PROJCS["World_Sinusoidal",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Sinusoidal"],PARAMETER["False_Easting",0],PARAMETER["False_Northing",0],PARAMETER["Central_Meridian",0],UNIT["Meter",1]]',
|
|
197
|
-
xy: [738509.49, 5874620.38],
|
|
198
|
-
ll: [11.0, 53.0]
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
code: `PROJCRS["World_Sinusoidal",
|
|
202
|
-
BASEGEOGCRS["WGS 84",
|
|
203
|
-
DATUM["World Geodetic System 1984",
|
|
204
|
-
ELLIPSOID["WGS 84",6378137,298.257223563,
|
|
205
|
-
LENGTHUNIT["metre",1]]],
|
|
206
|
-
PRIMEM["Greenwich",0,
|
|
207
|
-
ANGLEUNIT["Degree",0.0174532925199433]]],
|
|
208
|
-
CONVERSION["World_Sinusoidal",
|
|
209
|
-
METHOD["Sinusoidal"],
|
|
210
|
-
PARAMETER["Longitude of natural origin",0,
|
|
211
|
-
ANGLEUNIT["Degree",0.0174532925199433],
|
|
212
|
-
ID["EPSG",8802]],
|
|
213
|
-
PARAMETER["False easting",0,
|
|
214
|
-
LENGTHUNIT["metre",1],
|
|
215
|
-
ID["EPSG",8806]],
|
|
216
|
-
PARAMETER["False northing",0,
|
|
217
|
-
LENGTHUNIT["metre",1],
|
|
218
|
-
ID["EPSG",8807]]],
|
|
219
|
-
CS[Cartesian,2],
|
|
220
|
-
AXIS["(E)",east,
|
|
221
|
-
ORDER[1],
|
|
222
|
-
LENGTHUNIT["metre",1]],
|
|
223
|
-
AXIS["(N)",north,
|
|
224
|
-
ORDER[2],
|
|
225
|
-
LENGTHUNIT["metre",1]],
|
|
226
|
-
USAGE[
|
|
227
|
-
SCOPE["Not known."],
|
|
228
|
-
AREA["World."],
|
|
229
|
-
BBOX[-90,-180,90,180]],
|
|
230
|
-
ID["ESRI",54008]]`,
|
|
231
|
-
xy: [738509.49, 5874620.38],
|
|
232
|
-
ll: [11.0, 53.0]
|
|
233
|
-
},
|
|
234
|
-
{ code: 'PROJCS["ETRS89 / ETRS-LAEA",GEOGCS["ETRS89",DATUM["D_ETRS_1989",SPHEROID["GRS_1980",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_origin",52],PARAMETER["central_meridian",10],PARAMETER["false_easting",4321000],PARAMETER["false_northing",3210000],UNIT["Meter",1]]',
|
|
235
|
-
xy: [4388138.60, 3321736.46],
|
|
236
|
-
ll: [11.0, 53.0]
|
|
237
|
-
},
|
|
238
|
-
{ code: 'PROJCS["ETRS89 / ETRS-LAEA",GEOGCS["ETRS89",DATUM["European_Terrestrial_Reference_System_1989",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","6258"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4258"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",52],PARAMETER["longitude_of_center",10],PARAMETER["false_easting",4321000],PARAMETER["false_northing",3210000],AUTHORITY["EPSG","3035"],AXIS["X",EAST],AXIS["Y",NORTH]]',
|
|
239
|
-
xy: [4388138.60, 3321736.46],
|
|
240
|
-
ll: [11.0, 53.0]
|
|
241
|
-
},
|
|
242
|
-
{
|
|
243
|
-
code: `PROJCRS["ETRS89-extended / LAEA Europe",
|
|
244
|
-
BASEGEOGCRS["ETRS89",
|
|
245
|
-
ENSEMBLE["European Terrestrial Reference System 1989 ensemble",
|
|
246
|
-
MEMBER["European Terrestrial Reference Frame 1989"],
|
|
247
|
-
MEMBER["European Terrestrial Reference Frame 1990"],
|
|
248
|
-
MEMBER["European Terrestrial Reference Frame 1991"],
|
|
249
|
-
MEMBER["European Terrestrial Reference Frame 1992"],
|
|
250
|
-
MEMBER["European Terrestrial Reference Frame 1993"],
|
|
251
|
-
MEMBER["European Terrestrial Reference Frame 1994"],
|
|
252
|
-
MEMBER["European Terrestrial Reference Frame 1996"],
|
|
253
|
-
MEMBER["European Terrestrial Reference Frame 1997"],
|
|
254
|
-
MEMBER["European Terrestrial Reference Frame 2000"],
|
|
255
|
-
MEMBER["European Terrestrial Reference Frame 2005"],
|
|
256
|
-
MEMBER["European Terrestrial Reference Frame 2014"],
|
|
257
|
-
MEMBER["European Terrestrial Reference Frame 2020"],
|
|
258
|
-
ELLIPSOID["GRS 1980",6378137,298.257222101,
|
|
259
|
-
LENGTHUNIT["metre",1]],
|
|
260
|
-
ENSEMBLEACCURACY[0.1]],
|
|
261
|
-
PRIMEM["Greenwich",0,
|
|
262
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
263
|
-
ID["EPSG",4258]],
|
|
264
|
-
CONVERSION["Europe Equal Area 2001",
|
|
265
|
-
METHOD["Lambert Azimuthal Equal Area",
|
|
266
|
-
ID["EPSG",9820]],
|
|
267
|
-
PARAMETER["Latitude of natural origin",52,
|
|
268
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
269
|
-
ID["EPSG",8801]],
|
|
270
|
-
PARAMETER["Longitude of natural origin",10,
|
|
271
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
272
|
-
ID["EPSG",8802]],
|
|
273
|
-
PARAMETER["False easting",4321000,
|
|
274
|
-
LENGTHUNIT["metre",1],
|
|
275
|
-
ID["EPSG",8806]],
|
|
276
|
-
PARAMETER["False northing",3210000,
|
|
277
|
-
LENGTHUNIT["metre",1],
|
|
278
|
-
ID["EPSG",8807]]],
|
|
279
|
-
CS[Cartesian,2],
|
|
280
|
-
AXIS["northing (Y)",north,
|
|
281
|
-
ORDER[1],
|
|
282
|
-
LENGTHUNIT["metre",1]],
|
|
283
|
-
AXIS["easting (X)",east,
|
|
284
|
-
ORDER[2],
|
|
285
|
-
LENGTHUNIT["metre",1]],
|
|
286
|
-
USAGE[
|
|
287
|
-
SCOPE["Statistical analysis."],
|
|
288
|
-
AREA["Europe - European Union (EU) countries and candidates. Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary; Iceland; Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Monaco; Montenegro; Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal including Madeira and Azores; Romania; San Marino; Serbia; Slovakia; Slovenia; Spain including Canary Islands; Sweden; Switzerland; Türkiye (Turkey); United Kingdom (UK) including Channel Islands and Isle of Man; Vatican City State."],
|
|
289
|
-
BBOX[24.6,-35.58,84.73,44.83]],
|
|
290
|
-
ID["EPSG",3035]]`,
|
|
291
|
-
xy: [4388138.60, 3321736.46],
|
|
292
|
-
ll: [11.0, 53.0]
|
|
293
|
-
},
|
|
294
|
-
{ code: 'EPSG:102018',
|
|
295
|
-
xy: [350577.5930806119, 4705857.070634324],
|
|
296
|
-
ll: [-75, 46]
|
|
297
|
-
}, { code: '+proj=gnom +lat_0=90 +lon_0=0 +x_0=6300000 +y_0=6300000 +ellps=WGS84 +datum=WGS84 +units=m +no_defs',
|
|
298
|
-
xy: [350577.5930806119, 4705857.070634324],
|
|
299
|
-
ll: [-75, 46]
|
|
300
|
-
},
|
|
301
|
-
{ code: 'PROJCS["NAD83(CSRS) / UTM zone 17N",GEOGCS["NAD83(CSRS)",DATUM["D_North_American_1983_CSRS98",SPHEROID["GRS_1980",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",-81],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",500000],PARAMETER["false_northing",0],UNIT["Meter",1]]',
|
|
302
|
-
xy: [411461.807497, 4700123.744402],
|
|
303
|
-
ll: [-82.07666015625, 42.448388671875]
|
|
304
|
-
},
|
|
305
|
-
{ code: 'PROJCS["NAD83(CSRS) / UTM zone 17N",GEOGCS["NAD83(CSRS)",DATUM["NAD83_Canadian_Spatial_Reference_System",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","6140"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4617"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",-81],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",500000],PARAMETER["false_northing",0],AUTHORITY["EPSG","2958"],AXIS["Easting",EAST],AXIS["Northing",NORTH]]',
|
|
306
|
-
xy: [411461.807497, 4700123.744402],
|
|
307
|
-
ll: [-82.07666015625, 42.448388671875]
|
|
308
|
-
},
|
|
309
|
-
{
|
|
310
|
-
code: `PROJCRS["NAD83(CSRS) / UTM zone 17N",
|
|
311
|
-
BASEGEOGCRS["NAD83(CSRS)",
|
|
312
|
-
DATUM["NAD83 Canadian Spatial Reference System",
|
|
313
|
-
ELLIPSOID["GRS 1980",6378137,298.257222101,
|
|
314
|
-
LENGTHUNIT["metre",1]]],
|
|
315
|
-
PRIMEM["Greenwich",0,
|
|
316
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
317
|
-
ID["EPSG",4617]],
|
|
318
|
-
CONVERSION["UTM zone 17N",
|
|
319
|
-
METHOD["Transverse Mercator",
|
|
320
|
-
ID["EPSG",9807]],
|
|
321
|
-
PARAMETER["Latitude of natural origin",0,
|
|
322
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
323
|
-
ID["EPSG",8801]],
|
|
324
|
-
PARAMETER["Longitude of natural origin",-81,
|
|
325
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
326
|
-
ID["EPSG",8802]],
|
|
327
|
-
PARAMETER["Scale factor at natural origin",0.9996,
|
|
328
|
-
SCALEUNIT["unity",1],
|
|
329
|
-
ID["EPSG",8805]],
|
|
330
|
-
PARAMETER["False easting",500000,
|
|
331
|
-
LENGTHUNIT["metre",1],
|
|
332
|
-
ID["EPSG",8806]],
|
|
333
|
-
PARAMETER["False northing",0,
|
|
334
|
-
LENGTHUNIT["metre",1],
|
|
335
|
-
ID["EPSG",8807]]],
|
|
336
|
-
CS[Cartesian,2],
|
|
337
|
-
AXIS["(E)",east,
|
|
338
|
-
ORDER[1],
|
|
339
|
-
LENGTHUNIT["metre",1]],
|
|
340
|
-
AXIS["(N)",north,
|
|
341
|
-
ORDER[2],
|
|
342
|
-
LENGTHUNIT["metre",1]],
|
|
343
|
-
USAGE[
|
|
344
|
-
SCOPE["Engineering survey, topographic mapping."],
|
|
345
|
-
AREA["Canada between 84°W and 78°W, onshore and offshore south of 84°N - Nunavut, Ontario and Quebec."],
|
|
346
|
-
BBOX[41.67,-84,84,-78]],
|
|
347
|
-
ID["EPSG",2958]]`,
|
|
348
|
-
xy: [411462.11, 4700122.83],
|
|
349
|
-
ll: [-82.07666, 42.44839],
|
|
350
|
-
acc: {
|
|
351
|
-
xy: 0.1,
|
|
352
|
-
ll: 5
|
|
353
|
-
}
|
|
354
|
-
},
|
|
355
|
-
{ code: 'PROJCS["ETRS89 / UTM zone 32N",GEOGCS["ETRS89",DATUM["European_Terrestrial_Reference_System_1989",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],TOWGS84[0,0,0,0,0,0,0],AUTHORITY["EPSG","6258"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4258"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",9],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",500000],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","25832"]]',
|
|
356
|
-
xy: [-1877994.66, 3932281.56],
|
|
357
|
-
ll: [-16.10000000237, 32.879999998812]
|
|
358
|
-
},
|
|
359
|
-
{
|
|
360
|
-
code: `PROJCRS["ETRS89 / UTM zone 32N",
|
|
361
|
-
BASEGEOGCRS["ETRS89",
|
|
362
|
-
ENSEMBLE["European Terrestrial Reference System 1989 ensemble",
|
|
363
|
-
MEMBER["European Terrestrial Reference Frame 1989"],
|
|
364
|
-
MEMBER["European Terrestrial Reference Frame 1990"],
|
|
365
|
-
MEMBER["European Terrestrial Reference Frame 1991"],
|
|
366
|
-
MEMBER["European Terrestrial Reference Frame 1992"],
|
|
367
|
-
MEMBER["European Terrestrial Reference Frame 1993"],
|
|
368
|
-
MEMBER["European Terrestrial Reference Frame 1994"],
|
|
369
|
-
MEMBER["European Terrestrial Reference Frame 1996"],
|
|
370
|
-
MEMBER["European Terrestrial Reference Frame 1997"],
|
|
371
|
-
MEMBER["European Terrestrial Reference Frame 2000"],
|
|
372
|
-
MEMBER["European Terrestrial Reference Frame 2005"],
|
|
373
|
-
MEMBER["European Terrestrial Reference Frame 2014"],
|
|
374
|
-
MEMBER["European Terrestrial Reference Frame 2020"],
|
|
375
|
-
ELLIPSOID["GRS 1980",6378137,298.257222101,
|
|
376
|
-
LENGTHUNIT["metre",1]],
|
|
377
|
-
ENSEMBLEACCURACY[0.1]],
|
|
378
|
-
PRIMEM["Greenwich",0,
|
|
379
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
380
|
-
ID["EPSG",4258]],
|
|
381
|
-
CONVERSION["UTM zone 32N",
|
|
382
|
-
METHOD["Transverse Mercator",
|
|
383
|
-
ID["EPSG",9807]],
|
|
384
|
-
PARAMETER["Latitude of natural origin",0,
|
|
385
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
386
|
-
ID["EPSG",8801]],
|
|
387
|
-
PARAMETER["Longitude of natural origin",9,
|
|
388
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
389
|
-
ID["EPSG",8802]],
|
|
390
|
-
PARAMETER["Scale factor at natural origin",0.9996,
|
|
391
|
-
SCALEUNIT["unity",1],
|
|
392
|
-
ID["EPSG",8805]],
|
|
393
|
-
PARAMETER["False easting",500000,
|
|
394
|
-
LENGTHUNIT["metre",1],
|
|
395
|
-
ID["EPSG",8806]],
|
|
396
|
-
PARAMETER["False northing",0,
|
|
397
|
-
LENGTHUNIT["metre",1],
|
|
398
|
-
ID["EPSG",8807]]],
|
|
399
|
-
CS[Cartesian,2],
|
|
400
|
-
AXIS["(E)",east,
|
|
401
|
-
ORDER[1],
|
|
402
|
-
LENGTHUNIT["metre",1]],
|
|
403
|
-
AXIS["(N)",north,
|
|
404
|
-
ORDER[2],
|
|
405
|
-
LENGTHUNIT["metre",1]],
|
|
406
|
-
USAGE[
|
|
407
|
-
SCOPE["Engineering survey, topographic mapping."],
|
|
408
|
-
AREA["Europe between 6°E and 12°E: Austria; Denmark - onshore and offshore; Germany - onshore and offshore; Italy - onshore and offshore; Norway including Svalbard - onshore and offshore; Spain - offshore."],
|
|
409
|
-
BBOX[36.53,6,84.01,12.01]],
|
|
410
|
-
USAGE[
|
|
411
|
-
SCOPE["Pan-European conformal mapping at scales larger than 1:500,000."],
|
|
412
|
-
AREA["Europe between 6°E and 12°E and approximately 36°30'N to 84°N."],
|
|
413
|
-
BBOX[36.53,6,84.01,12.01]],
|
|
414
|
-
ID["EPSG",25832]]`,
|
|
415
|
-
xy: [-1877994.66, 3932281.56],
|
|
416
|
-
ll: [-16.10000000237, 32.879999998812]
|
|
417
|
-
},
|
|
418
|
-
{ code: 'PROJCS["NAD27 / UTM zone 14N",GEOGCS["NAD27 Coordinate System",DATUM["D_North American Datum 1927 (NAD27)",SPHEROID["Clarke_1866",6378206.4,294.97869821391]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Transverse_Mercator"],PARAMETER["false_easting",500000],PARAMETER["false_northing",0],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",-99],PARAMETER["scale_factor",0.9996],UNIT["Meter (m)",1]]',
|
|
419
|
-
xy: [2026074.9192811155, 12812891.606450122],
|
|
420
|
-
ll: [51.517955776474096, 61.56941794249017]
|
|
421
|
-
},
|
|
422
|
-
{
|
|
423
|
-
code: `PROJCRS["NAD27 / UTM zone 14N",
|
|
424
|
-
BASEGEOGCRS["NAD27",
|
|
425
|
-
DATUM["North American Datum 1927",
|
|
426
|
-
ELLIPSOID["Clarke 1866",6378206.4,294.978698213898,
|
|
427
|
-
LENGTHUNIT["metre",1]]],
|
|
428
|
-
PRIMEM["Greenwich",0,
|
|
429
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
430
|
-
ID["EPSG",4267]],
|
|
431
|
-
CONVERSION["UTM zone 14N",
|
|
432
|
-
METHOD["Transverse Mercator",
|
|
433
|
-
ID["EPSG",9807]],
|
|
434
|
-
PARAMETER["Latitude of natural origin",0,
|
|
435
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
436
|
-
ID["EPSG",8801]],
|
|
437
|
-
PARAMETER["Longitude of natural origin",-99,
|
|
438
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
439
|
-
ID["EPSG",8802]],
|
|
440
|
-
PARAMETER["Scale factor at natural origin",0.9996,
|
|
441
|
-
SCALEUNIT["unity",1],
|
|
442
|
-
ID["EPSG",8805]],
|
|
443
|
-
PARAMETER["False easting",500000,
|
|
444
|
-
LENGTHUNIT["metre",1],
|
|
445
|
-
ID["EPSG",8806]],
|
|
446
|
-
PARAMETER["False northing",0,
|
|
447
|
-
LENGTHUNIT["metre",1],
|
|
448
|
-
ID["EPSG",8807]]],
|
|
449
|
-
CS[Cartesian,2],
|
|
450
|
-
AXIS["(E)",east,
|
|
451
|
-
ORDER[1],
|
|
452
|
-
LENGTHUNIT["metre",1]],
|
|
453
|
-
AXIS["(N)",north,
|
|
454
|
-
ORDER[2],
|
|
455
|
-
LENGTHUNIT["metre",1]],
|
|
456
|
-
USAGE[
|
|
457
|
-
SCOPE["Engineering survey, topographic mapping."],
|
|
458
|
-
AREA["North America - between 102°W and 96°W. Canada - Manitoba; Nunavut; Saskatchewan. Mexico. United States (USA) - Iowa; Kansas; Minnesota; Nebraska; North Dakota; Oklahoma; South Dakota; Texas. Onshore for Mexican Pacific coast and Canadian Arctic but onshore and offshore for US & Mexico Gulf of Mexico and Caribbean coasts."],
|
|
459
|
-
BBOX[15.59,-102,80.74,-96]],
|
|
460
|
-
ID["EPSG",26714]]`,
|
|
461
|
-
xy: [500028.183822102, 5538410.26425292],
|
|
462
|
-
ll: [-99, 50],
|
|
463
|
-
acc: {
|
|
464
|
-
ll: 4,
|
|
465
|
-
xy: -1 // 10 m
|
|
466
|
-
}
|
|
467
|
-
},
|
|
468
|
-
{ code: 'PROJCS["World_Mollweide",GEOGCS["GCS_WGS_1984",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Mollweide"],PARAMETER["False_Easting",0],PARAMETER["False_Northing",0],PARAMETER["Central_Meridian",0],UNIT["Meter",1],AUTHORITY["EPSG","54009"]]',
|
|
469
|
-
xy: [3891383.58309223, 6876758.9933288],
|
|
470
|
-
ll: [60, 60]
|
|
471
|
-
},
|
|
472
|
-
{ code: 'PROJCS["World_Mollweide",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Mollweide"],PARAMETER["False_Easting",0],PARAMETER["False_Northing",0],PARAMETER["Central_Meridian",0],UNIT["Meter",1]]',
|
|
473
|
-
xy: [3891383.58309223, 6876758.9933288],
|
|
474
|
-
ll: [60, 60]
|
|
475
|
-
},
|
|
476
|
-
{
|
|
477
|
-
code: `PROJCRS["World_Mollweide",
|
|
478
|
-
BASEGEOGCRS["WGS 84",
|
|
479
|
-
DATUM["World Geodetic System 1984",
|
|
480
|
-
ELLIPSOID["WGS 84",6378137,298.257223563,
|
|
481
|
-
LENGTHUNIT["metre",1]]],
|
|
482
|
-
PRIMEM["Greenwich",0,
|
|
483
|
-
ANGLEUNIT["Degree",0.0174532925199433]]],
|
|
484
|
-
CONVERSION["World_Mollweide",
|
|
485
|
-
METHOD["Mollweide"],
|
|
486
|
-
PARAMETER["Longitude of natural origin",0,
|
|
487
|
-
ANGLEUNIT["Degree",0.0174532925199433],
|
|
488
|
-
ID["EPSG",8802]],
|
|
489
|
-
PARAMETER["False easting",0,
|
|
490
|
-
LENGTHUNIT["metre",1],
|
|
491
|
-
ID["EPSG",8806]],
|
|
492
|
-
PARAMETER["False northing",0,
|
|
493
|
-
LENGTHUNIT["metre",1],
|
|
494
|
-
ID["EPSG",8807]]],
|
|
495
|
-
CS[Cartesian,2],
|
|
496
|
-
AXIS["(E)",east,
|
|
497
|
-
ORDER[1],
|
|
498
|
-
LENGTHUNIT["metre",1]],
|
|
499
|
-
AXIS["(N)",north,
|
|
500
|
-
ORDER[2],
|
|
501
|
-
LENGTHUNIT["metre",1]],
|
|
502
|
-
USAGE[
|
|
503
|
-
SCOPE["Not known."],
|
|
504
|
-
AREA["World."],
|
|
505
|
-
BBOX[-90,-180,90,180]],
|
|
506
|
-
ID["ESRI",54009]]`,
|
|
507
|
-
xy: [3891383.58309223, 6876758.9933288],
|
|
508
|
-
ll: [60, 60]
|
|
509
|
-
},
|
|
510
|
-
{
|
|
511
|
-
code: 'PROJCS["NAD83 / BC Albers",GEOGCS["NAD83",DATUM["North_American_Datum_1983",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","6269"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4269"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],PROJECTION["Albers_Conic_Equal_Area"],PARAMETER["standard_parallel_1",50],PARAMETER["standard_parallel_2",58.5],PARAMETER["latitude_of_center",45],PARAMETER["longitude_of_center",-126],PARAMETER["false_easting",1000000],PARAMETER["false_northing",0],AUTHORITY["EPSG","3005"],AXIS["Easting",EAST],AXIS["Northing",NORTH]]',
|
|
512
|
-
ll: [-126.54, 54.15],
|
|
513
|
-
xy: [964813.103719, 1016486.305862]
|
|
514
|
-
}, {
|
|
515
|
-
code: 'PROJCS["NAD83 / BC Albers",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Albers"],PARAMETER["standard_parallel_1",50],PARAMETER["standard_parallel_2",58.5],PARAMETER["latitude_of_origin",45],PARAMETER["central_meridian",-126],PARAMETER["false_easting",1000000],PARAMETER["false_northing",0],UNIT["Meter",1]]',
|
|
516
|
-
ll: [-126.54, 54.15],
|
|
517
|
-
xy: [964813.103719, 1016486.305862]
|
|
518
|
-
},
|
|
519
|
-
{
|
|
520
|
-
code: `PROJCRS["NAD83 / BC Albers",
|
|
521
|
-
BASEGEOGCRS["NAD83",
|
|
522
|
-
DATUM["North American Datum 1983",
|
|
523
|
-
ELLIPSOID["GRS 1980",6378137,298.257222101,
|
|
524
|
-
LENGTHUNIT["metre",1]]],
|
|
525
|
-
PRIMEM["Greenwich",0,
|
|
526
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
527
|
-
ID["EPSG",4269]],
|
|
528
|
-
CONVERSION["British Columbia Albers",
|
|
529
|
-
METHOD["Albers Equal Area",
|
|
530
|
-
ID["EPSG",9822]],
|
|
531
|
-
PARAMETER["Latitude of false origin",45,
|
|
532
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
533
|
-
ID["EPSG",8821]],
|
|
534
|
-
PARAMETER["Longitude of false origin",-126,
|
|
535
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
536
|
-
ID["EPSG",8822]],
|
|
537
|
-
PARAMETER["Latitude of 1st standard parallel",50,
|
|
538
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
539
|
-
ID["EPSG",8823]],
|
|
540
|
-
PARAMETER["Latitude of 2nd standard parallel",58.5,
|
|
541
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
542
|
-
ID["EPSG",8824]],
|
|
543
|
-
PARAMETER["Easting at false origin",1000000,
|
|
544
|
-
LENGTHUNIT["metre",1],
|
|
545
|
-
ID["EPSG",8826]],
|
|
546
|
-
PARAMETER["Northing at false origin",0,
|
|
547
|
-
LENGTHUNIT["metre",1],
|
|
548
|
-
ID["EPSG",8827]]],
|
|
549
|
-
CS[Cartesian,2],
|
|
550
|
-
AXIS["(E)",east,
|
|
551
|
-
ORDER[1],
|
|
552
|
-
LENGTHUNIT["metre",1]],
|
|
553
|
-
AXIS["(N)",north,
|
|
554
|
-
ORDER[2],
|
|
555
|
-
LENGTHUNIT["metre",1]],
|
|
556
|
-
USAGE[
|
|
557
|
-
SCOPE["Province-wide spatial data management."],
|
|
558
|
-
AREA["Canada - British Columbia."],
|
|
559
|
-
BBOX[48.25,-139.04,60.01,-114.08]],
|
|
560
|
-
ID["EPSG",3005]]`,
|
|
561
|
-
ll: [-126.54, 54.15],
|
|
562
|
-
xy: [964813.103719, 1016486.305862],
|
|
563
|
-
acc: {
|
|
564
|
-
ll: 5,
|
|
565
|
-
xy: 0.25
|
|
566
|
-
}
|
|
567
|
-
},
|
|
568
|
-
{
|
|
569
|
-
code: 'PROJCS["Azimuthal_Equidistant",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",0],PARAMETER["False_Northing",0],PARAMETER["Central_Meridian",0],PARAMETER["Latitude_Of_Origin",0],UNIT["Meter",1]]',
|
|
570
|
-
ll: [0, 0],
|
|
571
|
-
xy: [0, 0]
|
|
572
|
-
},
|
|
573
|
-
{
|
|
574
|
-
code: `PROJCRS["World_Azimuthal_Equidistant",
|
|
575
|
-
BASEGEOGCRS["WGS 84",
|
|
576
|
-
DATUM["World Geodetic System 1984",
|
|
577
|
-
ELLIPSOID["WGS 84",6378137,298.257223563,
|
|
578
|
-
LENGTHUNIT["metre",1]]],
|
|
579
|
-
PRIMEM["Greenwich",0,
|
|
580
|
-
ANGLEUNIT["Degree",0.0174532925199433]]],
|
|
581
|
-
CONVERSION["World_Azimuthal_Equidistant",
|
|
582
|
-
METHOD["Azimuthal Equidistant",
|
|
583
|
-
ID["EPSG",1125]],
|
|
584
|
-
PARAMETER["Latitude of natural origin",0,
|
|
585
|
-
ANGLEUNIT["Degree",0.0174532925199433],
|
|
586
|
-
ID["EPSG",8801]],
|
|
587
|
-
PARAMETER["Longitude of natural origin",0,
|
|
588
|
-
ANGLEUNIT["Degree",0.0174532925199433],
|
|
589
|
-
ID["EPSG",8802]],
|
|
590
|
-
PARAMETER["False easting",0,
|
|
591
|
-
LENGTHUNIT["metre",1],
|
|
592
|
-
ID["EPSG",8806]],
|
|
593
|
-
PARAMETER["False northing",0,
|
|
594
|
-
LENGTHUNIT["metre",1],
|
|
595
|
-
ID["EPSG",8807]]],
|
|
596
|
-
CS[Cartesian,2],
|
|
597
|
-
AXIS["(E)",east,
|
|
598
|
-
ORDER[1],
|
|
599
|
-
LENGTHUNIT["metre",1]],
|
|
600
|
-
AXIS["(N)",north,
|
|
601
|
-
ORDER[2],
|
|
602
|
-
LENGTHUNIT["metre",1]],
|
|
603
|
-
USAGE[
|
|
604
|
-
SCOPE["Not known."],
|
|
605
|
-
AREA["World."],
|
|
606
|
-
BBOX[-90,-180,90,180]],
|
|
607
|
-
ID["ESRI",54032]]`,
|
|
608
|
-
ll: [0, 0],
|
|
609
|
-
xy: [0, 0]
|
|
610
|
-
},
|
|
611
|
-
{
|
|
612
|
-
code: 'PROJCS["Sphere_Azimuthal_Equidistant",GEOGCS["GCS_Sphere",DATUM["Not_specified_based_on_Authalic_Sphere",SPHEROID["Sphere",6371000,0]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",0],PARAMETER["False_Northing",0],PARAMETER["Central_Meridian",0],PARAMETER["Latitude_Of_Origin",0],UNIT["Meter",1]]',
|
|
613
|
-
ll: [0, 0],
|
|
614
|
-
xy: [0, 0]
|
|
615
|
-
},
|
|
616
|
-
{
|
|
617
|
-
code: `PROJCRS["Sphere_Azimuthal_Equidistant",
|
|
618
|
-
BASEGEOGCRS["Unknown datum based upon the Authalic Sphere",
|
|
619
|
-
DATUM["Not specified (based on Authalic Sphere)",
|
|
620
|
-
ELLIPSOID["Sphere",6371000,0,
|
|
621
|
-
LENGTHUNIT["metre",1]]],
|
|
622
|
-
PRIMEM["Greenwich",0,
|
|
623
|
-
ANGLEUNIT["Degree",0.0174532925199433]]],
|
|
624
|
-
CONVERSION["Sphere_Azimuthal_Equidistant",
|
|
625
|
-
METHOD["Azimuthal Equidistant",
|
|
626
|
-
ID["EPSG",1125]],
|
|
627
|
-
PARAMETER["Latitude of natural origin",0,
|
|
628
|
-
ANGLEUNIT["Degree",0.0174532925199433],
|
|
629
|
-
ID["EPSG",8801]],
|
|
630
|
-
PARAMETER["Longitude of natural origin",0,
|
|
631
|
-
ANGLEUNIT["Degree",0.0174532925199433],
|
|
632
|
-
ID["EPSG",8802]],
|
|
633
|
-
PARAMETER["False easting",0,
|
|
634
|
-
LENGTHUNIT["metre",1],
|
|
635
|
-
ID["EPSG",8806]],
|
|
636
|
-
PARAMETER["False northing",0,
|
|
637
|
-
LENGTHUNIT["metre",1],
|
|
638
|
-
ID["EPSG",8807]]],
|
|
639
|
-
CS[Cartesian,2],
|
|
640
|
-
AXIS["(E)",east,
|
|
641
|
-
ORDER[1],
|
|
642
|
-
LENGTHUNIT["metre",1]],
|
|
643
|
-
AXIS["(N)",north,
|
|
644
|
-
ORDER[2],
|
|
645
|
-
LENGTHUNIT["metre",1]],
|
|
646
|
-
USAGE[
|
|
647
|
-
SCOPE["Not known."],
|
|
648
|
-
AREA["World."],
|
|
649
|
-
BBOX[-90,-180,90,180]],
|
|
650
|
-
ID["ESRI",53032]]`,
|
|
651
|
-
ll: [0, 0],
|
|
652
|
-
xy: [0, 0]
|
|
653
|
-
},
|
|
654
|
-
{
|
|
655
|
-
code: 'PROJCS["North_Pole_Azimuthal_Equidistant",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",0],PARAMETER["False_Northing",0],PARAMETER["Central_Meridian",0],PARAMETER["Latitude_Of_Origin",90],UNIT["Meter",1]]',
|
|
656
|
-
ll: [50.977303830208, 30.915260093747],
|
|
657
|
-
xy: [5112279.911077, -4143196.76625]
|
|
658
|
-
},
|
|
659
|
-
{
|
|
660
|
-
code: 'PROJCS["North_Pole_Azimuthal_Equidistant",GEOGCS["GCS_WGS_1984",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",0],PARAMETER["False_Northing",0],PARAMETER["Central_Meridian",0],PARAMETER["Latitude_Of_Origin",90],UNIT["Meter",1],AUTHORITY["EPSG","102016"]]',
|
|
661
|
-
ll: [50.977303830208, 30.915260093747],
|
|
662
|
-
xy: [5112279.911077, -4143196.76625]
|
|
663
|
-
},
|
|
664
|
-
{
|
|
665
|
-
code: `PROJCRS["North_Pole_Azimuthal_Equidistant",
|
|
666
|
-
BASEGEOGCRS["WGS 84",
|
|
667
|
-
DATUM["World Geodetic System 1984",
|
|
668
|
-
ELLIPSOID["WGS 84",6378137,298.257223563,
|
|
669
|
-
LENGTHUNIT["metre",1]]],
|
|
670
|
-
PRIMEM["Greenwich",0,
|
|
671
|
-
ANGLEUNIT["Degree",0.0174532925199433]]],
|
|
672
|
-
CONVERSION["North_Pole_Azimuthal_Equidistant",
|
|
673
|
-
METHOD["Azimuthal Equidistant",
|
|
674
|
-
ID["EPSG",1125]],
|
|
675
|
-
PARAMETER["Latitude of natural origin",90,
|
|
676
|
-
ANGLEUNIT["Degree",0.0174532925199433],
|
|
677
|
-
ID["EPSG",8801]],
|
|
678
|
-
PARAMETER["Longitude of natural origin",0,
|
|
679
|
-
ANGLEUNIT["Degree",0.0174532925199433],
|
|
680
|
-
ID["EPSG",8802]],
|
|
681
|
-
PARAMETER["False easting",0,
|
|
682
|
-
LENGTHUNIT["metre",1],
|
|
683
|
-
ID["EPSG",8806]],
|
|
684
|
-
PARAMETER["False northing",0,
|
|
685
|
-
LENGTHUNIT["metre",1],
|
|
686
|
-
ID["EPSG",8807]]],
|
|
687
|
-
CS[Cartesian,2],
|
|
688
|
-
AXIS["(E)",east,
|
|
689
|
-
ORDER[1],
|
|
690
|
-
LENGTHUNIT["metre",1]],
|
|
691
|
-
AXIS["(N)",north,
|
|
692
|
-
ORDER[2],
|
|
693
|
-
LENGTHUNIT["metre",1]],
|
|
694
|
-
USAGE[
|
|
695
|
-
SCOPE["Not known."],
|
|
696
|
-
AREA["Northern hemisphere."],
|
|
697
|
-
BBOX[0,-180,90,180]],
|
|
698
|
-
ID["ESRI",102016]]`,
|
|
699
|
-
ll: [50.977303830208, 30.915260093747],
|
|
700
|
-
xy: [5112279.911077, -4143196.76625]
|
|
701
|
-
},
|
|
702
|
-
{
|
|
703
|
-
code: 'PROJCS["Mount Dillon / Tobago Grid",GEOGCS["Mount Dillon",DATUM["Mount_Dillon",SPHEROID["Clarke 1858",6378293.645208759,294.2606763692654,AUTHORITY["EPSG","7007"]],AUTHORITY["EPSG","6157"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4157"]],UNIT["Clarke\'s link",0.201166195164,AUTHORITY["EPSG","9039"]],PROJECTION["Cassini_Soldner"],PARAMETER["latitude_of_origin",11.25217861111111],PARAMETER["central_meridian",-60.68600888888889],PARAMETER["false_easting",187500],PARAMETER["false_northing",180000],AUTHORITY["EPSG","2066"],AXIS["Easting",EAST],AXIS["Northing",NORTH]]',
|
|
704
|
-
ll: [-60.676753018, 11.2487234308],
|
|
705
|
-
xy: [192524.3061766178, 178100.2740019509],
|
|
706
|
-
acc: {
|
|
707
|
-
ll: 1,
|
|
708
|
-
xy: -4
|
|
709
|
-
}
|
|
710
|
-
}, {
|
|
711
|
-
code: 'PROJCS["Mount Dillon / Tobago Grid",GEOGCS["Mount Dillon",DATUM["D_Mount_Dillon",SPHEROID["Clarke_1858",6378293.645208759,294.2606763692654]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Cassini"],PARAMETER["latitude_of_origin",11.25217861111111],PARAMETER["central_meridian",-60.68600888888889],PARAMETER["false_easting",187500],PARAMETER["false_northing",180000],UNIT["Clarke\'s link",0.201166195164]]',
|
|
712
|
-
ll: [-60.676753018, 11.2487234308],
|
|
713
|
-
xy: [192524.3061766178, 178100.2740019509],
|
|
714
|
-
acc: {
|
|
715
|
-
ll: 1,
|
|
716
|
-
xy: -4
|
|
717
|
-
}
|
|
718
|
-
}, {
|
|
719
|
-
code: `PROJCRS["Mount Dillon / Tobago Grid",
|
|
720
|
-
BASEGEOGCRS["Mount Dillon",
|
|
721
|
-
DATUM["Mount Dillon",
|
|
722
|
-
ELLIPSOID["Clarke 1858",20926348,294.260676369261,
|
|
723
|
-
LENGTHUNIT["Clarke's foot",0.3047972654]]],
|
|
724
|
-
PRIMEM["Greenwich",0,
|
|
725
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
726
|
-
ID["EPSG",4157]],
|
|
727
|
-
CONVERSION["Tobago Grid",
|
|
728
|
-
METHOD["Cassini-Soldner",
|
|
729
|
-
ID["EPSG",9806]],
|
|
730
|
-
PARAMETER["Latitude of natural origin",11.2521786111111,
|
|
731
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
732
|
-
ID["EPSG",8801]],
|
|
733
|
-
PARAMETER["Longitude of natural origin",-60.6860088888889,
|
|
734
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
735
|
-
ID["EPSG",8802]],
|
|
736
|
-
PARAMETER["False easting",187500,
|
|
737
|
-
LENGTHUNIT["Clarke's link",0.201166195164],
|
|
738
|
-
ID["EPSG",8806]],
|
|
739
|
-
PARAMETER["False northing",180000,
|
|
740
|
-
LENGTHUNIT["Clarke's link",0.201166195164],
|
|
741
|
-
ID["EPSG",8807]]],
|
|
742
|
-
CS[Cartesian,2],
|
|
743
|
-
AXIS["(E)",east,
|
|
744
|
-
ORDER[1],
|
|
745
|
-
LENGTHUNIT["Clarke's link",0.201166195164]],
|
|
746
|
-
AXIS["(N)",north,
|
|
747
|
-
ORDER[2],
|
|
748
|
-
LENGTHUNIT["Clarke's link",0.201166195164]],
|
|
749
|
-
USAGE[
|
|
750
|
-
SCOPE["Engineering survey, topographic mapping."],
|
|
751
|
-
AREA["Trinidad and Tobago - Tobago - onshore."],
|
|
752
|
-
BBOX[11.08,-60.9,11.41,-60.44]],
|
|
753
|
-
ID["EPSG",2066]]`,
|
|
754
|
-
ll: [-60.66999, 11.24499],
|
|
755
|
-
xy: [196190.12, 176053.13],
|
|
756
|
-
acc: {
|
|
757
|
-
ll: 1,
|
|
758
|
-
xy: -4
|
|
759
|
-
}
|
|
760
|
-
},
|
|
761
|
-
// {
|
|
762
|
-
// code: 'EPSG:3975',
|
|
763
|
-
// ll: [-9.764450683, 25.751953],
|
|
764
|
-
// xy: [-942135.525095996, 3178441.8667094777]
|
|
765
|
-
// },
|
|
766
|
-
{
|
|
767
|
-
code: 'PROJCS["World Equidistant Cylindrical (Sphere)",GEOGCS["Unspecified datum based upon the GRS 1980 Authalic Sphere",DATUM["Not_specified_based_on_GRS_1980_Authalic_Sphere",SPHEROID["GRS 1980 Authalic Sphere",6371007,0,AUTHORITY["EPSG","7048"]],AUTHORITY["EPSG","6047"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4047"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],PROJECTION["Equirectangular"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],AUTHORITY["EPSG","3786"],AXIS["X",EAST],AXIS["Y",NORTH]]',
|
|
768
|
-
ll: [-1.7539371169976, 12.632997701986],
|
|
769
|
-
xy: [-195029.12334755991, 1395621.9368162225],
|
|
770
|
-
acc: {
|
|
771
|
-
ll: 2
|
|
772
|
-
}
|
|
773
|
-
}, {
|
|
774
|
-
code: 'PROJCS["World Equidistant Cylindrical (Sphere)",GEOGCS["Unspecified datum based upon the GRS 1980 Authalic Sphere",DATUM["D_",SPHEROID["GRS_1980_Authalic_Sphere",6371007,0]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["central_meridian",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["Meter",1]]',
|
|
775
|
-
ll: [-1.7539371169976, 12.632997701986],
|
|
776
|
-
xy: [-195029.12334755991, 1395621.9368162225],
|
|
777
|
-
acc: {
|
|
778
|
-
ll: 2
|
|
779
|
-
}
|
|
780
|
-
},
|
|
781
|
-
{
|
|
782
|
-
code: { $schema: 'https://proj.org/schemas/v0.7/projjson.schema.json', type: 'ProjectedCRS', name: 'World Equidistant Cylindrical (Sphere)', base_crs: { type: 'GeographicCRS', name: 'Unspecified datum based upon the GRS 1980 Authalic Sphere', datum: { type: 'GeodeticReferenceFrame', name: 'Not specified (based on GRS 1980 Authalic Sphere)', ellipsoid: { name: 'GRS 1980 Authalic Sphere', radius: 6371007 } }, coordinate_system: { subtype: 'ellipsoidal', axis: [{ name: 'Geodetic latitude', abbreviation: 'Lat', direction: 'north', unit: 'degree' }, { name: 'Geodetic longitude', abbreviation: 'Lon', direction: 'east', unit: 'degree' }] }, id: { authority: 'EPSG', code: 4047 } }, conversion: { name: 'World Equidistant Cylindrical (Sphere)', method: { name: 'Equidistant Cylindrical (Spherical)', id: { authority: 'EPSG', code: 1029 } }, parameters: [{ name: 'Latitude of 1st standard parallel', value: 0, unit: 'degree', id: { authority: 'EPSG', code: 8823 } }, { name: 'Longitude of natural origin', value: 0, unit: 'degree', id: { authority: 'EPSG', code: 8802 } }, { name: 'False easting', value: 0, unit: 'metre', id: { authority: 'EPSG', code: 8806 } }, { name: 'False northing', value: 0, unit: 'metre', id: { authority: 'EPSG', code: 8807 } }] }, coordinate_system: { subtype: 'Cartesian', axis: [{ name: 'Easting', abbreviation: 'X', direction: 'east', unit: 'metre' }, { name: 'Northing', abbreviation: 'Y', direction: 'north', unit: 'metre' }] }, scope: 'Web mapping and visualisation.', area: 'World.', bbox: { south_latitude: -90, west_longitude: -180, north_latitude: 90, east_longitude: 180 }, id: { authority: 'EPSG', code: 4088 } },
|
|
783
|
-
ll: [-1.7539371169976, 12.632997701986],
|
|
784
|
-
xy: [-195029.12334755991, 1395621.9368162225],
|
|
785
|
-
acc: {
|
|
786
|
-
ll: 2
|
|
787
|
-
}
|
|
788
|
-
},
|
|
789
|
-
{
|
|
790
|
-
code: 'PROJCS["Segara / NEIEZ",GEOGCS["Segara",DATUM["Gunung_Segara",SPHEROID["Bessel 1841",6377397.155,299.1528128,AUTHORITY["EPSG","7004"]],AUTHORITY["EPSG","6613"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4613"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],PROJECTION["Mercator_1SP"],PARAMETER["central_meridian",110],PARAMETER["scale_factor",0.997],PARAMETER["false_easting",3900000],PARAMETER["false_northing",900000],AUTHORITY["EPSG","3000"],AXIS["X",EAST],AXIS["Y",NORTH]]',
|
|
791
|
-
ll: [116.65547897884308, -0.6595605286983485],
|
|
792
|
-
xy: [4638523.040740433, 827245.2586932715]
|
|
793
|
-
}, {
|
|
794
|
-
code: 'PROJCS["Segara / NEIEZ",GEOGCS["Segara",DATUM["D_Gunung_Segara",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Mercator"],PARAMETER["central_meridian",110],PARAMETER["scale_factor",0.997],PARAMETER["false_easting",3900000],PARAMETER["false_northing",900000],UNIT["Meter",1]]',
|
|
795
|
-
ll: [116.65547897884308, -0.6595605286983485],
|
|
796
|
-
xy: [4638523.040740433, 827245.2586932715]
|
|
797
|
-
},
|
|
798
|
-
{
|
|
799
|
-
code: { $schema: 'https://proj.org/schemas/v0.7/projjson.schema.json', type: 'ProjectedCRS', name: 'Segara / NEIEZ', base_crs: { type: 'GeographicCRS', name: 'Segara', datum: { type: 'GeodeticReferenceFrame', name: 'Gunung Segara', ellipsoid: { name: 'Bessel 1841', semi_major_axis: 6377397.155, inverse_flattening: 299.1528128 } }, coordinate_system: { subtype: 'ellipsoidal', axis: [{ name: 'Geodetic latitude', abbreviation: 'Lat', direction: 'north', unit: 'degree' }, { name: 'Geodetic longitude', abbreviation: 'Lon', direction: 'east', unit: 'degree' }] }, id: { authority: 'EPSG', code: 4613 } }, conversion: { name: 'Netherlands East Indies Equatorial Zone', method: { name: 'Mercator (variant A)', id: { authority: 'EPSG', code: 9804 } }, parameters: [{ name: 'Latitude of natural origin', value: 0, unit: 'degree', id: { authority: 'EPSG', code: 8801 } }, { name: 'Longitude of natural origin', value: 110, unit: 'degree', id: { authority: 'EPSG', code: 8802 } }, { name: 'Scale factor at natural origin', value: 0.997, unit: 'unity', id: { authority: 'EPSG', code: 8805 } }, { name: 'False easting', value: 3900000, unit: 'metre', id: { authority: 'EPSG', code: 8806 } }, { name: 'False northing', value: 900000, unit: 'metre', id: { authority: 'EPSG', code: 8807 } }] }, coordinate_system: { subtype: 'Cartesian', axis: [{ name: 'Easting', abbreviation: 'X', direction: 'east', unit: 'metre' }, { name: 'Northing', abbreviation: 'Y', direction: 'north', unit: 'metre' }] }, scope: 'Engineering survey, topographic mapping.', area: 'Indonesia - Kalimantan - onshore east coastal area including Mahakam delta coastal and offshore shelf areas.', bbox: { south_latitude: -4.24, west_longitude: 114.55, north_latitude: 4.29, east_longitude: 119.06 }, id: { authority: 'EPSG', code: 3000 } },
|
|
800
|
-
ll: [116.6554863, -0.65952],
|
|
801
|
-
xy: [4638523.040740433, 827245.2586932715],
|
|
802
|
-
acc: {
|
|
803
|
-
xy: 1
|
|
804
|
-
}
|
|
805
|
-
},
|
|
806
|
-
{
|
|
807
|
-
code: 'PROJCS["Beduaram / TM 13 NE",GEOGCS["Beduaram",DATUM["Beduaram",SPHEROID["Clarke 1880 (IGN)",6378249.2,293.4660212936269,AUTHORITY["EPSG","7011"]],TOWGS84[-106,-87,188,0,0,0,0],AUTHORITY["EPSG","6213"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4213"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",13],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",500000],PARAMETER["false_northing",0],AUTHORITY["EPSG","2931"],AXIS["X",EAST],AXIS["Y",NORTH]]',
|
|
808
|
-
ll: [5, 25],
|
|
809
|
-
xy: [-308919.1234711099, 2788738.255936392]
|
|
810
|
-
},
|
|
811
|
-
{
|
|
812
|
-
code: 'PROJCS["Beduaram / TM 13 NE",GEOGCS["Beduaram",DATUM["D_Beduaram",SPHEROID["Clarke_1880_IGN",6378249.2,293.4660212936269]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",13],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",500000],PARAMETER["false_northing",0],UNIT["Meter",1]]',
|
|
813
|
-
ll: [5, 25],
|
|
814
|
-
xy: [-308919.1234711099, 2788738.255936392]
|
|
815
|
-
},
|
|
816
|
-
{
|
|
817
|
-
code: `PROJCRS["Beduaram / TM 13 NE",
|
|
818
|
-
BASEGEOGCRS["Beduaram",
|
|
819
|
-
DATUM["Beduaram",
|
|
820
|
-
ELLIPSOID["Clarke 1880 (IGN)",6378249.2,293.466021293627,
|
|
821
|
-
LENGTHUNIT["metre",1]]],
|
|
822
|
-
PRIMEM["Greenwich",0,
|
|
823
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
824
|
-
ID["EPSG",4213]],
|
|
825
|
-
CONVERSION["TM 13 NE",
|
|
826
|
-
METHOD["Transverse Mercator",
|
|
827
|
-
ID["EPSG",9807]],
|
|
828
|
-
PARAMETER["Latitude of natural origin",0,
|
|
829
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
830
|
-
ID["EPSG",8801]],
|
|
831
|
-
PARAMETER["Longitude of natural origin",13,
|
|
832
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
833
|
-
ID["EPSG",8802]],
|
|
834
|
-
PARAMETER["Scale factor at natural origin",0.9996,
|
|
835
|
-
SCALEUNIT["unity",1],
|
|
836
|
-
ID["EPSG",8805]],
|
|
837
|
-
PARAMETER["False easting",500000,
|
|
838
|
-
LENGTHUNIT["metre",1],
|
|
839
|
-
ID["EPSG",8806]],
|
|
840
|
-
PARAMETER["False northing",0,
|
|
841
|
-
LENGTHUNIT["metre",1],
|
|
842
|
-
ID["EPSG",8807]]],
|
|
843
|
-
CS[Cartesian,2],
|
|
844
|
-
AXIS["easting (X)",east,
|
|
845
|
-
ORDER[1],
|
|
846
|
-
LENGTHUNIT["metre",1]],
|
|
847
|
-
AXIS["northing (Y)",north,
|
|
848
|
-
ORDER[2],
|
|
849
|
-
LENGTHUNIT["metre",1]],
|
|
850
|
-
USAGE[
|
|
851
|
-
SCOPE["Oil and gas exploration and production."],
|
|
852
|
-
AREA["Niger - southeast"],
|
|
853
|
-
BBOX[12.8,7.81,16.7,14.9]],
|
|
854
|
-
ID["EPSG",2931]]`,
|
|
855
|
-
ll: [5, 25],
|
|
856
|
-
xy: [-308919.1234711099, 2788738.255936392]
|
|
857
|
-
},
|
|
858
|
-
{
|
|
859
|
-
code: '+proj=lcc +lat_1=49.5 +lat_0=49.5 +lon_0=0 +k_0=0.999877341 +x_0=600000 +y_0=1200000 +ellps=clrk80ign +pm=paris +towgs84=-168,-60,320,0,0,0,0 +units=m +no_defs +type=crs',
|
|
860
|
-
ll: [2.294482, 48.859045],
|
|
861
|
-
xy: [596916.561147926957, 1128733.073948238511]
|
|
862
|
-
},
|
|
863
|
-
{
|
|
864
|
-
code: 'PROJCS["S-JTSK (Ferro) / Krovak",GEOGCS["S-JTSK (Ferro)",DATUM["S_JTSK_Ferro",SPHEROID["Bessel 1841",6377397.155,299.1528128,AUTHORITY["EPSG","7004"]],AUTHORITY["EPSG","6818"]],PRIMEM["Ferro",-17.66666666666667,AUTHORITY["EPSG","8909"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4818"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],PROJECTION["Krovak"],PARAMETER["latitude_of_center",49.5],PARAMETER["longitude_of_center",42.5],PARAMETER["azimuth",30.28813972222222],PARAMETER["pseudo_standard_parallel_1",78.5],PARAMETER["scale_factor",0.9999],PARAMETER["false_easting",0],PARAMETER["false_northing",0],AUTHORITY["EPSG","2065"],AXIS["Y",WEST],AXIS["X",SOUTH]]',
|
|
865
|
-
ll: [17.323583231075897, 49.39440725405376],
|
|
866
|
-
xy: [-544115.474379, -1144058.330762]
|
|
867
|
-
}, {
|
|
868
|
-
code: 'PROJCS["S-JTSK (Ferro) / Krovak",GEOGCS["S-JTSK (Ferro)",DATUM["D_S_JTSK",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Ferro",-17.66666666666667],UNIT["Degree",0.017453292519943295]],PROJECTION["Krovak"],PARAMETER["latitude_of_center",49.5],PARAMETER["longitude_of_center",42.5],PARAMETER["azimuth",30.28813972222222],PARAMETER["pseudo_standard_parallel_1",78.5],PARAMETER["scale_factor",0.9999],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["Meter",1]]',
|
|
869
|
-
ll: [17.323583231075897, 49.39440725405376],
|
|
870
|
-
xy: [-544115.474379, -1144058.330762]
|
|
871
|
-
},
|
|
872
|
-
{
|
|
873
|
-
code: `PROJCRS["S-JTSK (Ferro) / Krovak",
|
|
874
|
-
BASEGEOGCRS["S-JTSK (Ferro)",
|
|
875
|
-
DATUM["System of the Unified Trigonometrical Cadastral Network (Ferro)",
|
|
876
|
-
ELLIPSOID["Bessel 1841",6377397.155,299.1528128,
|
|
877
|
-
LENGTHUNIT["metre",1]]],
|
|
878
|
-
PRIMEM["Ferro",-17.6666666666667,
|
|
879
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
880
|
-
ID["EPSG",4818]],
|
|
881
|
-
CONVERSION["Krovak",
|
|
882
|
-
METHOD["Krovak",
|
|
883
|
-
ID["EPSG",9819]],
|
|
884
|
-
PARAMETER["Latitude of projection centre",49.5,
|
|
885
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
886
|
-
ID["EPSG",8811]],
|
|
887
|
-
PARAMETER["Longitude of origin",42.5,
|
|
888
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
889
|
-
ID["EPSG",8833]],
|
|
890
|
-
PARAMETER["Co-latitude of cone axis",30.2881397527778,
|
|
891
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
892
|
-
ID["EPSG",1036]],
|
|
893
|
-
PARAMETER["Latitude of pseudo standard parallel",78.5,
|
|
894
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
895
|
-
ID["EPSG",8818]],
|
|
896
|
-
PARAMETER["Scale factor on pseudo standard parallel",0.9999,
|
|
897
|
-
SCALEUNIT["unity",1],
|
|
898
|
-
ID["EPSG",8819]],
|
|
899
|
-
PARAMETER["False easting",0,
|
|
900
|
-
LENGTHUNIT["metre",1],
|
|
901
|
-
ID["EPSG",8806]],
|
|
902
|
-
PARAMETER["False northing",0,
|
|
903
|
-
LENGTHUNIT["metre",1],
|
|
904
|
-
ID["EPSG",8807]]],
|
|
905
|
-
CS[Cartesian,2],
|
|
906
|
-
AXIS["southing (X)",south,
|
|
907
|
-
ORDER[1],
|
|
908
|
-
LENGTHUNIT["metre",1]],
|
|
909
|
-
AXIS["westing (Y)",west,
|
|
910
|
-
ORDER[2],
|
|
911
|
-
LENGTHUNIT["metre",1]],
|
|
912
|
-
USAGE[
|
|
913
|
-
SCOPE["Cadastre in Czechia."],
|
|
914
|
-
AREA["Czechia; Slovakia."],
|
|
915
|
-
BBOX[47.73,12.09,51.06,22.56]],
|
|
916
|
-
ID["EPSG",2065]]`,
|
|
917
|
-
ll: [17.323583231075897, 49.39440725405376],
|
|
918
|
-
xy: [-544115.474379, -1144058.330762]
|
|
919
|
-
}, {
|
|
920
|
-
code: 'PROJCS["Sphere_Miller_Cylindrical",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000,0]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Miller_Cylindrical"],PARAMETER["False_Easting",0],PARAMETER["False_Northing",0],PARAMETER["Central_Meridian",0],UNIT["Meter",1]]',
|
|
921
|
-
ll: [-1.3973289073953, 12.649176474268513],
|
|
922
|
-
xy: [-155375.88535614178, 1404635.2633403721],
|
|
923
|
-
acc: {
|
|
924
|
-
ll: 3
|
|
925
|
-
}
|
|
926
|
-
}, {
|
|
927
|
-
code: 'PROJCS["Sphere_Miller_Cylindrical",GEOGCS["GCS_Sphere",DATUM["Not_specified_based_on_Authalic_Sphere",SPHEROID["Sphere",6371000,0]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Miller_Cylindrical"],PARAMETER["False_Easting",0],PARAMETER["False_Northing",0],PARAMETER["Central_Meridian",0],UNIT["Meter",1],AUTHORITY["EPSG","53003"]]',
|
|
928
|
-
ll: [-1.3973289073953, 12.649176474268513],
|
|
929
|
-
xy: [-155375.88535614178, 1404635.2633403721],
|
|
930
|
-
acc: {
|
|
931
|
-
ll: 3
|
|
932
|
-
}
|
|
933
|
-
}, {
|
|
934
|
-
code: { $schema: 'https://proj.org/schemas/v0.7/projjson.schema.json', type: 'ProjectedCRS', name: 'Sphere_Miller_Cylindrical', base_crs: { type: 'GeographicCRS', name: 'Unknown datum based upon the Authalic Sphere', datum: { type: 'GeodeticReferenceFrame', name: 'Not specified (based on Authalic Sphere)', ellipsoid: { name: 'Sphere', radius: 6371000 } }, coordinate_system: { subtype: 'ellipsoidal', axis: [{ name: 'Longitude', abbreviation: 'lon', direction: 'east', unit: { type: 'AngularUnit', name: 'Degree', conversion_factor: 0.0174532925199433 } }, { name: 'Latitude', abbreviation: 'lat', direction: 'north', unit: { type: 'AngularUnit', name: 'Degree', conversion_factor: 0.0174532925199433 } }] } }, conversion: { name: 'Sphere_Miller_Cylindrical', method: { name: 'Miller Cylindrical' }, parameters: [{ name: 'Longitude of natural origin', value: 0, unit: { type: 'AngularUnit', name: 'Degree', conversion_factor: 0.0174532925199433 }, id: { authority: 'EPSG', code: 8802 } }, { name: 'False easting', value: 0, unit: 'metre', id: { authority: 'EPSG', code: 8806 } }, { name: 'False northing', value: 0, unit: 'metre', id: { authority: 'EPSG', code: 8807 } }] }, coordinate_system: { subtype: 'Cartesian', axis: [{ name: 'Easting', abbreviation: 'E', direction: 'east', unit: 'metre' }, { name: 'Northing', abbreviation: 'N', direction: 'north', unit: 'metre' }] }, scope: 'Not known.', area: 'World.', bbox: { south_latitude: -90, west_longitude: -180, north_latitude: 90, east_longitude: 180 }, id: { authority: 'ESRI', code: 53003 } },
|
|
935
|
-
ll: [-1.3973289073953, 12.649176474268513],
|
|
936
|
-
xy: [-155375.88535614178, 1404635.2633403721],
|
|
937
|
-
acc: {
|
|
938
|
-
ll: 3
|
|
939
|
-
}
|
|
940
|
-
}, {
|
|
941
|
-
code: `PROJCRS["Sphere_Miller_Cylindrical",
|
|
942
|
-
BASEGEOGCRS["Unknown datum based upon the Authalic Sphere",
|
|
943
|
-
DATUM["Not specified (based on Authalic Sphere)",
|
|
944
|
-
ELLIPSOID["Sphere",6371000,0,
|
|
945
|
-
LENGTHUNIT["metre",1]]],
|
|
946
|
-
PRIMEM["Greenwich",0,
|
|
947
|
-
ANGLEUNIT["Degree",0.0174532925199433]]],
|
|
948
|
-
CONVERSION["Sphere_Miller_Cylindrical",
|
|
949
|
-
METHOD["Miller Cylindrical"],
|
|
950
|
-
PARAMETER["Longitude of natural origin",0,
|
|
951
|
-
ANGLEUNIT["Degree",0.0174532925199433],
|
|
952
|
-
ID["EPSG",8802]],
|
|
953
|
-
PARAMETER["False easting",0,
|
|
954
|
-
LENGTHUNIT["metre",1],
|
|
955
|
-
ID["EPSG",8806]],
|
|
956
|
-
PARAMETER["False northing",0,
|
|
957
|
-
LENGTHUNIT["metre",1],
|
|
958
|
-
ID["EPSG",8807]]],
|
|
959
|
-
CS[Cartesian,2],
|
|
960
|
-
AXIS["(E)",east,
|
|
961
|
-
ORDER[1],
|
|
962
|
-
LENGTHUNIT["metre",1]],
|
|
963
|
-
AXIS["(N)",north,
|
|
964
|
-
ORDER[2],
|
|
965
|
-
LENGTHUNIT["metre",1]],
|
|
966
|
-
USAGE[
|
|
967
|
-
SCOPE["Not known."],
|
|
968
|
-
AREA["World."],
|
|
969
|
-
BBOX[-90,-180,90,180]],
|
|
970
|
-
ID["ESRI",53003]]`,
|
|
971
|
-
ll: [-1.3973289073953, 12.649176474268513],
|
|
972
|
-
xy: [-155375.88535614178, 1404635.2633403721],
|
|
973
|
-
acc: {
|
|
974
|
-
ll: 3
|
|
975
|
-
}
|
|
976
|
-
}, {
|
|
977
|
-
code: 'PROJCS["NZGD49 / New Zealand Map Grid",GEOGCS["NZGD49",DATUM["D_New_Zealand_1949",SPHEROID["International_1924",6378388,297]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["New_Zealand_Map_Grid"],PARAMETER["latitude_of_origin",-41],PARAMETER["central_meridian",173],PARAMETER["false_easting",2510000],PARAMETER["false_northing",6023150],UNIT["Meter",1]]',
|
|
978
|
-
ll: [172.465, -40.7],
|
|
979
|
-
xy: [2464770.343667, 6056137.861919]
|
|
980
|
-
}, {
|
|
981
|
-
code: 'PROJCS["NZGD49 / New Zealand Map Grid",GEOGCS["NZGD49",DATUM["New_Zealand_Geodetic_Datum_1949",SPHEROID["International 1924",6378388,297,AUTHORITY["EPSG","7022"]],TOWGS84[59.47,-5.04,187.44,0.47,-0.1,1.024,-4.5993],AUTHORITY["EPSG","6272"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4272"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],PROJECTION["New_Zealand_Map_Grid"],PARAMETER["latitude_of_origin",-41],PARAMETER["central_meridian",173],PARAMETER["false_easting",2510000],PARAMETER["false_northing",6023150],AUTHORITY["EPSG","27200"],AXIS["Easting",EAST],AXIS["Northing",NORTH]]',
|
|
982
|
-
ll: [172.465, -40.7],
|
|
983
|
-
xy: [2464770.343667, 6056137.861919]
|
|
984
|
-
}, {
|
|
985
|
-
code: `PROJCRS["NZGD49 / New Zealand Map Grid",
|
|
986
|
-
BASEGEOGCRS["NZGD49",
|
|
987
|
-
DATUM["New Zealand Geodetic Datum 1949",
|
|
988
|
-
ELLIPSOID["International 1924",6378388,297,
|
|
989
|
-
LENGTHUNIT["metre",1]]],
|
|
990
|
-
PRIMEM["Greenwich",0,
|
|
991
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
992
|
-
ID["EPSG",4272]],
|
|
993
|
-
CONVERSION["New Zealand Map Grid",
|
|
994
|
-
METHOD["New Zealand Map Grid",
|
|
995
|
-
ID["EPSG",9811]],
|
|
996
|
-
PARAMETER["Latitude of natural origin",-41,
|
|
997
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
998
|
-
ID["EPSG",8801]],
|
|
999
|
-
PARAMETER["Longitude of natural origin",173,
|
|
1000
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1001
|
-
ID["EPSG",8802]],
|
|
1002
|
-
PARAMETER["False easting",2510000,
|
|
1003
|
-
LENGTHUNIT["metre",1],
|
|
1004
|
-
ID["EPSG",8806]],
|
|
1005
|
-
PARAMETER["False northing",6023150,
|
|
1006
|
-
LENGTHUNIT["metre",1],
|
|
1007
|
-
ID["EPSG",8807]]],
|
|
1008
|
-
CS[Cartesian,2],
|
|
1009
|
-
AXIS["(E)",east,
|
|
1010
|
-
ORDER[1],
|
|
1011
|
-
LENGTHUNIT["metre",1]],
|
|
1012
|
-
AXIS["(N)",north,
|
|
1013
|
-
ORDER[2],
|
|
1014
|
-
LENGTHUNIT["metre",1]],
|
|
1015
|
-
USAGE[
|
|
1016
|
-
SCOPE["Engineering survey, topographic mapping."],
|
|
1017
|
-
AREA["New Zealand - North Island, South Island, Stewart Island - onshore."],
|
|
1018
|
-
BBOX[-47.33,166.37,-34.1,178.63]],
|
|
1019
|
-
ID["EPSG",27200]]`,
|
|
1020
|
-
ll: [172.465, -40.7],
|
|
1021
|
-
xy: [2464770.343667, 6056137.861919]
|
|
1022
|
-
}, {
|
|
1023
|
-
code: 'PROJCS["Rassadiran / Nakhl e Taqi", GEOGCS["Rassadiran", DATUM["Rassadiran", SPHEROID["International 1924",6378388,297, AUTHORITY["EPSG","7022"]], TOWGS84[-133.63,-157.5,-158.62,0,0,0,0], AUTHORITY["EPSG","6153"]], PRIMEM["Greenwich",0, AUTHORITY["EPSG","8901"]], UNIT["degree",0.0174532925199433, AUTHORITY["EPSG","9122"]], AUTHORITY["EPSG","4153"]], PROJECTION["Hotine_Oblique_Mercator_Azimuth_Center"], PARAMETER["latitude_of_center",27.51882880555555], PARAMETER["longitude_of_center",52.60353916666667], PARAMETER["azimuth",0.5716611944444444], PARAMETER["rectified_grid_angle",0.5716611944444444], PARAMETER["scale_factor",0.999895934], PARAMETER["false_easting",658377.437], PARAMETER["false_northing",3044969.194], UNIT["metre",1, AUTHORITY["EPSG","9001"]], AXIS["Easting",EAST], AXIS["Northing",NORTH], AUTHORITY["EPSG","2057"]]',
|
|
1024
|
-
ll: [52.605, 27.5],
|
|
1025
|
-
xy: [658511.261946, 3043003.05468],
|
|
1026
|
-
acc: {
|
|
1027
|
-
ll: 8,
|
|
1028
|
-
xy: 6
|
|
1029
|
-
}
|
|
1030
|
-
}, {
|
|
1031
|
-
code: `PROJCRS["Rassadiran / Nakhl e Taqi",
|
|
1032
|
-
BASEGEOGCRS["Rassadiran",
|
|
1033
|
-
DATUM["Rassadiran",
|
|
1034
|
-
ELLIPSOID["International 1924",6378388,297,
|
|
1035
|
-
LENGTHUNIT["metre",1]]],
|
|
1036
|
-
PRIMEM["Greenwich",0,
|
|
1037
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
1038
|
-
ID["EPSG",4153]],
|
|
1039
|
-
CONVERSION["Nakhl e Taqi Oblique Mercator",
|
|
1040
|
-
METHOD["Hotine Oblique Mercator (variant B)",
|
|
1041
|
-
ID["EPSG",9815]],
|
|
1042
|
-
PARAMETER["Latitude of projection centre",27.5188288055556,
|
|
1043
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1044
|
-
ID["EPSG",8811]],
|
|
1045
|
-
PARAMETER["Longitude of projection centre",52.6035391666667,
|
|
1046
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1047
|
-
ID["EPSG",8812]],
|
|
1048
|
-
PARAMETER["Azimuth at projection centre",0.571661194444444,
|
|
1049
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1050
|
-
ID["EPSG",8813]],
|
|
1051
|
-
PARAMETER["Angle from Rectified to Skew Grid",0.571661194444444,
|
|
1052
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1053
|
-
ID["EPSG",8814]],
|
|
1054
|
-
PARAMETER["Scale factor at projection centre",0.999895934,
|
|
1055
|
-
SCALEUNIT["unity",1],
|
|
1056
|
-
ID["EPSG",8815]],
|
|
1057
|
-
PARAMETER["Easting at projection centre",658377.437,
|
|
1058
|
-
LENGTHUNIT["metre",1],
|
|
1059
|
-
ID["EPSG",8816]],
|
|
1060
|
-
PARAMETER["Northing at projection centre",3044969.194,
|
|
1061
|
-
LENGTHUNIT["metre",1],
|
|
1062
|
-
ID["EPSG",8817]]],
|
|
1063
|
-
CS[Cartesian,2],
|
|
1064
|
-
AXIS["(E)",east,
|
|
1065
|
-
ORDER[1],
|
|
1066
|
-
LENGTHUNIT["metre",1]],
|
|
1067
|
-
AXIS["(N)",north,
|
|
1068
|
-
ORDER[2],
|
|
1069
|
-
LENGTHUNIT["metre",1]],
|
|
1070
|
-
USAGE[
|
|
1071
|
-
SCOPE["Engineering survey."],
|
|
1072
|
-
AREA["Iran - Taheri refinery site."],
|
|
1073
|
-
BBOX[27.39,52.5,27.61,52.71]],
|
|
1074
|
-
ID["EPSG",2057]]`,
|
|
1075
|
-
ll: [52.605, 27.5],
|
|
1076
|
-
xy: [658511.261946, 3043003.05468],
|
|
1077
|
-
acc: {
|
|
1078
|
-
ll: 8,
|
|
1079
|
-
xy: 6
|
|
1080
|
-
}
|
|
1081
|
-
}, {
|
|
1082
|
-
code: 'PROJCS["SAD69 / Brazil Polyconic",GEOGCS["SAD69",DATUM["D_South_American_1969",SPHEROID["GRS_1967_SAD69",6378160,298.25]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Polyconic"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",-54],PARAMETER["false_easting",5000000],PARAMETER["false_northing",10000000],UNIT["Meter",1]]',
|
|
1083
|
-
ll: [-49.221772553812, -0.34551739237581],
|
|
1084
|
-
xy: [5531902.134932, 9961660.779347],
|
|
1085
|
-
acc: {
|
|
1086
|
-
ll: 3,
|
|
1087
|
-
xy: -2
|
|
1088
|
-
}
|
|
1089
|
-
}, {
|
|
1090
|
-
code: 'PROJCS["SAD69 / Brazil Polyconic",GEOGCS["SAD69",DATUM["South_American_Datum_1969",SPHEROID["GRS 1967 (SAD69)",6378160,298.25,AUTHORITY["EPSG","7050"]],AUTHORITY["EPSG","6618"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4618"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],PROJECTION["Polyconic"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",-54],PARAMETER["false_easting",5000000],PARAMETER["false_northing",10000000],AUTHORITY["EPSG","29101"],AXIS["X",EAST],AXIS["Y",NORTH]]',
|
|
1091
|
-
ll: [-49.221772553812, -0.34551739237581],
|
|
1092
|
-
xy: [5531902.134932, 9961660.779347],
|
|
1093
|
-
acc: {
|
|
1094
|
-
ll: 3,
|
|
1095
|
-
xy: -2
|
|
1096
|
-
}
|
|
1097
|
-
}, {
|
|
1098
|
-
code: `PROJCRS["SAD69 / Brazil Polyconic",
|
|
1099
|
-
BASEGEOGCRS["SAD69",
|
|
1100
|
-
DATUM["South American Datum 1969",
|
|
1101
|
-
ELLIPSOID["GRS 1967 Modified",6378160,298.25,
|
|
1102
|
-
LENGTHUNIT["metre",1]]],
|
|
1103
|
-
PRIMEM["Greenwich",0,
|
|
1104
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
1105
|
-
ID["EPSG",4618]],
|
|
1106
|
-
CONVERSION["Brazil Polyconic",
|
|
1107
|
-
METHOD["American Polyconic",
|
|
1108
|
-
ID["EPSG",9818]],
|
|
1109
|
-
PARAMETER["Latitude of natural origin",0,
|
|
1110
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1111
|
-
ID["EPSG",8801]],
|
|
1112
|
-
PARAMETER["Longitude of natural origin",-54,
|
|
1113
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1114
|
-
ID["EPSG",8802]],
|
|
1115
|
-
PARAMETER["False easting",5000000,
|
|
1116
|
-
LENGTHUNIT["metre",1],
|
|
1117
|
-
ID["EPSG",8806]],
|
|
1118
|
-
PARAMETER["False northing",10000000,
|
|
1119
|
-
LENGTHUNIT["metre",1],
|
|
1120
|
-
ID["EPSG",8807]]],
|
|
1121
|
-
CS[Cartesian,2],
|
|
1122
|
-
AXIS["easting (X)",east,
|
|
1123
|
-
ORDER[1],
|
|
1124
|
-
LENGTHUNIT["metre",1]],
|
|
1125
|
-
AXIS["northing (Y)",north,
|
|
1126
|
-
ORDER[2],
|
|
1127
|
-
LENGTHUNIT["metre",1]],
|
|
1128
|
-
USAGE[
|
|
1129
|
-
SCOPE["Topographic mapping (small scale)."],
|
|
1130
|
-
AREA["Brazil - onshore and offshore. Includes Rocas, Fernando de Noronha archipelago, Trindade, Ihlas Martim Vaz and Sao Pedro e Sao Paulo."],
|
|
1131
|
-
BBOX[-35.71,-74.01,7.04,-25.28]],
|
|
1132
|
-
ID["EPSG",29101]]`,
|
|
1133
|
-
ll: [-49.221772553812, -0.34551739237581],
|
|
1134
|
-
xy: [5531902.134932, 9961660.779347],
|
|
1135
|
-
acc: {
|
|
1136
|
-
ll: 3,
|
|
1137
|
-
xy: -2
|
|
1138
|
-
}
|
|
1139
|
-
}, {
|
|
1140
|
-
code: 'PROJCS["WGS 84 / UPS North",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],PROJECTION["Polar_Stereographic"],PARAMETER["latitude_of_origin",90],PARAMETER["central_meridian",0],PARAMETER["scale_factor",0.994],PARAMETER["false_easting",2000000],PARAMETER["false_northing",2000000],AUTHORITY["EPSG","32661"],AXIS["Easting",UNKNOWN],AXIS["Northing",UNKNOWN]]',
|
|
1141
|
-
ll: [0, 75],
|
|
1142
|
-
xy: [2000000, 325449.806286]
|
|
1143
|
-
}, {
|
|
1144
|
-
code: 'PROJCS["WGS 84 / UPS North",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Stereographic_North_Pole"],PARAMETER["standard_parallel_1",90],PARAMETER["central_meridian",0],PARAMETER["scale_factor",0.994],PARAMETER["false_easting",2000000],PARAMETER["false_northing",2000000],UNIT["Meter",1]]',
|
|
1145
|
-
ll: [0, 75],
|
|
1146
|
-
xy: [2000000, 325449.806286]
|
|
1147
|
-
}, {
|
|
1148
|
-
code: `PROJCRS["WGS 84 / UPS North (N,E)",
|
|
1149
|
-
BASEGEOGCRS["WGS 84",
|
|
1150
|
-
ENSEMBLE["World Geodetic System 1984 ensemble",
|
|
1151
|
-
MEMBER["World Geodetic System 1984 (Transit)"],
|
|
1152
|
-
MEMBER["World Geodetic System 1984 (G730)"],
|
|
1153
|
-
MEMBER["World Geodetic System 1984 (G873)"],
|
|
1154
|
-
MEMBER["World Geodetic System 1984 (G1150)"],
|
|
1155
|
-
MEMBER["World Geodetic System 1984 (G1674)"],
|
|
1156
|
-
MEMBER["World Geodetic System 1984 (G1762)"],
|
|
1157
|
-
MEMBER["World Geodetic System 1984 (G2139)"],
|
|
1158
|
-
MEMBER["World Geodetic System 1984 (G2296)"],
|
|
1159
|
-
ELLIPSOID["WGS 84",6378137,298.257223563,
|
|
1160
|
-
LENGTHUNIT["metre",1]],
|
|
1161
|
-
ENSEMBLEACCURACY[2.0]],
|
|
1162
|
-
PRIMEM["Greenwich",0,
|
|
1163
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
1164
|
-
ID["EPSG",4326]],
|
|
1165
|
-
CONVERSION["Universal Polar Stereographic North",
|
|
1166
|
-
METHOD["Polar Stereographic (variant A)",
|
|
1167
|
-
ID["EPSG",9810]],
|
|
1168
|
-
PARAMETER["Latitude of natural origin",90,
|
|
1169
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1170
|
-
ID["EPSG",8801]],
|
|
1171
|
-
PARAMETER["Longitude of natural origin",0,
|
|
1172
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1173
|
-
ID["EPSG",8802]],
|
|
1174
|
-
PARAMETER["Scale factor at natural origin",0.994,
|
|
1175
|
-
SCALEUNIT["unity",1],
|
|
1176
|
-
ID["EPSG",8805]],
|
|
1177
|
-
PARAMETER["False easting",2000000,
|
|
1178
|
-
LENGTHUNIT["metre",1],
|
|
1179
|
-
ID["EPSG",8806]],
|
|
1180
|
-
PARAMETER["False northing",2000000,
|
|
1181
|
-
LENGTHUNIT["metre",1],
|
|
1182
|
-
ID["EPSG",8807]]],
|
|
1183
|
-
CS[Cartesian,2],
|
|
1184
|
-
AXIS["northing (N)",south,
|
|
1185
|
-
MERIDIAN[180,
|
|
1186
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
1187
|
-
ORDER[1],
|
|
1188
|
-
LENGTHUNIT["metre",1]],
|
|
1189
|
-
AXIS["easting (E)",south,
|
|
1190
|
-
MERIDIAN[90,
|
|
1191
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
1192
|
-
ORDER[2],
|
|
1193
|
-
LENGTHUNIT["metre",1]],
|
|
1194
|
-
USAGE[
|
|
1195
|
-
SCOPE["Military survey."],
|
|
1196
|
-
AREA["Northern hemisphere - north of 60°N onshore and offshore, including Arctic."],
|
|
1197
|
-
BBOX[60,-180,90,180]],
|
|
1198
|
-
ID["EPSG",32661]]`,
|
|
1199
|
-
ll: [0, 75],
|
|
1200
|
-
xy: [2000000, 325449.806286]
|
|
1201
|
-
}, {
|
|
1202
|
-
code: '+proj=aeqd +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs',
|
|
1203
|
-
ll: [0, 0],
|
|
1204
|
-
xy: [0, 0]
|
|
1205
|
-
}, {
|
|
1206
|
-
code: '+proj=aeqd +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs',
|
|
1207
|
-
ll: [2, 0],
|
|
1208
|
-
xy: [222638.98158654713, 0]
|
|
1209
|
-
}, {
|
|
1210
|
-
code: '+proj=aeqd +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs',
|
|
1211
|
-
ll: [89, 0],
|
|
1212
|
-
xy: [9907434.680601347, 0]
|
|
1213
|
-
}, {
|
|
1214
|
-
code: '+proj=aeqd +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs',
|
|
1215
|
-
ll: [0, -52],
|
|
1216
|
-
xy: [0, -5763343.550010418]
|
|
1217
|
-
}, {
|
|
1218
|
-
code: '+proj=aeqd +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs',
|
|
1219
|
-
ll: [145, 0],
|
|
1220
|
-
xy: [16141326.16502467, 0]
|
|
1221
|
-
}, {
|
|
1222
|
-
code: '+proj=aeqd +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs',
|
|
1223
|
-
ll: [-145, 0],
|
|
1224
|
-
xy: [-16141326.16502467, 0]
|
|
1225
|
-
}, {
|
|
1226
|
-
code: '+proj=aeqd +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs',
|
|
1227
|
-
ll: [91, 0],
|
|
1228
|
-
xy: [10130073.6622, 0]
|
|
1229
|
-
}, {
|
|
1230
|
-
code: '+proj=aeqd +lat_0=83.6625 +lon_0=-29.8333 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs',
|
|
1231
|
-
ll: [150.1667, 87.38418697931058],
|
|
1232
|
-
xy: [0, 1000000]
|
|
1233
|
-
}, {
|
|
1234
|
-
code: '+proj=aeqd +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +a=6371000 +b=6371000 +units=m +no_defs',
|
|
1235
|
-
ll: [91, 0],
|
|
1236
|
-
xy: [10118738.32, 0.00]
|
|
1237
|
-
}, {
|
|
1238
|
-
code: '+proj=laea +lat_0=2 +lon_0=1 +x_0=0 +y_0=0 +a=6371000 +b=6371000 +units=m +no_defs',
|
|
1239
|
-
ll: [1, 2],
|
|
1240
|
-
xy: [0, 0]
|
|
1241
|
-
}, {
|
|
1242
|
-
code: '+proj=laea +lat_0=1 +lon_0=1 +x_0=0 +y_0=0 +a=6371000 +b=6371000 +units=m +no_defs',
|
|
1243
|
-
ll: [1, 1],
|
|
1244
|
-
xy: [0, 0]
|
|
1245
|
-
}, {
|
|
1246
|
-
code: '+proj=laea +lat_0=1 +lon_0=1 +x_0=0 +y_0=0 +a=6371000 +b=6371000 +units=m +no_defs',
|
|
1247
|
-
ll: [2, 1],
|
|
1248
|
-
xy: [111176.58, 16.93]
|
|
1249
|
-
}, {
|
|
1250
|
-
code: '+proj=laea +lat_0=1 +lon_0=1 +x_0=0 +y_0=0 +a=6371000 +b=6371000 +units=m +no_defs',
|
|
1251
|
-
ll: [1, 2],
|
|
1252
|
-
xy: [0.00, 111193.52]
|
|
1253
|
-
}, {
|
|
1254
|
-
code: '+proj=laea +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +a=6371000 +b=6371000 +units=m +no_defs',
|
|
1255
|
-
ll: [19, 0],
|
|
1256
|
-
xy: [2103036.59, 0.00]
|
|
1257
|
-
}, {
|
|
1258
|
-
code: '+proj=stere +lat_0=-90 +lat_ts=-70 +lon_0=0 +k=1 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs"',
|
|
1259
|
-
ll: [0, -72.5],
|
|
1260
|
-
xy: [0, 1910008.78441421]
|
|
1261
|
-
}, {
|
|
1262
|
-
code: '+proj=stere +lat_0=-90 +lon_0=0 +x_0=0 +y_0=0 +a=3396000 +b=3396000 +units=m +no_defs',
|
|
1263
|
-
ll: [0, -72.5],
|
|
1264
|
-
xy: [0, 1045388.79]
|
|
1265
|
-
}, {
|
|
1266
|
-
code: '+proj=stere',
|
|
1267
|
-
ll: [0, -72.5],
|
|
1268
|
-
xy: [0, -9334375.897187851]
|
|
1269
|
-
}, {
|
|
1270
|
-
// Test that lat_ts at a pole is handled correctly in stere projection
|
|
1271
|
-
code: '+no_defs +units=m +ellps=GRS80 +lon_0=0 +proj=stere +lat_ts=90.0 +lat_0=90 +x_0=0 +y_0=0',
|
|
1272
|
-
ll: [69.648700, 18.955781],
|
|
1273
|
-
xy: [8527917.706, -3163255.729]
|
|
1274
|
-
}, {
|
|
1275
|
-
code: 'PROJCS["WGS 84 / NSIDC Sea Ice Polar Stereographic South", GEOGCS["WGS 84", DATUM["World Geodetic System 1984", SPHEROID["WGS 84", 6378137.0, 298.257223563, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4326"]], PROJECTION["Polar Stereographic (variant B)", AUTHORITY["EPSG","9829"]], PARAMETER["central_meridian", 0.0], PARAMETER["Standard_Parallel_1", -70.0], PARAMETER["false_easting", 0.0], PARAMETER["false_northing", 0.0], UNIT["m", 1.0], AXIS["Easting", "North along 90 deg East"], AXIS["Northing", "North along 0 deg"], AUTHORITY["EPSG","3976"]]',
|
|
1276
|
-
ll: [0, -72.5],
|
|
1277
|
-
xy: [0, 1910008.78441421]
|
|
1278
|
-
}, {
|
|
1279
|
-
code: `PROJCRS["WGS 84 / NSIDC Sea Ice Polar Stereographic South",
|
|
1280
|
-
BASEGEOGCRS["WGS 84",
|
|
1281
|
-
ENSEMBLE["World Geodetic System 1984 ensemble",
|
|
1282
|
-
MEMBER["World Geodetic System 1984 (Transit)"],
|
|
1283
|
-
MEMBER["World Geodetic System 1984 (G730)"],
|
|
1284
|
-
MEMBER["World Geodetic System 1984 (G873)"],
|
|
1285
|
-
MEMBER["World Geodetic System 1984 (G1150)"],
|
|
1286
|
-
MEMBER["World Geodetic System 1984 (G1674)"],
|
|
1287
|
-
MEMBER["World Geodetic System 1984 (G1762)"],
|
|
1288
|
-
MEMBER["World Geodetic System 1984 (G2139)"],
|
|
1289
|
-
MEMBER["World Geodetic System 1984 (G2296)"],
|
|
1290
|
-
ELLIPSOID["WGS 84",6378137,298.257223563,
|
|
1291
|
-
LENGTHUNIT["metre",1]],
|
|
1292
|
-
ENSEMBLEACCURACY[2.0]],
|
|
1293
|
-
PRIMEM["Greenwich",0,
|
|
1294
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
1295
|
-
ID["EPSG",4326]],
|
|
1296
|
-
CONVERSION["US NSIDC Sea Ice polar stereographic south",
|
|
1297
|
-
METHOD["Polar Stereographic (variant B)",
|
|
1298
|
-
ID["EPSG",9829]],
|
|
1299
|
-
PARAMETER["Latitude of standard parallel",-70,
|
|
1300
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1301
|
-
ID["EPSG",8832]],
|
|
1302
|
-
PARAMETER["Longitude of origin",0,
|
|
1303
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1304
|
-
ID["EPSG",8833]],
|
|
1305
|
-
PARAMETER["False easting",0,
|
|
1306
|
-
LENGTHUNIT["metre",1],
|
|
1307
|
-
ID["EPSG",8806]],
|
|
1308
|
-
PARAMETER["False northing",0,
|
|
1309
|
-
LENGTHUNIT["metre",1],
|
|
1310
|
-
ID["EPSG",8807]]],
|
|
1311
|
-
CS[Cartesian,2],
|
|
1312
|
-
AXIS["easting (X)",north,
|
|
1313
|
-
MERIDIAN[90,
|
|
1314
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
1315
|
-
ORDER[1],
|
|
1316
|
-
LENGTHUNIT["metre",1]],
|
|
1317
|
-
AXIS["northing (Y)",north,
|
|
1318
|
-
MERIDIAN[0,
|
|
1319
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
1320
|
-
ORDER[2],
|
|
1321
|
-
LENGTHUNIT["metre",1]],
|
|
1322
|
-
USAGE[
|
|
1323
|
-
SCOPE["Polar research."],
|
|
1324
|
-
AREA["Southern hemisphere - south of 60°S onshore and offshore - Antarctica."],
|
|
1325
|
-
BBOX[-90,-180,-60,180]],
|
|
1326
|
-
ID["EPSG",3976]]`,
|
|
1327
|
-
ll: [0, -72.5],
|
|
1328
|
-
xy: [0, 1910008.78441421]
|
|
1329
|
-
}, {
|
|
1330
|
-
code: 'PROJCS["NAD83(CSRS98) / New Brunswick Stereo (deprecated)",GEOGCS["NAD83(CSRS98)",DATUM["D_North_American_1983_CSRS98",SPHEROID["GRS_1980",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Stereographic_North_Pole"],PARAMETER["standard_parallel_1",46.5],PARAMETER["central_meridian",-66.5],PARAMETER["scale_factor",0.999912],PARAMETER["false_easting",2500000],PARAMETER["false_northing",7500000],UNIT["Meter",1]]',
|
|
1331
|
-
ll: [-66.415, 46.34],
|
|
1332
|
-
xy: [2506543.370459, 7482219.546176]
|
|
1333
|
-
}, {
|
|
1334
|
-
code: 'PROJCS["NAD83(CSRS98) / New Brunswick Stereo (deprecated)",GEOGCS["NAD83(CSRS98)",DATUM["NAD83_Canadian_Spatial_Reference_System",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],TOWGS84[0,0,0,0,0,0,0],AUTHORITY["EPSG","6140"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9108"]],AUTHORITY["EPSG","4140"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],PROJECTION["Oblique_Stereographic"],PARAMETER["latitude_of_origin",46.5],PARAMETER["central_meridian",-66.5],PARAMETER["scale_factor",0.999912],PARAMETER["false_easting",2500000],PARAMETER["false_northing",7500000],AUTHORITY["EPSG","2036"],AXIS["Easting",EAST],AXIS["Northing",NORTH]]',
|
|
1335
|
-
ll: [-66.415, 46.34],
|
|
1336
|
-
xy: [2506543.370459, 7482219.546176]
|
|
1337
|
-
}, {
|
|
1338
|
-
code: `PROJCRS["NAD83(CSRS98) / New Brunswick Stereo",
|
|
1339
|
-
BASEGEOGCRS["NAD83(CSRS98)",
|
|
1340
|
-
DATUM["NAD83 Canadian Spatial Reference System",
|
|
1341
|
-
ELLIPSOID["GRS 1980",6378137,298.257222101,
|
|
1342
|
-
LENGTHUNIT["metre",1]]],
|
|
1343
|
-
PRIMEM["Greenwich",0,
|
|
1344
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
1345
|
-
ID["EPSG",4140]],
|
|
1346
|
-
CONVERSION["New Brunswick Stereographic (NAD83)",
|
|
1347
|
-
METHOD["Oblique Stereographic",
|
|
1348
|
-
ID["EPSG",9809]],
|
|
1349
|
-
PARAMETER["Latitude of natural origin",46.5,
|
|
1350
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1351
|
-
ID["EPSG",8801]],
|
|
1352
|
-
PARAMETER["Longitude of natural origin",-66.5,
|
|
1353
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1354
|
-
ID["EPSG",8802]],
|
|
1355
|
-
PARAMETER["Scale factor at natural origin",0.999912,
|
|
1356
|
-
SCALEUNIT["unity",1],
|
|
1357
|
-
ID["EPSG",8805]],
|
|
1358
|
-
PARAMETER["False easting",2500000,
|
|
1359
|
-
LENGTHUNIT["metre",1],
|
|
1360
|
-
ID["EPSG",8806]],
|
|
1361
|
-
PARAMETER["False northing",7500000,
|
|
1362
|
-
LENGTHUNIT["metre",1],
|
|
1363
|
-
ID["EPSG",8807]]],
|
|
1364
|
-
CS[Cartesian,2],
|
|
1365
|
-
AXIS["northing (N)",north,
|
|
1366
|
-
ORDER[1],
|
|
1367
|
-
LENGTHUNIT["metre",1]],
|
|
1368
|
-
AXIS["easting (E)",east,
|
|
1369
|
-
ORDER[2],
|
|
1370
|
-
LENGTHUNIT["metre",1]],
|
|
1371
|
-
USAGE[
|
|
1372
|
-
SCOPE["Engineering survey, topographic mapping."],
|
|
1373
|
-
AREA["Canada - New Brunswick."],
|
|
1374
|
-
BBOX[44.56,-69.05,48.07,-63.7]],
|
|
1375
|
-
ID["EPSG",2036]]`,
|
|
1376
|
-
ll: [-66.415, 46.34],
|
|
1377
|
-
xy: [2506543.370459, 7482219.546176]
|
|
1378
|
-
}, {
|
|
1379
|
-
code: 'PROJCS["Sphere_Van_der_Grinten_I",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000,0]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Van_der_Grinten_I"],PARAMETER["False_Easting",0],PARAMETER["False_Northing",0],PARAMETER["Central_Meridian",0],UNIT["Meter",1]]',
|
|
1380
|
-
ll: [-1.41160801956, 67.40891366748],
|
|
1381
|
-
xy: [-125108.675828, 9016899.042114],
|
|
1382
|
-
acc: {
|
|
1383
|
-
ll: 0,
|
|
1384
|
-
xy: -5
|
|
1385
|
-
}
|
|
1386
|
-
}, {
|
|
1387
|
-
code: 'PROJCS["Sphere_Van_der_Grinten_I",GEOGCS["GCS_Sphere",DATUM["Not_specified_based_on_Authalic_Sphere",SPHEROID["Sphere",6371000,0]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["VanDerGrinten"],PARAMETER["False_Easting",0],PARAMETER["False_Northing",0],PARAMETER["Central_Meridian",0],UNIT["Meter",1],AUTHORITY["EPSG","53029"]]',
|
|
1388
|
-
ll: [-1.41160801956, 67.40891366748],
|
|
1389
|
-
xy: [-125108.675828, 9016899.042114],
|
|
1390
|
-
acc: {
|
|
1391
|
-
ll: 0,
|
|
1392
|
-
xy: -5
|
|
1393
|
-
}
|
|
1394
|
-
}, {
|
|
1395
|
-
code: `PROJCRS["Sphere_Van_der_Grinten_I",
|
|
1396
|
-
BASEGEOGCRS["Unknown datum based upon the Authalic Sphere",
|
|
1397
|
-
DATUM["Not specified (based on Authalic Sphere)",
|
|
1398
|
-
ELLIPSOID["Sphere",6371000,0,
|
|
1399
|
-
LENGTHUNIT["metre",1]]],
|
|
1400
|
-
PRIMEM["Greenwich",0,
|
|
1401
|
-
ANGLEUNIT["Degree",0.0174532925199433]]],
|
|
1402
|
-
CONVERSION["Sphere_Van_der_Grinten_I",
|
|
1403
|
-
METHOD["Van Der Grinten"],
|
|
1404
|
-
PARAMETER["Longitude of natural origin",0,
|
|
1405
|
-
ANGLEUNIT["Degree",0.0174532925199433],
|
|
1406
|
-
ID["EPSG",8802]],
|
|
1407
|
-
PARAMETER["False easting",0,
|
|
1408
|
-
LENGTHUNIT["metre",1],
|
|
1409
|
-
ID["EPSG",8806]],
|
|
1410
|
-
PARAMETER["False northing",0,
|
|
1411
|
-
LENGTHUNIT["metre",1],
|
|
1412
|
-
ID["EPSG",8807]]],
|
|
1413
|
-
CS[Cartesian,2],
|
|
1414
|
-
AXIS["(E)",east,
|
|
1415
|
-
ORDER[1],
|
|
1416
|
-
LENGTHUNIT["metre",1]],
|
|
1417
|
-
AXIS["(N)",north,
|
|
1418
|
-
ORDER[2],
|
|
1419
|
-
LENGTHUNIT["metre",1]],
|
|
1420
|
-
USAGE[
|
|
1421
|
-
SCOPE["Not known."],
|
|
1422
|
-
AREA["World."],
|
|
1423
|
-
BBOX[-90,-180,90,180]],
|
|
1424
|
-
ID["ESRI",53029]]`,
|
|
1425
|
-
ll: [-1.41160801956, 67.40891366748],
|
|
1426
|
-
xy: [-125108.675828, 9016899.042114],
|
|
1427
|
-
acc: {
|
|
1428
|
-
ll: 0,
|
|
1429
|
-
xy: -5
|
|
1430
|
-
}
|
|
1431
|
-
}, {
|
|
1432
|
-
code: 'PROJCS["NAD_1983_StatePlane_New_Jersey_FIPS_2900_Feet",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",492125.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-74.5],PARAMETER["Scale_Factor",0.9999],PARAMETER["Latitude_Of_Origin",38.83333333333334],UNIT["Foot_US",0.3048006096012192]]',
|
|
1433
|
-
ll: [-74, 41],
|
|
1434
|
-
xy: [630128.205, 789591.522]
|
|
1435
|
-
},
|
|
1436
|
-
{
|
|
1437
|
-
code: `PROJCRS["NAD_1983_StatePlane_New_Jersey_FIPS_2900_Feet",
|
|
1438
|
-
BASEGEOGCRS["NAD83",
|
|
1439
|
-
DATUM["North American Datum 1983",
|
|
1440
|
-
ELLIPSOID["GRS 1980",6378137,298.257222101,
|
|
1441
|
-
LENGTHUNIT["metre",1]]],
|
|
1442
|
-
PRIMEM["Greenwich",0,
|
|
1443
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
1444
|
-
ID["EPSG",4269]],
|
|
1445
|
-
CONVERSION["NAD_1983_StatePlane_New_Jersey_FIPS_2900_Feet",
|
|
1446
|
-
METHOD["Transverse Mercator",
|
|
1447
|
-
ID["EPSG",9807]],
|
|
1448
|
-
PARAMETER["Latitude of natural origin",38.8333333333333,
|
|
1449
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1450
|
-
ID["EPSG",8801]],
|
|
1451
|
-
PARAMETER["Longitude of natural origin",-74.5,
|
|
1452
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1453
|
-
ID["EPSG",8802]],
|
|
1454
|
-
PARAMETER["Scale factor at natural origin",0.9999,
|
|
1455
|
-
SCALEUNIT["unity",1],
|
|
1456
|
-
ID["EPSG",8805]],
|
|
1457
|
-
PARAMETER["False easting",492125,
|
|
1458
|
-
LENGTHUNIT["US survey foot",0.304800609601219],
|
|
1459
|
-
ID["EPSG",8806]],
|
|
1460
|
-
PARAMETER["False northing",0,
|
|
1461
|
-
LENGTHUNIT["US survey foot",0.304800609601219],
|
|
1462
|
-
ID["EPSG",8807]]],
|
|
1463
|
-
CS[Cartesian,2],
|
|
1464
|
-
AXIS["easting (X)",east,
|
|
1465
|
-
ORDER[1],
|
|
1466
|
-
LENGTHUNIT["US survey foot",0.304800609601219]],
|
|
1467
|
-
AXIS["northing (Y)",north,
|
|
1468
|
-
ORDER[2],
|
|
1469
|
-
LENGTHUNIT["US survey foot",0.304800609601219]],
|
|
1470
|
-
USAGE[
|
|
1471
|
-
SCOPE["Not known."],
|
|
1472
|
-
AREA["United States (USA) - New Jersey - counties of Atlantic; Bergen; Burlington; Camden; Cape May; Cumberland; Essex; Gloucester; Hudson; Hunterdon; Mercer; Middlesex; Monmouth; Morris; Ocean; Passaic; Salem; Somerset; Sussex; Union; Warren."],
|
|
1473
|
-
BBOX[38.87,-75.6,41.36,-73.88]],
|
|
1474
|
-
ID["ESRI",102711]]`,
|
|
1475
|
-
ll: [-74, 41],
|
|
1476
|
-
xy: [630128.205, 789591.522]
|
|
1477
|
-
},
|
|
1478
|
-
{
|
|
1479
|
-
code: 'esriOnline',
|
|
1480
|
-
ll: [-74, 41],
|
|
1481
|
-
xy: [-8237642.318702244, 5012341.663847514]
|
|
1482
|
-
},
|
|
1483
|
-
{
|
|
1484
|
-
code: '+proj=sinu +lon_0=0 +x_0=0 +y_0=0 +a=6371000 +b=6371000 +units=m +no_defs',
|
|
1485
|
-
xy: [736106.55, 5893331.11],
|
|
1486
|
-
ll: [11.0, 53.0]
|
|
1487
|
-
},
|
|
1488
|
-
{
|
|
1489
|
-
code: 'PROJCS["Belge 1972 / Belgian Lambert 72",GEOGCS["Belge 1972",DATUM["Reseau_National_Belge_1972",SPHEROID["International 1924",6378388,297,AUTHORITY["EPSG","7022"]],TOWGS84[106.869,-52.2978,103.724,-0.33657,0.456955,-1.84218,1],AUTHORITY["EPSG","6313"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4313"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["standard_parallel_1",51.16666723333333],PARAMETER["standard_parallel_2",49.8333339],PARAMETER["latitude_of_origin",90],PARAMETER["central_meridian",4.367486666666666],PARAMETER["false_easting",150000.013],PARAMETER["false_northing",5400088.438],AUTHORITY["EPSG","31370"],AXIS["X",EAST],AXIS["Y",NORTH]]',
|
|
1490
|
-
xy: [104588.196404, 193175.582367],
|
|
1491
|
-
ll: [3.7186701465384533, 51.04642936832842]
|
|
1492
|
-
},
|
|
1493
|
-
{
|
|
1494
|
-
code: 'PROJCS["Belge 1972 / Belgian Lambert 72",GEOGCS["Belge 1972",DATUM["D_Belge_1972",SPHEROID["International_1924",6378388,297]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Lambert_Conformal_Conic"],PARAMETER["standard_parallel_1",51.16666723333333],PARAMETER["standard_parallel_2",49.8333339],PARAMETER["latitude_of_origin",90],PARAMETER["central_meridian",4.367486666666666],PARAMETER["false_easting",150000.013],PARAMETER["false_northing",5400088.438],UNIT["Meter",1]]',
|
|
1495
|
-
xy: [104588.196404, 193175.582367],
|
|
1496
|
-
ll: [3.7186701465384533, 51.04642936832842]
|
|
1497
|
-
},
|
|
1498
|
-
{
|
|
1499
|
-
code: 'PROJCS["Belge 1972 / Belgian Lambert 72",GEOGCS["Belge 1972",DATUM["Reseau_National_Belge_1972",SPHEROID["International 1924",6378388,297,AUTHORITY["EPSG","7022"]],TOWGS84[-106.8686,52.2978,-103.7239,-0.3366,0.457,-1.8422,-1.2747],AUTHORITY["EPSG","6313"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4313"]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["standard_parallel_1",51.16666723333333],PARAMETER["standard_parallel_2",49.8333339],PARAMETER["latitude_of_origin",90],PARAMETER["central_meridian",4.367486666666666],PARAMETER["false_easting",150000.013],PARAMETER["false_northing",5400088.438],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["X",EAST],AXIS["Y",NORTH],AUTHORITY["EPSG","31370"]]',
|
|
1500
|
-
xy: [104469.69796438649, 193146.39675426576],
|
|
1501
|
-
ll: [3.7186701465384533, 51.04642936832842]
|
|
1502
|
-
},
|
|
1503
|
-
{
|
|
1504
|
-
code: 'PROJCS["Belge 1972 / Belgian Lambert 72",GEOGCS["Belge 1972",DATUM["Reseau_National_Belge_1972",SPHEROID["International 1924",6378388,297,AUTHORITY["EPSG","7022"]],TOWGS84[-99.059,53.322,-112.486,-0.419,0.83,-1.885,-1],AUTHORITY["EPSG","6313"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4313"]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["standard_parallel_1",51.16666723333333],PARAMETER["standard_parallel_2",49.8333339],PARAMETER["latitude_of_origin",90],PARAMETER["central_meridian",4.367486666666666],PARAMETER["false_easting",150000.013],PARAMETER["false_northing",5400088.438],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["X",EAST],AXIS["Y",NORTH],AUTHORITY["EPSG","31370"]]',
|
|
1505
|
-
xy: [104468.8305227503, 193169.6828284394],
|
|
1506
|
-
ll: [3.7186701465384533, 51.04642936832842]
|
|
1507
|
-
},
|
|
1508
|
-
{
|
|
1509
|
-
code: 'PROJCS["Belge 1972 / Belgian Lambert 72",GEOGCS["Belge 1972",DATUM["Reseau_National_Belge_1972",SPHEROID["International 1924",6378388,297,AUTHORITY["EPSG","7022"]],TOWGS84[-125.8,79.9,-100.5,0,0,0,0],AUTHORITY["EPSG","6313"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4313"]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["standard_parallel_1",51.16666723333333],PARAMETER["standard_parallel_2",49.8333339],PARAMETER["latitude_of_origin",90],PARAMETER["central_meridian",4.367486666666666],PARAMETER["false_easting",150000.013],PARAMETER["false_northing",5400088.438],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["X",EAST],AXIS["Y",NORTH],AUTHORITY["EPSG","31370"]]',
|
|
1510
|
-
xy: [104412.1099068548, 193116.8535417635],
|
|
1511
|
-
ll: [3.7186701465384533, 51.04642936832842]
|
|
1512
|
-
},
|
|
1513
|
-
{
|
|
1514
|
-
code: '+proj=lcc +lat_1=51.16666723333333 +lat_2=49.8333339 +lat_0=90 +lon_0=4.367486666666666 +x_0=150000.013 +y_0=5400088.438 +ellps=intl +towgs84=106.869,-52.2978,103.724,-0.33657,0.456955,-1.84218,1 +units=m +no_defs ',
|
|
1515
|
-
xy: [104588.196404, 193175.582367],
|
|
1516
|
-
ll: [3.7186701465384533, 51.04642936832842]
|
|
1517
|
-
},
|
|
1518
|
-
{
|
|
1519
|
-
code: `PROJCRS["BD72 / Belgian Lambert 72",
|
|
1520
|
-
BASEGEOGCRS["BD72",
|
|
1521
|
-
DATUM["Reseau National Belge 1972",
|
|
1522
|
-
ELLIPSOID["International 1924",6378388,297,
|
|
1523
|
-
LENGTHUNIT["metre",1]]],
|
|
1524
|
-
PRIMEM["Greenwich",0,
|
|
1525
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
1526
|
-
ID["EPSG",4313]],
|
|
1527
|
-
CONVERSION["Belgian Lambert 72",
|
|
1528
|
-
METHOD["Lambert Conic Conformal (2SP)",
|
|
1529
|
-
ID["EPSG",9802]],
|
|
1530
|
-
PARAMETER["Latitude of false origin",90,
|
|
1531
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1532
|
-
ID["EPSG",8821]],
|
|
1533
|
-
PARAMETER["Longitude of false origin",4.36748666666667,
|
|
1534
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1535
|
-
ID["EPSG",8822]],
|
|
1536
|
-
PARAMETER["Latitude of 1st standard parallel",51.1666672333333,
|
|
1537
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1538
|
-
ID["EPSG",8823]],
|
|
1539
|
-
PARAMETER["Latitude of 2nd standard parallel",49.8333339,
|
|
1540
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1541
|
-
ID["EPSG",8824]],
|
|
1542
|
-
PARAMETER["Easting at false origin",150000.013,
|
|
1543
|
-
LENGTHUNIT["metre",1],
|
|
1544
|
-
ID["EPSG",8826]],
|
|
1545
|
-
PARAMETER["Northing at false origin",5400088.438,
|
|
1546
|
-
LENGTHUNIT["metre",1],
|
|
1547
|
-
ID["EPSG",8827]]],
|
|
1548
|
-
CS[Cartesian,2],
|
|
1549
|
-
AXIS["easting (X)",east,
|
|
1550
|
-
ORDER[1],
|
|
1551
|
-
LENGTHUNIT["metre",1]],
|
|
1552
|
-
AXIS["northing (Y)",north,
|
|
1553
|
-
ORDER[2],
|
|
1554
|
-
LENGTHUNIT["metre",1]],
|
|
1555
|
-
USAGE[
|
|
1556
|
-
SCOPE["Engineering survey, topographic mapping."],
|
|
1557
|
-
AREA["Belgium - onshore."],
|
|
1558
|
-
BBOX[49.5,2.5,51.51,6.4]],
|
|
1559
|
-
ID["EPSG",31370]]`,
|
|
1560
|
-
xy: [104412.32981733, 193117.404086632],
|
|
1561
|
-
ll: [3.7186701465384533, 51.04642936832842]
|
|
1562
|
-
},
|
|
1563
|
-
{
|
|
1564
|
-
code: { $schema: 'https://proj.org/schemas/v0.7/projjson.schema.json', type: 'ProjectedCRS', name: 'BD72 / Belgian Lambert 72', base_crs: { type: 'GeographicCRS', name: 'BD72', datum: { type: 'GeodeticReferenceFrame', name: 'Reseau National Belge 1972', ellipsoid: { name: 'International 1924', semi_major_axis: 6378388, inverse_flattening: 297 } }, coordinate_system: { subtype: 'ellipsoidal', axis: [{ name: 'Geodetic latitude', abbreviation: 'Lat', direction: 'north', unit: 'degree' }, { name: 'Geodetic longitude', abbreviation: 'Lon', direction: 'east', unit: 'degree' }] }, id: { authority: 'EPSG', code: 4313 } }, conversion: { name: 'Belgian Lambert 72', method: { name: 'Lambert Conic Conformal (2SP)', id: { authority: 'EPSG', code: 9802 } }, parameters: [{ name: 'Latitude of false origin', value: 90, unit: 'degree', id: { authority: 'EPSG', code: 8821 } }, { name: 'Longitude of false origin', value: 4.36748666666667, unit: 'degree', id: { authority: 'EPSG', code: 8822 } }, { name: 'Latitude of 1st standard parallel', value: 51.1666672333333, unit: 'degree', id: { authority: 'EPSG', code: 8823 } }, { name: 'Latitude of 2nd standard parallel', value: 49.8333339, unit: 'degree', id: { authority: 'EPSG', code: 8824 } }, { name: 'Easting at false origin', value: 150000.013, unit: 'metre', id: { authority: 'EPSG', code: 8826 } }, { name: 'Northing at false origin', value: 5400088.438, unit: 'metre', id: { authority: 'EPSG', code: 8827 } }] }, coordinate_system: { subtype: 'Cartesian', axis: [{ name: 'Easting', abbreviation: 'X', direction: 'east', unit: 'metre' }, { name: 'Northing', abbreviation: 'Y', direction: 'north', unit: 'metre' }] }, scope: 'Engineering survey, topographic mapping.', area: 'Belgium - onshore.', bbox: { south_latitude: 49.5, west_longitude: 2.5, north_latitude: 51.51, east_longitude: 6.4 }, id: { authority: 'EPSG', code: 31370 } },
|
|
1565
|
-
xy: [104412.32981733, 193117.404086632],
|
|
1566
|
-
ll: [3.7186701465384533, 51.04642936832842]
|
|
1567
|
-
},
|
|
1568
|
-
{
|
|
1569
|
-
code: 'PROJCS["JAD2001 / Jamaica Metric Grid",GEOGCS["JAD2001",DATUM["Jamaica_2001",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],TOWGS84[0,0,0,0,0,0,0],AUTHORITY["EPSG","6758"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4758"]],PROJECTION["Lambert_Conformal_Conic_1SP"],PARAMETER["latitude_of_origin",18],PARAMETER["central_meridian",-77],PARAMETER["scale_factor",1],PARAMETER["false_easting",750000],PARAMETER["false_northing",650000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","3448"]]',
|
|
1570
|
-
xy: [7578825.28673236, 11374595.814939449],
|
|
1571
|
-
ll: [44.2312, 76.4860]
|
|
1572
|
-
},
|
|
1573
|
-
{
|
|
1574
|
-
code: `PROJCRS["JAD2001 / Jamaica Metric Grid",
|
|
1575
|
-
BASEGEOGCRS["JAD2001",
|
|
1576
|
-
DATUM["Jamaica 2001",
|
|
1577
|
-
ELLIPSOID["WGS 84",6378137,298.257223563,
|
|
1578
|
-
LENGTHUNIT["metre",1]]],
|
|
1579
|
-
PRIMEM["Greenwich",0,
|
|
1580
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
1581
|
-
ID["EPSG",4758]],
|
|
1582
|
-
CONVERSION["Jamaica Metric Grid 2001",
|
|
1583
|
-
METHOD["Lambert Conic Conformal (1SP)",
|
|
1584
|
-
ID["EPSG",9801]],
|
|
1585
|
-
PARAMETER["Latitude of natural origin",18,
|
|
1586
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1587
|
-
ID["EPSG",8801]],
|
|
1588
|
-
PARAMETER["Longitude of natural origin",-77,
|
|
1589
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1590
|
-
ID["EPSG",8802]],
|
|
1591
|
-
PARAMETER["Scale factor at natural origin",1,
|
|
1592
|
-
SCALEUNIT["unity",1],
|
|
1593
|
-
ID["EPSG",8805]],
|
|
1594
|
-
PARAMETER["False easting",750000,
|
|
1595
|
-
LENGTHUNIT["metre",1],
|
|
1596
|
-
ID["EPSG",8806]],
|
|
1597
|
-
PARAMETER["False northing",650000,
|
|
1598
|
-
LENGTHUNIT["metre",1],
|
|
1599
|
-
ID["EPSG",8807]]],
|
|
1600
|
-
CS[Cartesian,2],
|
|
1601
|
-
AXIS["(E)",east,
|
|
1602
|
-
ORDER[1],
|
|
1603
|
-
LENGTHUNIT["metre",1]],
|
|
1604
|
-
AXIS["(N)",north,
|
|
1605
|
-
ORDER[2],
|
|
1606
|
-
LENGTHUNIT["metre",1]],
|
|
1607
|
-
USAGE[
|
|
1608
|
-
SCOPE["Cadastre, engineering survey, topographic mapping (large and medium scale)."],
|
|
1609
|
-
AREA["Jamaica - onshore."],
|
|
1610
|
-
BBOX[17.64,-78.43,18.58,-76.17]],
|
|
1611
|
-
ID["EPSG",3448]]`,
|
|
1612
|
-
xy: [7578825.28673236, 11374595.814939449],
|
|
1613
|
-
ll: [44.2312, 76.4860]
|
|
1614
|
-
},
|
|
1615
|
-
{
|
|
1616
|
-
code: '+proj=tmerc +lat_0=49 +lon_0=-2 +k=0.9996012717 +x_0=400000 +y_0=-100000 +ellps=airy +datum=OSGB36 +units=m +no_defs',
|
|
1617
|
-
ll: [-3.20078, 55.96056],
|
|
1618
|
-
xy: [325132.0089586496, 674822.638235305]
|
|
1619
|
-
},
|
|
1620
|
-
{
|
|
1621
|
-
code: 'PROJCS["OSGB36 / British National Grid",GEOGCS["OSGB36",DATUM["Ordnance_Survey_of_Great_Britain_1936",SPHEROID["Airy 1830",6377563.396,299.3249646,AUTHORITY["EPSG","7001"]],AUTHORITY["EPSG","6277"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4277"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",49],PARAMETER["central_meridian",-2],PARAMETER["scale_factor",0.9996012717],PARAMETER["false_easting",400000],PARAMETER["false_northing",-100000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","27700"]]',
|
|
1622
|
-
ll: [-3.20078, 55.96056],
|
|
1623
|
-
xy: [325132.0089586496, 674822.638235305]
|
|
1624
|
-
},
|
|
1625
|
-
{
|
|
1626
|
-
code: `PROJCRS["OSGB36 / British National Grid",
|
|
1627
|
-
BASEGEOGCRS["OSGB36",
|
|
1628
|
-
DATUM["Ordnance Survey of Great Britain 1936",
|
|
1629
|
-
ELLIPSOID["Airy 1830",6377563.396,299.3249646,
|
|
1630
|
-
LENGTHUNIT["metre",1]]],
|
|
1631
|
-
PRIMEM["Greenwich",0,
|
|
1632
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
1633
|
-
ID["EPSG",4277]],
|
|
1634
|
-
CONVERSION["British National Grid",
|
|
1635
|
-
METHOD["Transverse Mercator",
|
|
1636
|
-
ID["EPSG",9807]],
|
|
1637
|
-
PARAMETER["Latitude of natural origin",49,
|
|
1638
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1639
|
-
ID["EPSG",8801]],
|
|
1640
|
-
PARAMETER["Longitude of natural origin",-2,
|
|
1641
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1642
|
-
ID["EPSG",8802]],
|
|
1643
|
-
PARAMETER["Scale factor at natural origin",0.9996012717,
|
|
1644
|
-
SCALEUNIT["unity",1],
|
|
1645
|
-
ID["EPSG",8805]],
|
|
1646
|
-
PARAMETER["False easting",400000,
|
|
1647
|
-
LENGTHUNIT["metre",1],
|
|
1648
|
-
ID["EPSG",8806]],
|
|
1649
|
-
PARAMETER["False northing",-100000,
|
|
1650
|
-
LENGTHUNIT["metre",1],
|
|
1651
|
-
ID["EPSG",8807]]],
|
|
1652
|
-
CS[Cartesian,2],
|
|
1653
|
-
AXIS["(E)",east,
|
|
1654
|
-
ORDER[1],
|
|
1655
|
-
LENGTHUNIT["metre",1]],
|
|
1656
|
-
AXIS["(N)",north,
|
|
1657
|
-
ORDER[2],
|
|
1658
|
-
LENGTHUNIT["metre",1]],
|
|
1659
|
-
USAGE[
|
|
1660
|
-
SCOPE["Engineering survey, topographic mapping."],
|
|
1661
|
-
AREA["United Kingdom (UK) - offshore to boundary of UKCS within 49°45'N to 61°N and 9°W to 2°E; onshore Great Britain (England, Wales and Scotland). Isle of Man onshore."],
|
|
1662
|
-
BBOX[49.75,-9.01,61.01,2.01]],
|
|
1663
|
-
ID["EPSG",27700]]`,
|
|
1664
|
-
ll: [-3.20078, 55.96056],
|
|
1665
|
-
xy: [325132.0089586496, 674822.638235305]
|
|
1666
|
-
},
|
|
1667
|
-
{
|
|
1668
|
-
code: '+proj=krovak +lat_0=49.5 +lon_0=24.83333333333333 +alpha=30.28813972222222 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +pm=greenwich +units=m +no_defs +towgs84=570.8,85.7,462.8,4.998,1.587,5.261,3.56',
|
|
1669
|
-
ll: [12.806988, 49.452262],
|
|
1670
|
-
xy: [-868208.61, -1095793.64]
|
|
1671
|
-
},
|
|
1672
|
-
{
|
|
1673
|
-
code: '+proj=tmerc +lat_0=40.5 +lon_0=-110.0833333333333 +k=0.9999375 +x_0=800000.0000101599 +y_0=99999.99998983997 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=us-ft +no_defs',
|
|
1674
|
-
ll: [-110.8, 43.5],
|
|
1675
|
-
xy: [2434515.870, 1422072.711]
|
|
1676
|
-
},
|
|
1677
|
-
{
|
|
1678
|
-
code: `PROJCRS["MGI / Austria GK M34",
|
|
1679
|
-
BASEGEOGCRS["MGI",
|
|
1680
|
-
DATUM["Militar-Geographische Institut",
|
|
1681
|
-
ELLIPSOID["Bessel 1841",6377397.155,299.1528128,
|
|
1682
|
-
LENGTHUNIT["metre",1]]],
|
|
1683
|
-
PRIMEM["Greenwich",0,
|
|
1684
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
1685
|
-
ID["EPSG",4312]],
|
|
1686
|
-
CONVERSION["Austria Gauss-Kruger M34",
|
|
1687
|
-
METHOD["Transverse Mercator",
|
|
1688
|
-
ID["EPSG",9807]],
|
|
1689
|
-
PARAMETER["Latitude of natural origin",0,
|
|
1690
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1691
|
-
ID["EPSG",8801]],
|
|
1692
|
-
PARAMETER["Longitude of natural origin",16.3333333333333,
|
|
1693
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1694
|
-
ID["EPSG",8802]],
|
|
1695
|
-
PARAMETER["Scale factor at natural origin",1,
|
|
1696
|
-
SCALEUNIT["unity",1],
|
|
1697
|
-
ID["EPSG",8805]],
|
|
1698
|
-
PARAMETER["False easting",750000,
|
|
1699
|
-
LENGTHUNIT["metre",1],
|
|
1700
|
-
ID["EPSG",8806]],
|
|
1701
|
-
PARAMETER["False northing",-5000000,
|
|
1702
|
-
LENGTHUNIT["metre",1],
|
|
1703
|
-
ID["EPSG",8807]]],
|
|
1704
|
-
CS[Cartesian,2],
|
|
1705
|
-
AXIS["northing (X)",north,
|
|
1706
|
-
ORDER[1],
|
|
1707
|
-
LENGTHUNIT["metre",1]],
|
|
1708
|
-
AXIS["easting (Y)",east,
|
|
1709
|
-
ORDER[2],
|
|
1710
|
-
LENGTHUNIT["metre",1]],
|
|
1711
|
-
USAGE[
|
|
1712
|
-
SCOPE["Engineering survey, topographic mapping."],
|
|
1713
|
-
AREA["Austria east of 14°50'E of Greenwich (32°30'E of Ferro)."],
|
|
1714
|
-
BBOX[46.56,14.83,49.02,17.17]],
|
|
1715
|
-
ID["EPSG",31259]]`,
|
|
1716
|
-
ll: [15.43811, 47.07103],
|
|
1717
|
-
xy: [682088.031204426, 215045.227444926]
|
|
1718
|
-
},
|
|
1719
|
-
{
|
|
1720
|
-
code: `BOUNDCRS[
|
|
1721
|
-
SOURCECRS[
|
|
1722
|
-
PROJCRS["unknown",
|
|
1723
|
-
BASEGEOGCRS["unknown",
|
|
1724
|
-
DATUM["Unknown based on Bessel 1841 ellipsoid",
|
|
1725
|
-
ELLIPSOID["Bessel 1841",6377397.155,299.1528128,
|
|
1726
|
-
LENGTHUNIT["metre",1,
|
|
1727
|
-
ID["EPSG",9001]]]],
|
|
1728
|
-
PRIMEM["Greenwich",0,
|
|
1729
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1730
|
-
ID["EPSG",8901]]],
|
|
1731
|
-
CONVERSION["unknown",
|
|
1732
|
-
METHOD["Transverse Mercator",
|
|
1733
|
-
ID["EPSG",9807]],
|
|
1734
|
-
PARAMETER["Latitude of natural origin",0,
|
|
1735
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1736
|
-
ID["EPSG",8801]],
|
|
1737
|
-
PARAMETER["Longitude of natural origin",16.3333333333333,
|
|
1738
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
1739
|
-
ID["EPSG",8802]],
|
|
1740
|
-
PARAMETER["Scale factor at natural origin",1,
|
|
1741
|
-
SCALEUNIT["unity",1],
|
|
1742
|
-
ID["EPSG",8805]],
|
|
1743
|
-
PARAMETER["False easting",750000,
|
|
1744
|
-
LENGTHUNIT["metre",1],
|
|
1745
|
-
ID["EPSG",8806]],
|
|
1746
|
-
PARAMETER["False northing",-5000000,
|
|
1747
|
-
LENGTHUNIT["metre",1],
|
|
1748
|
-
ID["EPSG",8807]]],
|
|
1749
|
-
CS[Cartesian,2],
|
|
1750
|
-
AXIS["(E)",east,
|
|
1751
|
-
ORDER[1],
|
|
1752
|
-
LENGTHUNIT["metre",1,
|
|
1753
|
-
ID["EPSG",9001]]],
|
|
1754
|
-
AXIS["(N)",north,
|
|
1755
|
-
ORDER[2],
|
|
1756
|
-
LENGTHUNIT["metre",1,
|
|
1757
|
-
ID["EPSG",9001]]]]],
|
|
1758
|
-
TARGETCRS[
|
|
1759
|
-
GEOGCRS["WGS 84",
|
|
1760
|
-
DATUM["World Geodetic System 1984",
|
|
1761
|
-
ELLIPSOID["WGS 84",6378137,298.257223563,
|
|
1762
|
-
LENGTHUNIT["metre",1]]],
|
|
1763
|
-
PRIMEM["Greenwich",0,
|
|
1764
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
1765
|
-
CS[ellipsoidal,2],
|
|
1766
|
-
AXIS["latitude",north,
|
|
1767
|
-
ORDER[1],
|
|
1768
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
1769
|
-
AXIS["longitude",east,
|
|
1770
|
-
ORDER[2],
|
|
1771
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
1772
|
-
ID["EPSG",4326]]],
|
|
1773
|
-
ABRIDGEDTRANSFORMATION["Transformation from unknown to WGS84",
|
|
1774
|
-
METHOD["Position Vector transformation (geog2D domain)",
|
|
1775
|
-
ID["EPSG",9606]],
|
|
1776
|
-
PARAMETER["X-axis translation",601.705,
|
|
1777
|
-
ID["EPSG",8605]],
|
|
1778
|
-
PARAMETER["Y-axis translation",84.263,
|
|
1779
|
-
ID["EPSG",8606]],
|
|
1780
|
-
PARAMETER["Z-axis translation",485.227,
|
|
1781
|
-
ID["EPSG",8607]],
|
|
1782
|
-
PARAMETER["X-axis rotation",-4.7354,
|
|
1783
|
-
ID["EPSG",8608]],
|
|
1784
|
-
PARAMETER["Y-axis rotation",-1.3145,
|
|
1785
|
-
ID["EPSG",8609]],
|
|
1786
|
-
PARAMETER["Z-axis rotation",-5.393,
|
|
1787
|
-
ID["EPSG",8610]],
|
|
1788
|
-
PARAMETER["Scale difference",0.9999976113,
|
|
1789
|
-
ID["EPSG",8611]]]]`,
|
|
1790
|
-
ll: [15.43811, 47.07103],
|
|
1791
|
-
xy: [682094.142914852, 215044.760591501]
|
|
1792
|
-
},
|
|
1793
|
-
// QSC WGS84
|
|
1794
|
-
{
|
|
1795
|
-
code: '+proj=qsc +lat_0=0 +lon_0=0 +units=m +datum=WGS84',
|
|
1796
|
-
ll: [2, 1],
|
|
1797
|
-
xy: [304638.4508447283296846, 164123.8709293559950311]
|
|
1798
|
-
},
|
|
1799
|
-
{
|
|
1800
|
-
code: '+proj=qsc +lat_0=0 +lon_0=90 +units=m +datum=WGS84',
|
|
1801
|
-
ll: [2, 1],
|
|
1802
|
-
xy: [-11576764.4717786349356174, 224687.8649776891397778]
|
|
1803
|
-
},
|
|
1804
|
-
{
|
|
1805
|
-
code: '+proj=qsc +lat_0=0 +lon_0=180 +units=m +datum=WGS84',
|
|
1806
|
-
ll: [2, 1],
|
|
1807
|
-
xy: [-15631296.4526007361710072, 8421356.1168374437838793]
|
|
1808
|
-
},
|
|
1809
|
-
{
|
|
1810
|
-
code: '+proj=qsc +lat_0=0 +lon_0=-90 +units=m +datum=WGS84',
|
|
1811
|
-
ll: [2, 1],
|
|
1812
|
-
xy: [11988027.5987015366554260, 232669.8736086514254566
|
|
1813
|
-
]
|
|
1814
|
-
},
|
|
1815
|
-
{
|
|
1816
|
-
code: '+proj=qsc +lat_0=90 +lon_0=0 +units=m +datum=WGS84',
|
|
1817
|
-
ll: [2, 1],
|
|
1818
|
-
xy: [456180.4073964518611319, -11678366.5914389267563820
|
|
1819
|
-
]
|
|
1820
|
-
},
|
|
1821
|
-
{
|
|
1822
|
-
code: '+proj=qsc +lat_0=-90 +lon_0=0 +units=m +datum=WGS84',
|
|
1823
|
-
ll: [2, 1],
|
|
1824
|
-
xy: [464158.3228444084525108, 11882603.8180405404418707]
|
|
1825
|
-
},
|
|
1826
|
-
// QSC WGS84 WKT
|
|
1827
|
-
{
|
|
1828
|
-
code: 'PROJCS["unnamed",GEOGCS["WGS 84",DATUM["unknown",SPHEROID["WGS84",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Quadrilateralized_Spherical_Cube"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],UNIT["Meter",1]]',
|
|
1829
|
-
ll: [2, 1],
|
|
1830
|
-
xy: [304638.4508447283296846, 164123.8709293559950311]
|
|
1831
|
-
},
|
|
1832
|
-
{
|
|
1833
|
-
code: 'PROJCS["unnamed",GEOGCS["WGS 84",DATUM["unknown",SPHEROID["WGS84",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Quadrilateralized_Spherical_Cube"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",90],UNIT["Meter",1]]',
|
|
1834
|
-
ll: [2, 1],
|
|
1835
|
-
xy: [-11576764.4717786349356174, 224687.8649776891397778]
|
|
1836
|
-
},
|
|
1837
|
-
{
|
|
1838
|
-
code: 'PROJCS["unnamed",GEOGCS["WGS 84",DATUM["unknown",SPHEROID["WGS84",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Quadrilateralized_Spherical_Cube"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",180],UNIT["Meter",1]]',
|
|
1839
|
-
ll: [2, 1],
|
|
1840
|
-
xy: [-15631296.4526007361710072, 8421356.1168374437838793]
|
|
1841
|
-
},
|
|
1842
|
-
{
|
|
1843
|
-
code: 'PROJCS["unnamed",GEOGCS["WGS 84",DATUM["unknown",SPHEROID["WGS84",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Quadrilateralized_Spherical_Cube"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",-90],UNIT["Meter",1]]',
|
|
1844
|
-
ll: [2, 1],
|
|
1845
|
-
xy: [11988027.5987015366554260, 232669.8736086514254566
|
|
1846
|
-
]
|
|
1847
|
-
},
|
|
1848
|
-
{
|
|
1849
|
-
code: 'PROJCS["unnamed",GEOGCS["WGS 84",DATUM["unknown",SPHEROID["WGS84",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Quadrilateralized_Spherical_Cube"],PARAMETER["latitude_of_origin",90],PARAMETER["central_meridian",0],UNIT["Meter",1]]',
|
|
1850
|
-
ll: [2, 1],
|
|
1851
|
-
xy: [456180.4073964518611319, -11678366.5914389267563820
|
|
1852
|
-
]
|
|
1853
|
-
},
|
|
1854
|
-
{
|
|
1855
|
-
code: 'PROJCS["unnamed",GEOGCS["WGS 84",DATUM["unknown",SPHEROID["WGS84",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Quadrilateralized_Spherical_Cube"],PARAMETER["latitude_of_origin",-90],PARAMETER["central_meridian",0],UNIT["Meter",1]]',
|
|
1856
|
-
ll: [2, 1],
|
|
1857
|
-
xy: [464158.3228444084525108, 11882603.8180405404418707]
|
|
1858
|
-
},
|
|
1859
|
-
// QSC Mars
|
|
1860
|
-
{
|
|
1861
|
-
code: '+proj=qsc +units=m +a=3396190 +b=3376200 +lat_0=0 +lon_0=0',
|
|
1862
|
-
ll: [2, 1],
|
|
1863
|
-
xy: [162139.9347801624389831, 86935.6184961361577734]
|
|
1864
|
-
},
|
|
1865
|
-
{
|
|
1866
|
-
code: '+proj=qsc +units=m +a=3396190 +b=3376200 +lat_0=0 +lon_0=90',
|
|
1867
|
-
ll: [2, 1],
|
|
1868
|
-
xy: [-6164327.7345527401193976, 119033.1141843862715177]
|
|
1869
|
-
},
|
|
1870
|
-
{
|
|
1871
|
-
code: '+proj=qsc +units=m +a=3396190 +b=3376200 +lat_0=0 +lon_0=180',
|
|
1872
|
-
ll: [2, 1],
|
|
1873
|
-
xy: [-8327904.7183852149173617, 4465226.5862284321337938]
|
|
1874
|
-
},
|
|
1875
|
-
{
|
|
1876
|
-
code: '+proj=qsc +units=m +a=3396190 +b=3376200 +lat_0=0 +lon_0=-90',
|
|
1877
|
-
ll: [2, 1],
|
|
1878
|
-
xy: [6383315.0547841880470514, 123261.7574065744993277]
|
|
1879
|
-
},
|
|
1880
|
-
{
|
|
1881
|
-
code: '+proj=qsc +units=m +a=3396190 +b=3376200 +lat_0=90 +lon_0=0',
|
|
1882
|
-
ll: [2, 1],
|
|
1883
|
-
xy: [242914.9289354820502922, -6218701.0766915259882808]
|
|
1884
|
-
},
|
|
1885
|
-
{
|
|
1886
|
-
code: '+proj=qsc +units=m +a=3396190 +b=3376200 +lat_0=-90 +lon_0=0',
|
|
1887
|
-
ll: [2, 1],
|
|
1888
|
-
xy: [247141.3965058987669181, 6326900.0192015860229731]
|
|
1889
|
-
},
|
|
1890
|
-
// Robinson
|
|
1891
|
-
{
|
|
1892
|
-
code: '+proj=robin +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs',
|
|
1893
|
-
ll: [-15, -35],
|
|
1894
|
-
xy: [-1335949.91, -3743319.07],
|
|
1895
|
-
acc: { ll: 4, xy: 0 }
|
|
1896
|
-
},
|
|
1897
|
-
{
|
|
1898
|
-
code: '+proj=robin +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs',
|
|
1899
|
-
ll: [-10, 50],
|
|
1900
|
-
xy: [-819964.60, 5326895.52],
|
|
1901
|
-
acc: { ll: 4, xy: 0 }
|
|
1902
|
-
},
|
|
1903
|
-
{
|
|
1904
|
-
code: '+proj=robin +a=6400000',
|
|
1905
|
-
ll: [80, -20],
|
|
1906
|
-
xy: [7449059.80, -2146370.56],
|
|
1907
|
-
acc: { ll: 4, xy: 0 }
|
|
1908
|
-
},
|
|
1909
|
-
{
|
|
1910
|
-
code: '+proj=robin +lon_0=15 +x_0=100000 +y_0=100000 +datum=WGS84',
|
|
1911
|
-
ll: [-35, 40],
|
|
1912
|
-
xy: [-4253493.26, 4376351.58],
|
|
1913
|
-
acc: { ll: 4, xy: 0 }
|
|
1914
|
-
},
|
|
1915
|
-
{
|
|
1916
|
-
code: 'PROJCS["World_Robinson",GEOGCS["GCS_WGS_1984",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Robinson"],PARAMETER["False_Easting",0],PARAMETER["False_Northing",0],PARAMETER["Central_Meridian",0],UNIT["Meter",1]]',
|
|
1917
|
-
ll: [20, 40],
|
|
1918
|
-
xy: [1741397.30, 4276351.58],
|
|
1919
|
-
acc: { ll: 4, xy: 0 }
|
|
1920
|
-
},
|
|
1921
|
-
{
|
|
1922
|
-
code: 'PROJCS["World_Robinson",GEOGCS["GCS_WGS_1984",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Robinson"],PARAMETER["False_Easting",100000],PARAMETER["False_Northing",100000],PARAMETER["Central_Meridian",15],UNIT["Meter",1]]',
|
|
1923
|
-
ll: [-35, 40],
|
|
1924
|
-
xy: [-4253493.26, 4376351.58],
|
|
1925
|
-
acc: { ll: 4, xy: 0 }
|
|
1926
|
-
},
|
|
1927
|
-
{
|
|
1928
|
-
code: '+proj=robin +lon_0=162 +x_0=0 +y_0=0 +ellps=WGS84 +datum=WGS84 +units=m +no_defs',
|
|
1929
|
-
ll: [-90, 22],
|
|
1930
|
-
xy: [9987057.08, 2352946.55],
|
|
1931
|
-
acc: { ll: 4, xy: 0 }
|
|
1932
|
-
},
|
|
1933
|
-
// check that coordinates at 180 and -180 deg. longitude don't wrap around
|
|
1934
|
-
{
|
|
1935
|
-
code: 'EPSG:3857',
|
|
1936
|
-
ll: [-180, 0],
|
|
1937
|
-
xy: [-20037508.342789, 0]
|
|
1938
|
-
},
|
|
1939
|
-
{
|
|
1940
|
-
code: 'EPSG:3857',
|
|
1941
|
-
ll: [180, 0],
|
|
1942
|
-
xy: [20037508.342789, 0]
|
|
1943
|
-
},
|
|
1944
|
-
// these test cases are taken from mapshaper-proj and the test results match
|
|
1945
|
-
{
|
|
1946
|
-
code: '+proj=tmerc +ellps=GRS80 +lat_1=0.5 +lat_2=2 +n=0.5',
|
|
1947
|
-
ll: [2, 1],
|
|
1948
|
-
xy: [222650.79679577847, 110642.2294119271]
|
|
1949
|
-
},
|
|
1950
|
-
{
|
|
1951
|
-
code: '+proj=tmerc +approx +a=6400000 +lat_1=0.5 +lat_2=2 +n=0.5',
|
|
1952
|
-
ll: [2, 1],
|
|
1953
|
-
xy: [223413.46640632232, 111769.14504059685]
|
|
1954
|
-
},
|
|
1955
|
-
{
|
|
1956
|
-
code: '+proj=etmerc +zone=30 +ellps=GRS80 +lat_1=0.5 +lat_2=2 +n=0.5',
|
|
1957
|
-
ll: [2, 1],
|
|
1958
|
-
xy: [222650.7967975856, 110642.2294119332]
|
|
1959
|
-
},
|
|
1960
|
-
{
|
|
1961
|
-
code: '+proj=etmerc +k=0.998 +lon_0=-20 +datum=WGS84 +x_0=10000 +y_0=20000',
|
|
1962
|
-
ll: [2, 1],
|
|
1963
|
-
xy: [2516532.477709202, 139083.35793371277]
|
|
1964
|
-
},
|
|
1965
|
-
{
|
|
1966
|
-
code: '+proj=utm +zone=30 +ellps=GRS80 +lat_1=0.5 +lat_2=2 +n=0.5',
|
|
1967
|
-
ll: [2, 1],
|
|
1968
|
-
xy: [1057002.405491298, 110955.14117594929]
|
|
1969
|
-
},
|
|
1970
|
-
{
|
|
1971
|
-
code: '+proj=utm +lon_0=-3 +ellps=GRS80 +lat_1=0.5 +lat_2=2 +n=0.5',
|
|
1972
|
-
ll: [2, 1],
|
|
1973
|
-
xy: [1057002.4052152266, 110955.14117382761]
|
|
1974
|
-
},
|
|
1975
|
-
// these test cases are related to the original issue on GitHub
|
|
1976
|
-
{
|
|
1977
|
-
code: '+proj=utm +zone=33 +datum=WGS84 +units=m +no_defs',
|
|
1978
|
-
ll: [2, 1],
|
|
1979
|
-
xy: [-959006.4926646841, 113457.31956265299]
|
|
1980
|
-
},
|
|
1981
|
-
{
|
|
1982
|
-
code: '+proj=utm +zone=33 +datum=WGS84 +units=m +no_defs',
|
|
1983
|
-
ll: [31, 70],
|
|
1984
|
-
xy: [1104629.4356366363, 7845845.077685604]
|
|
1985
|
-
},
|
|
1986
|
-
// these test cases are for Norway snow flake zones
|
|
1987
|
-
{
|
|
1988
|
-
code: '+proj=utm +zone=31 +datum=WGS84 +units=m +no_defs',
|
|
1989
|
-
ll: [59.121778, 1.508527],
|
|
1990
|
-
xy: [8089746.634775677, 301230.8618526573]
|
|
1991
|
-
},
|
|
1992
|
-
{
|
|
1993
|
-
code: '+proj=utm +zone=32 +datum=WGS84 +units=m +no_defs',
|
|
1994
|
-
ll: [59.121778, 1.508527],
|
|
1995
|
-
xy: [6969865.865375574, 261237.08330733588]
|
|
1996
|
-
},
|
|
1997
|
-
{
|
|
1998
|
-
code: '+proj=utm +zone=33 +datum=WGS84 +units=m +no_defs',
|
|
1999
|
-
ll: [59.121778, 1.508527],
|
|
2000
|
-
xy: [5984417.050333044, 232959.75386279594]
|
|
2001
|
-
},
|
|
2002
|
-
{
|
|
2003
|
-
code: '+proj=utm +zone=34 +datum=WGS84 +units=m +no_defs',
|
|
2004
|
-
ll: [79.070672, 20.520579],
|
|
2005
|
-
xy: [7421462.108989433, 3922366.25143021]
|
|
2006
|
-
},
|
|
2007
|
-
{
|
|
2008
|
-
code: '+proj=utm +zone=35 +datum=WGS84 +units=m +no_defs',
|
|
2009
|
-
ll: [79.070672, 20.520579],
|
|
2010
|
-
xy: [6548241.281523044, 3478520.1422119136]
|
|
2011
|
-
},
|
|
2012
|
-
// these test cases are for the margin zones 1 and 60
|
|
2013
|
-
{
|
|
2014
|
-
code: '+proj=utm +zone=1 +datum=WGS84 +units=m +no_defs',
|
|
2015
|
-
ll: [-177, 60],
|
|
2016
|
-
xy: [500000, 6651411.190362714]
|
|
2017
|
-
},
|
|
2018
|
-
{
|
|
2019
|
-
code: '+proj=utm +zone=60 +datum=WGS84 +units=m +no_defs',
|
|
2020
|
-
ll: [177, 60],
|
|
2021
|
-
xy: [500000.0000000014, 6651411.190362714]
|
|
2022
|
-
},
|
|
2023
|
-
{
|
|
2024
|
-
code: '+proj=lcc +lat_1=46.8 +lat_0=46.8 +lon_0=0 +k_0=0.99987742 +x_0=600000 +y_0=2200000 +a=6378249.2 +b=6356515 +towgs84=-168,-60,320,0,0,0,0 +pm=paris +units=m +no_defs',
|
|
2025
|
-
ll: [1.4477496, 46.8692953],
|
|
2026
|
-
xy: [532247.285, 2208091.8723]
|
|
2027
|
-
},
|
|
2028
|
-
{
|
|
2029
|
-
code: '+proj=utm +zone=33 +units=m +no_defs',
|
|
2030
|
-
ll: [2, 1],
|
|
2031
|
-
xy: [-959006.4926646841, 113457.31956265299]
|
|
2032
|
-
},
|
|
2033
|
-
{
|
|
2034
|
-
code: '+proj=utm +zone=33 +units=m',
|
|
2035
|
-
ll: [2, 1],
|
|
2036
|
-
xy: [-959006.4926646841, 113457.31956265299]
|
|
2037
|
-
},
|
|
2038
|
-
{
|
|
2039
|
-
code: '+proj=utm +zone=33',
|
|
2040
|
-
ll: [2, 1],
|
|
2041
|
-
xy: [-959006.4926646841, 113457.31956265299]
|
|
2042
|
-
},
|
|
2043
|
-
{
|
|
2044
|
-
code: 'PROJCS["CUSTOM_OBLIQUE_MERCATOR", GEOGCS["WGS 84", DATUM["World Geodetic System 1984", SPHEROID["WGS 84", 6378137.0, 298.257223563]], PRIMEM["Greenwich", 0.0], UNIT["degree", 0.017453292519943295], AXIS["Geodetic latitude", NORTH], AXIS["Geodetic longitude", EAST]], PROJECTION["Hotine_Oblique_Mercator_Azimuth_Center", AUTHORITY["EPSG", "9815"]], PARAMETER["latitude_of_center", 37.50832038], PARAMETER["longitude_of_center", -122.25064809], PARAMETER["azimuth", 45.0], PARAMETER["rectified_grid_angle", -3.99], PARAMETER["scale_factor", 1.0], PARAMETER["false_easting", -361.25], PARAMETER["false_northing", 254.915], UNIT["foot", 0.3048], AXIS["Easting", EAST], AXIS["Northing", NORTH]]',
|
|
2045
|
-
xy: [-361.2499999983702, 254.91500000283122],
|
|
2046
|
-
ll: [-122.25064809, 37.50832038],
|
|
2047
|
-
acc: {
|
|
2048
|
-
ll: 3,
|
|
2049
|
-
xy: 8
|
|
2050
|
-
}
|
|
2051
|
-
},
|
|
2052
|
-
// Omerc Type A - #273
|
|
2053
|
-
{
|
|
2054
|
-
code: '+proj=omerc +lat_0=4 +lonc=102.25 +alpha=323.0257964666666 +k=0.99984 +x_0=804671 +y_0=0 +no_uoff +gamma=323.1301023611111 +ellps=GRS80 +units=m +no_defs',
|
|
2055
|
-
xy: [412597.532715, 338944.957259],
|
|
2056
|
-
ll: [101.70979078430528, 3.06268465621428],
|
|
2057
|
-
acc: {
|
|
2058
|
-
ll: 2,
|
|
2059
|
-
xy: -3
|
|
2060
|
-
}
|
|
2061
|
-
},
|
|
2062
|
-
{
|
|
2063
|
-
code: 'PROJCS["GDM2000 / Peninsula RSO", GEOGCS["GDM2000", DATUM["Geodetic_Datum_of_Malaysia_2000", SPHEROID["GRS 1980",6378137,298.257222101, AUTHORITY["EPSG","7019"]], AUTHORITY["EPSG","6742"]], PRIMEM["Greenwich",0, AUTHORITY["EPSG","8901"]], UNIT["degree",0.0174532925199433, AUTHORITY["EPSG","9122"]], AUTHORITY["EPSG","4742"]], PROJECTION["Hotine_Oblique_Mercator"], PARAMETER["latitude_of_center",4], PARAMETER["longitude_of_center",102.25], PARAMETER["azimuth",323.0257964666666], PARAMETER["rectified_grid_angle",323.1301023611111], PARAMETER["scale_factor",0.99984], PARAMETER["false_easting",804671], PARAMETER["false_northing",0], UNIT["metre",1, AUTHORITY["EPSG","9001"]], AXIS["Easting",EAST], AXIS["Northing",NORTH], AUTHORITY["EPSG","3375"]]',
|
|
2064
|
-
xy: [412597.532715, 338944.957259],
|
|
2065
|
-
ll: [101.70979078430528, 3.06268465621428],
|
|
2066
|
-
acc: {
|
|
2067
|
-
ll: 7,
|
|
2068
|
-
xy: 6
|
|
2069
|
-
}
|
|
2070
|
-
},
|
|
2071
|
-
{
|
|
2072
|
-
code: { $schema: 'https://proj.org/schemas/v0.7/projjson.schema.json', type: 'ProjectedCRS', name: '_GDM2000 / Peninsula RSO', base_crs: { type: 'GeographicCRS', name: 'GDM2000', datum: { type: 'GeodeticReferenceFrame', name: 'Geodetic Datum of Malaysia 2000', ellipsoid: { name: 'GRS 1980', semi_major_axis: 6378137, inverse_flattening: 298.257222101 } }, coordinate_system: { subtype: 'ellipsoidal', axis: [{ name: 'Geodetic latitude', abbreviation: 'Lat', direction: 'north', unit: 'degree' }, { name: 'Geodetic longitude', abbreviation: 'Lon', direction: 'east', unit: 'degree' }] }, id: { authority: 'EPSG', code: 4742 } }, conversion: { name: 'Peninsular RSO', method: { name: 'Hotine Oblique Mercator (variant A)', id: { authority: 'EPSG', code: 9812 } }, parameters: [{ name: 'Latitude of projection centre', value: 4, unit: 'degree', id: { authority: 'EPSG', code: 8811 } }, { name: 'Longitude of projection centre', value: 102.25, unit: 'degree', id: { authority: 'EPSG', code: 8812 } }, { name: 'Azimuth at projection centre', value: 323.025796466667, unit: 'degree', id: { authority: 'EPSG', code: 8813 } }, { name: 'Angle from Rectified to Skew Grid', value: 323.130102361111, unit: 'degree', id: { authority: 'EPSG', code: 8814 } }, { name: 'Scale factor at projection centre', value: 0.99984, unit: 'unity', id: { authority: 'EPSG', code: 8815 } }, { name: 'False easting', value: 804671, unit: 'metre', id: { authority: 'EPSG', code: 8806 } }, { name: 'False northing', value: 0, unit: 'metre', id: { authority: 'EPSG', code: 8807 } }] }, coordinate_system: { subtype: 'Cartesian', axis: [{ name: 'Easting', abbreviation: 'E', direction: 'east', unit: 'metre' }, { name: 'Northing', abbreviation: 'N', direction: 'north', unit: 'metre' }] }, scope: 'Engineering survey, topographic mapping.', area: 'Malaysia - West Malaysia onshore and offshore.', bbox: { south_latitude: 1.13, west_longitude: 98.02, north_latitude: 7.81, east_longitude: 105.82 }, id: { authority: 'EPSG', code: 3375 } },
|
|
2073
|
-
xy: [412597.532715, 338944.957259],
|
|
2074
|
-
ll: [101.70979078430528, 3.06268465621428],
|
|
2075
|
-
xacc: {
|
|
2076
|
-
ll: 7,
|
|
2077
|
-
xy: 6
|
|
2078
|
-
}
|
|
2079
|
-
},
|
|
2080
|
-
// EPSG:3468
|
|
2081
|
-
{
|
|
2082
|
-
code: '+proj=omerc +lat_0=57 +lonc=-133.6666666666667 +alpha=323.1301023611111 +k=0.9999 +x_0=5000000 +y_0=-5000000 +no_uoff +gamma=323.1301023611111 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs',
|
|
2083
|
-
xy: [1264314.74, -763162.04],
|
|
2084
|
-
ll: [-128.115000029, 44.8150000066],
|
|
2085
|
-
acc: {
|
|
2086
|
-
ll: 9,
|
|
2087
|
-
xy: 4
|
|
2088
|
-
}
|
|
2089
|
-
},
|
|
2090
|
-
{
|
|
2091
|
-
code: 'PROJCS["NAD83(NSRS2007) / Alaska zone 1", GEOGCS["NAD83(NSRS2007)", DATUM["NAD83_National_Spatial_Reference_System_2007", SPHEROID["GRS 1980",6378137,298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[0,0,0,0,0,0,0], AUTHORITY["EPSG","6759"]], PRIMEM["Greenwich",0, AUTHORITY["EPSG","8901"]], UNIT["degree",0.0174532925199433, AUTHORITY["EPSG","9122"]], AUTHORITY["EPSG","4759"]], PROJECTION["Hotine_Oblique_Mercator"], PARAMETER["latitude_of_center",57], PARAMETER["longitude_of_center",-133.6666666666667], PARAMETER["azimuth",323.1301023611111], PARAMETER["rectified_grid_angle",323.1301023611111], PARAMETER["scale_factor",0.9999], PARAMETER["false_easting",5000000], PARAMETER["false_northing",-5000000], UNIT["metre",1, AUTHORITY["EPSG","9001"]], AXIS["X",EAST], AXIS["Y",NORTH], AUTHORITY["EPSG","3468"]]',
|
|
2092
|
-
xy: [1264314.74, -763162.04],
|
|
2093
|
-
ll: [-128.115000029, 44.8150000066],
|
|
2094
|
-
acc: {
|
|
2095
|
-
ll: 9,
|
|
2096
|
-
xy: 4
|
|
2097
|
-
}
|
|
2098
|
-
},
|
|
2099
|
-
{
|
|
2100
|
-
code: `PROJCS["NAD83(NSRS2007) / Alaska zone 1",
|
|
2101
|
-
GEOGCS["NAD83(NSRS2007)",
|
|
2102
|
-
DATUM["NAD83_National_Spatial_Reference_System_2007",
|
|
2103
|
-
SPHEROID["GRS 1980",6378137,298.257222101,
|
|
2104
|
-
AUTHORITY["EPSG","7019"]],
|
|
2105
|
-
AUTHORITY["EPSG","6759"]],
|
|
2106
|
-
PRIMEM["Greenwich",0,
|
|
2107
|
-
AUTHORITY["EPSG","8901"]],
|
|
2108
|
-
UNIT["degree",0.0174532925199433,
|
|
2109
|
-
AUTHORITY["EPSG","9122"]],
|
|
2110
|
-
AUTHORITY["EPSG","4759"]],
|
|
2111
|
-
PROJECTION["Hotine_Oblique_Mercator"],
|
|
2112
|
-
PARAMETER["latitude_of_center",57],
|
|
2113
|
-
PARAMETER["longitude_of_center",-133.666666666667],
|
|
2114
|
-
PARAMETER["azimuth",323.130102361111],
|
|
2115
|
-
PARAMETER["rectified_grid_angle",323.130102361111],
|
|
2116
|
-
PARAMETER["scale_factor",0.9999],
|
|
2117
|
-
PARAMETER["false_easting",5000000],
|
|
2118
|
-
PARAMETER["false_northing",-5000000],
|
|
2119
|
-
UNIT["metre",1,
|
|
2120
|
-
AUTHORITY["EPSG","9001"]],
|
|
2121
|
-
AXIS["Easting",EAST],
|
|
2122
|
-
AXIS["Northing",NORTH],
|
|
2123
|
-
AUTHORITY["EPSG","3468"]]`,
|
|
2124
|
-
xy: [1264314.74, -763162.04],
|
|
2125
|
-
ll: [-128.115000029, 44.8150000066],
|
|
2126
|
-
acc: {
|
|
2127
|
-
ll: 9,
|
|
2128
|
-
xy: 4
|
|
2129
|
-
}
|
|
2130
|
-
},
|
|
2131
|
-
// Omerc Type B - #308
|
|
2132
|
-
{
|
|
2133
|
-
code: '+proj=omerc +lat_0=37.4769061 +lonc=141.0039618 +alpha=202.22 +k=1 +x_0=138 +y_0=77.65 +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs',
|
|
2134
|
-
xy: [168.2438, 64.1736],
|
|
2135
|
-
ll: [141.003611, 37.476802],
|
|
2136
|
-
acc: {
|
|
2137
|
-
ll: 9,
|
|
2138
|
-
xy: 4
|
|
2139
|
-
}
|
|
2140
|
-
},
|
|
2141
|
-
{
|
|
2142
|
-
code: 'PROJCS["UNK / Oblique_Mercator",GEOGCS["UNK",DATUM["Unknown datum",SPHEROID["WGS 84", 6378137.0, 298.257223563]],PRIMEM["Greenwich",0],UNIT["degree",0.017453292519943295]],PROJECTION["Oblique_Mercator"],PARAMETER["latitude_of_center",37.4769061],PARAMETER["longitude_of_center",141.0039618],PARAMETER["central_meridian",141.0039618],PARAMETER["azimuth",202.22],PARAMETER["scale_factor",1],PARAMETER["false_easting",138],PARAMETER["false_northing",77.65],UNIT["Meter",1]]',
|
|
2143
|
-
xy: [168.2438, 64.1736],
|
|
2144
|
-
ll: [141.003611, 37.476802],
|
|
2145
|
-
acc: {
|
|
2146
|
-
ll: 9,
|
|
2147
|
-
xy: 4
|
|
2148
|
-
}
|
|
2149
|
-
},
|
|
2150
|
-
// Test with Feet
|
|
2151
|
-
{
|
|
2152
|
-
code: 'PROJCS["UNK / Oblique_Mercator",GEOGCS["UNK",DATUM["Unknown datum",SPHEROID["WGS 84", 6378137.0, 298.257223563]],PRIMEM["Greenwich",0],UNIT["degree",0.017453292519943295]],PROJECTION["Oblique_Mercator"],PARAMETER["latitude_of_center",37.4769061],PARAMETER["longitude_of_center",141.0039618],PARAMETER["central_meridian",141.0039618],PARAMETER["azimuth",202.22],PARAMETER["scale_factor",1],PARAMETER["false_easting",138],PARAMETER["false_northing",77.65],UNIT["Foot_US",0.3048006096012192]]',
|
|
2153
|
-
xy: [237.22488871325027, 33.43626458451221],
|
|
2154
|
-
ll: [141.003611, 37.476802]
|
|
2155
|
-
},
|
|
2156
|
-
{
|
|
2157
|
-
code: 'PROJCS["WGS 84 / Pseudo-Mercator", GEOGCS["WGS 84", DATUM["World Geodetic System 1984", SPHEROID["WGS 84", 6378137.0, 0, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic latitude", NORTH], AXIS["Geodetic longitude", EAST], AUTHORITY["EPSG","4326"]], PROJECTION["Popular Visualisation Pseudo Mercator", AUTHORITY["EPSG","1024"]], PARAMETER["semi_minor", 6378137.0], PARAMETER["latitude_of_origin", 0.0], PARAMETER["central_meridian", 0.0], PARAMETER["scale_factor", 1.0], PARAMETER["false_easting", 0.0], PARAMETER["false_northing", 0.0], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","3857"]]',
|
|
2158
|
-
xy: [-12523490.49256873, 5166512.50707369],
|
|
2159
|
-
ll: [-112.50042920000004, 42.036926809999976]
|
|
2160
|
-
},
|
|
2161
|
-
{
|
|
2162
|
-
code: 'PROJCS["WGS 84 / Pseudo-Mercator",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Mercator_1SP"],PARAMETER["central_meridian",0],PARAMETER["scale_factor",1],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["X",EAST],AXIS["Y",NORTH],EXTENSION["PROJ4","+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs"],AUTHORITY["EPSG","9999"]]',
|
|
2163
|
-
xy: [-12523490.49256873, 5166512.50707369],
|
|
2164
|
-
ll: [-112.50042920000004, 42.036926809999976]
|
|
2165
|
-
},
|
|
2166
|
-
{
|
|
2167
|
-
code: '+proj=geocent +datum=WGS84 +units=m +no_defs',
|
|
2168
|
-
ll: [-7.56234, 38.96618, 0],
|
|
2169
|
-
xy: [4922499, -653508, 3989398],
|
|
2170
|
-
acc: {
|
|
2171
|
-
ll: 0,
|
|
2172
|
-
xy: 0
|
|
2173
|
-
}
|
|
2174
|
-
},
|
|
2175
|
-
{
|
|
2176
|
-
code: '+proj=geocent +ellps=GRS80 +units=m +no_defs',
|
|
2177
|
-
ll: [-7.56234, 38.96618, 1],
|
|
2178
|
-
xy: [4922499, -653508, 3989399],
|
|
2179
|
-
acc: {
|
|
2180
|
-
ll: 0,
|
|
2181
|
-
xy: 0
|
|
2182
|
-
}
|
|
2183
|
-
},
|
|
2184
|
-
{
|
|
2185
|
-
code: '+proj=tpers +a=6400000 +h=1000000 +azi=20',
|
|
2186
|
-
ll: [2, 1],
|
|
2187
|
-
xy: [170820.288955531, 180460.865555805],
|
|
2188
|
-
acc: {
|
|
2189
|
-
ll: 5,
|
|
2190
|
-
xy: 0
|
|
2191
|
-
}
|
|
2192
|
-
},
|
|
2193
|
-
{
|
|
2194
|
-
code: '+proj=tpers +a=6400000 +h=1000000 +azi=20',
|
|
2195
|
-
ll: [2, -1],
|
|
2196
|
-
xy: [246853.941538942, -28439.878035775],
|
|
2197
|
-
acc: {
|
|
2198
|
-
ll: 5,
|
|
2199
|
-
xy: 0
|
|
2200
|
-
}
|
|
2201
|
-
},
|
|
2202
|
-
{
|
|
2203
|
-
code: '+proj=tpers +a=6400000 +h=1000000 +azi=20',
|
|
2204
|
-
ll: [-2, 1],
|
|
2205
|
-
xy: [-246853.941538942, 28439.878035775],
|
|
2206
|
-
acc: {
|
|
2207
|
-
ll: 5,
|
|
2208
|
-
xy: 0
|
|
2209
|
-
}
|
|
2210
|
-
},
|
|
2211
|
-
{
|
|
2212
|
-
code: '+proj=tpers +a=6400000 +h=1000000 +azi=20',
|
|
2213
|
-
ll: [-2, -1],
|
|
2214
|
-
xy: [-170820.288955531, -180460.865555805],
|
|
2215
|
-
acc: {
|
|
2216
|
-
ll: 5,
|
|
2217
|
-
xy: 0
|
|
2218
|
-
}
|
|
2219
|
-
},
|
|
2220
|
-
{
|
|
2221
|
-
code: '+proj=tpers +a=6400000 +h=1000000 +tilt=20',
|
|
2222
|
-
ll: [2, 1],
|
|
2223
|
-
xy: [213598.340357101, 113687.930830744],
|
|
2224
|
-
acc: {
|
|
2225
|
-
ll: 5,
|
|
2226
|
-
xy: 0
|
|
2227
|
-
}
|
|
2228
|
-
},
|
|
2229
|
-
{
|
|
2230
|
-
code: '+proj=tpers +a=6400000 +h=1000000 +tilt=20',
|
|
2231
|
-
ll: [2, -1],
|
|
2232
|
-
xy: [231609.982792523, -123274.645577324],
|
|
2233
|
-
acc: {
|
|
2234
|
-
ll: 5,
|
|
2235
|
-
xy: 0
|
|
2236
|
-
}
|
|
2237
|
-
},
|
|
2238
|
-
{
|
|
2239
|
-
code: '+proj=tpers +a=6400000 +h=1000000 +tilt=20',
|
|
2240
|
-
ll: [-2, 1],
|
|
2241
|
-
xy: [-213598.340357101, 113687.930830744],
|
|
2242
|
-
acc: {
|
|
2243
|
-
ll: 5,
|
|
2244
|
-
xy: 0
|
|
2245
|
-
}
|
|
2246
|
-
},
|
|
2247
|
-
{
|
|
2248
|
-
code: '+proj=tpers +a=6400000 +h=1000000 +tilt=20',
|
|
2249
|
-
ll: [-2, -1],
|
|
2250
|
-
xy: [-231609.982792523, -123274.645577324],
|
|
2251
|
-
acc: {
|
|
2252
|
-
ll: 5,
|
|
2253
|
-
xy: 0
|
|
2254
|
-
}
|
|
2255
|
-
},
|
|
2256
|
-
// Geostationary - Ellipsoid - X Sweep
|
|
2257
|
-
{
|
|
2258
|
-
code: '+proj=geos +sweep=x +lon_0=-75 +h=35786023 +a=6378137.0 +b=6356752.314',
|
|
2259
|
-
ll: [-95, 25],
|
|
2260
|
-
xy: [-1920508.77, 2605680.03]
|
|
2261
|
-
},
|
|
2262
|
-
// Geostationary - Ellipsoid - Y Sweep
|
|
2263
|
-
{
|
|
2264
|
-
code: '+proj=geos +sweep=y +lon_0=-75 +h=35786023 +a=6378137.0 +b=6356752.314',
|
|
2265
|
-
ll: [-95, 25],
|
|
2266
|
-
xy: [-1925601.20, 2601922.01]
|
|
2267
|
-
},
|
|
2268
|
-
// Geostationary - Sphere - X Sweep
|
|
2269
|
-
{
|
|
2270
|
-
code: '+proj=geos +sweep=x +lon_0=-75 +h=35786023 +a=6378137.0 +b=6378137.0',
|
|
2271
|
-
ll: [-95, 25],
|
|
2272
|
-
xy: [-1919131.48, 2621384.15]
|
|
2273
|
-
},
|
|
2274
|
-
// Geostationary - Sphere - Y Sweep
|
|
2275
|
-
{
|
|
2276
|
-
code: '+proj=geos +sweep=y +lon_0=-75 +h=35786023 +a=6378137.0 +b=6378137.0',
|
|
2277
|
-
ll: [-95, 25],
|
|
2278
|
-
xy: [-1924281.93, 2617608.82]
|
|
2279
|
-
},
|
|
2280
|
-
// WKT - Arctic Polar Stereographic
|
|
2281
|
-
{
|
|
2282
|
-
code: 'PROJCS["WGS 84 / Arctic Polar Stereographic",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Polar_Stereographic"],PARAMETER["latitude_of_origin",71],PARAMETER["central_meridian",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","3995"]]',
|
|
2283
|
-
ll: [0, 90],
|
|
2284
|
-
xy: [0, 0]
|
|
2285
|
-
},
|
|
2286
|
-
{
|
|
2287
|
-
code: `PROJCRS["WGS 84 / Arctic Polar Stereographic",
|
|
2288
|
-
BASEGEOGCRS["WGS 84",
|
|
2289
|
-
ENSEMBLE["World Geodetic System 1984 ensemble",
|
|
2290
|
-
MEMBER["World Geodetic System 1984 (Transit)"],
|
|
2291
|
-
MEMBER["World Geodetic System 1984 (G730)"],
|
|
2292
|
-
MEMBER["World Geodetic System 1984 (G873)"],
|
|
2293
|
-
MEMBER["World Geodetic System 1984 (G1150)"],
|
|
2294
|
-
MEMBER["World Geodetic System 1984 (G1674)"],
|
|
2295
|
-
MEMBER["World Geodetic System 1984 (G1762)"],
|
|
2296
|
-
MEMBER["World Geodetic System 1984 (G2139)"],
|
|
2297
|
-
MEMBER["World Geodetic System 1984 (G2296)"],
|
|
2298
|
-
ELLIPSOID["WGS 84",6378137,298.257223563,
|
|
2299
|
-
LENGTHUNIT["metre",1]],
|
|
2300
|
-
ENSEMBLEACCURACY[2.0]],
|
|
2301
|
-
PRIMEM["Greenwich",0,
|
|
2302
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
2303
|
-
ID["EPSG",4326]],
|
|
2304
|
-
CONVERSION["Arctic Polar Stereographic",
|
|
2305
|
-
METHOD["Polar Stereographic (variant B)",
|
|
2306
|
-
ID["EPSG",9829]],
|
|
2307
|
-
PARAMETER["Latitude of standard parallel",71,
|
|
2308
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
2309
|
-
ID["EPSG",8832]],
|
|
2310
|
-
PARAMETER["Longitude of origin",0,
|
|
2311
|
-
ANGLEUNIT["degree",0.0174532925199433],
|
|
2312
|
-
ID["EPSG",8833]],
|
|
2313
|
-
PARAMETER["False easting",0,
|
|
2314
|
-
LENGTHUNIT["metre",1],
|
|
2315
|
-
ID["EPSG",8806]],
|
|
2316
|
-
PARAMETER["False northing",0,
|
|
2317
|
-
LENGTHUNIT["metre",1],
|
|
2318
|
-
ID["EPSG",8807]]],
|
|
2319
|
-
CS[Cartesian,2],
|
|
2320
|
-
AXIS["easting (X)",south,
|
|
2321
|
-
MERIDIAN[90,
|
|
2322
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
2323
|
-
ORDER[1],
|
|
2324
|
-
LENGTHUNIT["metre",1]],
|
|
2325
|
-
AXIS["northing (Y)",south,
|
|
2326
|
-
MERIDIAN[180,
|
|
2327
|
-
ANGLEUNIT["degree",0.0174532925199433]],
|
|
2328
|
-
ORDER[2],
|
|
2329
|
-
LENGTHUNIT["metre",1]],
|
|
2330
|
-
USAGE[
|
|
2331
|
-
SCOPE["Polar research."],
|
|
2332
|
-
AREA["Northern hemisphere - north of 60°N onshore and offshore, including Arctic."],
|
|
2333
|
-
BBOX[60,-180,90,180]],
|
|
2334
|
-
ID["EPSG",3995]]`,
|
|
2335
|
-
ll: [0, 0],
|
|
2336
|
-
xy: [0, -12367396.218459858]
|
|
2337
|
-
},
|
|
2338
|
-
{
|
|
2339
|
-
code: 'PROJCS["WGS 84 / Arctic Polar Stereographic",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Polar_Stereographic"],PARAMETER["latitude_of_origin",71],PARAMETER["central_meridian",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","3995"]]',
|
|
2340
|
-
ll: [0, 0],
|
|
2341
|
-
xy: [0, -12367396.218459858]
|
|
2342
|
-
},
|
|
2343
|
-
// WKT - Antarctic Polar Stereographic
|
|
2344
|
-
{
|
|
2345
|
-
code: 'PROJCS["WGS 84 / Antarctic Polar Stereographic",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],PROJECTION["Polar_Stereographic"],PARAMETER["latitude_of_origin",-71],PARAMETER["central_meridian",0],PARAMETER["scale_factor",1],PARAMETER["false_easting",0],PARAMETER["false_northing",0],AUTHORITY["EPSG","3031"]]',
|
|
2346
|
-
ll: [0, -90],
|
|
2347
|
-
xy: [0, 0]
|
|
2348
|
-
},
|
|
2349
|
-
{
|
|
2350
|
-
code: 'PROJCS["WGS 84 / Antarctic Polar Stereographic",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],PROJECTION["Polar_Stereographic"],PARAMETER["latitude_of_origin",-71],PARAMETER["central_meridian",0],PARAMETER["scale_factor",1],PARAMETER["false_easting",0],PARAMETER["false_northing",0],AUTHORITY["EPSG","3031"]]',
|
|
2351
|
-
ll: [0, 0],
|
|
2352
|
-
xy: [0, 12367396.218459858]
|
|
2353
|
-
},
|
|
2354
|
-
{
|
|
2355
|
-
code: '+proj=eqearth +lon_0=0 +x_0=0 +y_0=0 +R=6371008.7714 +units=m +no_defs +type=crs',
|
|
2356
|
-
ll: [16, 48],
|
|
2357
|
-
xy: [1284600.7230114893, 5794915.366010354]
|
|
2358
|
-
},
|
|
2359
|
-
{
|
|
2360
|
-
code: '+proj=eqearth +lon_0=150 +x_0=0 +y_0=0 +R=6371008.7714 +units=m +no_defs +type=crs',
|
|
2361
|
-
ll: [16, 48],
|
|
2362
|
-
xy: [-10758531.055221224, 5794915.366010354]
|
|
2363
|
-
},
|
|
2364
|
-
{
|
|
2365
|
-
code: '+proj=bonne +lat_1=10 +lon_0=10',
|
|
2366
|
-
ll: [4.9, 52.366667],
|
|
2367
|
-
xy: [-347381.937958562, 4700204.94589969]
|
|
2368
|
-
},
|
|
2369
|
-
{
|
|
2370
|
-
code: '+proj=bonne +a=6400000 +lat_1=0.5 +lat_2=2',
|
|
2371
|
-
ll: [2, 1],
|
|
2372
|
-
xy: [223368.11557252839, 55884.555246393575]
|
|
2373
|
-
},
|
|
2374
|
-
{
|
|
2375
|
-
code: '+proj=bonne +ellps=GRS80 +lat_1=0.5 +lat_2=2',
|
|
2376
|
-
ll: [2, 1],
|
|
2377
|
-
xy: [222605.29609715697, 55321.139565494814]
|
|
2378
|
-
}
|
|
2379
|
-
];
|
|
2380
|
-
if (typeof module !== 'undefined') {
|
|
2381
|
-
module.exports = testPoints;
|
|
2382
|
-
} else if (typeof define === 'function') {
|
|
2383
|
-
define(function () {
|
|
2384
|
-
return testPoints;
|
|
2385
|
-
});
|
|
2386
|
-
}
|