-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update
extent
object based on the discussion in #168
Resolves #168 The text in Core does not have examples for the more complete cases that extensions may use. This would be how an example from the discussion in the issue would be represented: ``` { "extent":{ "spatial": { "bbox": [[180, -56, -180, 83]], "crs":"http://www.opengis.net/def/crs/OGC/1.3/CRS84" }, "temporal":{ "interval": [["2015-06-23T00:00:00Z", "2015-06-24T00:00:00Z"], ["2015-06-23T00:00:00Z", "2015-06-24T00:00:00Z"]], "trs": "http://www.opengis.net/def/uom/ISO-8601/0/Gregorian" }, "thermal":{ "range": [0, 273.15], "uom": "http://www.opengis.net/def/uom/SI/kelvin" } } } ```
- Loading branch information
Showing
8 changed files
with
393 additions
and
99 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
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
14 changes: 14 additions & 0 deletions
14
core/standard/requirements/core/PER_fc-md-extent-extensions.adoc
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,14 @@ | ||
[width="90%",cols="2,6a"] | ||
|=== | ||
|Permission {counter:per-id} |/per/core/fc-md-extent-extensions + | ||
|
||
The Core only specifies requirements for spatial and temporal extents. | ||
However, the `extent` object MAY be extended with additional members | ||
to represent other extents, for example, thermal or pressure ranges. | ||
|
||
The Core only supports spatial extents in WGS84 longitude/latitude and | ||
temporal extents in the Gregorian calendar (these are the only enum values in | ||
link:https://raw.githubusercontent.com/opengeospatial/WFS_FES/master/core/openapi/schemas/[extent.yaml]). | ||
Extension to the Core MAY add additional reference systems to the | ||
`extent` object. | ||
|=== |
12 changes: 12 additions & 0 deletions
12
core/standard/requirements/core/REC_fc-md-extent-single.adoc
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,12 @@ | ||
[[fc_md_extent_single]] | ||
[width="90%",cols="2,6a"] | ||
|=== | ||
|Recommendation {counter:rec-id} |/rec/core/fc-md-extent-single + | ||
|
||
While the spatial and temporal extents support multiple bounding boxes | ||
(`bbox` array) and time intervals (`interval` array) for advanced use cases, | ||
implementations SHOULD provide only a single bounding box or time interval | ||
unless the use of multiple values is important for the use of the dataset | ||
and agents using the API are known to be support multiple bounding boxes | ||
or time intervals. | ||
|=== |
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
Oops, something went wrong.