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:
parent
8c9004132e
commit
2bf1c899fd
1 changed files with 3 additions and 2 deletions
|
@ -60,7 +60,8 @@ public class GPXUtilities {
|
||||||
|
|
||||||
private final static NumberFormat latLonFormat = new DecimalFormat("0.00#####", new DecimalFormatSymbols(
|
private final static NumberFormat latLonFormat = new DecimalFormat("0.00#####", new DecimalFormatSymbols(
|
||||||
new Locale("EN", "US")));
|
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")));
|
new Locale("EN", "US")));
|
||||||
|
|
||||||
public enum GPXColor {
|
public enum GPXColor {
|
||||||
|
@ -2594,4 +2595,4 @@ public class GPXUtilities {
|
||||||
to.error = from.error;
|
to.error = from.error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue