Hint

You can run this notebook in a live session with Binder.

Overview#

This overview demonstrates the basic capabilities of eodag in a simple worflow, whose steps are introduced in more details in the following pages.

The workflow consists of the following steps:

  1. Configure: eodag is configured to use the provider PEPS (registering to PEPS is required to download the products, see how to register to a provider)

  2. Search: Sentinel 2 Level-1C products (i.e. images) are searched for over an area in France in March 2021.

  3. Crunch: Two dedicated filters - that we call crunchers - provided by eodag are used to select products with a cloud cover less than 30% and covering the city of Toulouse (France).

  4. Serialize: Save the filtered products as a GeoJSON file.

  5. Download: The products are downloaded.

  6. Post-process: eodag-cube is an external package that is used to access a product’s data, it is going to be used to calculate the NDVI of a product.

Configure#

Let us first create a workspace directory to save products downloaded during this workflow.

[1]:
import os

workspace = 'eodag_workspace_overview'
if not os.path.isdir(workspace):
    os.mkdir(workspace)

Now we will configure eodag to be able to download using PEPS. For that we need to fill our credentials:

  • in the user configuration file ~/.config/eodag.eodag.yml:

peps:
    priority: # Lower value means lower priority (Default: 1)
    search:  # Search parameters configuration
    download:
        extract:  # whether to extract the downloaded products (true or false, Default: true).
        output_dir: # where to store downloaded products.
        dl_url_params:  # additional parameters to pass over to the download url as an url parameter
        delete_archive: # whether to delete the downloaded archives (true or false, Default: true).
    auth:
        credentials:
            username: PLEASE_CHANGE_ME
            password: PLEASE_CHANGE_ME
  • or using environment variables: (we also set output_dir, the directory where to store downloaded products)

[2]:
os.environ["EODAG__PEPS__AUTH__CREDENTIALS__USERNAME"] = "PLEASE_CHANGE_ME"
os.environ["EODAG__PEPS__AUTH__CREDENTIALS__PASSWORD"] = "PLEASE_CHANGE_ME"
os.environ["EODAG__PEPS__DOWNLOAD__OUTPUT_DIR"] = os.path.abspath(workspace)

Logging is then activated with the setup_logging() method. It’s a useful way to see what eodag does under the hood, e.g. requesting the provider, adapting the response. It’s also useful to detect when things go wrong, and, if relevant, create an issue on GitHub with the log messages.

[3]:
from eodag import setup_logging
setup_logging(2)  # 3 for even more information

The next object to import, and this is certainly one of the most important objects provided by eodag, is the EODataAccessGateway class. The creation of a single instance of this class is enough in a workflow, it is going to take care of configuring the providers, exposing the products configured off-the-shelf by eodag, and many more things.

[4]:
from eodag import EODataAccessGateway
dag = EODataAccessGateway()
2025-01-28 16:47:27,412 eodag.config                     [INFO    ] Loading user configuration from: /home/sylvain/.config/eodag/eodag.yml
2025-01-28 16:47:27,464 eodag.core                       [INFO    ] Locations configuration loaded from /home/sylvain/.config/eodag/locations.yml

eodag stores an internal catalog of products it makes easily accessible. Sentinel 2 Level-1C products are designated with the identifier S2_MSI_L1C. It’s possible to check that it’s made available by PEPS with the method list_product_types() which returns a list of dictionnaries, each one of them containing general metadata (eodag’s product type ID, platform, sensor type, etc.).

[5]:
[product_type["ID"] for product_type in dag.list_product_types("peps")]
[5]:
['S1_SAR_GRD', 'S1_SAR_OCN', 'S1_SAR_SLC', 'S2_MSI_L1C']

The method available_providers() allows to get the list of providers that make available a given product.

[6]:
dag.available_providers("S2_MSI_L1C")
[6]:
['peps',
 'aws_eos',
 'cop_dataspace',
 'creodias',
 'creodias_s3',
 'dedl',
 'earth_search',
 'earth_search_gcs',
 'geodes',
 'sara',
 'usgs',
 'wekeo_main']

Finally PEPS is declared as the preferred provider, which means that eodag will look for products with this provider (all the providers are pre-configured).

[7]:
dag.set_preferred_provider("peps")

Crunch#

Crunching as defined in eodag is a way to filter the products contained in a SearchResult object. Several crunchers/filters are available (e.g. FilterProperty to filter products products according to one of their properties). They can be called by passing the cruncher object to SearchResult.crunch() or by running a dedicated method (e.g. SearchResult.filter_property()). The following example shows how to filter products to keep only those whose cloud cover is less than 30%.

