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

Mapnik.VectorTile.painted() doesn't do what we want it to do #85

Open
mapsam opened this issue Oct 4, 2016 · 2 comments
Open

Mapnik.VectorTile.painted() doesn't do what we want it to do #85

mapsam opened this issue Oct 4, 2016 · 2 comments

Comments

@mapsam
Copy link
Member

mapsam commented Oct 4, 2016

TLDR

mapnik.VectorTile.painted() doesn't do exactly what we want any longer, which means our check here isn't as strong as expected.

Problem

When generating tiles and copying them (via tilelive), we have a check in the pyramid tiling scheme to ensure we should continue rendering and copying child tiles. This check is here.

There are some situations where we could have a datasource (geojson for this example) that has data in the z0 tile, but has no data in the z1 tile. This means tilelive-bridge checks vtile.painted() and sets the x-tilelive-contains-data header to false. If this is set to false, the rest of the tiling scheme is skipped, resulting in no tiles.

Node Mapnik essentially uses empty() to check for painted tiles via mapnik-vector-tile, which is exactly what we don't want. Right now this z1 tile returns false for empty(), which tells tilelive to stop the copy process and skip the rest of the tiles. We need to know if the source data is there (even if tile features are not) so we can continue to tile the children.

Why

Currently, I'm unable to figure out why a datasource in Node Mapnik would add data at z0 but not at z1.

Solution

A couple solutions come to mind:

  • [time intensive] improve the painted(), solid(), and empty() architecture in Mapnik. cc @flippmoke
  • [quick fix, potentially at CPU expense] don't check for painted/empty tiles since we already have a relatively solid pyramid built via mapnik-omnivore and spherical mercator. This either means we always set x-tilelive-contains-data to true or remove the if statement in tilelive.

cc @rclark @GretaCB @springmeyer @yhahn @flippmoke @captainbarbosa

@yhahn
Copy link
Member

yhahn commented Oct 4, 2016

@mapsam thanks for digging into this -- it sounds like something we should look into further and try to fix.

Removing this check in the tiling pyramid scheme is definitely not an option -- it's used quite a bit, especially for very large/diverse datasets.

@mapsam
Copy link
Member Author

mapsam commented Jan 19, 2017

This issue continues to come up. An immediate medium-term solution is to change our usage of the pyramid tiling scheme in mapbox-tile-copy to "scanline", which will ensure each tile has no geometry before being tossed, no matter the parent zoom. Some quick benchmarks on the NED 10m_lakes file:

"scanline": 25 seconds average copy time
"pyramid": 24.66 seconds average copy time

mapbox/mapbox-tile-copy#89

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants