proj4 2.15.0 → 2.16.1

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.
Files changed (127) hide show
  1. package/.github/workflows/build-and-test.yml +45 -7
  2. package/.nyc_output/6b047fc9-1bf2-4565-9e8a-9c0defc09dd7.json +1 -0
  3. package/.nyc_output/e2c5d0cc-9478-4f26-ad2f-de246d4c35de.json +1 -0
  4. package/.nyc_output/f4b0e40f-04ca-4b6d-bfeb-51d617db9841.json +1 -0
  5. package/.nyc_output/processinfo/6b047fc9-1bf2-4565-9e8a-9c0defc09dd7.json +1 -0
  6. package/.nyc_output/processinfo/e2c5d0cc-9478-4f26-ad2f-de246d4c35de.json +1 -0
  7. package/.nyc_output/processinfo/f4b0e40f-04ca-4b6d-bfeb-51d617db9841.json +1 -0
  8. package/.nyc_output/processinfo/index.json +1 -0
  9. package/Gruntfile.js +20 -84
  10. package/README.md +20 -6
  11. package/bower.json +1 -1
  12. package/component.json +1 -1
  13. package/dist/proj4-src.js +8934 -7083
  14. package/dist/proj4.js +1 -1
  15. package/eslint.config.mjs +41 -0
  16. package/lib/Point.js +4 -4
  17. package/lib/Proj.js +7 -8
  18. package/lib/adjust_axis.js +30 -33
  19. package/lib/common/acosh.js +2 -2
  20. package/lib/common/adjust_lat.js +2 -2
  21. package/lib/common/adjust_lon.js +2 -3
  22. package/lib/common/adjust_zone.js +1 -1
  23. package/lib/common/asinh.js +2 -2
  24. package/lib/common/asinhy.js +1 -1
  25. package/lib/common/asinz.js +2 -2
  26. package/lib/common/atanh.js +2 -2
  27. package/lib/common/clens.js +1 -1
  28. package/lib/common/clens_cmplx.js +1 -1
  29. package/lib/common/cosh.js +2 -2
  30. package/lib/common/e0fn.js +2 -2
  31. package/lib/common/e1fn.js +2 -2
  32. package/lib/common/e2fn.js +2 -2
  33. package/lib/common/e3fn.js +2 -2
  34. package/lib/common/fL.js +2 -2
  35. package/lib/common/gN.js +2 -2
  36. package/lib/common/gatg.js +1 -1
  37. package/lib/common/hypot.js +1 -1
  38. package/lib/common/imlfn.js +3 -3
  39. package/lib/common/invlatiso.js +2 -2
  40. package/lib/common/iqsfnz.js +5 -6
  41. package/lib/common/latiso.js +2 -2
  42. package/lib/common/log1py.js +1 -1
  43. package/lib/common/mlfn.js +2 -2
  44. package/lib/common/msfnz.js +2 -2
  45. package/lib/common/phi2z.js +3 -3
  46. package/lib/common/pj_enfn.js +2 -2
  47. package/lib/common/pj_inv_mlfn.js +6 -6
  48. package/lib/common/pj_mlfn.js +2 -2
  49. package/lib/common/qsfnz.js +3 -4
  50. package/lib/common/sign.js +3 -3
  51. package/lib/common/sinh.js +2 -2
  52. package/lib/common/srat.js +2 -2
  53. package/lib/common/tanh.js +2 -2
  54. package/lib/common/toPoint.js +4 -4
  55. package/lib/common/tsfnz.js +2 -2
  56. package/lib/constants/Datum.js +1228 -46
  57. package/lib/constants/Ellipsoid.js +225 -266
  58. package/lib/constants/PrimeMeridian.js +14 -14
  59. package/lib/constants/units.js +20 -20
  60. package/lib/constants/values.js +4 -4
  61. package/lib/core.js +2 -2
  62. package/lib/datum.js +2 -2
  63. package/lib/datumUtils.js +9 -14
  64. package/lib/datum_transform.js +26 -26
  65. package/lib/defs.js +10 -20
  66. package/lib/deriveConstants.js +4 -2
  67. package/lib/extend.js +1 -1
  68. package/lib/global.js +6 -6
  69. package/lib/includedProjections.js +25 -25
  70. package/lib/index.js +9 -9
  71. package/lib/nadgrid.js +36 -14
  72. package/lib/parseCode.js +10 -11
  73. package/lib/projString.js +41 -44
  74. package/lib/projections/aea.js +7 -12
  75. package/lib/projections/aeqd.js +51 -86
  76. package/lib/projections/bonne.js +11 -13
  77. package/lib/projections/cass.js +8 -15
  78. package/lib/projections/cea.js +7 -9
  79. package/lib/projections/eqc.js +2 -5
  80. package/lib/projections/eqdc.js +10 -16
  81. package/lib/projections/eqearth.js +17 -17
  82. package/lib/projections/equi.js +4 -6
  83. package/lib/projections/etmerc.js +9 -11
  84. package/lib/projections/gauss.js +3 -3
  85. package/lib/projections/geocent.js +13 -14
  86. package/lib/projections/geos.js +136 -137
  87. package/lib/projections/gnom.js +8 -13
  88. package/lib/projections/gstmerc.js +2 -5
  89. package/lib/projections/krovak.js +3 -3
  90. package/lib/projections/laea.js +85 -97
  91. package/lib/projections/lcc.js +28 -33
  92. package/lib/projections/longlat.js +4 -4
  93. package/lib/projections/merc.js +12 -19
  94. package/lib/projections/mill.js +6 -7
  95. package/lib/projections/moll.js +8 -9
  96. package/lib/projections/nzmg.js +2 -2
  97. package/lib/projections/omerc.js +55 -57
  98. package/lib/projections/ortho.js +9 -10
  99. package/lib/projections/poly.js +13 -21
  100. package/lib/projections/qsc.js +19 -21
  101. package/lib/projections/robin.js +118 -118
  102. package/lib/projections/sinu.js +12 -23
  103. package/lib/projections/somerc.js +3 -3
  104. package/lib/projections/stere.js +29 -41
  105. package/lib/projections/sterea.js +3 -4
  106. package/lib/projections/tmerc.js +29 -36
  107. package/lib/projections/tpers.js +14 -15
  108. package/lib/projections/utm.js +3 -4
  109. package/lib/projections/vandg.js +15 -21
  110. package/lib/projections.js +12 -4
  111. package/lib/transform.js +3 -3
  112. package/package.json +29 -22
  113. package/projs.js +2 -2
  114. package/publish.sh +2 -2
  115. package/rollup.config.mjs +29 -0
  116. package/scripts/readme.md +10 -0
  117. package/scripts/updateDatums.mjs +119 -0
  118. package/scripts/updateEllipsoids.mjs +70 -0
  119. package/test/ntv2_0_downsampled_no_error_columns.gsb +0 -0
  120. package/test/opt.html +27 -24
  121. package/test/puppeteer-tests.mjs +110 -0
  122. package/test/test-ci.mjs +10 -0
  123. package/test/test.js +197 -125
  124. package/test/testData.js +1802 -312
  125. package/.jshintrc +0 -12
  126. package/test/amd.html +0 -63
  127. package/test/package.json.js +0 -1
