2016-03-07 20:03:09 +08:00
|
|
|
CREATE TYPE cdb_dataservices_server.isoline AS (center geometry(Geometry,4326), data_range integer, the_geom geometry(Multipolygon,4326));
|
|
|
|
|
|
|
|
CREATE OR REPLACE FUNCTION cdb_dataservices_server._cdb_here_routing_isolines(username TEXT, orgname TEXT, type TEXT, source geometry(Geometry, 4326), mode TEXT, data_range integer[], options text[])
|
|
|
|
RETURNS SETOF cdb_dataservices_server.isoline AS $$
|
|
|
|
import json
|
|
|
|
from cartodb_services.here import HereMapsRoutingIsoline
|
|
|
|
from cartodb_services.metrics import QuotaService
|
|
|
|
from cartodb_services.here.types import geo_polyline_to_multipolygon
|
2016-08-02 23:28:48 +08:00
|
|
|
from cartodb_services.tools import Logger,LoggerConfig
|
2016-03-07 20:03:09 +08:00
|
|
|
|
|
|
|
redis_conn = GD["redis_connection_{0}".format(username)]['redis_metrics_connection']
|
|
|
|
user_isolines_routing_config = GD["user_isolines_routing_config_{0}".format(username)]
|
|
|
|
|
2016-08-02 23:28:48 +08:00
|
|
|
logger_config = LoggerConfig(plpy)
|
|
|
|
logger = Logger(logger_config)
|
2016-03-07 20:03:09 +08:00
|
|
|
# -- Check the quota
|
|
|
|
quota_service = QuotaService(user_isolines_routing_config, redis_conn)
|
|
|
|
if not quota_service.check_user_quota():
|
2016-08-02 01:04:56 +08:00
|
|
|
raise Exception('You have reached the limit of your quota')
|
2016-03-07 20:03:09 +08:00
|
|
|
|
|
|
|
try:
|
2016-08-02 01:04:56 +08:00
|
|
|
client = HereMapsRoutingIsoline(user_isolines_routing_config.heremaps_app_id,
|
|
|
|
user_isolines_routing_config.heremaps_app_code, logger)
|
2016-03-07 20:03:09 +08:00
|
|
|
|
|
|
|
if source:
|
|
|
|
lat = plpy.execute("SELECT ST_Y('%s') AS lat" % source)[0]['lat']
|
|
|
|
lon = plpy.execute("SELECT ST_X('%s') AS lon" % source)[0]['lon']
|
|
|
|
source_str = 'geo!%f,%f' % (lat, lon)
|
|
|
|
else:
|
|
|
|
source_str = None
|
|
|
|
|
|
|
|
if type == 'isodistance':
|
|
|
|
resp = client.calculate_isodistance(source_str, mode, data_range, options)
|
|
|
|
elif type == 'isochrone':
|
|
|
|
resp = client.calculate_isochrone(source_str, mode, data_range, options)
|
|
|
|
|
|
|
|
if resp:
|
|
|
|
result = []
|
|
|
|
for isoline in resp:
|
|
|
|
data_range_n = isoline['range']
|
|
|
|
polyline = isoline['geom']
|
|
|
|
multipolygon = geo_polyline_to_multipolygon(polyline)
|
|
|
|
result.append([source, data_range_n, multipolygon])
|
2016-03-07 22:40:37 +08:00
|
|
|
quota_service.increment_success_service_use()
|
2016-03-07 20:03:09 +08:00
|
|
|
quota_service.increment_isolines_service_use(len(resp))
|
|
|
|
return result
|
|
|
|
else:
|
2016-03-07 22:40:37 +08:00
|
|
|
quota_service.increment_empty_service_use()
|
2016-05-10 21:51:08 +08:00
|
|
|
return []
|
2016-03-07 20:03:09 +08:00
|
|
|
except BaseException as e:
|
2016-08-02 01:04:56 +08:00
|
|
|
import sys
|
2016-03-07 22:40:37 +08:00
|
|
|
quota_service.increment_failed_service_use()
|
2016-08-03 00:59:13 +08:00
|
|
|
logger.error('Error trying to get mapzen isolines', sys.exc_info(), data={"username": username, "orgname": orgname})
|
|
|
|
raise Exception('Error trying to get mapzen isolines')
|
2016-03-07 20:03:09 +08:00
|
|
|
finally:
|
2016-03-07 22:40:37 +08:00
|
|
|
quota_service.increment_total_service_use()
|
2016-03-07 20:03:09 +08:00
|
|
|
$$ LANGUAGE plpythonu SECURITY DEFINER;
|
2016-07-05 02:07:58 +08:00
|
|
|
|
|
|
|
|
2016-07-06 02:56:15 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cdb_dataservices_server._cdb_mapzen_isolines(
|
2016-07-05 02:07:58 +08:00
|
|
|
username TEXT,
|
|
|
|
orgname TEXT,
|
|
|
|
isotype TEXT,
|
|
|
|
source geometry(Geometry, 4326),
|
|
|
|
mode TEXT,
|
|
|
|
data_range integer[],
|
|
|
|
options text[])
|
|
|
|
RETURNS SETOF cdb_dataservices_server.isoline AS $$
|
|
|
|
import json
|
2016-08-02 01:04:56 +08:00
|
|
|
from cartodb_services.mapzen import MatrixClient, MapzenIsolines
|
2016-07-05 02:07:58 +08:00
|
|
|
from cartodb_services.metrics import QuotaService
|
2016-08-02 23:28:48 +08:00
|
|
|
from cartodb_services.tools import Logger,LoggerConfig
|
2016-07-05 02:07:58 +08:00
|
|
|
|
|
|
|
redis_conn = GD["redis_connection_{0}".format(username)]['redis_metrics_connection']
|
2016-07-21 19:46:57 +08:00
|
|
|
user_isolines_routing_config = GD["user_isolines_routing_config_{0}".format(username)]
|
2016-07-05 02:07:58 +08:00
|
|
|
|
2016-08-02 23:28:48 +08:00
|
|
|
logger_config = LoggerConfig(plpy)
|
|
|
|
logger = Logger(logger_config)
|
2016-07-05 02:07:58 +08:00
|
|
|
# -- Check the quota
|
2016-07-21 19:46:57 +08:00
|
|
|
quota_service = QuotaService(user_isolines_routing_config, redis_conn)
|
2016-07-06 18:40:31 +08:00
|
|
|
if not quota_service.check_user_quota():
|
2016-08-02 01:04:56 +08:00
|
|
|
raise Exception('You have reached the limit of your quota')
|
2016-07-05 02:07:58 +08:00
|
|
|
|
|
|
|
try:
|
2016-08-02 01:04:56 +08:00
|
|
|
client = MatrixClient(user_isolines_routing_config.mapzen_matrix_api_key, logger)
|
|
|
|
mapzen_isolines = MapzenIsolines(client, logger)
|
2016-07-05 02:07:58 +08:00
|
|
|
|
|
|
|
if source:
|
|
|
|
lat = plpy.execute("SELECT ST_Y('%s') AS lat" % source)[0]['lat']
|
|
|
|
lon = plpy.execute("SELECT ST_X('%s') AS lon" % source)[0]['lon']
|
2016-07-06 02:56:15 +08:00
|
|
|
origin = {'lat': lat, 'lon': lon}
|
2016-07-05 02:07:58 +08:00
|
|
|
else:
|
2016-07-06 02:56:15 +08:00
|
|
|
raise Exception('source is NULL')
|
2016-07-05 02:07:58 +08:00
|
|
|
|
2016-07-05 16:32:38 +08:00
|
|
|
# -- TODO Support options properly
|
2016-07-06 17:20:39 +08:00
|
|
|
isolines = {}
|
2016-07-05 02:07:58 +08:00
|
|
|
if isotype == 'isodistance':
|
2016-07-07 01:40:40 +08:00
|
|
|
for r in data_range:
|
|
|
|
isoline = mapzen_isolines.calculate_isodistance(origin, mode, r)
|
2016-07-11 20:59:02 +08:00
|
|
|
isolines[r] = isoline
|
2016-07-05 02:07:58 +08:00
|
|
|
elif isotype == 'isochrone':
|
2016-07-06 02:56:15 +08:00
|
|
|
for r in data_range:
|
|
|
|
isoline = mapzen_isolines.calculate_isochrone(origin, mode, r)
|
2016-07-11 20:59:02 +08:00
|
|
|
isolines[r] = isoline
|
2016-07-06 17:20:39 +08:00
|
|
|
|
|
|
|
result = []
|
|
|
|
for r in data_range:
|
|
|
|
|
2016-07-11 20:59:02 +08:00
|
|
|
if len(isolines[r]) >= 3:
|
|
|
|
# -- TODO encapsulate this block into a func/method
|
|
|
|
locations = isolines[r] + [ isolines[r][0] ] # close the polygon repeating the first point
|
|
|
|
wkt_coordinates = ','.join(["%f %f" % (l['lon'], l['lat']) for l in locations])
|
|
|
|
sql = "SELECT ST_MPolyFromText('MULTIPOLYGON((({0})))', 4326) as geom".format(wkt_coordinates)
|
|
|
|
multipolygon = plpy.execute(sql, 1)[0]['geom']
|
|
|
|
else:
|
|
|
|
multipolygon = None
|
2016-07-06 17:20:39 +08:00
|
|
|
|
|
|
|
result.append([source, r, multipolygon])
|
2016-07-06 18:40:31 +08:00
|
|
|
|
|
|
|
quota_service.increment_success_service_use()
|
|
|
|
quota_service.increment_isolines_service_use(len(isolines))
|
2016-07-06 17:20:39 +08:00
|
|
|
return result
|
2016-07-05 02:07:58 +08:00
|
|
|
except BaseException as e:
|
2016-08-02 01:04:56 +08:00
|
|
|
import sys
|
2016-07-06 18:40:31 +08:00
|
|
|
quota_service.increment_failed_service_use()
|
2016-08-03 00:59:13 +08:00
|
|
|
logger.error('Error trying to get mapzen isolines', sys.exc_info(), data={"username": username, "orgname": orgname})
|
|
|
|
raise Exception('Error trying to get mapzen isolines')
|
2016-07-05 02:07:58 +08:00
|
|
|
finally:
|
2016-07-06 18:40:31 +08:00
|
|
|
quota_service.increment_total_service_use()
|
2016-07-05 02:07:58 +08:00
|
|
|
$$ LANGUAGE plpythonu SECURITY DEFINER;
|