- Timestamp:
- Jul 23, 2012 8:59:48 AM (12 years ago)
- Location:
- palm/trunk/SCRIPTS/NCL
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/NCL/.ncl.config.default
r951 r958 823 823 ; example: var = ",u,v,w,w*pt*,w"+dq+"pt"+dq+",wpt," 824 824 ; 825 ; default: "all" (all available variables are plotted) 825 ; default: ",cross_profiles," (profiles are plotted together according 826 ; to the d3par parameter cross_profiles) 826 827 ;*************************************************** 827 828 if (.not. isvar("var"))then … … 1049 1050 ; data type: integer 1050 1051 ; 1051 ; default: -1 1052 ; default: -1 (profiles are plotted according 1053 ; to the d3par parameter profile_columns) 1052 1054 ;*************************************************** 1053 1055 if (.not. isvar("no_columns"))then … … 1065 1067 ; data type: integer 1066 1068 ; 1067 ; default: -1 1069 ; default: -1 (profiles are plotted according 1070 ; to the d3par parameter profile_rows) 1068 1071 ;*************************************************** 1069 1072 if (.not. isvar("no_rows"))then -
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.