Drillholes Compositing¶
In [1]:
Copied!
import geolime as geo
from pyproj import CRS
import geolime as geo
from pyproj import CRS
In [3]:
Copied!
dh = geo.datasets.load("rocklea_dome/dh_hyper.geo")
dh = geo.datasets.load("rocklea_dome/dh_hyper.geo")
In [4]:
Copied!
geo.histogram_plot(
[{"object": dh, "property": "Fe_pct"}],
width=650,
height=400
)
geo.histogram_plot(
[{"object": dh, "property": "Fe_pct"}],
width=650,
height=400
)
In [5]:
Copied!
dh2 = geo.compositing(
drillholes=dh,
attribute_list=["Fe_pct"],
composit_len=2.,
minimum_composit_len=1.,
residual_len=1.,
method="Linear"
)
dh2 = geo.compositing(
drillholes=dh,
attribute_list=["Fe_pct"],
composit_len=2.,
minimum_composit_len=1.,
residual_len=1.,
method="Linear"
)
In [6]:
Copied!
geo.histogram_plot(
[
{"object": dh, "property": "Fe_pct"},
{"object": dh2, "property": "Fe_pct"},
],
width=650,
height=400,
histnorm="percent"
)
geo.histogram_plot(
[
{"object": dh, "property": "Fe_pct"},
{"object": dh2, "property": "Fe_pct"},
],
width=650,
height=400,
histnorm="percent"
)