GET Mountain Passes

Returns all mountain passes

Request Information

https://511.idaho.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
MaxGradePercentage

Max grade in percentage

string
Direction

Mountain pass direction

string
CameraId

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

string
WtaId

Wta Id associated with mountain pass

string

Response Formats

JSON

Sample:
[
  {
    "Id": 3030102,
    "Latitude": 42.6296,
    "Longitude": -111.91772329999999,
    "Name": "Fish Creek",
    "Roadway": "US 30",
    "MaxElevation": "6109",
    "MaxGradePercentage": "5",
    "Direction": "3 miles east of the Lava Hot Springs area",
    "CameraId": "43|2",
    "WtaId": "191"
  },
  {
    "Id": 3030101,
    "Latitude": 45.844929,
    "Longitude": -116.237867,
    "Name": "White Bird Hill",
    "Roadway": "US 95",
    "MaxElevation": "4383",
    "MaxGradePercentage": "7",
    "Direction": "6 miles north of the White Bird area",
    "CameraId": null,
    "WtaId": "165"
  }
]

XML

Sample:
<MountainPassesList>
	<MountainPasses>
		<Id>3030102</Id>
		<Latitude>42.6296</Latitude>
		<Longitude>-111.91772329999999</Longitude>
		<Name>Fish Creek</Name>
		<Roadway>US 30</Roadway>
		<MaxElevation>6109</MaxElevation>
		<MaxGradePercentage>5</MaxGradePercentage>
		<Direction>3 miles east of the Lava Hot Springs area</Direction>
		<CameraId>43|2</CameraId>
		<WtaId>191</WtaId>
	</MountainPasses>
	<MountainPasses>
		<Id>3030101</Id>
		<Latitude>45.844929</Latitude>
		<Longitude>-116.237867</Longitude>
		<Name>White Bird Hill</Name>
		<Roadway>US 95</Roadway>
		<MaxElevation>4383</MaxElevation>
		<MaxGradePercentage>7</MaxGradePercentage>
		<Direction>6 miles north of the White Bird area</Direction>
		<CameraId/>
		<WtaId>165</WtaId>
	</MountainPasses>
</MountainPassesList>