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

root/raw2proc/trunk/raw2proc/b2_config_20111005.py

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

Add Billy Mitchell config for 15-195 meters altitude.

Line 
1 platform_info = {
2             'id' : 'b2',
3             'location' : 'Raleigh Bay, 17 nm South of Ocracoke, NC',
4             'lat' : 34.7824,   # degrees true (-) south, (+) north
5             'lon' : -75.9410,  # degrees true (-) west, (+) east
6             'mvar' : -10.4,    # degrees (-) west, (+) east
7             'altitude': 0.,   # (approx.) station altitude
8             'altitude_units' : 'm',
9             'altitude_reference' : 'above_sea_level',
10             #
11             'mean_water_depth': -29.2, # meters (96 feet)
12             'mean_water_depth_time_period': 'Not determined',
13             'institution' : 'nccoos',
14             #
15             'config_start_date' : '2011-10-06 00:00:00',
16             'config_end_date' : None, # None or yyyy-mm-dd HH:MM:SS
17             'packages' : ('met', 'wind',),
18             }
19
20 sensor_info = {
21     'met' : { 'id' : 'met',
22               'description' : 'Meterological Data from Buoy',
23               'raw_dir' : '/seacoos/data/nccoos/level0/b2/met/',
24               'raw_file_glob' : '*.dat',
25               'proc_dir' : '/seacoos/data/nccoos/level1/b2/met/',
26               'process_module' : 'proc_cr1000_met',
27               'utc_offset' : 0,  # hours offset to utc of sampling time
28               'barometer_height'   : 1.5,   # meters
29               'temperature_height' : 1.5,   # meters
30               'height_units' : 'm',
31               'height_reference' : 'above_sea_level',
32               # 'latest_dir' : '/seacoos/data/nccoos/latest_v2.0',
33               # 'latest_vars' : ('time','lat','lon','z','u', 'v', 'wspd', 'wdir'),
34              },
35     'wind' : { 'id' : 'wind',
36               'description' : 'Wind Data averaged for one minute each sample period',
37               'raw_dir' : '/seacoos/data/nccoos/level0/b2/wind/',
38               'raw_file_glob' : '*.dat',
39               'proc_dir' : '/seacoos/data/nccoos/level1/b2/wind/',
40               'process_module' : 'proc_cr1000_wind',
41               'utc_offset' : 0,  # hours offset to utc of sampling time
42               'anemometer1_height' : 3.66,  # meters (12 ft)
43               'anemometer2_height' : 3.35,  # meters (11 ft above sea surface)
44               'height_units' : 'm',
45               'height_reference' : 'above_sea_level',
46               # 'latest_dir' : '/seacoos/data/nccoos/latest_v2.0',
47               # 'latest_vars' : ('time','lat','lon','z','u', 'v', 'wspd', 'wdir'),
48              },
49     }
Note: See TracBrowser for help on using the browser.