|
| 1 | + |
| 2 | +import urllib2 |
| 3 | +import json |
| 4 | + |
| 5 | +from google.appengine.api import users |
| 6 | +from google.appengine.runtime.apiproxy_errors import CapabilityDisabledError |
| 7 | + |
| 8 | +from flask import request, render_template, flash, url_for, redirect, Blueprint, json, jsonify |
| 9 | + |
| 10 | +from flask_cache import Cache |
| 11 | + |
| 12 | + |
| 13 | + |
| 14 | +from application.decorators import login_required, admin_required |
| 15 | +from application.forms import ExampleForm |
| 16 | +from application.models import ExampleModel |
| 17 | + |
| 18 | +from application import app |
| 19 | + |
| 20 | +url = 'http://data.police.uk/api/' |
| 21 | + |
| 22 | +def getData(): |
| 23 | + global url |
| 24 | + #json object |
| 25 | + data = urllib2.urlopen(url) |
| 26 | + |
| 27 | + #for testing purposes |
| 28 | + #print json.load(data) |
| 29 | + |
| 30 | + url = 'http://data.police.uk/api/' |
| 31 | + return data |
| 32 | + |
| 33 | +def getCategories(): |
| 34 | + global url |
| 35 | + url += 'crime-categories?date=2011-08' |
| 36 | + return getData() |
| 37 | + |
| 38 | +#Neighbourhoods must be lower case and the white spaces replaced with '-' |
| 39 | +def getNeighbourhoodsData(county): |
| 40 | + global url |
| 41 | + url += county + '/neighbourhoods' |
| 42 | + return getData() |
| 43 | + |
| 44 | +def getBoundaryData(county, nhood): |
| 45 | + global url |
| 46 | + url += county + '/' + getNeighbourhoodID(county, nhood) + '/boundary' |
| 47 | + return getData() |
| 48 | + |
| 49 | +def getNeighbourhoodID(county, nhood): |
| 50 | + global url |
| 51 | + url+= county + '/neighbourhoods' |
| 52 | + data = json.load(urllib2.urlopen(url)) |
| 53 | + |
| 54 | + for j in xrange(0, len(data)): |
| 55 | + if data[j]["name"] == nhood: |
| 56 | + return data[j]["id"] |
| 57 | +#date must be in the format yyyy-mm |
| 58 | +def getCrimesData(category, lat, lng, date): |
| 59 | + global url |
| 60 | + url+='crimes-street/' + category + '?lat=' + str(lat) + '&lng=' + str(lng) + '&date=' + date |
| 61 | + return getData() |
| 62 | + |
| 63 | +def getCrimesInAreaData(category, latArr, lngArr, date): |
| 64 | + global url |
| 65 | + url+='crimes-street/' + category + '?poly=' |
| 66 | + for j in xrange(0, len(latArr)): |
| 67 | + url+=str(latArr[j]) + ',' + str(lngArr[j]) + ':' |
| 68 | + url = url[:-1] |
| 69 | + url+='&date=' + date |
| 70 | + return getData() |
| 71 | + |
| 72 | + |
| 73 | +#getCategories() |
| 74 | +#getNeighbourhoods('hampshire') |
| 75 | +#getBoundary('hampshire', 'Fair Oak') |
| 76 | +#getCrimes('all-crimes', 52.629729, -1.131592, '2014-09') |
| 77 | +#getCrimesInArea('all-crimes', [52.268, 52.794, 52.130], [0.543, 0.238, 0.478], '2014-09') |
0 commit comments