Skip to content

Commit

Permalink
More changes
Browse files Browse the repository at this point in the history
  • Loading branch information
robe2 committed Apr 19, 2023
1 parent dd6a385 commit 565fd8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/topology/pgr_degree.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
``pgr_degree`` -- Proposed
===============================================================================

``pgr_degree`` — For each vertex in an undirected graph, returns the count of edges incident to the vertex
``pgr_degree`` — For each vertex in an undirected graph, return the count of edges incident to the vertex.


.. include:: proposed.rst
Expand Down
3 changes: 2 additions & 1 deletion docqueries/topology/degree.test.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
CREATE TEMP TABLE tmp_edges_vertices_pgr IF NOT EXISTS AS
DROP TABLE IF EXISTS tmp_edges_vertices_pgr
CREATE TEMP TABLE tmp_edges_vertices_pgr AS
SELECT id, in_edges, out_edges
FROM pgr_extractVertices('SELECT id, geom FROM edges');
SELECT * FROM pgr_degree(
Expand Down

0 comments on commit 565fd8d

Please sign in to comment.