[16]:
filtered_products = all_products.filter_property(cloudCover=30, operator="lt")
2025-01-28 16:47:32,133 eodag.crunch.property            [INFO    ] Finished filtering products. 17 resulting products
[17]:
print(f"Got now {len(filtered_products)} products after filtering by cloud coverage.")
Got now 17 products after filtering by cloud coverage.

Now, we use another cruncher to filter products containing a given geometry (Toulouse, France). We will use these products in Post-process.

[18]:
toulouse_bbox=[1.435, 43.587, 1.458, 43.602]
filtered_products = filtered_products.filter_overlap(geometry=toulouse_bbox, contains=True)
2025-01-28 16:47:32,156 eodag.crunch.overlap             [INFO    ] Finished filtering products. 1 resulting products
[19]:
print(f"Got now {len(filtered_products)} products after filtering by geometry.")
Got now 1 products after filtering by geometry.

Serialize#

The method serialize() allows to save a SearchResult as a GeoJSON file.

[20]:
filtered_prods_filepath = dag.serialize(filtered_products, filename=os.path.join(workspace, "filtered_products.geojson"))

This method can come in handy to save the state of a search and restore it later with deserialize_and_register().

[21]:
restored_filtered_prods = dag.deserialize_and_register(filtered_prods_filepath)
restored_filtered_prods
[21]:
SearchResult (1)
0  EOProduct(id=S2B_MSIL1C_20210609T104619_N0500_R051_T31TCJ_20230314T070018, provider=peps)
EOProduct
provider: 'peps',
product_type: 'S2_MSI_L1C',
properties["id"]: 'S2B_MSIL1C_20210609T104619_N0500_R051_T31TCJ_20230314T070018',
properties["startTimeFromAscendingNode"]: '2021-06-09T10:46:19.024Z',
properties["completionTimeFromAscendingNode"]: '2021-06-09T10:46:19.024Z',
properties: (57){
eodag_product_type: 'S2_MSI_L1C',
eodag_provider: 'peps',
eodag_search_intersection: { 'type': 'Polygon' , 'coordinates': [[[1.888683 , 43.259392 ] , [1.0 , 43.245502 ] , [1.0 , 44.0 ] , [1.874862 , 44.0 ] , [1.888683 , 43.259392 ] ] ] },
abstract: None,
instrument: 'MSI',
platform: 'S2ST',
platformSerialIdentifier: 'S2B',
processingLevel: 'LEVEL1C',
keywords: 'MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1C,SAFE',
sensorType: 'OPTICAL',
license: 'other',
missionStartDate: '2015-06-23T00:00:00Z',
title: 'S2B_MSIL1C_20210609T104619_N0500_R051_T31TCJ_20230314T070018',
_id: 'S2_MSI_L1C',
productType: 'S2MSI1C',
uid: '2ab5e025-9f13-5a93-ab9d-c4bd9537185f',
keyword: { 'bce097de57d1ab7': { 'name': 'Europe' , 'normalized': 'europe' , 'type': 'continent' , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=Europe' } , '936bcbcf5c43fbd': { 'name': 'France' , 'normalized': 'france' , 'type': 'country' , 'parentHash': 'bce097de57d1ab7' , 'value': 100 , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=France' } , 'fa018f4f7b20706': { 'name': 'Midi-Pyrénées' , 'normalized': 'midi-pyrenees' , 'type': 'region' , 'parentHash': '936bcbcf5c43fbd' , 'value': 94.44 , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=Midi-Pyr%C3%A9n%C3%A9es' } , '638f34fab02f39d': { 'name': 'Haute-Garonne' , 'normalized': 'haute-garonne' , 'type': 'state' , 'parentHash': 'fa018f4f7b20706' , 'value': 34.48 , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=Haute-Garonne' } , 'c6319beaa1b6cdd': { 'name': 'Tarn-et-Garonne' , 'normalized': 'tarn-et-garonne' , 'type': 'state' , 'parentHash': 'fa018f4f7b20706' , 'value': 25.69 , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=Tarn-et-Garonne' } , 'd8c2acfe38c3ff4': { 'name': 'Gers' , 'normalized': 'gers' , 'type': 'state' , 'parentHash': 'fa018f4f7b20706' , 'value': 23.77 , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=Gers' } , 'e966218f208fcca': { 'name': 'Tarn' , 'normalized': 'tarn' , 'type': 'state' , 'parentHash': 'fa018f4f7b20706' , 'value': 9.33 , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=Tarn' } , 'db06f1d6088ec4f': { 'name': 'Aquitaine' , 'normalized': 'aquitaine' , 'type': 'region' , 'parentHash': '936bcbcf5c43fbd' , 'value': 4.11 , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=Aquitaine' } , '4b1f69fd85f2eff': { 'name': 'Lot-et-Garonne' , 'normalized': 'lot-et-garonne' , 'type': 'state' , 'parentHash': 'db06f1d6088ec4f' , 'value': 4.2 , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=Lot-et-Garonne' } , '455ae3d75f982e8': { 'name': 'Languedoc-Roussillon' , 'normalized': 'languedoc-roussillon' , 'type': 'region' , 'parentHash': '936bcbcf5c43fbd' , 'value': 1.39 , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=Languedoc-Roussillon' } , '70db2751c3c6c3d': { 'name': 'Aude' , 'normalized': 'aude' , 'type': 'state' , 'parentHash': '455ae3d75f982e8' , 'value': 1.39 , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=Aude' } , 'b9f5eec8dcb2cb5': { 'name': 'Ariège' , 'normalized': 'ariege' , 'type': 'state' , 'parentHash': 'fa018f4f7b20706' , 'value': 0.6 , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=Ari%C3%A8ge' } , 'a0ee1300cfffc4d': { 'name': 'Hautes-Pyrénées' , 'normalized': 'hautes-pyrenees' , 'type': 'state' , 'parentHash': 'fa018f4f7b20706' , 'value': 0.34 , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=Hautes-Pyr%C3%A9n%C3%A9es' } , 'bdd4a95707b0459': { 'name': 'Lot' , 'normalized': 'lot' , 'type': 'state' , 'parentHash': 'fa018f4f7b20706' , 'value': 0.13 , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=Lot' } , 'a0e4a10aa754ab4': { 'name': 'Northern' , 'type': 'location' , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=Northern' } , 'b4de51064131332': { 'name': 'Spring' , 'type': 'season' , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=Spring' } , '45038f3c2322ea3': { 'name': 'S2ST' , 'type': 'collection' , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=S2ST' } , '6219554ecf5905c': { 'name': 'S2MSI1C' , 'type': 'productType' , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=S2MSI1C' } , '44b15c0a6e62129': { 'name': 'LEVEL1C' , 'type': 'processingLevel' , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=LEVEL1C' } , '56bf819406cae6b': { 'name': 's2B' , 'type': 'platform' , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=s2B' } , 'f841767ba5c92d4': { 'name': 'msi' , 'type': 'instrument' , 'parentHash': '56bf819406cae6b' , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=msi' } , 'aca78422271631a': { 'name': 'INS-NOBS' , 'type': 'sensorMode' , 'parentHash': 'f841767ba5c92d4' , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=INS-NOBS' } , 'e8f96b7c46c0d54': { 'name': 'Descending' , 'type': 'orbitDirection' , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=Descending' } , 'a56dfb1210d361d': { 'name': 'Nominal' , 'type': 'realtime' , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=Nominal' } , 'd8c5d929951e445': { 'name': '2021' , 'type': 'year' , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=2021' } , '0a141a9679890c7': { 'name': 'June' , 'type': 'month' , 'parentHash': 'd8c5d929951e445' , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=June' } , '97457abe200b231': { 'name': '09' , 'type': 'day' , 'parentHash': '0a141a9679890c7' , 'href': 'https://peps.cnes.fr/resto/api/collections/S2ST/search.json?&lang=en&q=09' } },
resolution: None,
organisationName: 'ESA',
publicationDate: '2023-07-02T16:05:24.024Z',
parentIdentifier: 'urn:ogc:def:EOP:ESA::SENTINEL-2:',
orbitNumber: 22242,
orbitDirection: 'descending',
cloudCover: 27.264086715040804,
snowCover: None,
creationDate: '2023-04-24T06:15:02.066Z',
modificationDate: '2023-07-02T16:05:24.024Z',
sensorMode: 'INS-NOBS',
startTimeFromAscendingNode: '2021-06-09T10:46:19.024Z',
completionTimeFromAscendingNode: '2021-06-09T10:46:19.024Z',
quicklook: 'https://peps.cnes.fr/quicklook/2021/06/09/S2B/S2B_MSIL1C_20210609T104619_N0500_R051_T31TCJ_20230314T070018_quicklook.jpg',
downloadLink: 'https://peps.cnes.fr/resto/collections/S2ST/2ab5e025-9f13-5a93-ab9d-c4bd9537185f/download',
tileIdentifier: '31TCJ',
storageStatus: 'ONLINE',
thumbnail: None,
resourceSize: 846711514,
resourceChecksum: '2e56de79fb6854576e7f2d9611acb497',
visible: 1,
newVersion: None,
isNrt: 0,
realtime: 'Nominal',
relativeOrbitNumber: 51,
useDatalake: 1,
bucket: 'sentinel2-l1c',
prefix: '31/T/CJ/2021/06/09',
s2TakeId: 'GS2B_20210609T104619_022242_N05.00',
bareSoil: None,
highProbaClouds: None,
mediumProbaClouds: None,
lowProbaClouds: None,
snowIce: None,
vegetation: None,
water: None,
isRefined: 1,
nrtResource: '/data/NRT/2021/06/09/S2B/S2B_MSIL1C_20210609T104619_N0500_R051_T31TCJ_20230314T070018.zip',
storage: { 'mode': 'tier2' },
id: 'S2B_MSIL1C_20210609T104619_N0500_R051_T31TCJ_20230314T070018',
}
assets: (0)
geometry

