Re: warning:NhlDraw: cannot draw Plot Member, ID 68, independently

From: Mary Haley <haley_at_nyahnyahspammersnyahnyah>
Date: Tue, 8 Sep 2009 10:00:23 -0600 (MDT)

Hi Sabeerali,

This is a good error for us to add to our FAQ.

This error can happen if you try to draw a plot after it has been
overlaid on another one.

For example, if you have something like this:

   contour_line = gsn_csm_contour(wks,z1,res)
   ...
   res_at_cnFillOn = True
   contour_fill = gsn_csm_contour(wks,z2,res)

   overlay(contour_fill,contour_line)

   draw(contour_line)
   frame(wks)

you will get an error because once you overlay "contour_line"
on "contour_fill", you can't draw it individually.

The above two lines must be:

   draw(contour_fill)
   frame(wks)

--Mary

On Tue, 8 Sep 2009, Sabeerali(sebi) wrote:

> Hello
> When I tried to overlay contour over a shaded one I am getting the
> following warning...What is mean by this warning? Can I neglect it?
> warning:NhlDraw: cannot draw Plot Member, ID 68, independently
>
> Any help would be appreciated...
>
_______________________________________________
ncl-talk mailing list
List instructions, subscriber options, unsubscribe:
http://mailman.ucar.edu/mailman/listinfo/ncl-talk
Received on Tue Sep 08 2009 - 10:00:23 MDT

This archive was generated by hypermail 2.2.0 : Tue Sep 08 2009 - 11:49:50 MDT