Skip to content

Commit fb25679

Browse files
committed
Add more exclusions for minor amenities including parking entrances, recycling bins, water fountains, public grills, and vending machines.
1 parent a691860 commit fb25679

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

site/src/queries/osmQuery.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ export function buildOsmQuery(bbox, enabledKeys) {
5050
FROM read_parquet([${urlList}], union_by_name = true)
5151
WHERE (${keyFilters || '1=1'})
5252
AND NOT (amenity IN (
53-
'parking', 'bicycle_parking', 'toilet', 'bench', 'clock', 'waste_basket'
53+
'parking', 'bicycle_parking', 'toilet', 'bench', 'clock', 'waste_basket',
54+
'parking_entrance', 'recycling', 'drinking_water', 'bbq', 'vending_machine'
5455
))
5556
)
5657
SELECT * FROM pts

0 commit comments

Comments
 (0)