Hello,
I’m interested to use Landsat 8 images level 2 (surface reflectance).
The problem is that it seems like this data collection is not available in WMS:
for collection in DataCollection.get_available_collections():
print(collection)
...
DataCollection.LANDSAT8
When I print information about this data collection seems like only level 1 is available :
DataCollection.LANDSAT8
>>> <DataCollection.LANDSAT8: DataCollectionDefinition(
api_id: L8L1C
catalog_id: landsat-8-l1c
wfs_id: DSS6
service_url: :https://services-uswest2.sentinel-hub.com](https://services-uswest2.sentinel-hub.com/)
collection_type: Landsat 8
processing_level: L1C bands: ('B01', 'B02', 'B03', 'B04', 'B05', 'B06', 'B07', 'B08', 'B09', 'B10', 'B11')
is_timeless: False
has_cloud_coverage: True )>
In additon to that, when I try to create new Landsat 8 level 2 layer, it seems like not all the bands are available:
How can I access this data collection?
Best regards
Reut