[ncl-talk] Wrfoutput plots empty workstation

Mary Haley haley at ucar.edu
Thu Oct 29 08:54:50 MDT 2015


Afwande,

My guess is that your script never got past this line, because NCL doesn't
know what type of file your wrf output file is:

  a = addfile("./wrfout_d01_2000-04-01_06:00:00","r")

Didn't your script give you an error when you tried to run it?

You need to add a ".nc" to the end of the filename (note: is NOT necessary
to rename the file itself), so that NCL knows to open it as a NetCDF file:

  a = addfile("./wrfout_d01_2000-04-01_06:00:00.nc","r")

--Mary





On Thu, Oct 29, 2015 at 5:27 AM, afwande juliet <afwandej965 at gmail.com>
wrote:

> Dear NCL users,
>  I am trying to plot wrf output for temp, u and v wind  dewpoint temp in
> one plot but i only get empty workstation, could someone help me know why .
> I am using script from WRF-NCL page and the runs is for about 13days of
> 3hourly. I have attached the script
> thanks
> Afwande
>
> _______________________________________________
> 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/20151029/1a1ba070/attachment.html 


More information about the ncl-talk mailing list