GET Cameras
Returns all cameras.
Request Information
https://511.gnb.ca/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 |
lang |
Valid values are 'en' or 'fr', default 'en'. |
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 |
|
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 |
Views |
Views of a camera. |
string |
Response Formats
JSON
[
{
"Id":"1--1",
"Organization":"IBI",
"RoadwayName":"Route 2",
"DirectionOfTravel":"Unknown",
"Latitude":46.8186082,
"Longitude":-67.7337566,
"Name":"Aroostook River Route 2",
"Url":"http://nb511.com/map/Cctv/1--1",
"Status":"Enabled",
"Description":"N/A"
},
{
"Id":"10--1",
"Organization":"IBI",
"RoadwayName":"Route 148",
"DirectionOfTravel":"Unknown",
"Latitude":46.1088333,
"Longitude":-66.6144167,
"Name":"Durham Bridge Route 148 S",
"Url":"http://nb511.com/map/Cctv/10--1",
"Status":"Enabled",
"Description":"N/A"
}
]
XML
<CamerasList>
<Cameras>
<Id>1--1</Id>
<Organization>IBI</Organization>
<RoadwayName>Route 2</RoadwayName>
<DirectionOfTravel>Unknown</DirectionOfTravel>
<Latitude>46.8186082</Latitude>
<Longitude>-67.7337566</Longitude>
<Name>Aroostook River Route 2</Name>
<Url>http://nb511.com/map/Cctv/1--1</Url>
<Status>Enabled</Status>
<Description>N/A</Description>
</Cameras>
<Cameras>
<Id>10--1</Id>
<Organization>IBI</Organization>
<RoadwayName>Route 148</RoadwayName>
<DirectionOfTravel>Unknown</DirectionOfTravel>
<Latitude>46.1088333</Latitude>
<Longitude>-66.6144167</Longitude>
<Name>Durham Bridge Route 148 S</Name>
<Url>http://nb511.com/map/Cctv/10--1</Url>
<Status>Enabled</Status>
<Description>N/A</Description>
</Cameras>
</CamerasList>