-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbaypoint_config_20101115.py
38 lines (37 loc) · 1.83 KB
/
baypoint_config_20101115.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
platform_info = {
'id' : 'baypoint',
'location' : 'Bay Point, Neuse River, NC',
'lat' : 35.0639, # degrees true (-) south, (+) north
'lon' : -77.0028, # degrees true (-) west, (+) east
'mvar' : -9.80, # degrees (-) west, (+) east
'institution' : 'nccoos',
#
'config_start_date' : '2010-11-15 00:00:00',
'config_end_date' : '2010-11-15 00:00:00', # None or yyyy-mm-dd HH:MM:SS
'packages' : ('avp', 'met'),
}
sensor_info = {
'avp' : { 'id' : 'avp',
'description' : 'Automated profiler data ctd and water quality',
'raw_dir' : '/seacoos/data/nccoos/level0/baypoint/avp/',
'raw_file_glob' : '*.dat',
'proc_dir' : '/seacoos/data/nccoos/level1/baypoint/avp/',
'process_module' : 'proc_avp_ysi_6600_v1_CDL2',
'utc_offset' : 5., # hours offset to Eastern Standard
'bin_size' : 0.1, # meters
'nbins' : 150, # max number of samples in profile
'latest_dir' : '/seacoos/data/nccoos/latest_v2.0',
'latest_vars' : ('time','lat','lon','z','wtemp','salin'),
},
'met' : { 'id' : 'met',
'description' : 'Wind Data at Automated Vertical Profiler Station',
'raw_dir' : '/seacoos/data/nccoos/level0/baypoint/met/',
'raw_file_glob' : '*.wnd',
'proc_dir' : '/seacoos/data/nccoos/level1/baypoint/met/',
'process_module' : 'proc_avp_ascii_met',
'utc_offset' : 5., # hours offset to Eastern Standard
'anemometer_height' : 2., # meters
'latest_dir' : '/seacoos/data/nccoos/latest_v2.0',
'latest_vars' : ('time','lat','lon','z','u','v','wspd', 'wdir'),
},
}