LithoPattern

class wellcad.com.LithoPattern(dispatch)

Represents a lithological pattern. These are patterns within a litho dictionary (LithoDictionary).

You can find more information on your defined lithologies in your LithCAD library.

Example

>>> log = borehole.log("Lithology")
>>> dictionary = log.litho_dictionary
>>> pattern = dictionary.litho_pattern(0)
>>> pattern.code
'Sst'
property code

The lithological code of the pattern.

You can use the LithCAD tool to see your lithological symbols and associated codes.

Type

str

property description

The description ot the pattern.

Type

str

property height

The height of the pattern (in 1/10 mm).

Type

int

property repeatable

The option of the symbol to be repeated to fill an entire depth interval or not.

Type

bool

property width

The width of the pattern (in 1/10 mm).

Type

int