Changeset 183 for palm/trunk/SCRIPTS/NCL
- Timestamp:
- Aug 4, 2008 3:39:12 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/NCL/spectra.ncl
r178 r183 13 13 delete(parameter@_FillValue) 14 14 else 15 if (isfilepresent("~/palm/current_version/trunk/S RIPTS/NCL/.ncl_preferences")) then16 parameter = asciiread("~/palm/current_version/trunk/S RIPTS/NCL/.ncl_preferences",129,"string")15 if (isfilepresent("~/palm/current_version/trunk/SCRIPTS/NCL/.ncl_preferences")) then 16 parameter = asciiread("~/palm/current_version/trunk/SCRIPTS/NCL/.ncl_preferences",129,"string") 17 17 delete(parameter@_FillValue) 18 18 else 19 19 print(" ") 20 print("'.ncl_preferences' does not exist in '~/palm/current_version/trunk/S RIPTS/NCL/'")20 print("'.ncl_preferences' does not exist in '~/palm/current_version/trunk/SCRIPTS/NCL/'") 21 21 print(" ") 22 22 exit … … 372 372 if (sort .EQ. "time") 373 373 plot = new(dim*dimz,graphic) 374 plot_ = new(dim*dimz,graphic)375 374 np=dimt 376 375 res@lgTitleString = "Time [h]" 377 376 else 378 377 plot = new(dim*dimt,graphic) 379 plot_ = new(dim*dimt,graphic)380 378 np=dimz 381 379 res@lgTitleString = "Height [m]" … … 455 453 res@trXMaxF = max(x_axis) 456 454 res@gsnLeftString = vNam(varn) 457 res@gsnRightString = "Height :"+z(p)+"m"455 res@gsnRightString = "Height = "+z(p)+"m" 458 456 if (norm .NE. 1)then 459 457 res@tiYAxisString = vNam(varn)+" / "+norm … … 482 480 res@trXMaxF = max(x_axis) 483 481 res@gsnLeftString = vNam(varn) 484 res@gsnRightString = "Time :"+legend_label(p)+"h"482 res@gsnRightString = "Time = "+legend_label(p)+"h" 485 483 if (norm .NE. 1)then 486 484 res@tiYAxisString = vNam(varn)+" / "+norm … … 521 519 resP@txFontHeightF = 0.014 522 520 523 do m=0,n-1524 plot_(m)=plot(n-1-m)525 end do526 527 521 if (format_out .EQ. "eps" .OR. format_out .EQ. "epsi") then 528 gsn_panel(wks,plot _,(/n,1/),resP)522 gsn_panel(wks,plot,(/n,1/),resP) 529 523 else 530 524 do i = 0,n-1, no_lines*no_columns 531 525 if( (i+no_lines*no_columns) .gt. (n-1)) then 532 gsn_panel(wks,plot _(i:n-1),(/no_lines,no_columns/),resP)526 gsn_panel(wks,plot(i:n-1),(/no_lines,no_columns/),resP) 533 527 else 534 gsn_panel(wks,plot _(i:i+no_lines*no_columns-1),(/no_lines,no_columns/),resP)528 gsn_panel(wks,plot(i:i+no_lines*no_columns-1),(/no_lines,no_columns/),resP) 535 529 end if 536 530 end do
Note: See TracChangeset
for help on using the changeset viewer.