.TH v.in.lines 1grass "" "GRASS 6.4.4" "Grass User's Manual" .SH NAME \fI\fBv.in.lines\fR\fR - Import ASCII x,y[,z] coordinates as a series of lines. .SH KEYWORDS vector, import .SH SYNOPSIS \fBv.in.lines\fR .br \fBv.in.lines help\fR .br \fBv.in.lines\fR [\-\fBz\fR] \fBinput\fR=\fIstring\fR \fBoutput\fR=\fIstring\fR [\fBfs\fR=\fIcharacter\fR] [\-\-\fBoverwrite\fR] [\-\-\fBverbose\fR] [\-\-\fBquiet\fR] .SS Flags: .IP "\fB\-z\fR" 4m .br Create a 3D line from 3 column data .IP "\fB\-\-overwrite\fR" 4m .br Allow output files to overwrite existing files .IP "\fB\-\-verbose\fR" 4m .br Verbose module output .IP "\fB\-\-quiet\fR" 4m .br Quiet module output .PP .SS Parameters: .IP "\fBinput\fR=\fIstring\fR" 4m .br Name of input file (or "-" to read from stdin) .IP "\fBoutput\fR=\fIstring\fR" 4m .br Name for output vector map .IP "\fBfs\fR=\fIcharacter\fR" 4m .br Field separator .br Default: \fI|\fR .PP .SH DESCRIPTION Imports a stream of ASCII x,y[,z] coordinates as a line or series of lines. .SH NOTES Input ASCII coordinates are simply a series of "x y" data points. Lines are separated by a row containing "NaN NaN". .PP The user can import 3D lines by providing 3 columns of data in the input stream and using the \fB-z\fR flag. .PP This script is a simple wrapper around the \fIv.in.mapgen\fR module. .SH EXAMPLE \fC .DS .br v.in.lines in=- out=two_lines fs=, <