GET Message Signs
Returns all VMS.
Request Information
http://ctroads.org/api/v2/get/messagesigns
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. |
string |
Name |
A name assigned to the message sign. It will contain a fairly good description of the location where the message sign is deployed. |
string |
Roadway |
The roadway which this message sign is on. |
string |
DirectionOfTravel |
One of the following directions of travel: None, All Directions, Northbound, Eastbound, Southbound, Westbound, Inbound, Outbound, Both Directions. |
string |
Messages |
An collection of the messages which are currently rotating on the message sign. |
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 |
LastUpdated |
The date the message sign's details were last updated in Unix time. More information |
integer |
Response Formats
JSON
[
{
"Id": "ConnDOT--377",
"Name": "95S Stratford S/O x31",
"Roadway": "I-95",
"DirectionOfTravel": "Southbound",
"Messages": [
"TO RT 7\n16 MILES\n18 MIN"
],
"Latitude": 41.181914,
"Longitude": -73.144044,
"LastUpdated": 1568922299
},
{
"Id": "ConnDOT--360",
"Name": "95N W. Haven S/O x44",
"Roadway": "I-95",
"DirectionOfTravel": "Northbound",
"Messages": [
"NO_MESSAGE"
],
"Latitude": 41.283396,
"Longitude": -72.942336,
"LastUpdated": 1568922299
}
]
XML
<MessageSignsList>
<MessageSigns>
<Id>ConnDOT--377</Id>
<Name>95S Stratford S/O x31</Name>
<Roadway>I-95</Roadway>
<DirectionOfTravel>Southbound</DirectionOfTravel>
<Messages>
<Messages>TO RT 7 16 MILES 18 MIN</Messages>
</Messages>
<Latitude>41.181914</Latitude>
<Longitude>-73.144044</Longitude>
<LastUpdated>1568922299</LastUpdated>
</MessageSigns>
<MessageSigns>
<Id>ConnDOT--360</Id>
<Name>95N W. Haven S/O x44</Name>
<Roadway>I-95</Roadway>
<DirectionOfTravel>Northbound</DirectionOfTravel>
<Messages>
<Messages>NO_MESSAGE</Messages>
</Messages>
<Latitude>41.283396</Latitude>
<Longitude>-72.942336</Longitude>
<LastUpdated>1568922299</LastUpdated>
</MessageSigns>
</MessageSignsList>