-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add optional measurementType field in Parameter, see:
https://docs.ogc.org/is/19-086r6/19-086r6.html#col-measurement_type Not inconsistency in naming of field duration vs period in the description versus the examples. I think period was intended here...
- Loading branch information
1 parent
24685e8
commit c0a91a6
Showing
4 changed files
with
69 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
{ | ||
"Temperature_altitude_above_msl": { | ||
"type": "Parameter", | ||
"description": "Temperature for Specific altitude above MSL", | ||
"unit": { | ||
"label": "K", | ||
"symbol": { | ||
"value": "K", | ||
"type": "http://qudt.org/vocab/unit/K" | ||
} | ||
}, | ||
"observedProperty": { | ||
"id": "http://codes.wmo.int/grib2/codeflag/4.2/_0-0-0", | ||
"label": "Temperature_altitude_above_msl" | ||
}, | ||
"measurementType": { | ||
"method": "instantaneous", | ||
"period": "PT0S" | ||
} | ||
}, | ||
"u-component_of_wind_altitude_above_msl": { | ||
"type": "Parameter", | ||
"description": "u-component of wind for Specific altitude above MSL", | ||
"unit": { | ||
"label": "m/s", | ||
"symbol": { | ||
"value": "m%20s", | ||
"type": "http://qudt.org/vocab/unit/M-PER-SEC.html" | ||
} | ||
}, | ||
"observedProperty": { | ||
"id": "http://codes.wmo.int/grib2/codeflag/4.2/_0-2-2", | ||
"label": "u-component_of_wind_altitude_above_msl" | ||
}, | ||
"measurementType": { | ||
"method": "instantaneous", | ||
"period": "PT0S" | ||
} | ||
}, | ||
"v-component_of_wind_altitude_above_msl": { | ||
"type": "Parameter", | ||
"description": "v-component of wind for Specific altitude above MSL", | ||
"unit": { | ||
"label": "m/s", | ||
"symbol": { | ||
"value": "m%20s", | ||
"type": "http://qudt.org/vocab/unit/M-PER-SEC.html" | ||
} | ||
}, | ||
"observedProperty": { | ||
"id": "http://codes.wmo.int/grib2/codeflag/4.2/_0-2-3", | ||
"label": "v-component_of_wind_altitude_above_msl" | ||
}, | ||
"measurementType": { | ||
"method": "instantaneous", | ||
"period": "PT0S" | ||
} | ||
} | ||
} |
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