NCCOOS Trac Projects: Top | Web | Platforms | Processing | Viz | Sprints | Sandbox | (Wind)

root/spongenet/trunk/largo_mini_andi_query_config.py

Revision 383 (checked in by cbc, 14 years ago)

Improved error processing and production query configuration.

Line 
1 #!/usr/bin/env python
2
3 """Valid test configuration for the query module."""
4
5 import os
6
7 NCDIR = "/seacoos/data/nccoos/level1/largo/mini_andi/nc"
8 CSVDIR = "/seacoos/data/nccoos/level1/largo/mini_andi/csv"
9 NCFILE_PATTERN = "%(location)s_%(platform)s_%(package)s_" \
10                  "[0-9][0-9][0-9][0-9]_[0-9][0-9].nc"
11 CSVFILE_PATTERN = "%(location)s_%(platform)s_%(month)s.csv"
12 LOCATION = "largo"
13 PLATFORM = "mini_andi"
14 PACKAGES = (('system', ['voltage',
15                         'memory',
16                         'interval', ]),
17             ('turbidity', ['turbidity', ]),
18             ('optode_127', ['o2concentration',
19                             'airsaturation',
20                             'temperature',
21                             'calphase',
22                             'tcphase',
23                             'c1rph',
24                             'c2rph',
25                             'c1amp',
26                             'c2amp',
27                             'rawtemp', ]),
28             ('optode_167', ['o2concentration',
29                             'airsaturation',
30                             'temperature',
31                             'calphase',
32                             'tcphase',
33                             'c1rph',
34                             'c2rph',
35                             'c1amp',
36                             'c2amp',
37                             'rawtemp', ]),
38             ('optode_169', ['o2concentration',
39                             'airsaturation',
40                             'temperature',
41                             'calphase',
42                             'tcphase',
43                             'c1rph',
44                             'c2rph',
45                             'c1amp',
46                             'c2amp',
47                             'rawtemp', ]),
48             ('optode_170', ['o2concentration',
49                             'airsaturation',
50                             'temperature',
51                             'calphase',
52                             'tcphase',
53                             'c1rph',
54                             'c2rph',
55                             'c1amp',
56                             'c2amp',
57                             'rawtemp', ]),
58             ('optode_171', ['o2concentration',
59                             'airsaturation',
60                             'temperature',
61                             'calphase',
62                             'tcphase',
63                             'c1rph',
64                             'c2rph',
65                             'c1amp',
66                             'c2amp',
67                             'rawtemp', ]),
68             ('optode_172', ['o2concentration',
69                             'airsaturation',
70                             'temperature',
71                             'calphase',
72                             'tcphase',
73                             'c1rph',
74                             'c2rph',
75                             'c1amp',
76                             'c2amp',
77                             'rawtemp', ]),
78             ('optode_173', ['o2concentration',
79                             'airsaturation',
80                             'temperature',
81                             'calphase',
82                             'tcphase',
83                             'c1rph',
84                             'c2rph',
85                             'c1amp',
86                             'c2amp',
87                             'rawtemp', ]),
88             ('optode_175', ['o2concentration',
89                             'airsaturation',
90                             'temperature',
91                             'calphase',
92                             'tcphase',
93                             'c1rph',
94                             'c2rph',
95                             'c1amp',
96                             'c2amp',
97                             'rawtemp', ]),
98             ('optode_176', ['o2concentration',
99                             'airsaturation',
100                             'temperature',
101                             'calphase',
102                             'tcphase',
103                             'c1rph',
104                             'c2rph',
105                             'c1amp',
106                             'c2amp',
107                             'rawtemp', ]),
108             ('optode_178', ['o2concentration',
109                             'airsaturation',
110                             'temperature',
111                             'calphase',
112                             'tcphase',
113                             'c1rph',
114                             'c2rph',
115                             'c1amp',
116                             'c2amp',
117                             'rawtemp', ]),
118             ('optode_179', ['o2concentration',
119                             'airsaturation',
120                             'temperature',
121                             'calphase',
122                             'tcphase',
123                             'c1rph',
124                             'c2rph',
125                             'c1amp',
126                             'c2amp',
127                             'rawtemp', ]),
128             ('conductivity', ['conductivity',
129                               'temperature', ]),
130             ('pressure', ['pressure',
131                           'temperature', ]),
132             ('current', ['abs_speed',
133                          'direction',
134                          'v',
135                          'u',
136                          'heading',
137                          'tiltx',
138                          'tilty',
139                          'std_speed',
140                          'strength',
141                          'pings', ]),
142            )
Note: See TracBrowser for help on using the browser.