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

root/raw2proc/trunk/raw2proc/jpier_config_20080411.py

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

ncutil--added functions; proc2latest--moved to procutil; configs--added the computed mean_water_depth where measured and mean_water_depth_time_period

Line 
1 platform_info = {
2             'id' : 'jpier',
3             'location' : 'Jennettes Pier, Nags Head, NC',
4             'lat' : 35.9101,         # degrees true (-) south, (+) north
5             'lon' : -75.5958,         # degrees true (-) west, (+) east
6             'mvar' : -10.83333,      # degrees (-) west, (+) east       
7             'mean_water_depth' : -11.38, # meters (-) down, (+) up
8             'mean_water_depth_time_period' : 'May 2008 - Oct 2008',
9             'institution' : 'nccoos',
10             #
11             'config_start_date' : '2008-04-11 00:00:00',
12             'config_end_date' : '2008-07-21 23:00:00', # None or yyyy-mm-dd HH:MM:SS
13             'packages' : ('adcp', 'adcpwaves'),
14             }
15 sensor_info = {
16     'adcp' : { 'id' : 'adcp',
17                'description' : 'Current profile data',
18                'raw_dir' : '/seacoos/data/nccoos/level0/jpier/adcp_ascii',
19                'raw_file_glob' : '*.wpa',
20                'proc_dir' : '/seacoos/data/nccoos/level1/jpier/adcp',
21                'process_module' : 'proc_nortek_wpa_adcp',
22                'utc_offset' : 4,      # hours offset to utc
23                'nbins' : 34,
24                'bin_size' : 0.5,      # meters
25                'transducer_ht' : 0.5, # meters above the bottom
26                # 'blanking_ht' : 0.41,  # meters above transducer
27                'blanking_ht' : 1.9,  # meters above transducer
28                'latest_dir' : '/seacoos/data/nccoos/latest_v2.0',
29                'latest_vars' : ('time','lat','lon','z','u','v'),
30                },
31     'adcpwaves' : {'id' : 'adcpwaves',
32                    'description' : 'Directional wave data',
33                    'raw_dir' : '/seacoos/data/nccoos/level0/jpier/adcp_ascii',
34                    'raw_file_glob' : '*.wds',
35                    'proc_dir' : '/seacoos/data/nccoos/level1/jpier/adcpwaves',
36                    'process_module' : 'proc_nortek_wds_dw',
37                    'utc_offset' : 4,  # hours offset to utc
38                    'ndir' : 90.,
39                    'nfreq' : 97.,
40                    'latest_dir' : '/seacoos/data/nccoos/latest_v2.0',
41                    'latest_vars' : ('time','lat','lon','z','Tp','Hs'),
42                    },
43
44         }
Note: See TracBrowser for help on using the browser.