-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbillymitchell_config_20090624.py
27 lines (27 loc) · 1.24 KB
/
billymitchell_config_20090624.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
platform_info = {
'id' : 'billymitchell',
'location' : 'Billy Mitchell Airfield, Frisco, NC',
'lat' : 35.231691, # degrees true (-) south, (+) north
'lon' : -75.622614, # degrees true (-) west, (+) east
'mvar' : -10.683333, # degrees (-) west, (+) east
'institution' : 'nccoos',
'config_start_date' : '2009-06-24 14:00:00',
'config_end_date' : '2010-09-01 10:00:00', # None or yyyy-mm-dd HH:MM:SS
'packages' : ('sfas',),
}
sensor_info = {
'sfas' : { 'id' : 'sodar',
'description' : 'Wind profile data',
'raw_dir' : '/seacoos/data/nccoos/level0/billymitchell/sodar1/mnd',
'raw_file_glob' : '*.mnd',
'proc_dir' : '/seacoos/data/nccoos/level1/billymitchell/sodar1',
'process_module' : 'proc_scintec_maindata_sfas',
'utc_offset' : 0, # hours offset to utc
'min_altitude' : 10, # meters
'altitude_interval' : 5, # meters
'num_altitudes' : 39,
'sensor_elevation' : 0, # meters (runway elev is at 5.2 m)
'plot_module' : 'billymitchell_sodar_plot',
'plot_names' : ('timeseries', 'wind_vectors', 'wind_barbs'),
},
}