Download#

Before downloading any product, it can be useful to have a quick look at them. EO products usually offer a quicklook image, a low resolution by-product of the original data. An EOProduct has a get_quicklook method that takes care of downloading the quicklook image and returns its path. matplotlib can be used here to display the images collected.

[22]:
import matplotlib.pyplot as plt
import matplotlib.image as mpimg

quicklooks_dir = os.path.join(workspace, "quicklooks")
if not os.path.isdir(quicklooks_dir):
    os.mkdir(quicklooks_dir)

fig = plt.figure(figsize=(10, 8))
for i, product in enumerate(filtered_products, start=1):

    # This line takes care of downloading the quicklook
    quicklook_path = product.get_quicklook(output_dir=quicklooks_dir)

    img = mpimg.imread(quicklook_path)
    ax = fig.add_subplot(1, 3, i)
    ax.set_title(i)
    plt.imshow(img)
plt.tight_layout()
2025-01-28 16:47:32,677 eodag.product                    [INFO    ] Download recorded in /home/sylvain/workspace/eodag/docs/notebooks/api_user_guide/eodag_workspace_overview/quicklooks/S2B_MSIL1C_20210609T104619_N0500_R051_T31TCJ_20230314T070018
../../_images/notebooks_api_user_guide_1_overview_48_2.png

