diff --git a/CHANGELOG.md b/CHANGELOG.md index 43166de..4af1815 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +[0.9.1](https://github.com/developmentseed/label-maker/releases/tag/0.9.1) (2020-11-18) +------------------ +- Add the ability to specify the number of threads to use to downlaod images ([#182](https://github.com/developmentseed/label-maker/pull/182)) + [0.9.0](https://github.com/developmentseed/label-maker/releases/tag/0.9.0) (2020-08-19) ------------------ - Add the ability to parse non-polygons from the GeoJSON file ([#170](https://github.com/developmentseed/label-maker/pull/170)) diff --git a/docs/index.rst b/docs/index.rst index 6a295ea..e8f0aa5 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -108,9 +108,14 @@ Downloads all imagery tiles needed to create the training data. Requires the ``l The number of background tiles added depends on the `background_ratio` parameter specified in the `config.json` file. A background_ratio of 0 will return no background tiles. +Accepts one additional flag: + + ``-t`` or ``--threadcount``: int + Specifies the number of threads used to download imagery tiles in parallel. Defaults to ``10``. + .. code-block:: bash - $ label-maker images + $ label-maker images -t 50 Downloading 1189 tiles to data/tiles CLI Step 5: package diff --git a/label_maker/version.py b/label_maker/version.py index f14ae63..aac9d9c 100644 --- a/label_maker/version.py +++ b/label_maker/version.py @@ -1,2 +1,2 @@ """Library verison""" -__version__ = '0.9.0' +__version__ = '0.9.1'