Skip to content

Commit 546589c

Browse files
authored
remove kind=protected area [#433] (#531)
* remove kind=protected area [#433] * this resulted in green areas covering historical city centers * tag overlaps with other kinds such as national parks * tiles 4.13.4
1 parent 8da818b commit 546589c

File tree

3 files changed

+1
-13
lines changed

3 files changed

+1
-13
lines changed

tiles/src/main/java/com/protomaps/basemap/Basemap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public String description() {
119119

120120
@Override
121121
public String version() {
122-
return "4.13.3";
122+
return "4.13.4";
123123
}
124124

125125
@Override

tiles/src/main/java/com/protomaps/basemap/layers/Landuse.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,6 @@ public class Landuse implements ForwardingProfile.LayerPostProcessor {
7474
"""),
7575
use("kind", fromTag("amenity"))
7676
),
77-
rule(
78-
with("boundary", "protected_area"),
79-
use("kind", "protected_area")
80-
),
8177
rule(
8278
with("""
8379
landuse

tiles/src/test/java/com/protomaps/basemap/layers/LanduseTest.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,6 @@ void testFromTagAmenity() {
8888
);
8989
}
9090

91-
@Test
92-
void testFromTagBoundary() {
93-
assertFeatures(15,
94-
List.of(Map.of("kind", "protected_area")),
95-
processWith("boundary", "protected_area")
96-
);
97-
}
98-
9991
@Test
10092
void testFromTagLanduse() {
10193
assertFeatures(15,

0 commit comments

Comments
 (0)