Changeset 245

Show
Ignore:
Timestamp:
10/31/08 14:42:50
Author:
dan
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • scout/trunk/cdl_0master.pl

    r241 r245  
    11############################################################################### 
    22# Revisions 
     3# Rev: 1.3.1.0 
     4# Module: fixed_profiler 
     5# Sunroutine: ProcessADCPVar 
     6# Changes: Compare the data value to the missing value or fill value so we can correctly handle those cases. 
     7# Subroutine:ProcessVar 
     8# Changes: If the measurement is either water_depth or water_level, we handle their elevation differently. 
     9 
     10# Rev: 1.3.0.0 
     11# Author: DWR 
     12# Subroutine: fixed_point 
     13# Changes: Added in the eastward_current variable for the obskml. 
     14#          Convert the current_speed into cm_s-1 from m_s-1. 
     15#          get_mag_dir changed the formatting from %d to %f. 
     16 
    317# Rev: 1.2.0.0 
    418# Author: DWR 
     
    282296elsif( $format_category_value eq 'fixed-profiler') 
    283297{ 
     298  my $strObsKMLDir = "$strObsKMLFilePath/profiler"; 
     299  #For now we only put carocoops and nccoos profile data into directorys to get pulled for processing. 
     300  if( $institution_code_value eq 'carocoops' ||  
     301      $institution_code_value eq 'nccoos' ) 
     302  { 
     303    $strObsKMLDir = "$strObsKMLFilePath/$institution_code_value"; 
     304  } 
    284305  #Check to see if the institution specific directory exists. 
    285   my $strObsKMLDir = "$strObsKMLFilePath/profiler"; 
    286306  if( ( -d "$strObsKMLDir" ) == 0 ) 
    287307  { 
     
    325345my $strEndTime = `date +%s`; 
    326346print( "End Time: $strEndTime\n" ); 
     347