~ 1 min read

Drillholes & Block Model Visualization on Map

"I'm a science guy. I'm a geek. I love geology..." So do we.

This browser does not support PDFs. Please download the PDF to view it: Download PDF.

import geolime as geo

drillholes = geo.create_drillholes(
    name='Rocklea',
    collar,
    hs_assay,
    survey
)
drillholes.to_map(
    attribute='Fe_pct',
    agg_method='max'
)

image

import geolime as geo

grid = geo.Voxel(
    name='Rocklea',
    shape=[60, 100, 10],
    origin=[547000,7474000,390],
    axis=[
        [30.,0.,0.,],
        [0.,30.,0.,],
        [0.,0.,10.,],
    ]
)
grid.to_map(
    attribute='Z',
    agg_method='max'
)

image

import geolime as geo

geo.to_map(
    [
        {
            "object": grid,
            "attribute"="Fe_pct",
            "agg_method"="mean",
            "region"="HighGrade"
        },
        {
            "object": drillholes,
            "attribute"="Fe_pct",
            "agg_method"="mean",
        }
    ]
)

image

View on LinkedIn

Share: