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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,17 @@
1
1
# Unreleased
2
2
3
-
# 1.5.2
3
+
=======
4
+
5
+
# 1.7.1 (2021-04-16)
4
6
- Switch to codecov python module
5
7
8
+
# 1.7.0 (2021-04-02)
9
+
- Update `tilesets publish` success message to include link to studio.mapbox.com/tilesets/* endpoint and include `tilesets job` command to view the status.
10
+
11
+
# 1.6.0 (2021-02-16)
12
+
- Fix problem that prevented estimate-area from working for MultiPolygons
13
+
- Improve documentation for delete-source and upload-source
Uploads GeoJSON files to a source 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.
68
68
69
+
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.
70
+
69
71
Flags:
70
72
71
73
*`--no-validation`[optional]: do not validate source data locally before uploading
# Reading from a directory will not distinguish between GeoJSON files and non GeoJSON files. All source files will be run through our validator unless you pass the `--no-validation` flag.
*WARNING: add-source is maintained for legacy purposes. Please use the `upload-source` command instead.*
92
94
93
95
```shell
94
-
tilesets add-source <username><id><file>
96
+
tilesets add-source <username><source_id><file>
95
97
```
96
98
97
99
Adds GeoJSON files to a source 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.
98
100
101
+
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.
102
+
99
103
Flags:
100
104
101
105
*`--no-validation`[optional]: do not validate source data locally before uploading
# Reading from a directory will not distinguish between GeoJSON files and non GeoJSON files. All source files will be run through our validator unless you pass the `--no-validation` flag.
0 commit comments