GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
|
Vector library - GEOS support. More...
Go to the source code of this file.
Functions | |
GEOSGeometry * | Vect_read_line_geos (struct Map_info *Map, int line, int *type) |
Read vector feature and stores it as GEOSGeometry instance. More... | |
GEOSGeometry * | Vect_read_area_geos (struct Map_info *Map, int area) |
Read vector area and stores it as GEOSGeometry instance (polygon) More... | |
GEOSGeometry * | Vect_line_to_geos (const struct line_pnts *points, int type, int with_z) |
Create GEOSGeometry of given type from feature points. More... | |
GEOSCoordSequence * | Vect_get_area_points_geos (struct Map_info *Map, int area) |
Returns the polygon array of points, i.e. outer ring (shell) More... | |
GEOSCoordSequence * | Vect_get_isle_points_geos (struct Map_info *Map, int isle) |
Returns the polygon (isle) array of points (inner ring) More... | |
Vector library - GEOS support.
Higher level functions for reading/writing/manipulating vectors.
(C) 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 geos.c.
GEOSCoordSequence* Vect_get_area_points_geos | ( | struct Map_info * | Map, |
int | area | ||
) |
Returns the polygon array of points, i.e. outer ring (shell)
You should free allocated memory by GEOSCoordSeq_destroy().
See also Vect_get_area_points().
Map | pointer to Map_info |
area | area id |
Definition at line 401 of file geos.c.
References _, Plus_head::Area, G_debug(), G_warning(), NULL, and Map_info::plus.
GEOSCoordSequence* Vect_get_isle_points_geos | ( | struct Map_info * | Map, |
int | isle | ||
) |
Returns the polygon (isle) array of points (inner ring)
You should free allocated memory by GEOSCoordSeq_destroy().
See also Vect_get_isle_points().
Map | pointer to Map_info |
isle | isel id |
Definition at line 432 of file geos.c.
References G_debug(), Plus_head::Isle, and Map_info::plus.
GEOSGeometry* Vect_line_to_geos | ( | const struct line_pnts * | points, |
int | type, | ||
int | with_z | ||
) |
Create GEOSGeometry of given type from feature points.
Supported types:
You should free allocated memory by GEOSGeom_destroy().
points | pointer to line_pnts structure |
type | feature type (see supported types) |
with_z | Set to 1 if the feature is 3d, 0 otherwise |
GEOSGeometry* Vect_read_area_geos | ( | struct Map_info * | Map, |
int | area | ||
) |
Read vector area and stores it as GEOSGeometry instance (polygon)
You should free allocated memory by GEOSGeom_destroy().
Map | pointer to Map_info structure |
area | area id |
Definition at line 81 of file geos.c.
Referenced by Vect_read_area_to_wkb(), and Vect_read_area_to_wkt().
GEOSGeometry* Vect_read_line_geos | ( | struct Map_info * | Map, |
int | line, | ||
int * | type | ||
) |
Read vector feature and stores it as GEOSGeometry instance.
Supported feature types:
You should free allocated memory by GEOSGeom_destroy().
Map | pointer to Map_info structure | |
line | feature id | |
[out] | type | feature type or NULL |