#include <grass/gis.h>
Go to the source code of this file.
Functions | |
char * | G_find_cell (char *name, char *mapset) |
find a raster file | |
char * | G_find_cell2 (char *name, char *mapset) |
char* G_find_cell | ( | char * | name, | |
char * | mapset | |||
) |
find a raster file
Looks for the raster file name in the database. The mapset parameter can either be the empty string "", which means search all the mapsets in the user's current mapset search path,
char name[GNAME_MAX]; char *mapset; if ((mapset = G_find_cell(name,"")) = = NULL) // not found
char name[GNAME_MAX]; if (G_find_cell(name,G_mapset( )) = = NULL) // not found
name | ||
mapset |
Definition at line 60 of file find_cell.c.
References G_find_file().
Referenced by G__check_for_auto_masking(), G__mask_info(), G__open_cell_old(), G_get_cellhd(), G_raster_map_is_fp(), and G_raster_map_type().
char* G_find_cell2 | ( | char * | name, | |
char * | mapset | |||
) |
Definition at line 67 of file find_cell.c.
References G_find_file2().
Referenced by G_check_input_output_name().