GET Variable Speed Signs

Returns all variable speed signs.

Request Information

https://511ga.org/api/v2/get/variablespeedsigns

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.

integer
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
DeviceName

Device Name

string
CurrentSpeed

The current speed displayed on the device.

string
Direction

The direction of the road the device is displaying for.

string

Response Formats

JSON

Sample:
[
	{
		"Id": -118110357,
		"Latitude": 33.771936,
		"Longitude": -84.495072,
		"DeviceName": "GDOT-VSL-001",
		"CurrentSpeed": "65",
		"Direction": "E"
	},
	{
		"Id": -118138280,
		"Latitude": 33.794692,
		"Longitude": -84.487376,
		"DeviceName": "GDOT-VSL-002",
		"CurrentSpeed": "65",
		"Direction": "W"
	},
	{
		"Id": -118143439,
		"Latitude": 33.807852,
		"Longitude": -84.494288,
		"DeviceName": "GDOT-VSL-003",
		"CurrentSpeed": "65",
		"Direction": "W"
	}
]

XML

Sample:
<VariableSpeedSignsList>
    <VariableSpeedSigns>
        <Id>-118110357</Id>
        <Latitude>33.771936</Latitude>
        <Longitude>-84.495072</Longitude>
        <DeviceName>GDOT-VSL-001</DeviceName>
        <CurrentSpeed>65</CurrentSpeed>
        <Direction>E</Direction>
    </VariableSpeedSigns>
    <VariableSpeedSigns>
        <Id>-118138280</Id>
        <Latitude>33.794692</Latitude>
        <Longitude>-84.487376</Longitude>
        <DeviceName>GDOT-VSL-002</DeviceName>
        <CurrentSpeedSign>65</CurrentSpeed>
        <Direction>W</Direction>
    </VariableSpeedSigns>
    <VariableSpeedSigns>
        <Id>-118143439</Id>
        <Latitude>33.807852</Latitude>
        <Longitude>-84.494288</Longitude>
        <DeviceName>GDOT-VSL-003</DeviceName>
        <CurrentSpeed>65</CurrentSpeed>
        <Direction>W</Direction>
    </VariableSpeedSigns>
</VariableSpeedSignsList>