Metadata-Version: 2.1
Name: geometallurgy
Version: 0.4.16
Summary: Tools for the geometallurgist
Home-page: https://github.com/elphick/geometallurgy
Author: Greg
Author-email: 11791585+elphick@users.noreply.github.com
Requires-Python: >=3.10,<3.13
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Provides-Extra: all
Provides-Extra: blockmodel
Provides-Extra: spatial
Provides-Extra: validation
Requires-Dist: folium (>=0.16.0,<0.17.0) ; extra == "spatial"
Requires-Dist: omfpandas (>=0.8.1) ; extra == "blockmodel"
Requires-Dist: omfvista (>=0.3.0) ; extra == "blockmodel"
Requires-Dist: pandas (>=1.0)
Requires-Dist: pandera[io] (>=0.19.3,<0.21.0) ; extra == "validation"
Requires-Dist: periodictable (>=1.7.0,<2.0.0)
Requires-Dist: plotly (>=5.22.0,<6.0.0)
Requires-Dist: pyarrow (>=16.1.0,<18.0.0)
Requires-Dist: rioxarray (>=0.18.2,<0.19.0) ; extra == "spatial"
Project-URL: Documentation, https://elphick.github.io/geometallurgy
Project-URL: Repository, https://github.com/elphick/geometallurgy
Description-Content-Type: text/markdown

# Geometallurgy
[![PyPI](https://img.shields.io/pypi/v/geometallurgy.svg?logo=python&logoColor=white)](https://pypi.org/project/geometallurgy/)
[![Run Tests](https://github.com/Elphick/geometallurgy/actions/workflows/poetry_build_and_test.yml/badge.svg?branch=main)](https://github.com/Elphick/geometallurgy/actions/workflows/poetry_build_and_test.yml)
[![Publish Docs](https://github.com/Elphick/geometallurgy/actions/workflows/poetry_sphinx_docs_to_gh_pages.yml/badge.svg?branch=main)](https://github.com/Elphick/geometallurgy/actions/workflows/poetry_sphinx_docs_to_gh_pages.yml)

Geometallurgy is a python package that allows geoscientists and metallurgists to easily work with, and visualise
mass-compositional data.

Geoscientific disciples, like Metallurgy, Geometallurgy, Geology, and Mining Engineering, rely on the analysis of
data based on mass, moisture and chemistry.  The data is collected from drill-holes, samples, and process streams.
The data is used to model the behaviour of the material in the ground, and the material as it is processed.

The Geometallurgy package supports the geometallurgical workflow from drill-hole planning and data analysis, 
sample fractionation and mass balanced process simulation, through to 3D block model visualisation.
The is designed to handle large datasets and provide the necessary visualisations to support the workflow.
Plots are generally interactive to maximise context and insight. Assurance of data integrity is a key objective.

The package not only supports individual Samples, but collections of objects that are 
mathematically related in a Directional Graph (a.k.a. network or flowsheet).

This package is a rewrite of the [mass-composition](https://github.com/elphick/mass-composition) package
(based on pandas only instead of pandas/xarray).

[![example plot](https://elphick.github.io/mass-composition/_static/example_plot.png)](https://elphick.github.io/mass-composition/_static/example_plot.html)

## Prerequisites

Before you begin, ensure you have met the following requirements:
* You have installed the latest version of the mass-composition python package.
* You have a Windows/Linux/Mac machine.
* You have read the [docs](https://elphick.github.io/geometallurgy).

## Installing Geometallurgy

To install Geometallurgy, follow these steps:

```
pip install geometallurgy
```

Or, if poetry is more your flavour.

```
poetry add "geometallurgy"
```

## Using Geometallurgy

To use GeoMetallurgy to create a Sample object, follow these steps:

There are some basic requirements that the incoming DataFrame must meet.  We'll use a sample DataFrame here.

```python    
df_data = sample_data()
```

Create the object

```python
sample = Sample(df_data)
```

It is then trivial to calculate the weight average aggregate of the dataset.

```python
sample.aggregate()
```

Multiple composition analytes can be viewed in a single interactive parallel coordinates plot.

```python
sample = Sample(df_data.reset_index().set_index(['DHID', 'interval_from', 'interval_to']),
                name=name)

fig = sample.plot_parallel(color='Fe')
fig
```


Network visualisations and other plots are interactive.

For full examples, see the [gallery](/auto_examples/examples/index).

## License

This project uses the following license: [MIT](/license/license).


