<div dir="ltr">Hi all,<br><div><br></div><div>I am trying to change the longitude axis for plot, because both Atlantic and Pacific Oceans are important for example instead of starting from zero I would prefer to start from 60E and another possibility is longitude goes from -30 to 360. how can I do that, this is my script:</div><div><br></div><div><br></div><div>wks   = gsn_open_wks ("eps", "omega_response")        ; send graphics to PNG file<br> gsn_define_colormap(wks,"BlRe")<br> res                 = True                    ; plot mods desired<br> res@tiMainString    = "Omega Response"        ; title<br>  res@gsnDraw   = False                             ; don't draw yet<br>  res@gsnFrame  = False                             ; don't advance yet<br>  res@cnLevelSpacingF = 2.                      ; contour interval<br><br>res@trYMinF     = 100;0   ; set minimum Y-axis value<br>res@trYMaxF     =  1000;12250;1200       ; set maximum Y-axis value</div><div><br>res@cnLevelSelectionMode =  "ManualLevels"   ; AutomaticLevels<br>  res@cnMinLevelValF       = -0.05              ; min level<br>  res@cnMaxLevelValF       =  0.05             ; max level<br>  res@cnLevelSpacingF      =  0.005                ; interval<br><br> res@cnLinesOn       = False                   ; turn off contour lines<br> res@cnLineLabelsOn  = False                   ; tuen off line labels<br><br> res@cnFillOn        = True                    ; turn on color<br> res@trYReverse = True                     ; reverse Y-axis<br> res@gsnContourZeroLineThicknessF = 2.          ; doubles thickness of zero contour<br><br>plot = gsn_csm_hov(wks, fine1, res)<br></div><div><br></div><div><br></div><div>Thanks,</div><div>Ana</div></div>