package/test/testData.js CHANGED
@@ -1,216 +1,1025 @@
1
1
  var testPoints = [
2
- {code: 'testmerc',
2
+ { code: 'testmerc',
3
3
  xy: [-45007.0787624, 4151725.59875],
4
- ll: [5.364315,46.623154]
4
+ ll: [5.364315, 46.623154]
5
5
  },
6
- {code: 'testmerc2',
7
- xy: [4156404,7480076.5],
6
+ { code: 'testmerc2',
7
+ xy: [4156404, 7480076.5],
8
8
  ll: [37.33761240175515, 55.60447049026976]
9
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],
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
12
  ll: [8.225, 46.815],
13
- acc:{
13
+ acc: {
14
14
  xy: 0.1,
15
15
  ll: 5
16
16
  }
17
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"]]',
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
19
  xy: [660013.4882918689, 185172.17110117766],
20
20
  ll: [8.225, 46.815],
21
- acc:{
21
+ acc: {
22
22
  xy: 0.1,
23
23
  ll: 5
24
24
  }
25
25
  },
26
- {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]]',
27
- xy: [ 231394.84,902621.11],
28
- ll: [-71.11881762742996,42.37346263960867]
29
- },
30
- {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]]',
31
- xy: [ 231394.84,902621.11],
32
- ll: [-71.11881762742996,42.37346263960867]
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
+ }
33
77
  },
