Source code for pystac.extensions

# flake8: noqa


[docs]class ExtensionError(Exception): """An error related to the construction of extensions. """ pass
class Extensions: """Enumerates the IDs of common extensions.""" ASSETS = 'asset' CHECKSUM = 'checksum' COMMONS = 'commons' DATACUBE = 'datacube' DATETIME_RANGE = 'datetime-range' EO = 'eo' LABEL = 'label' POINTCLOUD = 'pointcloud' SAR = 'sar' SCIENTIFIC = 'scientific' SINGLE_FILE_STAC = 'single-file-stac' VIEW = 'view'