API Clients Documentation
This documentation provides an overview of the various API clients available in the rs_client
package. Each client is designed to interact with specific services and provide a convenient way to access their functionalities.
RsClient
Client for interacting with the RS-Server services: - rs-server-staging - rs-server-cadip - rs-server-auxip - rs-server-catalog
This class provides methods to authenticate and interact with RS-Server, manage STAC collections, and handle API requests.
Attributes:
Name | Type | Description |
---|---|---|
rs_server_href |
str | None
|
RS-Server URL. Pass None for local mode. |
rs_server_api_key |
str | None
|
API key for RS-Server authentication. |
rs_server_oauth2_cookie |
str | None
|
OAuth2 session cookie read from
the |
owner_id |
str
|
The owner of the STAC catalog collections (no special characters allowed). If not set, we try to read it from the RSPY_HOST_USER environment variable. If still not set: - In local mode, it takes the system username. - In cluster mode, it is deduced from the API key or OAuth2 login = your keycloak username. - In hybrid mode, we raise an Exception. If owner_id is different than your keycloak username, then make sure that your keycloak account has the rights to read/write on this catalog owner. owner_id is also used in the RS-Client logging. |
logger |
Logger
|
Logger instance for logging messages. |
local_mode |
bool
|
Indicates whether the client is running in local mode. |
apikey_headers |
dict
|
API key headers for HTTP requests. |
http_session |
Session
|
HTTP session for handling requests. |
Source code in docs/rs-client-libraries/rs_client/rs_client.py
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 |
|
apikey_config
property
Return the config from the keycloak account, associated to the api key.
apikey_iam_roles
property
Return the IAM (Identity and Access Management) roles from the keycloak account, associated to the api key.
apikey_user_login
property
Return the user login from the keycloak account, associated to the api key.
href_service
property
Implemented by child classes
oauth2_iam_roles
property
Return the IAM (Identity and Access Management) roles from the keycloak account, associated to the authentication cookie
oauth2_user_login
property
Return the user login from the keycloak account, associated to the authentication cookie.
__init__(rs_server_href, rs_server_api_key=None, owner_id=None, logger=None)
Initializes an RsClient instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rs_server_href
|
str | None
|
The URL of the RS-Server. Pass None for local mode. |
required |
rs_server_api_key
|
str | None
|
API key for authentication (default: None). |
None
|
owner_id
|
str | None
|
ID of the catalog owner (default: None). |
None
|
logger
|
Logger | None
|
Logger instance (default: None). |
None
|
Raises:
Type | Description |
---|---|
RuntimeError
|
If neither an API key nor an OAuth2 cookie is provided for RS-Server authentication. |
RuntimeError
|
If the computed owner ID is empty or contains only special characters. |
Source code in docs/rs-client-libraries/rs_client/rs_client.py
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
|
apikey_security()
Check the api key validity. Cache an infinite (sys.maxsize) number of results for 120 seconds.
Returns:
Type | Description |
---|---|
AuthInfo
|
Authentication information from the keycloak account, associated to the api key. |
Source code in docs/rs-client-libraries/rs_client/rs_client.py
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
|
get_auxip_client(station, **kwargs)
Return an instance of the child class AuxipClient, with the same attributes as this "self" instance. Args: station (EAuxipStation): Auxip station
Source code in docs/rs-client-libraries/rs_client/rs_client.py
259 260 261 262 263 264 265 266 267 268 269 |
|
get_cadip_client(station, **kwargs)
Return an instance of the child class CadipClient, with the same attributes as this "self" instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
station
|
ECadipStation
|
Cadip station |
required |
Source code in docs/rs-client-libraries/rs_client/rs_client.py
271 272 273 274 275 276 277 278 279 280 281 282 |
|
get_catalog_client(**kwargs)
Return an instance of the child class CatalogClient, with the same attributes as this "self" instance.
Source code in docs/rs-client-libraries/rs_client/rs_client.py
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 |
|
get_staging_client()
Return an instance of the child class AuxipClient, with the same attributes as this "self" instance.
Source code in docs/rs-client-libraries/rs_client/rs_client.py
300 301 302 303 304 305 306 307 308 |
|
log_and_raise(message, original)
Logs an error message and raises a RuntimeError.
This method logs the provided error message using the class logger
and raises a RuntimeError
, preserving the original exception as the cause.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
message
|
str
|
The error message to log. |
required |
original
|
Exception
|
The original exception that caused the error. |
required |
Raises:
Type | Description |
---|---|
RuntimeError
|
The logged error message, with the original exception as the cause. |
Source code in docs/rs-client-libraries/rs_client/rs_client.py
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
|
oauth2_security()
Returns:
Type | Description |
---|---|
AuthInfo
|
Authentication information from the user keycloak account, associated to the authentication cookie. |
Source code in docs/rs-client-libraries/rs_client/rs_client.py
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 |
|
This client is a general client used for interacting with the RS service. It can be used to retrieve a specific client, see below.
CatalogClient
Bases: RsClient
Class to handle the staging process in rs-client-libraries
This class provides python methods to call the different endpoints of the rs-server-staging method.
Remark: this class don't inherits from the owslib.ogcapi.processes.Processes class because the latter doesn't provide wrapping for all endpoints defined in rs-server-staging (it only provides the /processes and /processes/{processId}/execution endpoints + it doesn't allow to manage apikey_header parameter which is passed as an extra argument).
Source code in docs/rs-client-libraries/rs_client/staging_client.py
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 |
|
href_service
property
Return the RS-Server staging URL hostname. This URL can be overwritten using the RSPY_HOST_STAGING env variable (used e.g. for local mode). Otherwise it should just be the RS-Server URL.
delete_job(job_id)
Method to get a specific job response
Source code in docs/rs-client-libraries/rs_client/staging_client.py
288 289 290 291 292 293 294 295 |
|
get_job_info(job_id)
Method to get a specific job response
Source code in docs/rs-client-libraries/rs_client/staging_client.py
279 280 281 282 283 284 285 286 |
|
get_job_results(job_id)
Wrapper to get the result of a specfific job
Parameters:
Name | Type | Description | Default |
---|---|---|---|
job_id
|
str
|
description |
required |
Source code in docs/rs-client-libraries/rs_client/staging_client.py
297 298 299 300 301 302 303 304 305 306 307 308 |
|
get_jobs()
Method to get running jobs
Source code in docs/rs-client-libraries/rs_client/staging_client.py
270 271 272 273 274 275 276 277 |
|
get_process(process_id)
Wrapper to get a specific process Args: process_id (str): name of the resource
Source code in docs/rs-client-libraries/rs_client/staging_client.py
177 178 179 180 181 182 183 184 185 186 187 188 |
|
get_processes()
summary
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
dictionary containing the content of the response |
Source code in docs/rs-client-libraries/rs_client/staging_client.py
164 165 166 167 168 169 170 171 172 173 174 175 |
|
run_staging(stac_input, out_coll_name)
Method to start the staging process from rs-client - Call the endpoint /processes/staging/execution
Parameters:
Name | Type | Description | Default |
---|---|---|---|
stac_input
|
dict | str
|
input dictionary: the stac_input can have different format. It can be: - A Python dictionary corresponding to a Feature or a FeatureCollection (that can be for example the output of a search for Cadip or Auxip sessions) - A json string corresponding to a Feature or a FeatureCollection - A string corresponding to a path to a json file containing a Feature or a FeatureCollection |
required |
out_coll_name
|
description |
required |
Return
job_id (int, str): Returns the status code of the staging request + the identifier (or None if staging endpoint fails) of the running job
Source code in docs/rs-client-libraries/rs_client/staging_client.py
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
|
validate_and_unmarshal_request(request)
Validate an endpoint request according to the ogc specifications
Parameters:
Name | Type | Description | Default |
---|---|---|---|
request
|
Request
|
endpoint request |
required |
Returns:
Type | Description |
---|---|
Any
|
ResponseUnmarshalResult.data: data validated by the openapi_core |
Any
|
unmarshal_response method |
Source code in docs/rs-client-libraries/rs_client/staging_client.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
|
validate_and_unmarshal_response(response)
Validate an endpoint response according to the ogc specifications (described as yaml schemas)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
response
|
Response
|
endpoint response |
required |
Returns: ResponseUnmarshalResult.data: data validated by the openapi_core unmarshal_response method
Source code in docs/rs-client-libraries/rs_client/staging_client.py
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
|
This client allows you to interact with the the RS-Server Staging service, making it easy to stage files from external stations CADIP/AUXIP. It inherits the RsClient class
StacBase
Bases: RsClient
Base class for interacting with a STAC (SpatioTemporal Asset Catalog) API using pystac-client.
This class provides methods to retrieve STAC collections, items, queryables, and perform searches.
Source code in docs/rs-client-libraries/rs_client/stac_base.py
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 |
|
__init__(rs_server_href, rs_server_api_key=None, owner_id=None, logger=None, stac_href=None, headers=None, parameters=None, ignore_conformance=None, modifier=None, request_modifier=None, stac_io=None, timeout=TIMEOUT)
Initialize the StacBase instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rs_server_href
|
str | None
|
URL of the RS server. |
required |
rs_server_api_key
|
str | None
|
API key for authentication. |
None
|
owner_id
|
str | None
|
Owner identifier. |
None
|
logger
|
Logger | None
|
Logger instance. |
None
|
stac_href
|
str | None
|
STAC API URL. |
None
|
headers
|
Optional[Dict[str, str]]
|
HTTP headers. |
None
|
parameters
|
Optional[Dict[str, Any]]
|
Additional query parameters. |
None
|
ignore_conformance
|
Optional[bool]
|
Whether to ignore conformance. |
None
|
modifier
|
Callable
|
Function to modify collection, item, or item collection. |
None
|
request_modifier
|
Optional[Callable[[Request], Union[Request, None]]]
|
|
None
|
stac_io
|
Optional[StacApiIO]
|
Custom STAC API I/O handler. |
None
|
timeout
|
Optional[Timeout]
|
Request timeout. |
TIMEOUT
|
Source code in docs/rs-client-libraries/rs_client/stac_base.py
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
|
get_collection(collection_id)
cached
Retrieve a specific STAC collection by ID.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id
|
str
|
The ID of the collection. |
required |
Returns:
Type | Description |
---|---|
Collection | CollectionClient
|
Union[Collection, CollectionClient]: The requested collection. |
Raises:
Type | Description |
---|---|
RuntimeError
|
If an API error occurs. |
Source code in docs/rs-client-libraries/rs_client/stac_base.py
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
|
get_collection_queryables(collection_id)
Retrieve queryable fields for a specific collection.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id
|
str
|
The collection ID. |
required |
Returns:
Type | Description |
---|---|
dict[str, Any]
|
Dict[str, Any]: Dictionary of queryable fields. |
Raises:
Type | Description |
---|---|
RuntimeError
|
If an API error occurs. |
Source code in docs/rs-client-libraries/rs_client/stac_base.py
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 |
|
get_collections()
Retrieve available STAC collections the user has permission to access.
Returns:
Type | Description |
---|---|
Iterator[Collection]
|
Iterator[Collection]: An iterator over available collections. |
Raises:
Type | Description |
---|---|
RuntimeError
|
If an API error occurs. |
Source code in docs/rs-client-libraries/rs_client/stac_base.py
156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
|
get_item(collection_id, item_id)
Retrieve a specific item from a collection.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id
|
str
|
The collection ID. |
required |
item_id
|
str
|
The item ID. |
required |
Returns:
Type | Description |
---|---|
Item | None
|
Item | None: The retrieved item or None if not found. |
Raises:
Type | Description |
---|---|
RuntimeError
|
If an API error occurs. |
Source code in docs/rs-client-libraries/rs_client/stac_base.py
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
|
get_items(collection_id, items_ids=None)
Retrieve all items or specific items from a collection.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id
|
str
|
The ID of the collection. |
required |
items_ids
|
Union[str, None]
|
Specific item ID(s) to retrieve. |
None
|
Returns:
Type | Description |
---|---|
Iterator[Item]
|
Iterator[Item]: An iterator over retrieved items. |
Raises: RuntimeError: If an API error occurs.
Source code in docs/rs-client-libraries/rs_client/stac_base.py
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
|
get_landing()
Retrieve the STAC API landing page.
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
The landing page response. |
Raises:
Type | Description |
---|---|
RuntimeError
|
If an API error occurs. |
Source code in docs/rs-client-libraries/rs_client/stac_base.py
142 143 144 145 146 147 148 149 150 151 152 153 154 |
|
get_queryables()
Retrieve queryable fields for all collections in the STAC API. These are the available terms for usage when writing filter expressions in /search endpoint for all the collections NOTE: the pystac-client library doesn't have a function for this action, so the direct call of the endpoint is needed
Returns:
Type | Description |
---|---|
dict[str, Any]
|
Dict[str, Any]: Dictionary of queryable fields. |
Raises:
Type | Description |
---|---|
RuntimeError
|
If an exception occurs from the request level. |
Source code in docs/rs-client-libraries/rs_client/stac_base.py
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
|
search(**kwargs)
Perform a STAC search using query parameters.
Returns:
Type | Description |
---|---|
ItemCollection | None
|
ItemCollection | None: Retrieved item collection or None if not found. |
Raises:
Type | Description |
---|---|
RuntimeError
|
If an API error occurs. |
Source code in docs/rs-client-libraries/rs_client/stac_base.py
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 |
|
The StacBase class serves as a foundational implementation for interacting with a STAC (SpatioTemporal Asset Catalog) API to provide a robust interface for retrieving collections, items, and queryables, as well as performing searches. It inherits the RsClient class
AuxipClient
Bases: StacBase
AuxipClient class implementation.
Attributes: see :py:class:RsClient
Source code in docs/rs-client-libraries/rs_client/auxip_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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
|
href_service
property
Return the RS-Server ADGS URL hostname. This URL can be overwritten using the RSPY_HOST_ADGS env variable (used e.g. for local mode). Otherwise it should just be the RS-Server URL.
station_name
property
Return the station name.
__init__(rs_server_href, rs_server_api_key, owner_id, station, logger=None, **kwargs)
Initializes an AuxipClient instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rs_server_href
|
str | None
|
The URL of the RS-Server. Pass None for local mode. |
required |
rs_server_api_key
|
str | None
|
API key for authentication. |
required |
owner_id
|
str | None
|
ID of the catalog owner. |
required |
station
|
EAuxipStation | str
|
The AUXIP station identifier. |
required |
logger
|
Logger | None
|
Logger instance (default: None). |
None
|
**kwargs
|
dict[str, Any]
|
Arbitrary keyword arguments that may include:
- |
{}
|
Raises:
Type | Description |
---|---|
RuntimeError
|
If the provided station is not a valid AUXIP station. |
Source code in docs/rs-client-libraries/rs_client/auxip_client.py
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 61 62 63 64 65 66 67 68 69 70 71 72 73 |
|
The AuxipClient is tailored for accessing the AUXIP service. It includes functionalities for querying auxiliary data and metadata from an external AUXIP station. It inherits the StacBase class
CadipClient
Bases: StacBase
CadipClient class implementation.
see :py:class:`RsClient`
Name | Type | Description |
---|---|---|
station |
ECadipStation
|
Cadip station |
Source code in docs/rs-client-libraries/rs_client/cadip_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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
|
href_service
property
Return the RS-Server CADIP URL hostname. This URL can be overwritten using the RSPY_HOST_CADIP env variable (used e.g. for local mode). Otherwise it should just be the RS-Server URL.
station_name
property
Return the station name.
__init__(rs_server_href, rs_server_api_key, owner_id, station, logger=None, **kwargs)
Initializes a CadipClient instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rs_server_href
|
str | None
|
The URL of the RS-Server. Pass None for local mode. |
required |
rs_server_api_key
|
str | None
|
API key for authentication. |
required |
owner_id
|
str | None
|
ID of the catalog owner. |
required |
station
|
EAuxipStation | str
|
The CADIP station identifier. |
required |
logger
|
Logger | None
|
Logger instance (default: None). |
None
|
**kwargs
|
dict[str, Any]
|
Arbitrary keyword arguments that may include:
- |
{}
|
Raises:
Type | Description |
---|---|
RuntimeError
|
If the provided station is not a valid CADIP station. |
Source code in docs/rs-client-libraries/rs_client/cadip_client.py
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
|
CadipClient is designed to interface with the CADIP service. It includes functionalities for querying data and metadata from an external CADIP station. It inherits the StacBase class
CatalogClient
Bases: StacBase
CatalogClient inherits from both rs_client.RsClient and pystac_client.Client. The goal of this class is to allow an user to use RS-Server services more easily than calling REST endpoints directly.
Source code in docs/rs-client-libraries/rs_client/catalog_client.py
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
|
href_service
property
Return the RS-Server Catalog URL hostname. This URL can be overwritten using the RSPY_HOST_CATALOG env variable (used e.g. for local mode). Otherwise it should just be the RS-Server URL.
__init__(rs_server_href, rs_server_api_key, owner_id, logger=None, **kwargs)
CatalogClient class constructor.
Source code in docs/rs-client-libraries/rs_client/catalog_client.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
|
add_collection(collection, add_public_license=True, owner_id=None, timeout=TIMEOUT)
Update the collection links, then post the collection into the catalog.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection
|
Collection
|
STAC collection |
required |
add_public_license
|
bool
|
If True, add a public domain license field and link. |
True
|
owner_id
|
str
|
Collection owner ID. If missing, we use self.owner_id. |
None
|
timeout
|
int
|
The timeout duration for the HTTP request. |
TIMEOUT
|
Returns:
Name | Type | Description |
---|---|---|
JSONResponse |
json
|
The response of the request. |
Source code in docs/rs-client-libraries/rs_client/catalog_client.py
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
|
add_item(collection_id, item, owner_id=None, timeout=TIMEOUT)
Update the item links, then post the item into the catalog.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id
|
str
|
The collection id. |
required |
item
|
Item
|
STAC item to update and post |
required |
owner_id
|
str
|
Collection owner ID. If missing, we use self.owner_id. |
None
|
timeout
|
int
|
The timeout duration for the HTTP request. |
TIMEOUT
|
Returns:
Name | Type | Description |
---|---|---|
JSONResponse |
Response
|
The response of the request. |
Source code in docs/rs-client-libraries/rs_client/catalog_client.py
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
|
full_collection_id(owner_id, collection_id, concat_char=None)
Generates a full collection identifier by concatenating the owner ID and collection ID.
This function constructs a full collection ID by combining the provided owner_id
(or a
default owner ID from self.owner_id
) with collection_id
using a specified separator.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
owner_id
|
str | None
|
The owner identifier. If |
required |
collection_id
|
str
|
The collection identifier that must always be provided. |
required |
concat_char
|
str | None
|
The character used to concatenate |
None
|
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
A string representing the full collection ID, formatted as:
|
Raises:
Type | Description |
---|---|
- **AttributeError**
|
If |
Notes
- This function is useful in scenarios where collections are stored with unique identifiers that require owner prefixes for proper scoping.
Source code in docs/rs-client-libraries/rs_client/catalog_client.py
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
|
get_collection(collection_id, owner_id=None)
Get the requested collection
Source code in docs/rs-client-libraries/rs_client/catalog_client.py
110 111 112 113 114 115 116 |
|
get_item(collection_id, item_id, owner_id=None)
Get an item from a specific collection.
Source code in docs/rs-client-libraries/rs_client/catalog_client.py
127 128 129 |
|
get_items(collection_id, items_ids=None, owner_id=None)
Get all items from a specific collection.
Source code in docs/rs-client-libraries/rs_client/catalog_client.py
118 119 120 121 122 123 124 125 |
|
remove_collection(collection_id, owner_id=None, timeout=TIMEOUT)
Remove/delete a collection from the catalog.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id
|
str
|
The collection id. |
required |
owner_id
|
str
|
Collection owner ID. If missing, we use self.owner_id. |
None
|
timeout
|
int
|
The timeout duration for the HTTP request. |
TIMEOUT
|
Returns:
Name | Type | Description |
---|---|---|
JSONResponse |
Response
|
The response of the request. |
Source code in docs/rs-client-libraries/rs_client/catalog_client.py
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 |
|
remove_item(collection_id, item_id, owner_id=None, timeout=TIMEOUT)
Remove/delete an item from a collection.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id
|
str
|
The collection id. |
required |
item_id
|
str
|
The item id. |
required |
owner_id
|
str
|
Collection owner ID. If missing, we use self.owner_id. |
None
|
timeout
|
int
|
The timeout duration for the HTTP request. |
TIMEOUT
|
Returns:
Name | Type | Description |
---|---|---|
JSONResponse |
Response
|
The response of the request. |
Source code in docs/rs-client-libraries/rs_client/catalog_client.py
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
|
search(**kwargs)
Search items inside a specific collection.
Source code in docs/rs-client-libraries/rs_client/catalog_client.py
131 132 133 134 135 136 137 138 139 140 |
|
This client allows you to interact with the STAC service, making it easy to search, retrieve, and manage spatio-temporal asset catalog data. It inherits the StacBase class
For detailed usage instructions and examples for each client, please refer to the respective sections.