2018-09-10 18:54:37 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cdb_dataservices_server.cdb_isochrone(username TEXT, orgname TEXT, source geometry(Geometry, 4326), mode TEXT, range integer[], options text[] DEFAULT array[]::text[])
|
2016-02-11 02:59:00 +08:00
|
|
|
RETURNS SETOF cdb_dataservices_server.isoline AS $$
|
2016-10-29 00:12:04 +08:00
|
|
|
from cartodb_services.metrics import metrics
|
2016-11-11 18:03:00 +08:00
|
|
|
from cartodb_services.tools import Logger
|
2016-10-29 00:12:04 +08:00
|
|
|
|
2016-02-11 00:17:53 +08:00
|
|
|
plpy.execute("SELECT cdb_dataservices_server._connect_to_redis('{0}')".format(username))
|
|
|
|
redis_conn = GD["redis_connection_{0}".format(username)]['redis_metrics_connection']
|
2016-02-16 20:22:45 +08:00
|
|
|
plpy.execute("SELECT cdb_dataservices_server._get_isolines_routing_config({0}, {1})".format(plpy.quote_nullable(username), plpy.quote_nullable(orgname)))
|
|
|
|
user_isolines_config = GD["user_isolines_routing_config_{0}".format(username)]
|
2016-11-02 16:58:35 +08:00
|
|
|
plpy.execute("SELECT cdb_dataservices_server._get_logger_config()")
|
|
|
|
logger_config = GD["logger_config"]
|
|
|
|
logger = Logger(logger_config)
|
2016-02-11 00:17:53 +08:00
|
|
|
|
2018-09-10 18:54:37 +08:00
|
|
|
params = {'username': username, 'orgname': orgname, 'source': source, 'mode': mode, 'range': range, 'options': options}
|
2018-04-11 18:56:55 +08:00
|
|
|
|
|
|
|
with metrics('cdb_isochrone', user_isolines_config, logger, params):
|
2016-10-29 00:12:04 +08:00
|
|
|
if user_isolines_config.heremaps_provider:
|
2018-09-10 20:26:53 +08:00
|
|
|
here_plan = plpy.prepare("SELECT * FROM cdb_dataservices_server.cdb_here_isochrone($1, $2, $3, $4, $5, $6) as isoline; ", ["text", "text", "geometry(geometry, 4326)", "text", "integer[]", "text[]"])
|
2018-09-10 18:54:37 +08:00
|
|
|
return plpy.execute(here_plan, [username, orgname, source, mode, range, options])
|
2016-10-29 00:12:04 +08:00
|
|
|
elif user_isolines_config.mapzen_provider:
|
2018-09-10 20:26:53 +08:00
|
|
|
mapzen_plan = plpy.prepare("SELECT * FROM cdb_dataservices_server.cdb_mapzen_isochrone($1, $2, $3, $4, $5, $6) as isoline; ", ["text", "text", "geometry(geometry, 4326)", "text", "integer[]", "text[]"])
|
2018-09-10 18:54:37 +08:00
|
|
|
return plpy.execute(mapzen_plan, [username, orgname, source, mode, range, options])
|
2018-01-05 00:58:46 +08:00
|
|
|
elif user_isolines_config.mapbox_provider:
|
2018-09-10 20:26:53 +08:00
|
|
|
mapbox_plan = plpy.prepare("SELECT * FROM cdb_dataservices_server.cdb_mapbox_isochrone($1, $2, $3, $4, $5, $6) as isoline; ", ["text", "text", "geometry(geometry, 4326)", "text", "integer[]", "text[]"])
|
2018-09-10 18:54:37 +08:00
|
|
|
return plpy.execute(mapbox_plan, [username, orgname, source, mode, range, options])
|
2018-03-02 23:40:12 +08:00
|
|
|
elif user_isolines_config.tomtom_provider:
|
2018-09-10 20:26:53 +08:00
|
|
|
tomtom_plan = plpy.prepare("SELECT * FROM cdb_dataservices_server.cdb_tomtom_isochrone($1, $2, $3, $4, $5, $6) as isoline; ", ["text", "text", "geometry(geometry, 4326)", "text", "integer[]", "text[]"])
|
2018-09-10 18:54:37 +08:00
|
|
|
return plpy.execute(tomtom_plan, [username, orgname, source, mode, range, options])
|
2016-10-29 00:12:04 +08:00
|
|
|
else:
|
|
|
|
raise Exception('Requested isolines provider is not available')
|
2020-02-24 23:12:27 +08:00
|
|
|
$$ LANGUAGE @@plpythonu@@ STABLE PARALLEL RESTRICTED;
|
2016-07-21 19:46:57 +08:00
|
|
|
|
|
|
|
-- heremaps isochrone
|
2018-09-10 18:54:37 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cdb_dataservices_server.cdb_here_isochrone(username TEXT, orgname TEXT, source geometry(Geometry, 4326), mode TEXT, range integer[], options text[] DEFAULT array[]::text[])
|
2016-07-21 19:46:57 +08:00
|
|
|
RETURNS SETOF cdb_dataservices_server.isoline AS $$
|
|
|
|
plpy.execute("SELECT cdb_dataservices_server._connect_to_redis('{0}')".format(username))
|
|
|
|
redis_conn = GD["redis_connection_{0}".format(username)]['redis_metrics_connection']
|
|
|
|
plpy.execute("SELECT cdb_dataservices_server._get_isolines_routing_config({0}, {1})".format(plpy.quote_nullable(username), plpy.quote_nullable(orgname)))
|
|
|
|
user_isolines_config = GD["user_isolines_routing_config_{0}".format(username)]
|
|
|
|
type = 'isochrone'
|
|
|
|
|
2016-07-22 20:49:33 +08:00
|
|
|
here_plan = plpy.prepare("SELECT * FROM cdb_dataservices_server._cdb_here_routing_isolines($1, $2, $3, $4, $5, $6, $7) as isoline; ", ["text", "text", "text", "geometry(Geometry, 4326)", "text", "integer[]", "text[]"])
|
2016-02-11 05:26:32 +08:00
|
|
|
result = plpy.execute(here_plan, [username, orgname, type, source, mode, range, options])
|
2016-07-21 19:46:57 +08:00
|
|
|
|
2016-07-22 20:49:33 +08:00
|
|
|
return result
|
2020-02-24 23:12:27 +08:00
|
|
|
$$ LANGUAGE @@plpythonu@@ STABLE PARALLEL RESTRICTED;
|
2016-07-05 02:07:58 +08:00
|
|
|
|
2016-07-21 19:46:57 +08:00
|
|
|
-- mapzen isochrone
|
2018-09-10 18:54:37 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cdb_dataservices_server.cdb_mapzen_isochrone(username TEXT, orgname TEXT, source geometry(Geometry, 4326), mode TEXT, range integer[], options text[] DEFAULT array[]::text[])
|
2016-07-05 02:07:58 +08:00
|
|
|
RETURNS SETOF cdb_dataservices_server.isoline AS $$
|
|
|
|
plpy.execute("SELECT cdb_dataservices_server._connect_to_redis('{0}')".format(username))
|
|
|
|
redis_conn = GD["redis_connection_{0}".format(username)]['redis_metrics_connection']
|
2016-07-21 19:46:57 +08:00
|
|
|
plpy.execute("SELECT cdb_dataservices_server._get_isolines_routing_config({0}, {1})".format(plpy.quote_nullable(username), plpy.quote_nullable(orgname)))
|
|
|
|
user_isolines_config = GD["user_isolines_routing_config_{0}".format(username)]
|
2016-07-05 02:07:58 +08:00
|
|
|
|
2016-11-29 19:28:19 +08:00
|
|
|
mapzen_plan = plpy.prepare("SELECT * FROM cdb_dataservices_server._cdb_mapzen_isochrones($1, $2, $3, $4, $5, $6) as isoline; ", ["text", "text", "geometry(geometry, 4326)", "text", "integer[]", "text[]"])
|
|
|
|
result = plpy.execute(mapzen_plan, [username, orgname, source, mode, range, options])
|
2016-07-11 22:56:25 +08:00
|
|
|
return result
|
2020-02-24 23:12:27 +08:00
|
|
|
$$ LANGUAGE @@plpythonu@@ STABLE PARALLEL RESTRICTED;
|
2018-01-05 00:58:46 +08:00
|
|
|
|
|
|
|
-- mapbox isochrone
|
2018-09-10 18:54:37 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cdb_dataservices_server.cdb_mapbox_isochrone(username TEXT, orgname TEXT, source geometry(Geometry, 4326), mode TEXT, range integer[], options text[] DEFAULT array[]::text[])
|
2018-01-05 00:58:46 +08:00
|
|
|
RETURNS SETOF cdb_dataservices_server.isoline AS $$
|
|
|
|
plpy.execute("SELECT cdb_dataservices_server._connect_to_redis('{0}')".format(username))
|
|
|
|
redis_conn = GD["redis_connection_{0}".format(username)]['redis_metrics_connection']
|
|
|
|
plpy.execute("SELECT cdb_dataservices_server._get_isolines_routing_config({0}, {1})".format(plpy.quote_nullable(username), plpy.quote_nullable(orgname)))
|
|
|
|
user_isolines_config = GD["user_isolines_routing_config_{0}".format(username)]
|
|
|
|
|
|
|
|
mapbox_plan = plpy.prepare("SELECT * FROM cdb_dataservices_server._cdb_mapbox_isochrones($1, $2, $3, $4, $5, $6) as isoline; ", ["text", "text", "geometry(geometry, 4326)", "text", "integer[]", "text[]"])
|
|
|
|
result = plpy.execute(mapbox_plan, [username, orgname, source, mode, range, options])
|
|
|
|
return result
|
2020-02-24 23:12:27 +08:00
|
|
|
$$ LANGUAGE @@plpythonu@@ STABLE PARALLEL RESTRICTED;
|
2018-03-02 23:40:12 +08:00
|
|
|
|
|
|
|
-- tomtom isochrone
|
2018-09-10 18:54:37 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cdb_dataservices_server.cdb_tomtom_isochrone(username TEXT, orgname TEXT, source geometry(Geometry, 4326), mode TEXT, range integer[], options text[] DEFAULT array[]::text[])
|
2018-03-02 23:40:12 +08:00
|
|
|
RETURNS SETOF cdb_dataservices_server.isoline AS $$
|
|
|
|
plpy.execute("SELECT cdb_dataservices_server._connect_to_redis('{0}')".format(username))
|
|
|
|
redis_conn = GD["redis_connection_{0}".format(username)]['redis_metrics_connection']
|
|
|
|
plpy.execute("SELECT cdb_dataservices_server._get_isolines_routing_config({0}, {1})".format(plpy.quote_nullable(username), plpy.quote_nullable(orgname)))
|
|
|
|
user_isolines_config = GD["user_isolines_routing_config_{0}".format(username)]
|
|
|
|
|
|
|
|
tomtom_plan = plpy.prepare("SELECT * FROM cdb_dataservices_server._cdb_tomtom_isochrones($1, $2, $3, $4, $5, $6) as isoline; ", ["text", "text", "geometry(geometry, 4326)", "text", "integer[]", "text[]"])
|
|
|
|
result = plpy.execute(tomtom_plan, [username, orgname, source, mode, range, options])
|
|
|
|
return result
|
2020-02-24 23:12:27 +08:00
|
|
|
$$ LANGUAGE @@plpythonu@@ STABLE PARALLEL RESTRICTED;
|