Skip to content

Commit 520b94b

Browse files
authored
Added support for EPSG:9054 (#93)
* Added support for EPSG:9054
1 parent 621ad10 commit 520b94b

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/main/resources/proj4/nad/epsg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11728,3 +11728,5 @@
1172811728
<8349> +proj=longlat +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +vunits=m +no_defs <>
1172911729
# GR96 + GVR2016 height
1173011730
<8350> +proj=longlat +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +vunits=m +no_defs <>
11731+
# WGS 84 (G873)
11732+
<9054> +proj=longlat +datum=WGS84 +no_defs <>

src/test/java/org/locationtech/proj4j/CoordinateTransformTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ public void testPROJ4() {
235235
checkTransform("EPSG:3857", 829045.23, 5933605.15, "EPSG:2056", 2600670.52, 1199667.32, 0.01);
236236
checkTransform("EPSG:3857", -20037508.342789244, -20037366.780895382, "EPSG:4055", -180.0, -85.01794318500549, 0.001);
237237
checkTransform("EPSG:4055", -180.0, -85.01794318500549, "EPSG:3857", -20037508.342789244, -20037366.780895382, 0.0);
238+
checkTransform("EPSG:9054", 103.095703, 36.421282, "EPSG:3857", 11476561.160934567, 4358745.039558878, 0.0);
238239
}
239240

240241
@Test

0 commit comments

Comments
 (0)