GET Weather Stations
Returns all weather stations.
Request Information
https://511.idaho.gov/api/v2/get/weatherstations
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
key |
Developer Key |
string |
Required |
format |
Valid values are 'xml' or 'json', default 'json'. |
string |
Optional |
Response Information
Resource Description
Name | Description | Type |
---|---|---|
Id |
A unique identifier. |
integer |
Latitude |
The latitude describing the location. Format: double between -90 and 90. |
double |
Longitude |
The longitude describing the location. Format: double between -180 and 180. |
double |
LastUpdated |
The date the item's details were last updated in Unix time. More information |
integer |
AirTemperature |
The temperature in fahrenheit of the air measured at approximately eight feet above the ground. For example: 42.8 °F |
string |
SurfaceTemperature |
Surface temperature in fahrenheit. For example: 44.6 °F. |
string |
WindSpeed |
Speed of wind |
string |
WindDirection |
Direction of wind flow |
string |
RelativeHumidity |
The ratio in percentage of the existing vapor pressure to the saturation vapor pressure with respect to water at the current temperature. For example: 26 % |
string |
DewpointTemperature |
Temperature at which air is saturated with water vapor. |
string |
SurfaceStatus |
Current surface condition. |
string |
PrecipitationRate |
Rate of precipitation |
string |
Precipitation |
Rain state. |
string |
Precipitation1H |
Precipitation total past 1 hours. |
string |
Precipitation3H |
Precipitation total past 3 hours. |
string |
Precipitation6H |
Precipitation total past 6 hours. |
string |
Precipitation12H |
Precipitation total past 12 hours. |
string |
Precipitation24H |
Precipitation total past 24 hours. |
string |
SurfaceFriction |
Amount of friction available |
string |
Visibility |
Distance of visibility |
string |
AtmosphericPressure |
Atmospheric pressure |
string |
WindDirectionGust |
Direction of wind gust |
string |
WindSpeedGust |
Maximum wind speed. |
string |
SubsurfaceTemperature |
Base temperature. |
string |
IcePercent |
Percentage of Ice |
string |
Status |
|
string |
CameraSource |
|
string |
CameraSourceId |
|
string |
Response Formats
JSON
[
{
"Id": 1007,
"Latitude": 43.5946,
"Longitude": -114.345,
"LastUpdated": 1742925556,
"AirTemperature": 22.1,
"SurfaceTemperature": 29.1,
"WindSpeed": 2.2,
"WindDirection": "SE",
"RelativeHumidity": 87.0,
"DewpointTemperature": 18.9,
"SurfaceStatus": "Wet",
"PrecipitationRate": 0.02,
"Precipitation": "Light Snow",
"Precipitation1H": 0.02,
"Precipitation3H": 0.02,
"Precipitation6H": 0.02,
"Precipitation12H": 0.11,
"Precipitation24H": 0.31,
"SurfaceFriction": "Good",
"Visibility": 1.24,
"AtmosphericPressure": 23.64,
"WindDirectionGust": "S",
"WindSpeedGust": 6.3,
"SubsurfaceTemperature": null,
"IcePercent": "0",
"Status": "Not in use",
"CameraSource": "ITDNET",
"CameraSourceId": "1080"
}
]
XML
<WeatherStationsList>
<WeatherStations>
<Id>1007</Id>
<Latitude>43.5946</Latitude>
<Longitude>-114.345</Longitude>
<LastUpdated>1742925556</LastUpdated>
<AirTemperature>22.1</AirTemperature>
<SurfaceTemperature>29.1</SurfaceTemperature>
<WindSpeed>2.2</WindSpeed>
<WindDirection>SE<WindDirection>
<RelativeHumidity>87.0</RelativeHumidity>
<DewpointTemperature>18.9</DewpointTemperature>
<SurfaceStatus>Wet</SurfaceStatus>
<PrecipitationRate>0.02</PrecipitationRate>
<Precipitation>Light Snow</Precipitation>
<Precipitation1H>0.02<Precipitation1H>
<Precipitation3H>0.02<Precipitation3H>
<Precipitation6H>0.02<Precipitation6H>
<Precipitation12H>0.11<Precipitation12H>
<Precipitation24H>0.31<Precipitation24H>
<SurfaceFriction>Good</SurfaceFriction>
<Visibility>1.24</Visibility>
<AtmosphericPressure>23.64</AtmosphericPressure>
<WindDirectionGust>S</WindDirectionGust>
<WindSpeedGust>6.3</WindSpeedGust>
<SubsurfaceTemperature />
<IcePercent>0</IcePercent>
<Status>Not in use</Status>
<CameraSource>ITDNET</CameraSource>
<CameraSourceId>1080<CameraSourceId>
</WeatherStations>
</WeatherStationsList>