aboutsummaryrefslogtreecommitdiffstats
path: root/testing/proj4/TestJni.java
diff options
context:
space:
mode:
authorHolger Jaekel <holger.jaekel@gmx.de>2019-06-16 14:04:47 +0200
committerLeo <thinkabit.ukim@gmail.com>2019-06-18 10:02:38 -0300
commit809f32f81f14456ac3dcced8de78dbd8fad20b6a (patch)
tree0dbb232de370cbb46afca2084f1d3a1068985298 /testing/proj4/TestJni.java
parentcf21fb6ee118ddaeda9e8b7c9c22338f053edbef (diff)
downloadaports-809f32f81f14456ac3dcced8de78dbd8fad20b6a.tar.bz2
aports-809f32f81f14456ac3dcced8de78dbd8fad20b6a.tar.xz
testing/proj4: rename proj4 to proj
Diffstat (limited to 'testing/proj4/TestJni.java')
-rw-r--r--testing/proj4/TestJni.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/testing/proj4/TestJni.java b/testing/proj4/TestJni.java
deleted file mode 100644
index 6a517849f6..0000000000
--- a/testing/proj4/TestJni.java
+++ /dev/null
@@ -1,20 +0,0 @@
-import org.proj4.*;
-import java.util.Arrays;
-
-/**
- * Converts coordinates from EPSG:32632 (WGS 84 / UTM zone 32N) to WGS84,
- * then prints the result to the standard output stream.
- */
-public class TestJni {
- public static void main(String[] args) throws PJException {
- PJ sourcePJ = new PJ("+init=epsg:32632"); // (x,y) axis order
- PJ targetPJ = new PJ("+proj=latlong +datum=WGS84"); // (λ,φ) axis order
- double[] coordinates = {
- 500000, 0, // First coordinate
- 400000, 100000, // Second coordinate
- 600000, -100000 // Third coordinate
- };
- sourcePJ.transform(targetPJ, 2, coordinates, 0, 3);
- System.out.println(Arrays.toString(coordinates));
- }
-}