GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
|
Vector library - clean geometry (break polygons) More...
#include <stdlib.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <math.h>
#include <grass/vector.h>
#include <grass/glocale.h>
Go to the source code of this file.
Functions | |
void | Vect_break_polygons_file (struct Map_info *Map, int type, struct Map_info *Err) |
void | Vect_break_polygons_mem (struct Map_info *Map, int type, struct Map_info *Err) |
void | Vect_break_polygons (struct Map_info *Map, int type, struct Map_info *Err) |
Break polygons in vector map. More... | |
Vector library - clean geometry (break polygons)
Higher level functions for reading/writing/manipulating vectors.
(C) 2001-2009 by the GRASS Development Team
This program is free software under the GNU General Public License (>=v2). Read the file COPYING that comes with GRASS for details.
Definition in file break_polygons.c.
Break polygons in vector map.
Breaks lines specified by type in vector map. Points at intersections may be optionally written to error map. Input vector map must be opened on level 2 for update at least on GV_BUILD_BASE.
Function is optimized for closed polygons rings (e.g. imported from OGR) but with clean geometry - adjacent polygons mostly have identical boundary. Function creates database of ALL points in the vector map, and then is looking for those where polygons should be broken. Lines may be broken only at points existing in input vector map!
Map | input map where polygons will be broken |
type | type of line to be broken (GV_LINE or GV_BOUNDARY) |
Err | vector map where points at intersections will be written or NULL |
Definition at line 671 of file break_polygons.c.
Definition at line 107 of file break_polygons.c.
Definition at line 403 of file break_polygons.c.