Dear all,
I would like to create a hovmollor diagram with time_axis_labels. I plan to use:
time_axis_labels( data&time,  res, restick )
plot = gsn_csm_hov(wks, data, res )            ; default hovmueller
The data is as follow:
   data1     = asciiread ("data_2011.txt", (/744,1204/), "float")
   
  ; data during December 2011
   yyyy = data1(:,0)+2000   ; now in format 2011 (integer)
   mm = data1(:,1)              ; month in format 12 (integer)
   dd = data1(:,2)                ; days from 1...31 (integer)
   hh = data1(:,3)                ; hours from 0..23 (integer)
    
   data=data1(:,4:1203)
   
   lon       =  fspan(70,130, ncols-4)
   lon!0     = "lon"
   lon@units = "degrees_east"
Question:   how to convert yyyy, mm, dd, hh to the time that can be used in "time_axis_labels" ?
  
   data!0    = "time"
   data!1    = "lon"
   data&time  =  time
   data&lon  =  lon
   data@long_name = "(a) test data"
   data@units     = "K"
Thanks for help,
Joeky
_______________________________________________
ncl-talk mailing list
List instructions, subscriber options, unsubscribe:
http://mailman.ucar.edu/mailman/listinfo/ncl-talk
Received on Mon Jun 18 04:08:37 2012
This archive was generated by hypermail 2.1.8 : Mon Jun 25 2012 - 09:57:23 MDT