X-Git-Url: http://gitweb.fperrin.net/?p=GpsPrune.git;a=blobdiff_plain;f=tim%2Fprune%2Fdata%2FCoordinate.java;h=e30fa4ac357d89a68041fa07eee2f76bf5e8ee22;hp=e2b67a8554c996c57e93e40b9e72f6b0ceb6069e;hb=1ea5817da5381ceebee75ea7294ea78dffff5671;hpb=a6197ddcaac11c0b943183da7d46169742d024af diff --git a/tim/prune/data/Coordinate.java b/tim/prune/data/Coordinate.java index e2b67a8..e30fa4a 100644 --- a/tim/prune/data/Coordinate.java +++ b/tim/prune/data/Coordinate.java @@ -437,7 +437,7 @@ public abstract class Coordinate double startValue = inStart.getDouble(); double endValue = inEnd.getDouble(); double newValue = startValue + (endValue - startValue) * inFraction; - Coordinate answer = inStart.makeNew(newValue, inStart._originalFormat); + Coordinate answer = inStart.makeNew(newValue, Coordinate.FORMAT_DECIMAL_FORCE_POINT); return answer; }