addedOutput schema / properties / observations / items / properties / altimeter_inhg / anyOf
Added value: +[
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / properties / observations / items / properties / altimeter_inhg / description
Previous value: -"Altimeter setting in inches of mercury."New value: +"Altimeter setting in inches of mercury, or null when the observation carried no altimeter group (common at stations reporting sea-level pressure only)."
removedOutput schema / properties / observations / items / properties / altimeter_inhg / type
Removed value: -"number"
changedOutput schema / properties / observations / items / properties / ceiling_ft / description
Previous value: -"Ceiling in feet MSL — lowest BKN or OVC layer base. Null when sky is clear."New value: +"Ceiling in feet AGL — the lowest broken, overcast, or obscuration layer. Per FAA AIM 7-1-13 the ceiling is the lowest broken or overcast layer, or the vertical visibility into an obscuration; few and scattered layers are never ceilings. Null when the observation reported no such layer."
addedOutput schema / properties / observations / items / properties / ceiling_type
Added value: +{
+ "anyOf": [
+ {
+ "enum": [
+ "measured",
+ "indefinite"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "How the ceiling height was determined: \"measured\" for a broken or overcast layer base, \"indefinite\" for vertical visibility into an obscuration (an OVX layer). Null exactly when ceiling_ft is null."
+}
changedOutput schema / properties / observations / items / properties / clouds / items / properties / base_ft / description
Previous value: -"Cloud base altitude in feet MSL."New value: +"Cloud base altitude in feet AGL."
changedOutput schema / properties / observations / items / properties / clouds / items / properties / cover / description
Previous value: -"Sky cover code: FEW, SCT, BKN, OVC, SKC, CLR."New value: +"Sky cover code: FEW, SCT, BKN, OVC, SKC, CLR, CAVOK, or OVX. OVX is the decoded form of a VVhhh group — the sky is obscured and the base is the vertical visibility into it, not a cloud bottom."
addedOutput schema / properties / observations / items / properties / dewpoint_c / anyOf
Added value: +[
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / properties / observations / items / properties / dewpoint_c / description
Previous value: -"Dewpoint in degrees Celsius."New value: +"Dewpoint in degrees Celsius. 0 is a real reading; null means the observation carried no dewpoint, so it is unknown."
removedOutput schema / properties / observations / items / properties / dewpoint_c / type
Removed value: -"number"
addedOutput schema / properties / observations / items / properties / present_weather
Added value: +{
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "decoded": {
+ "description": "Plain-English reading of the group (e.g., \"fog\", \"light rain showers\").",
+ "type": "string"
+ },
+ "raw": {
+ "description": "Weather group exactly as encoded (e.g., \"FG\", \"-SHRA\", \"+RA BR\").",
+ "type": "string"
+ }
+ },
+ "required": [
+ "raw",
+ "decoded"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Present weather at the station, or null when the observation carried no weather group (a dry, unobscured day)."
+}
addedOutput schema / properties / observations / items / properties / temp_c / anyOf
Added value: +[
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / properties / observations / items / properties / temp_c / description
Previous value: -"Temperature in degrees Celsius."New value: +"Temperature in degrees Celsius. 0 is a real reading; null means the observation carried no temperature, so it is unknown."
removedOutput schema / properties / observations / items / properties / temp_c / type
Removed value: -"number"
addedOutput schema / properties / observations / items / properties / wind / properties / speed_kt / anyOf
Added value: +[
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / properties / observations / items / properties / wind / properties / speed_kt / description
Previous value: -"Wind speed in knots."New value: +"Wind speed in knots. 0 is calm (a reported 00000KT); null means the observation carried no wind group, so the speed is unknown."
removedOutput schema / properties / observations / items / properties / wind / properties / speed_kt / type
Removed value: -"number"
changedOutput schema / properties / observations / items / required
Previous value: -[
- "station_id",
- "name",
- "lat",
- "lon",
- "elevation_ft",
- "flight_category",
- "metar_type",
- "observed_at",
- "wind",
- "visibility_sm",
- "ceiling_ft",
- "clouds",
- "temp_c",
- "dewpoint_c",
- "altimeter_inhg",
- "raw_metar"
-]New value: +[
+ "station_id",
+ "name",
+ "lat",
+ "lon",
+ "elevation_ft",
+ "flight_category",
+ "metar_type",
+ "observed_at",
+ "wind",
+ "visibility_sm",
+ "ceiling_ft",
+ "ceiling_type",
+ "clouds",
+ "present_weather",
+ "temp_c",
+ "dewpoint_c",
+ "altimeter_inhg",
+ "raw_metar"
+]