/*! * \file strings.c * * \brief GIS Library - Find raster map * * (C) 1999-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. * * \author Original author CERL */ #include /*! * \brief Find a raster map * * Looks for the raster map 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 (see \ref Mapset_Search_Path for more details about the search * path) or it can be a specific mapset name, which means look for the * raster map only in this one mapset (for example, in the current * mapset). If found, the mapset where the raster map lives is * returned. If not found, the NULL pointer is returned. * * Note: If the user specifies a fully qualified raster map which * exists, then G_find_raster() modifies name by removing * the "@mapset". * * For example, to find a raster map anywhere in the database: \code char name[GNAME_MAX]; char *mapset; if ((mapset = G_find_raster(name,"")) == NULL) // not found \endcode * * To check that the raster map exists in the current mapset: * \code char name[GNAME_MAX]; if (G_find_raster(name, G_mapset()) == NULL) // not found \endcode * * \param[in,out] name map name * \param mapset mapset name or "" * * \return mapset where raster map was found * \return NULL if not found */ const char *G_find_raster(char *name, const char *mapset) { G_debug(1, "G_find_raster(): name=%s mapset=%s", name, mapset); return G_find_file("cell", name, mapset); } /*! * \brief Find a raster map (look but don't touch) * * The same as G_find_raster() but doesn't remove the "@mapset" * qualification from name, if present. * * Returns NULL if the map wasn't found, or the mapset the raster was * found in if it was. * * \param name map name * \param mapset mapset name or "" * * \return mapset where raster map was found * \return NULL if not found */ const char *G_find_raster2(const char *name, const char *mapset) { G_debug(1, "G_find_raster2(): name=%s mapset=%s", name, mapset); return G_find_file2("cell", name, mapset); }