1#!/bin/sh
2# This is a test to register and unregister raster maps in
3# space time raster input.
4# The raster maps will be registered in different space time raster
5# inputs
6# Maps have absolute time with time zone information
7
8# We need to set a specific region in the
9# @preprocess step of this test. We generate
10# raster with r.mapcalc and create two space time raster inputs
11# with absolute time
12# The region setting should work for UTM and LL test locations
13g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
14
15# Generate data
16r.mapcalc --o expr="prec_1 = rand(0, 550)" -s
17r.mapcalc --o expr="prec_2 = rand(0, 450)" -s
18r.mapcalc --o expr="prec_3 = rand(0, 320)" -s
19r.mapcalc --o expr="prec_4 = rand(0, 510)" -s
20r.mapcalc --o expr="prec_5 = rand(0, 300)" -s
21r.mapcalc --o expr="prec_6 = rand(0, 650)" -s
22
23n2=`g.tempfile pid=2 -d` # Map names and start time
24n3=`g.tempfile pid=3 -d` # Map names start time and increment
25
26cat > "${n2}" << EOF
27prec_1|2001-01-01 10:00:00 +02:00
28prec_2|2001-02-01 10:00:00 +02:00
29prec_3|2001-03-01 10:00:00 +02:00
30prec_4|2001-04-01 10:00:00 +02:00
31prec_5|2001-05-01 10:00:00 +02:00
32prec_6|2001-06-01 10:00:00 +02:00
33EOF
34cat "${n2}"
35
36cat > "${n3}" << EOF
37prec_1|2001-01-01 12:00:00 +01:00|2001-04-01 14:00:00 -01:00
38prec_2|2001-04-01 12:00:00 +01:00|2001-07-01 14:00:00 -01:00
39prec_3|2001-07-01 12:00:00 +01:00|2001-10-01 14:00:00 -01:00
40prec_4|2001-10-01 12:00:00 +01:00|2002-01-01 14:00:00 -01:00
41prec_5|2002-01-01 12:00:00 +01:00|2002-04-01 14:00:00 -01:00
42prec_6|2002-04-01 12:00:00 +01:00|2002-07-01 14:00:00 -01:00
43EOF
44cat "${n3}"
45
46# The first @test
47# We create the space time raster inputs and register the raster maps with absolute time interval
48t.create --o type=strds temporaltype=absolute output=precip_abs title="A test with input files" descr="A test with input files"
49
50# Test with input files
51# File 1
52# File 2
53t.register --o input=precip_abs file="${n2}"
54t.info type=strds input=precip_abs
55t.rast.list input=precip_abs
56# File 3
57t.register --o -i input=precip_abs file="${n3}"
58t.info type=strds input=precip_abs
59t.rast.list input=precip_abs
60
61t.remove -rf type=strds input=precip_abs
62