Skip to content

Commit

Permalink
Implemented max_time process.
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Mar 21, 2018
1 parent f10e4aa commit 42d1d0f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions openeo/processRegistry.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,19 @@ ProcessRegistry.processes = {
}
},

max_time: {
process_id: "max_time",
description: "Finds the maximum value of time series for all bands of the input dataset.",
args: {
imagery: {
description: "image or image collection"
}
},
eeCode(args) {
return toImageCollection(args.imagery).max();
}
},

min_time: {
process_id: "min_time",
description: "Finds the minimum value of time series for all bands of the input dataset.",
Expand Down

0 comments on commit 42d1d0f

Please sign in to comment.