File tree 3 files changed +11
-2
lines changed
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change
1
+ [ 0.9.1] ( https://github.com/developmentseed/label-maker/releases/tag/0.9.1 ) (2020-11-18)
2
+ ------------------
3
+ - Add the ability to specify the number of threads to use to downlaod images ([ #182 ] ( https://github.com/developmentseed/label-maker/pull/182 ) )
4
+
1
5
[ 0.9.0] ( https://github.com/developmentseed/label-maker/releases/tag/0.9.0 ) (2020-08-19)
2
6
------------------
3
7
- Add the ability to parse non-polygons from the GeoJSON file ([ #170 ] ( https://github.com/developmentseed/label-maker/pull/170 ) )
Original file line number Diff line number Diff line change @@ -108,9 +108,14 @@ Downloads all imagery tiles needed to create the training data. Requires the ``l
108
108
The number of background tiles added depends on the `background_ratio ` parameter specified in the `config.json ` file.
109
109
A background_ratio of 0 will return no background tiles.
110
110
111
+ Accepts one additional flag:
112
+
113
+ ``-t `` or ``--threadcount ``: int
114
+ Specifies the number of threads used to download imagery tiles in parallel. Defaults to ``10 ``.
115
+
111
116
.. code-block :: bash
112
117
113
- $ label-maker images
118
+ $ label-maker images -t 50
114
119
Downloading 1189 tiles to data/tiles
115
120
116
121
CLI Step 5: package
Original file line number Diff line number Diff line change 1
1
"""Library verison"""
2
- __version__ = '0.9.0 '
2
+ __version__ = '0.9.1 '
You can’t perform that action at this time.
0 commit comments