import { WellTopSurfaceDepth } from "./wellTopSurfaceDepth"; import { Chronostratigraphic } from "./chronostratigraphic"; import { Lithostratigraphic } from "./lithostratigraphic"; /** * Describes a lithostratigraphic unit encountered in the wellbore. */ export interface WellTopSurface { /** * The name of the lithostratigraphic unit. */ name: string; /** * The top surface of the lithostratigraphic unit. */ top: WellTopSurfaceDepth; /** * The base of the lithostratigraphic unit, if available. */ base?: WellTopSurfaceDepth; lithostratigraphic?: Lithostratigraphic; chronostratigraphic?: Chronostratigraphic; }