You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Uploads GeoJSON files to a changeset for tiling. Accepts line-delimited GeoJSON or GeoJSON feature collections as files or via `stdin`. The CLI automatically converts data to line-delimited GeoJSON prior to uploading. Can be used to add data to a source or to replace all of the data in a source with the `--replace` flag.
157
+
158
+
Please note that if your source data is a FeatureCollection, `tilesets` must read it all into memory to split it up into separate features before uploading it to the Tilesets API. You are strongly encouraged to provide your data in line-delimited GeoJSON format instead, especially if it is large.
159
+
160
+
Note: for large file uploads that are taking a very long time, try using the `--no-validation` flag.
161
+
162
+
Flags:
163
+
164
+
-`--no-validation`[optional]: do not validate source data locally before uploading, can be helpful for large file uploads
165
+
-`--replace`[optional]: delete all existing source data and replace with data from the file
166
+
-`--quiet`[optional]: do not display an upload progress bar
Permanently delete a changeset and all of its files. This is not a recoverable action!
234
+
235
+
Flags:
236
+
237
+
-`-f` or `--force`: Do not ask for confirmation before deleting
238
+
239
+
Usage
240
+
241
+
```shell
242
+
# to delete mapbox://tileset-changeset/user/source_id
243
+
tilesets delete-changeset user source_id
244
+
```
245
+
198
246
### list-sources
199
247
200
248
```
@@ -451,3 +499,12 @@ Flags:
451
499
-`--limit [1-500]`[optional]: The maximum number of results to return (default: 100)
452
500
-`--indent`[optional]: Indent size for JSON output.
453
501
-`--start`[optional]: Pagination key from the `next` value in a response that has more results than the limit.
502
+
503
+
504
+
### publish-changesets
505
+
506
+
Publishes changesets for an incrementally updatable tileset. This command only supports tilesets created with the [Mapbox Tiling Service](https://docs.mapbox.com/mapbox-tiling-service/overview/).
0 commit comments