Skip to main content

Localized probabilistic data integration

Project description

INTEGRATE Python Module

Build Status PyPI Documentation License: MIT Python 3.10+

This repository contains the INTEGRATE Python module for localized probabilistic data integration in geophysics.

Installation

Assuming you already have Python 3.10+ installed:

pip install integrate_module

On Windows, this will also install the Python wrapper for GA-AEM (1D EM forward modeling - GPL v2 code): ga-aem-forward-win

On Linux/macOS, you will need to install GA-AEM manually.

Using uv (recommended, from PyPI)

uv is a fast Python package manager. Install it first if needed:

# Install uv (Linux/macOS)
curl -LsSf https://astral.sh/uv/install.sh | sh
# or: pip install uv

# Create virtual environment in .venv/ inside the module root
cd path/to/integrate_module
uv venv .venv --python 3.11

# Activate
source .venv/bin/activate      # Linux/macOS
.venv\Scripts\activate         # Windows

# Install integrate module
uv pip install integrate_module

Using uv (from source)

# Install uv (Linux/macOS)
curl -LsSf https://astral.sh/uv/install.sh | sh
# or: pip install uv

# Create .venv and install all dependencies in one step (recommended for development)
cd path/to/integrate_module
uv sync

# Activate
source .venv/bin/activate      # Linux/macOS
.venv\Scripts\activate         # Windows

Using pip + venv (from PyPI, on Ubuntu)

# Install python3-venv
sudo apt install python3-venv

# Create virtual environment in .venv/ inside the module root
cd path/to/integrate_module
python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip

# Install integrate module
pip install integrate_module

Using pip + venv (from source, on Ubuntu)

# Install python3-venv
sudo apt install python3-venv

# Create virtual environment in .venv/ inside the module root
cd path/to/integrate_module
python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip

# Install integrate module from source
pip install -e .

Installing documentation dependencies

To also install the packages needed to build the Sphinx documentation, use the docs extra:

# With uv (from source)
uv sync --extra docs

# With uv pip (from source)
uv pip install -e ".[docs]"

# With pip (from source)
pip install -e ".[docs]"

Using Conda + pip (from PyPI)

Create a Conda environment (called integrate) and install the required modules:

conda create --name integrate python=3.10 numpy pandas matplotlib scipy tqdm requests h5py psutil
conda activate integrate
pip install integrate_module

Using Conda + pip (from source)

Create a Conda environment (called integrate) and install the required modules:

conda create --name integrate python=3.10 numpy pandas matplotlib scipy tqdm requests h5py psutil
conda activate integrate
pip install -e .

GA-AEM

In order to use GA-AEM for forward EM modeling, the 'gatdaem1d' Python module must be installed. Follow instructions at https://github.com/GeoscienceAustralia/ga-aem or use the information below.

PyPI package for Windows

On Windows, the ga-aem-forward-win package will be automatically installed, providing access to the GA-AEM forward code. It can be installed manually using:

pip install ga-aem-forward-win

Pre-compiled Python module for Windows

  1. Download the pre-compiled version of GA-AEM for Windows from the latest release: https://github.com/GeoscienceAustralia/ga-aem/releases (GA-AEM.zip)

  2. Download precompiled FFTW3 Windows DLLs from https://www.fftw.org/install/windows.html (fftw-3.3.5-dll64.zip)

  3. Extract both archives:

    • unzip GA-AEM.zip to get GA-AEM
    • unzip fftw-3.3.5-dll64.zip to get fftw-3.3.5-dll64
  4. Copy FFTW3 DLLs to GA-AEM Python directory:

    cp fftw-3.3.5-dll64/*.dll GA-AEM/python/gatdaem1d/

  5. Install the Python gatdaem1d module:

cd GA-AEM/python/
pip install -e .

# Test the installation
cd examples
python integrate_skytem.py

Compile GA-AEM Python module on Debian/Ubuntu/Linux

A script that downloads and installs GA-AEM is located in scripts/cmake_build_script_DebianUbuntu_gatdaem1d.sh. This script has been tested and confirmed to work on both Debian and Ubuntu distributions. Be sure to use the appropriate Python environment and then run:

sh scripts/cmake_build_script_DebianUbuntu_gatdaem1d.sh
cd ga-aem/install-ubuntu/python
pip install .

Compile GA-AEM Python module on macOS/Homebrew

First install Homebrew, then run:

sh ./scripts/cmake_build_script_homebrew_gatdaem1d.sh
cd ga-aem/install-homebrew/python
pip install .

Development

The main branch is the most stable, with less frequent updates but larger changes.

The develop branch contains the current development code and may be updated frequently. Some functions and examples may be broken.

An extra set of tests and examples are located in the experimental sub-branch https://github.com/cultpenguin/integrate_module_experimental/ <https://github.com/cultpenguin/integrate_module_experimental/>_. Please ask the developers for access to this branch if needed. To clone the main repository with the experimental branch, use:

git clone --recurse-submodules git@github.com:AUProbGeo/integrate_module.git

You may need to run the following command to update the submodules:

cd experimental
git submodule update --init --recursive

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

integrate_module-0.99.1.tar.gz (201.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

integrate_module-0.99.1-py3-none-any.whl (205.8 kB view details)

Uploaded Python 3

File details

Details for the file integrate_module-0.99.1.tar.gz.

File metadata

  • Download URL: integrate_module-0.99.1.tar.gz
  • Upload date:
  • Size: 201.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"26.04","id":"resolute","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for integrate_module-0.99.1.tar.gz
Algorithm Hash digest
SHA256 48f570a38dc10afe5ec6a51e3ef92b659ce152ecb1d0827d9727b8909c90a1de
MD5 f30d6b2585472be50949f1b2fb9e958a
BLAKE2b-256 0364415322024d6a58b5cc34f8ad945ec9c8815183271ce63859f7db84514a3a

See more details on using hashes here.

File details

Details for the file integrate_module-0.99.1-py3-none-any.whl.

File metadata

  • Download URL: integrate_module-0.99.1-py3-none-any.whl
  • Upload date:
  • Size: 205.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"26.04","id":"resolute","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for integrate_module-0.99.1-py3-none-any.whl
Algorithm Hash digest
SHA256 effdb5653440a6be1b056fb82cb23318f5edd6196efdd258f39b3ba8507fca83
MD5 3e26f52ce84335acb11e0c752c435ace
BLAKE2b-256 a122e01d25c7f24c05c1c634c10b60a6892739c1022d322b87f4086569f275f2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page