GET Cameras
Returns all cameras.
Request Information
https://511ga.org/api/v2/get/cameras
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 |
| 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 |
One of the following directions where the camera is facing: 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 |
| Location |
The location of the camera. |
string |
| SortOrder |
Given sort order for camera |
integer |
| Views |
Display all camera views. |
object |
| Name |
Name given to the camera |
string |
Response Formats
JSON
[
{
"Id": 186,
"Source": "SKYLINE",
"SourceId": "591",
"Roadway": "SR154",
"Direction": "Westbound",
"Latitude": 33.698067,
"Longitude": -84.44784,
"Location": "GDOT-0054: SR154 W at StantonRd MM 25.7 (Fulton)",
"SortOrder": 0,
"Views": [
{
"Id": 186,
"Url": "https://511ga.org/map/Cctv/186",
"Status": "Enabled",
"Description": "GDOT-0054: SR154 W at StantonRd MM 25.7 (Fulton)",
"SortId": 0
}
],
"Name": "GDOT-CCTV-0054"
},
{
"Id": 187,
"Source": "SKYLINE",
"SourceId": "592",
"Roadway": "SR141",
"Direction": "Southbound",
"Latitude": 33.935137,
"Longitude": -84.256115,
"Location": "GDOT-0596: SR141 S before WintersChapelRd MM 0.6 (Gwinnett)",
"SortOrder": 0,
"Views": [
{
"Id": 187,
"Url": "https://511ga.org/map/Cctv/187",
"Status": "Enabled",
"Description": "GDOT-0596: SR141 S before WintersChapelRd MM 0.6 (Gwinnett)",
"SortId": 0
}
],
"Name": "GDOT-CCTV-0596"
}
]
XML
<CamerasList>
<Cameras>
<Id>186</Id>
<Source>SKYLINE</Source>
<SourceId>591</SourceId>
<Roadway>SR154</Roadway>
<Direction>Westbound</Direction>
<Latitude>33.698067</Latitude>
<Longitude>-84.44784</Longitude>
<Location>GDOT-0054: SR154 W at StantonRd MM 25.7 (Fulton)</Location>
<SortOrder>0</SortOrder>
<Views>
<View>
<Id>186</Id>
<Url>https://511ga.org/map/Cctv/186</Url>
<Status>Enabled</Status>
<Description>GDOT-0054: SR154 W at StantonRd MM 25.7 (Fulton)</Description>
<SortId>0</SortId>
</View>
</Views>
<Name>GDOT-CCTV-0054</Name>
</Cameras>
<Cameras>
<Id>187</Id>
<Source>SKYLINE</Source>
<SourceId>592</SourceId>
<Roadway>SR141</Roadway>
<Direction>Southbound</Direction>
<Latitude>33.935137</Latitude>
<Longitude>-84.256115</Longitude>
<Location>GDOT-0596: SR141 S before WintersChapelRd MM 0.6 (Gwinnett)</Location>
<SortOrder>0</SortOrder>
<Views>
<View>
<Id>187</Id>
<Url>https://511ga.org/map/Cctv/187</Url>
<Status>Enabled</Status>
<Description>GDOT-0596: SR141 S before WintersChapelRd MM 0.6 (Gwinnett)</Description>
<SortId>0</SortId>
</View>
</Views>
<Name>GDOT-CCTV-0596</Name>
</Cameras>
</CamerasList>