Hi all,
I am having a problem with GIS data imported with the Mbtiles extension. The generated output shows some gaps in the data for low zooms (see picture attached).
The effect gets stronger when zooming out. For high zoom levels (<270k) this effect is not visible.
I did some tests with the 2.19.1 version. It only appears when the data input is mbtiles, the same data formatted as GeoPackage renders correctly. Moreover the mbtiles file is correctly rendered in QGIS. I am using OSM data.
Has Anyone experienced similar issues?
Thanks and best regards
Julian Rektar
Hi all,
I am having a problem with GIS data imported with the Mbtiles extension. The generated output shows some gaps in the data for low zooms (see picture attached).
The effect gets stronger when zooming out. For high zoom levels (<270k) this effect is not visible.
I did some tests with the 2.19.1 version. It only appears when the data input is mbtiles, the same data formatted as GeoPackage renders correctly. Moreover the mbtiles file is correctly rendered in QGIS. I am using OSM data.
Has Anyone experienced similar issues?
Thanks and best regards
Julian Rektar
First up, mbtiles is a community extension being shared for feedback and in the hopes of collaboration. So your feedback here is a great example of that - you may be the first person to both try this, notice a problem, and report the issue.
If you are interested in the functionality perhaps contact Niels, based on the amount of changes and participation this module does not look very active in the geoserver code base, but it makes use of an implementation in geotools (for the data format) which may be more active.
public void addTile(int zoom, int x, int y, byte data) throws IOException {
MBTilesTile tile = new MBTilesTile(zoom, x, y);
tile.setData(data);
mbTiles.saveTile(tile);
}
Looks to be responsible for adding a tile of content, so I would start there.