shipkey = "kn" #shipname = "Knorr" ##################################### # Additional ship configuration information: (all as comments) # # deeper blanking interval (yes: for os75 use 16m; default BT on) # # IP number 192.147.41.10 # gateway 192.147.41.60 # nameserver 192.147.41.2 # domain knorr.whoi.edu # # ntp server server 192.147.41.2 # server 192.147.41.60 # server 192.147.41.181 # # last changed May 20, 2008 ################################### # for DAS_while_cruise.py #------------------------- # List of paths to backup "data" subdirectories. Within each such # subdirectory, the cruise data directory (e.g., km0507) will # be found. If the active cruise is "km0507", then rsync will # be called periodically to copy the contents of /home/data/km0507 # to data/km0507 in each path in the list. backup_paths = ['/disk2/home'] # Interval in seconds between backups rsync_t = 3600 # for DAS_while_logging.py #-------------------------- # Interval in seconds between ensemble updates: short_t = 300 # Interval in seconds between database updates: long_t = 1800 # Working directory for calculations and intermediate products: workdir = '/home/adcp/uhdas_tmp' # Command string to start up the speedlog; empty string or # None to disable the speedlog. Do not include a trailing '&'. speedlog_cmd = None #'/home/currents/programs/logging/uhdas/DAS_speedlog.py' # for processing #---------------------------- # (1) values substituted into cruise_cfg.m (for matlab) ### choose the instrument to use for heading correction. options: # 'gyro', 'ashtech', 'posmv', or 'seapath' # to disable, set value to empty string: hcorr_inst = '' hcorr_inst = 'posmv' ## 'gyro', 'seapath', 'ashtech', 'mahrs', '' acc_heading_cutoff = .02 ## only used if hcorr_inst is posmv pos_inst = 'gpsnav' pos_msg = 'gps' hdg_inst = 'gyro' ## it is expected that this will be the gyro hdg_msg = 'hdg' ## or some device with HDG, or HDT strings pitch_inst = 'posmv' ## set BOTH to empty string to disable pitch_msg = 'pmv' ## i.e. pitch_inst='' ; pitch_msg='' roll_inst = 'posmv' ## set BOTH to empty string to disable roll_msg = 'pmv' ## i.e. pitch_inst='' ; pitch_msg='' # (2) values substituted into cruise_proc.m (for matlab) # heading alignment: nominal - (cal/watertrack) h_align = {} #h_align['os75'] = -42.9 # -45 - (-2.1) # new on 12/10/08, commenting out the originals h_align['wh300'] = 45.6 # 45-(-.6) = 45 - (watertrack) Jan 2010 h_align['os75'] = -43.4 # -45.0 - (-2.1) - (+0.5, kn195_1; 12/08) # transducer depth, meters ducer_depth = {} ducer_depth['wh300'] = 5 ducer_depth['os75'] = 5 # optional: weakprof_numbins # weakprof_numbins = {'os75bb' : 2} # velocity scalefactor scalefactor = {} scalefactor['wh300'] = 1.0 scalefactor['os75bb'] = 1.0 ## this should be the default scalefactor['os75nb'] = 1.0 # then it could mostly be left out # soundspeed soundspeed = {} soundspeed['wh300'] = None # soundspeed['os75bb'] = None # soundspeed['os75nb'] = None # # salinity salinity = {} salinity['wh300'] = None ## salinity['os75bb'] = None ## salinity['os75nb'] = None ## # 3-beam solution badbeam = {} # (3) values for quick_adcp.py ## choose whether or not to use topography for editing ## uses smith,sandwell version from about 2004 use_topo4edit = 1 # averaging interval (seconds) usually 300. might use 120sec for wh300 enslength = {} enslength['wh300'] = 120 enslength['os75bb'] = 300 enslength['os75nb'] = 300 # (4) values for web plots and quality monitoring ## daily.py will get statistics on these (assumes correct messages are logged) ## and quality plots will go on the web site on the long_t timer #attitude_devices = ['posmv', 'ashtech'] # string or list of strings attitude_devices = ['posmv', 'phins'] # new section, to create cruise_proc.m # all dictionaries must be filled ## for quick_adcp.py: # initialize; # fill ## going to be top_plotbin top_plotbin = {} top_plotbin['wh300'] = 1 top_plotbin['os75bb'] = 1 top_plotbin['os75nb'] = 1 ## set deeper, eg 2, if instrument has ringing ## which virtual instrument will be used for kts+dir 5-minute bridge plots? ## going to be kt_dir_instlist ['os75nb', 'os75bb'] kts_dir_instrument = ['wh300', 'os75nb', 'os75bb'] ##################################### # for daily.py: #-------------- # Each email "mailto" must be a list of email addresses: # ["et@this_ship.podunk.edu", "guru@podunk.edu"] # An empty list (no addresses) is : [] #temporarily commented out 2010/01/15 until we're out of EEZ tarball_mailto = ["uhdas@soest.hawaii.edu"] # includes web links on currents: local_status_mailto = ["sssg@mike.knorr.whoi.edu"] shore_status_mailto = ["hummon@hawaii.edu", "efiring@hawaii.edu", "fbahr@whoi.edu"] SMTP_server = "mike.knorr.whoi.edu" mail_from = "adcp@knorr.whoi.edu" #####################################