videx-3d
Version:
React 3D component library designed for sub surface visualizations in the browser
10 lines (9 loc) • 603 B
TypeScript
import { WellboreHeader } from '../types/WellboreHeader';
/**
* Caluclate the segments top for a single well
* @param dictionary dictionary of wellbore headers indexed by wellbore name
* @param included array of wellbore headers that should be included
* @param selected id of selected wellbore if applicable (will be processed first => sequence = 0)
* @returns dictionary of segment tops in MD Msl indexed by wellbore id
*/
export declare function calculateWellSegments(dictionary: Record<string, WellboreHeader>, included: WellboreHeader[], selected?: string): Record<string, [number, number]>;