vgrib2
Version:
[](https://badge.fury.io/js/vgrib2)
14 lines (11 loc) • 395 B
text/typescript
import { Buffer } from 'buffer/'
export type LocalUseSectionValues = ReturnType<typeof parseSection2>
export type LocalUseSection = ReturnType<typeof parseSection2>
/**
* Local Use Section
*
* [Read more...](https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_sect2.shtml)
*/
export const parseSection2 = (_section: Buffer) => {
throw new Error('Section 2 is not supported')
}