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

root/raw2proc/trunk/raw2proc/b2_config_20111112.py

Revision 511 (checked in by cbc, 10 years ago)

Change to axis metadata for Scintec sodar.

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' : 'sea_surface',
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-11-13 00:00:00',
16             'config_end_date' : '2012-04-03 20:00:00', # None or yyyy-mm-dd HH:MM:SS
17             'packages' : ('met', 'wind', 'ctd1', 'ctd2'),
18             # Required by CF
19             'institution' : 'Unversity of North Carolina at Chapel Hill (UNC-CH)',
20             'institution_url' : 'http://nccoos.org',
21             'institution_dods_url' : 'http://nccoos.org',
22             'contact' : 'Sara Haines (haines@email.unc.edu)',
23             'conventions' : 'CF-1.0; SEACOOS-CDL-v2.0',
24             # Required by Scout
25             'format_category_code' : 'fixed-point',
26             'institution_code' : 'nccoos',
27             # Recommended
28             'project' : 'North Carolina Coastal Ocean Observing System (NCCOOS)',
29             'project_url' : 'http://nccoos.org',           
30             'metadata_url' : 'http://nccoos.org',
31             'references' : 'http://nccoos.org',
32             'source': 'Buoy CR1000 Datalogger',
33             # Needed for processing NDBC output
34             'ndbc_module' : 'ndbc_41yyy',
35             'ndbc_id': '41yyy',
36             'ndbc_dir' : '/seacoos/data/nccoos/latest_ndbc',
37             'ndbc_missing' : -9999.0,
38             # report data to NDBC closest to top of each hour +/- 6 min
39             'ndbc_sample_interval':(1,'hour'),
40             'ndbc_sample_offset':(0,'minute'),
41             'ndbc_time_tolerance':(6,'minute'),
42             # report data closest to 0:10 and 0:40 each hour +/- 3 min
43             # 'ndbc_sample_interval':(30,'minute'), # every 30 min
44             # 'ndbc_sample_offset':(10,'minute'), # offset by +10 min
45             # 'ndbc_time_tolerance':(3,'minute'),
46             }
47
48 sensor_info = {
49     'met' : { 'id' : 'met',
50               'description' : 'Meterological Data from Buoy',
51               'raw_dir' : '/seacoos/data/nccoos/level0/b2/met/',
52               'raw_file_glob' : '*.dat',
53               'proc_dir' : '/seacoos/data/nccoos/level1/b2/met/',
54               'process_module' : 'proc_cr1000_met',
55               'utc_offset' : 0,  # hours offset to utc of sampling time
56               'barometer_height'   : 1.5,   # meters
57               'temperature_height' : 1.5,   # meters
58               'height_units' : 'm',
59               'height_reference' : 'sea_surface',
60               # Recommended
61               'source': 'Heise Baro, Rotronics Temp/RH, RM Young Precip, Eppley PSP/PIR',
62               # 'latest_dir' : '/seacoos/data/nccoos/latest_v2.0',
63               # 'latest_vars' : ('time','lat','lon','z','u', 'v', 'wspd', 'wdir'),
64               'ndbc_vars' : ('air_temp', 'air_press', 'rh', 'psp', 'pir'),
65               'ndbc_tags' : ('atmp1', 'baro1', 'rrh', 'srad1', 'lwrad'),
66               'ndbc_units' : ('degC', 'hPa', '%', 'W m-2', 'W m-2'),
67               'plot_module': 'plot_cr1000_met',
68               'plot_names': ('timeseries',),
69              },
70     'wind' : { 'id' : 'wind',
71               'description' : 'Wind Data averaged for one minute each sample period',
72               'raw_dir' : '/seacoos/data/nccoos/level0/b2/wind/',
73               'raw_file_glob' : '*.dat',
74               'proc_dir' : '/seacoos/data/nccoos/level1/b2/wind/',
75               'process_module' : 'proc_cr1000_wind',
76               'utc_offset' : 0,  # hours offset to utc of sampling time
77               'anemometer1_height' : 3.66,  # meters (12 ft)
78               'anemometer2_height' : 3.35,  # meters (11 ft above sea surface)
79               'height_units' : 'm',
80               'height_reference' : 'sea_surface',
81               # Recommended
82               'source': 'RM Young Marine Wind Monitor 5106',
83               # 'latest_dir' : '/seacoos/data/nccoos/latest_v2.0',
84               # 'latest_vars' : ('time','lat','lon','z','u', 'v', 'wspd', 'wdir'),
85               'ndbc_vars' : ('wspd1', 'wdir1', 'wgust1', 'wspd2', 'wdir2', 'wgust2'),
86               'ndbc_tags' : ('wspd1', 'wdir1', 'gust1', 'wspd2', 'wdir2', 'gust2'),
87               'ndbc_units' : ('m s-1', 'degrees', 'm s-1', 'm s-1', 'degrees', 'm s-1'),
88               'plot_module': 'plot_cr1000_wind',
89               'plot_names': ('timeseries',),
90              },
91     'ctd1' : { 'id' : 'ctd1',
92               'description' : 'Near-surface CTD Data each sample period',
93               'raw_dir' : '/seacoos/data/nccoos/level0/b2/ctd1/store/2011_11',
94               'raw_file_glob' : '*',
95               'proc_dir' : '/seacoos/data/nccoos/level1/b2/ctd1/',
96               'process_module' : 'proc_sbe37_ctd',
97               'utc_offset' : 0,  # hours offset to utc of sampling time
98               'nominal_depth' : -2.0,  # meters
99               'depth_units' : 'm',
100               'depth_reference' : 'sea_surface',
101               # Recommended
102               'source': 'Seabird (SBE) 37 IMP',
103               # 'latest_dir' : '/seacoos/data/nccoos/latest_v2.0',
104               # 'latest_vars' : ('time','lat','lon','z','depth', 'wtemp', 'cond', 'salin', 'density'),
105               'ndbc_vars' : ('wtemp','depth', 'wtemp', 'salin'),
106               # wtmp1 tag needed to get into weather obs, others for temp/salin obs
107               'ndbc_tags' : ('wtmp1', 'dp001', 'tp001', 'sp001'),
108               'ndbc_units' : ('degC', 'm', 'degC', 'psu'),
109               'plot_module': 'plot_cr1000_ctd',
110               'plot_names': ('timeseries',),
111              },
112     'ctd2' : { 'id' : 'ctd2',
113                'description' : 'Mid-level CTD Data each sample period',
114               'raw_dir' : '/seacoos/data/nccoos/level0/b2/ctd2/store/2011_11',
115               'raw_file_glob' : '*',
116               'proc_dir' : '/seacoos/data/nccoos/level1/b2/ctd2/',
117               'process_module' : 'proc_sbe37_ctd',
118               'utc_offset' : 0,  # hours offset to utc of sampling time
119               'nominal_depth' : -15.0,  # meters
120               'depth_units' : 'm',
121               'depth_reference' : 'sea_surface',
122               # Recommended
123               'source': 'Seabird (SBE) 37 IMP',
124               # 'latest_dir' : '/seacoos/data/nccoos/latest_v2.0',
125               # 'latest_vars' : ('time','lat','lon','z','depth', 'wtemp', 'cond', 'salin', 'density'),
126               'ndbc_vars' : ('depth', 'wtemp', 'salin'),
127               'ndbc_tags' : ('dp002', 'tp002', 'sp002'),
128               'ndbc_units' : ('m', 'degC', 'psu'),
129               'plot_module': 'plot_cr1000_ctd',
130               'plot_names': ('timeseries',),
131              },
132     }
Note: See TracBrowser for help on using the browser.