You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See the :ref:`API reference below <job-manager-api-reference>` for the full interface.
229
229
230
+
Job Splitting
231
+
============
232
+
233
+
The :py:func:`~openeo.extra.job_management._job_splitting.split_area` helper function allows you to split a large area of interest into smaller areas, which can then be processed as separate jobs.
234
+
A user may have a large spatial extent, in the form of a bounding box or polygon, that exceeds the processing limits of a single job on the backend.
235
+
The results are returned as a :py:class:`geopandas.GeoDataFrame` with one row per tile, which can be used as the starting point for a job database where each row corresponds to a manageable job.
236
+
237
+
The spatial extent can either be split into a regular grid of square tiles, with fixed size and projection, or into a custom grid of variable tiles provided by the user.
238
+
239
+
Example: splitting a bounding box into 10x10 km tiles in EPSG:3857:
240
+
241
+
.. code-block:: python
242
+
243
+
from openeo.extra.job_management import split_area
0 commit comments