Convert Shapefile to Vector Tiles with FileTiler
clockworkmicro.com
Convert Shapefile to Vector Tiles with FileTiler
1–7 of 7 posts
Re: Convert Shapefile to Vector Tiles with FileTiler
#2Re: Convert Shapefile to Vector Tiles with FileTiler
#3Hm. Not totally sure why someone would pay for this - there are lots of readily-available open-source tools that can do this easily. GDAL/OGR[0] and Tippecanoe [1] come to mind. Maybe I'm missing a less-technical audience? 0: https://gdal.org/ 1: https://github.com/felt/tippecanoe
Re: Convert Shapefile to Vector Tiles with FileTiler
#4Hm. Not totally sure why someone would pay for this - there are lots of readily-available open-source tools that can do this easily. GDAL/OGR[0] and Tippecanoe [1] come to mind. Maybe I'm missing a less-technical audience? 0: https://gdal.org/ 1: https://github.com/felt/tippecanoe
Re: Convert Shapefile to Vector Tiles with FileTiler
#5Hm. Not totally sure why someone would pay for this - there are lots of readily-available open-source tools that can do this easily. GDAL/OGR[0] and Tippecanoe [1] come to mind. Maybe I'm missing a less-technical audience? 0: https://gdal.org/ 1: https://github.com/felt/tippecanoe
Right. The service allows one to make tiles without any knowledge of gdal or tippecanoe. The service also hosts the tiles and makes them available.
Re: Convert Shapefile to Vector Tiles with FileTiler
#6Earlier quoted context omitted.
Right. The service allows one to make tiles without any knowledge of gdal or tippecanoe. The service also hosts the tiles and makes them available.
right but, that's pretty straightforward if you've got some relatively basic CLI comfort and an account with a cloud provider...
Re: Convert Shapefile to Vector Tiles with FileTiler
#7Hm. Not totally sure why someone would pay for this - there are lots of readily-available open-source tools that can do this easily. GDAL/OGR[0] and Tippecanoe [1] come to mind. Maybe I'm missing a less-technical audience? 0: https://gdal.org/ 1: https://github.com/felt/tippecanoe
It’s possible to convert a shapefile to Mapbox Vector Tiles, convert those to PMTiles and host them in a bucket in just a three commands.
ogr2ogr -f GeoJSONSeq /vsistdout/ dataset.shp | tippecanoe -o dataset.pmtiles
aws s3 cp dataset.pmtiles s3://bucket/output.pmtiles