[GRASS-SVN] r51759 - in grass/trunk/temporal: t.create t.list t.rast.aggregate t.rast.aggregate.ds t.rast.export t.rast.extract t.rast.gapfill t.rast.import t.rast.list t.rast.mapcalc t.rast.series t.rast.univar t.rast3d.extract t.rast3d.list t.rast3d.mapcalc t.rast3d.univar t.register t.sample t.support t.vect.extract t.vect.list t.vect.univar t.vect.what.strds

svn_grass at osgeo.org svn_grass at osgeo.org
Fri May 25 11:47:07 EDT 2012


Author: neteler
Date: 2012-05-25 08:47:07 -0700 (Fri, 25 May 2012)
New Revision: 51759

Modified:
   grass/trunk/temporal/t.create/t.create.py
   grass/trunk/temporal/t.list/t.list.py
   grass/trunk/temporal/t.rast.aggregate.ds/t.rast.aggregate.ds.py
   grass/trunk/temporal/t.rast.aggregate/t.rast.aggregate.py
   grass/trunk/temporal/t.rast.export/t.rast.export.py
   grass/trunk/temporal/t.rast.extract/t.rast.extract.py
   grass/trunk/temporal/t.rast.gapfill/t.rast.gapfill.py
   grass/trunk/temporal/t.rast.import/t.rast.import.py
   grass/trunk/temporal/t.rast.list/t.rast.list.py
   grass/trunk/temporal/t.rast.mapcalc/t.rast.mapcalc.py
   grass/trunk/temporal/t.rast.series/t.rast.series.py
   grass/trunk/temporal/t.rast.univar/t.rast.univar.py
   grass/trunk/temporal/t.rast3d.extract/t.rast3d.extract.py
   grass/trunk/temporal/t.rast3d.list/t.rast3d.list.py
   grass/trunk/temporal/t.rast3d.mapcalc/t.rast3d.mapcalc.py
   grass/trunk/temporal/t.rast3d.univar/t.rast3d.univar.py
   grass/trunk/temporal/t.register/t.register.py
   grass/trunk/temporal/t.sample/t.sample.py
   grass/trunk/temporal/t.support/t.support.py
   grass/trunk/temporal/t.vect.extract/t.vect.extract.py
   grass/trunk/temporal/t.vect.list/t.vect.list.py
   grass/trunk/temporal/t.vect.univar/t.vect.univar.py
   grass/trunk/temporal/t.vect.what.strds/t.vect.what.strds.py
Log:
Fix some message strings

Modified: grass/trunk/temporal/t.create/t.create.py
===================================================================
--- grass/trunk/temporal/t.create/t.create.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.create/t.create.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -32,7 +32,7 @@
 #%option
 #% key: semantictype
 #% type: string
-#% description: The semantic type of the space time dataset
+#% description: Semantic type of the space time dataset
 #% required: yes
 #% multiple: no
 #% options: min,max,sum,mean

Modified: grass/trunk/temporal/t.list/t.list.py
===================================================================
--- grass/trunk/temporal/t.list/t.list.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.list/t.list.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -15,7 +15,7 @@
 #############################################################################
 
 #%module
-#% description: Lists space time datasets and map.
+#% description: Lists space time datasets and maps.
 #% keywords: temporal
 #% keywords: list
 #%end
@@ -42,7 +42,7 @@
 #%option
 #% key: columns
 #% type: string
-#% description: Which columns should be printed to stdout. Columns number_of_maps and granularity only available for space time datasets
+#% description: Columns to be printed to stdout. Columns number_of_maps and granularity only available for space time datasets
 #% required: no
 #% multiple: yes
 #% options: id, name, creator, mapset, number_of_maps, creation_time, start_time, end_time, north, south, west, east, granularity, all

Modified: grass/trunk/temporal/t.rast.aggregate/t.rast.aggregate.py
===================================================================
--- grass/trunk/temporal/t.rast.aggregate/t.rast.aggregate.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.rast.aggregate/t.rast.aggregate.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -15,7 +15,7 @@
 #############################################################################
 
 #%module
-#% description: Create a new space time raster dataset from the aggregated data of an existing space time raster dataset.
+#% description: Creates a new space time raster dataset from the aggregated data of an existing space time raster dataset.
 #% keywords: temporal
 #% keywords: aggregation
 #%end
