Skip to content

Commit

Permalink
move up AddBuildingType in importance (fixes #1717)
Browse files Browse the repository at this point in the history
because it must be answered for AddHousenumber and this quest is important
above AddCycleway and AddSidewalk because these two are very slow
  • Loading branch information
westnordost committed Feb 4, 2020
1 parent fbb74fb commit 5a7f776
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,9 @@ public class QuestModule
new AddOpeningHours(o, featureDictionaryFuture),
new AddBikeParkingCapacity(o), // cycle map layer on osm.org
new AddOrchardProduce(o),
new AddCycleway(o),
new AddSidewalk(o),
new AddBuildingType(o), // because housenumber, building levels etc. depend on it
new AddCycleway(o), // SLOW QUERY
new AddSidewalk(o), // SLOW QUERY
new AddProhibitedForPedestrians(o), // uses info from AddSidewalk quest, should be after it
new AddCrossingType(o),
new AddBuildingLevels(o),
Expand All @@ -151,7 +152,6 @@ public class QuestModule

// ↓ 5. may be shown as missing in QA tools
new DetermineRecyclingGlass(o), // because most recycling:glass=yes is a tagging mistake
new AddBuildingType(o), // because housenumber, building levels etc. depend on it

// ↓ 6. may be shown as possibly missing in QA tools

Expand Down

0 comments on commit 5a7f776

Please sign in to comment.