SYNOPSIS

spatialite_network \kx [-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

\*(T<-h\*(T>, \*(T<--help\*(T>

show help message

\*(T<-d\*(T> pathname, \*(T<--db-path\*(T> pathname

the SpatiaLite db path

\*(T<-T\*(T> table_name, \*(T<--table\*(T> table_name

the db table to be validated

\*(T<-f\*(T> col_name, \*(T<--from-column\*(T> col_name

the column for FromNode

\*(T<-t\*(T> col_name, \*(T<--to-column\*(T> col_name

the column for ToNode

\*(T<-g\*(T> col_name, \*(T<--geometry-column\*(T> col_name

the column for Geometry

\*(T<-c\*(T> col_name, \*(T<--cost-column\*(T> col_name

the column for Cost

if omitted, GLength(g) will be used by default

\*(T<--a-star-supported\*(T>

support the A* algorithm (default)

\*(T<--a-star-excluded\*(T>

no support for the A* algorithm

\*(T<-n\*(T> col_name, \*(T<--name-column\*(T> col_name

the column for RoadName

\*(T<--bidirectional\*(T>

assume bidirectional arcs (default)

\*(T<--unidirectional\*(T>

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: \*(T<--oneway-tofrom\*(T> & \*(T<--oneway-fromto\*(T>

\*(T<--oneway-tofrom\*(T> col_name

OneWay To->From column name

\*(T<--oneway-fromto\*(T> 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

\*(T<-o\*(T> table_name, \*(T<--output-table\*(T> table_name

create a permanent NETWORK-DATA table

\*(T<--overwrite-output\*(T>

drop and recreate table_name if it exists