shipname = 'Oceanus' cruiseid = 'oc1804b' yearbase = 2018 uhdas_dir = '/home/data/oc1804b' # from proc_cfg.py: ## for processing ##---------------- ## ship name: shipname = 'Oceanus' ## at-sea "proc_cfg.py" initialized date = '2018/02/08 03:36:22' ## ## This file starts as /home/adcp/config/proc_cfg.py and ## includes the following information. Uncomment, left-justify ## and fill these in if you are attempting to generate proc_cfg.py ## from this template. The file must be named {cruiseid}_proc.py ## or for this example, kk1105_proc.py ## ## example values: fill in for your cruise... # # yearbase = 2011 # usually year of first data logged # uhdas_dir = '/home/data/kk1105' # path to uhdas data directory # shipname = 'Ka`imikai O Kanaloa' # for documentation # cruiseid = 'kk1105' # for titles # # #======== serial inputs ========= # choose position instrument (directory and rbin message) pos_inst = 'gpsnav' pos_msg = 'gps' # choose attitude instruments (directory and rbin message) #pitch_inst = 'ashtech' # pitch is recorded, but NOT used in transformation pitch_inst = 'adu5' # pitch is recorded, but NOT used in transformation pitch_msg = 'adu' # disable with '' (not None) #roll_inst = 'ashtech' # roll is recorded, but NOT used in transformation roll_inst = 'adu5' # roll is recorded, but NOT used in transformation roll_msg = 'adu' # disable with '' (not None) hdg_inst = 'gyro' # reliable heading, used for beam-earth transformation hdg_msg = 'hdg' ## heading correction ## all heading+msg pairs, for hbin files hdg_inst_msgs = [ ('gyro', 'hdg'), ('adu5', 'adu'), ('adu800', 'adu'), ] ## instrument for heading corr to ADCP data (dir and msg) #hcorr_inst = 'ashtech' # disable with '' (not None) hcorr_inst = 'adu5' # disable with '' (not None) hcorr_msg = 'adu' # disable with '' (not None) hcorr_gap_fill = 3.0 ## fallback correction for hcorr gaps ## calculate hdg_inst - hcorr_inst, eg gyro - ashtech ## SAME SIGN CONVENTION as cal/rotate/ens_hcorr.ang ## if there is a posmv acc_heading_cutoff = 0.02 # =========== ADCP transformations======== # historically, values were substituted into cruise_proc.m # now, in Python, they are used directly # heading alignment: nominal - (cal/watertrack) h_align = dict( os150 = 45, os75 = -43.9, wh300 = 51.9, ) # transducer depth, meters ducer_depth = dict( os150 = 5, os75 = 5, wh300 = 5, ) # velocity scalefactor # see SoundspeedFixer in pycurrents/adcp/pingavg.py scalefactor = dict( os75bb = 1.0, wh300 = 1.0, os150nb = 1.0, os75nb = 1.0, os150bb = 1.0, ) # soundspeed # Soundspeed is usually None, and should ALWAYS be left as None for Ocean Surveyor # (it is remotely possible that soundspeed for a WH, BB, or NB might need to # bet set to a nnumber, but usually that just results in an erroneous # scale factor. soundspeed = dict( os75bb = None, wh300 = None, os150nb = None, os75nb = None, os150bb = None, ) # salinity salinity = dict( os75bb = None, wh300 = None, os150nb = None, os75nb = None, os150bb = None, ) #================================================================= # ========= values for quick_adcp.py ========== # ========= These are set here for at-sea procesing, ========== # ========= but are REQUIRED in quick_adcp.py control ========== # ========= file for batch mode or reprocessing. ========== ## choose whether or not to use topography for editing ## 0 = "always use amplitude to guess the bottom; ## flag data below the bottom as bad ## -1 = "never search for the bottom" ## positive integer: Only look for the bottom in deep water ## "deep water" defined as "topo database says greater than this" max_search_depth = dict( os75bb = 2000, wh300 = 500, os150nb = 1000, os75nb = 2000, os150bb = 1000, ) # special: weakprof_numbins weakprof_numbins = dict( os75bb = None, wh300 = None, os150nb = None, os75nb = None, os150bb = None, ) # set averaging intervals enslength = dict( os75bb = 300, wh300 = 120, os150nb = 300, os75nb = 300, os150bb = 300, ) # Estimate of offset between ADCP transducer and gps # this has one value per instrument # ADCP (dx=starboard, dy=fwd) meters from GPS # specify integer values for 'xducer_dx' and 'xducer_dy' for each instrument, # as from cal/watertrk/guess_xducerxy xducer_dx = dict( os150 = 1, os75 = 1, wh300 = 1, ) xducer_dy = dict( os150 = -30, os75 = -30, wh300 = -30, ) ## if there is a bad beam, create a dictionary modeled after ## enslen (i.e. Sonar-based, not instrument based) and use the ## RDI number (1,2,3,4) to designate the beam to leave out.