[GRASS-SVN] r53143 - in grass/trunk: include include/vect lib/python
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Sep 9 11:54:55 PDT 2012
Author: neteler
Date: 2012-09-09 11:54:54 -0700 (Sun, 09 Sep 2012)
New Revision: 53143
Modified:
grass/trunk/include/la.h
grass/trunk/include/vect/dig_defines.h
grass/trunk/lib/python/core.py
grass/trunk/lib/python/raster.py
grass/trunk/lib/python/raster3d.py
Log:
doxygen errors fixed
Modified: grass/trunk/include/la.h
===================================================================
--- grass/trunk/include/la.h 2012-09-09 16:08:13 UTC (rev 53142)
+++ grass/trunk/include/la.h 2012-09-09 18:54:54 UTC (rev 53143)
@@ -7,7 +7,7 @@
* This program is free software under the GNU General Public License
* (>=v2). Read the file COPYING that comes with GRASS for details.
*
- * \author David D. Gray <ddgray AT armacde demon co uk>
+ * \author David D. Gray, ddgray at armacde.demon co uk
* \author GRASS GIS Development Team
*
* \date 2000-2007
Modified: grass/trunk/include/vect/dig_defines.h
===================================================================
--- grass/trunk/include/vect/dig_defines.h 2012-09-09 16:08:13 UTC (rev 53142)
+++ grass/trunk/include/vect/dig_defines.h 2012-09-09 18:54:54 UTC (rev 53143)
@@ -184,7 +184,7 @@
#define GV_POINTS (GV_POINT | GV_CENTROID )
#define GV_LINES (GV_LINE | GV_BOUNDARY )
-/*! \types Used in store like 'coor' file or postgis type column (must not change) */
+/*! \brief Types used in store like 'coor' file or postgis type column (must not change) */
#define GV_STORE_POINT 1
#define GV_STORE_LINE 2
#define GV_STORE_BOUNDARY 3
Modified: grass/trunk/lib/python/core.py
===================================================================
--- grass/trunk/lib/python/core.py 2012-09-09 16:08:13 UTC (rev 53142)
+++ grass/trunk/lib/python/core.py 2012-09-09 18:54:54 UTC (rev 53143)
@@ -1168,7 +1168,7 @@
def mapsets(search_path = False):
"""!List available mapsets
- @param searchPatch True to list mapsets only in search path
+ @param search_path True to list mapsets only in search path
@return list of mapsets
"""
@@ -1196,7 +1196,7 @@
@param dbase path to GRASS database
@param location location name to create
- @param epgs if given create new location based on EPSG code
+ @param epsg if given create new location based on EPSG code
@param proj4 if given create new location based on Proj4 definition
@param filename if given create new location based on georeferenced file
@param wkt if given create new location based on WKT definition (path to PRJ file)
Modified: grass/trunk/lib/python/raster.py
===================================================================
--- grass/trunk/lib/python/raster.py 2012-09-09 16:08:13 UTC (rev 53142)
+++ grass/trunk/lib/python/raster.py 2012-09-09 18:54:54 UTC (rev 53143)
@@ -89,6 +89,9 @@
"""!Interface to r.mapcalc.
@param exp expression
+ @param quiet True to run quietly (<tt>--q</tt>)
+ @param verbose True to run verbosely (<tt>--v</tt>)
+ @param overwrite True to enable overwriting the output (<tt>--o</tt>)
@param kwargs
"""
t = string.Template(exp)
@@ -117,6 +120,9 @@
\endcode
@param exp expression
+ @param quiet True to run quietly (<tt>--q</tt>)
+ @param verbose True to run verbosely (<tt>--v</tt>)
+ @param overwrite True to enable overwriting the output (<tt>--o</tt>)
@param kwargs
@return Popen object
@@ -128,3 +134,4 @@
quiet = quiet,
verbose = verbose,
overwrite = overwrite)
+
Modified: grass/trunk/lib/python/raster3d.py
===================================================================
--- grass/trunk/lib/python/raster3d.py 2012-09-09 16:08:13 UTC (rev 53142)
+++ grass/trunk/lib/python/raster3d.py 2012-09-09 18:54:54 UTC (rev 53143)
@@ -74,6 +74,9 @@
"""!Interface to r3.mapcalc.
@param exp expression
+ @param quiet True to run quietly (<tt>--q</tt>)
+ @param verbose True to run verbosely (<tt>--v</tt>)
+ @param overwrite True to enable overwriting the output (<tt>--o</tt>)
@param kwargs
"""
t = string.Template(exp)
More information about the grass-commit
mailing list