STACObject
pystac.STACObject
Bases: ABC
The base class for all STAC objects.
Source code in src/pystac/stac_object.py
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 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 |
|
ext
instance-attribute
ext = Extensions(self)
This object's extension manager
extra_fields
instance-attribute
extra_fields: dict[str, Any] = kwargs
Any extra fields on this object.
href
instance-attribute
href: str | None
This object's href
This is where it was read from, or where it should be written to. We
don't use the self
link (like PySTAC v1.0 did) because there's time
you don't want a self link, but you still want to track an object's
location.
id
instance-attribute
id: str = id
The object's id.
reader
instance-attribute
reader: Read
This object's reader.
stac_extensions
instance-attribute
stac_extensions: list[str] | None = stac_extensions
The object's STAC extension schema urls.
stac_version
instance-attribute
stac_version: str = stac_version or DEFAULT_STAC_VERSION
The object's STAC version.
writer
instance-attribute
writer: Write
This object's writer.
__init__
__init__(
id: str,
stac_version: str | None = None,
stac_extensions: list[str] | None = None,
links: list[Link | dict[str, Any]] | None = None,
assets: dict[str, Asset | dict[str, Any]] | None = None,
href: str | None = None,
reader: Read | None = None,
writer: Write | None = None,
**kwargs: Any,
) -> None
Creates a new STAC object.
Source code in src/pystac/stac_object.py
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 |
|
_to_dict
abstractmethod
_to_dict() -> dict[str, Any]
Private method that is used to actually implement to_dict until we can remove the old arguments.
Source code in src/pystac/stac_object.py
437 438 439 440 |
|
from_dict
classmethod
from_dict(
d: dict[str, Any],
href: str | None = None,
root: Catalog | None = None,
migrate: bool | None = None,
preserve_dict: bool | None = None,
) -> Self
Creates a STAC object from a dictionary.
If you already know what type of STAC object your dictionary represents,
use the initializer directly, e.g. Catalog(**d)
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
d
|
dict[str, Any]
|
A JSON dictionary |
required |
Returns:
Type | Description |
---|---|
Self
|
A STAC object |
Raises:
Type | Description |
---|---|
STACError
|
If the type field is not present or not a value we recognize. |
Examples:
>>> # Use this when you don't know what type of object it is
>>> stac_object = STACObject.from_dict(d)
>>> # Use this when you know you have a catalog
>>> catalog = Catalog(**d)
Source code in src/pystac/stac_object.py
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 |
|
from_file
classmethod
from_file(
href: str | Path,
stac_io: Any = None,
*,
reader: Read | None = None,
) -> Self
Reads a STAC object from a JSON file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
href
|
str | Path
|
The file to read |
required |
reader
|
Read | None
|
The reader to use for the read. This will be saved as the
|
None
|
Raises:
Type | Description |
---|---|
STACError
|
Raised if the object's type does not match the calling class. |
Examples:
>>> catalog = Catalog.from_file("catalog.json")
>>> Item.from_file("catalog.json") # Will raise a `STACError`
Source code in src/pystac/stac_object.py
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 |
|
get_root
get_root() -> Container | None
Returns the container at this object's root link, if there is one.
Source code in src/pystac/stac_object.py
288 289 290 291 292 293 294 295 296 297 298 299 |
|
get_type
abstractmethod
classmethod
get_type() -> str
Returns the type
field for this STAC object.
Examples:
>>> print(Item.get_type())
"Feature"
Source code in src/pystac/stac_object.py
37 38 39 40 41 42 43 44 45 |
|
iter_links
iter_links(*rels: str) -> Iterator[Link]
Iterate over links, optionally filtering by one or more relation types.
Examples:
>>> from pystac import CHILD, ITEM
>>> links = list(item.iter_links())
>>> child_links = list(item.iter_links(CHILD))
>>> sub_links = list(item.iter_links(CHILD, ITEM))
Source code in src/pystac/stac_object.py
307 308 309 310 311 312 313 314 315 316 317 318 319 |
|
read_file
read_file(href: str) -> STACObject
Reads a new STAC object from a file.
This method will resolve relative hrefs by using this STAC object's href
or, if not set, its self
link.
Source code in src/pystac/stac_object.py
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 |
|
validate
validate() -> None
Validates this STAC object using the default validator (jsonschema).
If you want to validate multiple objects, it can be more efficient to create a validator directly, as the validator caches fetched schemas:
validator = pystac.validate.DefaultValidator()
for stac_object in stac_objects:
validator.validate(stac_object)
Raises:
Type | Description |
---|---|
ValidationError
|
If the STAC object is invalid, this error will contain all the underlying validation errors. |
ImportError
|
If pystac has not been installed with the |
Source code in src/pystac/stac_object.py
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 |
|