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

Changeset 505

Show
Ignore:
Timestamp:
04/24/13 14:28:06
Author:
cbc
Message:

Regularize corrected variable names.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gliderproc/trunk/gliderOptode_Generate_L1_Data.m

    r504 r505  
    249249 
    250250        % third, implement the pressure correction to DO concentration (page 32) 
    251         o2_tspcoor = o2_tscorr .* (1 + (0.04 .* depthi ./ 1000)); 
     251        o2_tspcorr = o2_tscorr .* (1 + (0.04 .* depthi ./ 1000)); 
    252252 
    253253        % use polynomial to calculate DO satuations using the measured temp and 
     
    273273        o2_sol = exp(rslt); 
    274274 
    275         o2_sat = (o2_tspcoor .* 2.2414) ./ o2_sol; 
     275        o2_sat = (o2_tspcorr .* 2.2414) ./ o2_sol; 
    276276 
    277277        % convert ptime into datenum style... 
     
    299299            'o2_tcorr', '10e-6 mol/dm3', ... 
    300300            'o2_tscorr', '10e-6 mol/dm3', ... 
    301             'o2_tspcoor', '10e-6 mol/dm3', ... 
     301            'o2_tspcorr', '10e-6 mol/dm3', ... 
    302302            'o2_sol', 'cm3/liter at 1031 hPa', ... 
    303303            'o2_sat', 'percent'); 
     
    323323            'o2_tcorr', 'temperature corrected dissolved oxygen', ... 
    324324            'o2_tscorr', 'temperature and salinity corrected dissolved oxygen', ... 
    325             'o2_tspcoor', 'temperature, salinity, and pressure corrected dissolved oxygen', ... 
     325            'o2_tspcorr', 'temperature, salinity, and pressure corrected dissolved oxygen', ... 
    326326            'o2_sol', 'corrected oxygen solubility', ... 
    327327            'o2_sat', 'corrected oxygen saturation'); 
     
    366366             'o2_tcorr', ... 
    367367             'o2_tscorr', ... 
    368              'o2_tspcoor', ... 
     368             'o2_tspcorr', ... 
    369369             'o2_sol', ... 
    370370             'o2_sat');