GET /v2/parking/lots/meter.{format}
This method returns list of metered parking lots across campus.
Name | Value | Name | Value |
Request Protocol | GET | Requires API Key | Yes |
Method ID | 1907 | Enabled | Yes |
Service Name | parking | Service ID | 293 |
Information Steward | Parking Services | Data Type | CSV |
Update Frequency | Upon pull request | Cache Time | 0 seconds |
- Any value can be
null
GET /v2/parking/lots/meter.{format}
Parameter | Type | Required | Description |
format | input | yes | The format of the output |
key | filter | yes | Your API key |
callback | filter | no | JSONP callback format |
Output Formats
- json
- geojson
- xml
GET /v2/parking/lots/meter.{format}
- https://api.uwaterloo.ca/v2/parking/lots/meter.json
- https://api.uwaterloo.ca/v2/parking/lots/meter.geojson
- https://api.uwaterloo.ca/v2/parking/lots/meter.xml
- https://api.uwaterloo.ca/v2/parking/lots/meter.json?callback=myResponse
Field Name | Type | Value Description |
lot_name | string | Name of the parking lot |
description | string | Parking lot description |
note | string | Any additional notes |
latitude | float | Latitude of the parking lot |
longitude | float | Longitude of the parking lot |
Any value can be null
{
"meta":{
"requests":811534,
"timestamp":1453157403,
"status":200,
"message":"Request successful",
"method_id":1907,
"method":{
}
},
"data":[
{
"name":"OPT",
"description":"Optometry Building (OPT)",
"note":null,
"latitude":43.47584,
"longitude":-80.54485
},
{
"name":"DWE-SCH",
"description":"Douglas Wright Engineering Building (DWE); South Campus Hall (SCH)",
"note":null,
"latitude":43.46966,
"longitude":-80.53972
},
{
"name":"E5-ECH",
"description":"Engineering 5 (E5); East Campus Hall (ECH)",
"note":null,
"latitude":43.47317,
"longitude":-80.53946
},
{
"name":"PAC-SLC",
"description":"Physical Activities Complex (PAC); Student Life Centre (SLC)",
"note":null,
"latitude":43.47164,
"longitude":-80.54618
},
{
"name":"V1-UC",
"description":"Student Village 1 (V1); University Club (UC)",
"note":null,
"latitude":43.47218,
"longitude":-80.54883
},
{
"name":"MKV-V1",
"description":"William Lyon Mackenzie King Village (MKV); Student Village 1 (V1)",
"note":null,
"latitude":43.47111,
"longitude":-80.55115
}
]
}