From 1f962dfc38b63db52ccacc79e6f25382ea6425da Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Mon, 25 Oct 2021 12:41:06 +0200 Subject: [PATCH] Clarify save_result #288 --- CHANGELOG.md | 3 ++- save_result.json | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aee7d9c7..d84647e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - `aggregate_temporal_period`: Clarified which dimension labels are present in the returned data cube. [#274](https://github.com/Open-EO/openeo-processes/issues/274) -- `ard_surface_reflectance`: has been categorized as "optical" instead of "sar". +- `ard_surface_reflectance`: The process has been categorized as "optical" instead of "sar". +- `save_result`: Clarify how the process works in the different contexts its used in (e.g. synchronous processing, secondary web service). [#288](https://github.com/Open-EO/openeo-processes/issues/288) ## [1.1.0] - 2021-06-29 diff --git a/save_result.json b/save_result.json index 72ecfaae..a06765a6 100644 --- a/save_result.json +++ b/save_result.json @@ -1,7 +1,7 @@ { "id": "save_result", - "summary": "Save processed data to storage", - "description": "Saves processed data to the server-side user workspace of the authenticated user. This process aims to be compatible with GDAL/OGR formats and options. STAC-compatible metadata should be stored with the processed data.\n\nCalling this process may be rejected by back-ends in the context of secondary web services.", + "summary": "Save processed data", + "description": "Saves the processed data to the corresponding medium that is relevant for the context this processes is applied in:\n\n* For **batch jobs** the data is stored in the server-side user workspace of the authenticated user.\n* For **synchronous processing** the data is directly sent to the client.\n* For secondary web services the behavior depends on the service type. Usually, the data is directly provided to the secondary web service, but calling this process may also be rejected by some service types.\n\nThis process aims to be compatible with GDAL/OGR formats and options. STAC-compatible metadata should be stored with the processed data.", "categories": [ "cubes", "export" @@ -9,7 +9,7 @@ "parameters": [ { "name": "data", - "description": "The data to save.", + "description": "The data to output.", "schema": [ { "type": "object", @@ -23,7 +23,7 @@ }, { "name": "format", - "description": "The file format to save to. It must be one of the values that the server reports as supported output file formats, which usually correspond to the short GDAL/OGR codes. If the format is not suitable for storing the underlying data structure, a `FormatUnsuitable` exception will be thrown. This parameter is *case insensitive*.", + "description": "The file format to use. It must be one of the values that the server reports as supported output file formats, which usually correspond to the short GDAL/OGR codes. If the format is not suitable for storing the underlying data structure, a `FormatUnsuitable` exception will be thrown. This parameter is *case insensitive*.", "schema": { "type": "string", "subtype": "output-format"