Object-based analysis functions for fractal dimensions and size distributions
Project description
objscale
Object-based analysis functions for fractal dimensions and size distributions in atmospheric sciences and beyond. Optimized for large datasets.
Description
objscale provides computational tools for analyzing the scaling properties of objects in 2D binary arrays. The package consolidates methods for calculating size distributions and fractal dimensions that account for finite domain effects and complex boundary conditions. Originally developed for atmospheric science applications, these methods apply broadly to any field where object scaling properties matter.
The package implements methods from two main papers:
- DeWitt & Garrett (2024) - finite domain effects in size distributions
- DeWitt et al. (in prep) - fractal dimensions for cloud field characterization
Key Functions
finite_array_powerlaw_exponent
Calculate power-law exponents for size distributions while accounting for finite domain truncation effects. Essential for accurate scaling analysis in bounded domains.
individual_fractal_dimension
Fractal dimension of individual objects using the perimeter-area relationship, with proper handling of interior holes and resolution effects.
ensemble_correlation_dimension
Correlation dimension for characterizing the collective scaling properties of object ensembles. Uses point-pair correlation analysis across multiple length scales.
ensemble_box_dimension
Box-counting dimension for object ensembles. New analyses should prefer ensemble_correlation_dimension. Counts boxes containing object boundaries at varying spatial scales.
ensemble_coarsening_dimension
Novel fractal dimension based on how total object perimeter changes under spatial coarsening operations. New analyses should prefer ensemble_correlation_dimension. Used in Rees et. al., 2024
Installation
pip install objscale
Quick Example
import objscale
import numpy as np
# Create binary array (e.g., cloud mask, percolation lattice)
arrays = [(np.random.random((1000, 1000)) < 0.3).astype(int) for _ in range(4)]
# Size distribution with finite domain corrections
(exponent, error), (log10_sizes, log10_counts) = objscale.finite_array_powerlaw_exponent(
arrays, 'area', return_counts=True
)
# Ensemble fractal dimensions
corr_dim, corr_error = objscale.ensemble_correlation_dimension(arrays)
box_dim, box_error = objscale.ensemble_box_dimension(arrays)
# Individual object analysis
ind_dim, ind_error = objscale.individual_fractal_dimension(arrays)
Features
- Finite domain corrections: Proper handling of truncation effects at domain boundaries as recommended by [DeWitt & Garrett (2024)](ACP - Finite domains cause bias in measured and modeled distributions of cloud sizes)
- Multiple size metrics: Area, perimeter, width, height, nested perimeter
- Arbitrary boundaries: Support for NaN-demarcated non-rectangular domains
- Individual and Ensemble methods: Characterize both individual and collective properties of object fields
- Performance optimized: Numba acceleration for computational efficiency. Can handle billions of individual objects on a mid-range laptop.
Requirements
- Python ≥ 3.8
- NumPy ≥ 1.20.0
- SciPy ≥ 1.7.0
- scikit-image ≥ 0.18.0
- Numba ≥ 0.56.0
Support Statement
This package consolidates research code developed over several years. While functional and tested, it should be considered research software with limited ongoing support. Users are encouraged to understand the underlying methods through the referenced papers before applying to their data.
References
If you use this package, please cite:
DeWitt, T. D. and Garrett, T. J.: Finite domains cause bias in measured and modeled distributions of cloud sizes, Atmos. Chem. Phys., 24, 8457–8472, https://doi.org/10.5194/acp-24-8457-2024, 2024.
Author
Thomas D. DeWitt
University of Utah Department of Atmospheric Sciences
Sonnet 4 with Claude Code
Anthropic
License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file objscale-0.1.0.tar.gz.
File metadata
- Download URL: objscale-0.1.0.tar.gz
- Upload date:
- Size: 21.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d0debee31192832a8c1afd13bd27ea289313e76952326797a7435eddf3794ca
|
|
| MD5 |
174e2ccfe11da91d4933f65888a773d1
|
|
| BLAKE2b-256 |
56a6beab6c097fa16c786913c63ee5350a09846126ca2bc0bf07c255d765d73a
|
File details
Details for the file objscale-0.1.0-py3-none-any.whl.
File metadata
- Download URL: objscale-0.1.0-py3-none-any.whl
- Upload date:
- Size: 20.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea4f97adc36718bb7b97bb85ba39178ff41e65c4ecf45365c0bcd842b224c8cb
|
|
| MD5 |
b299b8f321052ac88ab627ef0b5322b3
|
|
| BLAKE2b-256 |
5e036e5f7947cc65a4a645561540048d7389776fb76b38dc9923d17b5d0f0c1c
|