Fix issue with compare
This commit is contained in:
parent
0b3a64d988
commit
f14707b2f0
2 changed files with 7 additions and 5 deletions
|
@ -74,15 +74,16 @@ public class BinaryInspector {
|
||||||
in.inspector(new String[] {
|
in.inspector(new String[] {
|
||||||
|
|
||||||
// "-vpoi",
|
// "-vpoi",
|
||||||
"-vmap", "-vmapobjects", // "-vmapcoordinates",
|
// "-vmap", "-vmapobjects",
|
||||||
// "-vrouting",
|
"-vmapcoordinates",
|
||||||
|
"-vrouting",
|
||||||
// "-vtransport",
|
// "-vtransport",
|
||||||
// "-vaddress", "-vcities","-vstreetgroups",
|
// "-vaddress", "-vcities","-vstreetgroups",
|
||||||
// "-vstreets", "-vbuildings", "-vintersections",
|
// "-vstreets", "-vbuildings", "-vintersections",
|
||||||
// "-lang=ru",
|
// "-lang=ru",
|
||||||
// "-bbox=30.4981,50.4424,30.5195,50.4351",
|
// "-bbox=30.4981,50.4424,30.5195,50.4351",
|
||||||
// "-osm="+System.getProperty("maps.dir")+"/map_full.obf.osm",
|
// "-osm="+System.getProperty("maps.dir")+"/map_full.obf.osm",
|
||||||
System.getProperty("maps.dir")+"/diff/Diff.obf"
|
System.getProperty("maps.dir")+"/diff/17_08_29_22_00.diff.obf"
|
||||||
// System.getProperty("maps.dir")+"../temp/kiev/Ukraine_kiev-city_europe_17_06_05.obf",
|
// System.getProperty("maps.dir")+"../temp/kiev/Ukraine_kiev-city_europe_17_06_05.obf",
|
||||||
// System.getProperty("maps.dir")+"Ukraine_kiev-city_europe_2.obf",
|
// System.getProperty("maps.dir")+"Ukraine_kiev-city_europe_2.obf",
|
||||||
});
|
});
|
||||||
|
@ -923,7 +924,7 @@ public class BinaryInspector {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private static void printMapDetails(BinaryMapDataObject obj, StringBuilder b, boolean vmapCoordinates) {
|
public static void printMapDetails(BinaryMapDataObject obj, StringBuilder b, boolean vmapCoordinates) {
|
||||||
boolean multipolygon = obj.getPolygonInnerCoordinates() != null && obj.getPolygonInnerCoordinates().length > 0;
|
boolean multipolygon = obj.getPolygonInnerCoordinates() != null && obj.getPolygonInnerCoordinates().length > 0;
|
||||||
if (multipolygon) {
|
if (multipolygon) {
|
||||||
b.append("Multipolygon");
|
b.append("Multipolygon");
|
||||||
|
|
|
@ -283,7 +283,8 @@ public class BinaryMapDataObject {
|
||||||
|
|
||||||
return equals;
|
return equals;
|
||||||
}
|
}
|
||||||
|
// thatObj.mapIndex.decodeType(thatObj.types[0])
|
||||||
|
// mapIndex.decodeType(types[0]) id >>7
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue