import { Chronostratigraphic } from "./chronostratigraphic"; import { Lithostratigraphic } from "./lithostratigraphic"; /** * Describes a lithostratigraphic unit encountered in the wellbore. */ export interface WellTopSurfaceIngestion { /** * The name of the lithostratigraphic unit. */ name: string; /** * The measured depth of the top of the lithostratigraphic unit. */ topMeasuredDepth: number; /** * The measured depth of the base of the lithostratigraphic unit. */ baseMeasuredDepth?: number; lithostratigraphic?: Lithostratigraphic; chronostratigraphic?: Chronostratigraphic; }