import type { ColumnInfo, ZID, MeasurementVar } from "./gef-schemas.js"; export type CptRow = Record & { preExcavatedDepth: number; isVoid?: boolean; comment?: string; }; /** * Add computed depth columns to GEF data * * Adds: * - trueDepth: Inclination-corrected depth (positive, increasing down) * - elevation: Height relative to datum like NAP (can be negative) * * Handles pre-excavated depth (MEASUREMENTVAR 13) which indicates * soil was removed before testing, so first measurements start at that depth. */ export declare function addComputedDepthColumns(data: Array>, columnInfo: Array, zid: ZID | undefined, measurementVars: Array | undefined): Array; //# sourceMappingURL=depth-correction.d.ts.map