Changeset 958 for palm/trunk/SCRIPTS/NCL/profiles.ncl
- Timestamp:
- Jul 23, 2012 8:59:48 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/NCL/profiles.ncl
r957 r958 314 314 315 315 if ((.not. cross_check) .AND. (var .EQ. ",cross_profiles,")) then 316 print(" ") 317 print("cross_profiles is not defined in the NetCDF header."+\ 318 "Using var='all' instead.") 319 print(" ") 316 320 var="all" 317 321 end if … … 332 336 no_rows = firstfile@no_rows 333 337 else if ((no_rows .EQ. -1) .AND. .not. isatt(firstfile,"no_rows")) then 338 print(" ") 339 print("no_rows is not defined in the NetCDF header."+\ 340 "Using no_rows=3 instead.") 341 print(" ") 334 342 no_rows = 3 335 343 end if … … 339 347 no_columns = firstfile@no_columns 340 348 else if ((no_columns .EQ. -1) .AND. .not. isatt(firstfile,"no_columns")) then 349 print(" ") 350 print("no_columns is not defined in the NetCDF header."+\ 351 "Using no_columns=2 instead.") 352 print(" ") 341 353 no_columns = 2 342 354 end if … … 374 386 do com_i = 0, max_com_i 375 387 if(number_comb_all(com_i) .GT. 3) then 388 print(" ") 389 print("Currently, it is not possible to plot more than three"+\ 390 "profiles together. Hence, they are split to a maximum"+\ 391 "of three profiles per coordinate plane.") 392 print(" ") 376 393 c_var_all_temp = c_var_all 377 394 number_comb_all_temp = number_comb_all
Note: See TracChangeset
for help on using the changeset viewer.