Skip to content
2 changes: 2 additions & 0 deletions standard/annex-history.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@
|2022-05-25 |0.2.2 |Jon Blower, Gobe Hobona, Chris Little, Maik Riechert |all |final publication edits
|2022-07-14 |0.2.3 |Chris Little, Jon Blower |all |incorporate OGC Architecture Board editorial edits
|2022-09-14 |0.2.4 |Chris Little, Jon Blower |all |incorporate final Public Comments editorial edits
|2023-08-22 |1.0.0 |OGC Staff |Approved OGC Community standard
|2026-02-05 |1.0.1 |Chris Little, Kathi Schleidt |Improved JSON-LD examples
|===
43 changes: 35 additions & 8 deletions standard/clause_specification_text.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ Example of a group describing a vector quantity:
```
where `"WIND_SPEED"` and `"WIND_DIR"` reference existing parameters in a CoverageJSON coverage or collection object by their short identifiers.

Example of a group describing uncertainty of a parameter:
Example of a group describing uncertainty of a parameter by including the mean and standard deviation:

[%unnumbered%]
```json
Expand Down Expand Up @@ -282,9 +282,8 @@ where `"SST_mean"` references the following parameter:
"label" : {
"en": "Sea surface temperature daily mean"
},
"statisticalMeasure": "http://www.uncertml.org/statistics/mean",
"statisticalPeriod": "P1D",
"narrowerThan": ["http://vocab.nerc.ac.uk/standard_name/sea_surface_temperature/"]
"statisticalMeasure": "https://ec.europa.eu/eurostat/statistics-explained/index.php?title=Glossary:Arithmetic_mean",
"narrower": ["http://vocab.nerc.ac.uk/standard_name/sea_surface_temperature/"]
},
"unit" : {
"label": {
Expand All @@ -298,7 +297,7 @@ where `"SST_mean"` references the following parameter:
}
```

and `"SST_stddev"`:
and `"SST_stddev"` references the following parameter:

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

Example:

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.

[%unnumbered%]
```json
{
Expand All @@ -974,7 +975,33 @@ Example:
}
```

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.
Example:

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.

[%unnumbered%]
```json
{
"@context": [ "https://covjson.org/context.jsonld" ],
"type" : "Parameter",
"observedProperty" : {
"label" : {
"en": "Sea surface temperature daily mean"
},
"statisticalMeasure": "https://ec.europa.eu/eurostat/statistics-explained/index.php?title=Glossary:Arithmetic_mean",
"narrower": ["http://vocab.nerc.ac.uk/standard_name/sea_surface_temperature/"]
},
"unit" : {
"label": {
"en": "Kelvin"
},
"symbol": {
"value": "K",
"type": "http://www.opengis.net/def/uom/UCUM/"
}
}
}
```

[[resolving_domain_and_range_urls]]
//## 10. Resolving domain and range URLs
Expand Down
Loading