Modify ↓
Opened 13 years ago
Closed 13 years ago
#7758 closed defect (fixed)
building inside building test
| Reported by: | anonymous | Owned by: | team |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Core validator | Version: | |
| Keywords: | Cc: |
Description
- it took too many time, even if there's no buildings.
- it checks only buildings with "building=yes" (i suppose it should checking everything what have tag "building", except "building=no")
Attachments (0)
Change History (4)
comment:1 by , 13 years ago
| Component: | Core → Core validator |
|---|
comment:2 by , 13 years ago
comment:3 by , 13 years ago
...
private static boolean isBuilding(OsmPrimitive p) {
String v = p.get("building");
return v != null && !v.equals("no") && !v.equals("entrance");
}
Note:
See TracTickets
for help on using tickets.



building=entrance.