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

root/raw2proc/trunk/raw2proc/b2_config_20111112.py

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

--

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-12 00:00:00',
16             'config_end_date' : '2012-04-04 00: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             }
34
35 sensor_info = {
36     'met' : { 'id' : 'met',
37               'description' : 'Meterological Data from Buoy',
38               'raw_dir' : '/seacoos/data/nccoos/level0/b2/met/',
39               'raw_file_glob' : '*.dat',
40               'proc_dir' : '/seacoos/data/nccoos/level1/b2/met/',
41               'process_module' : 'proc_cr1000_met',
42               'utc_offset' : 0,  # hours offset to utc of sampling time
43               'barometer_height'   : 1.5,   # meters
44               'temperature_height' : 1.5,   # meters
45               'height_units' : 'm',
46               'height_reference' : 'sea_surface',
47               # 'latest_dir' : '/seacoos/data/nccoos/latest_v2.0',
48               # 'latest_vars' : ('time','lat','lon','z','u', 'v', 'wspd', 'wdir'),
49               # Recommended
50               'source': 'Heise Baro, Rotronics Temp/RH, RM Young Precip, Eppley PSP/PIR',
51              },
52     'wind' : { 'id' : 'wind',
53               'description' : 'Wind Data averaged for one minute each sample period',
54               'raw_dir' : '/seacoos/data/nccoos/level0/b2/wind/',
55               'raw_file_glob' : '*.dat',
56               'proc_dir' : '/seacoos/data/nccoos/level1/b2/wind/',
57               'process_module' : 'proc_cr1000_wind',
58               'utc_offset' : 0,  # hours offset to utc of sampling time
59               'anemometer1_height' : 3.66,  # meters (12 ft)
60               'anemometer2_height' : 3.35,  # meters (11 ft above sea surface)
61               'height_units' : 'm',
62               'height_reference' : 'sea_surface',
63               # 'latest_dir' : '/seacoos/data/nccoos/latest_v2.0',
64               # 'latest_vars' : ('time','lat','lon','z','u', 'v', 'wspd', 'wdir'),
65               # Recommended
66               'source': 'RM Young Marine Wind Monitor 5106',
67              },
68     'ctd1' : { 'id' : 'ctd1',
69               'description' : 'Near-surface CTD Data each sample period',
70               'raw_dir' : '/seacoos/data/nccoos/level0/b2/ctd1/store/2011_11',
71               'raw_file_glob' : '*',
72               'proc_dir' : '/seacoos/data/nccoos/level1/b2/ctd1/',
73               'process_module' : 'proc_sbe37_ctd',
74               'utc_offset' : 0,  # hours offset to utc of sampling time
75               'nominal_depth' : -2.0,  # meters
76               'depth_units' : 'm',
77               'depth_reference' : 'sea_surface',
78               # 'latest_dir' : '/seacoos/data/nccoos/latest_v2.0',
79               # 'latest_vars' : ('time','lat','lon','z','depth', 'wtemp', 'cond', 'salin', 'density'),
80               # Recommended
81               'source': 'Seabird (SBE) 37 IMP',
82              },
83     'ctd2' : { 'id' : 'ctd2',
84                'description' : 'Mid-level CTD Data each sample period',
85               'raw_dir' : '/seacoos/data/nccoos/level0/b2/ctd2/store/2011_11',
86               'raw_file_glob' : '*',
87               'proc_dir' : '/seacoos/data/nccoos/level1/b2/ctd2/',
88               'process_module' : 'proc_sbe37_ctd',
89               'utc_offset' : 0,  # hours offset to utc of sampling time
90               'nominal_depth' : -15.0,  # meters
91               'depth_units' : 'm',
92               'depth_reference' : 'sea_surface',
93               # 'latest_dir' : '/seacoos/data/nccoos/latest_v2.0',
94               # 'latest_vars' : ('time','lat','lon','z','depth', 'wtemp', 'cond', 'salin', 'density'),
95               # Recommended
96               'source': 'Seabird (SBE) 37 IMP',
97              },
98     }
Note: See TracBrowser for help on using the browser.