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

root/raw2proc/trunk/raw2proc/crow_config_20090122.py

Revision 492 (checked in by haines, 12 years ago)

minor to raw2proc:which_raw()

Line 
1 platform_info = {
2     'id' : 'crow',
3     'location' : 'Crow Branch Creek, Chapel Hill, NC',
4     'lat' : 35.942123,  # degrees true (-) south, (+) north
5     'lon' : -79.058261, # degrees true (-) west, (+) east
6     'mvar' : -8.5,      # degrees (-) west, (+) east
7     'altitude': 156.,       # station altitude
8     'altitude_units' : 'm',
9     'altitude_reference' : 'above_sea_level',
10     # 'mean_water_depth' : -25.17, # meters (-) down, (+) up
11     # 'mean_water_depth_time_period' : 'June 2005 - Sept 2005',
12     'institution' : 'nccoos',
13     #
14     'config_start_date' : '2009-01-22 00:00:00',
15     'config_end_date' : None, # None or yyyy-mm-dd HH:MM:SS
16     'packages' : ('flow', 'wq'),
17     }
18 sensor_info = {
19     'flow' : { 'id' : 'flow',
20                'description' : 'Stream Flow and Rain Data',
21                'raw_dir' : '/seacoos/data/nccoos/level0/crow/flow/',
22                'raw_file_glob' : '*.dat',
23                'proc_dir' : '/seacoos/data/nccoos/level1/crow/flow/',
24                'process_module' : 'proc_cr1000_flow',
25                'utc_offset' : 4,      # hours offset to utc
26                'press_offset' : 0./12., # pressure gauge offset to staff gauge
27                'plot_module' : 'plot_cr1000_flow',
28                'plot_names' : ('timeseries',),
29                'csv_dir' : '/seacoos/data/nccoos/latest_csv',
30                'csv_vars' : ('time', 'rain','sontek_flow','sontek_wl'),
31                # 'nbins' : 69,
32                # 'bin_size' : 0.5,      # meters
33                # 'transducer_ht' : 0.5, # meters above the bottom
34                # 'blanking_ht' : 1.6,   # meters above transducer
35                },
36     'wq' : {'id' : 'wq',
37             'description' : 'Water Quality',
38             'raw_dir' : '/seacoos/data/nccoos/level0/crow/wq/',
39             'raw_file_glob' : '*.dat',
40             'proc_dir' : '/seacoos/data/nccoos/level1/crow/wq/',
41             'process_module' : 'proc_cr1000_wq',
42             'utc_offset' : 4,  # hours offset to utc
43             'plot_module' : 'plot_cr1000_wq',
44             'plot_names' : ('timeseries',),
45             'csv_dir' : '/seacoos/data/nccoos/latest_csv',
46             'csv_vars' : ('time', 'wtemp','cond','do_sat', 'do_mg', 'ph', 'turb', 'battvolts'),
47                    },
48     }
49    
Note: See TracBrowser for help on using the browser.