Skip to content

Commit

Permalink
update apply_vectorcube udf signature Open-EO/openeo-geopyspark-drive…
Browse files Browse the repository at this point in the history
  • Loading branch information
JeroenVerstraelen committed Sep 26, 2024
1 parent 7a634a1 commit 264d3ba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion openeo/udf/udf_signatures.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ def apply_metadata(metadata: CollectionMetadata, context: dict) -> CollectionMet
pass


def apply_vectorcube(geometries: any, cube: xarray.DataArray, context: dict) -> (any, xarray.DataArray):
def apply_vectorcube(
geometries: "geopandas.geodataframe.GeoDataFrame", cube: xarray.DataArray, context: dict
) -> ("geopandas.geodataframe.GeoDataFrame", xarray.DataArray):
"""
Map a vector cube to another vector cube.
Expand Down

0 comments on commit 264d3ba

Please sign in to comment.