Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tune Landcover MIN_PIXEL_SIZE_THRESHOLDS to better resemble OpenMapTiles #94

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/main/java/org/openmaptiles/layers/Landcover.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,8 @@ public class Landcover implements
*/

public static final ZoomFunction<Number> MIN_PIXEL_SIZE_THRESHOLDS = ZoomFunction.fromMaxZoomThresholds(Map.of(
13, 8,
10, 4,
9, 2
13, 4,
11, 2
));
private static final String TEMP_NUM_POINTS_ATTR = "_numpoints";
private static final Set<String> WOOD_OR_FOREST = Set.of(
Expand Down
6 changes: 3 additions & 3 deletions src/test/java/org/openmaptiles/layers/LandcoverTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ void testOsmLandcover() {
"_layer", "landcover",
"subclass", "wood",
"class", "wood",
"_minpixelsize", 8d,
"_minpixelsize", 4d,
"_numpointsattr", "_numpoints",
"_minzoom", 7,
"_maxzoom", 14
Expand All @@ -114,7 +114,7 @@ void testOsmLandcover() {
"_layer", "landcover",
"subclass", "forest",
"class", "wood",
"_minpixelsize", 8d,
"_minpixelsize", 4d,
"_minzoom", 7,
"_maxzoom", 14
)), process(polygonFeature(Map.of(
Expand All @@ -124,7 +124,7 @@ void testOsmLandcover() {
"_layer", "landcover",
"subclass", "dune",
"class", "sand",
"_minpixelsize", 4d,
"_minpixelsize", 2d,
"_minzoom", 7,
"_maxzoom", 14
)), process(polygonFeature(Map.of(
Expand Down