geost.base.PointHeader.select_by_depth#
- PointHeader.select_by_depth(top_min: float = None, top_max: float = None, end_min: float = None, end_max: float = None)[source]#
Select data from depth constraints. If a keyword argument is not given it will not be considered. e.g. if you need only boreholes that go deeper than -500 m use only end_max = -500.
- Parameters:
top_min (float, optional) – Minimum elevation of the borehole/cpt top, by default None.
top_max (float, optional) – Maximum elevation of the borehole/cpt top, by default None.
end_min (float, optional) – Minimum elevation of the borehole/cpt end, by default None.
end_max (float, optional) – Maximumelevation of the borehole/cpt end, by default None.
- Returns:
Instance of
PointHeader
or containing only objects selected by this method.- Return type:
Child of
PointHeader
.