From b35ca01715243485606a01c8c702cebb573ad09e Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Wed, 3 Jul 2019 18:49:47 +0200 Subject: [PATCH] Replaced outdated `process_description` with `description`. --- examples/evi/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/evi/README.md b/examples/evi/README.md index efb8e308..e5760ce3 100644 --- a/examples/evi/README.md +++ b/examples/evi/README.md @@ -16,7 +16,7 @@ This process graph assumes the dataset is called `Sentinel-2`. The temporal exte { "dc": { "process_id": "load_collection", - "process_description": "Loading the data; The order of the specified bands is important for the following reduce operation.", + "description": "Loading the data; The order of the specified bands is important for the following reduce operation.", "arguments": { "id": "Sentinel-2", "spatial_extent": { @@ -31,7 +31,7 @@ This process graph assumes the dataset is called `Sentinel-2`. The temporal exte }, "evi": { "process_id": "reduce", - "process_description": "Compute the EVI. Formula: 2.5 * (NIR - RED) / (1 + NIR + 6*RED + -7.5*BLUE)", + "description": "Compute the EVI. Formula: 2.5 * (NIR - RED) / (1 + NIR + 6*RED + -7.5*BLUE)", "arguments": { "data": {"from_node": "dc"}, "dimension": "spectral", @@ -101,7 +101,7 @@ This process graph assumes the dataset is called `Sentinel-2`. The temporal exte }, "mintime": { "process_id": "reduce", - "process_description": "Compute a minimum time composite by reducing the temporal dimension", + "description": "Compute a minimum time composite by reducing the temporal dimension", "arguments": { "data": {"from_node": "evi"}, "dimension": "temporal",