## Convert your SHP File to a GeoJSON File 1. Download and Unzip your SHP file 2. Change to the SHP file directory 3. Convert the SHP file to a GeoJSON file ```` ogr2ogr -f "GeoJSON" my_file.geojson my_file.shp ```` ## Convert your GeoJSON File to Mapbox Vector Tiles To convert a GeoJSON Feature Collection to a Mabpox Vector Tiles file, use Tippecanoe. ```` tippecanoe -o my_file.mbtiles my_file.geojson ```` Alternately you can adjust the density of the pins using the `-r` option, lower number for density (0) for no drop, higher for sparser (2+)