-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmugl.tpl.xml
54 lines (54 loc) · 1.63 KB
/
mugl.tpl.xml
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
<mugl>
<debug>
%(debug)s
</debug>
<plotarea
margintop="30">
</plotarea>
<legend rows="1" border="0" opacity="1" base="0 1" anchor="0 1" position="0 30">
<icon border="0" width="30" height="30"/>
</legend>
<horizontalaxis id="datetime" type="datetime" min="20210101" max="20250101">
<labels format="%%m/%%d/%%y" spacing="1Y 6M 4M 2M 1M 16D 8D 1D"/>
<title>Date/Time</title>
<grid color="0xcccccc"/>
</horizontalaxis>
<verticalaxis id="value" min="0" max="100">
<title angle="90" position="-37 0">NDVI</title>
<labels format="%%1f" spacing="100 50 20 10 5 1"/>
</verticalaxis>
<plot>
<legend label="Sentinel-3 Standard"/>
<horizontalaxis ref="datetime">
<variable ref="datetime"/>
</horizontalaxis>
<verticalaxis ref="value">
<variable ref="value"/>
</verticalaxis>
<renderer type="pointline">
<option name="linecolor" value="black"/>
<option name="pointcolor" value="blue"/>
<option name="pointsize" value="1.0"/>
</renderer>
</plot>
<plot>
<legend label="Click and hold graph to slide through time"/>
<verticalaxis ref="value">
<variable ref="raw_value"/>
</verticalaxis>
<renderer type="pointline">
<option name="linecolor" value="white"/>
<option name="pointcolor" value="white"/>
</renderer>
</plot>
<data>
<variables>
<variable column="0" type="datetime" id="datetime"/>
<variable column="1" id="value" missingvalue="-9000" missingop="le"/>
<variable column="2" id="raw_value" missingvalue="-9000" missingop="le"/>
</variables>
<values>
%(values)s
</values>
</data>
</mugl>