GithubHelp home page GithubHelp logo

zibon / pgrouting Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pgrouting/pgrouting

0.0 1.0 0.0 5.22 MB

Repository contains pgRouting library. Current development branch for 2.0 release is "develop"

Home Page: http://www.pgrouting.org

License: GNU General Public License v2.0

pgrouting's Introduction

pgRouting - Routing on PostgreSQL

STATUS

The master branch mostly reflects our current 1.05 release. We are working on a major feature release 2.0.0 in the develop branch. We are currently in alpha stage of development and things are very stable. The 2.0 release is not backwards compatible with the 1.x releases because we have totally restructured the API and the source code to position the product for additional future growth. Once you see all the new functionality that we have added and the simplier API design we thing you will be very happy with the results.

LINKS

INTRODUCTION

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

This 2.0 library contains following features:

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

REQUIREMENTS for 2.0

  • C and C++ compilers
  • Postgresql version >= 8.4 (9.1 or higher recommended)
  • PostGIS version >= 1.5 (2.0 or higher recommended)
  • The Boost Graph Library (BGL). Version >= [TBD]
  • CMake >= 2.8.8
  • (optional, for Driving Distance) CGAL >= [TBD]
  • (optional, for Documentation) Sphinx >= [TBD]

INSTALLATION

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

COMPILATION

For MinGW on Windows

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

Also pre-built Windows binaries for 2.0 can be downloaded from:

http://www.postgis.net/windows_downloads

For Linux

    mkdir build
    cd build
    cmake -DWITH_DD=ON ..
    make
    sudo make install

Build with documentation (requires Sphinx)

    cmake -DWITH_DOC=ON -DWITH_DD=ON ..

Postgresql 9.1+

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

For older versions of postgresql

    createdb -T template1 template_postgis
    psql template_postgis -c "create language plpgsql"
    psql template_postgis -f /usr/share/postgresql/9.0/contrib/postgis-1.5/postgis.sql
    psql template_postgis -f /usr/share/postgresql/9.0/contrib/postgis-1.5/spatial_ref_sys.sql
    psql template_postgis -f /usr/share/postgresql/9.0/contrib/postgis_comments.sql

    createdb -T template_postgis template_pgrouting
    psql template_pgrouting -f /usr/share/postgresql/9.0/contrib/pgrouting-2.0/pgrouting.sql

    createdb -T template_pgrouting mydatabase

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.

pgrouting's People

Contributors

dkastl avatar drnextgis avatar justjkk avatar antonpa avatar woodbri avatar kiorky avatar geosanak avatar

Watchers

Khondoker Md. Razequl Islam avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.