You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: db/deploy/routing_functions.sql
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ COMMENT ON PROCEDURE {schema_name}.pgrouting_version_check IS 'Ensures appropria
28
28
29
29
30
30
31
-
CREATE OR REPLACE PROCEDURE {schema_name}.routing_prepare_edges()
31
+
CREATE OR REPLACE PROCEDURE {schema_name}.routing_prepare_edge_network()
32
32
LANGUAGE plpgsql
33
33
AS $$
34
34
BEGIN
@@ -211,26 +211,26 @@ BEGIN
211
211
-- Outputs: `route_edges_output` temp table.
212
212
END $$;
213
213
214
-
COMMENT ON PROCEDURE {schema_name}.routing_prepare_edges() IS 'Requires `route_edge_input` temp table as input, creates `route_edges_output` temp table as output.';
214
+
COMMENT ON PROCEDURE {schema_name}.routing_prepare_edge_network() IS 'Requires `route_edge_input` temp table as input, creates `route_edges_output` temp table as output.';
215
215
216
216
217
217
218
-
CREATE OR REPLACE PROCEDURE {schema_name}.routing_prepare_roads()
218
+
CREATE OR REPLACE PROCEDURE {schema_name}.routing_prepare_road_network()
219
219
LANGUAGE plpgsql
220
220
AS $$
221
221
BEGIN
222
222
223
223
CALL {schema_name}.pgrouting_version_check();
224
224
225
-
--Create edges table for input to routing_prepare_edges procedure
225
+
--Create edges table for input to routing_prepare_edge_network procedure
DROPTABLE IF EXISTS {schema_name}.routing_road_edge;
@@ -368,7 +368,7 @@ BEGIN
368
368
END $$;
369
369
370
370
371
-
COMMENT ON PROCEDURE {schema_name}.routing_prepare_roads IS 'Creates the {schema_name}.routing_road_edge and {schema_name}.routing_road_vertex from the {schema_name}.road_line input data';
371
+
COMMENT ON PROCEDURE {schema_name}.routing_prepare_road_network IS 'Creates the {schema_name}.routing_road_edge and {schema_name}.routing_road_vertex from the {schema_name}.road_line input data';
372
372
373
373
374
374
@@ -377,22 +377,22 @@ COMMENT ON PROCEDURE {schema_name}.routing_prepare_roads IS 'Creates the {schema
DROPTABLE IF EXISTS {schema_name}.routing_water_edge;
@@ -508,4 +508,4 @@ BEGIN
508
508
END $$;
509
509
510
510
511
-
COMMENT ON PROCEDURE {schema_name}.routing_prepare_water IS 'Creates the {schema_name}.routing_water_edge and {schema_name}.routing_water_vertex from the {schema_name}.water_line input data';
511
+
COMMENT ON PROCEDURE {schema_name}.routing_prepare_water_network IS 'Creates the {schema_name}.routing_water_edge and {schema_name}.routing_water_vertex from the {schema_name}.water_line input data';
0 commit comments