UNPKG

slimfits

Version:

Package for loading data stored in FITS data format

13 lines (12 loc) 465 B
import { IDataReader, IDataSource, IKeyword } from '../interfaces'; export declare class BinaryTableDataReader implements IDataReader { readonly name: string; canReadData(header: IKeyword[]): boolean; readDataSize(header: IKeyword[]): number; readDataAsync(file: IDataSource, offsetBytes: number, header: IKeyword[]): Promise<{ name: string; data: any[]; }[]>; private static convertToTiles; private static readColumn; }