Questions tagged [tippecanoe]
The tippecanoe tag has no summary.
35 questions
1 vote
0 answers
39 views
Duplicate labels on polygons from PBF layer in OpenLayers
When polygon spans 2 tiles, OpenLayers creates 2 labels, one for each tile. How to prevent it? MRE polygons in PBF tiles rendered by OpenLayers In empty directory create these two files: geom.geojson ...
0 votes
0 answers
34 views
Pulkovo / Stereo 80 to Mercator conversion
I wanted to overlay layer of vector tiles build in Stereo 80 (Pulkovo) over the ArcGIS map. Because I cannot do it on the fly I was trying to convert it using a few CLI tools ... my code looks as ...
1 vote
0 answers
334 views
In MapLibre, is there any way to filter and/or cluster features from a "vector" source?
I want to show about 120,000 unevenly distributed points worldwide in MapLibre GL JS, filtered on user-selected values - about 20 boolean attributes and a year. I had hoped to cluster the filtered ...
0 votes
0 answers
96 views
How to Set Up an MVT-Tippecanoe Provider with PyGeoAPI?
I have an issue with the MVT-Tippecanoe provider in PyGeoAPI. I linked my MVT directory to the PyGeoAPI provider, but nothing is displayed when I visit the collection. Possible Solution: I believe the ...
0 votes
1 answer
184 views
Unable to create Leaflet map with Natural Earth data
I am trying and failing to successfully use Natural Earth data to make leaflet maps. Here is what I tried $ curl -L -O https://www.naturalearthdata.com/http//www.naturalearthdata.com/download/50m/...
0 votes
0 answers
157 views
Ordanence Survey MBtiles (Vector Tiles) are not visible in QGIS
I've recently downloaded a mbtiles (vector tiles) layer from Ordnance Survey. But the problem is I'm unable to view it using QGIS (I have to view it there as all other layers I need to use for my ...
0 votes
1 answer
330 views
How to prevent Tippecanoe from dropping features?
I have a huge geojson with electric lines and columns. So I need to convert the file into vector tiles for displaying on my OpenLayers map. I use this sequence of commands: tippecanoe --no-feature-...
1 vote
1 answer
126 views
tile-join is not displaying older tiles at higher zoom levels
I use tippecanoe to convert geojson file to pbf tiles using this command tippecanoe -e output_dir -zg -Z10 --drop-densest-as-needed --no-tile-compression --extend-zooms-if-still-dropping -l features ...
1 vote
1 answer
283 views
Tippecanoe | Can't set max zoom extent level 22 for mbtiles
I know this might be a duplicate question but I wasn't able to find any solution. I'm working on a tool with the help of this package which is actually a platform to convert a geojson file to mbtiles ...
2 votes
1 answer
1k views
Convert downloaded mvt/pbf to new mbtiles file
I'm trying to do the following: Determine what pbf files are needed for a certain user-defined bbox (DONE) Download these files for all zoomlevels. (DONE) Combine these pbf files into a new mbtiles ...
1 vote
0 answers
374 views
Tippecanoe, Shapefile to MBTiles
Is this normal when converting GeoJSON or shape files to MBTiles? Where it seen like the MBTiles will always have this offset when viewed up close. I think it viewed at zoom 23. https://github.com/...
3 votes
1 answer
377 views
Tippecanoe unable to open database file
I am trying to use tippecanoe to convert my GeoJSON into mbtiles like so tippecanoe -o c:/users/path/to/newfile.mbtiles -Z 0 -z 8 c:/users/path/to/file.geojson However, I keep getting the error ...
2 votes
1 answer
811 views
Mapbox vector tile not displaying in QGIS, possibly due to unsupported data type
I created a Mapbox Vector Tile collection in .mbtiles format using tippecanoe. Using the QGIS browser I can add the .mbtiles file as a layer and I see the data as expected, so I know the .mbtiles file ...
2 votes
0 answers
6k views
How to open an mbtiles file in QGIS?
I am trying to open an example.mbtiles file in QGIS, but I cannot get it to work. Reproducible setup below. Create example input file Using geopandas and shapely, I create an example.geojson file: ...
1 vote
0 answers
1k views
Display vector points in MapBox from S3
I have a shapefile with around 14 millions points that I want to display in MapBox on a web application. The only documentation around displaying points I can see is by using MapBox tiling service, ...