@mattnucc/gribberish 1.0.1 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/README.md +33 -0
  2. package/index.d.ts +43 -0
  3. package/index.js +51 -50
  4. package/package.json +6 -6
package/README.md CHANGED
@@ -39,6 +39,39 @@ Common entry points:
39
39
  - `GribMessage.parseFromBuffer(buffer, offset)` to parse one message at a known offset.
40
40
  - `GribMessageFactory.fromBuffer` to scan and fetch messages by key.
41
41
  - `GribMessageMetadataFactory.fromBuffer` for metadata-first access.
42
+ - `parseGribIndex(text, fileSize?)` to parse a sidecar index file.
43
+
44
+ ## Sidecar index files (`.idx` / `.index`)
45
+
46
+ Most NOAA models publish a wgrib2-style `.idx` text file next to every GRIB2
47
+ file, and ECMWF open data publishes a JSON-lines `.index` file. Both list each
48
+ message's byte offset, so a single field can be fetched with an HTTP Range
49
+ request instead of downloading the whole multi-hundred-MB file — including
50
+ from the browser:
51
+
52
+ ```ts
53
+ import { GribMessage, parseGribIndex } from '@mattnucc/gribberish'
54
+
55
+ const url = 'https://noaa-gfs-bdp-pds.s3.amazonaws.com/gfs.20260612/00/atmos/gfs.t00z.pgrb2.0p25.f012'
56
+
57
+ // 1. fetch the index (~100 KB) and locate the message you want
58
+ const entries = parseGribIndex(await (await fetch(`${url}.idx`)).text())
59
+ const entry = entries.find((e) => e.var === 'TMP' && e.level === '2 m above ground')!
60
+
61
+ // 2. fetch just that message by byte range and parse it standalone
62
+ const res = await fetch(url, {
63
+ headers: { Range: `bytes=${entry.offset}-${entry.offset + entry.length! - 1}` },
64
+ })
65
+ const msg = GribMessage.parseFromBuffer(new Uint8Array(await res.arrayBuffer()), 0)
66
+
67
+ console.log(msg.varName, msg.gridShape, msg.data.length)
68
+ ```
69
+
70
+ The last entry of a NOAA index has no `length` unless you pass the GRIB file
71
+ size as the second argument (an open-ended `Range: bytes=N-` request also
72
+ works). ECMWF entries always carry explicit lengths, plus their MARS metadata
73
+ verbatim under `keys`. Note that cfgrib's pickled `.idx` cache files are an
74
+ unrelated format and not supported.
42
75
 
43
76
  ## WebAssembly targets
44
77
 
package/index.d.ts CHANGED
@@ -32,6 +32,42 @@ export declare class GribMessageMetadataFactory {
32
32
  getMessage(key: string): GribMessage
33
33
  }
34
34
 