@@ -29,7 +29,7 @@
 #%option
 #% key: granularity
 #% type: string
-#% description: The aggregation granularity, format absolute time "x years, x months, x weeks, x days, x hours, x minutes, x seconds" or a double value for relative time
+#% description: Aggregation granularity, format absolute time "x years, x months, x weeks, x days, x hours, x minutes, x seconds" or a double value for relative time
 #% required: yes
 #% multiple: no
 #%end

Modified: grass/trunk/temporal/t.rast.aggregate.ds/t.rast.aggregate.ds.py
===================================================================
--- grass/trunk/temporal/t.rast.aggregate.ds/t.rast.aggregate.ds.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.rast.aggregate.ds/t.rast.aggregate.ds.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -25,7 +25,7 @@
 
 #%option G_OPT_STDS_INPUT
 #% key: sample
-#% description: The time intervals from this space time dataset (raster, vector or raster3d) are used for aggregation computation. 
+#% description: Time intervals from this space time dataset (raster, vector or raster3d) are used for aggregation computation
 #%end
 
 #%option G_OPT_STDS_TYPE

Modified: grass/trunk/temporal/t.rast.export/t.rast.export.py
===================================================================
--- grass/trunk/temporal/t.rast.export/t.rast.export.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.rast.export/t.rast.export.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -38,7 +38,7 @@
 #%option
 #% key: compression
 #% type: string
-#% description: Chose the compression of the tar archive
+#% description: Compression method of the tar archive
 #% required: no
 #% multiple: no
 #% options: no,gzip,bzip2

Modified: grass/trunk/temporal/t.rast.extract/t.rast.extract.py
===================================================================
--- grass/trunk/temporal/t.rast.extract/t.rast.extract.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.rast.extract/t.rast.extract.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -29,7 +29,7 @@
 #%option
 #% key: expression
 #% type: string
-#% description: The r.mapcalc expression assigned to all extracted raster maps
+#% description: r.mapcalc expression assigned to all extracted raster maps
 #% required: no
 #% multiple: no
 #%end
@@ -44,7 +44,7 @@
 #%option
 #% key: nprocs
 #% type: integer
-#% description: The number of r.mapcalc processes to run in parallel
+#% description: Number of r.mapcalc processes to run in parallel
 #% required: no
 #% multiple: no
 #% answer: 1

Modified: grass/trunk/temporal/t.rast.gapfill/t.rast.gapfill.py
===================================================================
--- grass/trunk/temporal/t.rast.gapfill/t.rast.gapfill.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.rast.gapfill/t.rast.gapfill.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -29,7 +29,7 @@
 #%option
 #% key: base
 #% type: string
-#% description: The base name of the interpolated raster maps. This name will be extended with a numerical prefix
+#% description: Base name of the interpolated raster maps. This name will be extended with a numerical prefix
 #% required: yes
 #% multiple: no
 #%end
@@ -37,7 +37,7 @@
 #%option
 #% key: nprocs
 #% type: integer
-#% description: The number of interpolation processes to run in parallel
+#% description: Number of interpolation processes to run in parallel
 #% required: no
 #% multiple: no
 #% answer: 1

Modified: grass/trunk/temporal/t.rast.import/t.rast.import.py
===================================================================
--- grass/trunk/temporal/t.rast.import/t.rast.import.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.rast.import/t.rast.import.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -67,7 +67,7 @@
 
 #%flag
 #% key: o
-#% description: override projection (use location's projection)
+#% description: Override projection (use location's projection)
 #%end
 
 #%flag

Modified: grass/trunk/temporal/t.rast.list/t.rast.list.py
===================================================================
--- grass/trunk/temporal/t.rast.list/t.rast.list.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.rast.list/t.rast.list.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -27,7 +27,7 @@
 #%option
 #% key: order
 #% type: string
-#% description: Order the space time dataset by category. 
+#% description: Order the space time dataset by category
 #% required: no
 #% multiple: yes
 #% options: id,name,creator,mapset,temporal_type,creation_time,start_time,end_time,north,south,west,east,nsres,ewres,cols,rows,number_of_cells,min,max 
