Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Latest commit

 

History

History
215 lines (184 loc) · 3.86 KB

meter.md

File metadata and controls

215 lines (184 loc) · 3.86 KB

List of metered parking lots

GET /v2/parking/lots/meter.{format}

Description

This method returns list of metered parking lots across campus.

Summary

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

Notes

  • Any value can be null

Sources

Parameters

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

Examples

GET /v2/parking/lots/meter.{format}

Response

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

Output

JSON

{
  "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
    }
  ]
}