|
Scientific Data Formats: Common Data Format |
|
The CDF_LIB_INFO procedure returns information about the CDF Library being used by this version of IDL. Information about the version of CDF used to create a particular CDF file can be obtained through CDF_DOC.
CDF_LIB_INFO [, COPYRIGHT =variable] [, INCREMENT=variable] [, RELEASE=variable] [, SUBINCREMENT=variable] [, VERSION=variable]
None
A named variable in which the copyright notice of the CDF library that this version of IDL is using will be returned.
A named variable in which the incremental number of the CDF library that this version of IDL is using will be returned.
A named variable in which the release number of the CDF library that this version of IDL is using will be returned.
A named variable in which the sub incremental character of the CDF library that this version of IDL is using will be returned.
A named variable in which the version number of the CDF library that this version of IDL is using will be returned.
CDF_LIB_INFO, VERSION=V, RELEASE=R, COPYRIGHT=C, $ INCREMENT=I PRINT, 'IDL ', !version.release, 'uses CDF Library ', $ V, R, I, FORMAT='(A,A,A,I0,".",I0,".",I0,A)' PRINT, C