34
- {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"]]',
35
- xy: [ 231394.84,902621.11],
36
- ll: [-71.11881762742996,42.37346263960867]
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
+ }
37
86
  },
38
- {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]]',
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]]',
39
145
  xy: [88280.59904432714, 111340.90165417176],
40
- ll: [96,31]
41
- },
42
- {code: 'PROJCS["Asia_North_Equidistant_Conic",GEOGCS["GCS_WGS_1984",DATUM["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],AUTHORITY["EPSG","102026"]]',
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]]`,
43
189
  xy: [88280.59904432714, 111340.90165417176],
44
- ll: [96,31]
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]
45
195
  },
46
- {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"]]',
47
- xy: [738509.49,5874620.38],
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],
48
198
  ll: [11.0, 53.0]
49
199
  },
50
- {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]]',
51
- xy: [738509.49,5874620.38],
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],
52
232
  ll: [11.0, 53.0]
53
233
  },
54
- {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]]',
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]]',
55
235
  xy: [4388138.60, 3321736.46],
56
236
  ll: [11.0, 53.0]
57
237
  },
58
- {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]]',
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]]',
59
239
  xy: [4388138.60, 3321736.46],
60
240
  ll: [11.0, 53.0]
61
241
  },
62
- {code: 'EPSG:102018',
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',
63
295
  xy: [350577.5930806119, 4705857.070634324],
64
- ll: [-75,46]
65
- }, {code: '+proj=gnom +lat_0=90 +lon_0=0 +x_0=6300000 +y_0=6300000 +ellps=WGS84 +datum=WGS84 +units=m +no_defs',
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',
66
298
  xy: [350577.5930806119, 4705857.070634324],
67
- ll: [-75,46]
299
+ ll: [-75, 46]
68
300
  },
69
- {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]]',
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]]',
70
302
  xy: [411461.807497, 4700123.744402],
71
303
  ll: [-82.07666015625, 42.448388671875]
72
304
  },
73
- {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]]',
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]]',
74
306
  xy: [411461.807497, 4700123.744402],
75
307
  ll: [-82.07666015625, 42.448388671875]
76
308
  },
77
- {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"]]',
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]]`,
78
415
  xy: [-1877994.66, 3932281.56],
79
416
  ll: [-16.10000000237, 32.879999998812]
80
417
  },
81
- {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]]',
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]]',
82
419
  xy: [2026074.9192811155, 12812891.606450122],
83
420
  ll: [51.517955776474096, 61.56941794249017]
84
421
  },
85
- {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"]]',
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"]]',
86
469
  xy: [3891383.58309223, 6876758.9933288],
87
- ll: [60,60]
470
+ ll: [60, 60]
88
471
  },
