-
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 happy path test for the EDR GeoJSON feature collection.
- Loading branch information
1 parent
90ce008
commit 8a3b259
Showing
2 changed files
with
90 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
{ | ||
"type": "FeatureCollection", | ||
"features": [ | ||
{ | ||
"type": "Feature", | ||
"geometry": { | ||
"type": "Point", | ||
"coordinates": [ | ||
5.1797, | ||
52.0989, | ||
1.9 | ||
] | ||
}, | ||
"properties": { | ||
"name": "DE BILT AWS", | ||
"parameter-name": [ | ||
"air_temperature_1.5_maximum_PT10M", | ||
"dew_point_temperature_1.5_mean_PT1M", | ||
"duration_of_sunshine_2.0_point_PT0S", | ||
"wind_speed_10_mean_PT10M" | ||
] | ||
}, | ||
"id": "06260" | ||
} | ||
], | ||
"parameters": { | ||
"tx_dryb_10": { | ||
"type": "Parameter", | ||
"description": "Temperature, air, maximum, 10", | ||
"unit": { | ||
"label": "degree Celsius", | ||
"symbol": { | ||
"value": "°C", | ||
"type": "http://www.opengis.net/def/uom/UCUM/" | ||
} | ||
}, | ||
"observedProperty": { | ||
"id": "https://vocab.nerc.ac.uk/standard_name/air_temperature", | ||
"label": "Air temperature maximum" | ||
} | ||
}, | ||
"t_dewp_10": { | ||
"type": "Parameter", | ||
"description": "Temperature air dewpoint 10", | ||
"unit": { | ||
"label": "degree Celsius", | ||
"symbol": { | ||
"value": "°C", | ||
"type": "http://www.opengis.net/def/uom/UCUM/" | ||
} | ||
}, | ||
"observedProperty": { | ||
"id": "https://vocab.nerc.ac.uk/standard_name/dew_point_temperature", | ||
"label": "Dew Point Temperature" | ||
} | ||
}, | ||
"sq_10": { | ||
"type": "Parameter", | ||
"description": "Sunshine duration, duration derived from radiation, 10", | ||
"unit": { | ||
"label": "minute", | ||
"symbol": { | ||
"value": "min", | ||
"type": "http://www.opengis.net/def/uom/UCUM/" | ||
} | ||
}, | ||
"observedProperty": { | ||
"id": "https://vocab.nerc.ac.uk/standard_name/duration_of_sunshine", | ||
"label": "Sunshine duration" | ||
} | ||
}, | ||
"ff_10m_10": { | ||
"type": "Parameter", | ||
"description": "Wind, speed, average, converted to 10 metres, 10", | ||
"unit": { | ||
"label": "metre per second", | ||
"symbol": { | ||
"value": "m/s", | ||
"type": "http://www.opengis.net/def/uom/UCUM/" | ||
} | ||
}, | ||
"observedProperty": { | ||
"id": "https://vocab.nerc.ac.uk/standard_name/wind_speed", | ||
"label": "wind_speed_10_mean_PT10M" | ||
} | ||
} | ||
} | ||
} |
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