Skip to main content

Companion workflow engine for xraylarch.

Project description

Hollowfoot

PyPI badge

A work-flow engine for performing analysis of experimental X-ray data using xraylarch and other domain-specific frameworks.

A hollowfoot analysis is:

Declarative: A typical analysis workflow in hollowfoot is best thought of as a series of steps to be performed on some underlying data. The analysis engine is responsible for executing the steps for you when needed.

Jupyter-first: Many analysis frameworks, like xraylarch, provide tools that are used as part of some larger analysis application. Hollowfoot aims to extend these tools so that they can be used as first-class objects in a jupyter notebook environment.

Documentation

Sphinx-generated documentation for this project can be found here: https://spc-group.github.io/hollowfoot/

Usage

An example workflow for XAFS analysis might look like:

import hollowfoot as hf

analysis = (
    XAFSAnalysis  # What kind of analysis are we doing?
        .from_aps_20bmb("my_data_folder/")  # Load data from disk
        .to_mu("mono-energy", "It", "I0", is_transmission=True)  # Apply reference correction
        .plot_mu()  # Plot all data sets together
        .merge()  # Merge data sets into a single group
        .fit_edge_jump()  # Do some normalization, etc
        .subtract_background()  # Convert from µ(E) to χ(E)
        .plot_mu()  # Plot the single, corrected dataset
    	.summarize()  # Print out a summary of the steps that have been taken
)

Notice how each line of the previous code snippet describes a concise step of analysis. These steps can be re-ordered or commented out, making for easy comparisons between analysis strategies.

Installation

The following will download the package and load it into the python environment.

$ pip install hollowfoot

Running the Tests

$ uv run --dev pytest

File Format Support

XAS Data Interchange Format (XDI)

Hollowfoot includes an Xarray backend for loading .xdi files.l

The easiest way to import XDI files is with xarray.open_dataset():

import xarray as xr

dataset = xr.open_dataset("example.xdi")

It is also possible to load XDI data from a string using hollowfoot.xdi.load():

import hollowfoot as hf

with open("tests/example.xdi") as fp:
    dataset = hf.xdi.load(fp.read())

It is also possible to convert a dataset back to XDI:

# This example overwrites existing files, be careful!
with open("new_file.xdi", mode='w') as fp:
    fp.write(hf.xdi.dump(dataset))

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

hollowfoot-0.5.0.tar.gz (534.6 kB view details)

Uploaded Source

Built Distribution

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

hollowfoot-0.5.0-py3-none-any.whl (11.9 kB view details)

Uploaded Python 3

File details

Details for the file hollowfoot-0.5.0.tar.gz.

File metadata

  • Download URL: hollowfoot-0.5.0.tar.gz
  • Upload date:
  • Size: 534.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.13

File hashes

Hashes for hollowfoot-0.5.0.tar.gz
Algorithm Hash digest
SHA256 3e0bf04bd1b1b0f85d317fbf71658163ba212f9b12a703082852dd86599d74c3
MD5 f947265215721c42e1945c424caabd13
BLAKE2b-256 df1b5162a1e74b1286e541195202ee237ef4af7e93fc63a2e1f80e8bc7a27107

See more details on using hashes here.

File details

Details for the file hollowfoot-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: hollowfoot-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 11.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.13

File hashes

Hashes for hollowfoot-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f5ffb3236a0bde2502f36e97c83acc56fa9dce44bb1fafd097d45c9bcff8095d
MD5 e01c8b6003466e84b2f76cf72f43a737
BLAKE2b-256 131ff26be0e07a4e81035387193e137627186a0433bf7cada56a731b79dbe5b4

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