source: trunk/ReadWrite/idl-NetCDF/ncdf_listdims.pro @ 70

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

update according to idl-NetCDF-v04.tar.gz available via http://www.ittvis.com/codebank/search.asp?FID=418; side effects are not tested

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