Skip to content

Commit

Permalink
version bump and docs update
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklvsa committed Oct 23, 2024
1 parent 01f87ed commit 6e939ca
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

=======

# 1.12.0 (2024-10-23)
- Added command `tilesets estimate-cu` that returns an estimated compute unit value for a user's tileset.

# 1.11.1 (2024-08-01)
- Added command `tilesets upload-raster-source` to upload raster files as sources

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,9 @@ tilesets delete-source user source_id
tilesets estimate-cu <tileset> -s/--sources <sources> -b/--num-bands <number> --raw
```

Estimates the CU value of a tileset before publishing it. This is useful to understand the estimated cost a given tileset before you start processing the data. Note: This is currently only available to tileset recipes with type `raster` and `rasterarray`.
Estimates the CU value of a tileset before publishing it. This is useful to understand the estimated cost a given tileset before you start processing the data. Note: This is currently only available to tileset recipes with type `raster` or `rasterarray`.

See https://docs.mapbox.com/help/glossary/compute-unit/ for more information.

Flags:
- `-s` or `--sources` [optional]: Local path to the sources that your recipe points at. This is highly recommeneded.
Expand Down
2 changes: 1 addition & 1 deletion mapbox_tilesets/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""mapbox_tilesets package"""

__version__ = "1.11.1"
__version__ = "1.12.0"

0 comments on commit 6e939ca

Please sign in to comment.