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.

integer
CameraId

Camera Identification.

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

string

Response Formats

JSON

Sample:
[
	{
		"Id": 1,
		"CameraId": "548",
		"Latitude": 34.579783465,
		"Longitude": -113.492670501,
		"AirTemperature": "77.7",
		"SurfaceTemperature": "81.0",
		"WindSpeed": "2.0",
		"WindDirection": "W",
		"RelativeHumidity": "15",
		"LevelOfGrip": "Good",
		"MaxWindSpeed": "4.3",
		"LastUpdated": "Oct 8 2024, 8:23 AM"
	},
	{
		"Id": 2,
		"CameraId": "549",
		"Latitude": 35.190623934,
		"Longitude": -113.370688619,
		"AirTemperature": "68.5",
		"SurfaceTemperature": "70.0",
		"WindSpeed": "1.3",
		"WindDirection": "SW",
		"RelativeHumidity": "20",
		"LevelOfGrip": "Good",
		"MaxWindSpeed": "2.7",
		"LastUpdated": "Oct 8 2024, 8:23 AM"
	}
]

XML

Sample:
<WeatherStationsList>
    <WeatherStations>
        <Id>1</Id>
        <CameraId>548</CameraId>
        <Latitude>34.579783465</Latitude>
        <Longitude>-113.492670501</Longitude>
        <AirTemperature>77.7</AirTemperature>
        <SurfaceTemperature>81.0</SurfaceTemperature>
        <WindSpeed>2.0</WindSpeed>
        <WindDirection>W</WindDirection>
        <RelativeHumidity>15</RelativeHumidity>
        <LevelOfGrip>Good</LevelOfGrip>
        <MaxWindSpeed>4.3</MaxWindSpeed>
        <LastUpdated>Oct 8 2024, 8:23 AM</LastUpdated>
    </WeatherStations>
    <WeatherStations>
        <Id>2</Id>
        <CameraId>549</CameraId>
        <Latitude>35.190623934</Latitude>
        <Longitude>-113.370688619</Longitude>
        <AirTemperature>68.5</AirTemperature>
        <SurfaceTemperature>70.0</SurfaceTemperature>
        <WindSpeed>1.3</WindSpeed>
        <WindDirection>SW</WindDirection>
        <RelativeHumidity>20</RelativeHumidity>
        <LevelOfGrip>Good</LevelOfGrip>
        <MaxWindSpeed>2.7</MaxWindSpeed>
        <LastUpdated>Oct 8 2024, 8:23 AM</LastUpdated>
    </WeatherStations>
</WeatherStationsList>