[ncl-talk] Scripting not saving output filename

Dennis Shea shea at ucar.edu
Wed Dec 21 10:58:02 MST 2016


[0] I do not think that taking a time average of 'p' , 'tc' ... then doing
the interpolation on the averaged quantities is the correct approach. Of
course, I do not know your application. [I do not want to know ... just too
busy! ] After creating the quantities for each time step, you can
subsequently do any desired  averaging.

[1] test with one variable.
[2] if it fails for some memory reason, I think you should loop over each
individual file; create one output file for each input file; then use (say)
'ncrcat' to create a single 'mega' file. Then delete the individual files.

As simple test script might be the following. Change as needed.


  level = 200.   ; hPa

;------------
  DATADir = "/home/anyuola/WRF/BML/DRY/"
  FILES    = systemfunc (" ls -1 " + DATADir + "wrfout_d01_198*")
  nFILES  = dimsizes(FILES)
  print("nFILES="+nFILES)

  a = addfiles(FILES+".nc","r")

  Time  = a[:]->Times                     ; create a 'Time' coordinate
variable
   time0 = Time
  Time := wrf_times_c(Time, 0)
  Time&Time = Time
  print(Time)

  nTime  = dimsizes(Time)
  print("nTime="+nTime)

  times = wrf_user_getvar(a,"times",-1)  ; get all times in the file
  print(times)
  fdate = cd_calendar(time0, 0)
  fmonth  = tointeger(fdate(:,1))
  fday    = tointeger(fdate(:,2))
  timelabels = monthdef(fmonth)+"-"+fday
  delete(x)
  ihrs      = get1Dindex(times,analperiod)
  lendays    = (ihrs(1)-ihrs(0))/4
  timedays  = times(ihrs(0):ihrs(1):4)
  startindx = get1Dindex(times,timedays(0))
  endindx = get1Dindex(times,timedays(dimsizes(timedays)-1))



;---Read, vertical velocity(w), u and v winds, temp(tc), pressure(p),
relative humidity(RH),one by one to reduce memory use

  p      = wrf_user_getvar(a,"pressure",-1)   ; pressure
  p&Time = Time                              ; create a 'Time' coordinate
variable
  printVarSummary(p)                      ;
(Time,bottom_top,south_north,west_east)

  tc   = wrf_user_getvar(a,"tc",-1)     ; 4D temperature
  tc&Time = Time
  printVarSummary(tc)                     ;
(Time,bottom_top,south_north,west_east)

  tc_plane =
wrf_user_intrp3d(tc(startindx:endindx,:,:,:),p(startindx:endindx,:,:,:),"h",level,0.,False)
  tc_plane&Time = Time                   ; create coordinate variable
  printVarSummary(tc_plane)

;---------------------
  tc_plane at description = "Temperature at " + toint(level)C
  tc_plane at units       = "degC"

;====================
  dout = "./"
  fout = "file"+toint(level)+"wind.nc"
  pout = dout+fout

  system("/bin/rm -f "+pout )
  ncdf = addfile(pout,"c")  ; open output netCDF file

       fAtt               = True            ; assign file attributes
       fAtt at title         = "TC_PLANE"
       fAtt at Conventions   = "None"
       fAtt at creation_date = systemfunc ("date")
       fileattdef( ncdf, fAtt )            ; copy file attributes

       filedimdef(ncdf,"Time",-1,True)

       ncdf->TC_PLANE     = tc_plane




On Wed, Dec 21, 2016 at 9:38 AM, afwande juliet <afwandej965 at gmail.com>
wrote:

