shipname = "Oceanus" # 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', '/net/snapserv/adcp'] 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 = 3600 # experimental 2006/06/04: try 10 minutes; reverted back to 1 hour by fbahr, 2006/06/05 #long_t = 600 # Working directory for calculations and intermediate products: workdir = '/home/adcp/tmp' # Command string to start up the speedlog; empty string or # None to disable the speedlog. If there is a speedlog command, # the string must end with '&' so that it will be executed in # the background. #speedlog_cmd = '/home/adcp/scripts/DAS_KMspeedlog.py &' # backgrounded speedlog_cmd = None # No speedlog at present. # for processing #---------------- ### choose the instrument to use for heading correction. options: # 'gyro', 'ashtech', 'posmv', or 'seapath' ## This will be substituted into cruise_cfg.m, where matlab looks for it hcorr_inst = 'ashtech' ## 'gyro', 'seapath', 'ashtech', '' ## daily.py will get statistics on these (assumes correct messages are logged) #attitude_devices = ['posmv', 'ashtech'] attitude_devices = ['ashtech'] ## for quick_adcp.py: # initialize; # fill firstdepth = {} firstdepth['nb150'] = 17 firstdepth['os75bb'] = 25 firstdepth['os75nb'] = 40 # averaging interval (seconds) enslength = {} enslength['nb150'] = 300 enslength['os75bb'] = 300 enslength['os75nb'] = 300 ## which instrument and pingtype to be used for kts+dir 5-minute vector? kt_vec = {} kt_vec['instname'] = 'nb150' kt_vec['depthrange'] = [0, 50]; ##################################### # 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 : [] tarball_mailto = ["uhdas@soest.hawaii.edu"] ## to avoid mailing tarball, do it this way: # tarball_mailto = [] # from outside, mail to: martech@wecoma.shipops.oregonstate.edu # includes web links on currents: local_status_mailto = ["fbahr@whoi.edu","sssg@oceanus.whoi.edu"] shore_status_mailto = ["hummon@hawaii.edu","fbahr@whoi.edu", "jakens@whoi.edu", "sssg@oceanus.whoi.edu"] SMTP_server = "199.92.160.21" mail_from = "adcp@oceanus.whoi.edu" #####################################