shipname = "Roger Revelle" # 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/uhdas/uhdas/DAS_speedlog.py ' # 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', '' pos_inst = 'gpsnav' # GP90 GPS pos_msg = 'gps' hdg_inst = 'gyro' hdg_msg = 'hnc' pitch_inst = 'ashtech' pitch_msg = 'adu' roll_inst = 'ashtech' roll_msg = 'adu' ## daily.py will get statistics on these (assumes correct messages are logged) #attitude_devices = ['posmv', 'ashtech'] attitude_devices = ['ashtech', 'phins'] ## choose whether or not to use topography for editing use_topo4edit = 1 ## for quick_adcp.py: # initialize; # fill firstdepth = {} firstdepth['nb150'] = 35 # averaging interval (seconds) enslength = {} enslength['nb150'] = 300 ## which instrument and pingtype to be used for kts+dir 5-minute vector? kt_vec = {} kt_vec['instname'] = 'nb150' kt_vec['pingtype'] = 'nb' kt_vec['depthrange'] = [30, 70]; kt_vec['prof_depthrange'] = [0, 300]; ##################################### # 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 = [] # includes web links on currents: local_status_mailto = ["scg@rv-revelle.ucsd.edu"] shore_status_mailto = ["hummon@hawaii.edu", "efiring@hawaii.edu"] SMTP_server = "rv-revelle.ucsd.edu" mail_from = "adcp@rv-revelle.ucsd.edu" #####################################