EOProducts can either be downloaded individually with download() or together with download_all() from a SearchResult. The last image is going to be downloaded, it is cloud-free and has no no-data pixel.

[23]:
product_to_download = filtered_products[0]
product_path = dag.download(product_to_download)
product_path
2025-01-28 16:47:32,895 eodag.download.base              [INFO    ] Download url: https://peps.cnes.fr/resto/collections/S2ST/2ab5e025-9f13-5a93-ab9d-c4bd9537185f/download
2025-01-28 16:48:26,095 eodag.download.base              [INFO    ] Extraction activated
2025-01-28 16:48:27,057 eodag.download.base              [INFO    ] Deleting archive S2B_MSIL1C_20210609T104619_N0500_R051_T31TCJ_20230314T070018.zip
2025-01-28 16:48:27,175 eodag.product                    [INFO    ] Remote location of the product is still available through its 'remote_location' property: https://peps.cnes.fr/resto/collections/S2ST/2ab5e025-9f13-5a93-ab9d-c4bd9537185f/download
[23]:
'/home/sylvain/workspace/eodag/docs/notebooks/api_user_guide/eodag_workspace_overview/S2B_MSIL1C_20210609T104619_N0500_R051_T31TCJ_20230314T070018'

The location property of this product now points to a local path.

Post-process#

Now the product is downloaded, it can be post-processed with softwares such as Sen2Cor or SNAP.

At some point eodag had some capabilities to directly post-process a product, i.e. to access its data. These capabilities, which relied on rasterio, have been ported to the Python package eodag-cube to avoid the heavy dependencies associated with GDAL in particular. Installing this package is enough to benefit from its capabilities, it is going to extend EOProduct with a to_xarray() method which returns a product’s data as a XarrayDict, dictionnary of xarray.Dataset.

