pgrouting
pgrouting copied to clipboard
Repository contains pgRouting library. Development branch is "develop", stable branch is "master"
**Problem** I'm trying to install pgRouting on a cluster using modules and I've noticed that the installation process uses the Postgresql package library directory to determine the installation path (or...
### Update installation instructions to be more clear 1. Open a terminal: `sudo apt-get install cmake` 2. Visit https://docs.pgrouting.org/dev/en/pgRouting-installation.html#get-the-sources and install postgres sources 3. To find out what version of...
pgr_TSP() argument "end_id" doesn't work on MacOS and Ubuntu for PgRouting versions 2.6.2 ... 3.0.1
**Describe the bug** On MacOS in resulting routing sequence 1...N addresses the "end_id" node is N-1 sequential address instead of N. So we can't define the last address. **To Reproduce**...
Hello Everyone, I am trying to implement the time-dependent version of Dijkstra's Algorithm, and for that I was looking for the pgr_dijkstra implementation in PGRouting source code files. But I...
The documentation has this section ``` Tutorial Getting started Routing Topology for an overview of a topology for routing algorithms. Graph Analytics for an overview of the analysis of a...
Write the developers documentation of the following files https://github.com/pgRouting/pgrouting/blob/develop/src/common/get_check_data.c https://github.com/pgRouting/pgrouting/blob/develop/include/c_common/get_check_data.h We use Doxygen to generate the documentation http://www.stack.nl/~dimitri/doxygen/
**Problem** pgr_nodenetwork misses nodes on very long ferry lines imported from OSM. **To Reproduce** Load the table `public.lines` from the sql in the Sample Data section. Execute ```postgresql select pgr_nodenetwork('public.lines',...
**Describe the bug** pgr_alphaShape sometimes fails with this exception: ``` QL-Fehler [XX000]: ERROR: parse error - invalid geometry Hinweis: "GEOMETRYCOLLECTION(POLYGON(())"
**Problem** **To Reproduce** In order to reproduce the problem just create a graph like a square, where all point are connected, let's say A,B,C,D you want to find path from...
**Problem** pgr_bdastar doesn't return the same result as pgr_astar **To Reproduce** Using pgRouting docker image, import the following data: [edge_min_repro.zip](https://github.com/pgRouting/pgrouting/files/6460575/edge_min_repro.zip) Then run the following queries: ``` SELECT seq, path_seq AS...