IBM / tensorlakehouse-openeo-driver

IBM's OpenSource reference implementation of the OpenEO driver
Apache License 2.0
8 stars 3 forks source link

allow users to filter STAC items by properties during the execution of load_collection #24

Closed leotizzei closed 2 months ago

leotizzei commented 2 months ago
connection.load_collection(
    "SENTINEL2_L2A",
    ...,
    max_cloud_cover=80,
)

or

connection.load_collection(
    "SENTINEL1_GRD",
    ...,
    properties={
        "relativeOrbitNumber": lambda x: x==116
    },
)

this section describes this functionality