From 110ffb6cc99ed9a117278341173d67eef34af3d7 Mon Sep 17 00:00:00 2001 From: Jona Date: Mon, 30 Oct 2023 11:05:27 -0400 Subject: [PATCH] Add change kw arg --- cerulean_cloud/cloud_run_orchestrator/handler.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cerulean_cloud/cloud_run_orchestrator/handler.py b/cerulean_cloud/cloud_run_orchestrator/handler.py index 5500a578..9ac0e89c 100644 --- a/cerulean_cloud/cloud_run_orchestrator/handler.py +++ b/cerulean_cloud/cloud_run_orchestrator/handler.py @@ -484,7 +484,10 @@ async def _orchestrate( "EPSG:3857" ).buffer(LAND_MASK_BUFFER_M) intersecting_land = gpd.sjoin( - landmask_gdf, buffered_gdf, how="inner", op="intersects" + landmask_gdf, + buffered_gdf, + how="inner", + predicate="intersects", ) if not intersecting_land.empty: feat["properties"]["inf_idx"] = 0