pgRouting

Changeset 217 for tools

Show
Ignore:
Timestamp:
09/02/08 14:54:09 (3 months ago)
Author:
anton
Message:

osm2pgrouting: tolerance value reduced

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tools/osm2pgrouting/trunk/src/Export2DB.cpp

    r210 r217  
    155155        result = PQexec(mycon,"CREATE INDEX target_idx ON ways(target);"); 
    156156        result = PQexec(mycon,"CREATE INDEX geom_idx ON ways USING GIST(the_geom GIST_GEOMETRY_OPS);"); 
    157         result = PQexec(mycon,"SELECT assign_vertex_id('ways', 0.0001, 'the_geom', 'gid');"); 
     157        result = PQexec(mycon,"SELECT assign_vertex_id('ways', 0.00001, 'the_geom', 'gid');"); 
    158158         
    159159}