X-Git-Url: https://gitweb.fperrin.net/?p=GpsPrune.git;a=blobdiff_plain;f=src%2Ftim%2Fprune%2Ffunction%2FProjectPoint.java;fp=src%2Ftim%2Fprune%2Ffunction%2FProjectPoint.java;h=ccdc5090669926e055593e16f490665226c3dcfa;hp=10c067514da8e5ab74fa5cdadff931513bd61684;hb=91b72650132900084810e58144e2d7cc91150924;hpb=38a0c12649e9104d0d40ce93a932b9086011f8c8 diff --git a/src/tim/prune/function/ProjectPoint.java b/src/tim/prune/function/ProjectPoint.java index 10c0675..ccdc509 100644 --- a/src/tim/prune/function/ProjectPoint.java +++ b/src/tim/prune/function/ProjectPoint.java @@ -202,7 +202,6 @@ public class ProjectPoint extends GenericFunction final double projectRads = Distance.convertDistanceToRadians(_distanceField.getValue(), distUnit); final double origLatRads = Math.toRadians(currPoint.getLatitude().getDouble()); final double origLonRads = Math.toRadians(currPoint.getLongitude().getDouble()); - System.out.println("Project from: " + origLatRads + ", " + origLonRads); final double bearingRads = Math.toRadians(_bearingField.getValue()); double lat2 = Math.asin(Math.sin(origLatRads) * Math.cos(projectRads) @@ -212,7 +211,6 @@ public class ProjectPoint extends GenericFunction double finalLatDeg = Math.toDegrees(lat2); double finalLonDeg = Math.toDegrees(lon2); - System.out.println("Result is: lat=" + finalLatDeg + ", lon=" + finalLonDeg); // Create point and append to track DataPoint point = new DataPoint(new Latitude(finalLatDeg, Coordinate.FORMAT_DEG),