Skip to content
This repository was archived by the owner on Jan 2, 2024. It is now read-only.

Tristramg/mumoro

Folders and files

NameName
Last commit message
Last commit date
Jun 29, 2010
Jan 24, 2011
Oct 10, 2010
Jul 20, 2010
Jul 28, 2010
Apr 13, 2010
Jan 18, 2009
Jan 18, 2009
Jul 27, 2010
Jan 26, 2011
Jun 16, 2010
Jul 23, 2010
Jan 26, 2011
Oct 10, 2010
Jun 8, 2010

Repository files navigation

Mumoro: MUltiModal MUltiObjective ROuting

This library aims to provide multimodal routing: combining subway, walking and bike.

It is also multiobjective: it finds the best route optimizing according to time taken,
mode changes, CO2 emissions etc.
If there are two routes, the first being faster but emits more CO2 (100% by car) than
an other route (100% cycling), it will return both routes as none is strictly better than
an other.

The lib folder provides the algorithms
The web folder is an example of web application (can be run as standalone web server)


== Requirements ==
On ubuntu or debian, please install the developpment versions
* GCC: C++ complier (other aren't testetd)
* Boost: (used for graph the graph structures and serialization) 
* Python
* Swig: for interfacing python

== How to install ==
# Just run the following command
sudo python setup.py install

# Alternative:
# If you don't have the rights to install it system-wide, or don't want to, use virtualenv:
# Create a virtual environment and activate it
python virtualenv.py env
source env/bin/activate
python setup.py install


== How to run it ==
* grab an osm database either
  * on http://www.openstreetmap.org
      * center on your favorite town
      * clic on the export tab an select OpenStreetMap XML Data
      * if it's gray'ed out, try zooming on a smaller part of the town
  * on http://download.geofabrik.de/osm/
  * on http://downloads.cloudmade.com/ 

Comments at tristramg (a) gmail (dot) com