GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
|
List elements. More...
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <string.h>
#include <sys/types.h>
#include <dirent.h>
#include <grass/gis.h>
#include <grass/glocale.h>
Go to the source code of this file.
Functions | |
void | G_list_element (const char *element, const char *desc, const char *mapset, int(*lister)(const char *, const char *, const char *)) |
General purpose list function. More... | |
char ** | G_list (int element, const char *gisbase, const char *location, const char *mapset) |
List specified type of elements. Application must release the allocated memory. More... | |
void | G_free_list (char **list) |
Free list. More... | |
List elements.
(C) 2000, 2010 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 gis/list.c.
void G_free_list | ( | char ** | list | ) |
Free list.
list | char* array to be freed |
Definition at line 251 of file gis/list.c.
References G_free().
char** G_list | ( | int | element, |
const char * | gisbase, | ||
const char * | location, | ||
const char * | mapset | ||
) |
List specified type of elements. Application must release the allocated memory.
element | element type (G_ELEMENT_RASTER, G_ELEMENT_VECTOR, G_ELEMENT_REGION ) |
gisbase | path to GISBASE |
location | location name |
mapset | mapset name |
Definition at line 176 of file gis/list.c.
References _, count, G_calloc, G_ELEMENT_GROUP, G_ELEMENT_RASTER, G_ELEMENT_REGION, G_ELEMENT_VECTOR, G_fatal_error(), G_free(), G_malloc, list, NULL, opendir(), and readdir().
void G_list_element | ( | const char * | element, |
const char * | desc, | ||
const char * | mapset, | ||
int(*)(const char *, const char *, const char *) | lister | ||
) |
General purpose list function.
Will list files from all mapsets in the mapset list for a specified database element.
Note: output is to stdout piped thru the more utility
Given file name, and mapset, lister() should copy a string into 'buf' when called with name == "", should set buf to general title for mapset list.
element | database element (eg, "cell", "cellhd", etc.) |
desc | description for element (if NULL, element is used) |
mapset | mapset to be listed "" to list all mapsets in mapset search list "." will list current mapset |
lister | if given will call this routine to get a list title. NULL if no titles desired. |
Definition at line 50 of file gis/list.c.
Referenced by M_do_list().