Skip to content

Commit e25db88

Browse files
authored
bump planetiler to 0.10.1 [#538] (#577)
* Upgrade planetiler to 0.10.1 * implements hotfix for polygons disappearing after JTS union [#538] * bump maven-assembly-plugin version * tiles 4.14.2
1 parent 3ea8293 commit e25db88

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Tiles 4.14.2
2+
------
3+
- Upgrade to planetiler 0.10.1 with workaround for JTS polygon negative buffer bug [#538]
4+
15
Styles 5.7.2
26
------
37
- improve poor visibility of roads type=track [#509]

tiles/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1010
<maven.compiler.source>21</maven.compiler.source>
1111
<maven.compiler.target>21</maven.compiler.target>
12-
<planetiler.version>0.9.0</planetiler.version>
12+
<planetiler.version>0.10.1</planetiler.version>
1313
<junit.version>5.10.0</junit.version>
1414
<mainClass>com.protomaps.basemap.Basemap</mainClass>
1515
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
@@ -153,7 +153,7 @@
153153
<plugin>
154154
<groupId>org.apache.maven.plugins</groupId>
155155
<artifactId>maven-assembly-plugin</artifactId>
156-
<version>3.4.2</version>
156+
<version>3.8.0</version>
157157
<dependencies>
158158
<dependency>
159159
<groupId>com.onthegomap.planetiler</groupId>

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

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

134134
@Override
135135
public String version() {
136-
return "4.14.1";
136+
return "4.14.2";
137137
}
138138

139139
@Override

tiles/src/test/java/com/protomaps/basemap/postprocess/ClipTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ void testClipPolygon() throws GeometryException {
9090

9191
assertEquals(1, clipped.size());
9292
assertEquals(1, clipped.get("layer").size());
93-
assertEquals(newPolygon(64, 160, 96, 160, 96, 192, 64, 192, 64, 160),
93+
assertEquals(newPolygon(96, 160, 96, 192, 64, 192, 64, 160, 96, 160),
9494
clipped.get("layer").getFirst().geometry().decode());
9595
}
9696

0 commit comments

Comments
 (0)