@@ -37,7 +37,7 @@
 #%option
 #% key: columns
 #% type: string
-#% description: Select columns to be printed to stdout 
+#% description: Select columns to be printed to stdout
 #% required: no
 #% multiple: yes
 #% options: id,name,creator,mapset,temporal_type,creation_time,start_time,end_time,north,south,west,east,nsres,ewres,cols,rows,number_of_cells,min,max 
@@ -50,7 +50,7 @@
 #%option
 #% key: method
 #% type: string
-#% description: Which method should be used for data listing
+#% description: Method used for data listing
 #% required: no
 #% multiple: no
 #% options: cols,comma,delta,deltagaps,gran
@@ -60,7 +60,7 @@
 #%option
 #% key: fs
 #% type: string
-#% description: The field separator character between the columns, default is tabular "\t"
+#% description: Field separator character between the columns, default is tabular "\t"
 #% required: no
 #%end
 

Modified: grass/trunk/temporal/t.rast.mapcalc/t.rast.mapcalc.py
===================================================================
--- grass/trunk/temporal/t.rast.mapcalc/t.rast.mapcalc.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.rast.mapcalc/t.rast.mapcalc.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -26,7 +26,7 @@
 #%option
 #% key: expression
 #% type: string
-#% description: The r.mapcalc expression applied to each time step of the sampled data
+#% description: r.mapcalc expression applied to each time step of the sampled data
 #% required: yes
 #% multiple: no
 #%end
@@ -42,7 +42,7 @@
 #%option
 #% key: base
 #% type: string
-#% description: The base name of the new created raster maps. This name will be extended with a numerical prefix
+#% description: Base name of the new created raster maps. This name will be extended with a numerical prefix
 #% gisprompt: NULL
 #% required: yes
 #% multiple: no
@@ -51,7 +51,7 @@
 #%option
 #% key: nprocs
 #% type: integer
-#% description: The number of r.mapcalc processes to run in parallel
+#% description: Number of r.mapcalc processes to run in parallel
 #% required: no
 #% multiple: no
 #% answer: 1

Modified: grass/trunk/temporal/t.rast.series/t.rast.series.py
===================================================================
--- grass/trunk/temporal/t.rast.series/t.rast.series.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.rast.series/t.rast.series.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -36,7 +36,7 @@
 #%option
 #% key: order
 #% type: string
-#% description: Sort the maps by category.
+#% description: Sort the maps by category
 #% required: no
 #% multiple: yes
 #% options: id, name, creator, mapset, creation_time, modification_time, start_time, end_time, north, south, west, east, min, max

Modified: grass/trunk/temporal/t.rast.univar/t.rast.univar.py
===================================================================
--- grass/trunk/temporal/t.rast.univar/t.rast.univar.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.rast.univar/t.rast.univar.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -30,7 +30,7 @@
 #%option
 #% key: fs
 #% type: string
-#% description: The field separator character between the output columns
+#% description: Field separator character between the output columns
 #% required: no
 #% answer: |
 #%end

Modified: grass/trunk/temporal/t.rast3d.extract/t.rast3d.extract.py
===================================================================
--- grass/trunk/temporal/t.rast3d.extract/t.rast3d.extract.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.rast3d.extract/t.rast3d.extract.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -48,7 +48,7 @@
 #%option
 #% key: nprocs
 #% type: integer
-#% description: The number of r3.mapcalc processes to run in parallel
+#% description: Number of r3.mapcalc processes to run in parallel
 #% required: no
 #% multiple: no
 #% answer: 1

Modified: grass/trunk/temporal/t.rast3d.list/t.rast3d.list.py
===================================================================
--- grass/trunk/temporal/t.rast3d.list/t.rast3d.list.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.rast3d.list/t.rast3d.list.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -28,7 +28,7 @@
 #%option
 #% key: order
 #% type: string
-#% description: Order the space time dataset by category. 
+#% description: Order the space time dataset by category
 #% required: no
 #% multiple: yes
 #% options: id,name,creator,mapset,temporal_type,creation_time,start_time,end_time,north,south,west,east,nsres,tbres,ewres,cols,rows,depths,number_of_cells,min,max 