The capabilities of eodag-cube are used hereafter to compute the NDVI of the downloaded product over a sub-extent of the original product (this is actually Toulouse, France).

Warning

eodag-cube needs to be installed to run correcly the following code.

[24]:
import rasterio
import warnings

# mute rasterio warnings
warnings.filterwarnings("ignore", category=rasterio.errors.NotGeoreferencedWarning)

xd = product_to_download.to_xarray()
xd
2025-01-28 16:48:27,188 eodag.download.base              [INFO    ] Product already present on this platform. Identifier: /home/sylvain/workspace/eodag/docs/notebooks/api_user_guide/eodag_workspace_overview/S2B_MSIL1C_20210609T104619_N0500_R051_T31TCJ_20230314T070018
2025-01-28 16:48:27,189 eodag.product                    [INFO    ] Remote location of the product is still available through its 'remote_location' property: https://peps.cnes.fr/resto/collections/S2ST/2ab5e025-9f13-5a93-ab9d-c4bd9537185f/download
[24]:
XarrayDict (46)
'B01':  xarray.Dataset (band: 1, x: 1830, y: 1830)  Size: 13MB
<xarray.Dataset> Size: 13MB
Dimensions:      (band: 1, x: 1830, y: 1830)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 15kB 3e+05 3.001e+05 ... 4.097e+05 4.098e+05
  * y            (y) float64 15kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 13MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'B02':  xarray.Dataset (band: 1, x: 10980, y: 10980)  Size: 482MB
