Py Hydroweb
py_hydroweb is a simple library providing python facilities to search and download hydrological data from the hydroweb.next platform.
For more information about the platform, to create an account and an API key, visit our website at https://hydroweb.next.theia-land.fr.
>>> import py_hydroweb
>>> client = py_hydroweb.Client("<my_personal_hydroweb_api_key>")
>>> basket = py_hydroweb.DownloadBasket("my_download_basket")
>>> basket.add_collection("HYDROWEB_LAKES_OPE", bbox=[17.6123, 4.53676, 54.7998, 18.04142])
>>> client.submit_and_download_zip(basket)
After you created your account and your api key on the website, this simple piece of code will download (in your current folder) a zip file containing the collection(s) you asked for.
Products are filtered according to how you called add_collection
(in this example with a simple bbox, but no temporal filter).
Installing Py Hydroweb and Supported Versions
Py Hydroweb is available on PyPI and can be installed like any other Python package (also works with conda or other environment managers):
$ python -m pip install py_hydroweb
Py Hydroweb officially supports Python 3.8+.
API Reference and User Guide
To prepare and run a download request, follow step by step instruction below.
1. Create an instance of a client
>>> client: py_hydroweb.Client = py_hydroweb.Client(
hydroweb_api_url="<an_hydroweb_api_endpoint>",
api_key="<my_personal_hydroweb_api_key>"
)
Client's constructor parameters:
hydroweb_api_url: str
(optional) Hydroweb API base URL. Default value is https://hydroweb.next.theia-land.fr/api and except for test purpose, there is no need to change it.api_key: str = None
(optional) Hydroweb API Key that you can get from our website once you created your account
Alternative: if not passed in the above constructor, the API Key must be defined by setting the HYDROWEB_API_KEY environment variable: export HYDROWEB_API_KEY=<my_personal_hydroweb_api_key>
2. Create a new empty download basket
>>> basket: py_hydroweb.DownloadBasket = py_hydroweb.DownloadBasket(download_name="my_download_basket")
DownloadBasket's constructor parameters:
download_name: str
(mandatory) Name for the download to be prepared
3. Add as many collections as you want to this basket
>>> basket.add_collection(
collection_id="HYDROWEB_LAKES_OPE",
bbox=[17.6123, 4.53676, 54.7998, 18.04142]
)
>>> basket.add_collection(
collection_id="LIS_SNT_YEARLY",
correlation_id="LIS_SNT_YEARLY",
folder="lis/snt/",
bbox=[17.6123, 4.53676, 54.7998, 18.04142],
intersects={
"coordinates": [
[[21.282, 17.656], [21.282, 14.221], [26.797, 14.221], [26.797, 17.656], [21.282, 17.656]]
],
"type": "Polygon",
},
datetime="2022-01-01T00:00:00Z/2022-12-31T23:59:59Z",
query={
"start_datetime": {"lte": "2024-02-03T00:00:00.000Z"},
"end_datetime": {"gte": "2023-02-02T00:00:00.000Z"},
},
)
add_collection method parameters:
collection_id: str
(mandatory) Collection identifier (as specified by hydroweb.next platform, browse here to discover available collection ids)correlation_id: str = None
(optional) Correlation identifier (in case we find several time the same collection ID in the same download basket)folder: str = None
(optional) Desired folder subpath in the resulting zip to be downloadedbbox: List[float] = None
(optional) Geographical bounding box
- for more information see here
intersects: dict = None
(optional) Geojson geometry to search for items by performing intersection between their own geometry and this geometry
- for more information see here
datetime: str = None
(optional) Single date+time, or a range ('/' separator)
- for more information see here
- warning: this parameter refers to the ingestion datetime of the data in the catalog and should generally not be used. If you want to refer to product date and time, use the
query
parameter below
query: dict = None
(optional) Json query as specified by the query plugin of STAC API
- for more information see here
- warning 1: start_datetime and end_datetime refer to the product datetime. They are common-metadata as defined here.
- warning 2: in case of a "reference collection" (without a temporal dimension), start_datetime and end_datetime will be ignored.
4. Submit your request and download your basket
4.A. (Option A) Dissociated submission and download
Step 1: submit your download request
Once you are done adding collections to your basket, you can now submit your download request.
This will return an identifier that you will be able to use later to download your zip file.
>>> download_id: str = client.submit_download(download_basket=basket)
submit_download method parameters:
download_basket: DownloadBasket
(mandatory) Download basket containing requested collections
submit_download return value:
download_id: str
identifier of your download request
Step 2: download your zip file
Once you submitted your download request, you can ask to download the resulting zip file.
This method automatically waits for your download request to be ready before it proceeds with zip download.
>>> downloaded_zip_path: str = client.download_zip(
download_id=download_id, zip_filename="my_data.zip", output_folder="./output"
)
download_zip method parameters:
download_id: str
(mandatory) The identifier of the previously submitted download requestzip_filename: str = None
(optional) An output file name for the resulting zip - if not provided, file name will be <download_id>.zipoutput_folder: str = None
(optional) A (relative or absolute) path to an existing folder - if not provided, download will happen in current folder
download_zip return value:
downloaded_zip_path: str
The (relative or absolute) path of the downloaded zip file
4.B. (Option B) Grouped submission and download
Single step: submit your download request and download your zip file
Alternatively, once you are done adding collections to your basket, you can all together submit your download request, wait for it to be ready and proceed with zip download.
>>> downloaded_zip_path: str = client.submit_and_download_zip(
download_basket=basket, zip_filename="my_data.zip", output_folder="./output"
)
submit_and_download_zip method parameters:
download_basket: DownloadBasket
(mandatory) Download basket containing requested collectionszip_filename: str = None
(optional) An output file name for the resulting zip - if not provided, file name will be <download_id>.zipoutput_folder: str = None
(optional) A (relative or absolute) path to an existing folder - if not provided, download will happen in current folder
submit_and_download_zip return value:
downloaded_zip_path: str
The (relative or absolute) path of the downloaded zip file
5. Other methods provided by the Client class
Check the status/progress of a single download request
>>> status: py_hydroweb.DownloadInfo = client.get_download_info(download_id=download_id)
get_download_info method parameters:
download_id: str
(mandatory) The identifier of the previously submitted download request
get_download_info return value:
status: py_hydroweb.DownloadInfo
Object containing a status (CREATED, RUNNING, COMPLETED, FAILED, ...) and a percentage of progress
Check the status/progress of all you download requests (paginated)
>>> last_update = datetime.now() + timedelta(hours=-1)
>>> statuses: dict[str, py_hydroweb.DownloadInfo] = client.get_downloads_info(
last_update=last_update, page=0, size=20
)
get_downloads_info method parameters:
last_update: date = None
(optional) An optional date to retrieve only download requests updated after this date - if not provided, all your requests will be retrievedpage: int = None
(optional) Pagination parameter: index (starting at 0) of the page we want to retrieve - if neither page
nor size
are provided, there will be no pagination and all results will be returned at oncesize: int = None
(optional) Pagination parameter: number of elements per page - if neither page
nor size
are provided, there will be no pagination and all results will be returned at once
get_downloads_info return value:
statuses: dict[str, py_hydroweb.DownloadInfo]
Dict where keys are download id and values are objects containing a status (CREATED, RUNNING, COMPLETED, FAILED, ...) and a percentage of progress
Delete a download request
The history of your download requests will automatically get cleaned after a certain amout of time.
You can also clean it manually provided that status is no longer CREATED nor RUNNING.
>>> client.delete_download(download_id=download_id)
delete_download method parameters:
download_id: str
(mandatory) The identifier of the download request to be removed