gnss-js 1.23.0 → 1.25.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.
- package/dist/{chunk-CUWF56ST.js → chunk-4XGKCVE3.js} +384 -13
- package/dist/index.cjs +389 -13
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +11 -1
- package/dist/ionex-DaW5x9nq.d.cts +23 -0
- package/dist/ionex-DaW5x9nq.d.ts +23 -0
- package/dist/positioning.cjs +389 -13
- package/dist/positioning.d.cts +225 -7
- package/dist/positioning.d.ts +225 -7
- package/dist/positioning.js +11 -1
- package/dist/rinex.d.cts +2 -23
- package/dist/rinex.d.ts +2 -23
- package/package.json +1 -1
package/dist/rinex.d.cts
CHANGED
|
@@ -2,6 +2,7 @@ import { R as RinexHeader } from './parser-JPjjFgeP.cjs';
|
|
|
2
2
|
export { E as EpochSummary, P as ParseOptions, a as RinexResult, b as RinexStats, S as SYSTEM_ORDER, c as SatObsCallback, p as parseRinexStream, s as systemCmp, d as systemName } from './parser-JPjjFgeP.cjs';
|
|
3
3
|
import { a as NavResult, N as NavHeader, E as Ephemeris, R as RinexCnavEphemeris } from './nav-DImXUdbp.cjs';
|
|
4
4
|
export { G as GlonassEphemeris, K as KeplerEphemeris, p as parseNavFile } from './nav-DImXUdbp.cjs';
|
|
5
|
+
export { I as IonexGrid, p as parseIonex } from './ionex-DaW5x9nq.cjs';
|
|
5
6
|
|
|
6
7
|
/**
|
|
7
8
|
* Compact RINEX (Hatanaka / CRX) decompression utilities.
|
|
@@ -155,28 +156,6 @@ interface Nav4Input {
|
|
|
155
156
|
*/
|
|
156
157
|
declare function writeRinexNav4(nav: Nav4Input): string;
|
|
157
158
|
|
|
158
|
-
/**
|
|
159
|
-
* IONEX 1.0 parser — global ionosphere maps (GIMs) as published by
|
|
160
|
-
* the IGS analysis centres (e.g. ESA0OPSRAP_*_GIM.INX).
|
|
161
|
-
*
|
|
162
|
-
* Returns the TEC maps in TECU on a regular lat/lon grid, one map per
|
|
163
|
-
* epoch. RMS maps and the DCB auxiliary block are skipped.
|
|
164
|
-
*/
|
|
165
|
-
interface IonexGrid {
|
|
166
|
-
/** Map epochs (Unix ms, UTC). */
|
|
167
|
-
epochs: number[];
|
|
168
|
-
/** Grid latitudes (degrees), in file order (typically 87.5 → −87.5). */
|
|
169
|
-
lats: number[];
|
|
170
|
-
/** Grid longitudes (degrees), in file order (typically −180 → 180). */
|
|
171
|
-
lons: number[];
|
|
172
|
-
/**
|
|
173
|
-
* TEC maps in TECU: maps[epochIdx][latIdx * lons.length + lonIdx].
|
|
174
|
-
* NaN where the file marks no value (9999).
|
|
175
|
-
*/
|
|
176
|
-
maps: Float32Array[];
|
|
177
|
-
}
|
|
178
|
-
declare function parseIonex(text: string): IonexGrid;
|
|
179
|
-
|
|
180
159
|
/**
|
|
181
160
|
* SP3-c/-d precise orbit and clock parser, with Lagrange interpolation
|
|
182
161
|
* for evaluating positions between the tabulated epochs.
|
|
@@ -305,4 +284,4 @@ declare function createGzipLineSink(): {
|
|
|
305
284
|
*/
|
|
306
285
|
declare function stationHeaderLines(header: RinexHeader): string[];
|
|
307
286
|
|
|
308
|
-
export { type CompactEpoch, type CrxField, type DiffState, EMPTY_WARNINGS, Ephemeris, type
|
|
287
|
+
export { type CompactEpoch, type CrxField, type DiffState, EMPTY_WARNINGS, Ephemeris, type Nav4Input, NavHeader, NavResult, RinexCnavEphemeris, RinexHeader, type RinexWarning, type RinexWarnings, type Sp3File, type Sp3Sample, WarningAccumulator, type WarningSeverity, createGzipLineSink, crxDecompress, crxRepair, fmtD, fmtF, hdrLine, padL, padR, parseCrxDataLine, parseSp3, sp3Position, stationHeaderLines, writeModernObsBlob, writeRinex2ObsBlob, writeRinex4ObsBlob, writeRinexNav, writeRinexNav4, writeRinexObsBlob };
|
package/dist/rinex.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { R as RinexHeader } from './parser-JPjjFgeP.js';
|
|
|
2
2
|
export { E as EpochSummary, P as ParseOptions, a as RinexResult, b as RinexStats, S as SYSTEM_ORDER, c as SatObsCallback, p as parseRinexStream, s as systemCmp, d as systemName } from './parser-JPjjFgeP.js';
|
|
3
3
|
import { a as NavResult, N as NavHeader, E as Ephemeris, R as RinexCnavEphemeris } from './nav-DImXUdbp.js';
|
|
4
4
|
export { G as GlonassEphemeris, K as KeplerEphemeris, p as parseNavFile } from './nav-DImXUdbp.js';
|
|
5
|
+
export { I as IonexGrid, p as parseIonex } from './ionex-DaW5x9nq.js';
|
|
5
6
|
|
|
6
7
|
/**
|
|
7
8
|
* Compact RINEX (Hatanaka / CRX) decompression utilities.
|
|
@@ -155,28 +156,6 @@ interface Nav4Input {
|
|
|
155
156
|
*/
|
|
156
157
|
declare function writeRinexNav4(nav: Nav4Input): string;
|
|
157
158
|
|
|
158
|
-
/**
|
|
159
|
-
* IONEX 1.0 parser — global ionosphere maps (GIMs) as published by
|
|
160
|
-
* the IGS analysis centres (e.g. ESA0OPSRAP_*_GIM.INX).
|
|
161
|
-
*
|
|
162
|
-
* Returns the TEC maps in TECU on a regular lat/lon grid, one map per
|
|
163
|
-
* epoch. RMS maps and the DCB auxiliary block are skipped.
|
|
164
|
-
*/
|
|
165
|
-
interface IonexGrid {
|
|
166
|
-
/** Map epochs (Unix ms, UTC). */
|
|
167
|
-
epochs: number[];
|
|
168
|
-
/** Grid latitudes (degrees), in file order (typically 87.5 → −87.5). */
|
|
169
|
-
lats: number[];
|
|
170
|
-
/** Grid longitudes (degrees), in file order (typically −180 → 180). */
|
|
171
|
-
lons: number[];
|
|
172
|
-
/**
|
|
173
|
-
* TEC maps in TECU: maps[epochIdx][latIdx * lons.length + lonIdx].
|
|
174
|
-
* NaN where the file marks no value (9999).
|
|
175
|
-
*/
|
|
176
|
-
maps: Float32Array[];
|
|
177
|
-
}
|
|
178
|
-
declare function parseIonex(text: string): IonexGrid;
|
|
179
|
-
|
|
180
159
|
/**
|
|
181
160
|
* SP3-c/-d precise orbit and clock parser, with Lagrange interpolation
|
|
182
161
|
* for evaluating positions between the tabulated epochs.
|
|
@@ -305,4 +284,4 @@ declare function createGzipLineSink(): {
|
|
|
305
284
|
*/
|
|
306
285
|
declare function stationHeaderLines(header: RinexHeader): string[];
|
|
307
286
|
|
|
308
|
-
export { type CompactEpoch, type CrxField, type DiffState, EMPTY_WARNINGS, Ephemeris, type
|
|
287
|
+
export { type CompactEpoch, type CrxField, type DiffState, EMPTY_WARNINGS, Ephemeris, type Nav4Input, NavHeader, NavResult, RinexCnavEphemeris, RinexHeader, type RinexWarning, type RinexWarnings, type Sp3File, type Sp3Sample, WarningAccumulator, type WarningSeverity, createGzipLineSink, crxDecompress, crxRepair, fmtD, fmtF, hdrLine, padL, padR, parseCrxDataLine, parseSp3, sp3Position, stationHeaderLines, writeModernObsBlob, writeRinex2ObsBlob, writeRinex4ObsBlob, writeRinexNav, writeRinexNav4, writeRinexObsBlob };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gnss-js",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.0",
|
|
4
4
|
"description": "Comprehensive GNSS library for JavaScript — time scales, coordinates, RINEX parsing, RTCM3 decoding, orbit computation, and signal analysis",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|