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

root/raw2proc/trunk/raw2proc/morgan_config_20080701.py

Revision 210 (checked in by haines, 16 years ago)

fix to proc2latest to specify len not unlimited dim

Line 
1 platform_info = {
2             'id' : 'morgan',
3             'location' : 'Morgan Bay, New River, NC',
4             'lat' : 34.7037,         # degrees true (-) south, (+) north
5             'lon' : 77.4022,         # degrees true (-) west, (+) east
6             'mvar' : -9.42,          # degrees (-) west, (+) east
7             'water_depth': 4.0,      # nominal depth in meters (should be MSL)
8             'institution' : 'nccoos',
9             #
10             'config_start_date' : '2008-07-01 00:00:00',
11             'config_end_date' : None, # None or yyyy-mm-dd HH:MM:SS
12             'packages' : ('avp', 'met'),
13             }
14
15 sensor_info = {
16     'avp' : { 'id' : 'avp',
17               'description' : 'Automated profiler data ctd and water quality',
18               'raw_dir' : '/seacoos/data/nccoos/level0/morgan/avp/',
19               'raw_file_glob' : '*.dat',
20               'proc_dir' : '/seacoos/data/nccoos/level1/morgan/avp/',
21               'process_module' : 'proc_avp_ysi_6600_v2',
22               'utc_offset' : 5.,     # hours offset to Eastern Standard
23               'bin_size' : 0.1,      # meters
24               'nbins' : 40,          # for now, water_depth (MSL) divided by bin_size
25               'latest_dir' : '/seacoos/data/nccoos/latest_v2.0',
26               'latest_vars' : ('time','lat','lon','z','wtemp','salin'),
27               },
28     'met' : { 'id' : 'met',
29               'description' : 'Wind Data at Automated Vertical Profiler Station',
30               'raw_dir' : '/seacoos/data/nccoos/level0/morgan/met/',
31               'raw_file_glob' : '*.wnd',
32               'proc_dir' : '/seacoos/data/nccoos/level1/morgan/met/',
33               'process_module' : 'proc_avp_ascii_met',
34               'utc_offset' : 5.,             # hours offset to Eastern Standard
35               'anemometer_height' : 2.,      # meters
36               'latest_dir' : '/seacoos/data/nccoos/latest_v2.0',
37               'latest_vars' : ('time','lat','lon','z','u','v','wspd', 'wdir'),
38              },
39     }
Note: See TracBrowser for help on using the browser.