Skip to content

Commit

Permalink
Display only centroids that are built from polygons that do not have …
Browse files Browse the repository at this point in the history
…labels in the relation
  • Loading branch information
Rub21 committed May 8, 2024
1 parent 70d7c1e commit 4694df8
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ FROM
osm_admin_areas
WHERE
admin_level IN (1,2)
AND has_label = FALSE
AND geometry && !BBOX!
"""

Expand All @@ -44,7 +45,8 @@ SELECT
FROM
osm_admin_areas
WHERE
admin_level IN (1,2,3,4)
admin_level IN (1,2,3,4)
AND has_label = FALSE
AND geometry && !BBOX!
"""

Expand All @@ -69,7 +71,8 @@ SELECT
FROM
osm_admin_areas
WHERE
admin_level IN (1,2,3,4,5,6)
admin_level IN (1,2,3,4,5,6)
AND has_label = FALSE
AND geometry && !BBOX!
"""

Expand All @@ -95,6 +98,7 @@ FROM
osm_admin_areas
WHERE
admin_level IN (1,2,3,4,5,6,7,8,9)
AND has_label = FALSE
AND geometry && !BBOX!
"""

Expand All @@ -120,5 +124,6 @@ FROM
osm_admin_areas
WHERE
admin_level IN (1,2,3,4,5,6,7,8,9,10)
AND has_label = FALSE
AND geometry && !BBOX!
"""

0 comments on commit 4694df8

Please sign in to comment.