Hi, When defining your Y axis, do not use both /NPOINTS and the list of points yaxis=ypoints[i=1:3049]. What that is doing is taking just the first 55 points in the list and using them. What you tried in your first email was the right idea. yes? LET total = `ypoints,RETURN=isize`This happened because ypoints[I=1:3049:55] is decreasing not increasing. The error message should really say, **ERROR: improper grid or axis definition: data for DEFINE AXIS/FROM_VARIABLE is not monotonically increasing. yes? list ypoints[I=1:3049:55] So multiply by -1 to make it an increasing list, and define the axis in units of degrees north with negative values. yes? DEFINE AXIS/Y/UNITS=degrees_north yaxis=(-1)*ypoints[I=1:`total`:`npts`]And I think you'll be able to define the grid and read the temperature data on that grid. Ansley On 5/2/2013 3:02 AM, surja kanta Mishra
wrote:
|