89
- {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]]',
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]]`,
90
507
  xy: [3891383.58309223, 6876758.9933288],
91
- ll: [60,60]
508
+ ll: [60, 60]
92
509
  },
93
510
  {
94
- 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]]',
95
- ll:[-126.54, 54.15],
96
- xy:[964813.103719, 1016486.305862]
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]
97
514
  }, {
98
- 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]]',
99
- ll:[-126.54, 54.15],
100
- xy:[964813.103719, 1016486.305862]
101
- },
102
- {
103
- 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]]',
104
- ll:[0, 0],
105
- xy:[0, 0]
106
- },
107
- {
108
- 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]]',
109
- ll:[0, 0],
110
- xy:[0, 0]
111
- },
112
- {
113
- 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]]',
114
- ll:[50.977303830208, 30.915260093747],
115
- xy:[5112279.911077, -4143196.76625]
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
+ }
116
567
  },
117
568
  {
118
- 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"]]',
119
- ll:[50.977303830208, 30.915260093747],
120
- xy:[5112279.911077, -4143196.76625]
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]
121
610
  },
122
611
  {
123
- 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]]',
124
- ll:[-60.676753018, 11.2487234308],
125
- xy:[192524.3061766178, 178100.2740019509],
126
- acc:{
127
- ll:1,
128
- xy:-4
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
129
717
  }
130
718
  }, {
131
- 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]]',
132
- ll:[-60.676753018, 11.2487234308],
133
- xy:[192524.3061766178, 178100.2740019509],
134
- acc:{
135
- ll:1,
136
- xy:-4
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
137
759
  }
138
760
  },
139
761
  // {
140
- // code:'EPSG:3975',
141
- // ll:[-9.764450683, 25.751953],
142
- // xy:[-942135.525095996, 3178441.8667094777]
762
+ // code: 'EPSG:3975',
763
+ // ll: [-9.764450683, 25.751953],
764
+ // xy: [-942135.525095996, 3178441.8667094777]
143
765
  // },
144
766
  {
145
- 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]]',
146
- ll:[-1.7539371169976, 12.632997701986],
147
- xy:[-195029.12334755991, 1395621.9368162225],
148
- acc:{
149
- ll:2
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
150
772
  }
151
773
  }, {
152
- 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]]',
153
- ll:[-1.7539371169976, 12.632997701986],
154
- xy:[-195029.12334755991, 1395621.9368162225],
155
- acc:{
156
- ll:2
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
157
787
  }
158
788
  },
159
789
  {
160
- 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]]',
161
- ll:[116.65547897884308 , -0.6595605286983485],
162
- xy:[4638523.040740433, 827245.2586932715]
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]
163
793
  }, {
164
- 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]]',
165
- ll:[116.65547897884308 , -0.6595605286983485],
166
- xy:[4638523.040740433, 827245.2586932715]
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]
167
797
  },
168
798
  {
169
- 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]]',
170
- ll:[5, 25],
171
- xy:[-308919.1234711099, 2788738.255936392]
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
+ }
172
805
  },
173
806
  {
174
- 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]]',
175
- ll:[5, 25],
176
- xy:[-308919.1234711099, 2788738.255936392]
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]
177
857
  },
178
858
  {
179
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',
180
- ll:[2.294482, 48.859045],
181
- xy:[596916.561147926957, 1128733.073948238511]
182
- },
183
- {
184
- 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]]',
185
- ll:[17.323583231075897, 49.39440725405376],
186
- xy:[-544115.474379, -1144058.330762]
187
- },{
188
- 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]]',
189
- ll:[17.323583231075897, 49.39440725405376],
190
- xy:[-544115.474379, -1144058.330762]
191
- },{
192
- 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]]',
193
- ll:[-1.3973289073953, 12.649176474268513 ],
194
- xy:[-155375.88535614178, 1404635.2633403721],
195
- acc:{
196
- ll:3
197
- }
198
- },{
199
- 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"]]',
200
- ll:[-1.3973289073953, 12.649176474268513 ],
201
- xy:[-155375.88535614178, 1404635.2633403721],
202
- acc:{
203
- ll:3
204
- }
205
- },{
206
- 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]]',
207
- ll:[172.465, -40.7],
208
- xy:[2464770.343667, 6056137.861919]
209
- },{
210
- 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]]',
211
- ll:[172.465, -40.7],
212
- xy:[2464770.343667, 6056137.861919]
213
- },{
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
+ }, {
214
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"]]',
215
1024
  ll: [52.605, 27.5],
216
1025
  xy: [658511.261946, 3043003.05468],
@@ -218,120 +1027,458 @@ var testPoints = [
218
1027
  ll: 8,
219
1028
  xy: 6
220
1029
  }
221
- },{
222
- 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]]',
223
- ll:[-49.221772553812, -0.34551739237581],
224
- xy:[5531902.134932, 9961660.779347],
225
- acc:{
226
- ll:3,
227
- xy:-2
228
- }
229
- },{
230
- 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]]',
231
- ll:[-49.221772553812, -0.34551739237581],
232
- xy:[5531902.134932, 9961660.779347],
233
- acc:{
234
- ll:3,
235
- xy:-2
236
- }
237
- },{
238
- 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]]',
239
- ll:[0, 75],
240
- xy:[2000000, 325449.806286]
241
- },{
242
- 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]]',
243
- ll:[0, 75],
244
- xy:[2000000, 325449.806286]
245
- },{
246
- code:'+proj=aeqd +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs',
247
- ll:[2, 0],
248
- xy:[222638.98158654713, 0]
249
- },{
250
- code:'+proj=aeqd +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs',
251
- ll:[89, 0],
252
- xy:[9907434.680601358, 0]
253
- },{
254
- // code:'+proj=aeqd +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs',
255
- // ll:[91, 0],
256
- // xy:[10130073.6622, 0]
257
- // },{
258
- code:'+proj=aeqd +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +a=6371000 +b=6371000 +units=m +no_defs',
259
- ll:[91, 0],
260
- xy:[10118738.32, 0.00]
261
- },{
262
- code:'+proj=laea +lat_0=2 +lon_0=1 +x_0=0 +y_0=0 +a=6371000 +b=6371000 +units=m +no_defs',
263
- ll:[1, 2],
264
- xy:[0, 0]
265
- },{
266
- code:'+proj=laea +lat_0=1 +lon_0=1 +x_0=0 +y_0=0 +a=6371000 +b=6371000 +units=m +no_defs',
267
- ll:[1, 1],
268
- xy:[0, 0]
269
- },{
270
- code:'+proj=laea +lat_0=1 +lon_0=1 +x_0=0 +y_0=0 +a=6371000 +b=6371000 +units=m +no_defs',
271
- ll:[2, 1],
272
- xy:[111176.58, 16.93]
273
- },{
274
- code:'+proj=laea +lat_0=1 +lon_0=1 +x_0=0 +y_0=0 +a=6371000 +b=6371000 +units=m +no_defs',
275
- ll:[1, 2],
276
- xy:[0.00,111193.52]
277
- },{
278
- code:'+proj=laea +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +a=6371000 +b=6371000 +units=m +no_defs',
279
- ll:[19, 0],
280
- xy:[2103036.59, 0.00]
281
- },{
282
- 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"',
283
- ll:[0, -72.5],
284
- xy:[0, 1910008.78441421]
285
- },{
286
- code:'+proj=stere +lat_0=-90 +lon_0=0 +x_0=0 +y_0=0 +a=3396000 +b=3396000 +units=m +no_defs',
287
- ll:[0, -72.5],
288
- xy:[0, 1045388.79]
289
- },{
290
- code:'+proj=stere',
291
- ll:[0, -72.5],
292
- xy:[0, -9334375.897187851]
293
- },{
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
+ }, {
294
1270
  // Test that lat_ts at a pole is handled correctly in stere projection
295
- 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',
296
- ll:[69.648700, 18.955781],
297
- xy:[8527917.706, -3163255.729]
298
- },{
299
- 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"]]',
300
- ll:[0, -72.5],
301
- xy:[0, 1910008.78441421]
302
- },{
303
- 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]]',
304
- ll:[-66.415, 46.34],
305
- xy:[2506543.370459, 7482219.546176]
306
- },{
307
- 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]]',
308
- ll:[-66.415, 46.34],
309
- xy:[2506543.370459, 7482219.546176]
310
- },{
311
- 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]]',
312
- ll:[-1.41160801956, 67.40891366748],
313
- xy:[-125108.675828, 9016899.042114],
314
- acc:{
315
- ll:0,
316
- xy:-5
317
- }
318
- },{
319
- 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"]]',
320
- ll:[-1.41160801956, 67.40891366748],
321
- xy:[-125108.675828, 9016899.042114],
322
- acc:{
323
- ll:0,
324
- xy:-5
325
- }
326
- },{
327
- 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]]',
328
- ll:[-74,41],
329
- xy:[630128.205,789591.522]
330
- },
331
- {
332
- code:'esriOnline',
333
- ll:[-74,41],
334
- xy:[-8237642.318702244, 5012341.663847514]
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]
335
1482
  },
336
1483
  {
337
1484
  code: '+proj=sinu +lon_0=0 +x_0=0 +y_0=0 +a=6371000 +b=6371000 +units=m +no_defs',
@@ -339,60 +1486,310 @@ var testPoints = [
339
1486
  ll: [11.0, 53.0]
340
1487
  },
341
1488
  {
342
- 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]]',
343
- xy:[104588.196404, 193175.582367],
344
- ll:[3.7186701465384533,51.04642936832842]
345
- },
346
- {
347
- 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]]',
348
- xy:[104588.196404, 193175.582367],
349
- ll:[3.7186701465384533,51.04642936832842]
350
- },
351
- {
352
- 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"]]',
353
- xy:[104469.69796438649, 193146.39675426576],
354
- ll:[3.7186701465384533,51.04642936832842]
355
- },
356
- {
357
- 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"]]',
358
- xy:[104468.8305227503, 193169.6828284394],
359
- ll:[3.7186701465384533,51.04642936832842]
360
- },
361
- {
362
- 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"]]',
363
- xy:[104412.1099068548, 193116.8535417635],
364
- ll:[3.7186701465384533,51.04642936832842]
365
- },
366
- {
367
- 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 ',
368
- xy:[104588.196404, 193175.582367],
369
- ll:[3.7186701465384533,51.04642936832842]
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]
370
1567
  },
371
1568
  {
372
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"]]',
373
1570
  xy: [7578825.28673236, 11374595.814939449],
374
- ll: [44.2312, 76.4860],
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]
375
1614
  },
376
1615
  {
377
- 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",
378
- ll:[-3.20078, 55.96056],
379
- xy:[325132.0089586496, 674822.638235305]
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]
380
1619
  },
381
1620
  {
382
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"]]',
383
- ll:[-3.20078, 55.96056],
384
- xy:[325132.0089586496, 674822.638235305]
385
- },
386
- {
387
- 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",
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',
388
1669
  ll: [12.806988, 49.452262],
389
1670
  xy: [-868208.61, -1095793.64]
390
1671
  },
391
1672
  {
392
- 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",
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',
393
1674
  ll: [-110.8, 43.5],
394
1675
  xy: [2434515.870, 1422072.711]
395
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
+ },
396
1793
  // QSC WGS84
397
1794
  {
398
1795
  code: '+proj=qsc +lat_0=0 +lon_0=0 +units=m +datum=WGS84',
@@ -468,7 +1865,7 @@ var testPoints = [
468
1865
  {
469
1866
  code: '+proj=qsc +units=m +a=3396190 +b=3376200 +lat_0=0 +lon_0=90',
470
1867
  ll: [2, 1],
471
- xy: [-6164327.7345527401193976,119033.1141843862715177]
1868
+ xy: [-6164327.7345527401193976, 119033.1141843862715177]
472
1869
  },
473
1870
  {
474
1871
  code: '+proj=qsc +units=m +a=3396190 +b=3376200 +lat_0=0 +lon_0=180',
@@ -495,43 +1892,43 @@ var testPoints = [
495
1892
  code: '+proj=robin +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs',
496
1893
  ll: [-15, -35],
497
1894
  xy: [-1335949.91, -3743319.07],
498
- acc: {ll: 4, xy: 0}
1895
+ acc: { ll: 4, xy: 0 }
499
1896
  },
500
1897
  {
501
1898
  code: '+proj=robin +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs',
502
1899
  ll: [-10, 50],
503
1900
  xy: [-819964.60, 5326895.52],
504
- acc: {ll: 4, xy: 0}
1901
+ acc: { ll: 4, xy: 0 }
505
1902
  },
506
1903
  {
507
1904
  code: '+proj=robin +a=6400000',
508
1905
  ll: [80, -20],
509
1906
  xy: [7449059.80, -2146370.56],
510
- acc: {ll: 4, xy: 0}
1907
+ acc: { ll: 4, xy: 0 }
511
1908
  },
512
1909
  {
513
1910
  code: '+proj=robin +lon_0=15 +x_0=100000 +y_0=100000 +datum=WGS84',
514
1911
  ll: [-35, 40],
515
1912
  xy: [-4253493.26, 4376351.58],
516
- acc: {ll: 4, xy: 0}
1913
+ acc: { ll: 4, xy: 0 }
517
1914
  },
518
1915
  {
519
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]]',
520
1917
  ll: [20, 40],
521
1918
  xy: [1741397.30, 4276351.58],
522
- acc: {ll: 4, xy: 0}
1919
+ acc: { ll: 4, xy: 0 }
523
1920
  },
524
1921
  {
525
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]]',
526
1923
  ll: [-35, 40],
527
1924
  xy: [-4253493.26, 4376351.58],
528
- acc: {ll: 4, xy: 0}
1925
+ acc: { ll: 4, xy: 0 }
529
1926
  },
530
1927
  {
531
1928
  code: '+proj=robin +lon_0=162 +x_0=0 +y_0=0 +ellps=WGS84 +datum=WGS84 +units=m +no_defs',
532
1929
  ll: [-90, 22],
533
1930
  xy: [9987057.08, 2352946.55],
534
- acc: {ll: 4, xy: 0}
1931
+ acc: { ll: 4, xy: 0 }
535
1932
  },
536
1933
  // check that coordinates at 180 and -180 deg. longitude don't wrap around
537
1934
  {
@@ -647,7 +2044,7 @@ var testPoints = [
647
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]]',
648
2045
  xy: [-361.2499999983702, 254.91500000283122],
649
2046
  ll: [-122.25064809, 37.50832038],
650
- acc:{
2047
+ acc: {
651
2048
  ll: 3,
652
2049
  xy: 8
653
2050
  }
@@ -657,7 +2054,7 @@ var testPoints = [
657
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',
658
2055
  xy: [412597.532715, 338944.957259],
659
2056
  ll: [101.70979078430528, 3.06268465621428],
660
- acc:{
2057
+ acc: {
661
2058
  ll: 2,
662
2059
  xy: -3
663
2060
  }
@@ -666,7 +2063,16 @@ var testPoints = [
666
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"]]',
667
2064
  xy: [412597.532715, 338944.957259],
668
2065
  ll: [101.70979078430528, 3.06268465621428],
669
- acc:{
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: {
670
2076
  ll: 7,
671
2077
  xy: 6
672
2078
  }
@@ -676,7 +2082,7 @@ var testPoints = [
676
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',
677
2083
  xy: [1264314.74, -763162.04],
678
2084
  ll: [-128.115000029, 44.8150000066],
679
- acc:{
2085
+ acc: {
680
2086
  ll: 9,
681
2087
  xy: 4
682
2088
  }
@@ -685,7 +2091,39 @@ var testPoints = [
685
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"]]',
686
2092
  xy: [1264314.74, -763162.04],
687
2093
  ll: [-128.115000029, 44.8150000066],
688
- acc:{
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: {
689
2127
  ll: 9,
690
2128
  xy: 4
691
2129
  }
@@ -695,7 +2133,7 @@ var testPoints = [
695
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',
696
2134
  xy: [168.2438, 64.1736],
697
2135
  ll: [141.003611, 37.476802],
698
- acc:{
2136
+ acc: {
699
2137
  ll: 9,
700
2138
  xy: 4
701
2139
  }
@@ -704,7 +2142,7 @@ var testPoints = [
704
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]]',
705
2143
  xy: [168.2438, 64.1736],
706
2144
  ll: [141.003611, 37.476802],
707
- acc:{
2145
+ acc: {
708
2146
  ll: 9,
709
2147
  xy: 4
710
2148
  }
@@ -713,7 +2151,7 @@ var testPoints = [
713
2151
  {
714
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]]',
715
2153
  xy: [237.22488871325027, 33.43626458451221],
716
- ll: [141.003611, 37.476802],
2154
+ ll: [141.003611, 37.476802]
717
2155
  },
718
2156
  {
719
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"]]',
@@ -819,47 +2257,99 @@ var testPoints = [
819
2257
  {
820
2258
  code: '+proj=geos +sweep=x +lon_0=-75 +h=35786023 +a=6378137.0 +b=6356752.314',
821
2259
  ll: [-95, 25],
822
- xy: [-1920508.77, 2605680.03],
2260
+ xy: [-1920508.77, 2605680.03]
823
2261
  },
824
2262
  // Geostationary - Ellipsoid - Y Sweep
825
2263
  {
826
2264
  code: '+proj=geos +sweep=y +lon_0=-75 +h=35786023 +a=6378137.0 +b=6356752.314',
827
2265
  ll: [-95, 25],
828
- xy: [-1925601.20, 2601922.01],
2266
+ xy: [-1925601.20, 2601922.01]
829
2267
  },
830
2268
  // Geostationary - Sphere - X Sweep
831
2269
  {
832
2270
  code: '+proj=geos +sweep=x +lon_0=-75 +h=35786023 +a=6378137.0 +b=6378137.0',
833
2271
  ll: [-95, 25],
834
- xy: [-1919131.48, 2621384.15],
2272
+ xy: [-1919131.48, 2621384.15]
835
2273
  },
836
2274
  // Geostationary - Sphere - Y Sweep
837
2275
  {
838
2276
  code: '+proj=geos +sweep=y +lon_0=-75 +h=35786023 +a=6378137.0 +b=6378137.0',
839
2277
  ll: [-95, 25],
840
- xy: [-1924281.93, 2617608.82],
2278
+ xy: [-1924281.93, 2617608.82]
841
2279
  },
842
2280
  // WKT - Arctic Polar Stereographic
843
2281
  {
844
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"]]',
845
2283
  ll: [0, 90],
846
- xy: [0, 0],
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]
847
2337
  },
848
2338
  {
849
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"]]',
850
2340
  ll: [0, 0],
851
- xy: [0, -12367396.218459858],
2341
+ xy: [0, -12367396.218459858]
852
2342
  },
853
2343
  // WKT - Antarctic Polar Stereographic
854
2344
  {
855
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"]]',
856
2346
  ll: [0, -90],
857
- xy: [0, 0],
2347
+ xy: [0, 0]
858
2348
  },
859
2349
  {
860
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"]]',
861
2351
  ll: [0, 0],
862
- xy: [0, 12367396.218459858],
2352
+ xy: [0, 12367396.218459858]
863
2353
  },
864
2354
  {
865
2355
  code: '+proj=eqearth +lon_0=0 +x_0=0 +y_0=0 +R=6371008.7714 +units=m +no_defs +type=crs',