You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
622 B
31 lines
622 B
// export R# package module type define for javascript/typescript language
|
|
//
|
|
// imports "CDF" from "Darwinism";
|
|
//
|
|
// ref=Darwinism.CDF@Darwinism, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
|
|
/**
|
|
*
|
|
*/
|
|
declare namespace CDF {
|
|
/**
|
|
* open a connection to the netcdf file
|
|
*
|
|
*
|
|
* @param file -
|
|
* @return the file stream id
|
|
*/
|
|
function open(file: string): object;
|
|
/**
|
|
* get variable data from given file
|
|
*
|
|
*
|
|
* @param nc -
|
|
* @param name -
|
|
*/
|
|
function var_data(nc: object, name: string): any;
|
|
/**
|
|
*/
|
|
function vars(nc: object): string;
|
|
}
|