Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
861fdd1748
2 changed files with 10 additions and 10 deletions
|
@ -76,7 +76,7 @@ public class BinaryInspector {
|
|||
// "-vstats",
|
||||
// "/Users/victorshcherb/osmand/maps/Synthetic_test_rendering.obf"
|
||||
// "/Users/victorshcherb/osmand/maps/Netherlands_europe_2.road.obf"
|
||||
"/Users/victorshcherb/osmand/maps/Map.obf"
|
||||
"/Users/victorshcherb/osmand/maps/C_11_03_06.obf"
|
||||
});
|
||||
} else {
|
||||
in.inspector(args);
|
||||
|
|
|
@ -68,13 +68,13 @@ public class OsmAndFormatter {
|
|||
}
|
||||
//Miles exceptions
|
||||
//FIXME (conversions missing)
|
||||
if (mc == MetricsConstants.MILES_AND_FOOTS && point == 1 / metersInSecondUnit && roundDist == 2000) {
|
||||
roundDist = 0.5f;
|
||||
} else if (mc == MetricsConstants.MILES_AND_YARDS && point == 1 / metersInSecondUnit && roundDist == 1000) {
|
||||
roundDist = 0.5f;
|
||||
} else if (mc == MetricsConstants.MILES_AND_YARDS && point == 1 / metersInSecondUnit && roundDist == 500) {
|
||||
roundDist = 0.25f;
|
||||
}
|
||||
// if (mc == MetricsConstants.MILES_AND_FOOTS && point == 1 / metersInSecondUnit && roundDist == 2000) {
|
||||
// roundDist = 0.5f;
|
||||
// } else if (mc == MetricsConstants.MILES_AND_YARDS && point == 1 / metersInSecondUnit && roundDist == 1000) {
|
||||
// roundDist = 0.5f;
|
||||
// } else if (mc == MetricsConstants.MILES_AND_YARDS && point == 1 / metersInSecondUnit && roundDist == 500) {
|
||||
// roundDist = 0.25f;
|
||||
// }
|
||||
return roundDist;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue