-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/1.0.0-rc.1'
- Loading branch information
Showing
130 changed files
with
6,435 additions
and
3,376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,15 +44,17 @@ deploy: | |
github-token: $GITHUB_TOKEN | ||
local-dir: gh-pages | ||
keep-history: true | ||
committer-from-gh: true | ||
name: openEO CI | ||
email: [email protected] | ||
on: | ||
tags: true | ||
- provider: pages | ||
skip-cleanup: true | ||
github-token: $GITHUB_TOKEN | ||
local-dir: gh-pages | ||
keep-history: true | ||
committer-from-gh: true | ||
name: openEO CI | ||
email: [email protected] | ||
on: | ||
all_branches: true | ||
condition: $TRAVIS_BRANCH =~ ^(master|draft)$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,19 @@ | ||
# openeo-processes | ||
Repository for openEO process descriptions | ||
# openEO processes | ||
|
||
openEO develops interoperable processes for big Earth observation cloud processing. This repository contains the process specifications. Each process is specified in a separate JSON file, which conforms to the corresponding API process schema. | ||
|
||
## Versions | ||
|
||
The openEO processes are currently released as version [**1.0.0 RC1**](http://processes.openeo.org). | ||
|
||
| Version / Branch | Status | openEO API versions | | ||
| ------------------------------------------------------------ | ------------------------- | ------------------- | | ||
| [unreleased / draft](https://processes.openeo.org/draft) | in development | next | | ||
| [**1.0.0 RC1** / master](https://processes.openeo.org) | **latest stable version** | 1.0.x | | ||
| [0.4.2](https://processes.openeo.org/0.4.2/) | legacy version | 0.4.x | | ||
| [0.4.1](https://processes.openeo.org/0.4.1/) | legacy version | 0.4.x | | ||
| [0.4.0](https://processes.openeo.org/0.4.0/) | legacy version | 0.4.x | | ||
|
||
**Note:** https://processes.openeo.org always points to the latest stable version. | ||
|
||
See also the [changelog](CHANGELOG.md) for the changes between versions and the [milestones](https://github.com/Open-EO/openeo-api/milestones) for a rough roadmap based on GitHub issues. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
{ | ||
"id": "add", | ||
"summary": "Addition of two numbers", | ||
"description": "Sums up the two numbers `x` and `y` (*x + y*) and returns the computed sum.\n\nNo-data values are taken into account so that `null` is returned if any element is such a value.\n\nThe computations follow [IEEE Standard 754](https://ieeexplore.ieee.org/document/8766229) whenever the processing environment supports it.", | ||
"categories": [ | ||
"math" | ||
], | ||
"parameters": [ | ||
{ | ||
"name": "x", | ||
"description": "The first summand.", | ||
"schema": { | ||
"type": [ | ||
"number", | ||
"null" | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "y", | ||
"description": "The second summand.", | ||
"schema": { | ||
"type": [ | ||
"number", | ||
"null" | ||
] | ||
} | ||
} | ||
], | ||
"returns": { | ||
"description": "The computed sum of the two numbers.", | ||
"schema": { | ||
"type": [ | ||
"number", | ||
"null" | ||
] | ||
} | ||
}, | ||
"examples": [ | ||
{ | ||
"arguments": { | ||
"x": 5, | ||
"y": 2.5 | ||
}, | ||
"returns": 7.5 | ||
}, | ||
{ | ||
"arguments": { | ||
"x": -2, | ||
"y": -4 | ||
}, | ||
"returns": -6 | ||
}, | ||
{ | ||
"arguments": { | ||
"x": 1, | ||
"y": null | ||
}, | ||
"returns": null | ||
} | ||
], | ||
"links": [ | ||
{ | ||
"rel": "about", | ||
"href": "http://mathworld.wolfram.com/Sum.html", | ||
"title": "Sum explained by Wolfram MathWorld" | ||
}, | ||
{ | ||
"rel": "about", | ||
"href": "https://ieeexplore.ieee.org/document/8766229", | ||
"title": "IEEE Standard 754-2019 for Floating-Point Arithmetic" | ||
} | ||
], | ||
"process_graph": { | ||
"sum": { | ||
"process_id": "sum", | ||
"arguments": { | ||
"data": [ | ||
{ | ||
"from_parameter": "x" | ||
}, | ||
{ | ||
"from_parameter": "y" | ||
} | ||
], | ||
"ignore_nodata": false | ||
}, | ||
"result": true | ||
} | ||
} | ||
} |
Oops, something went wrong.