Skip to content

Commit b28c417

Browse files
committed
add German version of observedProperty label
1 parent b40e2de commit b28c417

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

examples/coverages/grid.covjson

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
"observedProperty" : {
3535
"id": "http://vocab.nerc.ac.uk/standard_name/air_temperature/",
3636
"label" : {
37-
"en": "Air temperature"
37+
"en": "Air temperature",
38+
"de": "Lufttemperatur"
3839
},
3940
"description": {
4041
"en": "Air temperature is the bulk temperature of the air, not the surface (skin) temperature."

first-parameter.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ Describing what our data values represent is fairly simple in CoverageJSON and i
99
},
1010
"observedProperty" : {
1111
"label" : {
12-
"en": "Air temperature"
12+
"en": "Air temperature",
13+
"de": "Lufttemperatur"
1314
}
1415
}
1516
}
@@ -18,7 +19,8 @@ There are two pieces of information in here:
1819
- `unit.symbol` is an informal textual notation of the units of measurement, here degrees Celsius.
1920
- `observedProperty` describes the abstract concept that is measured or modelled, independent of what units are used.
2021

21-
If data values have no units, then `unit` would be omitted. `observedProperty.label` however is always required.
22+
If data values have no units, then `unit` would be omitted.
23+
`observedProperty.label` however is always required and is a mapping from [language tags](http://tools.ietf.org/html/bcp47) to strings.
2224

2325
While the above is enough for humans to get a basic understanding, CoverageJSON allows us to describe a parameter in more detail, partially to make it easier for machines to identify related datasets and also to compare them with each other:
2426
```js
@@ -39,7 +41,8 @@ While the above is enough for humans to get a basic understanding, CoverageJSON
3941
"observedProperty" : {
4042
"id": "http://vocab.nerc.ac.uk/standard_name/air_temperature/",
4143
"label" : {
42-
"en": "Air temperature"
44+
"en": "Air temperature",
45+
"de": "Lufttemperatur"
4346
},
4447
"description": {
4548
"en": "Air temperature is the bulk temperature of the air, not the surface (skin) temperature."

first-result.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ Assembling the individual parts to a CoverageJSON Coverage is very straight-forw
4242
"observedProperty" : {
4343
"id": "http://vocab.nerc.ac.uk/standard_name/air_temperature/",
4444
"label" : {
45-
"en": "Air temperature"
45+
"en": "Air temperature",
46+
"de": "Lufttemperatur"
4647
},
4748
"description": {
4849
"en": "Air temperature is the bulk temperature of the air, not the surface (skin) temperature."

0 commit comments

Comments
 (0)