API / geotoolkit3d / util / well / Direction / Direction
Type Aliases
Ƭ ComputeCallback: (input: InputValues, output: ComputedResult, tolerance?: number) => void
▸ (input, output, tolerance?): void
| Name | Type |
|---|---|
input | InputValues |
output | ComputedResult |
Optional tolerance | number |
void
Ƭ ComputeOptions: Object
The method options used for computing the deviation
| Name | Type | Description |
|---|---|---|
mode? | ComputeCallback | The method to use to compute the direction values |
tolerance? | number | Epsilon used to determine if a segment is a straight line |
Ƭ ComputedResult: Object
| Name | Type |
|---|---|
azimuth? | number[] |
inclination? | number[] |
md? | number[] |
Ƭ InitialPoint: Object
Initial direction point, will not be used as an input for the method but as the reference direction.
| Name | Type | Description |
|---|---|---|
azimuth? | number | Initial azimuth in radians |
inclination? | number | Initial inclination in radians |
md? | number | Initial measured depth value |
Ƭ InputValues: Object
The input values
| Name | Type | Description |
|---|---|---|
tvd | number[] | The true vertical depth values |
x? | number[] | The x values |
y? | number[] | The y values |