We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5f3b47 commit 7be7402Copy full SHA for 7be7402
1 file changed
docs/index.rst
@@ -61,6 +61,14 @@ In this example, we'll compute the enhanced vegetation index (EVI)::
61
evi_cube.download("out.geotiff",format="GeoTIFF")
62
63
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
72
Example: Applying a mask
73
________________________
74
0 commit comments