rs_client/stac/earthdatahub_client.md
EarthDataHubClient class implementation.
EarthDataHubClient
Bases: StacBase
EarthDataHubClient class implementation.
Attributes: see :py:class:RsClient
Source code in docs/rs-client-libraries/rs_client/stac/earthdatahub_client.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | |
href_service
property
Return the EarthDataHub STAC URL.
__init__(edh_api_key=None, logger=None, **kwargs)
Initializes an EarthDataHubClient instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
edh_api_key
|
str | None
|
API key for authentication (default: None). |
None
|
logger
|
Logger | None
|
Logger instance (default: None). |
None
|
**kwargs
|
dict[str, Any]
|
Arbitrary keyword arguments that may include:
- |
{}
|
Source code in docs/rs-client-libraries/rs_client/stac/earthdatahub_client.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | |