GET /v2/poi/constructionsites.{format}
This method returns list of construction sites across campus.
| 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 |
- Any value can be
null
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
GET /v2/poi/constructionsites.{format}
- https://api.uwaterloo.ca/v2/poi/constructionsites.json
- https://api.uwaterloo.ca/v2/poi/constructionsites.geojson
- https://api.uwaterloo.ca/v2/poi/constructionsites.xml
- https://api.uwaterloo.ca/v2/poi/constructionsites.json?callback=myResponse
| 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
{
"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
}
]
}