2.0.0 • Published 10 years ago
mapbox-data-cli v2.0.0
mapbox-data-cli
CLI utilities for Mapbox Data API.
Install
$ npm install -g mapbox-data-cliSetup
Requires a MapboxAccessToken environment variable with data:write permissions.
Utilities
Includes nine utilities
mapbox-data get-dataset: read information about a particular datasetmapbox-data get-feature: get individual feature from datasetmapbox-data create-dataset: create a new empty dataset with optional name and descriptionmapbox-data insert-features: add/update features in a datasetmapbox-data replace-dataset: replace dataset with new GeoJSON datamapbox-data list-datasets: list all datasets belonging to a usermapbox-data list-features: get all GeoJSON features within a datasetmapbox-data delete-feature: delete a feature from within a datasetmapbox-data delete-dataset: delete an entire dataset
$ npm install -g mapbox-data-cli
$ mapbox-data create-dataset "Traffic Data" "Traffic data for Phoenix area"
{"owner":"smith","id":"6dcc766430756d74120b9e5ff1c9d4dd","name":"Traffic Patterns,","description":"Traffic in the Pheonix Valley","created":"2015-08-05T02:35:59.828Z","modifie$
":"2015-08-05T02:35:59.828Z"}
$ mapbox-data insert-features 6dcc766430756d74120b9e5ff1c9d4dd traffic.jsonThe output of the list, insert, and replace commands are line-delimited JSON objects of each feature. If you would like to have the JSON object of the whole FeatureCollection, use the --dump option.
Pipes
mapbox-data insert-features and mapbox-data replace-dataset support stdin: you can pipe
into them, and they'll put the data on Mapbox.
$ npm install -g geojson-random # util that generates random geojson
$ geojson-random | mapbox-data insert-features DATASETID
