Explorar el Código

doxygen errors fixed

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@53143 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler hace 12 años
padre
commit
2d97517962
Se han modificado 5 ficheros con 14 adiciones y 4 borrados
  1. 1 1
      include/la.h
  2. 1 1
      include/vect/dig_defines.h
  3. 2 2
      lib/python/core.py
  4. 7 0
      lib/python/raster.py
  5. 3 0
      lib/python/raster3d.py

+ 1 - 1
include/la.h

@@ -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@armacde.demon co uk
  * \author GRASS GIS Development Team
  *
  * \date 2000-2007

+ 1 - 1
include/vect/dig_defines.h

@@ -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

+ 2 - 2
lib/python/core.py

@@ -1168,7 +1168,7 @@ def float_or_dms(s):
 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 @@ def create_location(dbase, location,
     
     @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)

+ 7 - 0
lib/python/raster.py

@@ -89,6 +89,9 @@ def mapcalc(exp, quiet = False, verbose = False, overwrite = False, **kwargs):
     """!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 @@ def mapcalc_start(exp, quiet = False, verbose = False, overwrite = False, **kwar
     \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 @@ def mapcalc_start(exp, quiet = False, verbose = False, overwrite = False, **kwar
                         quiet = quiet,
                         verbose = verbose,
                         overwrite = overwrite)
+

+ 3 - 0
lib/python/raster3d.py

@@ -74,6 +74,9 @@ def mapcalc3d(exp, quiet = False, verbose = False, overwrite = False, **kwargs):
     """!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)