Revision 88, 0.8 KB
(checked in by takubo, 3 years ago)
|
add files to create deb package
|
Line | |
---|
1 | pgrouting for Debian |
---|
2 | ------------------------------------ |
---|
3 | |
---|
4 | * core and extra |
---|
5 | pgRoutings consits from core(shortest path algorithm) and extra |
---|
6 | (TSP and driving distance). This package includes only core functionality, |
---|
7 | because TSP depends on GAUL library, which there is no Debian package in official, |
---|
8 | and driving distance depends on CGAL library, which is licensed under QPL |
---|
9 | so there is non-free section in Debian. |
---|
10 | |
---|
11 | * Enable pgRouting your database |
---|
12 | Two sql files at /usr/share/postlbs/. You can enable pgRouting functionality |
---|
13 | into your database with following commands. |
---|
14 | |
---|
15 | $ psql -f /usr/share/postlbs/routing_core.sql <your db> |
---|
16 | $ psql -f /usr/share/postlbs/routing_core_wrappers.sql <your db> |
---|
17 | |
---|
18 | -- Akio Takubo <takubo@saruga-tondara.net> Sun, 13 Jan 2008 18:14:48 +0900 |
---|