Changeset 245
- Timestamp:
- 10/31/08 14:42:50
- Files:
-
- scout/trunk/cdl_0master.pl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
scout/trunk/cdl_0master.pl
r241 r245 1 1 ############################################################################### 2 2 # 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 3 17 # Rev: 1.2.0.0 4 18 # Author: DWR … … 282 296 elsif( $format_category_value eq 'fixed-profiler') 283 297 { 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 } 284 305 #Check to see if the institution specific directory exists. 285 my $strObsKMLDir = "$strObsKMLFilePath/profiler";286 306 if( ( -d "$strObsKMLDir" ) == 0 ) 287 307 { … … 325 345 my $strEndTime = `date +%s`; 326 346 print( "End Time: $strEndTime\n" ); 347
