NCL does not handle GRIB2 boustrophedonic scanning

From: Richard Carpenter <rcarpenter_at_nyahnyahspammersnyahnyah>
Date: Wed, 11 Jun 2008 12:09:00 -0500

Hello,

It appear that NCL does not handle a complex packing method called boustrophedonic scanning in GRIB2 files. This leads to a "venetian blinds" effect when the attached file is plotted using NCL 5.0.0. IDV and GEMPAK both display the data properly. A workaround for NCL is given below.

dimms = dimsizes(array)
do j=1,dimms(0)-1,2
array(j,:) = array(j,::-1)
end do

Thank you.

Richard Carpenter
Weather Decision Technologies, Inc.<http://www.wdtinc.com/>

_______________________________________________
ncl-talk mailing list
ncl-talk_at_ucar.edu
http://mailman.ucar.edu/mailman/listinfo/ncl-talk

Received on Wed Jun 11 2008 - 11:09:00 MDT

This archive was generated by hypermail 2.2.0 : Wed Jun 11 2008 - 13:31:20 MDT