We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://docs.openeo.cloud/workspaces/#workspace-providers suggests to use this ugly workaround for export_workspaces
export_workspaces
result = collection.save_result().process( "export_workspace", arguments={"workspace": WORKSPACE_NAME, "merge": None}, data=THIS )
But that doesn't work anymore in client 0.39.0, where it should be (more user friendly):
result = collection.save_result().export_workspace(workspace=WORKSPACE_NAME)
The text was updated successfully, but these errors were encountered:
actually, the suggested pattern works again since 0.39.1, but it should be avoided in doc I think
related refs:
StacResource.process
save_result
Sorry, something went wrong.
No branches or pull requests
https://docs.openeo.cloud/workspaces/#workspace-providers suggests to use this ugly workaround for
export_workspaces
But that doesn't work anymore in client 0.39.0, where it should be (more user friendly):
The text was updated successfully, but these errors were encountered: