GET Cameras
Returns all cameras.
Request Information
https://hotline.gov.sk.ca/api/v2/get/cameras
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
format |
Valid values are 'xml' or 'json', default 'json'. |
string |
Optional |
Response Information
Resource Description
Name | Description | Type |
---|---|---|
Id |
A unique identifier. |
integer |
Source |
The name of the source that provided this camera. |
string |
SourceId |
The source id of the camera. |
string |
Roadway |
The roadway on which this camera is located. |
string |
Direction |
The wind direction at the time of reported maximum wind speed over the last 10 minutes |
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 |
Location |
The location of the camera. |
string |
SortOrder |
Given sort order for camera |
integer |
Views |
Display all camera views. |
object |
Response Formats
JSON
[ {
"Id": 1,
"Source": "SKDOT",
"SourceId": "5l53izfrw1z",
"Roadway": "Hwy 1",
"Direction": "East",
"Latitude": 50.269695,
"Longitude": -101.985026,
"Location": "Hwy 1 @ Wapella",
"SortOrder": 0,
"Views": [
{
"Id": 1,
"Url": "http://highways.glmobile.com/wapella/pelco.jpg",
"Status": "Disabled",
"Description": "N/A"
}
]
},
{
"Id": 2,
"Source": "SKDOT",
"SourceId": "ALS",
"Roadway": "Hwy 1",
"Direction": "Unknown",
"Latitude": 50.411507,
"Longitude": -103.270394,
"Location": "Hwy 1 @ Wolseley",
"SortOrder": 320,
"Views": [
{
"Id": 2,
"Url": "http://highways.glmobile.com/wolseley/snap_c1.jpg",
"Status": "Disabled",
"Description": "N/A"
}
]
},
]
XML
<CamerasList>
<Cameras>
<Id>1</Id>
<Source>SKDOT</Source>
<SourceId>5l53izfrw1z</SourceId>
<Roadway>Hwy 1</Roadway>
<Direction>East</Direction>
<Latitude>50.269695</Latitude>
<Longitude>-101.985026</Longitude>
<Location>Hwy 1 @ Wapella</Location>
<SortOrder>0</SortOrder>
<Views>
<View>
<Id>1</Id>
<Url>http://highways.glmobile.com/wapella/pelco.jpg</Url>
<Status>Disabled</Status>
<Description>N/A</Description>
</View>
</Views>
</Cameras>
<Cameras>
<Id>2</Id>
<Source>SKDOT</Source>
<SourceId>ALS</SourceId>
<Roadway>Hwy 1</Roadway>
<Direction>Unknown</Direction>
<Latitude>50.411507</Latitude>
<Longitude>-103.270394</Longitude>
<Location>Hwy 1 @ Wolseley</Location>
<SortOrder>320</SortOrder>
<Views>
<View>
<Id>2</Id>
<Url>http://highways.glmobile.com/wolseley/snap_c1.jpg</Url>
<Status>Disabled</Status>
<Description>N/A</Description>
</View>
</Views>
</Cameras>
</CamerasList>