auromat.cli.download module

Downloads a dataset from one of the following providers:

  • ESA ISS Archive
  • THEMIS Archive
auromat.cli.download.main()[source]
usage: auromat-download [-h] [--start START] [--end END] [--id ID] [--dir DIR]
                        [--version]
                        {esa-iss,themis}

This tool downloads data of a given period from a provider and
stores it on disk without applying any postprocessing.

positional arguments:
  {esa-iss,themis}  The provider to get data from

optional arguments:
  -h, --help        show this help message and exit
  --dir DIR         Directory to store data in, by default the current one
  --version         show program's version number and exit

period:
  These arguments specify which data to download.
  For the THEMIS provider, --start and --end are required.
  For the ESA ISS provider, --id is required and 
  --start --end can be used to further constrain the period.

  --start START     UTC start date, format 2000-01-01T12:00:00
  --end END         UTC end date (inclusive)
  --id ID           Sequence ID(s) in ESA ISS archive

Examples:

auromat-download esa-iss --id 5
auromat-download esa-iss --id 5 --start 2000-01-01T12:00:00
auromat-download esa-iss --id 5 --id 6 --id 7
auromat-download esa-iss --id 5 --dir sequences/iss

auromat-download themis --start 2000-01-01T12:00:00 --end 2000-01-01T12:10:00