pystac.extensions.version#
Implements the Versioning Indicators Extension.
- class pystac.extensions.version.CollectionVersionExtension(collection: pystac.collection.Collection)[source]#
Bases:
pystac.extensions.version.VersionExtension[pystac.collection.Collection]A concrete implementation of
VersionExtensionon aCollectionthat extends the properties of the Collection to include properties defined in the Versioning Indicators Extension.This class should generally not be instantiated directly. Instead, call
VersionExtension.ext()on anCollectionto extend it.- collection: pystac.collection.Collection#
- links: List[pystac.link.Link]#
- class pystac.extensions.version.ItemVersionExtension(item: pystac.item.Item)[source]#
Bases:
pystac.extensions.version.VersionExtension[pystac.item.Item]A concrete implementation of
VersionExtensionon anItemthat extends the properties of the Item to include properties defined in the Versioning Indicators Extension.This class should generally not be instantiated directly. Instead, call
VersionExtension.ext()on anItemto extend it.- item: pystac.item.Item#
- links: List[pystac.link.Link]#
- class pystac.extensions.version.VersionExtension(obj: pystac.stac_object.STACObject)[source]#
Bases:
Generic[pystac.extensions.version.T],pystac.extensions.base.PropertiesExtension,pystac.extensions.base.ExtensionManagementMixin[Union[pystac.collection.Collection,pystac.item.Item]]An abstract class that can be used to extend the properties of an
ItemorCollectionwith properties from the Versioning Indicators Extension. This class is generic over the type of STAC Object to be extended (e.g.Item,Collection).To create a concrete instance of
VersionExtension, use theVersionExtension.ext()method. For example:>>> item: pystac.Item = ... >>> version_ext = VersionExtension.ext(item)
- apply(version: str, deprecated: Optional[bool] = None, latest: Optional[pystac.extensions.version.T] = None, predecessor: Optional[pystac.extensions.version.T] = None, successor: Optional[pystac.extensions.version.T] = None) None[source]#
Applies version extension properties to the extended
ItemorCollection.- Parameters
version – The version string for the item.
deprecated – Optional flag set to
Trueif an Item is deprecated with the potential to be removed. Defaults toFalseif not present.latest – Item representing the latest (e.g., current) version.
predecessor – Item representing the resource containing the predecessor version in the version history.
successor – Item representing the resource containing the successor version
history. (in the version) –
- property deprecated: Optional[bool]#
Get or sets whether the item is deprecated.
A value of
Truespecifies that the Collection or Item is deprecated with the potential to be removed. It should be transitioned out of usage as soon as possible and users should refrain from using it in new projects. A link with relation typelatest-versionSHOULD be added to the links and MUST refer to the resource that can be used instead.
- classmethod ext(obj: pystac.extensions.version.T, add_if_missing: bool = False) pystac.extensions.version.VersionExtension[pystac.extensions.version.T][source]#
Extends the given STAC Object with properties from the Versioning Indicators Extension.
This extension can be applied to instances of
ItemorCollection.- Raises
pystac.ExtensionTypeError – If an invalid object type is passed.
- property latest: Optional[pystac.extensions.version.T]#
Gets or sets the
Linkto theItemrepresenting the most recent version.
- property predecessor: Optional[pystac.extensions.version.T]#
Gets or sets the
Linkto theItemrepresenting the resource containing the predecessor version in the version history.
- property successor: Optional[pystac.extensions.version.T]#
Gets or sets the
Linkto theItemrepresenting the resource containing the successor version in the version history.
- property version: str#
Get or sets a version string of the
Itemorpystac.Collection.
- class pystac.extensions.version.VersionExtensionHooks[source]#
Bases:
pystac.extensions.hooks.ExtensionHooks- prev_extension_ids = {'version'}#
- schema_uri = 'https://stac-extensions.github.io/version/v1.0.0/schema.json'#
- stac_object_types = {STACObjectType.COLLECTION, STACObjectType.ITEM}#
- class pystac.extensions.version.VersionRelType(value)[source]#
Bases:
pystac.utils.StringEnumA list of rel types defined in the Version Extension.
See the Version Extension Relation types documentation for details.
- LATEST = 'latest-version'#
Indicates a link pointing to a resource containing the latest version.
- PREDECESSOR = 'predecessor-version'#
Indicates a link pointing to a resource containing the predecessor version in the version history.
- SUCCESSOR = 'successor-version'#
Indicates a link pointing to a resource containing the successor version in the version history.