Blame view

config/app/plotConfig.xml 2.56 KB
d04038f4   Benjamin Renard   Add script to gen...
1
2
3
4
<?xml version="1.0" encoding="UTF-8"?>
<root>
	<default>
		<page dimension="ISO A4" orientation="landscape" mode="color" dpi="300">
d3cfda12   Benjamin Renard   Fix CSlim library...
5
			<font name="sans-serif" size="8" />
d04038f4   Benjamin Renard   Add script to gen...
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
			<margin x="15" y="20" /> <!-- in mm -->
		</page>
		<panel resolution="3000" backgroundColor="[255,255,255]"> <!-- charSizeUnits defines space to set all around plot area -->
			<title position="top" align="center" />
			<timeAxis id="timeAxis" format="dd/mm/yy" reverse="false" color="[0,0,0]" position="bottom" thickness="1">
				<legend text="Time, UT" />
			</timeAxis>
			<epochAxis id="epochAxis" format="dd/mm/yy" reverse="false" color="[0,0,0]" position="bottom" thickness="1">
				<legend text="Relative Time" />
			</epochAxis>
			<colorAxis id="colorAxis" scale="linear" color="[0,0,0]" reverse="false" position="right" />
			<xAxis scale="linear" reverse="false" color="[0,0,0]" position="bottom" thickness="1" />
			<yAxis scale="linear" reverse="false" color="[0,0,0]" position="left" thickness="1" />
			<timePlot xAxis="timeAxis" zAxis="colorAxis">
				<line type="line" style="plain" width="1" />
				<symbol type="no" size="4" color="[0,0,255]" />
			</timePlot>
			<epochPlot xAxis="epochAxis" zAxis="colorAxis">
				<line type="line" style="plain" width="1" />
				<symbol type="no" size="4" color="[0,0,255]" />
			</epochPlot>
			<xyPlot zAxis="colorAxis">
				<line type="no" style="plain" width="1" />
				<symbol type="dot" size="4"  />
				<resampling type="auto"/>
				<timeTick step="0" number="0" minor="0" color="[0,0,0]">
					<font name="sans-serif" size="5" style="upright" weight="medium" />
					<firstSymbol type="triangle" size="5" color="[120,0,0]" />
					<symbol type="circle" size="5" color="[120,120,0]" />
				</timeTick>
			</xyPlot>
			<instantPlot zAxis="colorAxis">
				<line type="no" style="plain" color="[255,0,0]" width="1" />
				<symbol type="dot" size="4" color="[0,0,255]" />
			</instantPlot>
		</panel>
	</default>
d3cfda12   Benjamin Renard   Fix CSlim library...
43
	<colormap path="./plplot/">
d04038f4   Benjamin Renard   Add script to gen...
44
45
46
47
48
49
50
51
		<grayscale default="0"> <!-- default is map index used for auto line color generation -->
			<file index="0">cmap0_black_on_white.pal</file>
			<file index="1">cmap1_gray.pal</file>
		</grayscale>
		<color default="0">
			<file index="0">cmap0_default.pal</file>
			<file index="1">cmap1_default.pal</file>
			<file index="2">cmap0_test.pal</file>
e257cfb9   Benjamin Renard   First implementat...
52
			<file index="3">cmap0_intervals.pal</file>
d04038f4   Benjamin Renard   Add script to gen...
53
54
55
56
57
58
59
60
61
		</color>
		<coloraxis default="0">
			<file index="0">cmap1_default.pal</file>
			<file index="1">cmap1_blue_red.pal</file>
			<file index="2">cmap1_blue_yellow.pal</file>
			<file index="3">cmap1_gray.pal</file>
		</coloraxis>
	</colormap>
</root>