GET Weather Stations
Returns all weather stations.
Request Information
https://az511.com/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 |
CameraSource |
Name of the camera source associated with this weather station. |
string |
CameraSourceId |
Source id of the camera associated with this weather station. |
string |
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 |
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 |
LevelOfGrip |
Level of grip |
string |
MaxWindSpeed |
Maximum wind speed |
string |
LastUpdated |
The date the item's details were last updated in Unix time. More information |
integer |
Response Formats
JSON
[
{
"Id": 1858,
"CameraSource": "AZDOT",
"CameraSourceId": "e005def9-32b6-4b3b-9561-d97873ab6c37",
"Latitude": 34.579783465,
"Longitude": -113.492670501,
"AirTemperature": "96.6",
"SurfaceTemperature": "114.8",
"WindSpeed": "7.2",
"WindDirection": "SW",
"RelativeHumidity": "24",
"LevelOfGrip": "Good",
"MaxWindSpeed": "12.5",
"LastUpdated": 1752253380
},
{
"Id": 1859,
"CameraSource": "AZDOT",
"CameraSourceId": "0068958b-47d1-4562-ac5f-3f96a54802b3",
"Latitude": 35.190623934,
"Longitude": -113.370688619,
"AirTemperature": "87.6",
"SurfaceTemperature": "101.7",
"WindSpeed": "6.9",
"WindDirection": "SW",
"RelativeHumidity": "23",
"LevelOfGrip": "Good",
"MaxWindSpeed": "15.2",
"LastUpdated": 1752253380
}
]
XML
<WeatherStationsList>
<WeatherStations>
<Id>1858</Id>
<CameraSource>AZDOT</CameraSource>
<CameraSourceId>e005def9-32b6-4b3b-9561-d97873ab6c37</CameraSourceId>
<Latitude>34.579783465</Latitude>
<Longitude>-113.492670501</Longitude>
<AirTemperature>96.6</AirTemperature>
<SurfaceTemperature>114.8</SurfaceTemperature>
<WindSpeed>7.2</WindSpeed>
<WindDirection>SW</WindDirection>
<RelativeHumidity>24</RelativeHumidity>
<LevelOfGrip>Good</LevelOfGrip>
<MaxWindSpeed>12.5</MaxWindSpeed>
<LastUpdated>1752253380</LastUpdated>
</WeatherStations>
<WeatherStations>
<Id>1859</Id>
<CameraSource>AZDOT</CameraSource>
<CameraSourceId>0068958b-47d1-4562-ac5f-3f96a54802b3</CameraSourceId>
<Latitude>35.190623934</Latitude>
<Longitude>-113.370688619</Longitude>
<AirTemperature>87.6</AirTemperature>
<SurfaceTemperature>101.7</SurfaceTemperature>
<WindSpeed>6.9</WindSpeed>
<WindDirection>SW</WindDirection>
<RelativeHumidity>23</RelativeHumidity>
<LevelOfGrip>Good</LevelOfGrip>
<MaxWindSpeed>15.2</MaxWindSpeed>
<LastUpdated>1752253380</LastUpdated>
</WeatherStations>
</WeatherStationsList>