We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69836c4 commit 5674d7aCopy full SHA for 5674d7a
1 file changed
site/src/queries/osmQuery.js
@@ -49,7 +49,9 @@ export function buildOsmQuery(bbox, enabledKeys) {
49
ST_Y(ST_Centroid(geometry)) AS lat
50
FROM read_parquet([${urlList}], union_by_name = true)
51
WHERE (${keyFilters || '1=1'})
52
- AND NOT (amenity IN ('parking', 'bicycle_parking'))
+ AND NOT (amenity IN (
53
+ 'parking', 'bicycle_parking', 'toilet', 'bench', 'clock', 'waste_basket'
54
+ ))
55
)
56
SELECT * FROM pts
57
WHERE lon BETWEEN ${bbox.minLon} AND ${bbox.maxLon}
0 commit comments