shipname = 'Kilo Moana' cruiseid = 'km1409' yearbase = 2014 uhdas_dir = '/home/data/km1409' # from proc_cfg.py: ## for processing ##---------------- ## ship name: shipname = 'Kilo Moana' ## at-sea "proc_cfg.py" initialized date = '2014/02/12 23:13:24' ## ## 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 = 'posmv' pos_msg = 'gps' # choose attitude instruments (directory and rbin message) pitch_inst = 'posmv' # pitch is recorded, but NOT used in transformation pitch_msg = 'pmv' # disable with '' (not None) roll_inst = 'posmv' # roll is recorded, but NOT used in transformation roll_msg = 'pmv' # 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'), ('posmv', 'pmv'), ] ## instrument for heading corr to ADCP data (dir and msg) hcorr_inst = 'posmv' # disable with '' (not None) hcorr_msg = 'pmv' # disable with '' (not None) hcorr_gap_fill = 0.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======== # values substituted into cruise_proc.m (for matlab) # heading alignment: nominal - (cal/watertrack) h_align = dict( wh300 = 45.52, os38 = 44.55, ) # transducer depth, meters ducer_depth = dict( wh300 = 7, os38 = 7, ) # velocity scalefactor # see SoundspeedFixer in pycurrents/adcp/pingavg.py scalefactor = dict( wh300 = 1.0, os38bb = 1.0, os38nb = 1.0, ) # soundspeed soundspeed = dict( wh300 = None, os38bb = None, os38nb = None, ) # salinity salinity = dict( wh300 = None, os38bb = None, os38nb = 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( wh300 = 500, os38bb = 2000, os38nb = 2000, ) # special: weakprof_numbins weakprof_numbins = dict( wh300 = None, os38bb = None, os38nb = None, ) # set averaging intervals enslength = dict( wh300 = 120, os38bb = 300, os38nb = 300, ) # Estimate of offset between ADCP transducer and gps # this has one value per instrument # ADCP (dx=startboard, 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( wh300 = -2, os38 = 16, ) xducer_dy = dict( wh300 = 1, os38 = 6, )