Convert Shapefile to Vector Tiles with FileTiler (clockworkmicro.com) 25 points by brendan8229 3y ago ↗ HN
[–] tony_cannistra 3y ago ↗ Hm. 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 [–] brendan8229 3y ago ↗ 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. [–] tony_cannistra 3y ago ↗ right but, that's pretty straightforward if you've got some relatively basic CLI comfort and an account with a cloud provider... [–] brendan8229 3y ago ↗ True. And otherwise a tool like this is very handy. [–] acdanger 3y ago ↗ 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. [–] bdon 3y ago ↗ Two commands!ogr2ogr -f GeoJSONSeq /vsistdout/ dataset.shp | tippecanoe -o dataset.pmtilesaws s3 cp dataset.pmtiles s3://bucket/output.pmtiles
[–] brendan8229 3y ago ↗ 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. [–] tony_cannistra 3y ago ↗ right but, that's pretty straightforward if you've got some relatively basic CLI comfort and an account with a cloud provider... [–] brendan8229 3y ago ↗ True. And otherwise a tool like this is very handy.
[–] tony_cannistra 3y ago ↗ right but, that's pretty straightforward if you've got some relatively basic CLI comfort and an account with a cloud provider... [–] brendan8229 3y ago ↗ True. And otherwise a tool like this is very handy.
[–] acdanger 3y ago ↗ 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. [–] bdon 3y ago ↗ Two commands!ogr2ogr -f GeoJSONSeq /vsistdout/ dataset.shp | tippecanoe -o dataset.pmtilesaws s3 cp dataset.pmtiles s3://bucket/output.pmtiles
[–] bdon 3y ago ↗ Two commands!ogr2ogr -f GeoJSONSeq /vsistdout/ dataset.shp | tippecanoe -o dataset.pmtilesaws s3 cp dataset.pmtiles s3://bucket/output.pmtiles
6 comments
[ 3.1 ms ] story [ 23.4 ms ] thread0: https://gdal.org/ 1: https://github.com/felt/tippecanoe
ogr2ogr -f GeoJSONSeq /vsistdout/ dataset.shp | tippecanoe -o dataset.pmtiles
aws s3 cp dataset.pmtiles s3://bucket/output.pmtiles