35
+ /**
36
+ * One entry of a GRIB sidecar index file (NOAA wgrib2 `.idx` or ECMWF
37
+ * open-data `.index`), locating a single message inside a GRIB file. Use the
38
+ * offset/length as an HTTP Range request, then parse the fetched bytes with
39
+ * `GribMessage.parseFromBuffer(bytes, 0)` — no full-file download needed.
40
+ */
41
+ export interface GribIndexEntry {
42
+ /** 1-based message number (the line number for ECMWF indexes). */
43
+ messageNumber: number
44
+ /**
45
+ * GRIB2 submessage number for NOAA `msg.submsg` lines; submessages share
46
+ * their parent message's byte range.
47
+ */
48
+ submessage?: number
49
+ /** Byte offset of the message start within the GRIB file. */
50
+ offset: number
51
+ /**
52
+ * Message size in bytes. Explicit in ECMWF indexes; inferred from the next
53
+ * entry's offset in NOAA indexes, so undefined for the final entry unless
54
+ * the GRIB file size is supplied.
55
+ */
56
+ length?: number
57
+ /** Model reference (initialization) time. */
58
+ referenceDate?: Date
59
+ /** Variable identifier: NOAA abbreviation ("TMP") or ECMWF MARS param ("2t"). */
60
+ var?: string
61
+ /** Level, verbatim ("2 m above ground", or ECMWF levelist). */
62
+ level?: string
63
+ /** Forecast time, verbatim ("3 hour fcst", "anl", or ECMWF step). */
64
+ forecastTime?: string
65
+ /** Trailing NOAA fields verbatim ("ENS=+5", probability info, ...). */
66
+ extra: Array<string>
67
+ /** ECMWF MARS keys verbatim (levtype, stream, number, ...). */
68
+ keys: Record<string, string>
69
+ }
70
+
35
71
  export interface GridShape {
36
72
  rows: number
37
73
  cols: number
@@ -42,4 +78,11 @@ export interface LatLng {
42
78
  longitude: Array<number>
43
79
  }
44
80
 
81
+ /**
82
+ * Parse a GRIB sidecar index file (NOAA wgrib2 `.idx` or ECMWF open-data
83
+ * `.index`, auto-detected) into entries locating each message. `fileSize`
84
+ * (if known) sizes the final entry of a NOAA index.
85
+ */
86
+ export declare function parseGribIndex(data: string, fileSize?: number | undefined | null): Array<GribIndexEntry>
87
+
45
88
  export declare function parseMessagesFromBuffer(buffer: Uint8Array): Array<GribMessage>
package/index.js CHANGED
@@ -80,8 +80,8 @@ function requireNative() {
80
80
  try {
81
81
  const binding = require('@mattnucc/gribberish-android-arm64')
82
82
  const bindingPackageVersion = require('@mattnucc/gribberish-android-arm64/package.json').version
83
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
84
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
83
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
84
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
85
85
  }
86
86
  return binding
87
87
  } catch (e) {
@@ -96,8 +96,8 @@ function requireNative() {
96
96
  try {
97
97
  const binding = require('@mattnucc/gribberish-android-arm-eabi')
98
98
  const bindingPackageVersion = require('@mattnucc/gribberish-android-arm-eabi/package.json').version
99
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
100
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
99
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
100
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
101
101
  }
102
102
  return binding
103
103
  } catch (e) {
@@ -116,8 +116,8 @@ function requireNative() {
116
116
  try {
117
117
  const binding = require('@mattnucc/gribberish-win32-x64-msvc')
118
118
  const bindingPackageVersion = require('@mattnucc/gribberish-win32-x64-msvc/package.json').version
119
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
120
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
119
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
120
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
121
121
  }
122
122
  return binding
123
123
  } catch (e) {
@@ -132,8 +132,8 @@ function requireNative() {
132
132
  try {
133
133
  const binding = require('@mattnucc/gribberish-win32-ia32-msvc')
134
134
  const bindingPackageVersion = require('@mattnucc/gribberish-win32-ia32-msvc/package.json').version
135
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
136
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
135
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
136
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
137
137
  }
138
138
  return binding
139
139
  } catch (e) {
@@ -148,8 +148,8 @@ function requireNative() {
148
148
  try {
149
149
  const binding = require('@mattnucc/gribberish-win32-arm64-msvc')
150
150
  const bindingPackageVersion = require('@mattnucc/gribberish-win32-arm64-msvc/package.json').version
151
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
152
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
151
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
152
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
153
153
  }
154
154
  return binding
155
155
  } catch (e) {
@@ -167,8 +167,8 @@ function requireNative() {
167
167
  try {
168
168
  const binding = require('@mattnucc/gribberish-darwin-universal')
169
169
  const bindingPackageVersion = require('@mattnucc/gribberish-darwin-universal/package.json').version
170
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
171
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
170
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
171
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
172
172
  }
173
173
  return binding
174
174
  } catch (e) {
@@ -183,8 +183,8 @@ function requireNative() {
183
183
  try {
184
184
  const binding = require('@mattnucc/gribberish-darwin-x64')
185
185
  const bindingPackageVersion = require('@mattnucc/gribberish-darwin-x64/package.json').version
186
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
187
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
186
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
187
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
188
188
  }
189
189
  return binding
190
190
  } catch (e) {
@@ -199,8 +199,8 @@ function requireNative() {
199
199
  try {
200
200
  const binding = require('@mattnucc/gribberish-darwin-arm64')
201
201
  const bindingPackageVersion = require('@mattnucc/gribberish-darwin-arm64/package.json').version
202
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
203
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
202
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
203
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
204
204
  }
205
205
  return binding
206
206
  } catch (e) {
@@ -219,8 +219,8 @@ function requireNative() {
219
219
  try {
220
220
  const binding = require('@mattnucc/gribberish-freebsd-x64')
221
221
  const bindingPackageVersion = require('@mattnucc/gribberish-freebsd-x64/package.json').version
222
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
223
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
222
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
223
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
224
224
  }
225
225
  return binding
226
226
  } catch (e) {
@@ -235,8 +235,8 @@ function requireNative() {
235
235
  try {
236
236
  const binding = require('@mattnucc/gribberish-freebsd-arm64')
237
237
  const bindingPackageVersion = require('@mattnucc/gribberish-freebsd-arm64/package.json').version
238
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
239
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
238
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
239
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
240
240
  }
241
241
  return binding
242
242
  } catch (e) {
@@ -256,8 +256,8 @@ function requireNative() {
256
256
  try {
257
257
  const binding = require('@mattnucc/gribberish-linux-x64-musl')
258
258
  const bindingPackageVersion = require('@mattnucc/gribberish-linux-x64-musl/package.json').version
259
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
260
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
259
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
260
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
261
261
  }
262
262
  return binding
263
263
  } catch (e) {
@@ -272,8 +272,8 @@ function requireNative() {
272
272
  try {
273
273
  const binding = require('@mattnucc/gribberish-linux-x64-gnu')
274
274
  const bindingPackageVersion = require('@mattnucc/gribberish-linux-x64-gnu/package.json').version
275
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
276
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
275
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
276
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
277
277
  }
278
278
  return binding
279
279
  } catch (e) {
@@ -290,8 +290,8 @@ function requireNative() {
290
290
  try {
291
291
  const binding = require('@mattnucc/gribberish-linux-arm64-musl')
292
292
  const bindingPackageVersion = require('@mattnucc/gribberish-linux-arm64-musl/package.json').version
293
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
294
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
293
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
294
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
295
295
  }
296
296
  return binding
297
297
  } catch (e) {
@@ -306,8 +306,8 @@ function requireNative() {
306
306
  try {
307
307
  const binding = require('@mattnucc/gribberish-linux-arm64-gnu')
308
308
  const bindingPackageVersion = require('@mattnucc/gribberish-linux-arm64-gnu/package.json').version
309
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
310
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
309
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
310
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
311
311
  }
312
312
  return binding
313
313
  } catch (e) {
@@ -324,8 +324,8 @@ function requireNative() {
324
324
  try {
325
325
  const binding = require('@mattnucc/gribberish-linux-arm-musleabihf')
326
326
  const bindingPackageVersion = require('@mattnucc/gribberish-linux-arm-musleabihf/package.json').version
327
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
328
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
327
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
328
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
329
329
  }
330
330
  return binding
331
331
  } catch (e) {
@@ -340,8 +340,8 @@ function requireNative() {
340
340
  try {
341
341
  const binding = require('@mattnucc/gribberish-linux-arm-gnueabihf')
342
342
  const bindingPackageVersion = require('@mattnucc/gribberish-linux-arm-gnueabihf/package.json').version
343
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
344
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
343
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
344
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
345
345
  }
346
346
  return binding
347
347
  } catch (e) {
@@ -358,8 +358,8 @@ function requireNative() {
358
358
  try {
359
359
  const binding = require('@mattnucc/gribberish-linux-loong64-musl')
360
360
  const bindingPackageVersion = require('@mattnucc/gribberish-linux-loong64-musl/package.json').version
361
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
362
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
361
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
362
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
363
363
  }
364
364
  return binding
365
365
  } catch (e) {
@@ -374,8 +374,8 @@ function requireNative() {
374
374
  try {
375
375
  const binding = require('@mattnucc/gribberish-linux-loong64-gnu')
376
376
  const bindingPackageVersion = require('@mattnucc/gribberish-linux-loong64-gnu/package.json').version
377
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
378
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
377
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
378
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
379
379
  }
380
380
  return binding
381
381
  } catch (e) {
@@ -392,8 +392,8 @@ function requireNative() {
392
392
  try {
393
393
  const binding = require('@mattnucc/gribberish-linux-riscv64-musl')
394
394
  const bindingPackageVersion = require('@mattnucc/gribberish-linux-riscv64-musl/package.json').version
395
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
396
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
395
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
396
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
397
397
  }
398
398
  return binding
399
399
  } catch (e) {
@@ -408,8 +408,8 @@ function requireNative() {
408
408
  try {
409
409
  const binding = require('@mattnucc/gribberish-linux-riscv64-gnu')
410
410
  const bindingPackageVersion = require('@mattnucc/gribberish-linux-riscv64-gnu/package.json').version
411
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
412
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
411
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
412
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
413
413
  }
414
414
  return binding
415
415
  } catch (e) {
@@ -425,8 +425,8 @@ function requireNative() {
425
425
  try {
426
426
  const binding = require('@mattnucc/gribberish-linux-ppc64-gnu')
427
427
  const bindingPackageVersion = require('@mattnucc/gribberish-linux-ppc64-gnu/package.json').version
428
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
429
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
428
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
429
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
430
430
  }
431
431
  return binding
432
432
  } catch (e) {
@@ -441,8 +441,8 @@ function requireNative() {
441
441
  try {
442
442
  const binding = require('@mattnucc/gribberish-linux-s390x-gnu')
443
443
  const bindingPackageVersion = require('@mattnucc/gribberish-linux-s390x-gnu/package.json').version
444
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
445
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
444
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
445
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
446
446
  }
447
447
  return binding
448
448
  } catch (e) {
@@ -461,8 +461,8 @@ function requireNative() {
461
461
  try {
462
462
  const binding = require('@mattnucc/gribberish-openharmony-arm64')
463
463
  const bindingPackageVersion = require('@mattnucc/gribberish-openharmony-arm64/package.json').version
464
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
465
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
464
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
465
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
466
466
  }
467
467
  return binding
468
468
  } catch (e) {
@@ -477,8 +477,8 @@ function requireNative() {
477
477
  try {
478
478
  const binding = require('@mattnucc/gribberish-openharmony-x64')
479
479
  const bindingPackageVersion = require('@mattnucc/gribberish-openharmony-x64/package.json').version
480
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
481
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
480
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
481
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
482
482
  }
483
483
  return binding
484
484
  } catch (e) {
@@ -493,8 +493,8 @@ function requireNative() {
493
493
  try {
494
494
  const binding = require('@mattnucc/gribberish-openharmony-arm')
495
495
  const bindingPackageVersion = require('@mattnucc/gribberish-openharmony-arm/package.json').version
496
- if (bindingPackageVersion !== '0.28.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
497
- throw new Error(`Native binding package version mismatch, expected 0.28.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
496
+ if (bindingPackageVersion !== '1.0.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
497
+ throw new Error(`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
498
498
  }
499
499
  return binding
500
500
  } catch (e) {
@@ -560,4 +560,5 @@ module.exports = nativeBinding
560
560
  module.exports.GribMessage = nativeBinding.GribMessage
561
561
  module.exports.GribMessageFactory = nativeBinding.GribMessageFactory
562
562
  module.exports.GribMessageMetadataFactory = nativeBinding.GribMessageMetadataFactory
563
+ module.exports.parseGribIndex = nativeBinding.parseGribIndex
563
564
  module.exports.parseMessagesFromBuffer = nativeBinding.parseMessagesFromBuffer
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mattnucc/gribberish",
3
- "version": "1.0.1",
3
+ "version": "1.1.0",
4
4
  "description": "JavaScript bindings for gribberish, a GRIB2 parsing library",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -106,10 +106,10 @@
106
106
  },
107
107
  "packageManager": "yarn@4.12.0",
108
108
  "optionalDependencies": {
109
- "@mattnucc/gribberish-win32-x64-msvc": "1.0.1",
110
- "@mattnucc/gribberish-darwin-x64": "1.0.1",
111
- "@mattnucc/gribberish-linux-x64-gnu": "1.0.1",
112
- "@mattnucc/gribberish-darwin-arm64": "1.0.1",
113
- "@mattnucc/gribberish-wasm32-wasi": "1.0.1"
109
+ "@mattnucc/gribberish-win32-x64-msvc": "1.1.0",
110
+ "@mattnucc/gribberish-darwin-x64": "1.1.0",
111
+ "@mattnucc/gribberish-linux-x64-gnu": "1.1.0",
112
+ "@mattnucc/gribberish-darwin-arm64": "1.1.0",
113
+ "@mattnucc/gribberish-wasm32-wasi": "1.1.0"
114
114
  }
115
115
  }