Skip to content

Commit

Permalink
fixup! Issue #425 load_stac: support lambda based property filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Aug 9, 2023
1 parent 6409f0a commit a104ef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openeo/rest/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,7 @@ def load_stac(
spatial_extent: Optional[Dict[str, float]] = None,
temporal_extent: Optional[List[Union[str, datetime.datetime, datetime.date]]] = None,
bands: Optional[List[str]] = None,
properties: Optional[dict] = None,
properties: Optional[Dict[str, Union[str, PGNode, Callable]]] = None,
) -> DataCube:
"""
Loads data from a static STAC catalog or a STAC API Collection and returns the data as a processable :py:class:`DataCube`.
Expand Down

0 comments on commit a104ef6

Please sign in to comment.