From 3fb6f71bdaae14e1d28a1d3101accd6a880c93ae Mon Sep 17 00:00:00 2001 From: Nanda Date: Thu, 31 Aug 2023 11:26:28 +1000 Subject: [PATCH 1/2] Adds EPSG:7855 to known projections. --- lib/Map/Vector/Proj4Definitions.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/Map/Vector/Proj4Definitions.ts b/lib/Map/Vector/Proj4Definitions.ts index b0ed9f9f2d0..c56abf86a98 100644 --- a/lib/Map/Vector/Proj4Definitions.ts +++ b/lib/Map/Vector/Proj4Definitions.ts @@ -57,7 +57,9 @@ const Proj4Definitions: Record = { "EPSG:102100": "EPSG:3857", "EPSG:27700": "+proj=tmerc +lat_0=49 +lon_0=-2 +k=0.9996012717 +x_0=400000 +y_0=-100000 +ellps=airy +towgs84=446.448,-125.157,542.06,0.15,0.247,0.842,-20.489 +units=m +no_defs", - "EPSG:7844": "+proj=longlat +ellps=GRS80 +no_defs +type=crs" + "EPSG:7844": "+proj=longlat +ellps=GRS80 +no_defs +type=crs", + "EPSG:7855": + "+proj=utm +zone=55 +south +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs +type=crs" }; export default Proj4Definitions; From f3bfaeb5cba61e580b559ff4a6f10a124d9b0ed4 Mon Sep 17 00:00:00 2001 From: Nanda Date: Thu, 31 Aug 2023 11:27:29 +1000 Subject: [PATCH 2/2] Update CHANGES.md. --- CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.md b/CHANGES.md index 6ad891f42ba..e2f0cbb23c6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,7 @@ #### next release (8.3.3) - Fixes broken point dragging interaction for user drawing in 3d-mode. +- Added EPSG:7855 to `Proj4Definitions`. - [The next improvement] #### 8.3.2 - 2023-08-11