Skip to content

Repository contains pgRouting library. Development branch is "develop", stable branch is "master"

License

Notifications You must be signed in to change notification settings

nbrinckm/pgrouting

 
 

Repository files navigation

pgRouting - Routing on PostgreSQL

STATUS

The master branch reflects our current 2.0.0 release. pgRouting 2.1.0 development is in develop_2_1_0 branch. develop branch is not up to date becuase of it is not passing the Winnie tests,

LINKS

Branch Status Comment
master Build Status not enabled
develop Build Status
develop_2_1_0 Build Status
gh-pages Build Status not enabled

INTRODUCTION

pgRouting extends the PostGIS/PostgreSQL geospatial database to provide geospatial routing and other network analysis functionality.

This library contains following features:

  • All Pairs Shortest Path, Johnson’s Algorithm
  • All Pairs Shortest Path, Floyd-Warshall Algorithm
  • Shortest Path A*
  • Bi-directional Dijkstra Shortest Path
  • Bi-directional A* Shortest Path
  • Shortest Path Dijkstra
  • Driving Distance
  • K-Shortest Path, Multiple Alternative Paths
  • K-Dijkstra, One to Many Shortest Path
  • Traveling Sales Person
  • Turn Restriction Shortest Path (TRSP)

REQUIREMENTS

  • C and C++ compilers
  • Postgresql version >= 9.1
  • PostGIS version >= 2.0
  • The Boost Graph Library (BGL).
    • Version >= 1.55 for linux
    • Version >= 1.58 for MAC
  • CMake >= 2.8.8
  • CGAL >= 4.4
  • Sphinx >= 1.2

INSTALLATION

See online documentation: http://docs.pgrouting.org/

COMPILATION

For MinGW on Windows

mkdir build
cd build
cmake -G"MSYS Makefiles" ..
make
make install

Also pre-built Windows binaries can be downloaded from:

http://www.postgis.net/windows_downloads

For Linux

mkdir build
cd build
cmake  ..
make
sudo make install

Build with documentation (requires Sphinx)

cmake -DWITH_DOC=ON ..

Postgresql 9.1+

createdb mydatabase
psql mydatabase -c "create extension postgis"
psql mydatabase -c "create extension pgrouting"

USAGE

See online documentation: http://docs.pgrouting.org/dev/doc/index.html

LICENSE

  • Most features are available under GPLv2.
  • Some Boost extensions are available under Boost license (see LICENSE_1_0.txt)
  • Some code contributed by iMaptools.com is available under MIT-X license.

About

Repository contains pgRouting library. Development branch is "develop", stable branch is "master"

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 85.1%
  • C++ 9.3%
  • PLpgSQL 1.9%
  • SQLPL 1.8%
  • CMake 1.0%
  • PLSQL 0.6%
  • Other 0.3%