Skip to content

Commit af03344

Browse files
wifi:)wifi:)
authored andcommitted
Merge remote-tracking branch 'upstream/develop' into king-ordering-cleanup
2 parents e4ca583 + de15dde commit af03344

161 files changed

Lines changed: 1543 additions & 1521 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

doc/allpairs/pgr_johnson.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
===============================================================================
1818

1919
``pgr_johnson`` - Returns the sum of the costs of the shortest path for each
20-
pair of nodes in the graph using Floyd-Warshall algorithm.
20+
pair of nodes in the graph using Johnson algorithm.
2121

2222
.. rubric:: Availability
2323

doc/contraction/pgr_contractionHierarchies.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ shortcut edges created.
2323

2424
.. rubric:: Availability
2525

26-
* Version 3.8.0
26+
.. rubric:: Version 3.8.0
2727

28-
* New **experimental** function
28+
* New experimental function
2929

3030

3131
Description

doc/src/pgRouting-introduction.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,9 @@ Contributors
6363
This Release Contributors
6464
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
6565

66-
Individuals in this release v3.8.x (in alphabetical order)
66+
Individuals in this release v4.0.0 (in alphabetical order)
6767
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6868

69-
Aurélie Bousquet,
7069
Regina Obe,
7170
Vicky Vergara
7271

doc/src/support.rst

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,19 +48,22 @@ Bugs are reported and managed in an `issue tracker
4848
4949
5050
51-
Mailing List and GIS StackExchange
51+
Mailing List, Matrix, GIS StackExchange
5252
-------------------------------------------------------------------------------
5353

54-
There are two mailing lists for pgRouting hosted on OSGeo mailing list server:
54+
There are two mailing lists for pgRouting hosted on OSGeo discourse server:
5555

56-
* User mailing list: https://lists.osgeo.org/mailman/listinfo/pgrouting-users
56+
* User mailing list: https://discourse.osgeo.org/c/pgrouting/pgrouting-users/
5757
* Developer mailing list: https://discourse.osgeo.org/c/pgrouting/pgrouting-dev/
5858

5959
* Subscribe: https://discourse.osgeo.org/g/pgrouting-dev
6060

6161
For general questions and topics about how to use pgRouting, please write to the
6262
user mailing list.
6363

64+
If you want to chat with fellow pgRouting users and contributors, you
65+
can join our matrix channel: `pgRouting matrix channel <https://matrix.to/#/#pgrouting:osgeo.org>`_.
66+
6467
You can also ask at `GIS StackExchange <https://gis.stackexchange.com/>`_ and
6568
tag the question with ``pgrouting``.
6669
Find all questions tagged with ``pgrouting`` under

docqueries/src/sampledata.result

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,13 +206,13 @@ SELECT
206206
pid, ST_AsText(geom) geom,
207207
edge_id, fraction AS frac, side, distance AS dist,
208208
ST_AsText(edge) edge, ST_AsText(newPoint) newPoint
209-
FROM pointsOfInterest;
209+
FROM pointsOfInterest ORDER BY pid;
210210
pid | geom | edge_id | frac | side | dist | edge | newpoint
211211
-----+----------------+---------+------+------+------+---------------------------+--------------
212212
1 | POINT(1.8 0.4) | 1 | 0.4 | l | 0.2 | LINESTRING(1.8 0.4,2 0.4) | POINT(2 0.4)
213-
4 | POINT(0.3 1.8) | 6 | 0.3 | r | 0.2 | LINESTRING(0.3 1.8,0.3 2) | POINT(0.3 2)
214-
3 | POINT(2.6 3.2) | 12 | 0.6 | l | 0.2 | LINESTRING(2.6 3.2,2.6 3) | POINT(2.6 3)
215213
2 | POINT(4.2 2.4) | 15 | 0.4 | r | 0.2 | LINESTRING(4.2 2.4,4 2.4) | POINT(4 2.4)
214+
3 | POINT(2.6 3.2) | 12 | 0.6 | l | 0.2 | LINESTRING(2.6 3.2,2.6 3) | POINT(2.6 3)
215+
4 | POINT(0.3 1.8) | 6 | 0.3 | r | 0.2 | LINESTRING(0.3 1.8,0.3 2) | POINT(0.3 2)
216216
5 | POINT(2.9 1.8) | 5 | 0.8 | l | 0.1 | LINESTRING(2.9 1.8,3 1.8) | POINT(3 1.8)
217217
6 | POINT(2.2 1.7) | 4 | 0.7 | b | 0.2 | LINESTRING(2.2 1.7,2 1.7) | POINT(2 1.7)
218218
(6 rows)

docqueries/src/withPoints-category.pg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
-- CopyRight(c) pgRouting developers
22
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
33
/* --q1 */
4-
SELECT pid, edge_id, fraction, side FROM pointsOfInterest;
4+
SELECT pid, edge_id, fraction, side FROM pointsOfInterest
5+
ORDER BY pid;
56
/* --q2 */
67
SELECT id, source, target, cost, reverse_cost
78
FROM edges WHERE id = 15;

docqueries/src/withPoints-category.result

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@ BEGIN
33
SET client_min_messages TO NOTICE;
44
SET
55
/* --q1 */
6-
SELECT pid, edge_id, fraction, side FROM pointsOfInterest;
6+
SELECT pid, edge_id, fraction, side FROM pointsOfInterest
7+
ORDER BY pid;
78
pid | edge_id | fraction | side
89
-----+---------+----------+------
910
1 | 1 | 0.4 | l
10-
4 | 6 | 0.3 | r
11-
3 | 12 | 0.6 | l
1211
2 | 15 | 0.4 | r
12+
3 | 12 | 0.6 | l
13+
4 | 6 | 0.3 | r
1314
5 | 5 | 0.8 | l
1415
6 | 4 | 0.7 | b
1516
(6 rows)

0 commit comments

Comments
 (0)