station value problem

From: jerry (jerry AT cwb.gov.tw)
Date: Thu Aug 04 2005 - 03:40:43 MDT


Hello
I have some station data with latitude and longitude and SST.
I use the the follow code to plot station position on the map

begin
    f = asciiread("station.asc",(/20,4/),"float")
   lat = f(:,0)
   lon = f(:,1)
   res = True
    res@gsnDraw = False
    res@gsnFrame = False
    polyres = True
    polyres@gsMarkerIndex = 16
    polyres@gsMarkerSizeF = 5
    wks = gsn_open_wks("x11","test")
    plot = gsn_csm_map_ce(wks,res)

    plot1 = gsn_add_polymarker(wks,plot,lon,lat,polyres)
    draw(wks)
    frame(wks)
  end

   But i still want to draw the value(SST) beside the station point.
   How can i do?
  
   thanks for help


_______________________________________________
ncl-talk mailing list
ncl-talk@ucar.edu
http://mailman.ucar.edu/mailman/listinfo/ncl-talk



This archive was generated by hypermail 2b29 : Thu Aug 04 2005 - 08:56:37 MDT