Note: Please enter all relevant restriction and permit information for every event.

GET Weather Stations

Returns all weather stations.

Request Information

https://az511.com/api/v2/get/weatherstations

URI Parameters

URI Parameters
NameDescriptionTypeAdditional information
key

Developer Key

string

Required

format

Valid values are 'xml' or 'json', default 'json'.

string

Optional

Response Information

Resource Description


Resource Description
NameDescriptionType
Id

A unique identifier.

string
Organization

The name of the organization that provided this weather station.

string
RoadwayName

The roadway on which this weather station is located.

string
DirectionOfTravel

One of the following directions of travel: None, All Directions, Northbound, Eastbound, Southbound, Westbound, Inbound, Outbound, Both Directions.

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
Name

Name of the item

string
Url

The URL to fetch the weather station image.

string
Status

The status of the weather station.

string
Description

The description of the item.

string
AirTemperature

The temperature in fahrenheit of the air measured at approximately eight feet above the ground. For example: 24.1 °F

string
SurfaceTemperature

Surface temperature in fahrenheit. For example: 44.6 °F.

string
WindSpeed

The average wind speed in mile per hour over a pre-determined time interval, as sampled from the wind sensor is located approximately 10 meters (30 feet) above the ground. For example: 2.7 m/h

string
WindDirection

The direction from which the wind is blowing.

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: 64%

string
LevelOfGrip

Level of grip

string
MaxWindSpeed

Maximum wind speed

string
WeatherUpdated

Weather last updated.

string

Response Formats

JSON

Sample:
[
	{
		"Id": "11647.C1--12",
		"Organization": "RWIS",
		"RoadwayName": "I-40",
		"DirectionOfTravel": "Eastbound",
		"Latitude": 35.258592186,
		"Longitude": -112.714447078,
		"Name": "I-40 EB 132.25",
		"Url": "https://az511.gov/map/Cctv/11647.C1--12",
		"Status": "Enabled",
		"Description": "I-40 @ 132.25",
		"AirTemperature": "78.4",
		"SurfaceTemperature": "107.6",
		"WindSpeed": "8.9",
		"WindDirection": "E",
		"RelativeHumidity": "35",
		"LevelOfGrip": "82.0",
		"MaxWindSpeed": "13.0",
		"WeatherUpdated": "Sep 13 2023, 12:13 PM"
	},
	{
		"Id": "11647.C2--12",
		"Organization": "RWIS",
		"RoadwayName": "I-40",
		"DirectionOfTravel": "Westbound",
		"Latitude": 35.258592186,
		"Longitude": -112.714447078,
		"Name": "I-40 WB 132.25",
		"Url": "https://az511.gov/map/Cctv/11647.C2--12",
		"Status": "Enabled",
		"Description": "I-40 @ 132.25",
		"AirTemperature": "78.4",
		"SurfaceTemperature": "107.6",
		"WindSpeed": "8.9",
		"WindDirection": "E",
		"RelativeHumidity": "35",
		"LevelOfGrip": "82.0",
		"MaxWindSpeed": "13.0",
		"WeatherUpdated": "Sep 13 2023, 12:13 PM"
	}
]

XML

Sample:
<WeatherStationsList>
    <WeatherStations>
        <Id>11647.C1--12</Id>
        <Organization>RWIS</Organization>
        <RoadwayName>I-40</RoadwayName>
        <DirectionOfTravel>Eastbound</DirectionOfTravel>
        <Latitude>35.258592186</Latitude>
        <Longitude>-112.714447078</Longitude>
        <Name>I-40 EB 132.25</Name>
        <Url>https://az511.gov/map/Cctv/11647.C1--12</Url>
        <Status>Enabled</Status>
        <Description>I-40 @ 132.25</Description>
        <AirTemperature>78.4</AirTemperature>
        <SurfaceTemperature>107.6</SurfaceTemperature>
        <WindSpeed>8.9</WindSpeed>
        <WindDirection>E</WindDirection>
        <RelativeHumidity>35</RelativeHumidity>
        <LevelOfGrip>82.0</LevelOfGrip>
        <MaxWindSpeed>13.0</MaxWindSpeed>
        <WeatherUpdated>Sep 13 2023, 12:13 PM</WeatherUpdated>
    </WeatherStations>
    <WeatherStations>
        <Id>11647.C2--12</Id>
        <Organization>RWIS</Organization>
        <RoadwayName>I-40</RoadwayName>
        <DirectionOfTravel>Westbound</DirectionOfTravel>
        <Latitude>35.258592186</Latitude>
        <Longitude>-112.714447078</Longitude>
        <Name>I-40 WB 132.25</Name>
        <Url>https://az511.gov/map/Cctv/11647.C2--12</Url>
        <Status>Enabled</Status>
        <Description>I-40 @ 132.25</Description>
        <AirTemperature>78.4</AirTemperature>
        <SurfaceTemperature>107.6</SurfaceTemperature>
        <WindSpeed>8.9</WindSpeed>
        <WindDirection>E</WindDirection>
        <RelativeHumidity>35</RelativeHumidity>
        <LevelOfGrip>82.0</LevelOfGrip>
        <MaxWindSpeed>13.0</MaxWindSpeed>
        <WeatherUpdated>Sep 13 2023, 12:13 PM</WeatherUpdated>
    </WeatherStations>
</WeatherStationsList>