> The  script fails to pass through when it begins to read the first
> variable which is pressure
> +   fdate = cd_calendar(time0, 0)
> +   fmonth  = tointeger(fdate(:,1))
> +   fday    = tointeger(fdate(:,2))
> +   timelabels = monthdef(fmonth)+"-"+fday
> +   delete(x)
> +   ihrs      = get1Dindex(times,analperiod)
> +   lendays    = (ihrs(1)-ihrs(0))/4
> +   timedays  = times(ihrs(0):ihrs(1):4)
> +   startindx = get1Dindex(times,timedays(0))
> +   endindx = get1Dindex(times,timedays(dimsizes(timedays)-1))
> +
> +
> + ;---Read, vertical velocity(w), u and v winds, temp(tc), pressure(p),
> relative humidity(RH),one by one to reduce memory use
> +
> +   p1 = wrf_user_getvar(a,"pressure",-1)   ; pressure
>
>
> On Wed, Dec 21, 2016 at 7:16 PM, afwande juliet <afwandej965 at gmail.com>
> wrote:
>
>> Th
>>
>> On Dec 21, 2016 7:02 PM, "Mary Haley" <haley at ucar.edu> wrote:
>>
>>> We need more information in order to debug this, as it's not clear where
>>> the code is hanging.
>>>
>>> Here are three things that might help debug and/or fix the issue:
>>>
>>> 1)
>>>
>>> It's possible that your script is requesting a lot of memory. I suggest
>>> that you insert a bunch of "printVarSummary" commands in your code, so you
>>> can track the progress of your script. This will also help you see how
>>> large your variables are, whether you need more "delete" commands to free
>>> up memory.
>>>
>>> Here's an example:
>>>
>>>   x = a[:]->Times
>>>   printVarSummary(x)
>>>   time0 = wrf_times_c(x, 0)
>>>   printVarSummary(time0)
>>> . . .
>>>
>>>   p1 = wrf_user_getvar(a,"pressure",-1)   ; pressure
>>>
>>>   p = dim_avg_n_Wrap(p1(startindx:endindx,:,:,:),0)
>>>   delete(p1)
>>>   printVarSummary(p)
>>>   . . .
>>>   tc1  = wrf_user_getvar(a,"tc",-1)    ; 3D temperature
>>>
>>>   tc = dim_avg_n_Wrap(tc1(startindx:endindx,:,:,:),0)
>>>   delete(tc1)
>>>   tc_plane = wrf_user_intrp3d(tc,p,"h",level,0.,False)
>>>   delete(tc)
>>>   printVarSummary(tc_plane)
>>>    ... etc...
>>>
>>> 2)
>>>
>>> A "debugging trick" that I tell people who are not sure how far NCL is
>>> getting into their script before it hangs, is to use the "-x" option when
>>> you run your NCL script. This will cause every line of the script to be
>>> echoed to the screen as it is being executed.
>>>
>>> In order for "-x" to work properly, you need to comment out the "begin"
>>> and "end" statements, and then you can run your script with:
>>>
>>>   ncl -x z85hPaPlots.ncl
>>>
>>> 3)
>>>
>>> If the script appears to be bogging down in the section that writes the
>>> NetCDF file, then you may want to use the "efficient" method for writing a
>>> NetCDF file.  If you go to this page:
>>>
>>> http://www.ncl.ucar.edu/Applications/o-netcdf.shtml
>>>
>>> you will see a "method 1" (which is the method you're using) and a
>>> "method 2" which is the more efficient method. I'm not sure how much this
>>> will help in your case, since you are only writing a few variables, but
>>> it's worth a look.  The key is to predefine your variables on the output
>>> file before you actually write the variables, and that will cause them to
>>> be written much faster.
>>>
>>> Hope this helps you figure out the location of your problem, and maybe
>>> how to fix it.
>>>
>>> --Mary
>>>
>>>
>>>
>>>
>>>
>>> On Tue, Dec 20, 2016 at 11:16 PM, afwande juliet <afwandej965 at gmail.com>
>>> wrote:
>>>
>>>> Dear ALL
>>>> I have a script to extract wrfoutput at 850mb, it runs but saves no
>>>> output and hangs forever but no error. below is how the script reads data .
>>>> Attached is the script for help. The output filename is
>>>>  *file850wind.nc <http://file850wind.nc>*
>>>>
>>>> Variable: times
>>>> Type: string
>>>> Total Size: 7896 bytes
>>>>             987 values
>>>> Number of Dimensions: 1
>>>> Dimensions and sizes:    [987]
>>>> Coordinates:
>>>> Number Of Attributes: 2
>>>>   _FillValue :    missing
>>>>   description :    times in file
>>>> (0)    1988-09-30_06:00:00
>>>> (1)    1988-09-30_12:00:00
>>>> (2)    1988-09-30_18:00:00
>>>> (3)    1988-10-01_00:00:00
>>>> (4)    1988-10-01_06:00:00
>>>> (5)    1988-10-01_12:00:00
>>>> (6)    1988-10-01_18:00:00
>>>> (7)    1988-10-02_00:00:00
>>>> (8)    1988-10-02_06:00:00
>>>> (9)    1988-10-02_12:00:00
>>>> (10)    1988-10-02_18:00:00
>>>> (11)    1988-10-03_00:00:00
>>>> (12)    1988-10-03_06:00:00
>>>> (13)    1988-10-03_12:00:00
>>>> (14)    1988-10-03_18:00:00
>>>> (15)    1988-10-04_00:00:00
>>>> (16)    1988-10-04_06:00:00
>>>> (17)    1988-10-04_12:00:00
>>>> (18)    1988-10-04_18:00:00
>>>> (19)    1988-10-05_00:00:00
>>>> (20)    1988-10-05_06:00:00
>>>> (21)    1988-10-05_12:00:00
>>>> (22)    1988-10-05_18:00:00
>>>> (23)    1988-10-06_00:00:00
>>>> (24)    1988-10-06_06:00:00
>>>> (25)    1988-10-06_12:00:00
>>>> (26)    1988-10-06_18:00:00
>>>> (27)    1988-10-07_00:00:00
>>>> (28)    1988-10-07_06:00:00
>>>> (29)    1988-10-07_12:00:00
>>>> (30)    1988-10-07_18:00:00
>>>> (31)    1988-10-08_00:00:00
>>>> (32)    1988-10-08_06:00:00
>>>> (33)    1988-10-08_12:00:00
>>>> (34)    1988-10-08_18:00:00
>>>> (35)    1988-10-09_00:00:00
>>>> (36)    1988-10-09_06:00:00
>>>> (37)    1988-10-09_12:00:00
>>>> (38)    1988-10-09_18:00:00
>>>> (39)    1988-10-10_00:00:00
>>>> (40)    1988-10-10_06:00:00
>>>> (41)    1988-10-10_12:00:00
>>>> (42)    1988-10-10_18:00:00
>>>> (43)    1988-10-11_00:00:00
>>>> (44)    1988-10-11_06:00:00
>>>> (45)    1988-10-11_12:00:00
>>>> (46)    1988-10-11_18:00:00
>>>> (47)    1988-10-12_00:00:00
>>>> (48)    1988-10-12_06:00:00
>>>> (49)    1988-10-12_12:00:00
>>>> (50)    1988-10-12_18:00:00
>>>> (51)    1988-10-13_00:00:00
>>>> (52)    1988-10-13_06:00:00
>>>> (53)    1988-10-13_12:00:00
>>>> (54)    1988-10-13_18:00:00
>>>> (55)    1988-10-14_00:00:00
>>>> (56)    1988-10-14_06:00:00
>>>> (57)    1988-10-14_12:00:00
>>>> (58)    1988-10-14_18:00:00
>>>> (59)    1988-10-15_00:00:00
>>>> (60)    1988-10-15_06:00:00
>>>> (61)    1988-10-15_12:00:00
>>>> (62)    1988-10-15_18:00:00
>>>> (63)    1988-10-16_00:00:00
>>>> (64)    1988-10-16_06:00:00
>>>> (65)    1988-10-16_12:00:00
>>>> (66)    1988-10-16_18:00:00
>>>> (67)    1988-10-17_00:00:00
>>>> (68)    1988-10-17_06:00:00
>>>> (69)    1988-10-17_12:00:00
>>>> (70)    1988-10-17_18:00:00
>>>> (71)    1988-10-18_00:00:00
>>>> (72)    1988-10-18_06:00:00
>>>> (73)    1988-10-18_12:00:00
>>>> (74)    1988-10-18_18:00:00
>>>> (75)    1988-10-19_00:00:00
>>>> (76)    1988-10-19_06:00:00
>>>> (77)    1988-10-19_12:00:00
>>>> (78)    1988-10-19_18:00:00
>>>> (79)    1988-10-20_00:00:00
>>>> (80)    1988-10-20_06:00:00
>>>> (81)    1988-10-20_12:00:00
>>>> (82)    1988-10-20_18:00:00
>>>> (83)    1988-10-21_00:00:00
>>>> (84)    1988-10-21_06:00:00
>>>> (85)    1988-10-21_12:00:00
>>>> (86)    1988-10-21_18:00:00
>>>> (87)    1988-10-22_00:00:00
>>>> (88)    1988-10-22_06:00:00
>>>> (89)    1988-10-22_12:00:00
>>>> (90)    1988-10-22_18:00:00
>>>> (91)    1988-10-23_00:00:00
>>>> (92)    1988-10-23_06:00:00
>>>> (93)    1988-10-23_12:00:00
>>>> (94)    1988-10-23_18:00:00
>>>> (95)    1988-10-24_00:00:00
>>>> (96)    1988-10-24_06:00:00
>>>> (97)    1988-10-24_12:00:00
>>>> (98)    1988-10-24_18:00:00
>>>> (99)    1988-10-25_00:00:00
>>>> (100)    1988-10-25_06:00:00
>>>> (101)    1988-10-25_12:00:00
>>>> (102)    1988-10-25_18:00:00
>>>> (103)    1988-10-26_00:00:00
>>>> (104)    1988-10-26_06:00:00
>>>> (105)    1988-10-26_12:00:00
>>>> (106)    1988-10-26_18:00:00
>>>> (107)    1988-10-27_00:00:00
>>>> (108)    1988-10-27_06:00:00
>>>> (109)    1988-10-27_12:00:00
>>>> (110)    1988-10-27_18:00:00
>>>> (111)    1988-10-28_00:00:00
>>>> (112)    1988-10-28_06:00:00
>>>> (113)    1988-10-28_12:00:00
>>>> (114)    1988-10-28_18:00:00
>>>> (115)    1988-10-29_00:00:00
>>>> (116)    1988-10-29_06:00:00
>>>> (117)    1988-10-29_12:00:00
>>>> (118)    1988-10-29_18:00:00
>>>> (119)    1988-10-30_00:00:00
>>>> (120)    1988-10-30_06:00:00
>>>> (121)    1988-10-30_12:00:00
>>>> (122)    1988-10-30_18:00:00
>>>> (123)    1988-10-31_00:00:00
>>>> (124)    1988-10-31_06:00:00
>>>> (125)    1988-10-31_12:00:00
>>>> (126)    1988-10-31_18:00:00
>>>> (127)    1988-11-01_00:00:00
>>>> (128)    1988-11-01_06:00:00
>>>> (129)    1988-11-01_12:00:00
>>>> (130)    1988-11-01_18:00:00
>>>> (131)    1988-11-02_00:00:00
>>>> (132)    1988-11-02_06:00:00
>>>> (133)    1988-11-02_12:00:00
>>>> (134)    1988-11-02_18:00:00
>>>> (135)    1988-11-03_00:00:00
>>>> (136)    1988-11-03_06:00:00
>>>> (137)    1988-11-03_12:00:00
>>>> (138)    1988-11-03_18:00:00
>>>> (139)    1988-11-04_00:00:00
>>>> (140)    1988-11-04_06:00:00
>>>> (141)    1988-11-04_12:00:00
>>>> (142)    1988-11-04_18:00:00
>>>> (143)    1988-11-05_00:00:00
>>>> (144)    1988-11-05_06:00:00
>>>> (145)    1988-11-05_12:00:00
>>>> (146)    1988-11-05_18:00:00
>>>> (147)    1988-11-06_00:00:00
>>>> (148)    1988-11-06_06:00:00
>>>> (149)    1988-11-06_12:00:00
>>>> (150)    1988-11-06_18:00:00
>>>> (151)    1988-11-07_00:00:00
>>>> (152)    1988-11-07_06:00:00
>>>> (153)    1988-11-07_12:00:00
>>>> (154)    1988-11-07_18:00:00
>>>> (155)    1988-11-08_00:00:00
>>>> (156)    1988-11-08_06:00:00
>>>> (157)    1988-11-08_12:00:00
>>>> (158)    1988-11-08_18:00:00
>>>> (159)    1988-11-09_00:00:00
>>>> (160)    1988-11-09_06:00:00
>>>> (161)    1988-11-09_12:00:00
>>>> (162)    1988-11-09_18:00:00
>>>> (163)    1988-11-10_00:00:00
>>>> (164)    1988-11-10_06:00:00
>>>> (165)    1988-11-10_12:00:00
>>>> (166)    1988-11-10_18:00:00
>>>> (167)    1988-11-11_00:00:00
>>>> (168)    1988-11-11_06:00:00
>>>> (169)    1988-11-11_12:00:00
>>>> (170)    1988-11-11_18:00:00
>>>> (171)    1988-11-12_00:00:00
>>>> (172)    1988-11-12_06:00:00
>>>> (173)    1988-11-12_12:00:00
>>>> (174)    1988-11-12_18:00:00
>>>> (175)    1988-11-13_00:00:00
>>>> (176)    1988-11-13_06:00:00
>>>> (177)    1988-11-13_12:00:00
>>>> (178)    1988-11-13_18:00:00
>>>> (179)    1988-11-14_00:00:00
>>>> (180)    1988-11-14_06:00:00
>>>> (181)    1988-11-14_12:00:00
>>>> (182)    1988-11-14_18:00:00
>>>> (183)    1988-11-15_00:00:00
>>>> (184)    1988-11-15_06:00:00
>>>> (185)    1988-11-15_12:00:00
>>>> (186)    1988-11-15_18:00:00
>>>> (187)    1988-11-16_00:00:00
>>>> (188)    1988-11-16_06:00:00
>>>> (189)    1988-11-16_12:00:00
>>>> (190)    1988-11-16_18:00:00
>>>> (191)    1988-11-17_00:00:00
>>>> (192)    1988-11-17_06:00:00
>>>> (193)    1988-11-17_12:00:00
>>>> (194)    1988-11-17_18:00:00
>>>> (195)    1988-11-18_00:00:00
>>>> (196)    1988-11-18_06:00:00
>>>> (197)    1988-11-18_12:00:00
>>>> (198)    1988-11-18_18:00:00
>>>> (199)    1988-11-19_00:00:00
>>>> (200)    1988-11-19_06:00:00
>>>> (201)    1988-11-19_12:00:00
>>>> (202)    1988-11-19_18:00:00
>>>> (203)    1988-11-20_00:00:00
>>>> (204)    1988-11-20_06:00:00
>>>> (205)    1988-11-20_12:00:00
>>>> (206)    1988-11-20_18:00:00
>>>> (207)    1988-11-21_00:00:00
>>>> (208)    1988-11-21_06:00:00
>>>> (209)    1988-11-21_12:00:00
>>>> (210)    1988-11-21_18:00:00
>>>> (211)    1988-11-22_00:00:00
>>>> (212)    1988-11-22_06:00:00
>>>> (213)    1988-11-22_12:00:00
>>>> (214)    1988-11-22_18:00:00
>>>> (215)    1988-11-23_00:00:00
>>>> (216)    1988-11-23_06:00:00
>>>> (217)    1988-11-23_12:00:00
>>>> (218)    1988-11-23_18:00:00
>>>> (219)    1988-11-24_00:00:00
>>>> (220)    1988-11-24_06:00:00
>>>> (221)    1988-11-24_12:00:00
>>>> (222)    1988-11-24_18:00:00
>>>> (223)    1988-11-25_00:00:00
>>>> (224)    1988-11-25_06:00:00
>>>> (225)    1988-11-25_12:00:00
>>>> (226)    1988-11-25_18:00:00
>>>> (227)    1988-11-26_00:00:00
>>>> (228)    1988-11-26_06:00:00
>>>> (229)    1988-11-26_12:00:00
>>>> (230)    1988-11-26_18:00:00
>>>> (231)    1988-11-27_00:00:00
>>>> (232)    1988-11-27_06:00:00
>>>> (233)    1988-11-27_12:00:00
>>>> (234)    1988-11-27_18:00:00
>>>> (235)    1988-11-28_00:00:00
>>>> (236)    1988-11-28_06:00:00
>>>> (237)    1988-11-28_12:00:00
>>>> (238)    1988-11-28_18:00:00
>>>> (239)    1988-11-29_00:00:00
>>>> (240)    1988-11-29_06:00:00
>>>> (241)    1988-11-29_12:00:00
>>>> (242)    1988-11-29_18:00:00
>>>> (243)    1988-11-30_00:00:00
>>>> (244)    1988-11-30_06:00:00
>>>> (245)    1988-11-30_12:00:00
>>>> (246)    1988-11-30_18:00:00
>>>> (247)    1988-12-01_00:00:00
>>>> (248)    1988-12-01_06:00:00
>>>> (249)    1988-12-01_12:00:00
>>>> (250)    1988-12-01_18:00:00
>>>> (251)    1988-12-02_00:00:00
>>>> (252)    1988-12-02_06:00:00
>>>> (253)    1988-12-02_12:00:00
>>>> (254)    1988-12-02_18:00:00
>>>> (255)    1988-12-03_00:00:00
>>>> (256)    1988-12-03_06:00:00
>>>> (257)    1988-12-03_12:00:00
>>>> (258)    1988-12-03_18:00:00
>>>> (259)    1988-12-04_00:00:00
>>>> (260)    1988-12-04_06:00:00
>>>> (261)    1988-12-04_12:00:00
>>>> (262)    1988-12-04_18:00:00
>>>> (263)    1988-12-05_00:00:00
>>>> (264)    1988-12-05_06:00:00
>>>> (265)    1988-12-05_12:00:00
>>>> (266)    1988-12-05_18:00:00
>>>> (267)    1988-12-06_00:00:00
>>>> (268)    1988-12-06_06:00:00
>>>> (269)    1988-12-06_12:00:00
>>>> (270)    1988-12-06_18:00:00
>>>> (271)    1988-12-07_00:00:00
>>>> (272)    1988-12-07_06:00:00
>>>> (273)    1988-12-07_12:00:00
>>>> (274)    1988-12-07_18:00:00
>>>> (275)    1988-12-08_00:00:00
>>>> (276)    1988-12-08_06:00:00
>>>> (277)    1988-12-08_12:00:00
>>>> (278)    1988-12-08_18:00:00
>>>> (279)    1988-12-09_00:00:00
>>>> (280)    1988-12-09_06:00:00
>>>> (281)    1988-12-09_12:00:00
>>>> (282)    1988-12-09_18:00:00
>>>> (283)    1988-12-10_00:00:00
>>>> (284)    1988-12-10_06:00:00
>>>> (285)    1988-12-10_12:00:00
>>>> (286)    1988-12-10_18:00:00
>>>> (287)    1988-12-11_00:00:00
>>>> (288)    1988-12-11_06:00:00
>>>> (289)    1988-12-11_12:00:00
>>>> (290)    1988-12-11_18:00:00
>>>> (291)    1988-12-12_00:00:00
>>>> (292)    1988-12-12_06:00:00
>>>> (293)    1988-12-12_12:00:00
>>>> (294)    1988-12-12_18:00:00
>>>> (295)    1988-12-13_00:00:00
>>>> (296)    1988-12-13_06:00:00
>>>> (297)    1988-12-13_12:00:00
>>>> (298)    1988-12-13_18:00:00
>>>> (299)    1988-12-14_00:00:00
>>>> (300)    1988-12-14_06:00:00
>>>> (301)    1988-12-14_12:00:00
>>>> (302)    1988-12-14_18:00:00
>>>> (303)    1988-12-15_00:00:00
>>>> (304)    1988-12-15_06:00:00
>>>> (305)    1988-12-15_12:00:00
>>>> (306)    1988-12-15_18:00:00
>>>> (307)    1988-12-16_00:00:00
>>>> (308)    1988-12-16_06:00:00
>>>> (309)    1988-12-16_12:00:00
>>>> (310)    1988-12-16_18:00:00
>>>> (311)    1988-12-17_00:00:00
>>>> (312)    1988-12-17_06:00:00
>>>> (313)    1988-12-17_12:00:00
>>>> (314)    1988-12-17_18:00:00
>>>> (315)    1988-12-18_00:00:00
>>>> (316)    1988-12-18_06:00:00
>>>> (317)    1988-12-18_12:00:00
>>>> (318)    1988-12-18_18:00:00
>>>> (319)    1988-12-19_00:00:00
>>>> (320)    1988-12-19_06:00:00
>>>> (321)    1988-12-19_12:00:00
>>>> (322)    1988-12-19_18:00:00
>>>> (323)    1988-12-20_00:00:00
>>>> (324)    1988-12-20_06:00:00
>>>> (325)    1988-12-20_12:00:00
>>>> (326)    1988-12-20_18:00:00
>>>> (327)    1988-12-21_00:00:00
>>>> (328)    1988-12-21_06:00:00
>>>> (329)    1988-12-21_12:00:00
>>>> (330)    1988-12-21_18:00:00
>>>> (331)    1988-12-22_00:00:00
>>>> (332)    1988-12-22_06:00:00
>>>> (333)    1988-12-22_12:00:00
>>>> (334)    1988-12-22_18:00:00
>>>> (335)    1988-12-23_00:00:00
>>>> (336)    1988-12-23_06:00:00
>>>> (337)    1988-12-23_12:00:00
>>>> (338)    1988-12-23_18:00:00
>>>> (339)    1988-12-24_00:00:00
>>>> (340)    1988-12-24_06:00:00
>>>> (341)    1988-12-24_12:00:00
>>>> (342)    1988-12-24_18:00:00
>>>> (343)    1988-12-25_00:00:00
>>>> (344)    1988-12-25_06:00:00
>>>> (345)    1988-12-25_12:00:00
>>>> (346)    1988-12-25_18:00:00
>>>> (347)    1988-12-26_00:00:00
>>>> (348)    1988-12-26_06:00:00
>>>> (349)    1988-12-26_12:00:00
>>>> (350)    1988-12-26_18:00:00
>>>> (351)    1988-12-27_00:00:00
>>>> (352)    1988-12-27_06:00:00
>>>> (353)    1988-12-27_12:00:00
>>>> (354)    1988-12-27_18:00:00
>>>> (355)    1988-12-28_00:00:00
>>>> (356)    1988-12-28_06:00:00
>>>> (357)    1988-12-28_12:00:00
>>>> (358)    1988-12-28_18:00:00
>>>> (359)    1988-12-29_00:00:00
>>>> (360)    1988-12-29_06:00:00
>>>> (361)    1988-12-29_12:00:00
>>>> (362)    1988-12-29_18:00:00
>>>> (363)    1988-12-30_00:00:00
>>>> (364)    1988-12-30_06:00:00
>>>> (365)    1988-12-30_12:00:00
>>>> (366)    1988-12-30_18:00:00
>>>> (367)    1988-12-31_00:00:00
>>>> (368)    1988-12-31_06:00:00
>>>> (369)    1988-12-31_12:00:00
>>>> (370)    1988-12-31_18:00:00
>>>> (371)    1989-01-01_00:00:00
>>>> (372)    1989-01-01_06:00:00
>>>> (373)    1989-01-01_12:00:00
>>>> (374)    1989-01-01_18:00:00
>>>> (375)    1989-01-02_00:00:00
>>>> (376)    1989-01-02_06:00:00
>>>> (377)    1989-01-02_12:00:00
>>>> (378)    1989-01-02_18:00:00
>>>> (379)    1989-01-03_00:00:00
>>>> (380)    1989-01-03_06:00:00
>>>> (381)    1989-01-03_12:00:00
>>>> (382)    1989-01-03_18:00:00
>>>> (383)    1989-01-04_00:00:00
>>>> (384)    1989-01-04_06:00:00
>>>> (385)    1989-01-04_12:00:00
>>>> (386)    1989-01-04_18:00:00
>>>> (387)    1989-01-05_00:00:00
>>>> (388)    1989-01-05_06:00:00
>>>> (389)    1989-01-05_12:00:00
>>>> (390)    1989-01-05_18:00:00
>>>> (391)    1989-01-06_00:00:00
>>>> (392)    1989-01-06_06:00:00
>>>> (393)    1989-01-06_12:00:00
>>>> (394)    1989-01-06_18:00:00
>>>> (395)    1989-01-07_00:00:00
>>>> (396)    1989-01-07_06:00:00
>>>> (397)    1989-01-07_12:00:00
>>>> (398)    1989-01-07_18:00:00
>>>> (399)    1989-01-08_00:00:00
>>>> (400)    1989-01-08_06:00:00
>>>> (401)    1989-01-08_12:00:00
>>>> (402)    1989-01-08_18:00:00
>>>> (403)    1989-01-09_00:00:00
>>>> (404)    1989-01-09_06:00:00
>>>> (405)    1989-01-09_12:00:00
>>>> (406)    1989-01-09_18:00:00
>>>> (407)    1989-01-10_00:00:00
>>>> (408)    1989-01-10_06:00:00
>>>> (409)    1989-01-10_12:00:00
>>>> (410)    1989-01-10_18:00:00
>>>> (411)    1989-01-11_00:00:00
>>>> (412)    1989-01-11_06:00:00
>>>> (413)    1989-01-11_12:00:00
>>>> (414)    1989-01-11_18:00:00
>>>> (415)    1989-01-12_00:00:00
>>>> (416)    1989-01-12_06:00:00
>>>> (417)    1989-01-12_12:00:00
>>>> (418)    1989-01-12_18:00:00
>>>> (419)    1989-01-13_00:00:00
>>>> (420)    1989-01-13_06:00:00
>>>> (421)    1989-01-13_12:00:00
>>>> (422)    1989-01-13_18:00:00
>>>> (423)    1989-01-14_00:00:00
>>>> (424)    1989-01-14_06:00:00
>>>> (425)    1989-01-14_12:00:00
>>>> (426)    1989-01-14_18:00:00
>>>> (427)    1989-01-15_00:00:00
>>>> (428)    1989-01-15_06:00:00
>>>> (429)    1989-01-15_12:00:00
>>>> (430)    1989-01-15_18:00:00
>>>> (431)    1989-01-16_00:00:00
>>>> (432)    1989-01-16_06:00:00
>>>> (433)    1989-01-16_12:00:00
>>>> (434)    1989-01-16_18:00:00
>>>> (435)    1989-01-17_00:00:00
>>>> (436)    1989-01-17_06:00:00
>>>> (437)    1989-01-17_12:00:00
>>>> (438)    1989-01-17_18:00:00
>>>> (439)    1989-01-18_00:00:00
>>>> (440)    1989-01-18_06:00:00
>>>> (441)    1989-01-18_12:00:00
>>>> (442)    1989-01-18_18:00:00
>>>> (443)    1989-01-19_00:00:00
>>>> (444)    1989-01-19_06:00:00
>>>> (445)    1989-01-19_12:00:00
>>>> (446)    1989-01-19_18:00:00
>>>> (447)    1989-01-20_00:00:00
>>>> (448)    1989-01-20_06:00:00
>>>> (449)    1989-01-20_12:00:00
>>>> (450)    1989-01-20_18:00:00
>>>> (451)    1989-01-21_00:00:00
>>>> (452)    1989-01-21_06:00:00
>>>> (453)    1989-01-21_12:00:00
>>>> (454)    1989-01-21_18:00:00
>>>> (455)    1989-01-22_00:00:00
>>>> (456)    1989-01-22_06:00:00
>>>> (457)    1989-01-22_12:00:00
>>>> (458)    1989-01-22_18:00:00
>>>> (459)    1989-01-23_00:00:00
>>>> (460)    1989-01-23_06:00:00
>>>> (461)    1989-01-23_12:00:00
>>>> (462)    1989-01-23_18:00:00
>>>> (463)    1989-01-24_00:00:00
>>>> (464)    1989-01-24_06:00:00
>>>> (465)    1989-01-24_12:00:00
>>>> (466)    1989-01-24_18:00:00
>>>> (467)    1989-01-25_00:00:00
>>>> (468)    1989-01-25_06:00:00
>>>> (469)    1989-01-25_12:00:00
>>>> (470)    1989-01-25_18:00:00
>>>> (471)    1989-01-26_00:00:00
>>>> (472)    1989-01-26_06:00:00
>>>> (473)    1989-01-26_12:00:00
>>>> (474)    1989-01-26_18:00:00
>>>> (475)    1989-01-27_00:00:00
>>>> (476)    1989-01-27_06:00:00
>>>> (477)    1989-01-27_12:00:00
>>>> (478)    1989-01-27_18:00:00
>>>> (479)    1989-01-28_00:00:00
>>>> (480)    1989-01-28_06:00:00
>>>> (481)    1989-01-28_12:00:00
>>>> (482)    1989-01-28_18:00:00
>>>> (483)    1989-01-29_00:00:00
>>>> (484)    1989-01-29_06:00:00
>>>> (485)    1989-01-29_12:00:00
>>>> (486)    1989-01-29_18:00:00
>>>> (487)    1989-01-30_00:00:00
>>>> (488)    1989-01-30_06:00:00
>>>> (489)    1989-01-30_12:00:00
>>>> (490)    1989-01-30_18:00:00
>>>> (491)    1989-01-31_00:00:00
>>>> (492)    1989-01-31_06:00:00
>>>> (493)    1989-01-31_12:00:00
>>>> (494)    1989-01-31_18:00:00
>>>> (495)    1989-02-01_00:00:00
>>>> (496)    1989-02-01_06:00:00
>>>> (497)    1989-02-01_12:00:00
>>>> (498)    1989-02-01_18:00:00
>>>> (499)    1989-02-02_00:00:00
>>>> (500)    1989-02-02_06:00:00
>>>> (501)    1989-02-02_12:00:00
>>>> (502)    1989-02-02_18:00:00
>>>> (503)    1989-02-03_00:00:00
>>>> (504)    1989-02-03_06:00:00
>>>> (505)    1989-02-03_12:00:00
>>>> (506)    1989-02-03_18:00:00
>>>> (507)    1989-02-04_00:00:00
>>>> (508)    1989-02-04_06:00:00
>>>> (509)    1989-02-04_12:00:00
>>>> (510)    1989-02-04_18:00:00
>>>> (511)    1989-02-05_00:00:00
>>>> (512)    1989-02-05_06:00:00
>>>> (513)    1989-02-05_12:00:00
>>>> (514)    1989-02-05_18:00:00
>>>> (515)    1989-02-06_00:00:00
>>>> (516)    1989-02-06_06:00:00
>>>> (517)    1989-02-06_12:00:00
>>>> (518)    1989-02-06_18:00:00
>>>> (519)    1989-02-07_00:00:00
>>>> (520)    1989-02-07_06:00:00
>>>> (521)    1989-02-07_12:00:00
>>>> (522)    1989-02-07_18:00:00
>>>> (523)    1989-02-08_00:00:00
>>>> (524)    1989-02-08_06:00:00
>>>> (525)    1989-02-08_12:00:00
>>>> (526)    1989-02-08_18:00:00
>>>> (527)    1989-02-09_00:00:00
>>>> (528)    1989-02-09_06:00:00
>>>> (529)    1989-02-09_12:00:00
>>>> (530)    1989-02-09_18:00:00
>>>> (531)    1989-02-10_00:00:00
>>>> (532)    1989-02-10_06:00:00
>>>> (533)    1989-02-10_12:00:00
>>>> (534)    1989-02-10_18:00:00
>>>> (535)    1989-02-11_00:00:00
>>>> (536)    1989-02-11_06:00:00
>>>> (537)    1989-02-11_12:00:00
>>>> (538)    1989-02-11_18:00:00
>>>> (539)    1989-02-12_00:00:00
>>>> (540)    1989-02-12_06:00:00
>>>> (541)    1989-02-12_12:00:00
>>>> (542)    1989-02-12_18:00:00
>>>> (543)    1989-02-13_00:00:00
>>>> (544)    1989-02-13_06:00:00
>>>> (545)    1989-02-13_12:00:00
>>>> (546)    1989-02-13_18:00:00
>>>> (547)    1989-02-14_00:00:00
>>>> (548)    1989-02-14_06:00:00
>>>> (549)    1989-02-14_12:00:00
>>>> (550)    1989-02-14_18:00:00
>>>> (551)    1989-02-15_00:00:00
>>>> (552)    1989-02-15_06:00:00
>>>> (553)    1989-02-15_12:00:00
>>>> (554)    1989-02-15_18:00:00
>>>> (555)    1989-02-16_00:00:00
>>>> (556)    1989-02-16_06:00:00
>>>> (557)    1989-02-16_12:00:00
>>>> (558)    1989-02-16_18:00:00
>>>> (559)    1989-02-17_00:00:00
>>>> (560)    1989-02-17_06:00:00
>>>> (561)    1989-02-17_12:00:00
>>>> (562)    1989-02-17_18:00:00
>>>> (563)    1989-02-18_00:00:00
>>>> (564)    1989-02-18_06:00:00
>>>> (565)    1989-02-18_12:00:00
>>>> (566)    1989-02-18_18:00:00
>>>> (567)    1989-02-19_00:00:00
>>>> (568)    1989-02-19_06:00:00
>>>> (569)    1989-02-19_12:00:00
>>>> (570)    1989-02-19_18:00:00
>>>> (571)    1989-02-20_00:00:00
>>>> (572)    1989-02-20_06:00:00
>>>> (573)    1989-02-20_12:00:00
>>>> (574)    1989-02-20_18:00:00
>>>> (575)    1989-02-21_00:00:00
>>>> (576)    1989-02-21_06:00:00
>>>> (577)    1989-02-21_12:00:00
>>>> (578)    1989-02-21_18:00:00
>>>> (579)    1989-02-22_00:00:00
>>>> (580)    1989-02-22_06:00:00
>>>> (581)    1989-02-22_12:00:00
>>>> (582)    1989-02-22_18:00:00
>>>> (583)    1989-02-23_00:00:00
>>>> (584)    1989-02-23_06:00:00
>>>> (585)    1989-02-23_12:00:00
>>>> (586)    1989-02-23_18:00:00
>>>> (587)    1989-02-24_00:00:00
>>>> (588)    1989-02-24_06:00:00
>>>> (589)    1989-02-24_12:00:00
>>>> (590)    1989-02-24_18:00:00
>>>> (591)    1989-02-25_00:00:00
>>>> (592)    1989-02-25_06:00:00
>>>> (593)    1989-02-25_12:00:00
>>>> (594)    1989-02-25_18:00:00
>>>> (595)    1989-02-26_00:00:00
>>>> (596)    1989-02-26_06:00:00
>>>> (597)    1989-02-26_12:00:00
>>>> (598)    1989-02-26_18:00:00
>>>> (599)    1989-02-27_00:00:00
>>>> (600)    1989-02-27_06:00:00
>>>> (601)    1989-02-27_12:00:00
>>>> (602)    1989-02-27_18:00:00
>>>> (603)    1989-02-28_00:00:00
>>>> (604)    1989-02-28_06:00:00
>>>> (605)    1989-02-28_12:00:00
>>>> (606)    1989-02-28_18:00:00
>>>> (607)    1989-03-01_00:00:00
>>>> (608)    1989-03-01_06:00:00
>>>> (609)    1989-03-01_12:00:00
>>>> (610)    1989-03-01_18:00:00
>>>> (611)    1989-03-02_00:00:00
>>>> (612)    1989-03-02_06:00:00
>>>> (613)    1989-03-02_12:00:00
>>>> (614)    1989-03-02_18:00:00
>>>> (615)    1989-03-03_00:00:00
>>>> (616)    1989-03-03_06:00:00
>>>> (617)    1989-03-03_12:00:00
>>>> (618)    1989-03-03_18:00:00
>>>> (619)    1989-03-04_00:00:00
>>>> (620)    1989-03-04_06:00:00
>>>> (621)    1989-03-04_12:00:00
>>>> (622)    1989-03-04_18:00:00
>>>> (623)    1989-03-05_00:00:00
>>>> (624)    1989-03-05_06:00:00
>>>> (625)    1989-03-05_12:00:00
>>>> (626)    1989-03-05_18:00:00
>>>> (627)    1989-03-06_00:00:00
>>>> (628)    1989-03-06_06:00:00
>>>> (629)    1989-03-06_12:00:00
>>>> (630)    1989-03-06_18:00:00
>>>> (631)    1989-03-07_00:00:00
>>>> (632)    1989-03-07_06:00:00
>>>> (633)    1989-03-07_12:00:00
>>>> (634)    1989-03-07_18:00:00
>>>> (635)    1989-03-08_00:00:00
>>>> (636)    1989-03-08_06:00:00
>>>> (637)    1989-03-08_12:00:00
>>>> (638)    1989-03-08_18:00:00
>>>> (639)    1989-03-09_00:00:00
>>>> (640)    1989-03-09_06:00:00
>>>> (641)    1989-03-09_12:00:00
>>>> (642)    1989-03-09_18:00:00
>>>> (643)    1989-03-10_00:00:00
>>>> (644)    1989-03-10_06:00:00
>>>> (645)    1989-03-10_12:00:00
>>>> (646)    1989-03-10_18:00:00
>>>> (647)    1989-03-11_00:00:00
>>>> (648)    1989-03-11_06:00:00
>>>> (649)    1989-03-11_12:00:00
>>>> (650)    1989-03-11_18:00:00
>>>> (651)    1989-03-12_00:00:00
>>>> (652)    1989-03-12_06:00:00
>>>> (653)    1989-03-12_12:00:00
>>>> (654)    1989-03-12_18:00:00
>>>> (655)    1989-03-13_00:00:00
>>>> (656)    1989-03-13_06:00:00
>>>> (657)    1989-03-13_12:00:00
>>>> (658)    1989-03-13_18:00:00
>>>> (659)    1989-03-14_00:00:00
>>>> (660)    1989-03-14_06:00:00
>>>> (661)    1989-03-14_12:00:00
>>>> (662)    1989-03-14_18:00:00
>>>> (663)    1989-03-15_00:00:00
>>>> (664)    1989-03-15_06:00:00
>>>> (665)    1989-03-15_12:00:00
>>>> (666)    1989-03-15_18:00:00
>>>> (667)    1989-03-16_00:00:00
>>>> (668)    1989-03-16_06:00:00
>>>> (669)    1989-03-16_12:00:00
>>>> (670)    1989-03-16_18:00:00
>>>> (671)    1989-03-17_00:00:00
>>>> (672)    1989-03-17_06:00:00
>>>> (673)    1989-03-17_12:00:00
>>>> (674)    1989-03-17_18:00:00
>>>> (675)    1989-03-18_00:00:00
>>>> (676)    1989-03-18_06:00:00
>>>> (677)    1989-03-18_12:00:00
>>>> (678)    1989-03-18_18:00:00
>>>> (679)    1989-03-19_00:00:00
>>>> (680)    1989-03-19_06:00:00
>>>> (681)    1989-03-19_12:00:00
>>>> (682)    1989-03-19_18:00:00
>>>> (683)    1989-03-20_00:00:00
>>>> (684)    1989-03-20_06:00:00
>>>> (685)    1989-03-20_12:00:00
>>>> (686)    1989-03-20_18:00:00
>>>> (687)    1989-03-21_00:00:00
>>>> (688)    1989-03-21_06:00:00
>>>> (689)    1989-03-21_12:00:00
>>>> (690)    1989-03-21_18:00:00
>>>> (691)    1989-03-22_00:00:00
>>>> (692)    1989-03-22_06:00:00
>>>> (693)    1989-03-22_12:00:00
>>>> (694)    1989-03-22_18:00:00
>>>> (695)    1989-03-23_00:00:00
>>>> (696)    1989-03-23_06:00:00
>>>> (697)    1989-03-23_12:00:00
>>>> (698)    1989-03-23_18:00:00
>>>> (699)    1989-03-24_00:00:00
>>>> (700)    1989-03-24_06:00:00
>>>> (701)    1989-03-24_12:00:00
>>>> (702)    1989-03-24_18:00:00
>>>> (703)    1989-03-25_00:00:00
>>>> (704)    1989-03-25_06:00:00
>>>> (705)    1989-03-25_12:00:00
>>>> (706)    1989-03-25_18:00:00
>>>> (707)    1989-03-26_00:00:00
>>>> (708)    1989-03-26_06:00:00
>>>> (709)    1989-03-26_12:00:00
>>>> (710)    1989-03-26_18:00:00
>>>> (711)    1989-03-27_00:00:00
>>>> (712)    1989-03-27_06:00:00
>>>> (713)    1989-03-27_12:00:00
>>>> (714)    1989-03-27_18:00:00
>>>> (715)    1989-03-28_00:00:00
>>>> (716)    1989-03-28_06:00:00
>>>> (717)    1989-03-28_12:00:00
>>>> (718)    1989-03-28_18:00:00
>>>> (719)    1989-03-29_00:00:00
>>>> (720)    1989-03-29_06:00:00
>>>> (721)    1989-03-29_12:00:00
>>>> (722)    1989-03-29_18:00:00
>>>> (723)    1989-03-30_00:00:00
>>>> (724)    1989-03-30_06:00:00
>>>> (725)    1989-03-30_12:00:00
>>>> (726)    1989-03-30_18:00:00
>>>> (727)    1989-03-31_00:00:00
>>>> (728)    1989-03-31_06:00:00
>>>> (729)    1989-03-31_12:00:00
>>>> (730)    1989-03-31_18:00:00
>>>> (731)    1989-04-01_00:00:00
>>>> (732)    1989-04-01_06:00:00
>>>> (733)    1989-04-01_12:00:00
>>>> (734)    1989-04-01_18:00:00
>>>> (735)    1989-04-02_00:00:00
>>>> (736)    1989-04-02_06:00:00
>>>> (737)    1989-04-02_12:00:00
>>>> (738)    1989-04-02_18:00:00
>>>> (739)    1989-04-03_00:00:00
>>>> (740)    1989-04-03_06:00:00
>>>> (741)    1989-04-03_12:00:00
>>>> (742)    1989-04-03_18:00:00
>>>> (743)    1989-04-04_00:00:00
>>>> (744)    1989-04-04_06:00:00
>>>> (745)    1989-04-04_12:00:00
>>>> (746)    1989-04-04_18:00:00
>>>> (747)    1989-04-05_00:00:00
>>>> (748)    1989-04-05_06:00:00
>>>> (749)    1989-04-05_12:00:00
>>>> (750)    1989-04-05_18:00:00
>>>> (751)    1989-04-06_00:00:00
>>>> (752)    1989-04-06_06:00:00
>>>> (753)    1989-04-06_12:00:00
>>>> (754)    1989-04-06_18:00:00
>>>> (755)    1989-04-07_00:00:00
>>>> (756)    1989-04-07_06:00:00
>>>> (757)    1989-04-07_12:00:00
>>>> (758)    1989-04-07_18:00:00
>>>> (759)    1989-04-08_00:00:00
>>>> (760)    1989-04-06_12:00:00
>>>> (761)    1989-04-06_18:00:00
>>>> (762)    1989-04-07_00:00:00
>>>> (763)    1989-04-07_06:00:00
>>>> (764)    1989-04-07_12:00:00
>>>> (765)    1989-04-07_18:00:00
>>>> (766)    1989-04-08_00:00:00
>>>> (767)    1989-04-08_06:00:00
>>>> (768)    1989-04-08_12:00:00
>>>> (769)    1989-04-08_18:00:00
>>>> (770)    1989-04-09_00:00:00
>>>> (771)    1989-04-09_06:00:00
>>>> (772)    1989-04-09_12:00:00
>>>> (773)    1989-04-09_18:00:00
>>>> (774)    1989-04-10_00:00:00
>>>> (775)    1989-04-10_06:00:00
>>>> (776)    1989-04-10_12:00:00
>>>> (777)    1989-04-10_18:00:00
>>>> (778)    1989-04-11_00:00:00
>>>> (779)    1989-04-11_06:00:00
>>>> (780)    1989-04-11_12:00:00
>>>> (781)    1989-04-11_18:00:00
>>>> (782)    1989-04-12_00:00:00
>>>> (783)    1989-04-12_06:00:00
>>>> (784)    1989-04-12_12:00:00
>>>> (785)    1989-04-12_18:00:00
>>>> (786)    1989-04-13_00:00:00
>>>> (787)    1989-04-13_06:00:00
>>>> (788)    1989-04-13_12:00:00
>>>> (789)    1989-04-13_18:00:00
>>>> (790)    1989-04-14_00:00:00
>>>> (791)    1989-04-14_06:00:00
>>>> (792)    1989-04-14_12:00:00
>>>> (793)    1989-04-14_18:00:00
>>>> (794)    1989-04-15_00:00:00
>>>> (795)    1989-04-15_06:00:00
>>>> (796)    1989-04-15_12:00:00
>>>> (797)    1989-04-15_18:00:00
>>>> (798)    1989-04-16_00:00:00
>>>> (799)    1989-04-16_06:00:00
>>>> (800)    1989-04-08_06:00:00
>>>> (801)    1989-04-08_12:00:00
>>>> (802)    1989-04-08_18:00:00
>>>> (803)    1989-04-09_00:00:00
>>>> (804)    1989-04-09_06:00:00
>>>> (805)    1989-04-16_12:00:00
>>>> (806)    1989-04-16_18:00:00
>>>> (807)    1989-04-17_00:00:00
>>>> (808)    1989-04-17_06:00:00
>>>> (809)    1989-04-17_12:00:00
>>>> (810)    1989-04-17_18:00:00
>>>> (811)    1989-04-18_00:00:00
>>>> (812)    1989-04-18_06:00:00
>>>> (813)    1989-04-18_12:00:00
>>>> (814)    1989-04-18_18:00:00
>>>> (815)    1989-04-19_00:00:00
>>>> (816)    1989-04-19_06:00:00
>>>> (817)    1989-04-19_12:00:00
>>>> (818)    1989-04-19_18:00:00
>>>> (819)    1989-04-20_00:00:00
>>>> (820)    1989-04-20_06:00:00
>>>> (821)    1989-04-20_12:00:00
>>>> (822)    1989-04-20_18:00:00
>>>> (823)    1989-04-21_00:00:00
>>>> (824)    1989-04-21_06:00:00
>>>> (825)    1989-04-21_12:00:00
>>>> (826)    1989-04-21_18:00:00
>>>> (827)    1989-04-22_00:00:00
>>>> (828)    1989-04-22_06:00:00
>>>> (829)    1989-04-22_12:00:00
>>>> (830)    1989-04-22_18:00:00
>>>> (831)    1989-04-23_00:00:00
>>>> (832)    1989-04-23_06:00:00
>>>> (833)    1989-04-23_12:00:00
>>>> (834)    1989-04-23_18:00:00
>>>> (835)    1989-04-24_00:00:00
>>>> (836)    1989-04-24_06:00:00
>>>> (837)    1989-04-24_12:00:00
>>>> (838)    1989-04-24_18:00:00
>>>> (839)    1989-04-25_00:00:00
>>>> (840)    1989-04-25_06:00:00
>>>> (841)    1989-04-25_12:00:00
>>>> (842)    1989-04-25_18:00:00
>>>> (843)    1989-04-26_00:00:00
>>>> (844)    1989-04-26_06:00:00
>>>> (845)    1989-04-26_12:00:00
>>>> (846)    1989-04-26_18:00:00
>>>> (847)    1989-04-27_00:00:00
>>>> (848)    1989-04-27_06:00:00
>>>> (849)    1989-04-27_12:00:00
>>>> (850)    1989-04-27_18:00:00
>>>> (851)    1989-04-28_00:00:00
>>>> (852)    1989-04-28_06:00:00
>>>> (853)    1989-04-28_12:00:00
>>>> (854)    1989-04-28_18:00:00
>>>> (855)    1989-04-29_00:00:00
>>>> (856)    1989-04-29_06:00:00
>>>> (857)    1989-04-29_12:00:00
>>>> (858)    1989-04-29_18:00:00
>>>> (859)    1989-04-30_00:00:00
>>>> (860)    1989-04-30_06:00:00
>>>> (861)    1989-04-30_12:00:00
>>>> (862)    1989-04-30_18:00:00
>>>> (863)    1989-05-01_00:00:00
>>>> (864)    1989-05-01_06:00:00
>>>> (865)    1989-05-01_12:00:00
>>>> (866)    1989-05-01_18:00:00
>>>> (867)    1989-05-02_00:00:00
>>>> (868)    1989-05-02_06:00:00
>>>> (869)    1989-05-02_12:00:00
>>>> (870)    1989-05-02_18:00:00
>>>> (871)    1989-05-03_00:00:00
>>>> (872)    1989-05-03_06:00:00
>>>> (873)    1989-05-03_12:00:00
>>>> (874)    1989-05-03_18:00:00
>>>> (875)    1989-05-04_00:00:00
>>>> (876)    1989-05-04_06:00:00
>>>> (877)    1989-05-04_12:00:00
>>>> (878)    1989-05-04_18:00:00
>>>> (879)    1989-05-05_00:00:00
>>>> (880)    1989-05-05_06:00:00
>>>> (881)    1989-05-05_12:00:00
>>>> (882)    1989-05-05_18:00:00
>>>> (883)    1989-05-06_00:00:00
>>>> (884)    1989-05-06_06:00:00
>>>> (885)    1989-05-06_12:00:00
>>>> (886)    1989-05-06_18:00:00
>>>> (887)    1989-05-07_00:00:00
>>>> (888)    1989-05-07_06:00:00
>>>> (889)    1989-05-07_12:00:00
>>>> (890)    1989-05-07_18:00:00
>>>> (891)    1989-05-08_00:00:00
>>>> (892)    1989-05-08_06:00:00
>>>> (893)    1989-05-08_12:00:00
>>>> (894)    1989-05-08_18:00:00
>>>> (895)    1989-05-09_00:00:00
>>>> (896)    1989-05-09_06:00:00
>>>> (897)    1989-05-09_12:00:00
>>>> (898)    1989-05-09_18:00:00
>>>> (899)    1989-05-10_00:00:00
>>>> (900)    1989-05-10_06:00:00
>>>> (901)    1989-05-10_12:00:00
>>>> (902)    1989-05-10_18:00:00
>>>> (903)    1989-05-11_00:00:00
>>>> (904)    1989-05-11_06:00:00
>>>> (905)    1989-05-11_12:00:00
>>>> (906)    1989-05-11_18:00:00
>>>> (907)    1989-05-12_00:00:00
>>>> (908)    1989-05-12_06:00:00
>>>> (909)    1989-05-12_12:00:00
>>>> (910)    1989-05-12_18:00:00
>>>> (911)    1989-05-13_00:00:00
>>>> (912)    1989-05-13_06:00:00
>>>> (913)    1989-05-13_12:00:00
>>>> (914)    1989-05-13_18:00:00
>>>> (915)    1989-05-14_00:00:00
>>>> (916)    1989-05-14_06:00:00
>>>> (917)    1989-05-14_12:00:00
>>>> (918)    1989-05-14_18:00:00
>>>> (919)    1989-05-15_00:00:00
>>>> (920)    1989-05-15_06:00:00
>>>> (921)    1989-05-15_12:00:00
>>>> (922)    1989-05-15_18:00:00
>>>> (923)    1989-05-16_00:00:00
>>>> (924)    1989-05-16_06:00:00
>>>> (925)    1989-05-16_12:00:00
>>>> (926)    1989-05-16_18:00:00
>>>> (927)    1989-05-17_00:00:00
>>>> (928)    1989-05-17_06:00:00
>>>> (929)    1989-05-17_12:00:00
>>>> (930)    1989-05-17_18:00:00
>>>> (931)    1989-05-18_00:00:00
>>>> (932)    1989-05-18_06:00:00
>>>> (933)    1989-05-18_12:00:00
>>>> (934)    1989-05-18_18:00:00
>>>> (935)    1989-05-19_00:00:00
>>>> (936)    1989-05-19_06:00:00
>>>> (937)    1989-05-19_12:00:00
>>>> (938)    1989-05-19_18:00:00
>>>> (939)    1989-05-20_00:00:00
>>>> (940)    1989-05-20_06:00:00
>>>> (941)    1989-05-20_12:00:00
>>>> (942)    1989-05-20_18:00:00
>>>> (943)    1989-05-21_00:00:00
>>>> (944)    1989-05-21_06:00:00
>>>> (945)    1989-05-21_12:00:00
>>>> (946)    1989-05-21_18:00:00
>>>> (947)    1989-05-22_00:00:00
>>>> (948)    1989-05-22_06:00:00
>>>> (949)    1989-05-22_12:00:00
>>>> (950)    1989-05-22_18:00:00
>>>> (951)    1989-05-23_00:00:00
>>>> (952)    1989-05-23_06:00:00
>>>> (953)    1989-05-23_12:00:00
>>>> (954)    1989-05-23_18:00:00
>>>> (955)    1989-05-24_00:00:00
>>>> (956)    1989-05-24_06:00:00
>>>> (957)    1989-05-24_12:00:00
>>>> (958)    1989-05-24_18:00:00
>>>> (959)    1989-05-25_00:00:00
>>>> (960)    1989-05-25_06:00:00
>>>> (961)    1989-05-25_12:00:00
>>>> (962)    1989-05-25_18:00:00
>>>> (963)    1989-05-26_00:00:00
>>>> (964)    1989-05-26_06:00:00
>>>> (965)    1989-05-26_12:00:00
>>>> (966)    1989-05-26_18:00:00
>>>> (967)    1989-05-27_00:00:00
>>>> (968)    1989-05-27_06:00:00
>>>> (969)    1989-05-27_12:00:00
>>>> (970)    1989-05-27_18:00:00
>>>> (971)    1989-05-28_00:00:00
>>>> (972)    1989-05-28_06:00:00
>>>> (973)    1989-05-28_12:00:00
>>>> (974)    1989-05-28_18:00:00
>>>> (975)    1989-05-29_00:00:00
>>>> (976)    1989-05-29_06:00:00
>>>> (977)    1989-05-29_12:00:00
>>>> (978)    1989-05-29_18:00:00
>>>> (979)    1989-05-30_00:00:00
>>>> (980)    1989-05-30_06:00:00
>>>> (981)    1989-05-30_12:00:00
>>>> (982)    1989-05-30_18:00:00
>>>> (983)    1989-05-31_00:00:00
>>>> (984)    1989-05-31_06:00:00
>>>> (985)    1989-05-31_12:00:00
>>>> (986)    1989-05-31_18:00:00
>>>>
>>>>
>>>> _______________________________________________
>>>> ncl-talk mailing list
>>>> ncl-talk at ucar.edu
>>>> List instructions, subscriber options, unsubscribe:
>>>> http://mailman.ucar.edu/mailman/listinfo/ncl-talk
>>>>
>>>> Thanks very much. I tried the script later but got memory issue error.
>>> I am not very sure how to go about this issue
>>>
>> fatal:NhlRealloc Failed:[errno=12]
>> fatal:Memory allocation failure:[errno=12]
>> fatal:["Execute.c":8575]:Execute: Error occurred at or near line 900 in
>> file /opt/NCL/V630/lib/ncarg/nclscripts/wrf/WRFUserARW.ncl
>>
>> fatal:["Execute.c":8575]:Execute: Error occurred at or near line 39 in
>> file z850hPaPlots.ncl
>>
>
>
> _______________________________________________
> ncl-talk mailing list
> ncl-talk at ucar.edu
> List instructions, subscriber options, unsubscribe:
> http://mailman.ucar.edu/mailman/listinfo/ncl-talk
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.ucar.edu/pipermail/ncl-talk/attachments/20161221/d779ac49/attachment-0001.html 


More information about the ncl-talk mailing list