source: trunk/ReadWrite/idl-NetCDF/ncdf_listvars.pro @ 67

Last change on this file since 67 was 67, checked in by pinsard, 18 years ago

miscellaneous modifications according to cerbere.lodyc.jussieu.fr: /usr/home/smasson/SAXO_RD/

  • Property svn:executable set to *
File size: 163 bytes
Line 
1FUNCTION ncdf_listvars,ncid
2
3n=(ncdf_inquire(ncid)).nvars
4
5names=strarr(n)
6
7for i=0,n-1 do begin
8    names[i]=(ncdf_varinq(ncid,i)).name
9endfor
10
11return,names
12
13end
Note: See TracBrowser for help on using the repository browser.