1
vote
0answers
15 views

Pgrouting - Shortest Path function dynamic parameter

I have a bicycle network, which contains mixed records with directed and undirected edge, with the following information: gid start_node end_node link cost bidirected (with value 'Y', 'N') ecc. My ...
0
votes
0answers
14 views

driving_distance does not return all sets of distance

I'm working with pgRouting, trying to get the distance matrix along the river system. I use driving_distance function and it seems like I am getting what I want, but when I check the result table ...
0
votes
2answers
104 views

get osm data directly from database for pgrouting

I am creating an application which requires a route finder. I have OSM data stored in a PostGIS database and currently this data may be manipulated by my application e.g. roads may be moved, added or ...
0
votes
1answer
232 views

Create a consistent topology using pgrouting

I'm developing an application that needs routing information for certain cities. First, I downloaded a openstreetmap datafile (*.osm) and then I imported it into a postgreSQL database using ...
0
votes
0answers
50 views

How to create a network with all the track points

I have created a sample network through the use of gps visualizer. Than I used the ogr2ogr function to import this data in my database. Now I have a table which holds all the track points of these ...
3
votes
0answers
105 views

build a road network

I have various number of tracks which represents different roads. Each track represent one road. I have loaded this gpx file into my postgres. Now my problem is how am I going to build a network ...
0
votes
0answers
59 views

KML2SHP function [closed]

I would like a kml2shp function. Is there exist a function to change kml into shape file? I only found software that do it rather than a function that can be executed from command prompt. Any ...
0
votes
2answers
216 views

Assign_vertex_id function

When I execute the following query; SELECT Assign_vertex_id('ways', 0.00001, 'the_geom', 'gid') I am getting the following error; NOTICE: CREATE TABLE will create implicit sequence ...
-1
votes
1answer
52 views

Import tracks and routes in database [closed]

I have some tracks and routes on a garmin nuvi gps. Now I would like to import these routes in my postgres database. I already downloaded garmin map source in order to see my data. Is it possible ...
0
votes
1answer
551 views

ERROR: function addgeometrycolumn is not unique

I am trying to use the following function; SELECT Assign_vertex_id('ways', 0.00001, 'the_geom', 'gid') but for some reason it is giving me the following error; NOTICE: CREATE TABLE will create ...
0
votes
2answers
429 views

assign_vertex_id error

I am trying to test if pgrouting works fine or not. To do so I have created a table containing the following attributes. Columns: gid | length | the_geom | source | target Now my ...
0
votes
2answers
133 views

Where does ELOG messages go?

I'm working with a C Library, librouting_darp.dll which uses the function elog to log debugging messages of its processes. But I don't know where to look for the messages which the function is ...
1
vote
1answer
125 views

pgRouting Front End/API

I can't find any reliable info about some kind of "human" readable front end or api to pgRouting. I have OSM PostGIS/pgRouting database which I would like to use to calculate paths between points. ...