|
|
|
|
Re: equal lat long grid [message #48587 is a reply to message #48303] |
Fri, 28 April 2006 11:45  |
Pawan
Messages: 9 Registered: April 2006
|
Junior Member |
|
|
Hi Peter,
I am running this program on IDL_6.0 on Linux machine and it gives me
error on the following location. IDL does not recognize indgen_array.
glon = indgen_array(nlon, nlat, /lon) * dlon + lon0[0] + dlon / 2.
glat = indgen_array(nlon, nlat, /lat) * dlat + lat0[0] + dlat / 2.
I was wondering is this just indgen or some other thing you want to do
here ?
glon = indgen(nlon, nlat) * dlon + lon0[0] + dlon / 2.
glat = indgen(nlon, nlat) * dlat + lat0[0] + dlat / 2.
Thanks,
Pawan
|
|
|