Index: sodar/branches/raw2proc-dev/billymitchell_config_20090623.py =================================================================== --- sodar/branches/raw2proc-dev/billymitchell_config_20090623.py (revision 299) +++ sodar/branches/raw2proc-dev/billymitchell_config_20090623.py (revision 304) @@ -14,7 +14,9 @@ 'sfas' : { 'id' : 'sodar', 'description' : 'Wind profile data', - 'raw_dir' : '/seacoos/data/nccoos/level0/billymitchell/sodar1', + 'raw_dir' : '/seacoos/data/nccoos/level0/' + 'billymitchell/sodar1/mnd', 'raw_file_glob' : '*.mnd', - 'proc_dir' : '/seacoos/data/nccoos/level1/billymitchell/sodar1', + 'proc_dir' : '/seacoos/data/nccoos/level1/' + 'billymitchell/sodar1', 'process_module' : 'proc_remtech_rawdata_pa0', 'utc_offset' : 5, # hours offset to utc @@ -27,3 +29,2 @@ }, } - Index: sodar/branches/raw2proc-dev/proc_scintec_maindata_sfas.py =================================================================== --- sodar/branches/raw2proc-dev/proc_scintec_maindata_sfas.py (revision 303) +++ sodar/branches/raw2proc-dev/proc_scintec_maindata_sfas.py (revision 304) @@ -136,5 +136,5 @@ '_FillValue' : -99999., } - + var_atts = { # coordinate variables @@ -198,5 +198,5 @@ }, } - + # dimension names use tuple so order of initialization is maintained dim_inits = ( @@ -225,5 +225,5 @@ ('error', pycdf.NC.INT, ('ntime', 'nz')), ) - + # subset data only to month being processed (see raw2proc.process()) i = data['in'] @@ -242,5 +242,5 @@ ('error', data['error'][i]), ) - + return (global_atts, var_atts, dim_inits, var_inits, var_data) @@ -255,5 +255,5 @@ 'modification_date' : nowDt.strftime("%Y-%m-%d %H:%M:%S"), } - + # data variables # update any variable attributes like range, min, max @@ -262,5 +262,5 @@ # subset data only to month being processed (see raw2proc.process()) i = data['in'] - + # data var_data = ( @@ -273,4 +273,4 @@ ('error', data['error'][i]), ) - + return (global_atts, var_atts, var_data)