Proj4JS currently gives incorrect projection results for Polar Stereographic projections such as EPSG:3995 and EPSG:3031 when using WKT for the projection string. It works correctly for Proj4 strings. For example, EPSG:3031 (Antarctic Polar Stereographic)...
-1.239183768915974 radians = -71 degrees. WKT-Parser is parsing the latitude_of_origin value as lat0, while proj4js's stere projection expects it to be passed as lat_ts.
Proj4JS currently gives incorrect projection results for Polar Stereographic projections such as EPSG:3995 and EPSG:3031 when using WKT for the projection string. It works correctly for Proj4 strings. For example, EPSG:3031 (Antarctic Polar Stereographic)...
... as a WKT string is...
When parsing the WKT string, WKT-Parser gives this result:
-1.239183768915974 radians = -71 degrees. WKT-Parser is parsing the
latitude_of_origin
value aslat0
, while proj4js'sstere
projection expects it to be passed aslat_ts
.