From 0f2f220a726a99773051610e9242d65ba09ba037 Mon Sep 17 00:00:00 2001 From: hungriestPigeon Date: Mon, 25 Jul 2016 09:26:37 +1000 Subject: [PATCH 1/3] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index c409f9e..41061f8 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +# super-octo-memory +Super-octo-memory was created on the request of a client who wished to do some things with gpx files that were not well supported by any existing software. To satisfy their needs, it was decided to build on the existing gpsprune software. Under the GNU GPL, the changes must be made publicly available free of charge. Since the client is reluctant to do this, no documentation of the new features is present at this time. + # GpsPrune GpsPrune is a map-based application for viewing, editing and converting coordinate data from GPS systems. From 36416f54bb4489ba3c21e28d30c8ffeac324d992 Mon Sep 17 00:00:00 2001 From: Paul Egan Date: Wed, 21 Sep 2016 11:05:04 +1000 Subject: [PATCH 2/3] Fixed bug truncation on save of coordinates created within program --- tim/prune/data/Coordinate.java | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tim/prune/data/Coordinate.java b/tim/prune/data/Coordinate.java index e30fa4a..136a37a 100644 --- a/tim/prune/data/Coordinate.java +++ b/tim/prune/data/Coordinate.java @@ -255,15 +255,19 @@ protected Coordinate(double inValue, int inFormat, int inCardinal) // Make a string to display on screen _cardinal = inCardinal; _originalFormat = FORMAT_NONE; - if (inFormat == FORMAT_NONE) inFormat = FORMAT_DEG_WITHOUT_CARDINAL; - _originalString = output(inFormat); - _originalFormat = inFormat; + if (inFormat == FORMAT_NONE || inFormat == FORMAT_DEG_WITHOUT_CARDINAL){ + _originalString = Double.toString(inValue); + _originalFormat = FORMAT_DEG_WITHOUT_CARDINAL; + } else { + _originalString = output(inFormat); + _originalFormat = inFormat; + } _valid = true; } /** - * @return coordinate as a double + * @return coordinate as a double, in degrees */ public double getDouble() { From 2fd7d57cba613bc153dd9950e4f7cac8f2257700 Mon Sep 17 00:00:00 2001 From: hungriestPigeon Date: Wed, 21 Sep 2016 11:21:16 +1000 Subject: [PATCH 3/3] Update README.md --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index feb833b..f4d9cde 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,3 @@ -# super-octo-memory -Super-octo-memory was created on the request of a client who wished to do some things with gpx files that were not well supported by any existing software. To satisfy their needs, it was decided to build on the existing gpsprune software. Under the GNU GPL, the changes must be made publicly available free of charge. Since the client is reluctant to do this, no documentation of the new features is present at this time. - # GpsPrune GpsPrune is a map-based application for viewing, editing and converting coordinate data from GPS systems.