Update GPXUtilities.java

don't write too much noisy data so it's better handled in graphs & other programs - https://github.com/osmandapp/OsmAnd/issues/10864
This commit is contained in:
vshcherb 2021-02-14 11:05:48 +01:00 committed by GitHub
parent 8c9004132e
commit 2bf1c899fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,7 +60,8 @@ public class GPXUtilities {
private final static NumberFormat latLonFormat = new DecimalFormat("0.00#####", new DecimalFormatSymbols(
new Locale("EN", "US")));
private final static NumberFormat decimalFormat = new DecimalFormat("#.###", new DecimalFormatSymbols(
// speed, ele, hdop
private final static NumberFormat decimalFormat = new DecimalFormat("#.#", new DecimalFormatSymbols(
new Locale("EN", "US")));
public enum GPXColor {
@ -2594,4 +2595,4 @@ public class GPXUtilities {
to.error = from.error;
}
}
}
}