GET Grouped Cameras

Return all group cameras.

Request Information

https://511.idaho.gov/api/v2/get/groupedcameras

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 camera.

string
RoadwayName

The roadway on which this camera 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
Views

Views of a camera.

string
AirTemperature

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

double
SurfaceTemperature

Surface Temperature.

double
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

double
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 currect temperature. For example: 64%

double
WeatherUpdated

Weather last updated.

string

Response Formats

JSON

Sample:
[
	{
		"Id": "100|2",
		"Organization": "ITD",
		"RoadwayName": "SH-75",
		"DirectionOfTravel": "Unknown",
		"Latitude": 43.5946,
		"Longitude": -114.345,
		"Views": [
			{
				"Id": "100.C1--2",
				"Name": "SH-75 Wood River",
				"Url": "https://511.idaho.gov/map/Cctv/100.C1--2",
				"Status": "Enabled",
				"Description": "N/A"
			},
			{
				"Id": "100.C2--2",
				"Name": "SH-75 Wood River",
				"Url": "https://511.idaho.gov/map/Cctv/100.C2--2",
				"Status": "Enabled",
				"Description": "N/A"
			},
			{
				"Id": "100.C3--2",
				"Name": "SH-75 Wood River",
				"Url": "https://511.idaho.gov/map/Cctv/100.C3--2",
				"Status": "Enabled",
				"Description": "N/A"
			}
		],
		"AirTemperature": 19.0,
		"SurfaceTemperature": 36.0,
		"WindSpeed": 0.0,
		"WindDirection": "N",
		"RelativeHumidity": 59.0,
		"WeatherUpdated": "Nov 11 2022, 12:00 PM"
	}
]

XML

Sample:
<GroupedCamerasList>
    <GroupedCameras>
        <Id>100|2</Id>
        <Organization>ITD</Organization>
        <RoadwayName>SH-75</RoadwayName>
        <DirectionOfTravel>Unknown</DirectionOfTravel>
        <Latitude>43.5946</Latitude>
        <Longitude>-114.345</Longitude>
        <Views>
            <View>
                <Id>100.C1--2</Id>
                <Name>SH-75 Wood River</Name>
                <Url>https://511.idaho.gov/map/Cctv/100.C1--2</Url>
                <Status>Enabled</Status>
                <Description>N/A</Description>
            </View>
            <View>
                <Id>100.C2--2</Id>
                <Name>SH-75 Wood River</Name>
                <Url>https://511.idaho.gov/map/Cctv/100.C2--2</Url>
                <Status>Enabled</Status>
                <Description>N/A</Description>
            </View>
            <View>
                <Id>100.C3--2</Id>
                <Name>SH-75 Wood River</Name>
                <Url>https://511.idaho.gov/map/Cctv/100.C3--2</Url>
                <Status>Enabled</Status>
                <Description>N/A</Description>
            </View>
        </Views>
        <AirTemperature>19</AirTemperature>
        <SurfaceTemperature>36</SurfaceTemperature> 
        <WindSpeed>0</WindSpeed>
        <WindDirection>N</WindDirection>
        <RelativeHumidity>59</RelativeHumidity>
        <WeatherUpdated>Nov 11 2022, 12:00 AM</WeatherUpdated>
    </GroupedCameras>
</GroupedCamerasList>