Man page - spatialite_network(1)
Packages contains this manual
- spatialite_dxf(1)
- spatialite_osm_raw(1)
- spatialite_xml_load(1)
- spatialite_network(1)
- shp_doctor(1)
- spatialite_osm_net(1)
- spatialite_xml_print(1)
- spatialite_xml_validator(1)
- spatialite_osm_map(1)
- spatialite_tool(1)
- shp_sanitize(1)
- spatialite_xml_collapse(1)
- spatialite_gml(1)
- exif_loader(1)
- spatialite_convert(1)
- spatialite_osm_overpass(1)
- spatialite(1)
- spatialite_osm_filter(1)
apt-get install spatialite-bin
Manual
spatialite_network
NAMESYNOPSIS
DESCRIPTION
OPTIONS
NAME
spatialite_network - analysis/validation tool for topological networks
SYNOPSIS
spatialite_network [ -h ] [ -d pathname ] [ -T table_name ] [ -f col_name ] [ -t col_name ] [ -g col_name ] [ -c col_name ] [ --a-star-supported | --a-star-excluded ] [ -n col_name ] [ --bidirectional | --unidirectional [ --oneway-tofrom col_name ] [ --oneway-fromto col_name ] ] [ -o table_name ] [ --overwrite-output ]
DESCRIPTION
spatialite_network is an analysis / validation tool for topological networks
OPTIONS
-h , --help
show help message
-d pathname , --db-path pathname
the SpatiaLite db path
-T table_name , --table table_name
the db table to be validated
-f col_name , --from-column col_name
the column for FromNode
-t col_name , --to-column col_name
the column for ToNode
-g col_name , --geometry-column col_name
the column for Geometry
-c col_name , --cost-column col_name
the column for Cost
if omitted, GLength(g) will be used by default
--a-star-supported
support the A* algorithm (default)
--a-star-excluded
no support for the A* algorithm
-n col_name , --name-column col_name
the column for RoadName
--bidirectional
assume bidirectional arcs (default)
--unidirectional
donβt assume bidirectional arcs
if *bidirectional* each arc connecting FromNode to ToNode is implicitly connecting ToNode to FromNode as well; in this case you can select the following further options: --oneway-tofrom & --oneway-fromto
--oneway-tofrom col_name
OneWay To->From column name
--oneway-fromto col_name
OneWay From->To column name
both columns are expected to contain BOOLEAN values [1-0]; 1 means that the arc connection in the given direction is valid, otherwise 0 means a forbidden connection
-o table_name , --output-table table_name
create a permanent NETWORK-DATA table
--overwrite-output
drop and recreate table_name if it exists