NCCOOS Trac Projects: Top | Web | Platforms | Processing | Viz | Sprints | Sandbox | (Wind)

Changeset 304

Show
Ignore:
Timestamp:
12/10/09 11:53:28
Author:
cbc
Message:

Fix raw and proc dirs.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sodar/branches/raw2proc-dev/billymitchell_config_20090623.py

    r299 r304  
    1414    'sfas' : { 'id' : 'sodar', 
    1515               'description' : 'Wind profile data', 
    16                'raw_dir' : '/seacoos/data/nccoos/level0/billymitchell/sodar1', 
     16               'raw_dir' : '/seacoos/data/nccoos/level0/' 
     17                           'billymitchell/sodar1/mnd', 
    1718               'raw_file_glob' : '*.mnd', 
    18                'proc_dir' : '/seacoos/data/nccoos/level1/billymitchell/sodar1', 
     19               'proc_dir' : '/seacoos/data/nccoos/level1/' 
     20                            'billymitchell/sodar1', 
    1921               'process_module' : 'proc_remtech_rawdata_pa0', 
    2022               'utc_offset' : 5,         # hours offset to utc 
     
    2729               }, 
    2830    } 
    29      
  • sodar/branches/raw2proc-dev/proc_scintec_maindata_sfas.py

    r303 r304  
    136136        '_FillValue' : -99999., 
    137137        } 
    138  
     138     
    139139    var_atts = { 
    140140        # coordinate variables 
     
    198198                  }, 
    199199        } 
    200  
     200     
    201201    # dimension names use tuple so order of initialization is maintained 
    202202    dim_inits = ( 
     
    225225        ('error', pycdf.NC.INT,   ('ntime', 'nz')), 
    226226                ) 
    227  
     227     
    228228    # subset data only to month being processed (see raw2proc.process()) 
    229229    i = data['in'] 
     
    242242        ('error', data['error'][i]), 
    243243        ) 
    244  
     244     
    245245    return (global_atts, var_atts, dim_inits, var_inits, var_data) 
    246246 
     
    255255        'modification_date' : nowDt.strftime("%Y-%m-%d %H:%M:%S"), 
    256256        } 
    257  
     257     
    258258    # data variables 
    259259    # update any variable attributes like range, min, max 
     
    262262    # subset data only to month being processed (see raw2proc.process()) 
    263263    i = data['in'] 
    264  
     264     
    265265    # data  
    266266    var_data = ( 
     
    273273        ('error', data['error'][i]), 
    274274        ) 
    275  
     275     
    276276    return (global_atts, var_atts, var_data)