GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
|
Vector library - reading data (OGR format) More...
Go to the source code of this file.
Functions | |
int | V1_read_next_line_ogr (struct Map_info *Map, struct line_pnts *line_p, struct line_cats *line_c) |
Read next feature from OGR layer. Skip empty features (level 1 without topology). More... | |
int | V2_read_next_line_ogr (struct Map_info *Map, struct line_pnts *line_p, struct line_cats *line_c) |
Read next feature from OGR layer on topological level. More... | |
int | V1_read_line_ogr (struct Map_info *Map, struct line_pnts *line_p, struct line_cats *line_c, off_t offset) |
Read feature from OGR layer at given offset (level 1 without topology) More... | |
Vector library - reading data (OGR format)
Higher level functions for reading/writing/manipulating vectors.
(C) 2001-2011 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 read_ogr.c.
int V1_read_line_ogr | ( | struct Map_info * | Map, |
struct line_pnts * | line_p, | ||
struct line_cats * | line_c, | ||
off_t | offset | ||
) |
Read feature from OGR layer at given offset (level 1 without topology)
This function implements random access on level 1.
Map | pointer to Map_info structure | |
[out] | line_p | container used to store line points within (pointer line_pnts struct) |
[out] | line_c | container used to store line categories within (pointer line_cats struct) |
offset | given offset |
Definition at line 179 of file read_ogr.c.
int V1_read_next_line_ogr | ( | struct Map_info * | Map, |
struct line_pnts * | line_p, | ||
struct line_cats * | line_c | ||
) |
Read next feature from OGR layer. Skip empty features (level 1 without topology).
This function implements sequential access.
The action of this routine can be modified by:
Map | pointer to Map_info structure | |
[out] | line_p | container used to store line points within |
[out] | line_c | container used to store line categories within |
Definition at line 50 of file read_ogr.c.
int V2_read_next_line_ogr | ( | struct Map_info * | Map, |
struct line_pnts * | line_p, | ||
struct line_cats * | line_c | ||
) |
Read next feature from OGR layer on topological level.
This function implements sequential access.
Map | pointer to Map_info structure | |
[out] | line_p | container used to store line points within (pointer to line_pnts struct) |
[out] | line_c | container used to store line categories within (pointer to line_cats struct) |
Definition at line 76 of file read_ogr.c.