-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlb1_config_20120120.py
More file actions
53 lines (52 loc) · 2.43 KB
/
lb1_config_20120120.py
File metadata and controls
53 lines (52 loc) · 2.43 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
platform_info = {
'id' : 'lb1',
'location' : 'Long Bay, NC, Shelf Bottom Frame',
'lat' : 33.16953, # degrees true (-) south, (+) north
'lon' : -78.33345, # degrees true (-) west, (+) east
'mvar' : -8.7, # degrees (-) west, (+) east
'altitude': 0., # (approx.) station altitude
'altitude_units' : 'm',
'altitude_reference' : 'sea_surface',
#
'mean_water_depth': -31.0,
'mean_water_depth_time_period': 'Not determined',
'institution' : 'nccoos',
#
'config_start_date' : '2012-01-20 16:00:00',
'config_end_date' : '2012-04-04 13:40:00', # None or yyyy-mm-dd HH:MM:SS
'packages' : ('ctd', ),
# Required by CF
'institution' : 'Unversity of North Carolina at Chapel Hill (UNC-CH)',
'institution_url' : 'http://nccoos.org',
'institution_dods_url' : 'http://nccoos.org',
'contact' : 'Sara Haines (haines@email.unc.edu)',
'conventions' : 'CF-1.0; SEACOOS-CDL-v2.0',
# Required by Scout
'format_category_code' : 'fixed-point',
'institution_code' : 'nccoos',
# Recommended
'project' : 'Long Bay (LB) Wintertime Blooms',
'project_url' : 'http://nccoos.org/projects/long-bay-wintertime-blooms',
'metadata_url' : 'http://nccoos.org',
'references' : 'http://nccoos.org',
'source': 'SKIO Bottom Frame',
}
sensor_info = {
'ctd' : { 'id' : 'ctd',
'description' : 'Bottom CTD Data each sample period',
'raw_dir' : '/seacoos/data/long_bay/level0/lb1/ctd/2012_01/',
'raw_file_glob' : '*',
'proc_dir' : '/seacoos/data/long_bay/level1/lb1/ctd/',
'process_module' : 'proc_sbe37_ctd',
'utc_offset' : 0, # hours offset to utc of sampling time
'nominal_depth' : -30.0, # meters
'depth_units' : 'm',
'depth_reference' : 'sea_surface',
# Recommended
'source': 'Seabird (SBE) 37 SM',
# 'latest_dir' : '/seacoos/data/nccoos/latest_v2.0',
# 'latest_vars' : ('time','lat','lon','z','depth', 'wtemp', 'cond', 'salin', 'density'),
'plot_module': 'plot_cr1000_ctd',
'plot_names': ('timeseries',),
},
}