Hi,
I am new to eo-learn Python SDK, and I am trying to reproduce the most basic examples from the Docker container sentinelhub/eolearn:latest-examples.
Having successfully reproduced the SentinelHubIO.ipynb notebook to some extent, I am stuck with these pretty simple lines for saving the eopatch:
save = SaveTask(‘io_example’, overwrite_permission=2, compress_level=1)
workflow = LinearWorkflow(input_task, add_indices, add_l2a_and_scl, add_dem, save)
result = workflow.execute({
input_task: {‘bbox’: roi_bbox, ‘time_interval’: time_interval},
save: {‘eopatch_folder’: ‘c:/eopatch’}
I can visualize the eopatch, but after executing the lines above no information is saved in the eopatch folder.
What am I missing?
Thank you!