You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openapi.yaml
+18-19Lines changed: 18 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -117,7 +117,7 @@ info:
117
117
If a URL should be publicly available to everyone, it can simply a user-specific URL, e.g. `https://openeo.example/processes/john_doe/ndvi`.
118
118
For resources that should only be accessible to a certain group of user, a signed URL could be given, e.g. `https://openeo.example/processes/81zjh1tc2pt52gbx/ndvi`.
119
119
120
-
Generally, it is RECOMMENDED adding descriptive titles (propertty `title`) and media type information (propertty `type`) for a better user experience.
120
+
Generally, it is RECOMMENDED adding descriptive titles (property `title`) and media type information (property `type`) for a better user experience.
121
121
122
122
## Error Handling
123
123
@@ -193,7 +193,7 @@ info:
193
193
194
194
## Temporal data
195
195
196
-
Date, time, time intervals, and durations are formatted based on ISO 8601 or its profile [RFC 3339](https://www.rfc-editor.org/rfc/rfc3339.html) whenever there is an appropriate encoding available in the standard. All temporal data are specified based on the Gregorian calendar.
196
+
Date, time, time intervals, and durations are formatted based on [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) or its profile [RFC 3339](https://www.rfc-editor.org/rfc/rfc3339.html) whenever there is an appropriate encoding available in the standard. All temporal data are specified based on the Gregorian calendar.
197
197
198
198
# Authentication
199
199
@@ -493,7 +493,7 @@ info:
493
493
494
494
### Full example for an EVI computation
495
495
496
-
Deriving minimum EVI (Enhanced Vegetation Index) measurements over pixel time series of Sentinel2 imagery. The main process graph in blue, child process graphs in yellow:
496
+
Deriving minimum EVI (Enhanced Vegetation Index) measurements over pixel time series of Sentinel-2 imagery. The main process graph in blue, child process graphs in yellow:
497
497
498
498

499
499
@@ -507,7 +507,7 @@ info:
507
507
508
508
2. A more dynamic way of processing and accessing data is to create a **secondary web service**. They allow web-based access using different protocols such as [OGC WMS](http://www.opengeospatial.org/standards/wms), [OGC WCS](http://www.opengeospatial.org/standards/wcs), [OGC API - Features](https://www.ogc.org/standards/ogcapi-features) or [XYZ tiles](https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames). Some protocols such as the OGC WMS or XYZ tiles allow users to change the viewing extent or level of detail (zoom level). Therefore, computations often run *on demand* so that the requested data is calculated during the request. Back-ends should make sure to cache processed data to avoid additional/high costs and reduce waiting times for the user.
509
509
510
-
3. Processes can also be executed **on-demand** (i.e. synchronously). Results are delivered with the request itself and no job is created. Only lightweight computations, for example previews, should be executed using this approach as timeouts are to be expected for [long-polling HTTP requests](https://www.pubnub.com/blog/2014-12-01-http-long-polling/).
510
+
3. Processes can also be executed **on-demand** (i.e. synchronously). Results are delivered with the request itself and no job is created. Only lightweight computations, for example previews, should be executed using this approach as timeouts are to be expected for [long-polling HTTP requests](https://www.pubnub.com/guides/long-polling/).
511
511
512
512
### Validation
513
513
@@ -671,7 +671,7 @@ paths:
671
671
api_version:
672
672
type: string
673
673
description: >-
674
-
Version number of the openEO specification this back-end
674
+
Version number of the openEO specification the back-end
675
675
implements.
676
676
enum:
677
677
- 1.2.0
@@ -1003,7 +1003,7 @@ paths:
1003
1003
path. Make sure to correctly handle leading/trailing slashes.
1004
1004
3. Send a request to the new URI.
1005
1005
A. On success: Detect the most suitable API instance/version (see above)
1006
-
and read the [capabilites](#tag/Capabilities/operation/capabilities)
1006
+
and read the [capabilities](#tag/Capabilities/operation/capabilities)
1007
1007
from there.
1008
1008
B. On failure: Directly try to read the capabilities from the original URI
1009
1009
given by the user.
@@ -1247,7 +1247,7 @@ paths:
1247
1247
all OGC API standards and the STAC API specification. openEO adds relatively
1248
1248
broadly defined conformance classes, especially for the extensions.
1249
1249
Otherwise, the implemented functionality can usually be retrieved from
1250
-
the [capabilties](#tag/Capabilities/operation/capabilities) in openEO.
1250
+
the [capabilities](#tag/Capabilities/operation/capabilities) in openEO.
1251
1251
1252
1252
The general openEO conformance class is `https://api.openeo.org/1.2.0`.
1253
1253
See the individual openEO API extensions for their conformance classes.
0 commit comments