<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Hi Laura,<br>
    <br>
    to avoid the edge effects you can plot your data points using
    polymarker (filled circle or square) or you can regrid the data
    using ESMF to a rectilinear grid with a high resolution.<br>
    <br>
    I've attached two example scripts reading and plotting EUMETSAT data
    which seems to have the same structure like your data.<br>
    <br>
    Bye,<br>
    Karin<br>
    <br>
    <div class="moz-cite-prefix">Am 08.06.16 um 19:01 schrieb Laura
      Fowler:<br>
    </div>
    <blockquote
cite="mid:CAJxY+2w=WQ3p4XC4nq4up2JWmkJ-H2HdHHCft+tLbAXmfEtyDw@mail.gmail.com"
      type="cite">
      <pre wrap="">Hi:

I am not sure if I correctly submitted the e-mail below to ncl-talk
yesterday. So I am resubmitting it today just in case. I would really
appreciate your help. Thanks.
Laura



I am trying to plot orbital data from the Terra Satellite, namely the
TOA outgoing long wave radiation. The netCDF file contains 3
one-dimensional fields that I am trying to use to plot the orbital
data with a cylindrical-equidistant projection.

LonFov(nTime): Longitude of the pixel.
LatFov(nTime): Latitude of the pixel.
TOAlw(nTime): Value of the outgoing long-wave radiation located at
LonFov and LatFov.

nTime is the length of my data set, so that I can plot a portion of
the satellite orbit. To plot the data, I use

res=True
res@gsnDraw           = True
res@gsnFrame          = True
res@gsnMaximize       = True
res@gsnSpreadColors   = True

res@mpProjection      = "CylindricalEquidistant"
res@mpDataBaseVersion = "MediumRes"
res@mpCenterLatF      = 0.
res@mpCenterLonF      = 180.

res@cnFillMode        = "RasterFill"
res@cnFillOn          = True
res@cnLinesOn         = False

res@cnInfoLabelOn     = False

res@sfXArray = LonFOV
res@sfYArray = LatFOV

wks = gsn_open_wks("pdf","test")
plot = gsn_csm_contour_map(wks,TOAlw,res)

My ncl script seems to work until the orbit widens and the edges of
the orbits start to show some streaks because it is trying to fill
contours (I think that this is what is happening). Is there a way that
I can correct this. I am attaching on of my plot so that you can see
what I am trying to do. I looked for the scripts in the Applications
directory but did not find how to correct this issue.

Thanks for your help,
Laura

</pre>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
ncl-talk mailing list
<a class="moz-txt-link-abbreviated" href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a>
List instructions, subscriber options, unsubscribe:
<a class="moz-txt-link-freetext" href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a>
</pre>
    </blockquote>
  </body>
</html>