Skip to content

Commit

Permalink
Enable platform quests on relations
Browse files Browse the repository at this point in the history
  • Loading branch information
burrscurr authored and westnordost committed Aug 21, 2023
1 parent c701409 commit 6d8f787
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import de.westnordost.streetcomplete.util.ktx.toYesNo
class AddBenchStatusOnBusStop : OsmFilterQuestType<Boolean>() {

override val elementFilter = """
nodes, ways with
nodes, ways, relations with
(
public_transport = platform
or (highway = bus_stop and public_transport != stop_position)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import de.westnordost.streetcomplete.util.ktx.toYesNo
class AddBinStatusOnBusStop : OsmFilterQuestType<Boolean>() {

override val elementFilter = """
nodes, ways with
nodes, ways, relations with
(
public_transport = platform
or (highway = bus_stop and public_transport != stop_position)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import de.westnordost.streetcomplete.util.ktx.toYesNo
class AddBusStopLit : OsmFilterQuestType<Boolean>() {

override val elementFilter = """
nodes, ways with
nodes, ways, relations with
(
public_transport = platform
or (highway = bus_stop and public_transport != stop_position)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import de.westnordost.streetcomplete.osm.applyTo
class AddBusStopName : OsmFilterQuestType<BusStopNameAnswer>() {

override val elementFilter = """
nodes, ways with
nodes, ways, relations with
(
public_transport = platform
or (highway = bus_stop and public_transport != stop_position)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import de.westnordost.streetcomplete.quests.bus_stop_shelter.BusStopShelterAnswe
class AddBusStopShelter : OsmFilterQuestType<BusStopShelterAnswer>() {

override val elementFilter = """
nodes, ways with
nodes, ways, relations with
(
public_transport = platform
or (highway = bus_stop and public_transport != stop_position)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import de.westnordost.streetcomplete.util.ktx.toYesNo
class AddTactilePavingBusStop : OsmFilterQuestType<Boolean>() {

override val elementFilter = """
nodes, ways with
nodes, ways, relations with
(
public_transport = platform
or (highway = bus_stop and public_transport != stop_position)
Expand Down

0 comments on commit 6d8f787

Please sign in to comment.