UNPKG

s2-tools

Version:

A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.

177 lines 4.67 kB
/** * # Table 1.0 - GRIB Master Tables * * **Details**: * - **Section**: 1 * - **Octet**: 10 (index 9) * * **Reserved Ranges**: * - `34-254`: Future Version * * **Special Value**: * - `255`: Missing * * ## Description * This table defines the version numbers used in GRIB2 Master Tables, * providing context for interpreting the data's versioning information. * * ## Links * - [Read more...](https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table1-0.shtml) * * ## Notes * - Revised 12/07/2023 */ export declare const grib2LookupTable10: Record<number, string>; /** * # Table 1.1 - GRIB Local Tables Version Number * * **Details**: * - **Section**: 1 * - **Octet**: 11 (index 10) * * **Used Ranges**: * - `1-254`: Number of local table versions used * * **Special Values**: * - `0`: Local tables not used. Only table entries and templates from the current master table are valid. * - `255`: Missing * * ## Description * This table defines the version numbers used in GRIB2 Local Tables, * providing context for interpreting the data's versioning information. * * ## Links * - [Read more...](https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table1-1.shtml) * * ## Notes * - Created 05/11/2005 */ export declare const grib2LookupTable11: Record<number, string>; /** * # Table 1.2 - Significance of Reference Time * * **Details**: * - **Section**: 1 * - **Octet**: 12 (index 11) * * **Reserved Ranges**: * - `6-191`: Reserved * - `192-254`: Reserved for Local Use * * **Special Value**: * - `255`: Missing * * ## Description * This table defines the significance of the reference time in GRIB2 files, * providing context for interpreting the data's temporal meaning. * * ## Links * - [Read more...](https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table1-2.shtml) * * ## Notes * - Revised 06/16/2022 */ export declare const grib2LookupTable12: Record<number, string>; /** * # Table 1.3 - Production Status of Data * * **Details**: * - **Section**: 1 * - **Octet**: 20 (index 19) * * **Reserved Ranges**: * - `14-191`: Reserved * - `192-254`: Reserved for Local Use * * **Special Value**: * - `255`: Missing * * ## Description * This table defines the production status of data in GRIB2 files, * providing context for interpreting the data's operational and research status. * * ## Links * - [Read more...](https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table1-3.shtml) * * ## Notes * - Revised 07/12/2024 */ export declare const grib2LookupTable13: Record<number, string>; /** * # Table 1.4 - TYPE OF DATA * * **Details**: * - **Section**: 1 * - **Octet**: 21 (index 20) * * **Reserved Ranges**: * - `9-191`: Reserved * - `192-254`: Reserved for Local Use * * **Special Values**: * - `192`: Experimental Products * - `255`: Missing * * ## Description * This table defines the types of data in GRIB2 files, * providing context for interpreting the data's nature, whether operational, research, or experimental. * * ## Links * - [Read more...](https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table1-4.shtml) * * ## Notes * - Revised 08/23/2023 */ export declare const grib2LookupTable14: Record<number, string>; /** * # Table 1.5 - IDENTIFICATION TEMPLATE NUMBER * * **Details**: * - **Section**: 1 * - **Octet**: 21 (index 20) * * **Reserved Ranges**: * - `3-32767`: Reserved * - `32768-65534`: Reserved for Local Use * * **Special Value**: * - `65535`: Missing * * ## Description * This table defines the identification template numbers in GRIB2 files, * providing context for interpreting the data's template classifications. * * ## Links * - [Read more...](https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table1-5.shtml) * * ## Notes * - Created 07/01/2014 */ export declare const grib2LookupTable15: Record<number, string>; /** * # Table 1.6 - TYPE OF CALENDAR * * **Details**: * - **Section**: 1 * - **Octet**: 21 (index 20) * * **Reserved Ranges**: * - `4-191`: Reserved * - `192-254`: Reserved for Local Use * * **Special Value**: * - `255`: Missing * * ## Description * This table defines the types of calendars in GRIB2 files, * providing context for interpreting the data's calendar classifications. * * ## Links * - [Read more...](https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table1-6.shtml) * * ## Notes * - (1). Essentially a non-leap year * - (2). Extends the Gregorian calendar indefinitely in the past */ export declare const grib2LookupTable16: Record<number, string>; //# sourceMappingURL=tables.d.ts.map