Ignore:
Timestamp:
Jul 23, 2012 8:59:48 AM (12 years ago)
Author:
hoffmann
Message:

minor changes in palmplot pr

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SCRIPTS/NCL/profiles.ncl

    r957 r958  
    314314
    315315   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(" ")
    316320       var="all"
    317321   end if
     
    332336      no_rows = firstfile@no_rows
    333337   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(" ")
    334342      no_rows = 3
    335343   end if
     
    339347      no_columns = firstfile@no_columns
    340348   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(" ")
    341353      no_columns = 2
    342354   end if
     
    374386      do com_i = 0, max_com_i
    375387         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(" ")
    376393            c_var_all_temp = c_var_all
    377394            number_comb_all_temp = number_comb_all
Note: See TracChangeset for help on using the changeset viewer.