Skip to content

Commit 3a04029

Browse files
committed
2 parents bfb2cd5 + 7a44955 commit 3a04029

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

docs/index.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,14 @@ In this example, we'll compute the enhanced vegetation index (EVI)::
6161
evi_cube.download("out.geotiff",format="GeoTIFF")
6262

6363

64+
Some results take a longer time to compute, in that case, the 'download' method used above may result in a timeout.
65+
To prevent that, it is also possible to use a 'batch' job. An easy way to run a batch job and downloading the result is:
66+
67+
>>> evi_cube.execute_batch("out.geotiff",out_format="GeoTIFF")
68+
69+
This method will wait until the result is generated, which may take quite a long time. Use the batch job API if you want to
70+
manage your jobs directly.
71+
6472
Example: Applying a mask
6573
________________________
6674

openeo/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.0.9a1'
1+
__version__ = '0.1.0a1'

0 commit comments

Comments
 (0)