laterite 0.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.
- package/README.md +100 -0
- package/dist/index.cjs +14874 -0
- package/dist/index.d.mts +2333 -0
- package/dist/index.d.ts +2333 -0
- package/dist/index.mjs +14758 -0
- package/index.d.ts +168 -0
- package/index.js +326 -0
- package/package.json +100 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,2333 @@
|
|
|
1
|
+
import { Table } from 'apache-arrow';
|
|
2
|
+
import { Reading, ValidationReport, Finding, displayHint, PackStats, UnpackStats } from '#native';
|
|
3
|
+
export { Finding, GroupMeta, version } from '#native';
|
|
4
|
+
|
|
5
|
+
/** One query result row — JS-native values (`getRowObjectsJS`: Dates, numbers,
|
|
6
|
+
* nulls; 64-bit ints stay `bigint`). */
|
|
7
|
+
type Row = Record<string, unknown>;
|
|
8
|
+
/** Query output shape. Default is row objects; `arrow: true` returns a born-typed
|
|
9
|
+
* arrow-js `Table` (via DuckDB's `arrow` **community** extension, loaded on first
|
|
10
|
+
* use — needs network the first time, so it's opt-in, not the default). */
|
|
11
|
+
interface QueryOptions {
|
|
12
|
+
arrow?: boolean;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/** A `(keyColumn, values)` filter, e.g. `["LOCA_ID", ["BH01", "BH02"]]`. */
|
|
16
|
+
type Filter = [key: string, values: unknown[]];
|
|
17
|
+
declare class AgsSubset {
|
|
18
|
+
#private;
|
|
19
|
+
constructor(parent: Ags4File, filters: Filter[]);
|
|
20
|
+
/** Narrow further by another entity's id (e.g. add a SAMP filter). */
|
|
21
|
+
at(group: string, values: Iterable<unknown>): AgsSubset;
|
|
22
|
+
/** The related groups — those carrying at least one filter's key column. */
|
|
23
|
+
get groups(): string[];
|
|
24
|
+
/** `code` filtered by every applicable key (groups carrying none pass
|
|
25
|
+
* through), as JS-native row objects (or an arrow-js `Table` with
|
|
26
|
+
* `{ arrow: true }`). */
|
|
27
|
+
table(code: string): Promise<Row[]>;
|
|
28
|
+
table(code: string, opts: {
|
|
29
|
+
arrow: true;
|
|
30
|
+
}): Promise<Table>;
|
|
31
|
+
table(code: string, opts?: QueryOptions): Promise<Row[] | Table>;
|
|
32
|
+
/** `{group: rows}` for every related group, each filtered — a location's whole
|
|
33
|
+
* related record set in one call (arrow-js Tables with `{ arrow: true }`). */
|
|
34
|
+
frames(): Promise<Record<string, Row[]>>;
|
|
35
|
+
frames(opts: {
|
|
36
|
+
arrow: true;
|
|
37
|
+
}): Promise<Record<string, Table>>;
|
|
38
|
+
frames(opts?: QueryOptions): Promise<Record<string, Row[] | Table>>;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
declare class Ags4File {
|
|
42
|
+
#private;
|
|
43
|
+
constructor(reading: Reading);
|
|
44
|
+
/** Group codes in file order. */
|
|
45
|
+
get groups(): string[];
|
|
46
|
+
/** The file's `TRAN_AGS` edition string, if present. */
|
|
47
|
+
get tranAgs(): string | null;
|
|
48
|
+
headings(code: string): string[];
|
|
49
|
+
units(code: string): string[];
|
|
50
|
+
types(code: string): string[];
|
|
51
|
+
/** AGS TYPE → the DuckDB column type each heading lands as (for the P3 engine). */
|
|
52
|
+
sqlTypes(code: string): string[];
|
|
53
|
+
/** 1-indexed source line of each DATA row. */
|
|
54
|
+
lineNumbers(code: string): number[];
|
|
55
|
+
has(code: string): boolean;
|
|
56
|
+
/** One group as a born-typed arrow-js `Table` (a 2DP heading is Float64, an ID
|
|
57
|
+
* Utf8, a DT a Timestamp) — the SAME typing the Python/wasm hosts produce,
|
|
58
|
+
* byte-identical by construction (one shared `build_record_batch`). Cached per
|
|
59
|
+
* group. Throws if `code` isn't in the file. */
|
|
60
|
+
table(code: string): Table;
|
|
61
|
+
/** Reconstruct spec-correct AGS4 text — byte-faithful to the source DATA
|
|
62
|
+
* values (re-emitted native-side from the retained parse). */
|
|
63
|
+
toAgs4Text(): string;
|
|
64
|
+
/** Write the AGS4 text to `path` (UTF-8); returns `path`. */
|
|
65
|
+
write(path: string): string;
|
|
66
|
+
/** Run SQL over the file's groups by their clean names — e.g.
|
|
67
|
+
* `await ags.sql("SELECT * FROM SAMP JOIN LOCA USING (LOCA_ID) WHERE …")`.
|
|
68
|
+
* Returns JS-native row objects by default, or a born-typed arrow-js `Table`
|
|
69
|
+
* with `{ arrow: true }` (loads the `arrow` community extension on first use).
|
|
70
|
+
* Any group may be referenced, so this loads them all. Needs the optional
|
|
71
|
+
* `@duckdb/node-api` peer. */
|
|
72
|
+
sql(query: string): Promise<Row[]>;
|
|
73
|
+
sql(query: string, opts: {
|
|
74
|
+
arrow: true;
|
|
75
|
+
}): Promise<Table>;
|
|
76
|
+
sql(query: string, opts?: QueryOptions): Promise<Row[] | Table>;
|
|
77
|
+
/** Filter to a parent entity's records — `ags.at("LOCA", ["BH01", "BH02"])`
|
|
78
|
+
* returns a view whose `table(code)` yields only the rows whose `{group}_ID`
|
|
79
|
+
* is in `values`. Chain to narrow (`.at("SAMP", […])`); `sub.groups` is the
|
|
80
|
+
* related groups, `sub.frames()` pulls them all. Groups carrying none of the
|
|
81
|
+
* keys pass through. For any other predicate, use `sql("… WHERE …")`. */
|
|
82
|
+
at(group: string, values: Iterable<unknown>): AgsSubset;
|
|
83
|
+
/** The raw `@duckdb/node-api` connection — every engine feature — seeded with
|
|
84
|
+
* all of this file's groups under their clean names. */
|
|
85
|
+
get connection(): Promise<unknown>;
|
|
86
|
+
/** @internal — backs `AgsSubset.table`: `code` filtered by every applicable
|
|
87
|
+
* key (an empty value list matches nothing; groups carrying no key pass). */
|
|
88
|
+
_filteredRows(code: string, filters: Filter[], opts?: QueryOptions): Promise<Row[] | Table>;
|
|
89
|
+
/** Drop the decoded-Table cache and close the DuckDB engine (if any).
|
|
90
|
+
* `using f = read(…)` runs this automatically. */
|
|
91
|
+
close(): void;
|
|
92
|
+
[Symbol.dispose](): void;
|
|
93
|
+
toString(): string;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/** A flattened emit finding — `rule` plus whatever rich keys the validator set. */
|
|
97
|
+
interface EmitFinding {
|
|
98
|
+
rule: string;
|
|
99
|
+
line?: number;
|
|
100
|
+
group?: string;
|
|
101
|
+
desc?: string;
|
|
102
|
+
[key: string]: unknown;
|
|
103
|
+
}
|
|
104
|
+
declare class EmitResult {
|
|
105
|
+
readonly bytes: Buffer;
|
|
106
|
+
readonly findings: EmitFinding[];
|
|
107
|
+
readonly fixesApplied: number;
|
|
108
|
+
constructor(bytes: Buffer, findings: EmitFinding[], fixesApplied: number);
|
|
109
|
+
/** The AGS4 document decoded as text. */
|
|
110
|
+
get text(): string;
|
|
111
|
+
/** Save the bytes to `path`; returns `path`. */
|
|
112
|
+
write(path: string): string;
|
|
113
|
+
toString(): string;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
/** One finding without its `rule` key — the value shape `byRule()` groups. */
|
|
117
|
+
type RuleFinding = Omit<Finding, "rule">;
|
|
118
|
+
declare class Report {
|
|
119
|
+
#private;
|
|
120
|
+
constructor(r: ValidationReport);
|
|
121
|
+
get file(): string;
|
|
122
|
+
get dictVersion(): string;
|
|
123
|
+
get resolution(): string;
|
|
124
|
+
get count(): number;
|
|
125
|
+
/** `true` iff there are zero findings (distinct from the native `ok`, which
|
|
126
|
+
* only means "validatable"). */
|
|
127
|
+
get isValid(): boolean;
|
|
128
|
+
get exitCode(): number;
|
|
129
|
+
/** All findings, in `ags4-check` order: `{rule, line?, group, desc, severity?}`. */
|
|
130
|
+
get findings(): Finding[];
|
|
131
|
+
/** `{ "AGS Format Rule N": [{line?, group, desc, …}] }` — the spec-rule
|
|
132
|
+
* grouping (mirrors `Report.by_rule`). */
|
|
133
|
+
byRule(): Record<string, RuleFinding[]>;
|
|
134
|
+
/** `{file, findings:{…}}` pretty-JSON — byte-identical to `ags4-check --json`. */
|
|
135
|
+
toJson(): string;
|
|
136
|
+
/** One flat `{rule, …}` per line — byte-identical to `ags4-check --ndjson`. */
|
|
137
|
+
toNdjson(): string;
|
|
138
|
+
toString(): string;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
declare abstract class AgsGroup {
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
declare class ABBR extends AgsGroup {
|
|
145
|
+
static readonly code = "ABBR";
|
|
146
|
+
ABBR_HDNG: string | null;
|
|
147
|
+
ABBR_CODE: string | null;
|
|
148
|
+
ABBR_DESC: string | null;
|
|
149
|
+
ABBR_LIST: string | null;
|
|
150
|
+
ABBR_REM: string | null;
|
|
151
|
+
FILE_FSET: string | null;
|
|
152
|
+
constructor(init?: Partial<ABBR>);
|
|
153
|
+
}
|
|
154
|
+
declare class ASDI extends AgsGroup {
|
|
155
|
+
static readonly code = "ASDI";
|
|
156
|
+
LOCA_ID: string | null;
|
|
157
|
+
SAMP_TOP: number | null;
|
|
158
|
+
SAMP_REF: string | null;
|
|
159
|
+
SAMP_TYPE: string | null;
|
|
160
|
+
SAMP_ID: string | null;
|
|
161
|
+
SPEC_REF: string | null;
|
|
162
|
+
SPEC_DPTH: number | null;
|
|
163
|
+
SPEC_DESC: string | null;
|
|
164
|
+
SPEC_PREP: string | null;
|
|
165
|
+
ASDI_SDI1: number | null;
|
|
166
|
+
ASDI_SDI2: number | null;
|
|
167
|
+
ASDI_SOLN: string | null;
|
|
168
|
+
ASDI_INDR: string | null;
|
|
169
|
+
ASDI_PADR: string | null;
|
|
170
|
+
ASDI_REM: string | null;
|
|
171
|
+
ASDI_METH: string | null;
|
|
172
|
+
ASDI_LAB: string | null;
|
|
173
|
+
ASDI_CRED: string | null;
|
|
174
|
+
TEST_STAT: string | null;
|
|
175
|
+
FILE_FSET: string | null;
|
|
176
|
+
constructor(init?: Partial<ASDI>);
|
|
177
|
+
}
|
|
178
|
+
declare class BKFL extends AgsGroup {
|
|
179
|
+
static readonly code = "BKFL";
|
|
180
|
+
LOCA_ID: string | null;
|
|
181
|
+
BKFL_TOP: number | null;
|
|
182
|
+
BKFL_BASE: number | null;
|
|
183
|
+
BKFL_DESC: string | null;
|
|
184
|
+
BKFL_LEG: string | null;
|
|
185
|
+
BKFL_DATE: Date | null;
|
|
186
|
+
BKFL_REM: string | null;
|
|
187
|
+
FILE_FSET: string | null;
|
|
188
|
+
constructor(init?: Partial<BKFL>);
|
|
189
|
+
}
|
|
190
|
+
declare class CBRG extends AgsGroup {
|
|
191
|
+
static readonly code = "CBRG";
|
|
192
|
+
LOCA_ID: string | null;
|
|
193
|
+
SAMP_TOP: number | null;
|
|
194
|
+
SAMP_REF: string | null;
|
|
195
|
+
SAMP_TYPE: string | null;
|
|
196
|
+
SAMP_ID: string | null;
|
|
197
|
+
SPEC_REF: string | null;
|
|
198
|
+
SPEC_DPTH: number | null;
|
|
199
|
+
SPEC_DESC: string | null;
|
|
200
|
+
SPEC_PREP: string | null;
|
|
201
|
+
CBRG_COND: string | null;
|
|
202
|
+
CBRG_NMC: number | null;
|
|
203
|
+
CBRG_200: number | null;
|
|
204
|
+
CBRG_STAB: number | null;
|
|
205
|
+
CBRG_STYP: string | null;
|
|
206
|
+
CBRG_REM: string | null;
|
|
207
|
+
CBRG_METH: string | null;
|
|
208
|
+
CBRG_LAB: string | null;
|
|
209
|
+
CBRG_CRED: string | null;
|
|
210
|
+
TEST_STAT: string | null;
|
|
211
|
+
FILE_FSET: string | null;
|
|
212
|
+
CBRG_SIZE: number | null;
|
|
213
|
+
cbrts: CBRT[];
|
|
214
|
+
constructor(init?: Partial<CBRG>);
|
|
215
|
+
}
|
|
216
|
+
declare class CBRT extends AgsGroup {
|
|
217
|
+
static readonly code = "CBRT";
|
|
218
|
+
LOCA_ID: string | null;
|
|
219
|
+
SAMP_TOP: number | null;
|
|
220
|
+
SAMP_REF: string | null;
|
|
221
|
+
SAMP_TYPE: string | null;
|
|
222
|
+
SAMP_ID: string | null;
|
|
223
|
+
SPEC_REF: string | null;
|
|
224
|
+
SPEC_DPTH: number | null;
|
|
225
|
+
CBRT_TESN: string | null;
|
|
226
|
+
CBRT_TOP: number | null;
|
|
227
|
+
CBRT_BASE: number | null;
|
|
228
|
+
CBRT_MCT: number | null;
|
|
229
|
+
CBRT_MCBT: number | null;
|
|
230
|
+
CBRT_IMC: number | null;
|
|
231
|
+
CBRT_BDEN: number | null;
|
|
232
|
+
CBRT_DDEN: number | null;
|
|
233
|
+
CBRT_SURC: number | null;
|
|
234
|
+
CBRT_SKDT: string | null;
|
|
235
|
+
CBRT_SWEL: number | null;
|
|
236
|
+
CBRT_REM: string | null;
|
|
237
|
+
FILE_FSET: string | null;
|
|
238
|
+
constructor(init?: Partial<CBRT>);
|
|
239
|
+
}
|
|
240
|
+
declare class CDIA extends AgsGroup {
|
|
241
|
+
static readonly code = "CDIA";
|
|
242
|
+
LOCA_ID: string | null;
|
|
243
|
+
CDIA_DPTH: number | null;
|
|
244
|
+
CDIA_DIAM: number | null;
|
|
245
|
+
CDIA_REM: string | null;
|
|
246
|
+
FILE_FSET: string | null;
|
|
247
|
+
constructor(init?: Partial<CDIA>);
|
|
248
|
+
}
|
|
249
|
+
declare class CHIS extends AgsGroup {
|
|
250
|
+
static readonly code = "CHIS";
|
|
251
|
+
LOCA_ID: string | null;
|
|
252
|
+
CHIS_FROM: number | null;
|
|
253
|
+
CHIS_TO: number | null;
|
|
254
|
+
CHIS_TIME: string | null;
|
|
255
|
+
CHIS_STAR: Date | null;
|
|
256
|
+
CHIS_TOOL: string | null;
|
|
257
|
+
CHIS_REM: string | null;
|
|
258
|
+
FILE_FSET: string | null;
|
|
259
|
+
constructor(init?: Partial<CHIS>);
|
|
260
|
+
}
|
|
261
|
+
declare class CHOC extends AgsGroup {
|
|
262
|
+
static readonly code = "CHOC";
|
|
263
|
+
LOCA_ID: string | null;
|
|
264
|
+
SAMP_TOP: number | null;
|
|
265
|
+
SAMP_REF: string | null;
|
|
266
|
+
SAMP_TYPE: string | null;
|
|
267
|
+
SAMP_ID: string | null;
|
|
268
|
+
CHOC_REF: string | null;
|
|
269
|
+
CHOC_FROM: string | null;
|
|
270
|
+
CHOC_TO: string | null;
|
|
271
|
+
CHOC_DDIS: Date | null;
|
|
272
|
+
CHOC_BTCH: string | null;
|
|
273
|
+
CHOC_REM: string | null;
|
|
274
|
+
CHOC_CONT: number | null;
|
|
275
|
+
FILE_FSET: string | null;
|
|
276
|
+
constructor(init?: Partial<CHOC>);
|
|
277
|
+
}
|
|
278
|
+
declare class CMPG extends AgsGroup {
|
|
279
|
+
static readonly code = "CMPG";
|
|
280
|
+
LOCA_ID: string | null;
|
|
281
|
+
SAMP_TOP: number | null;
|
|
282
|
+
SAMP_REF: string | null;
|
|
283
|
+
SAMP_TYPE: string | null;
|
|
284
|
+
SAMP_ID: string | null;
|
|
285
|
+
SPEC_REF: string | null;
|
|
286
|
+
SPEC_DPTH: number | null;
|
|
287
|
+
CMPG_TESN: string | null;
|
|
288
|
+
SPEC_PREP: string | null;
|
|
289
|
+
SPEC_DESC: string | null;
|
|
290
|
+
CMPG_TYPE: string | null;
|
|
291
|
+
CMPG_MOLD: string | null;
|
|
292
|
+
CMPG_375: number | null;
|
|
293
|
+
CMPG_200: number | null;
|
|
294
|
+
CMPG_PDEN: string | null;
|
|
295
|
+
CMPG_MAXD: number | null;
|
|
296
|
+
CMPG_MCOP: number | null;
|
|
297
|
+
CMPG_STAB: number | null;
|
|
298
|
+
CMPG_STYP: string | null;
|
|
299
|
+
CMPG_REM: string | null;
|
|
300
|
+
CMPG_METH: string | null;
|
|
301
|
+
CMPG_LAB: string | null;
|
|
302
|
+
CMPG_CRED: string | null;
|
|
303
|
+
TEST_STAT: string | null;
|
|
304
|
+
FILE_FSET: string | null;
|
|
305
|
+
CMPG_SIZ1: number | null;
|
|
306
|
+
CMPG_SIZ2: number | null;
|
|
307
|
+
cmpts: CMPT[];
|
|
308
|
+
constructor(init?: Partial<CMPG>);
|
|
309
|
+
}
|
|
310
|
+
declare class CMPT extends AgsGroup {
|
|
311
|
+
static readonly code = "CMPT";
|
|
312
|
+
LOCA_ID: string | null;
|
|
313
|
+
SAMP_TOP: number | null;
|
|
314
|
+
SAMP_REF: string | null;
|
|
315
|
+
SAMP_TYPE: string | null;
|
|
316
|
+
SAMP_ID: string | null;
|
|
317
|
+
SPEC_REF: string | null;
|
|
318
|
+
SPEC_DPTH: number | null;
|
|
319
|
+
CMPG_TESN: string | null;
|
|
320
|
+
CMPT_TESN: string | null;
|
|
321
|
+
CMPT_MC: number | null;
|
|
322
|
+
CMPT_DDEN: number | null;
|
|
323
|
+
CMPT_REM: string | null;
|
|
324
|
+
FILE_FSET: string | null;
|
|
325
|
+
constructor(init?: Partial<CMPT>);
|
|
326
|
+
}
|
|
327
|
+
declare class CONG extends AgsGroup {
|
|
328
|
+
static readonly code = "CONG";
|
|
329
|
+
LOCA_ID: string | null;
|
|
330
|
+
SAMP_TOP: number | null;
|
|
331
|
+
SAMP_REF: string | null;
|
|
332
|
+
SAMP_TYPE: string | null;
|
|
333
|
+
SAMP_ID: string | null;
|
|
334
|
+
SPEC_REF: string | null;
|
|
335
|
+
SPEC_DPTH: number | null;
|
|
336
|
+
SPEC_DESC: string | null;
|
|
337
|
+
SPEC_PREP: string | null;
|
|
338
|
+
CONG_TYPE: string | null;
|
|
339
|
+
CONG_COND: string | null;
|
|
340
|
+
CONG_SDIA: number | null;
|
|
341
|
+
CONG_HIGT: number | null;
|
|
342
|
+
CONG_MCI: number | null;
|
|
343
|
+
CONG_MCF: number | null;
|
|
344
|
+
CONG_BDEN: number | null;
|
|
345
|
+
CONG_DDEN: number | null;
|
|
346
|
+
CONG_PDEN: string | null;
|
|
347
|
+
CONG_SATR: number | null;
|
|
348
|
+
CONG_SPRS: number | null;
|
|
349
|
+
CONG_SATH: number | null;
|
|
350
|
+
CONG_IVR: number | null;
|
|
351
|
+
CONG_REM: string | null;
|
|
352
|
+
CONG_METH: string | null;
|
|
353
|
+
CONG_LAB: string | null;
|
|
354
|
+
CONG_CRED: string | null;
|
|
355
|
+
TEST_STAT: string | null;
|
|
356
|
+
FILE_FSET: string | null;
|
|
357
|
+
conss: CONS[];
|
|
358
|
+
constructor(init?: Partial<CONG>);
|
|
359
|
+
}
|
|
360
|
+
declare class CONL extends AgsGroup {
|
|
361
|
+
static readonly code = "CONL";
|
|
362
|
+
LOCA_ID: string | null;
|
|
363
|
+
SAMP_TOP: number | null;
|
|
364
|
+
SAMP_REF: string | null;
|
|
365
|
+
SAMP_TYPE: string | null;
|
|
366
|
+
SAMP_ID: string | null;
|
|
367
|
+
SPEC_REF: string | null;
|
|
368
|
+
SPEC_DPTH: number | null;
|
|
369
|
+
CONL_MNUM: number | null;
|
|
370
|
+
CONL_TTIM: number | null;
|
|
371
|
+
CONL_TTDT: Date | null;
|
|
372
|
+
CONL_STIM: number | null;
|
|
373
|
+
CONL_STGN: number | null;
|
|
374
|
+
CONL_STGD: string | null;
|
|
375
|
+
CONL_SZT: number | null;
|
|
376
|
+
CONL_HGHT: number | null;
|
|
377
|
+
CONL_EZET: number | null;
|
|
378
|
+
CONL_VR: number | null;
|
|
379
|
+
CONL_PWP: number | null;
|
|
380
|
+
constructor(init?: Partial<CONL>);
|
|
381
|
+
}
|
|
382
|
+
declare class CONS extends AgsGroup {
|
|
383
|
+
static readonly code = "CONS";
|
|
384
|
+
LOCA_ID: string | null;
|
|
385
|
+
SAMP_TOP: number | null;
|
|
386
|
+
SAMP_REF: string | null;
|
|
387
|
+
SAMP_TYPE: string | null;
|
|
388
|
+
SAMP_ID: string | null;
|
|
389
|
+
SPEC_REF: string | null;
|
|
390
|
+
SPEC_DPTH: number | null;
|
|
391
|
+
CONS_INCN: string | null;
|
|
392
|
+
CONS_IVR: number | null;
|
|
393
|
+
CONS_INCF: number | null;
|
|
394
|
+
CONS_INCE: number | null;
|
|
395
|
+
CONS_INMV: number | null;
|
|
396
|
+
CONS_INSC: number | null;
|
|
397
|
+
CONS_CVRT: number | null;
|
|
398
|
+
CONS_CVLG: number | null;
|
|
399
|
+
CONS_TEMP: number | null;
|
|
400
|
+
CONS_REM: string | null;
|
|
401
|
+
FILE_FSET: string | null;
|
|
402
|
+
constructor(init?: Partial<CONS>);
|
|
403
|
+
}
|
|
404
|
+
declare class CORE extends AgsGroup {
|
|
405
|
+
static readonly code = "CORE";
|
|
406
|
+
LOCA_ID: string | null;
|
|
407
|
+
CORE_TOP: number | null;
|
|
408
|
+
CORE_BASE: number | null;
|
|
409
|
+
CORE_PREC: number | null;
|
|
410
|
+
CORE_SREC: number | null;
|
|
411
|
+
CORE_RQD: number | null;
|
|
412
|
+
CORE_DIAM: string | null;
|
|
413
|
+
CORE_REM: string | null;
|
|
414
|
+
CORE_DURN: string | null;
|
|
415
|
+
FILE_FSET: string | null;
|
|
416
|
+
constructor(init?: Partial<CORE>);
|
|
417
|
+
}
|
|
418
|
+
declare class DCPG extends AgsGroup {
|
|
419
|
+
static readonly code = "DCPG";
|
|
420
|
+
LOCA_ID: string | null;
|
|
421
|
+
DCPG_DATE: Date | null;
|
|
422
|
+
DCPG_TESN: string | null;
|
|
423
|
+
DCPG_DPTH: number | null;
|
|
424
|
+
DCPG_ZERO: number | null;
|
|
425
|
+
DCPG_LREM: string | null;
|
|
426
|
+
DCPG_REM: string | null;
|
|
427
|
+
DCPG_ENV: string | null;
|
|
428
|
+
DCPG_METH: string | null;
|
|
429
|
+
DCPG_CONT: string | null;
|
|
430
|
+
DCPG_CRED: string | null;
|
|
431
|
+
TEST_STAT: string | null;
|
|
432
|
+
FILE_FSET: string | null;
|
|
433
|
+
dcpts: DCPT[];
|
|
434
|
+
constructor(init?: Partial<DCPG>);
|
|
435
|
+
}
|
|
436
|
+
declare class DCPT extends AgsGroup {
|
|
437
|
+
static readonly code = "DCPT";
|
|
438
|
+
LOCA_ID: string | null;
|
|
439
|
+
DCPG_DATE: Date | null;
|
|
440
|
+
DCPG_TESN: string | null;
|
|
441
|
+
DCPG_DPTH: number | null;
|
|
442
|
+
DCPT_CBLO: number | null;
|
|
443
|
+
DCPT_PEN: number | null;
|
|
444
|
+
DCPT_DEL: string | null;
|
|
445
|
+
DCPT_REM: string | null;
|
|
446
|
+
constructor(init?: Partial<DCPT>);
|
|
447
|
+
}
|
|
448
|
+
declare class DETL extends AgsGroup {
|
|
449
|
+
static readonly code = "DETL";
|
|
450
|
+
LOCA_ID: string | null;
|
|
451
|
+
DETL_TOP: number | null;
|
|
452
|
+
DETL_BASE: number | null;
|
|
453
|
+
DETL_DESC: string | null;
|
|
454
|
+
DETL_REM: string | null;
|
|
455
|
+
FILE_FSET: string | null;
|
|
456
|
+
constructor(init?: Partial<DETL>);
|
|
457
|
+
}
|
|
458
|
+
declare class DICT extends AgsGroup {
|
|
459
|
+
static readonly code = "DICT";
|
|
460
|
+
DICT_TYPE: string | null;
|
|
461
|
+
DICT_GRP: string | null;
|
|
462
|
+
DICT_HDNG: string | null;
|
|
463
|
+
DICT_STAT: string | null;
|
|
464
|
+
DICT_DTYP: string | null;
|
|
465
|
+
DICT_DESC: string | null;
|
|
466
|
+
DICT_UNIT: string | null;
|
|
467
|
+
DICT_EXMP: string | null;
|
|
468
|
+
DICT_PGRP: string | null;
|
|
469
|
+
DICT_REM: string | null;
|
|
470
|
+
FILE_FSET: string | null;
|
|
471
|
+
constructor(init?: Partial<DICT>);
|
|
472
|
+
}
|
|
473
|
+
declare class DISC extends AgsGroup {
|
|
474
|
+
static readonly code = "DISC";
|
|
475
|
+
LOCA_ID: string | null;
|
|
476
|
+
DISC_TOP: number | null;
|
|
477
|
+
DISC_BASE: number | null;
|
|
478
|
+
FRAC_SET: string | null;
|
|
479
|
+
DISC_NUMB: string | null;
|
|
480
|
+
DISC_TYPE: string | null;
|
|
481
|
+
DISC_DIP: number | null;
|
|
482
|
+
DISC_DIR: number | null;
|
|
483
|
+
DISC_RGH: string | null;
|
|
484
|
+
DISC_PLAN: string | null;
|
|
485
|
+
DISC_WAVE: number | null;
|
|
486
|
+
DISC_AMP: number | null;
|
|
487
|
+
DISC_JRC: number | null;
|
|
488
|
+
DISC_APP: string | null;
|
|
489
|
+
DISC_APT: number | null;
|
|
490
|
+
DISC_APOB: string | null;
|
|
491
|
+
DISC_INFM: string | null;
|
|
492
|
+
DISC_TERM: string | null;
|
|
493
|
+
DISC_PERS: number | null;
|
|
494
|
+
DISC_STR: number | null;
|
|
495
|
+
DISC_WETH: string | null;
|
|
496
|
+
DISC_SEEP: string | null;
|
|
497
|
+
DISC_FLOW: number | null;
|
|
498
|
+
DISC_REM: string | null;
|
|
499
|
+
FILE_FSET: string | null;
|
|
500
|
+
constructor(init?: Partial<DISC>);
|
|
501
|
+
}
|
|
502
|
+
declare class DOBS extends AgsGroup {
|
|
503
|
+
static readonly code = "DOBS";
|
|
504
|
+
LOCA_ID: string | null;
|
|
505
|
+
DOBS_TOP: number | null;
|
|
506
|
+
DOBS_BASE: number | null;
|
|
507
|
+
DOBS_SET: string | null;
|
|
508
|
+
DOBS_DURN: string | null;
|
|
509
|
+
DOBS_STIM: Date | null;
|
|
510
|
+
DOBS_ETIM: Date | null;
|
|
511
|
+
DOBS_DHRT: number | null;
|
|
512
|
+
DOBS_DHRS: number | null;
|
|
513
|
+
DOBS_PENR: number | null;
|
|
514
|
+
DOBS_HAMM: boolean | null;
|
|
515
|
+
DOBS_THRP: number | null;
|
|
516
|
+
DOBS_RESP: number | null;
|
|
517
|
+
DOBS_TORP: number | null;
|
|
518
|
+
DOBS_TORQ: number | null;
|
|
519
|
+
DOBS_THST: number | null;
|
|
520
|
+
DOBS_REST: number | null;
|
|
521
|
+
DOBS_HAMP: number | null;
|
|
522
|
+
DOBS_SPEN: number | null;
|
|
523
|
+
DOBS_FMPO: number | null;
|
|
524
|
+
DOBS_FMCR: number | null;
|
|
525
|
+
DOBS_FMRR: number | null;
|
|
526
|
+
DOBS_REM: string | null;
|
|
527
|
+
FILE_FSET: string | null;
|
|
528
|
+
constructor(init?: Partial<DOBS>);
|
|
529
|
+
}
|
|
530
|
+
declare class DPRB extends AgsGroup {
|
|
531
|
+
static readonly code = "DPRB";
|
|
532
|
+
LOCA_ID: string | null;
|
|
533
|
+
DPRG_TESN: string | null;
|
|
534
|
+
DPRB_DPTH: number | null;
|
|
535
|
+
DPRB_BLOW: number | null;
|
|
536
|
+
DPRB_CBLW: number | null;
|
|
537
|
+
DPRB_TORQ: number | null;
|
|
538
|
+
DPRB_DEL: string | null;
|
|
539
|
+
DPRB_INC: number | null;
|
|
540
|
+
DPRB_REM: string | null;
|
|
541
|
+
FILE_FSET: string | null;
|
|
542
|
+
constructor(init?: Partial<DPRB>);
|
|
543
|
+
}
|
|
544
|
+
declare class DPRG extends AgsGroup {
|
|
545
|
+
static readonly code = "DPRG";
|
|
546
|
+
LOCA_ID: string | null;
|
|
547
|
+
DPRG_TESN: string | null;
|
|
548
|
+
DPRG_DATE: Date | null;
|
|
549
|
+
DPRG_TYPE: string | null;
|
|
550
|
+
DPRG_METH: string | null;
|
|
551
|
+
DPRG_MASS: number | null;
|
|
552
|
+
DPRG_DROP: number | null;
|
|
553
|
+
DPRG_CONE: number | null;
|
|
554
|
+
DPRG_ROD: number | null;
|
|
555
|
+
DPRG_TANV: string | null;
|
|
556
|
+
DPRG_DAMP: string | null;
|
|
557
|
+
DPRG_TIP: number | null;
|
|
558
|
+
DPRG_REM: string | null;
|
|
559
|
+
DPRG_ANG: number | null;
|
|
560
|
+
DPRG_RMSS: number | null;
|
|
561
|
+
DPRG_PARF: string | null;
|
|
562
|
+
DPRG_PDIU: string | null;
|
|
563
|
+
DPRG_BCF: string | null;
|
|
564
|
+
DPRG_GW: number | null;
|
|
565
|
+
DPRG_REET: string | null;
|
|
566
|
+
DPRG_ENV: string | null;
|
|
567
|
+
DPRG_CONT: string | null;
|
|
568
|
+
DPRG_CRED: string | null;
|
|
569
|
+
TEST_STAT: string | null;
|
|
570
|
+
FILE_FSET: string | null;
|
|
571
|
+
dprbs: DPRB[];
|
|
572
|
+
constructor(init?: Partial<DPRG>);
|
|
573
|
+
}
|
|
574
|
+
declare class DREM extends AgsGroup {
|
|
575
|
+
static readonly code = "DREM";
|
|
576
|
+
LOCA_ID: string | null;
|
|
577
|
+
DREM_TOP: number | null;
|
|
578
|
+
DREM_BASE: number | null;
|
|
579
|
+
DREM_REM: string | null;
|
|
580
|
+
FILE_FSET: string | null;
|
|
581
|
+
constructor(init?: Partial<DREM>);
|
|
582
|
+
}
|
|
583
|
+
declare class ECTN extends AgsGroup {
|
|
584
|
+
static readonly code = "ECTN";
|
|
585
|
+
LOCA_ID: string | null;
|
|
586
|
+
SAMP_TOP: number | null;
|
|
587
|
+
SAMP_TYPE: string | null;
|
|
588
|
+
SAMP_ID: string | null;
|
|
589
|
+
SAMP_REF: string | null;
|
|
590
|
+
ECTN_ID: string | null;
|
|
591
|
+
ECTN_REM: string | null;
|
|
592
|
+
constructor(init?: Partial<ECTN>);
|
|
593
|
+
}
|
|
594
|
+
declare class ERES extends AgsGroup {
|
|
595
|
+
static readonly code = "ERES";
|
|
596
|
+
LOCA_ID: string | null;
|
|
597
|
+
SAMP_TOP: number | null;
|
|
598
|
+
SAMP_REF: string | null;
|
|
599
|
+
SAMP_TYPE: string | null;
|
|
600
|
+
SAMP_ID: string | null;
|
|
601
|
+
SPEC_REF: string | null;
|
|
602
|
+
SPEC_DPTH: number | null;
|
|
603
|
+
ERES_CODE: string | null;
|
|
604
|
+
ERES_METH: string | null;
|
|
605
|
+
ERES_MATX: string | null;
|
|
606
|
+
ERES_RTYP: string | null;
|
|
607
|
+
ERES_TESN: string | null;
|
|
608
|
+
ERES_NAME: string | null;
|
|
609
|
+
ERES_TNAM: string | null;
|
|
610
|
+
ERES_RVAL: number | null;
|
|
611
|
+
ERES_RUNI: string | null;
|
|
612
|
+
ERES_RTXT: string | null;
|
|
613
|
+
ERES_RTCD: string | null;
|
|
614
|
+
ERES_RRES: boolean | null;
|
|
615
|
+
ERES_DETF: boolean | null;
|
|
616
|
+
ERES_ORG: boolean | null;
|
|
617
|
+
ERES_IQLF: string | null;
|
|
618
|
+
ERES_LQLF: string | null;
|
|
619
|
+
ERES_RDLM: number | null;
|
|
620
|
+
ERES_MDLM: number | null;
|
|
621
|
+
ERES_QLM: number | null;
|
|
622
|
+
ERES_DUNI: string | null;
|
|
623
|
+
ERES_TICP: number | null;
|
|
624
|
+
ERES_TICT: number | null;
|
|
625
|
+
ERES_RDAT: Date | null;
|
|
626
|
+
ERES_SGRP: string | null;
|
|
627
|
+
SPEC_PREP: string | null;
|
|
628
|
+
SPEC_DESC: string | null;
|
|
629
|
+
ERES_DTIM: Date | null;
|
|
630
|
+
ERES_TEST: string | null;
|
|
631
|
+
ERES_TORD: string | null;
|
|
632
|
+
ERES_LOCN: string | null;
|
|
633
|
+
ERES_BAS: string | null;
|
|
634
|
+
ERES_DIL: number | null;
|
|
635
|
+
ERES_LMTH: string | null;
|
|
636
|
+
ERES_LDTM: Date | null;
|
|
637
|
+
ERES_IREF: string | null;
|
|
638
|
+
ERES_SIZE: number | null;
|
|
639
|
+
ERES_PERP: number | null;
|
|
640
|
+
ERES_REM: string | null;
|
|
641
|
+
ERES_LAB: string | null;
|
|
642
|
+
ERES_CRED: string | null;
|
|
643
|
+
TEST_STAT: string | null;
|
|
644
|
+
FILE_FSET: string | null;
|
|
645
|
+
constructor(init?: Partial<ERES>);
|
|
646
|
+
}
|
|
647
|
+
declare class FLSH extends AgsGroup {
|
|
648
|
+
static readonly code = "FLSH";
|
|
649
|
+
LOCA_ID: string | null;
|
|
650
|
+
FLSH_TOP: number | null;
|
|
651
|
+
FLSH_BASE: number | null;
|
|
652
|
+
FLSH_TYPE: string | null;
|
|
653
|
+
FLSH_RETN: number | null;
|
|
654
|
+
FLSH_RETX: number | null;
|
|
655
|
+
FLSH_COL: string | null;
|
|
656
|
+
FLSH_REM: string | null;
|
|
657
|
+
FILE_FSET: string | null;
|
|
658
|
+
constructor(init?: Partial<FLSH>);
|
|
659
|
+
}
|
|
660
|
+
declare class FRAC extends AgsGroup {
|
|
661
|
+
static readonly code = "FRAC";
|
|
662
|
+
LOCA_ID: string | null;
|
|
663
|
+
FRAC_FROM: number | null;
|
|
664
|
+
FRAC_TO: number | null;
|
|
665
|
+
FRAC_SET: string | null;
|
|
666
|
+
FRAC_IMAX: number | null;
|
|
667
|
+
FRAC_IAVE: number | null;
|
|
668
|
+
FRAC_IMIN: string | null;
|
|
669
|
+
FRAC_FI: string | null;
|
|
670
|
+
FRAC_REM: string | null;
|
|
671
|
+
FILE_FSET: string | null;
|
|
672
|
+
constructor(init?: Partial<FRAC>);
|
|
673
|
+
}
|
|
674
|
+
declare class GCHM extends AgsGroup {
|
|
675
|
+
static readonly code = "GCHM";
|
|
676
|
+
LOCA_ID: string | null;
|
|
677
|
+
SAMP_TOP: number | null;
|
|
678
|
+
SAMP_REF: string | null;
|
|
679
|
+
SAMP_TYPE: string | null;
|
|
680
|
+
SAMP_ID: string | null;
|
|
681
|
+
SPEC_REF: string | null;
|
|
682
|
+
SPEC_DPTH: number | null;
|
|
683
|
+
GCHM_CODE: string | null;
|
|
684
|
+
GCHM_METH: string | null;
|
|
685
|
+
GCHM_TTYP: string | null;
|
|
686
|
+
GCHM_RESL: string | null;
|
|
687
|
+
GCHM_UNIT: string | null;
|
|
688
|
+
GCHM_NAME: string | null;
|
|
689
|
+
SPEC_DESC: string | null;
|
|
690
|
+
SPEC_PREP: string | null;
|
|
691
|
+
GCHM_REM: string | null;
|
|
692
|
+
GCHM_LAB: string | null;
|
|
693
|
+
GCHM_CRED: string | null;
|
|
694
|
+
TEST_STAT: string | null;
|
|
695
|
+
FILE_FSET: string | null;
|
|
696
|
+
GCHM_DLM: number | null;
|
|
697
|
+
constructor(init?: Partial<GCHM>);
|
|
698
|
+
}
|
|
699
|
+
declare class GEOL extends AgsGroup {
|
|
700
|
+
static readonly code = "GEOL";
|
|
701
|
+
LOCA_ID: string | null;
|
|
702
|
+
GEOL_TOP: number | null;
|
|
703
|
+
GEOL_BASE: number | null;
|
|
704
|
+
GEOL_DESC: string | null;
|
|
705
|
+
GEOL_LEG: string | null;
|
|
706
|
+
GEOL_GEOL: string | null;
|
|
707
|
+
GEOL_GEO2: string | null;
|
|
708
|
+
GEOL_STAT: string | null;
|
|
709
|
+
GEOL_REM: string | null;
|
|
710
|
+
GEOL_BGS: string | null;
|
|
711
|
+
GEOL_FORM: string | null;
|
|
712
|
+
FILE_FSET: string | null;
|
|
713
|
+
constructor(init?: Partial<GEOL>);
|
|
714
|
+
}
|
|
715
|
+
declare class GRAG extends AgsGroup {
|
|
716
|
+
static readonly code = "GRAG";
|
|
717
|
+
LOCA_ID: string | null;
|
|
718
|
+
SAMP_TOP: number | null;
|
|
719
|
+
SAMP_REF: string | null;
|
|
720
|
+
SAMP_TYPE: string | null;
|
|
721
|
+
SAMP_ID: string | null;
|
|
722
|
+
SPEC_REF: string | null;
|
|
723
|
+
SPEC_DPTH: number | null;
|
|
724
|
+
SPEC_DESC: string | null;
|
|
725
|
+
SPEC_PREP: string | null;
|
|
726
|
+
GRAG_UC: number | null;
|
|
727
|
+
GRAG_VCRE: number | null;
|
|
728
|
+
GRAG_GRAV: number | null;
|
|
729
|
+
GRAG_SAND: number | null;
|
|
730
|
+
GRAG_SILT: number | null;
|
|
731
|
+
GRAG_CLAY: number | null;
|
|
732
|
+
GRAG_FINE: number | null;
|
|
733
|
+
GRAG_REM: string | null;
|
|
734
|
+
GRAG_METH: string | null;
|
|
735
|
+
GRAG_LAB: string | null;
|
|
736
|
+
GRAG_CRED: string | null;
|
|
737
|
+
TEST_STAT: string | null;
|
|
738
|
+
FILE_FSET: string | null;
|
|
739
|
+
grats: GRAT[];
|
|
740
|
+
constructor(init?: Partial<GRAG>);
|
|
741
|
+
}
|
|
742
|
+
declare class GRAT extends AgsGroup {
|
|
743
|
+
static readonly code = "GRAT";
|
|
744
|
+
LOCA_ID: string | null;
|
|
745
|
+
SAMP_TOP: number | null;
|
|
746
|
+
SAMP_REF: string | null;
|
|
747
|
+
SAMP_TYPE: string | null;
|
|
748
|
+
SAMP_ID: string | null;
|
|
749
|
+
SPEC_REF: string | null;
|
|
750
|
+
SPEC_DPTH: number | null;
|
|
751
|
+
GRAT_SIZE: number | null;
|
|
752
|
+
GRAT_PERP: number | null;
|
|
753
|
+
GRAT_TYPE: string | null;
|
|
754
|
+
GRAT_REM: string | null;
|
|
755
|
+
FILE_FSET: string | null;
|
|
756
|
+
constructor(init?: Partial<GRAT>);
|
|
757
|
+
}
|
|
758
|
+
declare class HDIA extends AgsGroup {
|
|
759
|
+
static readonly code = "HDIA";
|
|
760
|
+
LOCA_ID: string | null;
|
|
761
|
+
HDIA_DPTH: number | null;
|
|
762
|
+
HDIA_DIAM: number | null;
|
|
763
|
+
HDIA_REM: string | null;
|
|
764
|
+
FILE_FSET: string | null;
|
|
765
|
+
constructor(init?: Partial<HDIA>);
|
|
766
|
+
}
|
|
767
|
+
declare class HDPH extends AgsGroup {
|
|
768
|
+
static readonly code = "HDPH";
|
|
769
|
+
LOCA_ID: string | null;
|
|
770
|
+
HDPH_TOP: number | null;
|
|
771
|
+
HDPH_BASE: number | null;
|
|
772
|
+
HDPH_TYPE: string | null;
|
|
773
|
+
HDPH_STAR: Date | null;
|
|
774
|
+
HDPH_ENDD: Date | null;
|
|
775
|
+
HDPH_CREW: string | null;
|
|
776
|
+
HDPH_EXC: string | null;
|
|
777
|
+
HDPH_SHOR: string | null;
|
|
778
|
+
HDPH_STAB: string | null;
|
|
779
|
+
HDPH_DIML: number | null;
|
|
780
|
+
HDPH_DIMW: number | null;
|
|
781
|
+
HDPH_DBIT: string | null;
|
|
782
|
+
HDPH_BCON: string | null;
|
|
783
|
+
HDPH_BTYP: string | null;
|
|
784
|
+
HDPH_BLEN: number | null;
|
|
785
|
+
HDPH_LOG: string | null;
|
|
786
|
+
HDPH_LOGD: Date | null;
|
|
787
|
+
HDPH_REM: string | null;
|
|
788
|
+
HDPH_ENV: string | null;
|
|
789
|
+
HDPH_METH: string | null;
|
|
790
|
+
HDPH_CONT: string | null;
|
|
791
|
+
FILE_FSET: string | null;
|
|
792
|
+
constructor(init?: Partial<HDPH>);
|
|
793
|
+
}
|
|
794
|
+
declare class HORN extends AgsGroup {
|
|
795
|
+
static readonly code = "HORN";
|
|
796
|
+
LOCA_ID: string | null;
|
|
797
|
+
HORN_TOP: number | null;
|
|
798
|
+
HORN_BASE: number | null;
|
|
799
|
+
HORN_ORNT: number | null;
|
|
800
|
+
HORN_INCL: number | null;
|
|
801
|
+
HORN_REM: string | null;
|
|
802
|
+
FILE_FSET: string | null;
|
|
803
|
+
constructor(init?: Partial<HORN>);
|
|
804
|
+
}
|
|
805
|
+
declare class IPEN extends AgsGroup {
|
|
806
|
+
static readonly code = "IPEN";
|
|
807
|
+
LOCA_ID: string | null;
|
|
808
|
+
IPEN_DPTH: number | null;
|
|
809
|
+
IPEN_TESN: string | null;
|
|
810
|
+
IPEN_IPEN: string | null;
|
|
811
|
+
IPEN_DATE: Date | null;
|
|
812
|
+
IPEN_REM: string | null;
|
|
813
|
+
IPEN_ENV: string | null;
|
|
814
|
+
IPEN_METH: string | null;
|
|
815
|
+
IPEN_CONT: string | null;
|
|
816
|
+
IPEN_CRED: string | null;
|
|
817
|
+
TEST_STAT: string | null;
|
|
818
|
+
GEOL_STAT: string | null;
|
|
819
|
+
FILE_FSET: string | null;
|
|
820
|
+
constructor(init?: Partial<IPEN>);
|
|
821
|
+
}
|
|
822
|
+
declare class IPID extends AgsGroup {
|
|
823
|
+
static readonly code = "IPID";
|
|
824
|
+
LOCA_ID: string | null;
|
|
825
|
+
IPID_DPTH: number | null;
|
|
826
|
+
IPID_TESN: string | null;
|
|
827
|
+
IPID_DATE: Date | null;
|
|
828
|
+
IPID_TEMP: number | null;
|
|
829
|
+
IPID_RES: number | null;
|
|
830
|
+
IPID_REM: string | null;
|
|
831
|
+
IPID_ENV: string | null;
|
|
832
|
+
IPID_METH: string | null;
|
|
833
|
+
IPID_CONT: string | null;
|
|
834
|
+
IPID_CRED: string | null;
|
|
835
|
+
TEST_STAT: string | null;
|
|
836
|
+
GEOL_STAT: string | null;
|
|
837
|
+
FILE_FSET: string | null;
|
|
838
|
+
constructor(init?: Partial<IPID>);
|
|
839
|
+
}
|
|
840
|
+
declare class IPRG extends AgsGroup {
|
|
841
|
+
static readonly code = "IPRG";
|
|
842
|
+
LOCA_ID: string | null;
|
|
843
|
+
IPRG_TOP: number | null;
|
|
844
|
+
IPRG_TESN: string | null;
|
|
845
|
+
IPRG_BASE: number | null;
|
|
846
|
+
IPRG_STG: number | null;
|
|
847
|
+
IPRG_TYPE: string | null;
|
|
848
|
+
IPRG_PRWL: string | null;
|
|
849
|
+
IPRG_SWAL: string | null;
|
|
850
|
+
IPRG_TDIA: number | null;
|
|
851
|
+
IPRG_SDIA: number | null;
|
|
852
|
+
IPRG_IPRM: number | null;
|
|
853
|
+
IPRG_FLOW: number | null;
|
|
854
|
+
IPRG_AWL: number | null;
|
|
855
|
+
IPRG_HEAD: number | null;
|
|
856
|
+
IPRG_DATE: Date | null;
|
|
857
|
+
IPRG_REM: string | null;
|
|
858
|
+
IPRG_ENV: string | null;
|
|
859
|
+
IPRG_METH: string | null;
|
|
860
|
+
IPRG_CONT: string | null;
|
|
861
|
+
IPRG_CRED: string | null;
|
|
862
|
+
TEST_STAT: string | null;
|
|
863
|
+
FILE_FSET: string | null;
|
|
864
|
+
constructor(init?: Partial<IPRG>);
|
|
865
|
+
}
|
|
866
|
+
declare class IPRT extends AgsGroup {
|
|
867
|
+
static readonly code = "IPRT";
|
|
868
|
+
LOCA_ID: string | null;
|
|
869
|
+
IPRG_TOP: number | null;
|
|
870
|
+
IPRG_TESN: string | null;
|
|
871
|
+
IPRG_BASE: number | null;
|
|
872
|
+
IPRG_STG: number | null;
|
|
873
|
+
IPRT_TIME: string | null;
|
|
874
|
+
IPRT_DPTH: string | null;
|
|
875
|
+
IPRT_REM: string | null;
|
|
876
|
+
FILE_FSET: string | null;
|
|
877
|
+
constructor(init?: Partial<IPRT>);
|
|
878
|
+
}
|
|
879
|
+
declare class ISAG extends AgsGroup {
|
|
880
|
+
static readonly code = "ISAG";
|
|
881
|
+
LOCA_ID: string | null;
|
|
882
|
+
ISAG_TESN: string | null;
|
|
883
|
+
ISAG_DATE: Date | null;
|
|
884
|
+
ISAG_DURN: string | null;
|
|
885
|
+
ISAG_PWID: number | null;
|
|
886
|
+
ISAG_PLEN: number | null;
|
|
887
|
+
ISAG_PDIA: number | null;
|
|
888
|
+
ISAG_DPTS: number | null;
|
|
889
|
+
ISAG_DPTE: number | null;
|
|
890
|
+
ISAG_CONS: string | null;
|
|
891
|
+
ISAG_SI: number | null;
|
|
892
|
+
ISAG_PORO: number | null;
|
|
893
|
+
ISAG_REM: string | null;
|
|
894
|
+
ISAG_ENV: string | null;
|
|
895
|
+
ISAG_METH: string | null;
|
|
896
|
+
ISAG_CONT: string | null;
|
|
897
|
+
ISAG_CRED: string | null;
|
|
898
|
+
TEST_STAT: string | null;
|
|
899
|
+
FILE_FSET: string | null;
|
|
900
|
+
isats: ISAT[];
|
|
901
|
+
constructor(init?: Partial<ISAG>);
|
|
902
|
+
}
|
|
903
|
+
declare class ISAT extends AgsGroup {
|
|
904
|
+
static readonly code = "ISAT";
|
|
905
|
+
LOCA_ID: string | null;
|
|
906
|
+
ISAG_TESN: string | null;
|
|
907
|
+
ISAT_TIME: string | null;
|
|
908
|
+
ISAT_DPTH: string | null;
|
|
909
|
+
ISAT_REM: string | null;
|
|
910
|
+
FILE_FSET: string | null;
|
|
911
|
+
constructor(init?: Partial<ISAT>);
|
|
912
|
+
}
|
|
913
|
+
declare class ISPT extends AgsGroup {
|
|
914
|
+
static readonly code = "ISPT";
|
|
915
|
+
LOCA_ID: string | null;
|
|
916
|
+
ISPT_TOP: number | null;
|
|
917
|
+
ISPT_SEAT: number | null;
|
|
918
|
+
ISPT_MAIN: number | null;
|
|
919
|
+
ISPT_NPEN: number | null;
|
|
920
|
+
ISPT_NVAL: number | null;
|
|
921
|
+
ISPT_REP: string | null;
|
|
922
|
+
ISPT_CAS: number | null;
|
|
923
|
+
ISPT_WAT: string | null;
|
|
924
|
+
ISPT_TYPE: string | null;
|
|
925
|
+
ISPT_HAM: string | null;
|
|
926
|
+
ISPT_ERAT: number | null;
|
|
927
|
+
ISPT_SWP: number | null;
|
|
928
|
+
ISPT_INC1: number | null;
|
|
929
|
+
ISPT_INC2: number | null;
|
|
930
|
+
ISPT_INC3: number | null;
|
|
931
|
+
ISPT_INC4: number | null;
|
|
932
|
+
ISPT_INC5: number | null;
|
|
933
|
+
ISPT_INC6: number | null;
|
|
934
|
+
ISPT_PEN1: number | null;
|
|
935
|
+
ISPT_PEN2: number | null;
|
|
936
|
+
ISPT_PEN3: number | null;
|
|
937
|
+
ISPT_PEN4: number | null;
|
|
938
|
+
ISPT_PEN5: number | null;
|
|
939
|
+
ISPT_PEN6: number | null;
|
|
940
|
+
ISPT_ROCK: boolean | null;
|
|
941
|
+
ISPT_REM: string | null;
|
|
942
|
+
ISPT_ENV: string | null;
|
|
943
|
+
ISPT_METH: string | null;
|
|
944
|
+
ISPT_CRED: string | null;
|
|
945
|
+
TEST_STAT: string | null;
|
|
946
|
+
FILE_FSET: string | null;
|
|
947
|
+
constructor(init?: Partial<ISPT>);
|
|
948
|
+
}
|
|
949
|
+
declare class IVAN extends AgsGroup {
|
|
950
|
+
static readonly code = "IVAN";
|
|
951
|
+
LOCA_ID: string | null;
|
|
952
|
+
IVAN_DPTH: number | null;
|
|
953
|
+
IVAN_TESN: string | null;
|
|
954
|
+
IVAN_TYPE: string | null;
|
|
955
|
+
IVAN_IVAN: string | null;
|
|
956
|
+
IVAN_IVAR: string | null;
|
|
957
|
+
IVAN_DATE: Date | null;
|
|
958
|
+
IVAN_REM: string | null;
|
|
959
|
+
IVAN_ENV: string | null;
|
|
960
|
+
IVAN_METH: string | null;
|
|
961
|
+
IVAN_CONT: string | null;
|
|
962
|
+
IVAN_CRED: string | null;
|
|
963
|
+
TEST_STAT: string | null;
|
|
964
|
+
GEOL_STAT: string | null;
|
|
965
|
+
FILE_FSET: string | null;
|
|
966
|
+
constructor(init?: Partial<IVAN>);
|
|
967
|
+
}
|
|
968
|
+
declare class LBSG extends AgsGroup {
|
|
969
|
+
static readonly code = "LBSG";
|
|
970
|
+
LBSG_REF: string | null;
|
|
971
|
+
LBSG_DATE: Date | null;
|
|
972
|
+
LBSG_FROM: string | null;
|
|
973
|
+
LBSG_TO: string | null;
|
|
974
|
+
LBSG_DUE: Date | null;
|
|
975
|
+
LBSG_REM: string | null;
|
|
976
|
+
LBSG_STAT: string | null;
|
|
977
|
+
FILE_FSET: string | null;
|
|
978
|
+
LBSG_TYPE: string | null;
|
|
979
|
+
lbsts: LBST[];
|
|
980
|
+
constructor(init?: Partial<LBSG>);
|
|
981
|
+
}
|
|
982
|
+
declare class LBST extends AgsGroup {
|
|
983
|
+
static readonly code = "LBST";
|
|
984
|
+
LOCA_ID: string | null;
|
|
985
|
+
SAMP_TOP: number | null;
|
|
986
|
+
SAMP_REF: string | null;
|
|
987
|
+
SAMP_TYPE: string | null;
|
|
988
|
+
SAMP_ID: string | null;
|
|
989
|
+
LBSG_REF: string | null;
|
|
990
|
+
LBST_TEST: string | null;
|
|
991
|
+
CHOC_REF: string | null;
|
|
992
|
+
LBST_TTYP: string | null;
|
|
993
|
+
LBST_METH: string | null;
|
|
994
|
+
LBST_PREP: string | null;
|
|
995
|
+
LBST_DEPN: string | null;
|
|
996
|
+
LBST_STAT: string | null;
|
|
997
|
+
LBST_REM: string | null;
|
|
998
|
+
LBST_DUE: Date | null;
|
|
999
|
+
LBST_DETL: string | null;
|
|
1000
|
+
LBST_DONE: Date | null;
|
|
1001
|
+
FILE_FSET: string | null;
|
|
1002
|
+
LBST_TCNT: number | null;
|
|
1003
|
+
constructor(init?: Partial<LBST>);
|
|
1004
|
+
}
|
|
1005
|
+
declare class LDEN extends AgsGroup {
|
|
1006
|
+
static readonly code = "LDEN";
|
|
1007
|
+
LOCA_ID: string | null;
|
|
1008
|
+
SAMP_TOP: number | null;
|
|
1009
|
+
SAMP_REF: string | null;
|
|
1010
|
+
SAMP_TYPE: string | null;
|
|
1011
|
+
SAMP_ID: string | null;
|
|
1012
|
+
SPEC_REF: string | null;
|
|
1013
|
+
SPEC_DPTH: number | null;
|
|
1014
|
+
SPEC_DESC: string | null;
|
|
1015
|
+
SPEC_PREP: string | null;
|
|
1016
|
+
LDEN_TYPE: string | null;
|
|
1017
|
+
LDEN_COND: string | null;
|
|
1018
|
+
LDEN_SMTY: string | null;
|
|
1019
|
+
LDEN_MC: number | null;
|
|
1020
|
+
LDEN_BDEN: number | null;
|
|
1021
|
+
LDEN_DDEN: number | null;
|
|
1022
|
+
LDEN_REM: string | null;
|
|
1023
|
+
LDEN_METH: string | null;
|
|
1024
|
+
LDEN_LAB: string | null;
|
|
1025
|
+
LDEN_CRED: string | null;
|
|
1026
|
+
TEST_STAT: string | null;
|
|
1027
|
+
FILE_FSET: string | null;
|
|
1028
|
+
constructor(init?: Partial<LDEN>);
|
|
1029
|
+
}
|
|
1030
|
+
declare class LLIN extends AgsGroup {
|
|
1031
|
+
static readonly code = "LLIN";
|
|
1032
|
+
LOCA_ID: string | null;
|
|
1033
|
+
SAMP_TOP: number | null;
|
|
1034
|
+
SAMP_REF: string | null;
|
|
1035
|
+
SAMP_TYPE: string | null;
|
|
1036
|
+
SAMP_ID: string | null;
|
|
1037
|
+
SPEC_REF: string | null;
|
|
1038
|
+
SPEC_DPTH: number | null;
|
|
1039
|
+
SPEC_DESC: string | null;
|
|
1040
|
+
SPEC_PREP: string | null;
|
|
1041
|
+
LLIN_LS: number | null;
|
|
1042
|
+
LLIN_425: number | null;
|
|
1043
|
+
LLIN_PREP: string | null;
|
|
1044
|
+
LLIN_REM: string | null;
|
|
1045
|
+
LLIN_METH: string | null;
|
|
1046
|
+
LLIN_LAB: string | null;
|
|
1047
|
+
LLIN_CRED: string | null;
|
|
1048
|
+
TEST_STAT: string | null;
|
|
1049
|
+
FILE_FSET: string | null;
|
|
1050
|
+
constructor(init?: Partial<LLIN>);
|
|
1051
|
+
}
|
|
1052
|
+
declare class LLPL extends AgsGroup {
|
|
1053
|
+
static readonly code = "LLPL";
|
|
1054
|
+
LOCA_ID: string | null;
|
|
1055
|
+
SAMP_TOP: number | null;
|
|
1056
|
+
SAMP_REF: string | null;
|
|
1057
|
+
SAMP_TYPE: string | null;
|
|
1058
|
+
SAMP_ID: string | null;
|
|
1059
|
+
SPEC_REF: string | null;
|
|
1060
|
+
SPEC_DPTH: number | null;
|
|
1061
|
+
SPEC_DESC: string | null;
|
|
1062
|
+
LLPL_LL: number | null;
|
|
1063
|
+
LLPL_PL: number | null;
|
|
1064
|
+
LLPL_PI: number | null;
|
|
1065
|
+
LLPL_METH: string | null;
|
|
1066
|
+
LLPL_REM: string | null;
|
|
1067
|
+
SPEC_PREP: string | null;
|
|
1068
|
+
LLPL_425: number | null;
|
|
1069
|
+
LLPL_PREP: string | null;
|
|
1070
|
+
LLPL_STAB: number | null;
|
|
1071
|
+
LLPL_STYP: string | null;
|
|
1072
|
+
LLPL_LAB: string | null;
|
|
1073
|
+
LLPL_CRED: string | null;
|
|
1074
|
+
TEST_STAT: string | null;
|
|
1075
|
+
FILE_FSET: string | null;
|
|
1076
|
+
constructor(init?: Partial<LLPL>);
|
|
1077
|
+
}
|
|
1078
|
+
declare class LNMC extends AgsGroup {
|
|
1079
|
+
static readonly code = "LNMC";
|
|
1080
|
+
LOCA_ID: string | null;
|
|
1081
|
+
SAMP_TOP: number | null;
|
|
1082
|
+
SAMP_REF: string | null;
|
|
1083
|
+
SAMP_TYPE: string | null;
|
|
1084
|
+
SAMP_ID: string | null;
|
|
1085
|
+
SPEC_REF: string | null;
|
|
1086
|
+
SPEC_DPTH: number | null;
|
|
1087
|
+
SPEC_DESC: string | null;
|
|
1088
|
+
SPEC_PREP: string | null;
|
|
1089
|
+
LNMC_MC: number | null;
|
|
1090
|
+
LNMC_TEMP: number | null;
|
|
1091
|
+
LNMC_STAB: number | null;
|
|
1092
|
+
LNMC_STYP: string | null;
|
|
1093
|
+
LNMC_ISNT: boolean | null;
|
|
1094
|
+
LNMC_COMM: string | null;
|
|
1095
|
+
LNMC_REM: string | null;
|
|
1096
|
+
LNMC_METH: string | null;
|
|
1097
|
+
LNMC_LAB: string | null;
|
|
1098
|
+
LNMC_CRED: string | null;
|
|
1099
|
+
TEST_STAT: string | null;
|
|
1100
|
+
FILE_FSET: string | null;
|
|
1101
|
+
constructor(init?: Partial<LNMC>);
|
|
1102
|
+
}
|
|
1103
|
+
declare class LOCA extends AgsGroup {
|
|
1104
|
+
static readonly code = "LOCA";
|
|
1105
|
+
LOCA_ID: string | null;
|
|
1106
|
+
LOCA_TYPE: string | null;
|
|
1107
|
+
LOCA_STAT: string | null;
|
|
1108
|
+
LOCA_NATE: number | null;
|
|
1109
|
+
LOCA_NATN: number | null;
|
|
1110
|
+
LOCA_GREF: string | null;
|
|
1111
|
+
LOCA_GL: number | null;
|
|
1112
|
+
LOCA_LAT: number | null;
|
|
1113
|
+
LOCA_LON: number | null;
|
|
1114
|
+
LOCA_FDEP: number | null;
|
|
1115
|
+
LOCA_REM: string | null;
|
|
1116
|
+
LOCA_STAR: Date | null;
|
|
1117
|
+
LOCA_PURP: string | null;
|
|
1118
|
+
LOCA_TERM: string | null;
|
|
1119
|
+
LOCA_ENDD: Date | null;
|
|
1120
|
+
LOCA_LETT: string | null;
|
|
1121
|
+
LOCA_LOCX: number | null;
|
|
1122
|
+
LOCA_LOCY: number | null;
|
|
1123
|
+
LOCA_LOCZ: number | null;
|
|
1124
|
+
LOCA_LREF: string | null;
|
|
1125
|
+
LOCA_DATM: string | null;
|
|
1126
|
+
LOCA_ETRV: number | null;
|
|
1127
|
+
LOCA_NTRV: number | null;
|
|
1128
|
+
LOCA_LTRV: number | null;
|
|
1129
|
+
LOCA_XTRL: number | null;
|
|
1130
|
+
LOCA_YTRL: number | null;
|
|
1131
|
+
LOCA_ZTRL: number | null;
|
|
1132
|
+
LOCA_ELAT: string | null;
|
|
1133
|
+
LOCA_ELON: string | null;
|
|
1134
|
+
LOCA_LLZ: string | null;
|
|
1135
|
+
LOCA_LOCM: string | null;
|
|
1136
|
+
LOCA_LOCA: string | null;
|
|
1137
|
+
LOCA_CLST: string | null;
|
|
1138
|
+
LOCA_ALID: string | null;
|
|
1139
|
+
LOCA_OFFS: number | null;
|
|
1140
|
+
LOCA_CNGE: string | null;
|
|
1141
|
+
LOCA_TRAN: string | null;
|
|
1142
|
+
FILE_FSET: string | null;
|
|
1143
|
+
LOCA_CHKG: string | null;
|
|
1144
|
+
LOCA_APPG: string | null;
|
|
1145
|
+
bkfls: BKFL[];
|
|
1146
|
+
cdias: CDIA[];
|
|
1147
|
+
chiss: CHIS[];
|
|
1148
|
+
cores: CORE[];
|
|
1149
|
+
dcpgs: DCPG[];
|
|
1150
|
+
detls: DETL[];
|
|
1151
|
+
discs: DISC[];
|
|
1152
|
+
dobss: DOBS[];
|
|
1153
|
+
dprgs: DPRG[];
|
|
1154
|
+
drems: DREM[];
|
|
1155
|
+
flshs: FLSH[];
|
|
1156
|
+
fracs: FRAC[];
|
|
1157
|
+
geols: GEOL[];
|
|
1158
|
+
hdias: HDIA[];
|
|
1159
|
+
hdphs: HDPH[];
|
|
1160
|
+
horns: HORN[];
|
|
1161
|
+
ipens: IPEN[];
|
|
1162
|
+
ipids: IPID[];
|
|
1163
|
+
iprgs: IPRG[];
|
|
1164
|
+
iprts: IPRT[];
|
|
1165
|
+
isags: ISAG[];
|
|
1166
|
+
ispts: ISPT[];
|
|
1167
|
+
ivans: IVAN[];
|
|
1168
|
+
mongs: MONG[];
|
|
1169
|
+
pipes: PIPE[];
|
|
1170
|
+
pltgs: PLTG[];
|
|
1171
|
+
pmtgs: PMTG[];
|
|
1172
|
+
ptims: PTIM[];
|
|
1173
|
+
samps: SAMP[];
|
|
1174
|
+
scpgs: SCPG[];
|
|
1175
|
+
weths: WETH[];
|
|
1176
|
+
wstgs: WSTG[];
|
|
1177
|
+
constructor(init?: Partial<LOCA>);
|
|
1178
|
+
}
|
|
1179
|
+
declare class LPDN extends AgsGroup {
|
|
1180
|
+
static readonly code = "LPDN";
|
|
1181
|
+
LOCA_ID: string | null;
|
|
1182
|
+
SAMP_TOP: number | null;
|
|
1183
|
+
SAMP_REF: string | null;
|
|
1184
|
+
SAMP_TYPE: string | null;
|
|
1185
|
+
SAMP_ID: string | null;
|
|
1186
|
+
SPEC_REF: string | null;
|
|
1187
|
+
SPEC_DPTH: number | null;
|
|
1188
|
+
SPEC_DESC: string | null;
|
|
1189
|
+
SPEC_PREP: string | null;
|
|
1190
|
+
LPDN_PDEN: string | null;
|
|
1191
|
+
LPDN_TYPE: string | null;
|
|
1192
|
+
LPDN_REM: string | null;
|
|
1193
|
+
LPDN_METH: string | null;
|
|
1194
|
+
LPDN_LAB: string | null;
|
|
1195
|
+
LPDN_CRED: string | null;
|
|
1196
|
+
TEST_STAT: string | null;
|
|
1197
|
+
FILE_FSET: string | null;
|
|
1198
|
+
constructor(init?: Partial<LPDN>);
|
|
1199
|
+
}
|
|
1200
|
+
declare class LRES extends AgsGroup {
|
|
1201
|
+
static readonly code = "LRES";
|
|
1202
|
+
LOCA_ID: string | null;
|
|
1203
|
+
SAMP_TOP: number | null;
|
|
1204
|
+
SAMP_REF: string | null;
|
|
1205
|
+
SAMP_TYPE: string | null;
|
|
1206
|
+
SAMP_ID: string | null;
|
|
1207
|
+
SPEC_REF: string | null;
|
|
1208
|
+
SPEC_DPTH: number | null;
|
|
1209
|
+
SPEC_DESC: string | null;
|
|
1210
|
+
SPEC_PREP: string | null;
|
|
1211
|
+
LRES_BDEN: number | null;
|
|
1212
|
+
LRES_DDEN: number | null;
|
|
1213
|
+
LRES_MC: number | null;
|
|
1214
|
+
LRES_COND: string | null;
|
|
1215
|
+
LRES_LRES: number | null;
|
|
1216
|
+
LRES_CDIA: number | null;
|
|
1217
|
+
LRES_CCSA: number | null;
|
|
1218
|
+
LRES_CLEN: number | null;
|
|
1219
|
+
LRES_TEMP: number | null;
|
|
1220
|
+
LRES_ELEC: string | null;
|
|
1221
|
+
LRES_PENT: string | null;
|
|
1222
|
+
LRES_CSHP: string | null;
|
|
1223
|
+
LRES_WAT: number | null;
|
|
1224
|
+
LRES_WRES: number | null;
|
|
1225
|
+
LRES_PART: string | null;
|
|
1226
|
+
LRES_REM: string | null;
|
|
1227
|
+
LRES_METH: string | null;
|
|
1228
|
+
LRES_LAB: string | null;
|
|
1229
|
+
LRES_CRED: string | null;
|
|
1230
|
+
TEST_STAT: string | null;
|
|
1231
|
+
FILE_FSET: string | null;
|
|
1232
|
+
constructor(init?: Partial<LRES>);
|
|
1233
|
+
}
|
|
1234
|
+
declare class LVAN extends AgsGroup {
|
|
1235
|
+
static readonly code = "LVAN";
|
|
1236
|
+
LOCA_ID: string | null;
|
|
1237
|
+
SAMP_TOP: number | null;
|
|
1238
|
+
SAMP_REF: string | null;
|
|
1239
|
+
SAMP_TYPE: string | null;
|
|
1240
|
+
SAMP_ID: string | null;
|
|
1241
|
+
SPEC_REF: string | null;
|
|
1242
|
+
SPEC_DPTH: number | null;
|
|
1243
|
+
SPEC_DESC: string | null;
|
|
1244
|
+
SPEC_PREP: string | null;
|
|
1245
|
+
LVAN_VNPK: number | null;
|
|
1246
|
+
LVAN_VNRM: number | null;
|
|
1247
|
+
LVAN_MC: number | null;
|
|
1248
|
+
LVAN_SIZE: number | null;
|
|
1249
|
+
LVAN_VLEN: number | null;
|
|
1250
|
+
LVAN_REM: string | null;
|
|
1251
|
+
LVAN_METH: string | null;
|
|
1252
|
+
LVAN_LAB: string | null;
|
|
1253
|
+
LVAN_CRED: string | null;
|
|
1254
|
+
TEST_STAT: string | null;
|
|
1255
|
+
FILE_FSET: string | null;
|
|
1256
|
+
constructor(init?: Partial<LVAN>);
|
|
1257
|
+
}
|
|
1258
|
+
declare class MCVG extends AgsGroup {
|
|
1259
|
+
static readonly code = "MCVG";
|
|
1260
|
+
LOCA_ID: string | null;
|
|
1261
|
+
SAMP_TOP: number | null;
|
|
1262
|
+
SAMP_REF: string | null;
|
|
1263
|
+
SAMP_TYPE: string | null;
|
|
1264
|
+
SAMP_ID: string | null;
|
|
1265
|
+
SPEC_REF: string | null;
|
|
1266
|
+
SPEC_DPTH: number | null;
|
|
1267
|
+
SPEC_DESC: string | null;
|
|
1268
|
+
SPEC_PREP: string | null;
|
|
1269
|
+
MCVG_200: number | null;
|
|
1270
|
+
MCVG_NMC: number | null;
|
|
1271
|
+
MCVG_STAB: number | null;
|
|
1272
|
+
MCVG_STYP: string | null;
|
|
1273
|
+
MCVG_REM: string | null;
|
|
1274
|
+
MCVG_METH: string | null;
|
|
1275
|
+
MCVG_LAB: string | null;
|
|
1276
|
+
MCVG_CRED: string | null;
|
|
1277
|
+
TEST_STAT: string | null;
|
|
1278
|
+
FILE_FSET: string | null;
|
|
1279
|
+
MCVG_SIZE: number | null;
|
|
1280
|
+
mcvts: MCVT[];
|
|
1281
|
+
constructor(init?: Partial<MCVG>);
|
|
1282
|
+
}
|
|
1283
|
+
declare class MCVT extends AgsGroup {
|
|
1284
|
+
static readonly code = "MCVT";
|
|
1285
|
+
LOCA_ID: string | null;
|
|
1286
|
+
SAMP_TOP: number | null;
|
|
1287
|
+
SAMP_REF: string | null;
|
|
1288
|
+
SAMP_TYPE: string | null;
|
|
1289
|
+
SAMP_ID: string | null;
|
|
1290
|
+
SPEC_REF: string | null;
|
|
1291
|
+
SPEC_DPTH: number | null;
|
|
1292
|
+
MCVT_TESN: string | null;
|
|
1293
|
+
MCVT_MC: number | null;
|
|
1294
|
+
MCVT_CURV: string | null;
|
|
1295
|
+
MCVT_RELK: number | null;
|
|
1296
|
+
MCVT_BDEN: number | null;
|
|
1297
|
+
MCVT_DIFF: number | null;
|
|
1298
|
+
MCVT_RAPD: string | null;
|
|
1299
|
+
MCVT_REM: string | null;
|
|
1300
|
+
FILE_FSET: string | null;
|
|
1301
|
+
constructor(init?: Partial<MCVT>);
|
|
1302
|
+
}
|
|
1303
|
+
declare class MOND extends AgsGroup {
|
|
1304
|
+
static readonly code = "MOND";
|
|
1305
|
+
LOCA_ID: string | null;
|
|
1306
|
+
MONG_ID: string | null;
|
|
1307
|
+
MONG_DIS: number | null;
|
|
1308
|
+
MOND_DTIM: Date | null;
|
|
1309
|
+
MOND_TYPE: string | null;
|
|
1310
|
+
MOND_REF: string | null;
|
|
1311
|
+
MOND_INST: string | null;
|
|
1312
|
+
MOND_RDNG: string | null;
|
|
1313
|
+
MOND_UNIT: string | null;
|
|
1314
|
+
MOND_METH: string | null;
|
|
1315
|
+
MOND_LIM: number | null;
|
|
1316
|
+
MOND_ULIM: number | null;
|
|
1317
|
+
MOND_NAME: string | null;
|
|
1318
|
+
MOND_CRED: string | null;
|
|
1319
|
+
MOND_CONT: string | null;
|
|
1320
|
+
MOND_REM: string | null;
|
|
1321
|
+
FILE_FSET: string | null;
|
|
1322
|
+
MOND_STAT: string | null;
|
|
1323
|
+
constructor(init?: Partial<MOND>);
|
|
1324
|
+
}
|
|
1325
|
+
declare class MONG extends AgsGroup {
|
|
1326
|
+
static readonly code = "MONG";
|
|
1327
|
+
LOCA_ID: string | null;
|
|
1328
|
+
MONG_ID: string | null;
|
|
1329
|
+
MONG_DIS: number | null;
|
|
1330
|
+
PIPE_REF: string | null;
|
|
1331
|
+
MONG_DATE: Date | null;
|
|
1332
|
+
MONG_TYPE: string | null;
|
|
1333
|
+
MONG_DETL: string | null;
|
|
1334
|
+
MONG_TRZ: number | null;
|
|
1335
|
+
MONG_BRZ: number | null;
|
|
1336
|
+
MONG_BRGA: number | null;
|
|
1337
|
+
MONG_BRGB: number | null;
|
|
1338
|
+
MONG_BRGC: number | null;
|
|
1339
|
+
MONG_INCA: number | null;
|
|
1340
|
+
MONG_INCB: number | null;
|
|
1341
|
+
MONG_INCC: number | null;
|
|
1342
|
+
MONG_RSCA: string | null;
|
|
1343
|
+
MONG_RSCB: string | null;
|
|
1344
|
+
MONG_RSCC: string | null;
|
|
1345
|
+
MONG_REM: string | null;
|
|
1346
|
+
MONG_CONT: string | null;
|
|
1347
|
+
FILE_FSET: string | null;
|
|
1348
|
+
monds: MOND[];
|
|
1349
|
+
constructor(init?: Partial<MONG>);
|
|
1350
|
+
}
|
|
1351
|
+
declare class PIPE extends AgsGroup {
|
|
1352
|
+
static readonly code = "PIPE";
|
|
1353
|
+
LOCA_ID: string | null;
|
|
1354
|
+
PIPE_REF: string | null;
|
|
1355
|
+
PIPE_TOP: number | null;
|
|
1356
|
+
PIPE_BASE: number | null;
|
|
1357
|
+
PIPE_DIAM: number | null;
|
|
1358
|
+
PIPE_TYPE: string | null;
|
|
1359
|
+
PIPE_CONS: string | null;
|
|
1360
|
+
PIPE_REM: string | null;
|
|
1361
|
+
FILE_FSET: string | null;
|
|
1362
|
+
constructor(init?: Partial<PIPE>);
|
|
1363
|
+
}
|
|
1364
|
+
declare class PLTG extends AgsGroup {
|
|
1365
|
+
static readonly code = "PLTG";
|
|
1366
|
+
LOCA_ID: string | null;
|
|
1367
|
+
PLTG_DPTH: number | null;
|
|
1368
|
+
PLTG_TESN: string | null;
|
|
1369
|
+
PLTG_CYC: string | null;
|
|
1370
|
+
PLTG_PDIA: number | null;
|
|
1371
|
+
PLTG_SEAT: number | null;
|
|
1372
|
+
PLTG_FA0: number | null;
|
|
1373
|
+
PLTG_FA1: number | null;
|
|
1374
|
+
PLTG_FA2: number | null;
|
|
1375
|
+
PLTG_SMOD: number | null;
|
|
1376
|
+
PLTG_EV2: number | null;
|
|
1377
|
+
PLTG_MOSR: number | null;
|
|
1378
|
+
PLTG_EMOD: number | null;
|
|
1379
|
+
PLTG_DATE: Date | null;
|
|
1380
|
+
PLTG_STAB: number | null;
|
|
1381
|
+
PLTG_STYP: string | null;
|
|
1382
|
+
PLTG_REM: string | null;
|
|
1383
|
+
PLTG_ENV: string | null;
|
|
1384
|
+
PLTG_METH: string | null;
|
|
1385
|
+
PLTG_CONT: string | null;
|
|
1386
|
+
PLTG_CRED: string | null;
|
|
1387
|
+
TEST_STAT: string | null;
|
|
1388
|
+
GEOL_STAT: string | null;
|
|
1389
|
+
FILE_FSET: string | null;
|
|
1390
|
+
pltts: PLTT[];
|
|
1391
|
+
constructor(init?: Partial<PLTG>);
|
|
1392
|
+
}
|
|
1393
|
+
declare class PLTT extends AgsGroup {
|
|
1394
|
+
static readonly code = "PLTT";
|
|
1395
|
+
LOCA_ID: string | null;
|
|
1396
|
+
PLTG_DPTH: number | null;
|
|
1397
|
+
PLTG_TESN: string | null;
|
|
1398
|
+
PLTG_CYC: string | null;
|
|
1399
|
+
PLTT_STG: string | null;
|
|
1400
|
+
PLTT_TIME: number | null;
|
|
1401
|
+
PLTT_LOAD: number | null;
|
|
1402
|
+
PLTT_SET1: number | null;
|
|
1403
|
+
PLTT_SET2: number | null;
|
|
1404
|
+
PLTT_SET3: number | null;
|
|
1405
|
+
PLTT_SET4: number | null;
|
|
1406
|
+
PLTT_REM: string | null;
|
|
1407
|
+
FILE_FSET: string | null;
|
|
1408
|
+
constructor(init?: Partial<PLTT>);
|
|
1409
|
+
}
|
|
1410
|
+
declare class PMTD extends AgsGroup {
|
|
1411
|
+
static readonly code = "PMTD";
|
|
1412
|
+
LOCA_ID: string | null;
|
|
1413
|
+
PMTG_DPTH: number | null;
|
|
1414
|
+
PMTG_TESN: string | null;
|
|
1415
|
+
PMTD_SEQ: number | null;
|
|
1416
|
+
PMTD_ARM1: number | null;
|
|
1417
|
+
PMTD_ARM2: number | null;
|
|
1418
|
+
PMTD_ARM3: number | null;
|
|
1419
|
+
PMTD_TPC: number | null;
|
|
1420
|
+
PMTD_PPA: number | null;
|
|
1421
|
+
PMTD_PPB: number | null;
|
|
1422
|
+
PMTD_VOL: number | null;
|
|
1423
|
+
PMTD_REM: string | null;
|
|
1424
|
+
FILE_FSET: string | null;
|
|
1425
|
+
PMTD_ARM4: number | null;
|
|
1426
|
+
PMTD_ARM5: number | null;
|
|
1427
|
+
PMTD_ARM6: number | null;
|
|
1428
|
+
constructor(init?: Partial<PMTD>);
|
|
1429
|
+
}
|
|
1430
|
+
declare class PMTG extends AgsGroup {
|
|
1431
|
+
static readonly code = "PMTG";
|
|
1432
|
+
LOCA_ID: string | null;
|
|
1433
|
+
PMTG_DPTH: number | null;
|
|
1434
|
+
PMTG_TESN: string | null;
|
|
1435
|
+
PMTG_DATE: Date | null;
|
|
1436
|
+
PMTG_WAT: number | null;
|
|
1437
|
+
PMTG_CONT: string | null;
|
|
1438
|
+
PMTG_CREW: string | null;
|
|
1439
|
+
PMTG_REF: string | null;
|
|
1440
|
+
PMTG_TYPE: string | null;
|
|
1441
|
+
PMTG_DIAM: number | null;
|
|
1442
|
+
PMTG_HO: number | null;
|
|
1443
|
+
PMTG_GI: number | null;
|
|
1444
|
+
PMTG_CU: number | null;
|
|
1445
|
+
PMTG_PL: number | null;
|
|
1446
|
+
PMTG_AF: number | null;
|
|
1447
|
+
PMTG_AD: number | null;
|
|
1448
|
+
PMTG_AFCV: number | null;
|
|
1449
|
+
PMTG_METH: string | null;
|
|
1450
|
+
PMTG_CRED: string | null;
|
|
1451
|
+
TEST_STAT: string | null;
|
|
1452
|
+
PMTG_ENV: string | null;
|
|
1453
|
+
PMTG_REM: string | null;
|
|
1454
|
+
FILE_FSET: string | null;
|
|
1455
|
+
pmtds: PMTD[];
|
|
1456
|
+
pmtls: PMTL[];
|
|
1457
|
+
constructor(init?: Partial<PMTG>);
|
|
1458
|
+
}
|
|
1459
|
+
declare class PMTL extends AgsGroup {
|
|
1460
|
+
static readonly code = "PMTL";
|
|
1461
|
+
LOCA_ID: string | null;
|
|
1462
|
+
PMTG_DPTH: number | null;
|
|
1463
|
+
PMTG_TESN: string | null;
|
|
1464
|
+
PMTD_SEQ: number | null;
|
|
1465
|
+
PMTL_LNO: number | null;
|
|
1466
|
+
PMTL_GAA: number | null;
|
|
1467
|
+
PMTL_SINC: number | null;
|
|
1468
|
+
PMTL_PINC: number | null;
|
|
1469
|
+
PMTL_STRA: number | null;
|
|
1470
|
+
PMTL_PRSA: number | null;
|
|
1471
|
+
PMTL_NLSA: number | null;
|
|
1472
|
+
PMTL_NLSB: number | null;
|
|
1473
|
+
PMTL_REM: string | null;
|
|
1474
|
+
FILE_FSET: string | null;
|
|
1475
|
+
constructor(init?: Partial<PMTL>);
|
|
1476
|
+
}
|
|
1477
|
+
declare class PROJ extends AgsGroup {
|
|
1478
|
+
static readonly code = "PROJ";
|
|
1479
|
+
PROJ_ID: string | null;
|
|
1480
|
+
PROJ_NAME: string | null;
|
|
1481
|
+
PROJ_LOC: string | null;
|
|
1482
|
+
PROJ_CLNT: string | null;
|
|
1483
|
+
PROJ_CONT: string | null;
|
|
1484
|
+
PROJ_ENG: string | null;
|
|
1485
|
+
PROJ_MEMO: string | null;
|
|
1486
|
+
FILE_FSET: string | null;
|
|
1487
|
+
PROJ_OFFC: string | null;
|
|
1488
|
+
locas: LOCA[];
|
|
1489
|
+
constructor(init?: Partial<PROJ>);
|
|
1490
|
+
}
|
|
1491
|
+
declare class PTIM extends AgsGroup {
|
|
1492
|
+
static readonly code = "PTIM";
|
|
1493
|
+
LOCA_ID: string | null;
|
|
1494
|
+
PTIM_DTIM: Date | null;
|
|
1495
|
+
PTIM_DPTH: number | null;
|
|
1496
|
+
PTIM_CAS: number | null;
|
|
1497
|
+
PTIM_WAT: string | null;
|
|
1498
|
+
PTIM_REM: string | null;
|
|
1499
|
+
FILE_FSET: string | null;
|
|
1500
|
+
constructor(init?: Partial<PTIM>);
|
|
1501
|
+
}
|
|
1502
|
+
declare class PTST extends AgsGroup {
|
|
1503
|
+
static readonly code = "PTST";
|
|
1504
|
+
LOCA_ID: string | null;
|
|
1505
|
+
SAMP_TOP: number | null;
|
|
1506
|
+
SAMP_REF: string | null;
|
|
1507
|
+
SAMP_TYPE: string | null;
|
|
1508
|
+
SAMP_ID: string | null;
|
|
1509
|
+
SPEC_REF: string | null;
|
|
1510
|
+
SPEC_DPTH: number | null;
|
|
1511
|
+
PTST_TESN: string | null;
|
|
1512
|
+
SPEC_DESC: string | null;
|
|
1513
|
+
SPEC_PREP: string | null;
|
|
1514
|
+
PTST_COND: string | null;
|
|
1515
|
+
PTST_SZUN: number | null;
|
|
1516
|
+
PTST_UNS: number | null;
|
|
1517
|
+
PTST_DIAM: number | null;
|
|
1518
|
+
PTST_LEN: number | null;
|
|
1519
|
+
PTST_MC: number | null;
|
|
1520
|
+
PTST_BDEN: number | null;
|
|
1521
|
+
PTST_DDEN: number | null;
|
|
1522
|
+
PTST_IDIA: number | null;
|
|
1523
|
+
PTST_DMET: string | null;
|
|
1524
|
+
PTST_VOID: number | null;
|
|
1525
|
+
PTST_K: number | null;
|
|
1526
|
+
PTST_TSTR: number | null;
|
|
1527
|
+
PTST_HYGR: number | null;
|
|
1528
|
+
PTST_ISAT: number | null;
|
|
1529
|
+
PTST_SAT: string | null;
|
|
1530
|
+
PTST_CONS: string | null;
|
|
1531
|
+
PTST_PDEN: string | null;
|
|
1532
|
+
PTST_TYPE: string | null;
|
|
1533
|
+
PTST_CELL: string | null;
|
|
1534
|
+
PTST_REM: string | null;
|
|
1535
|
+
PTST_METH: string | null;
|
|
1536
|
+
PTST_LAB: string | null;
|
|
1537
|
+
PTST_CRED: string | null;
|
|
1538
|
+
TEST_STAT: string | null;
|
|
1539
|
+
FILE_FSET: string | null;
|
|
1540
|
+
constructor(init?: Partial<PTST>);
|
|
1541
|
+
}
|
|
1542
|
+
declare class RDEN extends AgsGroup {
|
|
1543
|
+
static readonly code = "RDEN";
|
|
1544
|
+
LOCA_ID: string | null;
|
|
1545
|
+
SAMP_TOP: number | null;
|
|
1546
|
+
SAMP_REF: string | null;
|
|
1547
|
+
SAMP_TYPE: string | null;
|
|
1548
|
+
SAMP_ID: string | null;
|
|
1549
|
+
SPEC_REF: string | null;
|
|
1550
|
+
SPEC_DPTH: number | null;
|
|
1551
|
+
SPEC_DESC: string | null;
|
|
1552
|
+
SPEC_PREP: string | null;
|
|
1553
|
+
RDEN_MC: number | null;
|
|
1554
|
+
RDEN_SMC: number | null;
|
|
1555
|
+
RDEN_BDEN: number | null;
|
|
1556
|
+
RDEN_DDEN: number | null;
|
|
1557
|
+
RDEN_PORO: number | null;
|
|
1558
|
+
RDEN_PDEN: number | null;
|
|
1559
|
+
RDEN_TEMP: number | null;
|
|
1560
|
+
RDEN_REM: string | null;
|
|
1561
|
+
RDEN_METH: string | null;
|
|
1562
|
+
RDEN_LAB: string | null;
|
|
1563
|
+
RDEN_CRED: string | null;
|
|
1564
|
+
TEST_STAT: string | null;
|
|
1565
|
+
FILE_FSET: string | null;
|
|
1566
|
+
constructor(init?: Partial<RDEN>);
|
|
1567
|
+
}
|
|
1568
|
+
declare class RELD extends AgsGroup {
|
|
1569
|
+
static readonly code = "RELD";
|
|
1570
|
+
LOCA_ID: string | null;
|
|
1571
|
+
SAMP_TOP: number | null;
|
|
1572
|
+
SAMP_REF: string | null;
|
|
1573
|
+
SAMP_TYPE: string | null;
|
|
1574
|
+
SAMP_ID: string | null;
|
|
1575
|
+
SPEC_REF: string | null;
|
|
1576
|
+
SPEC_DPTH: number | null;
|
|
1577
|
+
SPEC_DESC: string | null;
|
|
1578
|
+
SPEC_PREP: string | null;
|
|
1579
|
+
RELD_DMAX: number | null;
|
|
1580
|
+
RELD_375: number | null;
|
|
1581
|
+
RELD_063: number | null;
|
|
1582
|
+
RELD_020: number | null;
|
|
1583
|
+
RELD_DMIN: number | null;
|
|
1584
|
+
RELD_REM: string | null;
|
|
1585
|
+
RELD_METH: string | null;
|
|
1586
|
+
RELD_LAB: string | null;
|
|
1587
|
+
RELD_CRED: string | null;
|
|
1588
|
+
TEST_STAT: string | null;
|
|
1589
|
+
FILE_FSET: string | null;
|
|
1590
|
+
RELD_SIZ1: number | null;
|
|
1591
|
+
RELD_SIZ2: number | null;
|
|
1592
|
+
RELD_SIZ3: number | null;
|
|
1593
|
+
constructor(init?: Partial<RELD>);
|
|
1594
|
+
}
|
|
1595
|
+
declare class RPLT extends AgsGroup {
|
|
1596
|
+
static readonly code = "RPLT";
|
|
1597
|
+
LOCA_ID: string | null;
|
|
1598
|
+
SAMP_TOP: number | null;
|
|
1599
|
+
SAMP_REF: string | null;
|
|
1600
|
+
SAMP_TYPE: string | null;
|
|
1601
|
+
SAMP_ID: string | null;
|
|
1602
|
+
SPEC_REF: string | null;
|
|
1603
|
+
SPEC_DPTH: number | null;
|
|
1604
|
+
SPEC_DESC: string | null;
|
|
1605
|
+
SPEC_PREP: string | null;
|
|
1606
|
+
RPLT_PLS: number | null;
|
|
1607
|
+
RPLT_PLSI: number | null;
|
|
1608
|
+
RPLT_PLTF: string | null;
|
|
1609
|
+
RPLT_MC: number | null;
|
|
1610
|
+
RPLT_REM: string | null;
|
|
1611
|
+
RPLT_METH: string | null;
|
|
1612
|
+
RPLT_LAB: string | null;
|
|
1613
|
+
RPLT_CRED: string | null;
|
|
1614
|
+
TEST_STAT: string | null;
|
|
1615
|
+
FILE_FSET: string | null;
|
|
1616
|
+
constructor(init?: Partial<RPLT>);
|
|
1617
|
+
}
|
|
1618
|
+
declare class RUCS extends AgsGroup {
|
|
1619
|
+
static readonly code = "RUCS";
|
|
1620
|
+
LOCA_ID: string | null;
|
|
1621
|
+
SAMP_TOP: number | null;
|
|
1622
|
+
SAMP_REF: string | null;
|
|
1623
|
+
SAMP_TYPE: string | null;
|
|
1624
|
+
SAMP_ID: string | null;
|
|
1625
|
+
SPEC_REF: string | null;
|
|
1626
|
+
SPEC_DPTH: number | null;
|
|
1627
|
+
SPEC_DESC: string | null;
|
|
1628
|
+
SPEC_PREP: string | null;
|
|
1629
|
+
RUCS_SDIA: number | null;
|
|
1630
|
+
RUCS_LEN: number | null;
|
|
1631
|
+
RUCS_MC: number | null;
|
|
1632
|
+
RUCS_COND: string | null;
|
|
1633
|
+
RUCS_DURN: string | null;
|
|
1634
|
+
RUCS_STRA: number | null;
|
|
1635
|
+
RUCS_UCS: number | null;
|
|
1636
|
+
RUCS_MODE: string | null;
|
|
1637
|
+
RUCS_E: number | null;
|
|
1638
|
+
RUCS_MU: number | null;
|
|
1639
|
+
RUCS_ESTR: string | null;
|
|
1640
|
+
RUCS_ETYP: string | null;
|
|
1641
|
+
RUCS_MACH: string | null;
|
|
1642
|
+
RUCS_REM: string | null;
|
|
1643
|
+
RUCS_METH: string | null;
|
|
1644
|
+
RUCS_LAB: string | null;
|
|
1645
|
+
RUCS_CRED: string | null;
|
|
1646
|
+
TEST_STAT: string | null;
|
|
1647
|
+
FILE_FSET: string | null;
|
|
1648
|
+
constructor(init?: Partial<RUCS>);
|
|
1649
|
+
}
|
|
1650
|
+
declare class RWCO extends AgsGroup {
|
|
1651
|
+
static readonly code = "RWCO";
|
|
1652
|
+
LOCA_ID: string | null;
|
|
1653
|
+
SAMP_TOP: number | null;
|
|
1654
|
+
SAMP_REF: string | null;
|
|
1655
|
+
SAMP_TYPE: string | null;
|
|
1656
|
+
SAMP_ID: string | null;
|
|
1657
|
+
SPEC_REF: string | null;
|
|
1658
|
+
SPEC_DPTH: number | null;
|
|
1659
|
+
SPEC_DESC: string | null;
|
|
1660
|
+
SPEC_PREP: string | null;
|
|
1661
|
+
RWCO_MC: number | null;
|
|
1662
|
+
RWCO_TEMP: number | null;
|
|
1663
|
+
RWCO_REM: string | null;
|
|
1664
|
+
RWCO_METH: string | null;
|
|
1665
|
+
RWCO_LAB: string | null;
|
|
1666
|
+
RWCO_CRED: string | null;
|
|
1667
|
+
TEST_STAT: string | null;
|
|
1668
|
+
FILE_FSET: string | null;
|
|
1669
|
+
constructor(init?: Partial<RWCO>);
|
|
1670
|
+
}
|
|
1671
|
+
declare class SAMP extends AgsGroup {
|
|
1672
|
+
static readonly code = "SAMP";
|
|
1673
|
+
LOCA_ID: string | null;
|
|
1674
|
+
SAMP_TOP: number | null;
|
|
1675
|
+
SAMP_REF: string | null;
|
|
1676
|
+
SAMP_TYPE: string | null;
|
|
1677
|
+
SAMP_ID: string | null;
|
|
1678
|
+
SAMP_BASE: number | null;
|
|
1679
|
+
SAMP_DTIM: Date | null;
|
|
1680
|
+
SAMP_REM: string | null;
|
|
1681
|
+
SAMP_UBLO: number | null;
|
|
1682
|
+
SAMP_CONT: string | null;
|
|
1683
|
+
SAMP_PREP: string | null;
|
|
1684
|
+
SAMP_SDIA: number | null;
|
|
1685
|
+
SAMP_WDEP: string | null;
|
|
1686
|
+
SAMP_RECV: number | null;
|
|
1687
|
+
SAMP_TECH: string | null;
|
|
1688
|
+
SAMP_MATX: string | null;
|
|
1689
|
+
SAMP_TYPC: string | null;
|
|
1690
|
+
SAMP_WHO: string | null;
|
|
1691
|
+
SAMP_WHY: string | null;
|
|
1692
|
+
SAMP_DESC: string | null;
|
|
1693
|
+
SAMP_DESD: Date | null;
|
|
1694
|
+
SAMP_LOG: string | null;
|
|
1695
|
+
SAMP_COND: string | null;
|
|
1696
|
+
SAMP_CLSS: string | null;
|
|
1697
|
+
SAMP_BAR: number | null;
|
|
1698
|
+
SAMP_TEMP: number | null;
|
|
1699
|
+
SAMP_PRES: number | null;
|
|
1700
|
+
SAMP_FLOW: number | null;
|
|
1701
|
+
SAMP_ETIM: Date | null;
|
|
1702
|
+
SAMP_DURN: string | null;
|
|
1703
|
+
SAMP_CAPT: string | null;
|
|
1704
|
+
SAMP_LINK: string | null;
|
|
1705
|
+
GEOL_STAT: string | null;
|
|
1706
|
+
FILE_FSET: string | null;
|
|
1707
|
+
SAMP_RECL: number | null;
|
|
1708
|
+
asdis: ASDI[];
|
|
1709
|
+
cbrgs: CBRG[];
|
|
1710
|
+
chocs: CHOC[];
|
|
1711
|
+
cmpgs: CMPG[];
|
|
1712
|
+
congs: CONG[];
|
|
1713
|
+
conls: CONL[];
|
|
1714
|
+
ectns: ECTN[];
|
|
1715
|
+
eress: ERES[];
|
|
1716
|
+
gchms: GCHM[];
|
|
1717
|
+
grags: GRAG[];
|
|
1718
|
+
ldens: LDEN[];
|
|
1719
|
+
llins: LLIN[];
|
|
1720
|
+
llpls: LLPL[];
|
|
1721
|
+
lnmcs: LNMC[];
|
|
1722
|
+
lpdns: LPDN[];
|
|
1723
|
+
lress: LRES[];
|
|
1724
|
+
lvans: LVAN[];
|
|
1725
|
+
mcvgs: MCVG[];
|
|
1726
|
+
ptsts: PTST[];
|
|
1727
|
+
rdens: RDEN[];
|
|
1728
|
+
relds: RELD[];
|
|
1729
|
+
rplts: RPLT[];
|
|
1730
|
+
rucss: RUCS[];
|
|
1731
|
+
rwcos: RWCO[];
|
|
1732
|
+
shbgs: SHBG[];
|
|
1733
|
+
tregs: TREG[];
|
|
1734
|
+
trems: TREM[];
|
|
1735
|
+
trigs: TRIG[];
|
|
1736
|
+
wadds: WADD[];
|
|
1737
|
+
winss: WINS[];
|
|
1738
|
+
constructor(init?: Partial<SAMP>);
|
|
1739
|
+
}
|
|
1740
|
+
declare class SCDG extends AgsGroup {
|
|
1741
|
+
static readonly code = "SCDG";
|
|
1742
|
+
LOCA_ID: string | null;
|
|
1743
|
+
SCPG_TESN: string | null;
|
|
1744
|
+
SCDG_DPTH: number | null;
|
|
1745
|
+
SCDG_PWPI: number | null;
|
|
1746
|
+
SCDG_PWPE: number | null;
|
|
1747
|
+
SCDG_DDIS: number | null;
|
|
1748
|
+
SCDG_T: number | null;
|
|
1749
|
+
SCDG_CV: number | null;
|
|
1750
|
+
SCDG_CVMT: string | null;
|
|
1751
|
+
SCDG_CH: number | null;
|
|
1752
|
+
SCDG_CHMT: string | null;
|
|
1753
|
+
SCDG_REM: string | null;
|
|
1754
|
+
TEST_STAT: string | null;
|
|
1755
|
+
FILE_FSET: string | null;
|
|
1756
|
+
scdts: SCDT[];
|
|
1757
|
+
constructor(init?: Partial<SCDG>);
|
|
1758
|
+
}
|
|
1759
|
+
declare class SCDT extends AgsGroup {
|
|
1760
|
+
static readonly code = "SCDT";
|
|
1761
|
+
LOCA_ID: string | null;
|
|
1762
|
+
SCPG_TESN: string | null;
|
|
1763
|
+
SCDG_DPTH: number | null;
|
|
1764
|
+
SCDT_SECS: number | null;
|
|
1765
|
+
SCDT_RES: number | null;
|
|
1766
|
+
SCDT_PWP1: number | null;
|
|
1767
|
+
SCDT_PWP2: number | null;
|
|
1768
|
+
SCDT_PWP3: number | null;
|
|
1769
|
+
SCDT_REM: string | null;
|
|
1770
|
+
FILE_FSET: string | null;
|
|
1771
|
+
constructor(init?: Partial<SCDT>);
|
|
1772
|
+
}
|
|
1773
|
+
declare class SCPG extends AgsGroup {
|
|
1774
|
+
static readonly code = "SCPG";
|
|
1775
|
+
LOCA_ID: string | null;
|
|
1776
|
+
SCPG_TESN: string | null;
|
|
1777
|
+
SCPG_TYPE: string | null;
|
|
1778
|
+
SCPG_REF: string | null;
|
|
1779
|
+
SCPG_CSA: number | null;
|
|
1780
|
+
SCPG_RATE: number | null;
|
|
1781
|
+
SCPG_FILT: string | null;
|
|
1782
|
+
SCPG_FRIC: boolean | null;
|
|
1783
|
+
SCPG_WAT: number | null;
|
|
1784
|
+
SCPG_WATA: string | null;
|
|
1785
|
+
SCPG_REM: string | null;
|
|
1786
|
+
SCPG_ENV: string | null;
|
|
1787
|
+
SCPG_CONT: string | null;
|
|
1788
|
+
SCPG_METH: string | null;
|
|
1789
|
+
SCPG_CRED: string | null;
|
|
1790
|
+
SCPG_CAR: number | null;
|
|
1791
|
+
SCPG_SLAR: number | null;
|
|
1792
|
+
FILE_FSET: string | null;
|
|
1793
|
+
scdgs: SCDG[];
|
|
1794
|
+
scpts: SCPT[];
|
|
1795
|
+
constructor(init?: Partial<SCPG>);
|
|
1796
|
+
}
|
|
1797
|
+
declare class SCPT extends AgsGroup {
|
|
1798
|
+
static readonly code = "SCPT";
|
|
1799
|
+
LOCA_ID: string | null;
|
|
1800
|
+
SCPG_TESN: string | null;
|
|
1801
|
+
SCPT_DPTH: number | null;
|
|
1802
|
+
SCPT_RES: number | null;
|
|
1803
|
+
SCPT_FRES: number | null;
|
|
1804
|
+
SCPT_PWP1: number | null;
|
|
1805
|
+
SCPT_PWP2: number | null;
|
|
1806
|
+
SCPT_PWP3: number | null;
|
|
1807
|
+
SCPT_CON: number | null;
|
|
1808
|
+
SCPT_TEMP: number | null;
|
|
1809
|
+
SCPT_PH: number | null;
|
|
1810
|
+
SCPT_SLP1: number | null;
|
|
1811
|
+
SCPT_SLP2: number | null;
|
|
1812
|
+
SCPT_REDX: number | null;
|
|
1813
|
+
SCPT_MAGT: number | null;
|
|
1814
|
+
SCPT_MAGX: number | null;
|
|
1815
|
+
SCPT_MAGY: number | null;
|
|
1816
|
+
SCPT_MAGZ: number | null;
|
|
1817
|
+
SCPT_SMP: number | null;
|
|
1818
|
+
SCPT_NGAM: number | null;
|
|
1819
|
+
SCPT_REM: string | null;
|
|
1820
|
+
SCPT_FRR: number | null;
|
|
1821
|
+
SCPT_QT: number | null;
|
|
1822
|
+
SCPT_FT: number | null;
|
|
1823
|
+
SCPT_QE: number | null;
|
|
1824
|
+
SCPT_BDEN: number | null;
|
|
1825
|
+
SCPT_CPO: number | null;
|
|
1826
|
+
SCPT_CPOD: number | null;
|
|
1827
|
+
SCPT_QNET: number | null;
|
|
1828
|
+
SCPT_FRRC: number | null;
|
|
1829
|
+
SCPT_EXPP: number | null;
|
|
1830
|
+
SCPT_BQ: number | null;
|
|
1831
|
+
SCPT_ISPP: number | null;
|
|
1832
|
+
SCPT_NQT: number | null;
|
|
1833
|
+
SCPT_NFR: number | null;
|
|
1834
|
+
FILE_FSET: string | null;
|
|
1835
|
+
constructor(init?: Partial<SCPT>);
|
|
1836
|
+
}
|
|
1837
|
+
declare class SHBG extends AgsGroup {
|
|
1838
|
+
static readonly code = "SHBG";
|
|
1839
|
+
LOCA_ID: string | null;
|
|
1840
|
+
SAMP_TOP: number | null;
|
|
1841
|
+
SAMP_REF: string | null;
|
|
1842
|
+
SAMP_TYPE: string | null;
|
|
1843
|
+
SAMP_ID: string | null;
|
|
1844
|
+
SPEC_REF: string | null;
|
|
1845
|
+
SPEC_DPTH: number | null;
|
|
1846
|
+
SPEC_DESC: string | null;
|
|
1847
|
+
SPEC_PREP: string | null;
|
|
1848
|
+
SHBG_TYPE: string | null;
|
|
1849
|
+
SHBG_COND: string | null;
|
|
1850
|
+
SHBG_CONS: string | null;
|
|
1851
|
+
SHBG_PCOH: number | null;
|
|
1852
|
+
SHBG_PHI: number | null;
|
|
1853
|
+
SHBG_RCOH: number | null;
|
|
1854
|
+
SHBG_RPHI: number | null;
|
|
1855
|
+
SHBG_ENCA: string | null;
|
|
1856
|
+
SHBG_REM: string | null;
|
|
1857
|
+
SHBG_METH: string | null;
|
|
1858
|
+
SHBG_LAB: string | null;
|
|
1859
|
+
SHBG_CRED: string | null;
|
|
1860
|
+
TEST_STAT: string | null;
|
|
1861
|
+
FILE_FSET: string | null;
|
|
1862
|
+
shbts: SHBT[];
|
|
1863
|
+
constructor(init?: Partial<SHBG>);
|
|
1864
|
+
}
|
|
1865
|
+
declare class SHBT extends AgsGroup {
|
|
1866
|
+
static readonly code = "SHBT";
|
|
1867
|
+
LOCA_ID: string | null;
|
|
1868
|
+
SAMP_TOP: number | null;
|
|
1869
|
+
SAMP_REF: string | null;
|
|
1870
|
+
SAMP_TYPE: string | null;
|
|
1871
|
+
SAMP_ID: string | null;
|
|
1872
|
+
SPEC_REF: string | null;
|
|
1873
|
+
SPEC_DPTH: number | null;
|
|
1874
|
+
SHBT_TESN: string | null;
|
|
1875
|
+
SHBT_BDEN: number | null;
|
|
1876
|
+
SHBT_DDEN: number | null;
|
|
1877
|
+
SHBT_NORM: number | null;
|
|
1878
|
+
SHBT_DISP: number | null;
|
|
1879
|
+
SHBT_DISR: number | null;
|
|
1880
|
+
SHBT_REVS: number | null;
|
|
1881
|
+
SHBT_PEAK: number | null;
|
|
1882
|
+
SHBT_RES: number | null;
|
|
1883
|
+
SHBT_PDIS: number | null;
|
|
1884
|
+
SHBT_RDIS: number | null;
|
|
1885
|
+
SHBT_PDIN: number | null;
|
|
1886
|
+
SHBT_RDIN: number | null;
|
|
1887
|
+
SHBT_PDEN: string | null;
|
|
1888
|
+
SHBT_IVR: number | null;
|
|
1889
|
+
SHBT_MCI: number | null;
|
|
1890
|
+
SHBT_MCF: number | null;
|
|
1891
|
+
SHBT_DIA1: number | null;
|
|
1892
|
+
SHBT_DIA2: number | null;
|
|
1893
|
+
SHBT_HGT: number | null;
|
|
1894
|
+
SHBT_CRIT: string | null;
|
|
1895
|
+
SHBT_REM: string | null;
|
|
1896
|
+
FILE_FSET: string | null;
|
|
1897
|
+
constructor(init?: Partial<SHBT>);
|
|
1898
|
+
}
|
|
1899
|
+
declare class TRAN extends AgsGroup {
|
|
1900
|
+
static readonly code = "TRAN";
|
|
1901
|
+
TRAN_ISNO: string | null;
|
|
1902
|
+
TRAN_DATE: Date | null;
|
|
1903
|
+
TRAN_PROD: string | null;
|
|
1904
|
+
TRAN_STAT: string | null;
|
|
1905
|
+
TRAN_DESC: string | null;
|
|
1906
|
+
TRAN_AGS: string | null;
|
|
1907
|
+
TRAN_RECV: string | null;
|
|
1908
|
+
TRAN_DLIM: string | null;
|
|
1909
|
+
TRAN_RCON: string | null;
|
|
1910
|
+
TRAN_REM: string | null;
|
|
1911
|
+
FILE_FSET: string | null;
|
|
1912
|
+
constructor(init?: Partial<TRAN>);
|
|
1913
|
+
}
|
|
1914
|
+
declare class TREG extends AgsGroup {
|
|
1915
|
+
static readonly code = "TREG";
|
|
1916
|
+
LOCA_ID: string | null;
|
|
1917
|
+
SAMP_TOP: number | null;
|
|
1918
|
+
SAMP_REF: string | null;
|
|
1919
|
+
SAMP_TYPE: string | null;
|
|
1920
|
+
SAMP_ID: string | null;
|
|
1921
|
+
SPEC_REF: string | null;
|
|
1922
|
+
SPEC_DPTH: number | null;
|
|
1923
|
+
SPEC_DESC: string | null;
|
|
1924
|
+
SPEC_PREP: string | null;
|
|
1925
|
+
SPEC_BASE: number | null;
|
|
1926
|
+
TREG_TYPE: string | null;
|
|
1927
|
+
TREG_COND: string | null;
|
|
1928
|
+
TREG_COH: number | null;
|
|
1929
|
+
TREG_PHI: number | null;
|
|
1930
|
+
TREG_FCR: string | null;
|
|
1931
|
+
TREG_METH: string | null;
|
|
1932
|
+
TREG_LAB: string | null;
|
|
1933
|
+
TREG_CRED: string | null;
|
|
1934
|
+
TEST_STAT: string | null;
|
|
1935
|
+
FILE_FSET: string | null;
|
|
1936
|
+
TREG_REM: string | null;
|
|
1937
|
+
TREG_DEV: string | null;
|
|
1938
|
+
trets: TRET[];
|
|
1939
|
+
constructor(init?: Partial<TREG>);
|
|
1940
|
+
}
|
|
1941
|
+
declare class TREL extends AgsGroup {
|
|
1942
|
+
static readonly code = "TREL";
|
|
1943
|
+
LOCA_ID: string | null;
|
|
1944
|
+
SAMP_TOP: number | null;
|
|
1945
|
+
SAMP_REF: string | null;
|
|
1946
|
+
SAMP_TYPE: string | null;
|
|
1947
|
+
SAMP_ID: string | null;
|
|
1948
|
+
SPEC_REF: string | null;
|
|
1949
|
+
SPEC_DPTH: number | null;
|
|
1950
|
+
TRET_TESN: string | null;
|
|
1951
|
+
TREL_MNUM: number | null;
|
|
1952
|
+
TREL_TTIM: number | null;
|
|
1953
|
+
TREL_TTDT: Date | null;
|
|
1954
|
+
TREL_STIM: number | null;
|
|
1955
|
+
TREL_STGN: number | null;
|
|
1956
|
+
TREL_STGD: string | null;
|
|
1957
|
+
TREL_CELL: number | null;
|
|
1958
|
+
TREL_BACK: number | null;
|
|
1959
|
+
TREL_PWP: number | null;
|
|
1960
|
+
TREL_PWPM: number | null;
|
|
1961
|
+
TREL_SZT: number | null;
|
|
1962
|
+
TREL_SZE: number | null;
|
|
1963
|
+
TREL_SRT: number | null;
|
|
1964
|
+
TREL_SRE: number | null;
|
|
1965
|
+
TREL_EZET: number | null;
|
|
1966
|
+
TREL_EZES: number | null;
|
|
1967
|
+
TREL_EPET: number | null;
|
|
1968
|
+
TREL_EPES: number | null;
|
|
1969
|
+
TREL_EZ1T: number | null;
|
|
1970
|
+
TREL_EZ1S: number | null;
|
|
1971
|
+
TREL_EZ2T: number | null;
|
|
1972
|
+
TREL_EZ2S: number | null;
|
|
1973
|
+
TREL_ER1T: number | null;
|
|
1974
|
+
TREL_ER1S: number | null;
|
|
1975
|
+
TREL_CYCN: number | null;
|
|
1976
|
+
constructor(init?: Partial<TREL>);
|
|
1977
|
+
}
|
|
1978
|
+
declare class TREM extends AgsGroup {
|
|
1979
|
+
static readonly code = "TREM";
|
|
1980
|
+
LOCA_ID: string | null;
|
|
1981
|
+
TREM_DTIM: Date | null;
|
|
1982
|
+
TREM_COMP: string | null;
|
|
1983
|
+
TREM_REM: string | null;
|
|
1984
|
+
TREM_DURN: string | null;
|
|
1985
|
+
TREM_ETIM: Date | null;
|
|
1986
|
+
FILE_FSET: string | null;
|
|
1987
|
+
constructor(init?: Partial<TREM>);
|
|
1988
|
+
}
|
|
1989
|
+
declare class TRET extends AgsGroup {
|
|
1990
|
+
static readonly code = "TRET";
|
|
1991
|
+
LOCA_ID: string | null;
|
|
1992
|
+
SAMP_TOP: number | null;
|
|
1993
|
+
SAMP_REF: string | null;
|
|
1994
|
+
SAMP_TYPE: string | null;
|
|
1995
|
+
SAMP_ID: string | null;
|
|
1996
|
+
SPEC_REF: string | null;
|
|
1997
|
+
SPEC_DPTH: number | null;
|
|
1998
|
+
TRET_TESN: string | null;
|
|
1999
|
+
TRET_REM: string | null;
|
|
2000
|
+
TRET_SDIA: number | null;
|
|
2001
|
+
TRET_LEN: number | null;
|
|
2002
|
+
TRET_IMC: number | null;
|
|
2003
|
+
TRET_FMC: number | null;
|
|
2004
|
+
TRET_BDEN: number | null;
|
|
2005
|
+
TRET_DDEN: number | null;
|
|
2006
|
+
TRET_SAT: string | null;
|
|
2007
|
+
TRET_CONS: string | null;
|
|
2008
|
+
TRET_CONP: number | null;
|
|
2009
|
+
TRET_CELL: number | null;
|
|
2010
|
+
TRET_PWPI: number | null;
|
|
2011
|
+
TRET_STRR: number | null;
|
|
2012
|
+
TRET_STRN: number | null;
|
|
2013
|
+
TRET_DEVF: number | null;
|
|
2014
|
+
TRET_PWPF: number | null;
|
|
2015
|
+
TRET_STV: number | null;
|
|
2016
|
+
TRET_MODE: string | null;
|
|
2017
|
+
FILE_FSET: string | null;
|
|
2018
|
+
trels: TREL[];
|
|
2019
|
+
constructor(init?: Partial<TRET>);
|
|
2020
|
+
}
|
|
2021
|
+
declare class TRIG extends AgsGroup {
|
|
2022
|
+
static readonly code = "TRIG";
|
|
2023
|
+
LOCA_ID: string | null;
|
|
2024
|
+
SAMP_TOP: number | null;
|
|
2025
|
+
SAMP_REF: string | null;
|
|
2026
|
+
SAMP_TYPE: string | null;
|
|
2027
|
+
SAMP_ID: string | null;
|
|
2028
|
+
SPEC_REF: string | null;
|
|
2029
|
+
SPEC_DPTH: number | null;
|
|
2030
|
+
SPEC_DESC: string | null;
|
|
2031
|
+
SPEC_PREP: string | null;
|
|
2032
|
+
TRIG_TYPE: string | null;
|
|
2033
|
+
TRIG_COND: string | null;
|
|
2034
|
+
TRIG_REM: string | null;
|
|
2035
|
+
TRIG_METH: string | null;
|
|
2036
|
+
TRIG_LAB: string | null;
|
|
2037
|
+
TRIG_CRED: string | null;
|
|
2038
|
+
TEST_STAT: string | null;
|
|
2039
|
+
FILE_FSET: string | null;
|
|
2040
|
+
trits: TRIT[];
|
|
2041
|
+
constructor(init?: Partial<TRIG>);
|
|
2042
|
+
}
|
|
2043
|
+
declare class TRIL extends AgsGroup {
|
|
2044
|
+
static readonly code = "TRIL";
|
|
2045
|
+
LOCA_ID: string | null;
|
|
2046
|
+
SAMP_TOP: number | null;
|
|
2047
|
+
SAMP_REF: string | null;
|
|
2048
|
+
SAMP_TYPE: string | null;
|
|
2049
|
+
SAMP_ID: string | null;
|
|
2050
|
+
SPEC_REF: string | null;
|
|
2051
|
+
SPEC_DPTH: number | null;
|
|
2052
|
+
TRIT_TESN: string | null;
|
|
2053
|
+
TRIL_MNUM: number | null;
|
|
2054
|
+
TRIL_TTIM: number | null;
|
|
2055
|
+
TRIL_TTDT: Date | null;
|
|
2056
|
+
TRIL_STIM: number | null;
|
|
2057
|
+
TRIL_STGN: number | null;
|
|
2058
|
+
TRIL_STGD: string | null;
|
|
2059
|
+
TRIL_CELL: number | null;
|
|
2060
|
+
TRIL_SDEV: number | null;
|
|
2061
|
+
TRIL_EZES: number | null;
|
|
2062
|
+
constructor(init?: Partial<TRIL>);
|
|
2063
|
+
}
|
|
2064
|
+
declare class TRIT extends AgsGroup {
|
|
2065
|
+
static readonly code = "TRIT";
|
|
2066
|
+
LOCA_ID: string | null;
|
|
2067
|
+
SAMP_TOP: number | null;
|
|
2068
|
+
SAMP_REF: string | null;
|
|
2069
|
+
SAMP_TYPE: string | null;
|
|
2070
|
+
SAMP_ID: string | null;
|
|
2071
|
+
SPEC_REF: string | null;
|
|
2072
|
+
SPEC_DPTH: number | null;
|
|
2073
|
+
TRIT_TESN: string | null;
|
|
2074
|
+
TRIT_SDIA: number | null;
|
|
2075
|
+
TRIT_SLEN: number | null;
|
|
2076
|
+
TRIT_IMC: number | null;
|
|
2077
|
+
TRIT_FMC: number | null;
|
|
2078
|
+
TRIT_CELL: number | null;
|
|
2079
|
+
TRIT_DEVF: number | null;
|
|
2080
|
+
TRIT_BDEN: number | null;
|
|
2081
|
+
TRIT_DDEN: number | null;
|
|
2082
|
+
TRIT_STRN: number | null;
|
|
2083
|
+
TRIT_CU: number | null;
|
|
2084
|
+
TRIT_MODE: string | null;
|
|
2085
|
+
TRIT_REM: string | null;
|
|
2086
|
+
FILE_FSET: string | null;
|
|
2087
|
+
trils: TRIL[];
|
|
2088
|
+
constructor(init?: Partial<TRIT>);
|
|
2089
|
+
}
|
|
2090
|
+
declare class TYPE extends AgsGroup {
|
|
2091
|
+
static readonly code = "TYPE";
|
|
2092
|
+
TYPE_TYPE: string | null;
|
|
2093
|
+
TYPE_DESC: string | null;
|
|
2094
|
+
FILE_FSET: string | null;
|
|
2095
|
+
constructor(init?: Partial<TYPE>);
|
|
2096
|
+
}
|
|
2097
|
+
declare class UNIT extends AgsGroup {
|
|
2098
|
+
static readonly code = "UNIT";
|
|
2099
|
+
UNIT_UNIT: string | null;
|
|
2100
|
+
UNIT_DESC: string | null;
|
|
2101
|
+
UNIT_REM: string | null;
|
|
2102
|
+
FILE_FSET: string | null;
|
|
2103
|
+
constructor(init?: Partial<UNIT>);
|
|
2104
|
+
}
|
|
2105
|
+
declare class WADD extends AgsGroup {
|
|
2106
|
+
static readonly code = "WADD";
|
|
2107
|
+
LOCA_ID: string | null;
|
|
2108
|
+
WADD_TOP: number | null;
|
|
2109
|
+
WADD_BASE: number | null;
|
|
2110
|
+
WADD_VOLM: number | null;
|
|
2111
|
+
WADD_METH: string | null;
|
|
2112
|
+
WADD_REM: string | null;
|
|
2113
|
+
FILE_FSET: string | null;
|
|
2114
|
+
constructor(init?: Partial<WADD>);
|
|
2115
|
+
}
|
|
2116
|
+
declare class WETH extends AgsGroup {
|
|
2117
|
+
static readonly code = "WETH";
|
|
2118
|
+
LOCA_ID: string | null;
|
|
2119
|
+
WETH_TOP: number | null;
|
|
2120
|
+
WETH_BASE: number | null;
|
|
2121
|
+
WETH_SCH: string | null;
|
|
2122
|
+
WETH_SYS: string | null;
|
|
2123
|
+
WETH_WETH: string | null;
|
|
2124
|
+
WETH_REM: string | null;
|
|
2125
|
+
FILE_FSET: string | null;
|
|
2126
|
+
constructor(init?: Partial<WETH>);
|
|
2127
|
+
}
|
|
2128
|
+
declare class WINS extends AgsGroup {
|
|
2129
|
+
static readonly code = "WINS";
|
|
2130
|
+
LOCA_ID: string | null;
|
|
2131
|
+
WINS_TESN: string | null;
|
|
2132
|
+
WINS_TOP: number | null;
|
|
2133
|
+
WINS_BASE: number | null;
|
|
2134
|
+
WINS_DIAM: number | null;
|
|
2135
|
+
WINS_DURN: string | null;
|
|
2136
|
+
WINS_REC: number | null;
|
|
2137
|
+
WINS_REM: string | null;
|
|
2138
|
+
FILE_FSET: string | null;
|
|
2139
|
+
constructor(init?: Partial<WINS>);
|
|
2140
|
+
}
|
|
2141
|
+
declare class WSTD extends AgsGroup {
|
|
2142
|
+
static readonly code = "WSTD";
|
|
2143
|
+
LOCA_ID: string | null;
|
|
2144
|
+
WSTG_DPTH: number | null;
|
|
2145
|
+
WSTD_NMIN: number | null;
|
|
2146
|
+
WSTD_POST: string | null;
|
|
2147
|
+
WSTD_REM: string | null;
|
|
2148
|
+
FILE_FSET: string | null;
|
|
2149
|
+
constructor(init?: Partial<WSTD>);
|
|
2150
|
+
}
|
|
2151
|
+
declare class WSTG extends AgsGroup {
|
|
2152
|
+
static readonly code = "WSTG";
|
|
2153
|
+
LOCA_ID: string | null;
|
|
2154
|
+
WSTG_DPTH: number | null;
|
|
2155
|
+
WSTG_DTIM: Date | null;
|
|
2156
|
+
WSTG_SEAL: number | null;
|
|
2157
|
+
WSTG_CAS: number | null;
|
|
2158
|
+
WSTG_REM: string | null;
|
|
2159
|
+
FILE_FSET: string | null;
|
|
2160
|
+
wstds: WSTD[];
|
|
2161
|
+
constructor(init?: Partial<WSTG>);
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2164
|
+
declare class Ags4Error extends Error {
|
|
2165
|
+
/** The validator exit code this failure carries (mirrors `ags4-check`). */
|
|
2166
|
+
readonly exitCode: number;
|
|
2167
|
+
constructor(message: string, exitCode?: number);
|
|
2168
|
+
}
|
|
2169
|
+
/** Input the OS couldn't open (the Node analog of Python's `FileNotFoundError`). */
|
|
2170
|
+
declare class FileNotFoundError extends Ags4Error {
|
|
2171
|
+
constructor(message: string, exitCode?: number);
|
|
2172
|
+
}
|
|
2173
|
+
/** Input has no GROUP rows — not a parseable AGS4 file. */
|
|
2174
|
+
declare class NotAgs4Error extends Ags4Error {
|
|
2175
|
+
constructor(message: string, exitCode?: number);
|
|
2176
|
+
}
|
|
2177
|
+
/** A recognised but unsupported edition (AGS3) — refused, not silently
|
|
2178
|
+
* validated against an AGS4 schema (O-30). */
|
|
2179
|
+
declare class UnsupportedEditionError extends Ags4Error {
|
|
2180
|
+
constructor(message: string, exitCode?: number);
|
|
2181
|
+
}
|
|
2182
|
+
/** Bad `dictVersion` / unimplemented external dictionary (O-28). */
|
|
2183
|
+
declare class BadDictError extends Ags4Error {
|
|
2184
|
+
constructor(message: string, exitCode?: number);
|
|
2185
|
+
}
|
|
2186
|
+
|
|
2187
|
+
/** Cross-system target categories — the lowercase labels the engine returns. */
|
|
2188
|
+
type CanonicalType = "string" | "integer" | "decimal" | "datetime" | "date" | "time" | "bool" | "enum";
|
|
2189
|
+
/** A parsed AGS value: number (integer/decimal), boolean (YN), string
|
|
2190
|
+
* (text/enum **and** the canonical datetime/date/time strings), or null. */
|
|
2191
|
+
type AgsValue = string | number | boolean | null;
|
|
2192
|
+
/** AGS spec type code → canonical category. Throws for unknown codes (mirrors
|
|
2193
|
+
* Python's `ValueError`). */
|
|
2194
|
+
declare function canonicalType(agsType: string): CanonicalType;
|
|
2195
|
+
|
|
2196
|
+
/** Parse an AGS4-shaped raw value into its canonical JS value (empty /
|
|
2197
|
+
* unparseable → null). datetime/date/time come back as the canonical **string**
|
|
2198
|
+
* (engine shape; `new Date(s)` if you want a Date). Non-string input is
|
|
2199
|
+
* stringified first (matches the Python wrapper). */
|
|
2200
|
+
declare function parseValue(raw: unknown, agsType: string): AgsValue;
|
|
2201
|
+
|
|
2202
|
+
type agsTypes_AgsValue = AgsValue;
|
|
2203
|
+
type agsTypes_CanonicalType = CanonicalType;
|
|
2204
|
+
declare const agsTypes_canonicalType: typeof canonicalType;
|
|
2205
|
+
declare const agsTypes_displayHint: typeof displayHint;
|
|
2206
|
+
declare const agsTypes_parseValue: typeof parseValue;
|
|
2207
|
+
declare namespace agsTypes {
|
|
2208
|
+
export { type agsTypes_AgsValue as AgsValue, type agsTypes_CanonicalType as CanonicalType, agsTypes_canonicalType as canonicalType, agsTypes_displayHint as displayHint, agsTypes_parseValue as parseValue };
|
|
2209
|
+
}
|
|
2210
|
+
|
|
2211
|
+
type HeadingStatus = "KEY" | "REQUIRED" | "OTHER";
|
|
2212
|
+
interface GeneratedHeading {
|
|
2213
|
+
readonly name: string;
|
|
2214
|
+
readonly status: HeadingStatus;
|
|
2215
|
+
readonly type: string;
|
|
2216
|
+
readonly unit: string | null;
|
|
2217
|
+
readonly description: string;
|
|
2218
|
+
}
|
|
2219
|
+
interface GeneratedGroup {
|
|
2220
|
+
readonly code: string;
|
|
2221
|
+
readonly contents: string;
|
|
2222
|
+
readonly parent: string | null;
|
|
2223
|
+
readonly isHighVolume: boolean;
|
|
2224
|
+
readonly headings: readonly GeneratedHeading[];
|
|
2225
|
+
}
|
|
2226
|
+
|
|
2227
|
+
/** One heading's descriptor: `{name, status, type, unit, description}`. */
|
|
2228
|
+
type Heading = GeneratedHeading;
|
|
2229
|
+
declare class GroupDescriptor {
|
|
2230
|
+
readonly code: string;
|
|
2231
|
+
readonly contents: string;
|
|
2232
|
+
readonly parent: string | null;
|
|
2233
|
+
readonly headings: readonly Heading[];
|
|
2234
|
+
readonly isHighVolume: boolean;
|
|
2235
|
+
constructor(g: GeneratedGroup);
|
|
2236
|
+
/** DuckDB table name (`g_<code>`) — for parity with the Python descriptor. */
|
|
2237
|
+
get table(): string;
|
|
2238
|
+
/** DuckDB view name (`v_<code>`). */
|
|
2239
|
+
get view(): string;
|
|
2240
|
+
get keyHeadings(): readonly Heading[];
|
|
2241
|
+
get nonKeyHeadings(): readonly Heading[];
|
|
2242
|
+
}
|
|
2243
|
+
/** Every standard AGS group, keyed by 4-letter code. */
|
|
2244
|
+
declare const GROUPS: Readonly<Record<string, GroupDescriptor>>;
|
|
2245
|
+
/** Single-group lookup; `undefined` for unknown codes. */
|
|
2246
|
+
declare function get(code: string): GroupDescriptor | undefined;
|
|
2247
|
+
/** Every direct child group of `parentCode`, alphabetically. */
|
|
2248
|
+
declare function childGroups(parentCode: string): GroupDescriptor[];
|
|
2249
|
+
/** Parent chain from `code` to root: `[code, parent, …, root]`. Throws for an
|
|
2250
|
+
* unknown code (so root groups — `[code]` — are distinguishable). */
|
|
2251
|
+
declare function ancestorChain(code: string): string[];
|
|
2252
|
+
/** KEY heading names a group inherits from its ancestors. */
|
|
2253
|
+
declare function inheritedKeyNames(code: string): Set<string>;
|
|
2254
|
+
|
|
2255
|
+
declare const registry_GROUPS: typeof GROUPS;
|
|
2256
|
+
type registry_GroupDescriptor = GroupDescriptor;
|
|
2257
|
+
declare const registry_GroupDescriptor: typeof GroupDescriptor;
|
|
2258
|
+
type registry_Heading = Heading;
|
|
2259
|
+
type registry_HeadingStatus = HeadingStatus;
|
|
2260
|
+
declare const registry_ancestorChain: typeof ancestorChain;
|
|
2261
|
+
declare const registry_childGroups: typeof childGroups;
|
|
2262
|
+
declare const registry_get: typeof get;
|
|
2263
|
+
declare const registry_inheritedKeyNames: typeof inheritedKeyNames;
|
|
2264
|
+
declare namespace registry {
|
|
2265
|
+
export { registry_GROUPS as GROUPS, registry_GroupDescriptor as GroupDescriptor, type registry_Heading as Heading, type registry_HeadingStatus as HeadingStatus, registry_ancestorChain as ancestorChain, registry_childGroups as childGroups, registry_get as get, registry_inheritedKeyNames as inheritedKeyNames };
|
|
2266
|
+
}
|
|
2267
|
+
|
|
2268
|
+
/** zstd-compress `src` → `dest`. `level` 1–22 (default 9). */
|
|
2269
|
+
declare function pack(src: string, dest: string, level?: number): PackStats;
|
|
2270
|
+
/** zstd-decompress `src` → `dest`. */
|
|
2271
|
+
declare function unpack(src: string, dest: string): UnpackStats;
|
|
2272
|
+
/** zstd-compress + age-passphrase-encrypt `src` → `dest`. */
|
|
2273
|
+
declare function lock(src: string, dest: string, password: string, level?: number): PackStats;
|
|
2274
|
+
/** age-passphrase-decrypt + zstd-decompress `src` → `dest`. Throws on a wrong
|
|
2275
|
+
* passphrase / non-passphrase envelope. */
|
|
2276
|
+
declare function unlock(src: string, dest: string, password: string): UnpackStats;
|
|
2277
|
+
|
|
2278
|
+
declare const transport_PackStats: typeof PackStats;
|
|
2279
|
+
declare const transport_UnpackStats: typeof UnpackStats;
|
|
2280
|
+
declare const transport_lock: typeof lock;
|
|
2281
|
+
declare const transport_pack: typeof pack;
|
|
2282
|
+
declare const transport_unlock: typeof unlock;
|
|
2283
|
+
declare const transport_unpack: typeof unpack;
|
|
2284
|
+
declare namespace transport {
|
|
2285
|
+
export { transport_PackStats as PackStats, transport_UnpackStats as UnpackStats, transport_lock as lock, transport_pack as pack, transport_unlock as unlock, transport_unpack as unpack };
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2288
|
+
interface ReadOptions {
|
|
2289
|
+
/** Validate/parse in-memory text instead of a file path. */
|
|
2290
|
+
text?: string;
|
|
2291
|
+
/** Source encoding label (`"utf-8"` default, `"windows-1252"`, …). */
|
|
2292
|
+
encoding?: string;
|
|
2293
|
+
}
|
|
2294
|
+
/** Parse an AGS4 file (`source` path) or in-memory `text` into an `Ags4File`.
|
|
2295
|
+
* Throws `NotAgs4Error` / `FileNotFoundError` / `UnsupportedEditionError` for
|
|
2296
|
+
* un-parseable input. */
|
|
2297
|
+
declare function read(source?: string, opts?: ReadOptions): Ags4File;
|
|
2298
|
+
interface ValidateOptions extends ReadOptions {
|
|
2299
|
+
/** Force an edition (`"4.0.3"`…`"4.2"`); default auto-detects from `TRAN_AGS`. */
|
|
2300
|
+
dictVersion?: string;
|
|
2301
|
+
/** Include warning-severity findings. */
|
|
2302
|
+
warnings?: boolean;
|
|
2303
|
+
/** Include FYI-severity findings. */
|
|
2304
|
+
fyi?: boolean;
|
|
2305
|
+
/** Also run Rule 20's on-disk half (the sibling `FILE/` tree must exist). */
|
|
2306
|
+
checkFiles?: boolean;
|
|
2307
|
+
}
|
|
2308
|
+
/** Validate an AGS4 file (`source` path) or in-memory `text` against the AGS4
|
|
2309
|
+
* rules. Throws for un-validatable input; rule *violations* come back in the
|
|
2310
|
+
* `Report`. */
|
|
2311
|
+
declare function validate(source?: string, opts?: ValidateOptions): Report;
|
|
2312
|
+
/** Write an `Ags4File` back to spec-correct AGS4 (byte-faithful to the source
|
|
2313
|
+
* DATA values). Returns `path`. */
|
|
2314
|
+
declare function write(source: Ags4File, path: string): string;
|
|
2315
|
+
/** Row-oriented group data: an array of `{HEADING: value}` objects. */
|
|
2316
|
+
type GroupRows = Array<Record<string, unknown>>;
|
|
2317
|
+
/** One group's data for `emitAgs4` — an arrow-js `Table` or row objects. */
|
|
2318
|
+
type GroupData = Table | GroupRows;
|
|
2319
|
+
interface EmitOptions {
|
|
2320
|
+
/** `"4.0.3" | "4.0.4" | "4.1" | "4.1.1" | "4.2"` (default `"4.1.1"`). */
|
|
2321
|
+
edition?: string;
|
|
2322
|
+
/** `"autofix"` (default) | `"report"` | `"strict"`. */
|
|
2323
|
+
mode?: "autofix" | "report" | "strict";
|
|
2324
|
+
}
|
|
2325
|
+
/** Build valid AGS4 from your own data — the data→AGS4 door (the inverse of
|
|
2326
|
+
* `read`). `groups` is either a **typed-graph root** (`new PROJ({…})`, walked
|
|
2327
|
+
* depth-first) OR a Map/array mapping each AGS group code to an arrow-js `Table`
|
|
2328
|
+
* or row objects whose **keys are the AGS headings** (`LOCA_ID`, …). UNIT/TYPE
|
|
2329
|
+
* are filled from the chosen `edition`; order is preserved (put `PROJ` first).
|
|
2330
|
+
* Needs no DuckDB. */
|
|
2331
|
+
declare function emitAgs4(groups: AgsGroup | Map<string, GroupData> | Array<[string, GroupData]>, opts?: EmitOptions): EmitResult;
|
|
2332
|
+
|
|
2333
|
+
export { ABBR, ASDI, Ags4Error, Ags4File, AgsGroup, AgsSubset, type AgsValue, BKFL, BadDictError, CBRG, CBRT, CDIA, CHIS, CHOC, CMPG, CMPT, CONG, CONL, CONS, CORE, type CanonicalType, DCPG, DCPT, DETL, DICT, DISC, DOBS, DPRB, DPRG, DREM, ECTN, ERES, type EmitFinding, type EmitOptions, EmitResult, FLSH, FRAC, FileNotFoundError, type Filter, GCHM, GEOL, GRAG, GRAT, type GroupData, GroupDescriptor, type GroupRows, HDIA, HDPH, HORN, type Heading, type HeadingStatus, IPEN, IPID, IPRG, IPRT, ISAG, ISAT, ISPT, IVAN, LBSG, LBST, LDEN, LLIN, LLPL, LNMC, LOCA, LPDN, LRES, LVAN, MCVG, MCVT, MOND, MONG, NotAgs4Error, PIPE, PLTG, PLTT, PMTD, PMTG, PMTL, PROJ, PTIM, PTST, type QueryOptions, RDEN, RELD, RPLT, RUCS, RWCO, type ReadOptions, Report, type Row, type RuleFinding, SAMP, SCDG, SCDT, SCPG, SCPT, SHBG, SHBT, TRAN, TREG, TREL, TREM, TRET, TRIG, TRIL, TRIT, TYPE, UNIT, UnsupportedEditionError, type ValidateOptions, WADD, WETH, WINS, WSTD, WSTG, agsTypes, emitAgs4, read, registry, transport, validate, write };
|