vgrib2
Version:
[](https://badge.fury.io/js/vgrib2)
18 lines (17 loc) • 589 B
TypeScript
import { Buffer } from 'buffer/';
export declare type EndSectionValues = ReturnType<typeof parseSection8>;
export declare type EndSection = ReturnType<typeof parseSection8>;
/**
* End Section
*
* [Read more...](https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_sect8.shtml)
*/
export declare const parseSection8: (section: Buffer) => {
/** Name of Grib section */
sectionName: string;
/** Section 8 Contents */
contents: {
/** "7777" - Coded according to the International Alphabet Number 5 */
endEncoded: string;
};
};