@@ -38,7 +38,7 @@
 #%option
 #% key: columns
 #% type: string
-#% description: Select columns to be printed to stdout 
+#% description: Columns to be printed to stdout
 #% required: no
 #% multiple: yes
 #% options: id,name,creator,mapset,temporal_type,creation_time,start_time,end_time,north,south,west,east,nsres,tbres,ewres,cols,rows,depths,number_of_cells,min,max 
@@ -51,7 +51,7 @@
 #%option
 #% key: method
 #% type: string
-#% description: Which method should be used for data listing
+#% description: Method used for data listing
 #% required: no
 #% multiple: no
 #% options: cols,comma,delta,deltagaps,gran
@@ -61,7 +61,7 @@
 #%option
 #% key: fs
 #% type: string
-#% description: The field separator character between the output columns, default is tabular "\t"
+#% description: Field separator character between the output columns, default is tabular "\t"
 #% required: no
 #%end
 

Modified: grass/trunk/temporal/t.rast3d.mapcalc/t.rast3d.mapcalc.py
===================================================================
--- grass/trunk/temporal/t.rast3d.mapcalc/t.rast3d.mapcalc.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.rast3d.mapcalc/t.rast3d.mapcalc.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -26,7 +26,7 @@
 #%option
 #% key: expression
 #% type: string
-#% description: The r3.mapcalc expression applied to each time step of the sampled data
+#% description: r3.mapcalc expression applied to each time step of the sampled data
 #% required: yes
 #% multiple: no
 #%end
@@ -42,7 +42,7 @@
 #%option
 #% key: base
 #% type: string
-#% description: The base name of the new created 3d raster maps. This name will be extended with a numerical prefix
+#% description: Base name of the new created 3d raster maps. This name will be extended with a numerical prefix
 #% required: yes
 #% multiple: no
 #%end
@@ -50,7 +50,7 @@
 #%option
 #% key: nprocs
 #% type: integer
-#% description: The number of r3.mapcalc processes to run in parallel
+#% description: Number of r3.mapcalc processes to run in parallel
 #% required: no
 #% multiple: no
 #% answer: 1

Modified: grass/trunk/temporal/t.rast3d.univar/t.rast3d.univar.py
===================================================================
--- grass/trunk/temporal/t.rast3d.univar/t.rast3d.univar.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.rast3d.univar/t.rast3d.univar.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -30,7 +30,7 @@
 #%option
 #% key: fs
 #% type: string
-#% description: The field separator character between the output columns
+#% description: Field separator character between the output columns
 #% required: no
 #% answer: |
 #%end

Modified: grass/trunk/temporal/t.register/t.register.py
===================================================================
--- grass/trunk/temporal/t.register/t.register.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.register/t.register.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -39,7 +39,7 @@
 #%option
 #% key: start
 #% type: string
-#% description: The valid start date and time of the first map. Format absolute time: "yyyy-mm-dd HH:MM:SS +HHMM", relative time is of type integer).
+#% description: Valid start date and time of the first map. Format absolute time: "yyyy-mm-dd HH:MM:SS +HHMM", relative time is of type integer).
 #% required: no
 #% multiple: no
 #%end
@@ -47,7 +47,7 @@
 #%option
 #% key: end
 #% type: string
-#% description: The valid end date and time of all map. Format absolute time: "yyyy-mm-dd HH:MM:SS +HHMM", relative time is of type integer).
+#% description: Valid end date and time of all map. Format absolute time: "yyyy-mm-dd HH:MM:SS +HHMM", relative time is of type integer).
 #% required: no
 #% multiple: no
 #%end
@@ -55,7 +55,7 @@
 #%option
 #% key: unit
 #% type: string
-#% description: This unit must be set in case of relative time stamps
+#% description: Unit must be set in case of relative time stamps
 #% required: no
 #% multiple: no
 #% options: years,months,days,hours,minutes,seconds
@@ -72,7 +72,7 @@
 #%option
 #% key: fs
 #% type: string
-#% description: The field separator character of the input file
+#% description: Field separator character of the input file
 #% required: no
 #% answer: |
 #%end

