logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

v.parallel - Creates parallel line to input vector lines.

Authors

       Radim Blazek
       Rewritten by Rosen Matev (with support through the Google Summer of Code program 2008)

Description

v.parallel creates parallel lines to the input vector lines which can be used as half-buffers.

Keywords

       vector, geometry, buffer, line

Known Issues

       There  is a problem with side-offset parallel line generation for inside corners.  To avoid this problem,
       the -b flag might be used.

Name

v.parallel  - Creates parallel line to input vector lines.

Notes

       Usage of -b flag will overrule the side parameter.

See Also

v.buffer

Source Code

       Available at: v.parallel source code (history)

       Accessed: Friday Apr 04 01:20:30 2025

       Main index | Vector index | Topics index | Keywords index | Graphical index | Full index

       © 2003-2025 GRASS Development Team, GRASS GIS 8.4.1 Reference Manual

GRASS 8.4.1                                                                                   v.parallel(1grass)

Synopsis

v.parallelv.parallel--helpv.parallel   [-rb]   input=name    [layer=string]    output=namedistance=float   [minordistance=float]
       [angle=float]  side=string  [tolerance=float]   [--overwrite]  [--help]  [--verbose]  [--quiet]  [--ui]

   Flags:-r
           Make outside corners round

       -b
           Create buffer-like parallel lines

       --overwrite
           Allow output files to overwrite existing files

       --help
           Print usage summary

       --verbose
           Verbose module output

       --quiet
           Quiet module output

       --ui
           Force launching GUI dialog

   Parameters:input=name[required]
           Name of input vector map
           Or data source for direct OGR access

       layer=string
           Layer number or name (’-1’ for all layers)
           A single vector map can be connected to multiple database tables. This number determines which  table
           to use. When used with direct OGR access this is the layer name.
           Default: -1output=name[required]
           Name for output vector map

       distance=float[required]
           Offset along major axis in map units
           Options: 0-100000000minordistance=float
           Offset along minor axis in map units
           Options: 0-100000000angle=float
           Angle of major axis in degrees
           Default: 0side=string[required]
           Side
           Options: left,right,both
           Default: rightleft: Parallel line is on the left
           right: Parallel line is on the right
           both: Parallel lines on both sides

       tolerance=float
           Tolerance of arc polylines in map units
           Options: 0-100000000

See Also