9f4df6fa7d
When there's no enough information to produce an isoline (less than 3 points) return a NULL multipolygon to the upper layer. This usually happens when the matrix API returns null cost for most points in the request.
130 lines
5.1 KiB
PL/PgSQL
130 lines
5.1 KiB
PL/PgSQL
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
|
|
|
|
redis_conn = GD["redis_connection_{0}".format(username)]['redis_metrics_connection']
|
|
user_isolines_routing_config = GD["user_isolines_routing_config_{0}".format(username)]
|
|
|
|
# -- Check the quota
|
|
quota_service = QuotaService(user_isolines_routing_config, redis_conn)
|
|
if not quota_service.check_user_quota():
|
|
plpy.error('You have reached the limit of your quota')
|
|
|
|
try:
|
|
client = HereMapsRoutingIsoline(user_isolines_routing_config.heremaps_app_id, user_isolines_routing_config.heremaps_app_code, base_url = HereMapsRoutingIsoline.PRODUCTION_ROUTING_BASE_URL)
|
|
|
|
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])
|
|
quota_service.increment_success_service_use()
|
|
quota_service.increment_isolines_service_use(len(resp))
|
|
return result
|
|
else:
|
|
quota_service.increment_empty_service_use()
|
|
return []
|
|
except BaseException as e:
|
|
import sys, traceback
|
|
type_, value_, traceback_ = sys.exc_info()
|
|
quota_service.increment_failed_service_use()
|
|
error_msg = 'There was an error trying to obtain isodistances using here maps geocoder: {0}'.format(e)
|
|
plpy.notice(traceback.format_tb(traceback_))
|
|
plpy.error(error_msg)
|
|
finally:
|
|
quota_service.increment_total_service_use()
|
|
$$ LANGUAGE plpythonu SECURITY DEFINER;
|
|
|
|
|
|
CREATE OR REPLACE FUNCTION cdb_dataservices_server._cdb_mapzen_isolines(
|
|
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
|
|
from cartodb_services.mapzen import MatrixClient
|
|
from cartodb_services.mapzen import MapzenIsolines
|
|
from cartodb_services.metrics import QuotaService
|
|
|
|
redis_conn = GD["redis_connection_{0}".format(username)]['redis_metrics_connection']
|
|
user_mapzen_isolines_routing_config = GD["user_mapzen_isolines_routing_config_{0}".format(username)]
|
|
|
|
# -- Check the quota
|
|
quota_service = QuotaService(user_mapzen_isolines_routing_config, redis_conn)
|
|
if not quota_service.check_user_quota():
|
|
plpy.error('You have reached the limit of your quota')
|
|
|
|
try:
|
|
client = MatrixClient(user_mapzen_isolines_routing_config.mapzen_matrix_api_key)
|
|
mapzen_isolines = MapzenIsolines(client)
|
|
|
|
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']
|
|
origin = {'lat': lat, 'lon': lon}
|
|
else:
|
|
raise Exception('source is NULL')
|
|
|
|
# -- TODO Support options properly
|
|
isolines = {}
|
|
if isotype == 'isodistance':
|
|
for r in data_range:
|
|
isoline = mapzen_isolines.calculate_isodistance(origin, mode, r)
|
|
isolines[r] = isoline
|
|
elif isotype == 'isochrone':
|
|
for r in data_range:
|
|
isoline = mapzen_isolines.calculate_isochrone(origin, mode, r)
|
|
isolines[r] = isoline
|
|
|
|
result = []
|
|
for r in data_range:
|
|
|
|
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
|
|
|
|
result.append([source, r, multipolygon])
|
|
|
|
quota_service.increment_success_service_use()
|
|
quota_service.increment_isolines_service_use(len(isolines))
|
|
return result
|
|
except BaseException as e:
|
|
import sys, traceback
|
|
type_, value_, traceback_ = sys.exc_info()
|
|
quota_service.increment_failed_service_use()
|
|
error_msg = 'There was an error trying to obtain isolines using mapzen: {0}'.format(e)
|
|
plpy.debug(traceback.format_tb(traceback_))
|
|
raise e
|
|
#plpy.error(error_msg)
|
|
finally:
|
|
quota_service.increment_total_service_use()
|
|
$$ LANGUAGE plpythonu SECURITY DEFINER;
|