geost.bro.bro_geotop.StratGeotop.select_values#

classmethod StratGeotop.select_values(values: int | Iterable[int])[source]#

Select units by value.

Parameters:

units (str | Iterable[str]) – Number or array_like object of numbers with units to select.

Returns:

List of the selected units.

Return type:

List[enum]

Examples

Select units based on value:

>>> selection = StratGeotop.select_values(1100)

Or select a group of values:

>>> selection = StratGeotop.select_units([1100, 6010, 6100])