Traffic Incidents
Get a list of traffic incidents for a specified area from the MapQuest Traffic API using SQL Server.
- See SQLHTTP easy setup for MapQuest API
- See API Call documentation for parameter values and other information
- Create the stored procedure documented below
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
CREATE PROCEDURE usp_MapQuest_Traffic_Incidents(@BoundingBox varchar(150), @Filters varchar(150), @Response nvarchar(MAX) OUTPUT, @StatusCode int OUTPUT, @StatusDescription nvarchar(MAX) OUTPUT) AS DECLARE @URL nvarchar(MAX) DECLARE @QueryString varchar(MAX) DECLARE @HTTPSessionID uniqueidentifier SET @URL = 'http://www.mapquestapi.com/traffic/v2/incidents' EXEC SQLHTTP.net.QueryStringBuilder @QueryString OUTPUT, 'MapQuest', 'key', '#APIKey', 'boundingBox', @BoundingBox, 'filters', @Filters SET @URL = @URL + @QueryString; EXEC SQLHTTP.net.HTTPSession @HTTPSessionID OUTPUT EXEC SQLHTTP.net.HTTPRequest @HttpSessionID, @URL = @URL, @Method = 'GET', @StatusCode = @StatusCode OUTPUT, @StatusDescription = @StatusDescription OUTPUT, @Response = @Response OUTPUT GO |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
DECLARE @Response nvarchar(MAX) DECLARE @StatusCode int DECLARE @StatusDescription nvarchar(MAX) EXEC usp_MapQuest_Traffic_Incidents @BoundingBox = '39.95,-105.25,39.52,-104.71', -- format: Latitude1,Longitude1,Latitude2,Longitude2 @Filters = 'construction,incidents', -- format: select from predefined list @Response = @Response OUTPUT, @StatusCode = @StatusCode OUTPUT, @StatusDescription = @StatusDescription OUTPUT IF @StatusCode >= 400 EXEC SQLHTTP.net.RaiseHttpError @StatusCode, @StatusDescription, @Response ELSE BEGIN EXEC SQLHTTP.net.Json_To_GlobalTable @Response, 'MapQuestAPITempGlobalTable' SELECT TOP 5 [incidents_fullDesc] AS [Description], [parameterizedDescription_direction] AS [Direction], mqUrl FROM ##MapQuestAPITempGlobalTable WHERE [parameterizedDescription_direction] IS NOT NULL DROP TABLE ##MapQuestAPITempGlobalTable END |
1 2 3 4 5 6 7 8 9 |
Description Direction mqUrl ------------------------------------------------------------------------------------------------ ------------------ ----------------------- Intermittent lane closures due to construction on Ridgegate Pkwy both ways at I-25. both ways http://www.mapquest... Intermittent lane closures due to paving repairs and maintenance work on Fairview... both ways http://www.mapquest... Shoulder closed and restrictions due to construction on Wyecliff Dr both ways fro... both ways http://www.mapquest... Bridge maintenance work on I-25 Northbound from Exit 192 Ridgegate Pkwy to Exit 1... Northbound http://www.mapquest... Two lanes closed due to construction on Lincoln Ave Eastbound from Bellwether Ln to I-25. Eastbound http://www.mapquest... |
IMPORTANT DISCLAIMER
CODE/SQL ON THESE PAGES ARE PROVIDED AS-IS AND ARE AVAILABLE FOR ILLUSTRATIVE PURPOSES ONLY.
USERS ARE REQUIRED TO ABIDE BY THE TERMS AND CONDITIONS FOR USING REFERENCED THIRD PARTY WEBSITES AND/OR APIs FROM THEIR RESPECTIVE WEBSITES. WE DO NOT CONDONE ANY VIOLATION OF THIRD PARTY WEBSITES AND/OR APIs TERMS AND CONDITIONS USING OUR SOFTWARE.
USERS SHALL BE SOLELY RESPONSIBLE AND BE SOLELY LIABLE FOR VIOLATION OF ANY RULES SPECIFIED BY THIRD PARTIES FOR USING THEIR WEBSITES AND/OR APIs, OR INFRINGEMENT OF RIGHTS OF SUCH THIRD PARTIES.