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

Latest commit

 

History

History
208 lines (177 loc) · 3.77 KB

constructionsites.md

File metadata and controls

208 lines (177 loc) · 3.77 KB

List of construction sites

GET /v2/poi/constructionsites.{format}

Description

This method returns list of construction sites across campus.

Summary

Name Value Name Value
Request Protocol GET Requires API Key Yes
Method ID 1879 Enabled Yes
Service Name poi Service ID 349
Information Steward Campus Map Team Data Type CSV
Update Frequency Upon pull request Cache Time 0 seconds

Notes

  • Any value can be null

Sources

Parameters

GET /v2/poi/constructionsites.{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/poi/constructionsites.{format}

Response

Field Name Type Value Description
name string Name of the location
description string Location 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":811554,
    "timestamp":1453158035,
    "status":200,
    "message":"Request successful",
    "method_id":1889,
    "method":{
      
    }
  },
  "data":[
    {
      "name":"Needles Hall Expansion",
      "description":"An addition of 38,000 gross square feet of office and meeting space to the existing building.",
      "note":null,
      "latitude":43.470117058891,
      "longitude":-80.543861093073
    },
    {
      "name":"Science Teaching Complex",
      "description":null,
      "note":null,
      "latitude":43.47052512034,
      "longitude":-80.54339265232
    },
    {
      "name":"Federation Hall Expansion",
      "description":null,
      "note":null,
      "latitude":43.473291217367,
      "longitude":-80.548426198192
    },
    {
      "name":"Schlegel-University of Waterloo Research Institute for Aging (RIA)",
      "description":null,
      "note":null,
      "latitude":43.481022864069,
      "longitude":-80.549409813317
    },
    {
      "name":"Conrad Grebel University College - Academic Building Expansion",
      "description":null,
      "note":null,
      "latitude":43.466210751403,
      "longitude":-80.544980485367
    }
  ]
}