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
Downloading 11 tiles to /home/pallawi/my_new_project/label-maker/data1/tiles
Traceback (most recent call last):
File "/home/pallawi/my_new_project/venv/bin/label-maker", line 11, in
sys.exit(cli())
File "/home/pallawi/my_new_project/venv/lib/python3.6/site-packages/label_maker/main.py", line 110, in cli
download_images(dest_folder=dest_folder, **config)
File "/home/pallawi/my_new_project/venv/lib/python3.6/site-packages/label_maker/images.py", line 125, in download_images
image_function(tile, imagery, tiles_dir, imagery_offset, kwargs)
TypeError: download_tile_tms() takes 4 positional arguments but 5 were given
I have these five files in my data1 directory:
1.classification.geojson
2.labels.npz
3.togo.geojson
4.togo-z12.mbtiles
5.togo.mbtiles
Solved it:
Replace --->>>> def download_tile_tms(tile, imagery, folder, kwargs):
to this
------------->>>>>def download_tile_tms(tile, imagery, folder, imagery_offset,kwargs):
in the utils.py file.
label-maker images --dest /home/pallawi/my_new_project/label-maker/data1 --config /home/pallawi/my_new_project/label-maker/config.json
Downloading 11 tiles to /home/pallawi/my_new_project/label-maker/data1/tiles
Traceback (most recent call last):
File "/home/pallawi/my_new_project/venv/bin/label-maker", line 11, in
sys.exit(cli())
File "/home/pallawi/my_new_project/venv/lib/python3.6/site-packages/label_maker/main.py", line 110, in cli
download_images(dest_folder=dest_folder, **config)
File "/home/pallawi/my_new_project/venv/lib/python3.6/site-packages/label_maker/images.py", line 125, in download_images
image_function(tile, imagery, tiles_dir, imagery_offset, kwargs)
TypeError: download_tile_tms() takes 4 positional arguments but 5 were given
I have these five files in my data1 directory:
1.classification.geojson
2.labels.npz
3.togo.geojson
4.togo-z12.mbtiles
5.togo.mbtiles
and this is my config file:
{
"country": "togo",
"bounding_box": [1.09725, 6.05520, 1.34582, 6.30915],
"zoom": 12,
"classes": [
{ "name": "Roads", "filter": ["has", "highway"] },
{ "name": "Buildings", "filter": ["has", "building"] }
],
"imagery": "http://a.tiles.mapbox.com/v4/mapbox.satellite/{z}/{x}/{y}.jpg?access_token=pk.eyJ1IjoicGFsbGF3azBqM2lwamN5enkolokhnbggggaJKMMNOWAUUV47kU7CQ",
"background_ratio": 1,
"ml_type": "classification"
}
The text was updated successfully, but these errors were encountered: