Changeset 2030 for palm/trunk/SCRIPTS
- Timestamp:
- Oct 20, 2016 3:24:13 PM (8 years ago)
- Location:
- palm/trunk/SCRIPTS/NCL
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/NCL/cross_sections.ncl
r1626 r2030 30 30 function file_exists(version:string,file_name:string) 31 31 begin 32 if( version . EQ. "6.2.1" ) then32 if( version .GE. "6.2.1" ) then 33 33 existing = fileexists(file_name) 34 34 else -
palm/trunk/SCRIPTS/NCL/profiles.ncl
r1559 r2030 28 28 function file_exists(version:string,file_name:string) 29 29 begin 30 if( version . EQ. "6.2.1" ) then30 if( version .GE. "6.2.1" ) then 31 31 existing = fileexists(file_name) 32 32 else -
palm/trunk/SCRIPTS/NCL/spectra.ncl
r1559 r2030 28 28 function file_exists(version:string,file_name:string) 29 29 begin 30 if( version . EQ. "6.2.1" ) then30 if( version .GE. "6.2.1" ) then 31 31 existing = fileexists(file_name) 32 32 else -
palm/trunk/SCRIPTS/NCL/timeseries.ncl
r1559 r2030 29 29 function file_exists(version:string,file_name:string) 30 30 begin 31 if( version . EQ. "6.2.1" ) then31 if( version .GE. "6.2.1" ) then 32 32 existing = fileexists(file_name) 33 33 else
Note: See TracChangeset
for help on using the changeset viewer.