GET Mountain Passes

Returns all mountain passes

Request Information

https://www.udottraffic.utah.gov/api/v2/get/mountainpasses

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
Name

Mountain pass name

string
Roadway

Roadway name

string
MaxElevation

Max elevation

string
MountainPassId

Unique Identifier of the mountain pass.

string
Forecasts

Forecast conditions for different times in the day associated with a specific mountain pass such as dry, wet.

string
WtaSourceId

string
CameraId

Camera Id associated with mountain pass. Format is camera group Id | agency Id

string

Response Formats

JSON

Sample:
[
      {
        "Id": -80485661,
        "Latitude": 38.90504,
        "Longitude": -110.5342,
        "Name": "I-70 Rattlesnake Bench",
        "Roadway": "I-70 Ghost Rocks to Crescent Jct",
        "MaxElevation": "6490",
        "MountainPassId": "115",
        "Forecasts": "Morning;Roads will be dry. No weather-related delays are expected.|Afternoon;Roads will be wet. No weather-related delays are expected.|
          Evening;Roads will be wet. No weather-related delays are expected.",
        "WtaId": "12",
        "CameraId": "10741|2,10847|2",
        "StationName": "I-70 @ Rattlesnake Bench",
        "AirTemp": "62",
        "WindDir": "E",
        "WindSpeed": "10",
        "WindGust": "14",
        "SurfaceTemperature": "61",
        "SurfaceStatus": "Dry",
        "Visibility": "10",
        "SeasonalRouteName": "Route 65",
        "SeasonalClosureTitle": "SR 65 East Canyon",
        "SeasonalInfo": [
            {
                "SeasonalClosureDescription": "Northeast of Salt Lake City - Milepost 3 to 13.2 \nTypical Closure: Mid to Late Nov\nTypical Opening: Early to Mid May",
                "SeasonalClosureStatus": "OPEN"
            },
            {
                "SeasonalClosureDescription": "SR 65 from Henefer to Morgan County line.",
                "SeasonalClosureStatus": "OPEN Daytime Only"
            }
        ]
      }
    ]

XML

Sample:
<MountainPassesList>
    <MountainPasses>
        <Id>-81534100</Id>
        <Latitude>40.95385</Latitude>
        <Longitude>-111.5496</Longitude>
        <Name>SR-65 Hogback Summit</Name>
        <Roadway>SR-65</Roadway>
        <MaxElevation>6270</MaxElevation>
        <MountainPassId>150</MountainPassId>
        <Forecasts />
        <WtaSourceId />
        <CameraId>11761--2</CameraId>
        <SeasonalRouteName>Route 65</SeasonalRouteName>
        <SeasonalClosureTitle>SR 65 East Canyon</SeasonalClosureTitle>
        <SeasonalInfo>
            <SeasonalClosure>
                <SeasonalClosureDescription>Northeast of Salt Lake City - Milepost 3 to 13.2 
Typical Closure: Mid to Late Nov
Typical Opening: Early to Mid May</SeasonalClosureDescription>
                <SeasonalClosureStatus>OPEN</SeasonalClosureStatus>
            </SeasonalClosure>
            <SeasonalClosure>
                <SeasonalClosureDescription>SR 65 from Henefer to Morgan County line.</SeasonalClosureDescription>
                <SeasonalClosureStatus>OPEN Daytime Only</SeasonalClosureStatus>
            </SeasonalClosure>
        </SeasonalInfo>
    </MountainPasses>
</MountainPassesList>