Downloader Aqua
A General Pipeline for create ML-Ready Data - Downloading the Data - Data Harmonization - Normalizing - Patching
MODISAquaDownload
dataclass
Downloading class for AQUA/MODIS data and cloud mask
Source code in rs_tools/_src/data/modis/downloader_aqua.py
download(start_date='2020-10-01', end_date='2020-10-01', start_time='14:00:00', end_time='21:00:00', save_dir='./data/', region='-130 -15 -90 5', cloud_mask=True)
Downloads AQUA MODIS data including cloud mask
Parameters:
Name | Type | Description | Default |
---|---|---|---|
start_date |
str
|
The start date of the period to download files for in the format "YYYY-MM-DD". |
'2020-10-01'
|
end_date |
str
|
The end date of the period to download files for in the format "YYYY-MM-DD". |
'2020-10-01'
|
start_time |
str
|
The start time of the period to download files for in the format "HH:MM:SS". |
'14:00:00'
|
end_time |
str
|
The end time of the period to download files for in the format "HH:MM:SS". |
'21:00:00'
|
save_dir |
str
|
The directory path to save the downloaded files. |
'./data/'
|
region |
str
|
The geographic region to download files for in the format "min_lon min_lat max_lon max_lat". |
'-130 -15 -90 5'
|
cloud_mask |
bool
|
Whether to download the cloud mask data (default: True). |
True
|
Returns:
Type | Description |
---|---|
None |