Modify ↓
Opened 12 months ago
Closed 11 months ago
#7758 closed defect (fixed)
building inside building test
| Reported by: | anonymous | Owned by: | team |
|---|---|---|---|
| Priority: | normal | 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 Changed 12 months ago by mrwojo
- Component changed from Core to Core validator
comment:2 Changed 12 months ago by mrwojo
- The apparent duration of the "building in building" check is affected by #7759. That bug makes it looks slow even when it's actually quick.
- Also need to consider normal uses of building=entrance.
comment:3 Changed 12 months ago by anonymous
...
private static boolean isBuilding(OsmPrimitive p) {
String v = p.get("building");
return v != null && !v.equals("no") && !v.equals("entrance");
}
comment:4 Changed 11 months ago by Don-vip
- Resolution set to fixed
- Status changed from new to closed
In 5293/josm:
Note: See
TracTickets for help on using
tickets.


