Skip to content

Commit 84be157

Browse files
authored
Merge pull request #204 from opengeospatial/chris-little-patch-1
Remove undefined terms in parameterGroup examples
2 parents 6d33001 + a0f583d commit 84be157

2 files changed

Lines changed: 37 additions & 8 deletions

File tree

standard/annex-history.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,6 @@
1212
|2022-05-25 |0.2.2 |Jon Blower, Gobe Hobona, Chris Little, Maik Riechert |all |final publication edits
1313
|2022-07-14 |0.2.3 |Chris Little, Jon Blower |all |incorporate OGC Architecture Board editorial edits
1414
|2022-09-14 |0.2.4 |Chris Little, Jon Blower |all |incorporate final Public Comments editorial edits
15+
|2023-08-22 |1.0.0 |OGC Staff |Approved OGC Community standard
16+
|2026-02-05 |1.0.1 |Chris Little, Kathi Schleidt |Improved JSON-LD examples
1517
|===

standard/clause_specification_text.adoc

Lines changed: 35 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ Example of a group describing a vector quantity:
254254
```
255255
where `"WIND_SPEED"` and `"WIND_DIR"` reference existing parameters in a CoverageJSON coverage or collection object by their short identifiers.
256256

257-
Example of a group describing uncertainty of a parameter:
257+
Example of a group describing uncertainty of a parameter by including the mean and standard deviation:
258258

259259
[%unnumbered%]
260260
```json
@@ -282,9 +282,8 @@ where `"SST_mean"` references the following parameter:
282282
"label" : {
283283
"en": "Sea surface temperature daily mean"
284284
},
285-
"statisticalMeasure": "http://www.uncertml.org/statistics/mean",
286-
"statisticalPeriod": "P1D",
287-
"narrowerThan": ["http://vocab.nerc.ac.uk/standard_name/sea_surface_temperature/"]
285+
"statisticalMeasure": "https://ec.europa.eu/eurostat/statistics-explained/index.php?title=Glossary:Arithmetic_mean",
286+
"narrower": ["http://vocab.nerc.ac.uk/standard_name/sea_surface_temperature/"]
288287
},
289288
"unit" : {
290289
"label": {
@@ -298,7 +297,7 @@ where `"SST_mean"` references the following parameter:
298297
}
299298
```
300299

301-
and `"SST_stddev"`:
300+
and `"SST_stddev"` references the following parameter:
302301

303302
[%unnumbered%]
304303
```json
@@ -308,8 +307,8 @@ and `"SST_stddev"`:
308307
"label" : {
309308
"en": "Sea surface temperature standard deviation of daily mean"
310309
},
311-
"statisticalMeasure": "http://www.uncertml.org/statistics/standard-deviation",
312-
"narrowerThan": ["http://vocab.nerc.ac.uk/standard_name/sea_surface_temperature/"]
310+
"statisticalMeasure": "https://ec.europa.eu/eurostat/statistics-explained/index.php?title=Glossary:Standard_deviation",
311+
"narrower": ["http://vocab.nerc.ac.uk/standard_name/sea_surface_temperature/"]
313312
},
314313
"unit" : {
315314
"label": {
@@ -958,6 +957,8 @@ Note that domain axis values and range values SHOULD NOT be exposed as linked da
958957

959958
Example:
960959

960+
In this example, additional semantics for the registered `dct` prefix are provided by stating that the `"dct:license"` member value in this document is an identifier and not just an unstructured string.
961+
961962
[%unnumbered%]
962963
```json
963964
{
@@ -974,7 +975,33 @@ Example:
974975
}
975976
```
976977

977-
In this example, additional semantics for the registered `dct` prefix are provided by stating that the `"dct:license"` member value in this document is an identifier and not just an unstructured string.
978+
Example:
979+
980+
In this example, extra attributes of the `Parameter` have been declared stating that the parameter is a more specific concept in the context of a more general vocabulary.
981+
982+
[%unnumbered%]
983+
```json
984+
{
985+
"@context": [ "https://covjson.org/context.jsonld" ],
986+
"type" : "Parameter",
987+
"observedProperty" : {
988+
"label" : {
989+
"en": "Sea surface temperature daily mean"
990+
},
991+
"statisticalMeasure": "https://ec.europa.eu/eurostat/statistics-explained/index.php?title=Glossary:Arithmetic_mean",
992+
"narrower": ["http://vocab.nerc.ac.uk/standard_name/sea_surface_temperature/"]
993+
},
994+
"unit" : {
995+
"label": {
996+
"en": "Kelvin"
997+
},
998+
"symbol": {
999+
"value": "K",
1000+
"type": "http://www.opengis.net/def/uom/UCUM/"
1001+
}
1002+
}
1003+
}
1004+
```
9781005

9791006
[[resolving_domain_and_range_urls]]
9801007
//## 10. Resolving domain and range URLs

0 commit comments

Comments
 (0)