Skip to content

Commit

Permalink
Add change kw arg
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaraphael committed Oct 30, 2023
1 parent 75b36bb commit 110ffb6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cerulean_cloud/cloud_run_orchestrator/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 110ffb6

Please sign in to comment.