Modified: grass/trunk/temporal/t.sample/t.sample.py
===================================================================
--- grass/trunk/temporal/t.sample/t.sample.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.sample/t.sample.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -45,7 +45,7 @@
 #%option
 #% key: fs
 #% type: string
-#% description: The field separator character between the output columns, default is tabular " | ". Do not use "," as this char is reserved to list several map ids in a sample granule
+#% description: Field separator character between the output columns, default is tabular " | ". Do not use "," as this char is reserved to list several map ids in a sample granule
 #% required: no
 #%end
 

Modified: grass/trunk/temporal/t.support/t.support.py
===================================================================
--- grass/trunk/temporal/t.support/t.support.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.support/t.support.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -26,7 +26,7 @@
 #%option
 #% key: semantictype
 #% type: string
-#% description: The semantic type of the space time dataset
+#% description: Semantic type of the space time dataset
 #% required: no
 #% multiple: no
 #% options: min,max,sum,mean

Modified: grass/trunk/temporal/t.vect.extract/t.vect.extract.py
===================================================================
--- grass/trunk/temporal/t.vect.extract/t.vect.extract.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.vect.extract/t.vect.extract.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -15,7 +15,7 @@
 #############################################################################
 
 #%module
-#% description: Extracts a subset of a space time raster dataset.
+#% description: Extracts a subset of a space time vector dataset.
 #% keywords: temporal
 #% keywords: extract
 #%end
@@ -50,7 +50,7 @@
 #%option
 #% key: nprocs
 #% type: integer
-#% description: The number of v.extract processes to run in parallel. Use only if you have a database backend which supports concurrent writing.
+#% description: The number of v.extract processes to run in parallel. Use only if database backend is used which supports concurrent writing
 #% required: no
 #% multiple: no
 #% answer: 1

Modified: grass/trunk/temporal/t.vect.list/t.vect.list.py
===================================================================
--- grass/trunk/temporal/t.vect.list/t.vect.list.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.vect.list/t.vect.list.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -26,7 +26,7 @@
 #%option
 #% key: order
 #% type: string
-#% description: Order the space time dataset by category. 
+#% description: Order the space time dataset by category
 #% required: no
 #% multiple: yes
 #% options: id,name,layer,creator,mapset,temporal_type,creation_time,start_time,end_time,north,south,west,east,points,lines,boundaries,centroids,faces,kernels,primitives,nodes,areas,islands,holes,volumes
@@ -49,7 +49,7 @@
 #%option
 #% key: method
 #% type: string
-#% description: Which method should be used for data listing
+#% description: Method used for data listing
 #% required: no
 #% multiple: no
 #% options: cols,comma,delta,deltagaps,gran
@@ -59,7 +59,7 @@
 #%option
 #% key: fs
 #% type: string
-#% description: The field separator character between the columns, default is tabular "\t"
+#% description: Field separator character between the columns, default is tabular "\t"
 #% required: no
 #%end
 

Modified: grass/trunk/temporal/t.vect.univar/t.vect.univar.py
===================================================================
--- grass/trunk/temporal/t.vect.univar/t.vect.univar.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.vect.univar/t.vect.univar.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -47,7 +47,7 @@
 #%option
 #% key: fs
 #% type: string
-#% description: The field separator character between the output columns
+#% description: Field separator character between the output columns
 #% required: no
 #% answer: |
 #%end

Modified: grass/trunk/temporal/t.vect.what.strds/t.vect.what.strds.py
===================================================================
--- grass/trunk/temporal/t.vect.what.strds/t.vect.what.strds.py	2012-05-25 15:10:47 UTC (rev 51758)
+++ grass/trunk/temporal/t.vect.what.strds/t.vect.what.strds.py	2012-05-25 15:47:07 UTC (rev 51759)
@@ -30,7 +30,8 @@
 #%option
 #% key: column
 #% type: string
-#% description: Name of the vector column to be created and to store sampled raster values. The use of a column name forces t.vect.what.rast to sample only values from the first map found in an interval. Otherwise the raster map names are used as column names
+#% label: Name of the vector column to be created and to store sampled raster values
+#% description: The use of a column name forces t.vect.what.rast to sample only values from the first map found in an interval. Otherwise the raster map names are used as column names
 #% required: no
 #% multiple: no
 #%end



More information about the grass-commit mailing list