IntervalItem

class wellcad.com.IntervalItem(dispatch)

Stores a value that spans a depth interval.

Interval items are part of an Interval Log and store a single data value. Only numerical values are supported and depth intervals may overlap.

Example

>>> interval_log = borehole.log("Test")
>>> data = interval_log.interval_item_at_depth(10.5)
>>> data.value
23.45
>>> data.top_depth
9.0
property bottom_depth

The bottom depth of the interval item in current depth reference units

Type:

float

property top_depth

The top depth of the interval item in current depth reference units

Type:

float

property value

The value of the interval item.

Type:

float