Skip to content

Commit a30d3bd

Browse files
change as_polgyon to as_geometry in job splitter
1 parent 832f97b commit a30d3bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

openeo/extra/job_management/_job_splitting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def _split_bounding_box(to_cover: BBoxDict, tile_size: float) -> List[Polygon]:
233233
south=south + row * tile_size,
234234
east=min(west + (col + 1) * tile_size, east),
235235
north=min(south + (row + 1) * tile_size, north),
236-
).as_polygon()
236+
).as_geometry()
237237
)
238238
return tiles
239239

0 commit comments

Comments
 (0)