eemont.imagecollection.getSTAC

eemont.imagecollection.getSTAC(self)[source]

Gets the STAC of the image collection.

Parameters

self (ee.ImageCollection [this]) – Image Collection to get the STAC from.

Returns

STAC of the image collection.

Return type

dict

Examples

>>> import ee, eemont
>>> ee.Authenticate()
>>> ee.Initialize()
>>> ee.ImageCollection('COPERNICUS/S2_SR').getSTAC()
{'stac_version': '1.0.0-rc.2',
 'type': 'Collection',
 'stac_extensions': ['https://stac-extensions.github.io/eo/v1.0.0/schema.json'],
 'id': 'COPERNICUS/S2_SR',
 'title': 'Sentinel-2 MSI: MultiSpectral Instrument, Level-2A',
 'gee:type': 'image_collection',
 ...}