Skip to content

Commit

Permalink
Replaced outdated process_description with description.
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Jul 3, 2019
1 parent 2848d70 commit b35ca01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/evi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -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",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit b35ca01

Please sign in to comment.