Update binary inspector
This commit is contained in:
parent
1cfaf71c10
commit
5860d696ce
1 changed files with 3 additions and 3 deletions
|
@ -446,13 +446,13 @@ public class BinaryInspector {
|
||||||
for (int j = 0; j < cityType.length; j++) {
|
for (int j = 0; j < cityType.length; j++) {
|
||||||
int type = cityType[j];
|
int type = cityType[j];
|
||||||
for (City c : index.getCities(region, null, type)) {
|
for (City c : index.getCities(region, null, type)) {
|
||||||
println("\t\t" + c + getId(c));
|
|
||||||
index.preloadStreets(c, null);
|
index.preloadStreets(c, null);
|
||||||
|
println("\t\t" + c + getId(c) + "("+c.getStreets().size()+")");
|
||||||
for (Street t : c.getStreets()) {
|
for (Street t : c.getStreets()) {
|
||||||
if (verbose.contains(t)) {
|
if (verbose.contains(t)) {
|
||||||
print("\t\t\t" + t.getName() + getId(t));
|
index.preloadBuildings(t, null);
|
||||||
|
print("\t\t\t" + t.getName() + getId(t) + "("+t.getBuildings().size()+")");
|
||||||
// if (type == BinaryMapAddressReaderAdapter.CITY_TOWN_TYPE) {
|
// if (type == BinaryMapAddressReaderAdapter.CITY_TOWN_TYPE) {
|
||||||
index.preloadBuildings(t, null);
|
|
||||||
List<Building> buildings = t.getBuildings();
|
List<Building> buildings = t.getBuildings();
|
||||||
if (buildings != null && !buildings.isEmpty()) {
|
if (buildings != null && !buildings.isEmpty()) {
|
||||||
print("\t\t (");
|
print("\t\t (");
|
||||||
|
|
Loading…
Reference in a new issue