Changeset 194 for palm/trunk/SCRIPTS/NCL/ncl_preferences.ncl
- Timestamp:
- Aug 28, 2008 12:15:13 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/NCL/ncl_preferences.ncl
r190 r194 1 1 begin 2 2 3 ;*********************************************************4 ; Please specify the used script by setting it to 1:5 3 ;********************************************************* 6 7 cross_sections = 0 8 profiles = 0 9 timeseries = 0 10 spectra = 0 4 5 script=which_script 11 6 12 7 ;********************************************************* 13 8 14 9 ;****************************************************** 15 10 ; parameters used by CROSS_SECTIONS 16 11 ;****************************************************** 17 12 18 if ( cross_sections .EQ. 1)then13 if (script .EQ. "cross_section")then 19 14 20 15 ;*************************************************** … … 28 23 ;*************************************************** 29 24 if(.not. isvar("file_1"))then 30 31 25 26 32 27 file_1 = "File in" 33 28 34 29 35 30 end if 36 31 ;*************************************************** … … 81 76 ; data type: string 82 77 ; 83 ; default: "~/test "78 ; default: "~/test_cs" 84 79 ;*************************************************** 85 80 if(.not. isvar("file_out"))then … … 264 259 ; OPTIONAL --zs-- MINIMUM Z-AXIS 265 260 ; 266 ; value for minimum of z-axis, selectable if there are NO preseted layers for z (as for XZ or YZ 2D-DATA); 267 ; you don't have to specify a precise meter value from the input file, it will be rounded to the next 268 ; existent value 261 ; index for minimum of z-axis, selectable if there are NO preseted layers for z (as for XZ or YZ 2D-DATA); 262 ; you cannot specify a meter value from the input file due to grid stretching 269 263 ; 270 264 ; data type: integer … … 282 276 ; OPTIONAL --ze-- MAXIMUM Z-AXIS 283 277 ; 284 ; value for maximum of z-axis, selectable if there are NO preseted layers for z (as for XZ or YZ 2D-DATA); 285 ; you don't have to specify a precise meter value from the input file, it will be rounded to the next 286 ; existent value 278 ; index for maximum of z-axis, selectable if there are NO preseted layers for z (as for XZ or YZ 2D-DATA); 279 ; you cannot specify a meter value from the input file due to grid stretching 287 280 ; 288 281 ; data type: integer … … 417 410 end if 418 411 ;*************************************************** 419 412 420 413 end if 421 414 … … 424 417 ;****************************************************** 425 418 426 if ( profiles .EQ. 1)then427 419 if (script .EQ. "profiles")then 420 428 421 ;*************************************************** 429 422 ; REQUIRED --file_1-- INPUT FILE … … 481 474 ; data type: string 482 475 ; 483 ; default: "~/test "476 ; default: "~/test_pr" 484 477 ;*************************************************** 485 478 if (.not. isvar("file_out"))then … … 1157 1150 1158 1151 end if 1159 1152 1160 1153 ;****************************************************** 1161 1154 ; parameters used by SPECTRA 1162 1155 ;****************************************************** 1163 1156 1164 if (s pectra .EQ. 1) then1165 1157 if (script .EQ. "spectra") then 1158 1166 1159 ;*************************************************** 1167 1160 ; REQUIRED --file_1-- INPUT FILE … … 1203 1196 ; data type: string 1204 1197 ; 1205 ; default: "~/test "1198 ; default: "~/test_sp" 1206 1199 ;*************************************************** 1207 1200 if (.not. isvar("file_out"))then … … 1428 1421 1429 1422 end if 1430 1431 1423 1432 1424 ;****************************************************** 1433 1425 ; parameters used by TIMESERIES 1434 1426 ;****************************************************** 1435 1427 1436 if ( timeseries .EQ. 1) then1437 1428 if (script .EQ. "timeseries") then 1429 1438 1430 ;*************************************************** 1439 1431 ; REQUIRED --file_1-- INPUT FILE … … 1475 1467 ; data type: string 1476 1468 ; 1477 ; default: "~/test "1469 ; default: "~/test_ts" 1478 1470 ;*************************************************** 1479 1471 if (.not. isvar("file_out"))then … … 1587 1579 1588 1580 end if 1589 1590 1581 1591 1582 ;*********************************************************
Note: See TracChangeset
for help on using the changeset viewer.