We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4712d5 commit 69836c4Copy full SHA for 69836c4
1 file changed
site/src/queries/osmQuery.js
@@ -49,7 +49,7 @@ 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 = 'parking')
+ AND NOT (amenity IN ('parking', 'bicycle_parking'))
53
)
54
SELECT * FROM pts
55
WHERE lon BETWEEN ${bbox.minLon} AND ${bbox.maxLon}
0 commit comments