Datastore
Module for catalog management classes and functions
Datastore
Singleton component for managing catalog data
Source code in datastore/datastore/datastore.py
24 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 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 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 | |
dataset_info(dataset_id)
Get information about the dataset and names of all available products (with their metadata)
Parameters
dataset_id : str ID of the dataset
Returns
info : dict Dict of short information about the dataset
Source code in datastore/datastore/datastore.py
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 | |
dataset_list()
Get list of datasets available in the catalog stored in catalog
attribute
Returns
datasets : list List of datasets present in the catalog
Source code in datastore/datastore/datastore.py
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | |
estimate(dataset_id, product_id, query)
Estimate dataset size
Parameters
dataset_id : str ID of the dataset product_id : str ID of the product query : GeoQuery or dict or str Query to be executed for the given product
Returns
size : int Number of bytes of the estimated kube
Source code in datastore/datastore/datastore.py
366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 | |
first_eligible_product_details(dataset_id, role=None, use_cache=False)
Get details for the 1st product of the dataset eligible for the role.
If role is None, the public role is considered.
Parameters
dataset_id : str
ID of the dataset
role : optional str or list of str, default=None
Role code for which the 1st eligible product of a dataset
should be selected
use_cache : bool, optional, default=False
Data will be loaded from cache if set to True or directly
from the catalog otherwise
Returns
details : dict Details of the product
Raises
UnauthorizedError if none of product of the requested dataset is eligible for a role
Source code in datastore/datastore/datastore.py
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 | |
get_cached_product_or_read(dataset_id, product_id, query=None)
Get product from the cache instead of loading files indicated in
the catalog if metadata_caching set to True.
If might return geokube.DataCube or geokube.Dataset.
Parameters
dataset_id : str ID of the dataset product_id : str ID of the dataset
Returns
kube : DataCube or Dataset
Source code in datastore/datastore/datastore.py
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 | |
product_details(dataset_id, product_id, role=None, use_cache=False)
Get details for the single product
Parameters
dataset_id : str
ID of the dataset
product_id : str
ID of the product
role : optional str or list of str, default=None
Role code for which the the product is requested.
use_cache : bool, optional, default=False
Data will be loaded from cache if set to True or directly
from the catalog otherwise
Returns
details : dict Details of the product
Raises
UnauthorizedError if the requested product is not eligible for a role
Source code in datastore/datastore/datastore.py
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 | |
product_list(dataset_id)
Get list of products available in the catalog for dataset
indicated by dataset_id
Parameters
dataset_id : str ID of the dataset
Returns
products : list List of products for the dataset
Source code in datastore/datastore/datastore.py
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | |
product_metadata(dataset_id, product_id)
Get product metadata directly from the catalog.
Parameters
dataset_id : str ID of the dataset product_id : str ID of the product
Returns
metadata : dict DatasetMetadata of the product
Source code in datastore/datastore/datastore.py
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | |
query(dataset_id, product_id, query, compute=False)
Query dataset
Parameters
dataset_id : str
ID of the dataset
product_id : str
ID of the product
query : GeoQuery or dict or str or bytes or bytearray
Query to be executed for the given product
compute : bool, optional, default=False
If True, resulting data of DataCube will be computed, otherwise
DataCube with dask.Delayed object will be returned
Returns
kube : DataCube
DataCube processed according to query
Source code in datastore/datastore/datastore.py
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | |
RequestStatus
Bases: Enum
Status of the Request
Source code in datastore/dbmanager/dbmanager.py
41 42 43 44 45 46 47 48 49 50 51 52 53 54 | |
generate_key()
Generate as new api key for a user
Source code in datastore/dbmanager/dbmanager.py
36 37 38 | |
is_true(item)
If item represents True value
Source code in datastore/dbmanager/dbmanager.py
29 30 31 32 33 | |