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

Changeset 499

Show
Ignore:
Timestamp:
03/19/13 16:46:17
Author:
cbc
Message:

More initial Calloway revisions to Seim revisions.

Files:

Legend:

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

    r496 r499  
    1313 
    1414function gliderCTD_GeneratePlots(gliderIndex, deploymentNumber, legNumber,... 
    15                                  plotFlag_TS, plotFlag_TS_AllLegs, plotFlag_TS_Chlorophyll,... 
     15                                 plotFlag_TS, plotFlag_TS_AllLegs,... 
    1616                                 plotFlag_Temperature, plotFlag_Salinity, plotFlag_Density,... 
    17                                  plotFlag_Chlorophyll, plotFlag_TemperatureProfile,... 
     17                                 plotFlag_TemperatureProfile,... 
    1818                                 plotFlag_SalinityProfile, plotFlag_DensityProfile,... 
    19                                  plotFlag_ChlorophyllProfile, plotFlag_Temperature3D,... 
     19                                 plotFlag_Temperature3D,... 
    2020                                 plotFlag_Salinity3D, plotFlag_Density3D,... 
    21                                  plotFlag_Chlorophyll3D, plotFlag_AllGliderTracks) 
     21                                 plotFlag_AllGliderTracks) 
    2222                              
    2323 
     
    4747 
    4848    % mat file path string... 
    49     strMatFilePath = strcat('GLIDER_DATA_LEVEL1/', strGliderName, '_Deployment', strDeploymentNumber, '_DataL1.mat'); 
     49    strMatFilePath = strcat('GLIDER_DATA_LEVEL1/', strGliderName, '_Deployment', strDeploymentNumber, '_CTD_L1.mat'); 
    5050 
    5151     
     
    155155                      dens, densBounds, densCorrected, depth, pres,... 
    156156                      salin, salinBounds, salinCorrected,... 
    157                       temp, tempBounds, chlor, chlorBounds,... 
    158                       plotFlag_TS, plotFlag_TS_AllLegs, plotFlag_TS_Chlorophyll,... 
     157                      temp, tempBounds,... 
     158                      plotFlag_TS, plotFlag_TS_AllLegs,... 
    159159                      plotFlag_Temperature, plotFlag_Salinity, plotFlag_Density,... 
    160                       plotFlag_Chlorophyll, plotFlag_TemperatureProfile,... 
    161                       plotFlag_SalinityProfile, plotFlag_DensityProfile,... 
    162                       plotFlag_ChlorophyllProfile); 
     160                      plotFlag_TemperatureProfile,... 
     161                      plotFlag_SalinityProfile, plotFlag_DensityProfile); 
    163162 
    164163    % draw 3D plots... 
     
    167166                      ztop, zbottom, gpsLat, gpsLon, depth, pres,... 
    168167                      salinCorrected, salinBounds, densCorrected, densBounds,... 
    169                       temp, tempBounds, chlor, chlorBounds,... 
     168                      temp, tempBounds,... 
    170169                      plotFlag_Temperature3D, plotFlag_Salinity3D,... 
    171                       plotFlag_Density3D, plotFlag_Chlorophyll3D,... 
     170                      plotFlag_Density3D,... 
    172171                      plotFlag_AllGliderTracks); 
    173172