-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathECHOrequest_full.xml
More file actions
106 lines (92 loc) · 3.93 KB
/
ECHOrequest_full.xml
File metadata and controls
106 lines (92 loc) · 3.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!-- ECHO Download Request
Notes:
Comments in this XML file are ignored
Version: 7/2015
The 'dirRoot' attribute of the 'echoDownload' element
should point to the top level directory where ECHO
data is to be stored (used if command line option
-o D is specified)
** The 'dirRoot' attribute is REQUIRED **
Version: 11/2015
Added new 'temporal' element with required "type" attribute. This
allows two methods for searching the ECHO database:
a. Static temporal searching with a starting datetime string and
ending datetime string
b. Recurring temporal search to allow specification of a recurring
starting month/day/time and ending month/day/time for a
specified starting and ending year range.
Temporal searching can now be specified as one of the following examples:
(note the 'T' separator in static temporal searches is required to
separate date and time information)
<temporal type="static">
<startdatetime dtstr="YYYY-MM-DDTHH:MM:SSZ" />
<enddatetime dtstr="YYYY-MM-DDTHH:MM:SSZ" />
</temporal>
-or-
<temporal type="recurring">
<year yr_start="2005" yr_end="2007" />
<start mon_start="06" day_start="01" tim_start="00:00:00Z" />
<end mon_end="07" day_end="31" tim_end="23:00:00Z" />
</temporal>
So for example, the "recurring" temporal search above would tell
the ECHO service to find all collection (matching the collection criteria)
granules for the recurring criteria, June 1st 00Z to July 31st 23Z,
for the years 2005-2007.
Version: 02/2016
Added 'useDB' attribute to 'echoDownload' element. Set to
either 'True' or 'False' to enable/disable DB file tracking.
This is a REQUIRED attribute
Changed 'dirRoot' attribute of 'echoDownload' element
to 'dbRoot'. 'dbRoot' is used if the 'useDB' element is
set true (True). This is required and cannot be the same as
'dataRoot'
Added 'dataRoot' attribute to 'echoDownload' element. The
'dataRoot' attribute is used as a directory root for file
downloads if DB tracking of files is disabled ('useDB' is
set false (False)). This is required and cannot be the
same as 'dbRoot'
-->
<echoDownload useDB="False" dbRoot="/home/mark/PycharmProjects/EDClient/ECHO" dataRoot="/home/mark/PycharmProjects/EDClient/DATA">
<dataset shortname="AE_L2A">
<version v="3" />
<boundingbox w="-180.0" s="-90.0" e="180.0" n="90.0" />
<temporal type="static">
<startdatetime dtstr="2007-04-07T00:00:00Z" />
<enddatetime dtstr="2007-04-08T23:59:59Z" />
</temporal>
</dataset>
<dataset shortname="AE_Rain">
<version v="2" />
<boundingbox w="-180.0" s="-90.0" e="180.0" n="90.0" />
<temporal type="static">
<startdatetime dtstr="2007-04-07T00:00:00Z" />
<enddatetime dtstr="2007-04-08T23:59:59Z" />
</temporal>
</dataset>
<dataset shortname="MYD06_L2">
<version v="5" />
<boundingbox w="-180.0" s="-90.0" e="180.0" n="90.0" />
<temporal type="static">
<startdatetime dtstr="2007-04-07T00:00:00Z" />
<enddatetime dtstr="2007-04-08T23:59:59Z" />
</temporal>
</dataset>
<dataset shortname="TRMM_1B11">
<version v="7" />
<boundingbox w="-180.0" s="-90.0" e="180.0" n="90.0" />
<temporal type="static">
<startdatetime dtstr="2007-04-07T00:00:00Z" />
<enddatetime dtstr="2007-04-08T23:59:59Z" />
</temporal>
</dataset>
<dataset shortname="TRMM_2A12">
<version v="7" />
<boundingbox w="-180.0" s="-90.0" e="180.0" n="90.0" />
<temporal type="static">
<startdatetime dtstr="2007-04-07T00:00:00Z" />
<enddatetime dtstr="2007-04-08T23:59:59Z" />
</temporal>
<startdatetime dtstr="2007-04-07T00:00:00Z" />
<enddatetime dtstr="2007-04-08T23:59:59Z" />
</dataset>
</echoDownload>