Collection.download_datasets() misplaces dataset directories when multiple datasets are present
rlc2 opened this issue · 0 comments
rlc2 commented
from FLIR.conservator.conservator import Conservator
cli = Conservator.default()
coll_query = cli.collections.from_remote_path("/AndresTest")
coll_query.download_datasets("/tmp")
This code results in the following directory structure:
/tmp/ADAS-empty-test/
/tmp/ADAS-empty-test/associated_files
/tmp/ADAS-empty-test/data
/tmp/ADAS-empty-test/testing details copy
/tmp/ADAS-empty-test/testing details copy/associated_files
/tmp/ADAS-empty-test/testing details copy/data
/tmp/ADAS-empty-test/testing details copy/another lc test
/tmp/ADAS-empty-test/testing details copy/another lc test/associated_files
/tmp/ADAS-empty-test/testing details copy/another lc test/data
The "testing details copy" and "another lc test" dataset repositories should be at the same level as "ADAS-empty-test".