<xarray.Dataset> Size: 482MB
Dimensions:      (band: 1, x: 10980, y: 10980)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 88kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 88kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 482MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'B03':  xarray.Dataset (band: 1, x: 10980, y: 10980)  Size: 482MB
<xarray.Dataset> Size: 482MB
Dimensions:      (band: 1, x: 10980, y: 10980)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 88kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 88kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 482MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'B04':  xarray.Dataset (band: 1, x: 10980, y: 10980)  Size: 482MB
<xarray.Dataset> Size: 482MB
Dimensions:      (band: 1, x: 10980, y: 10980)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 88kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 88kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 482MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'B05':  xarray.Dataset (band: 1, x: 5490, y: 5490)  Size: 121MB
<xarray.Dataset> Size: 121MB
Dimensions:      (band: 1, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 121MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'B06':  xarray.Dataset (band: 1, x: 5490, y: 5490)  Size: 121MB
<xarray.Dataset> Size: 121MB
Dimensions:      (band: 1, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 121MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'B07':  xarray.Dataset (band: 1, x: 5490, y: 5490)  Size: 121MB
<xarray.Dataset> Size: 121MB
Dimensions:      (band: 1, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 121MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'B08':  xarray.Dataset (band: 1, x: 10980, y: 10980)  Size: 482MB
<xarray.Dataset> Size: 482MB
Dimensions:      (band: 1, x: 10980, y: 10980)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 88kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 88kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 482MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'B09':  xarray.Dataset (band: 1, x: 1830, y: 1830)  Size: 13MB
<xarray.Dataset> Size: 13MB
Dimensions:      (band: 1, x: 1830, y: 1830)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 15kB 3e+05 3.001e+05 ... 4.097e+05 4.098e+05
  * y            (y) float64 15kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 13MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'B10':  xarray.Dataset (band: 1, x: 1830, y: 1830)  Size: 13MB
<xarray.Dataset> Size: 13MB
Dimensions:      (band: 1, x: 1830, y: 1830)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 15kB 3e+05 3.001e+05 ... 4.097e+05 4.098e+05
  * y            (y) float64 15kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 13MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'B11':  xarray.Dataset (band: 1, x: 5490, y: 5490)  Size: 121MB
<xarray.Dataset> Size: 121MB
Dimensions:      (band: 1, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 121MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'B12':  xarray.Dataset (band: 1, x: 5490, y: 5490)  Size: 121MB
<xarray.Dataset> Size: 121MB
Dimensions:      (band: 1, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 121MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'B8A':  xarray.Dataset (band: 1, x: 5490, y: 5490)  Size: 121MB
<xarray.Dataset> Size: 121MB
Dimensions:      (band: 1, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 121MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_CLASSI_B00':  xarray.Dataset (band: 3, x: 1830, y: 1830)  Size: 40MB
<xarray.Dataset> Size: 40MB
Dimensions:      (band: 3, x: 1830, y: 1830)
Coordinates:
  * band         (band) int64 24B 1 2 3
  * x            (x) float64 15kB 3e+05 3.001e+05 ... 4.097e+05 4.098e+05
  * y            (y) float64 15kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 40MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_DETFOO_B01':  xarray.Dataset (band: 1, x: 1830, y: 1830)  Size: 13MB
<xarray.Dataset> Size: 13MB
Dimensions:      (band: 1, x: 1830, y: 1830)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 15kB 3e+05 3.001e+05 ... 4.097e+05 4.098e+05
  * y            (y) float64 15kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 13MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_DETFOO_B02':  xarray.Dataset (band: 1, x: 10980, y: 10980)  Size: 482MB
<xarray.Dataset> Size: 482MB
Dimensions:      (band: 1, x: 10980, y: 10980)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 88kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 88kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 482MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_DETFOO_B03':  xarray.Dataset (band: 1, x: 10980, y: 10980)  Size: 482MB
<xarray.Dataset> Size: 482MB
Dimensions:      (band: 1, x: 10980, y: 10980)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 88kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 88kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 482MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_DETFOO_B04':  xarray.Dataset (band: 1, x: 10980, y: 10980)  Size: 482MB
<xarray.Dataset> Size: 482MB
Dimensions:      (band: 1, x: 10980, y: 10980)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 88kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 88kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 482MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_DETFOO_B05':  xarray.Dataset (band: 1, x: 5490, y: 5490)  Size: 121MB
<xarray.Dataset> Size: 121MB
Dimensions:      (band: 1, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 121MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_DETFOO_B06':  xarray.Dataset (band: 1, x: 5490, y: 5490)  Size: 121MB
<xarray.Dataset> Size: 121MB
Dimensions:      (band: 1, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 121MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_DETFOO_B07':  xarray.Dataset (band: 1, x: 5490, y: 5490)  Size: 121MB
<xarray.Dataset> Size: 121MB
Dimensions:      (band: 1, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 121MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_DETFOO_B08':  xarray.Dataset (band: 1, x: 10980, y: 10980)  Size: 482MB
<xarray.Dataset> Size: 482MB
Dimensions:      (band: 1, x: 10980, y: 10980)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 88kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 88kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 482MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_DETFOO_B09':  xarray.Dataset (band: 1, x: 1830, y: 1830)  Size: 13MB
<xarray.Dataset> Size: 13MB
Dimensions:      (band: 1, x: 1830, y: 1830)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 15kB 3e+05 3.001e+05 ... 4.097e+05 4.098e+05
  * y            (y) float64 15kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 13MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_DETFOO_B10':  xarray.Dataset (band: 1, x: 1830, y: 1830)  Size: 13MB
<xarray.Dataset> Size: 13MB
Dimensions:      (band: 1, x: 1830, y: 1830)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 15kB 3e+05 3.001e+05 ... 4.097e+05 4.098e+05
  * y            (y) float64 15kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 13MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_DETFOO_B11':  xarray.Dataset (band: 1, x: 5490, y: 5490)  Size: 121MB
<xarray.Dataset> Size: 121MB
Dimensions:      (band: 1, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 121MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_DETFOO_B12':  xarray.Dataset (band: 1, x: 5490, y: 5490)  Size: 121MB
<xarray.Dataset> Size: 121MB
Dimensions:      (band: 1, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 121MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_DETFOO_B8A':  xarray.Dataset (band: 1, x: 5490, y: 5490)  Size: 121MB
<xarray.Dataset> Size: 121MB
Dimensions:      (band: 1, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 8B 1
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 121MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_QUALIT_B01':  xarray.Dataset (band: 8, x: 1830, y: 1830)  Size: 107MB
<xarray.Dataset> Size: 107MB
Dimensions:      (band: 8, x: 1830, y: 1830)
Coordinates:
  * band         (band) int64 64B 1 2 3 4 5 6 7 8
  * x            (x) float64 15kB 3e+05 3.001e+05 ... 4.097e+05 4.098e+05
  * y            (y) float64 15kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 107MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_QUALIT_B02':  xarray.Dataset (band: 8, x: 10980, y: 10980)  Size: 4GB
<xarray.Dataset> Size: 4GB
Dimensions:      (band: 8, x: 10980, y: 10980)
Coordinates:
  * band         (band) int64 64B 1 2 3 4 5 6 7 8
  * x            (x) float64 88kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 88kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 4GB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_QUALIT_B03':  xarray.Dataset (band: 8, x: 10980, y: 10980)  Size: 4GB
<xarray.Dataset> Size: 4GB
Dimensions:      (band: 8, x: 10980, y: 10980)
Coordinates:
  * band         (band) int64 64B 1 2 3 4 5 6 7 8
  * x            (x) float64 88kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 88kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 4GB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_QUALIT_B04':  xarray.Dataset (band: 8, x: 10980, y: 10980)  Size: 4GB
<xarray.Dataset> Size: 4GB
Dimensions:      (band: 8, x: 10980, y: 10980)
Coordinates:
  * band         (band) int64 64B 1 2 3 4 5 6 7 8
  * x            (x) float64 88kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 88kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 4GB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_QUALIT_B05':  xarray.Dataset (band: 8, x: 5490, y: 5490)  Size: 965MB
<xarray.Dataset> Size: 965MB
Dimensions:      (band: 8, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 64B 1 2 3 4 5 6 7 8
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 964MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_QUALIT_B06':  xarray.Dataset (band: 8, x: 5490, y: 5490)  Size: 965MB
<xarray.Dataset> Size: 965MB
Dimensions:      (band: 8, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 64B 1 2 3 4 5 6 7 8
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 964MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_QUALIT_B07':  xarray.Dataset (band: 8, x: 5490, y: 5490)  Size: 965MB
<xarray.Dataset> Size: 965MB
Dimensions:      (band: 8, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 64B 1 2 3 4 5 6 7 8
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 964MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_QUALIT_B08':  xarray.Dataset (band: 8, x: 10980, y: 10980)  Size: 4GB
<xarray.Dataset> Size: 4GB
Dimensions:      (band: 8, x: 10980, y: 10980)
Coordinates:
  * band         (band) int64 64B 1 2 3 4 5 6 7 8
  * x            (x) float64 88kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 88kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 4GB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_QUALIT_B09':  xarray.Dataset (band: 8, x: 1830, y: 1830)  Size: 107MB
<xarray.Dataset> Size: 107MB
Dimensions:      (band: 8, x: 1830, y: 1830)
Coordinates:
  * band         (band) int64 64B 1 2 3 4 5 6 7 8
  * x            (x) float64 15kB 3e+05 3.001e+05 ... 4.097e+05 4.098e+05
  * y            (y) float64 15kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 107MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_QUALIT_B10':  xarray.Dataset (band: 8, x: 1830, y: 1830)  Size: 107MB
<xarray.Dataset> Size: 107MB
Dimensions:      (band: 8, x: 1830, y: 1830)
Coordinates:
  * band         (band) int64 64B 1 2 3 4 5 6 7 8
  * x            (x) float64 15kB 3e+05 3.001e+05 ... 4.097e+05 4.098e+05
  * y            (y) float64 15kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 107MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_QUALIT_B11':  xarray.Dataset (band: 8, x: 5490, y: 5490)  Size: 965MB
<xarray.Dataset> Size: 965MB
Dimensions:      (band: 8, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 64B 1 2 3 4 5 6 7 8
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 964MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_QUALIT_B12':  xarray.Dataset (band: 8, x: 5490, y: 5490)  Size: 965MB
<xarray.Dataset> Size: 965MB
Dimensions:      (band: 8, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 64B 1 2 3 4 5 6 7 8
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 964MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'MSK_QUALIT_B8A':  xarray.Dataset (band: 8, x: 5490, y: 5490)  Size: 965MB
<xarray.Dataset> Size: 965MB
Dimensions:      (band: 8, x: 5490, y: 5490)
Coordinates:
  * band         (band) int64 64B 1 2 3 4 5 6 7 8
  * x            (x) float64 44kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 44kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 964MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'PVI':  xarray.Dataset (band: 3, x: 343, y: 343)  Size: 1MB
<xarray.Dataset> Size: 1MB
Dimensions:      (band: 3, x: 343, y: 343)
Coordinates:
  * band         (band) int64 24B 1 2 3
  * x            (x) float64 3kB 3.002e+05 3.005e+05 ... 4.093e+05 4.096e+05
  * y            (y) float64 3kB 4.9e+06 4.9e+06 ... 4.791e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 1MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'TCI':  xarray.Dataset (band: 3, x: 10980, y: 10980)  Size: 1GB
<xarray.Dataset> Size: 1GB
Dimensions:      (band: 3, x: 10980, y: 10980)
Coordinates:
  * band         (band) int64 24B 1 2 3
  * x            (x) float64 88kB 3e+05 3e+05 3e+05 ... 4.098e+05 4.098e+05
  * y            (y) float64 88kB 4.9e+06 4.9e+06 4.9e+06 ... 4.79e+06 4.79e+06
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 1GB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'banner_1.png':  xarray.Dataset (band: 4, x: 294, y: 132)  Size: 624kB
<xarray.Dataset> Size: 624kB
Dimensions:      (band: 4, x: 294, y: 132)
Coordinates:
  * band         (band) int64 32B 1 2 3 4
  * x            (x) float64 2kB 0.5 1.5 2.5 3.5 4.5 ... 290.5 291.5 292.5 293.5
  * y            (y) float64 1kB 0.5 1.5 2.5 3.5 4.5 ... 128.5 129.5 130.5 131.5
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 621kB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'banner_2.png':  xarray.Dataset (band: 4, x: 673, y: 132)  Size: 1MB
<xarray.Dataset> Size: 1MB
Dimensions:      (band: 4, x: 673, y: 132)
Coordinates:
  * band         (band) int64 32B 1 2 3 4
  * x            (x) float64 5kB 0.5 1.5 2.5 3.5 4.5 ... 669.5 670.5 671.5 672.5
  * y            (y) float64 1kB 0.5 1.5 2.5 3.5 4.5 ... 128.5 129.5 130.5 131.5
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 1MB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'banner_3.png':  xarray.Dataset (band: 4, x: 265, y: 132)  Size: 563kB
<xarray.Dataset> Size: 563kB
Dimensions:      (band: 4, x: 265, y: 132)
Coordinates:
  * band         (band) int64 32B 1 2 3 4
  * x            (x) float64 2kB 0.5 1.5 2.5 3.5 4.5 ... 261.5 262.5 263.5 264.5
  * y            (y) float64 1kB 0.5 1.5 2.5 3.5 4.5 ... 128.5 129.5 130.5 131.5
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 560kB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
'star_bg.jpg':  xarray.Dataset (band: 3, x: 120, y: 108)  Size: 157kB
<xarray.Dataset> Size: 157kB
Dimensions:      (band: 3, x: 120, y: 108)
Coordinates:
  * band         (band) int64 24B 1 2 3
  * x            (x) float64 960B 0.5 1.5 2.5 3.5 ... 116.5 117.5 118.5 119.5
  * y            (y) float64 864B 0.5 1.5 2.5 3.5 ... 104.5 105.5 106.5 107.5
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 156kB ...
Attributes: (12/54)
    abstract:                         None
    instrument:                       MSI
    platform:                         S2ST
    platformSerialIdentifier:         S2B
    processingLevel:                  LEVEL1C
    keywords:                         MSI,SENTINEL,SENTINEL2,S2,S2A,S2B,L1,L1...
    ...                               ...
    snowIce:                          None
    vegetation:                       None
    water:                            None
    isRefined:                        1
    nrtResource:                      /data/NRT/2021/06/09/S2B/S2B_MSIL1C_202...
    storage:                          {'mode': 'tier2'}
[25]:
VIR = xd["B04"].rio.clip_box(*toulouse_bbox, crs="EPSG:4326").rio.reproject(dst_crs="EPSG:4326")
NIR = xd["B08"].rio.clip_box(*toulouse_bbox, crs="EPSG:4326").rio.reproject(dst_crs="EPSG:4326")

NDVI = (NIR - VIR) / (NIR + VIR)
NDVI
[25]:
<xarray.Dataset> Size: 126kB
Dimensions:      (x: 216, y: 142, band: 1)
Coordinates:
  * x            (x) float64 2kB 1.435 1.435 1.435 1.435 ... 1.458 1.458 1.458
  * y            (y) float64 1kB 43.6 43.6 43.6 43.6 ... 43.59 43.59 43.59 43.59
  * band         (band) int64 8B 1
    spatial_ref  int64 8B 0
Data variables:
    band_data    (band, y, x) float32 123kB nan nan nan nan ... nan nan nan nan
[26]:
NDVI.band_data.plot(cmap="RdYlGn", center=False)
[26]:
<matplotlib.collections.QuadMesh at 0x7a56aa708350>
../../_images/notebooks_api_user_guide_1_overview_57_1.png
[ ]: