[GRASS-SVN] r51685 - in grass/trunk/temporal: . t.info 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.out.vtk t.rast.series t.rast.to.rast3 t.rast.univar t.rast3d.extract t.rast3d.list t.rast3d.mapcalc t.rast3d.univar t.register t.sample t.support t.topology t.vect.extract t.vect.list t.vect.observe.strds t.vect.univar t.vect.what.strds

svn_grass at osgeo.org svn_grass at osgeo.org
Wed May 23 13:30:50 EDT 2012


Author: huhabla
Date: 2012-05-23 10:30:50 -0700 (Wed, 23 May 2012)
New Revision: 51685

Modified:
   grass/trunk/temporal/run_all_tests.sh
   grass/trunk/temporal/t.info/test.t.info.sh
   grass/trunk/temporal/t.rast.aggregate.ds/test.t.rast.aggregate.ds.sh
   grass/trunk/temporal/t.rast.aggregate/test.t.rast.aggregate.relative_time.sh
   grass/trunk/temporal/t.rast.aggregate/test.t.rast.aggregate.sh
   grass/trunk/temporal/t.rast.export/test.t.rast.export.sh
   grass/trunk/temporal/t.rast.extract/test.t.rast.extract.sh
   grass/trunk/temporal/t.rast.gapfill/test.t.rast.gapfill.sh
   grass/trunk/temporal/t.rast.import/test.t.rast.import.sh
   grass/trunk/temporal/t.rast.list/test.t.rast.list.sh
   grass/trunk/temporal/t.rast.mapcalc/test.t.rast.mapcalc.sh
   grass/trunk/temporal/t.rast.out.vtk/test.t.rast.out.vtk.sh
   grass/trunk/temporal/t.rast.series/test.t.rast.series.sh
   grass/trunk/temporal/t.rast.to.rast3/test.t.rast.to.rast3.sh
   grass/trunk/temporal/t.rast.univar/test.t.rast.univar.sh
   grass/trunk/temporal/t.rast3d.extract/test.t.rast3d.extract.sh
   grass/trunk/temporal/t.rast3d.list/test.t.rast3d.list.sh
   grass/trunk/temporal/t.rast3d.mapcalc/test.t.rast3d.mapcalc.sh
   grass/trunk/temporal/t.rast3d.univar/test.t.rast3d.univar.sh
   grass/trunk/temporal/t.register/test.t.register.raster.file.reltime.sh
   grass/trunk/temporal/t.register/test.t.register.raster.file.sh
   grass/trunk/temporal/t.register/test.t.register.raster.sh
   grass/trunk/temporal/t.register/test.t.register.raster3d.sh
   grass/trunk/temporal/t.register/test.t.register.vector.file.layer.sh
   grass/trunk/temporal/t.register/test.t.register.vector.sh
   grass/trunk/temporal/t.sample/test.t.sample.sh
   grass/trunk/temporal/t.support/test.t.support.sh
   grass/trunk/temporal/t.topology/test.t.topology.abstime.sh
   grass/trunk/temporal/t.topology/test.t.topology.reltime.sh
   grass/trunk/temporal/t.vect.extract/test.t.vect.extract.layer.sh
   grass/trunk/temporal/t.vect.extract/test.t.vect.extract.sh
   grass/trunk/temporal/t.vect.list/test.t.vect.list.layer.sh
   grass/trunk/temporal/t.vect.list/test.t.vect.list.sh
   grass/trunk/temporal/t.vect.observe.strds/test.t.vect.observe.strds.sh
   grass/trunk/temporal/t.vect.univar/test.t.vect.univar.sh
   grass/trunk/temporal/t.vect.what.strds/test.t.vect.what.strds.layer.sh
   grass/trunk/temporal/t.vect.what.strds/test.t.vect.what.strds.sh
Log:
Added shell header to test files


Modified: grass/trunk/temporal/run_all_tests.sh
===================================================================
--- grass/trunk/temporal/run_all_tests.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/run_all_tests.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,4 +1,4 @@
-#!/usr/bin/env bash
+#!/bin/sh
 # This scripts runs all tests available in the temporal module directory
 # Logs a written to "run.log" 
 
@@ -6,14 +6,14 @@
 echo "Logfile\n\n" > $LOG_FILE
 
 # For each directory
-for dir in `ls -d t*` ; do
-    if [ -d $dir ] ; then
-        echo $dir
-        cd $dir
-        for file in `ls test.* | grep -v '~'` ; do
-            bash $file >> $LOG_FILE 2>&1
+for mydir in `ls -d t*` ; do
+    if [ -d $mydir ] ; then
+        echo $mydir
+        cd $mydir
+        for myfile in `ls test.* | grep -v '~'` ; do
+            sh $myfile >> $LOG_FILE 2>&1
         done
-        cd -
+        cd ..
     fi
 done
-cp $LOG_FILE .
+mv $LOG_FILE .

Modified: grass/trunk/temporal/t.info/test.t.info.sh
===================================================================
--- grass/trunk/temporal/t.info/test.t.info.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.info/test.t.info.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # Test the info output
 
 # We need to set a specific region in the

Modified: grass/trunk/temporal/t.rast.aggregate/test.t.rast.aggregate.relative_time.sh
===================================================================
--- grass/trunk/temporal/t.rast.aggregate/test.t.rast.aggregate.relative_time.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.rast.aggregate/test.t.rast.aggregate.relative_time.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,4 +1,5 @@
-# Test the extraction of a subset of a space time raster input
+#!/bin/sh
+# Space time raster dataset aggregation
 
 # We need to set a specific region in the
 # @preprocess step of this test. 

Modified: grass/trunk/temporal/t.rast.aggregate/test.t.rast.aggregate.sh
===================================================================
--- grass/trunk/temporal/t.rast.aggregate/test.t.rast.aggregate.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.rast.aggregate/test.t.rast.aggregate.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,5 +1,5 @@
-# Test the extraction of a subset of a space time raster input
-
+#!/bin/sh
+# Space time raster dataset aggregation
 # We need to set a specific region in the
 # @preprocess step of this test. 
 # The region setting should work for UTM and LL test locations

Modified: grass/trunk/temporal/t.rast.aggregate.ds/test.t.rast.aggregate.ds.sh
===================================================================
--- grass/trunk/temporal/t.rast.aggregate.ds/test.t.rast.aggregate.ds.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.rast.aggregate.ds/test.t.rast.aggregate.ds.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,9 +1,8 @@
-# Test the extraction of a subset of a space time raster input
+#!/bin/sh
+# Aggregate a dataset by a second one
 
 # We need to set a specific region in the
-# @preprocess step of this test. We generate
-# raster with r.mapcalc and create two space time raster inputs
-# with relative and absolute time
+# @preprocess step of this test. 
 # The region setting should work for UTM and LL test locations
 g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
 

Modified: grass/trunk/temporal/t.rast.export/test.t.rast.export.sh
===================================================================
--- grass/trunk/temporal/t.rast.export/test.t.rast.export.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.rast.export/test.t.rast.export.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,8 +1,8 @@
+#!/bin/sh
 # Export of space time raster datasets
 
 # We need to set a specific region in the
-# @preprocess step of this test. We generate
-# raster with r.mapcalc and create a space time raster datasets
+# @preprocess step of this test. 
 # The region setting should work for UTM and LL test locations
 g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
 

Modified: grass/trunk/temporal/t.rast.extract/test.t.rast.extract.sh
===================================================================
--- grass/trunk/temporal/t.rast.extract/test.t.rast.extract.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.rast.extract/test.t.rast.extract.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # Test the extraction of a subset of a space time raster input
 
 # We need to set a specific region in the

Modified: grass/trunk/temporal/t.rast.gapfill/test.t.rast.gapfill.sh
===================================================================
--- grass/trunk/temporal/t.rast.gapfill/test.t.rast.gapfill.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.rast.gapfill/test.t.rast.gapfill.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,5 @@
+#!/bin/sh
+# Fill the gaps in a space time raster dataset
 # We need to set a specific region in the
 # @preprocess step of this test. 
 # The region setting should work for UTM and LL test locations

Modified: grass/trunk/temporal/t.rast.import/test.t.rast.import.sh
===================================================================
--- grass/trunk/temporal/t.rast.import/test.t.rast.import.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.rast.import/test.t.rast.import.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,4 +1,5 @@
-# This is a test to list raster maps of a space time raster dataset
+#!/bin/sh
+# Test the import of space time raster datasets
 
 # We need to set a specific region in the
 # @preprocess step of this test. We generate

Modified: grass/trunk/temporal/t.rast.list/test.t.rast.list.sh
===================================================================
--- grass/trunk/temporal/t.rast.list/test.t.rast.list.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.rast.list/test.t.rast.list.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # This is a test to list raster maps of a space time raster dataset
 
 # We need to set a specific region in the

Modified: grass/trunk/temporal/t.rast.mapcalc/test.t.rast.mapcalc.sh
===================================================================
--- grass/trunk/temporal/t.rast.mapcalc/test.t.rast.mapcalc.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.rast.mapcalc/test.t.rast.mapcalc.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # Test for t.rast.mapcalc 
 
 # We need to set a specific region in the

Modified: grass/trunk/temporal/t.rast.out.vtk/test.t.rast.out.vtk.sh
===================================================================
--- grass/trunk/temporal/t.rast.out.vtk/test.t.rast.out.vtk.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.rast.out.vtk/test.t.rast.out.vtk.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # This is a test to export space time raster datasets as VTK time series data
 
 # We need to set a specific region in the

Modified: grass/trunk/temporal/t.rast.series/test.t.rast.series.sh
===================================================================
--- grass/trunk/temporal/t.rast.series/test.t.rast.series.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.rast.series/test.t.rast.series.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,5 @@
+#!/bin/sh
+# Simple r.series wrapper
 # We need to set a specific region in the
 # @preprocess step of this test. 
 # The region setting should work for UTM and LL test locations

Modified: grass/trunk/temporal/t.rast.to.rast3/test.t.rast.to.rast3.sh
===================================================================
--- grass/trunk/temporal/t.rast.to.rast3/test.t.rast.to.rast3.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.rast.to.rast3/test.t.rast.to.rast3.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,7 +1,7 @@
+#!/bin/sh
+# Convert space time raster datasets into space time voxel cubes
 # We need to set a specific region in the
-# @preprocess step of this test. We generate
-# raster with r.mapcalc and create two space time raster inputs
-# with relative and absolute time
+# @preprocess step of this test.
 # The region setting should work for UTM and LL test locations
 g.region s=0 n=80 w=0 e=120 b=0 t=1 res=10 res3=1 -p3
 

Modified: grass/trunk/temporal/t.rast.univar/test.t.rast.univar.sh
===================================================================
--- grass/trunk/temporal/t.rast.univar/test.t.rast.univar.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.rast.univar/test.t.rast.univar.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,4 +1,5 @@
-# Test the extraction of a subset of a space time raster input
+#!/bin/sh
+# Test univariate statistics for space time raster datasets
 
 # We need to set a specific region in the
 # @preprocess step of this test. 

Modified: grass/trunk/temporal/t.rast3d.extract/test.t.rast3d.extract.sh
===================================================================
--- grass/trunk/temporal/t.rast3d.extract/test.t.rast3d.extract.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.rast3d.extract/test.t.rast3d.extract.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,8 +1,8 @@
+#!/bin/sh
 # Test the extraction of a subset of a space time raster3d input
 
 # We need to set a specific region in the
-# @preprocess step of this test. We generate
-# raster with r.mapcalc 
+# @preprocess step of this test.
 # The region setting should work for UTM and LL test locations
 g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
 

Modified: grass/trunk/temporal/t.rast3d.list/test.t.rast3d.list.sh
===================================================================
--- grass/trunk/temporal/t.rast3d.list/test.t.rast3d.list.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.rast3d.list/test.t.rast3d.list.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,8 +1,8 @@
-# This is a test to list raster maps of a space time raster dataset
+#!/bin/sh
+# This is a test to list 3draster maps of a space time raster3d dataset
 
 # We need to set a specific region in the
-# @preprocess step of this test. We generate
-# raster with r.mapcalc and create a space time raster datasets
+# @preprocess step of this test. 
 # The region setting should work for UTM and LL test locations
 g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
 

Modified: grass/trunk/temporal/t.rast3d.mapcalc/test.t.rast3d.mapcalc.sh
===================================================================
--- grass/trunk/temporal/t.rast3d.mapcalc/test.t.rast3d.mapcalc.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.rast3d.mapcalc/test.t.rast3d.mapcalc.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,8 +1,8 @@
-# Test for t.rast.mapcalc 
+#!/bin/sh
+# Test for t.rast3d.mapcalc 
 
 # We need to set a specific region in the
-# @preprocess step of this test. We generate
-# raster with r.mapcalc and create several space time raster datasets
+# @preprocess step of this test.
 # The region setting should work for UTM and LL test locations
 g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
 

Modified: grass/trunk/temporal/t.rast3d.univar/test.t.rast3d.univar.sh
===================================================================
--- grass/trunk/temporal/t.rast3d.univar/test.t.rast3d.univar.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.rast3d.univar/test.t.rast3d.univar.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # Univariate statitsics for space time raster3d datasets
 
 # We need to set a specific region in the

Modified: grass/trunk/temporal/t.register/test.t.register.raster.file.reltime.sh
===================================================================
--- grass/trunk/temporal/t.register/test.t.register.raster.file.reltime.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.register/test.t.register.raster.file.reltime.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # This is a test to register and unregister raster maps in
 # space time raster input.
 # The raster maps will be registered in different space time raster
@@ -6,7 +7,7 @@
 # We need to set a specific region in the
 # @preprocess step of this test. We generate
 # raster with r.mapcalc and create two space time raster inputs
-# with relative and absolute time
+# with relative
 # The region setting should work for UTM and LL test locations
 g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
 

Modified: grass/trunk/temporal/t.register/test.t.register.raster.file.sh
===================================================================
--- grass/trunk/temporal/t.register/test.t.register.raster.file.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.register/test.t.register.raster.file.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # This is a test to register and unregister raster maps in
 # space time raster input.
 # The raster maps will be registered in different space time raster
@@ -6,7 +7,7 @@
 # We need to set a specific region in the
 # @preprocess step of this test. We generate
 # raster with r.mapcalc and create two space time raster inputs
-# with relative and absolute time
+# with absolute time
 # The region setting should work for UTM and LL test locations
 g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
 

Modified: grass/trunk/temporal/t.register/test.t.register.raster.sh
===================================================================
--- grass/trunk/temporal/t.register/test.t.register.raster.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.register/test.t.register.raster.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # This is a test to register and unregister raster maps in
 # space time raster input.
 # The raster maps will be registered in different space time raster

Modified: grass/trunk/temporal/t.register/test.t.register.raster3d.sh
===================================================================
--- grass/trunk/temporal/t.register/test.t.register.raster3d.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.register/test.t.register.raster3d.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # This is a test to register and unregister raster3d maps in
 # space time raster3d datasets
 # The raster3d maps will be registered in different space time raster3d
@@ -6,7 +7,7 @@
 # We need to set a specific region in the
 # @preprocess step of this test. We generate
 # 3d raster with r3.mapcalc and create two space time raster3d datasets
-# with relative and absolute time
+# with absolute time
 # The region setting should work for UTM and LL test locations
 g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
 

Modified: grass/trunk/temporal/t.register/test.t.register.vector.file.layer.sh
===================================================================
--- grass/trunk/temporal/t.register/test.t.register.vector.file.layer.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.register/test.t.register.vector.file.layer.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,7 +1,11 @@
-# This is a test to absolute time for vector maps with layer support
+#!/bin/sh
+# This is a test to register and unregister vector maps with layer support in
+# space time vector input.
+
 # We need to set a specific region in the
 # @preprocess step of this test. We generate
-# vector with v.random.
+# vector with v.random and create several space time vector inputs
+# with absolute time
 # The region setting should work for UTM and LL test locations
 g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
 

Modified: grass/trunk/temporal/t.register/test.t.register.vector.sh
===================================================================
--- grass/trunk/temporal/t.register/test.t.register.vector.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.register/test.t.register.vector.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,7 +1,6 @@
+#!/bin/sh
 # This is a test to register and unregister vector maps in
 # space time vector input.
-# The vector maps will be registered in different space time vector
-# inputs
 
 # We need to set a specific region in the
 # @preprocess step of this test. We generate

Modified: grass/trunk/temporal/t.sample/test.t.sample.sh
===================================================================
--- grass/trunk/temporal/t.sample/test.t.sample.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.sample/test.t.sample.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,8 +1,8 @@
+#1/bin/sh
 # This is a test to sample a space time raster dataset with a space time vector dataset
 
 # We need to set a specific region in the
-# @preprocess step of this test. We generate
-# raster with r.mapcalc and create a space time raster datasets
+# @preprocess step of this test. 
 # The region setting should work for UTM and LL test locations
 g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
 

Modified: grass/trunk/temporal/t.support/test.t.support.sh
===================================================================
--- grass/trunk/temporal/t.support/test.t.support.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.support/test.t.support.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,9 @@
+#!/bin/sh
+# Tests the support module of space time datasets 
+
+# We need to set a specific region in the
+# @preprocess step of this test. 
+# The region setting should work for UTM and LL test locations
 g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
 
 r.mapcalc --o expr="prec_1 = rand(0, 550)"

Modified: grass/trunk/temporal/t.topology/test.t.topology.abstime.sh
===================================================================
--- grass/trunk/temporal/t.topology/test.t.topology.abstime.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.topology/test.t.topology.abstime.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,12 +1,8 @@
-# This is a test to register and unregister raster maps in
-# space time raster input.
-# The raster maps will be registered in different space time raster
-# inputs
+#!/bin/sh
+# Tests the temporaly topology module of space time datasets 
 
 # We need to set a specific region in the
-# @preprocess step of this test. We generate
-# raster with r.mapcalc and create two space time raster inputs
-# with relative and absolute time
+# @preprocess step of this test. 
 # The region setting should work for UTM and LL test locations
 g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
 

Modified: grass/trunk/temporal/t.topology/test.t.topology.reltime.sh
===================================================================
--- grass/trunk/temporal/t.topology/test.t.topology.reltime.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.topology/test.t.topology.reltime.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,12 +1,8 @@
-# This is a test to register and unregister raster maps in
-# space time raster input.
-# The raster maps will be registered in different space time raster
-# inputs
+#!/bin/sh
+# Tests the temporaly topology module of space time datasets 
 
 # We need to set a specific region in the
-# @preprocess step of this test. We generate
-# raster with r.mapcalc and create two space time raster inputs
-# with relative and relolute time
+# @preprocess step of this test. 
 # The region setting should work for UTM and LL test locations
 g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
 

Modified: grass/trunk/temporal/t.vect.extract/test.t.vect.extract.layer.sh
===================================================================
--- grass/trunk/temporal/t.vect.extract/test.t.vect.extract.layer.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.vect.extract/test.t.vect.extract.layer.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,7 +1,9 @@
-# Test the temporal and spatial sampling of raster maps by vector point maps
+#!/bin/sh
+# Test the extraction of a subset of a space time vector input with
+# time stamped layer
+
 # We need to set a specific region in the
-# @preprocess step of this test. 
-# The region setting should work for UTM and LL test locations
+# @preprocess step of this test.
 g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
 
 r.mapcalc --o expr="prec_1 = 100.0"

Modified: grass/trunk/temporal/t.vect.extract/test.t.vect.extract.sh
===================================================================
--- grass/trunk/temporal/t.vect.extract/test.t.vect.extract.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.vect.extract/test.t.vect.extract.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,7 +1,8 @@
-# Test the extraction of a subset of a space time raster input
+#!/bin/sh
+# Test the extraction of a subset of a space time vector input
 
 # We need to set a specific region in the
-# @preprocess step of this test. We generate
+# @preprocess step of this test.
 
 v.random --o -z output=soil_1 n=100 zmin=0 zmax=100 column=height  seed=1
 v.random --o -z output=soil_2 n=100 zmin=0 zmax=100 column=height seed=2

Modified: grass/trunk/temporal/t.vect.list/test.t.vect.list.layer.sh
===================================================================
--- grass/trunk/temporal/t.vect.list/test.t.vect.list.layer.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.vect.list/test.t.vect.list.layer.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # This is a test to list vecter maps of a space time vecter dataset
 
 # We need to set a specific region in the

Modified: grass/trunk/temporal/t.vect.list/test.t.vect.list.sh
===================================================================
--- grass/trunk/temporal/t.vect.list/test.t.vect.list.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.vect.list/test.t.vect.list.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # This is a test to list vecter maps of a space time vecter dataset
 
 # We need to set a specific region in the

Modified: grass/trunk/temporal/t.vect.observe.strds/test.t.vect.observe.strds.sh
===================================================================
--- grass/trunk/temporal/t.vect.observe.strds/test.t.vect.observe.strds.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.vect.observe.strds/test.t.vect.observe.strds.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,4 +1,5 @@
-# Test the temporal and spatial sampling of raster maps by vector point maps
+#!/bin/sh
+# Test the temporal and spatial sampling/observation of raster maps by vector point maps
 # We need to set a specific region in the
 # @preprocess step of this test. 
 # The region setting should work for UTM and LL test locations

Modified: grass/trunk/temporal/t.vect.univar/test.t.vect.univar.sh
===================================================================
--- grass/trunk/temporal/t.vect.univar/test.t.vect.univar.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.vect.univar/test.t.vect.univar.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # Test the univar statistics of space time vector datasets
 
 # We need to set a specific region in the

Modified: grass/trunk/temporal/t.vect.what.strds/test.t.vect.what.strds.layer.sh
===================================================================
--- grass/trunk/temporal/t.vect.what.strds/test.t.vect.what.strds.layer.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.vect.what.strds/test.t.vect.what.strds.layer.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # Test the temporal and spatial sampling of raster maps by vector point maps
 # using timetamped vector tables
 # We need to set a specific region in the

Modified: grass/trunk/temporal/t.vect.what.strds/test.t.vect.what.strds.sh
===================================================================
--- grass/trunk/temporal/t.vect.what.strds/test.t.vect.what.strds.sh	2012-05-23 16:54:31 UTC (rev 51684)
+++ grass/trunk/temporal/t.vect.what.strds/test.t.vect.what.strds.sh	2012-05-23 17:30:50 UTC (rev 51685)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # Test the temporal and spatial sampling of raster maps by vector point maps
 # We need to set a specific region in the
 # @preprocess step of this test. 



More information about the grass-commit mailing list