pyCoreRelator is a Python package designed for quantitative stratigraphic correlation across geological core and physical log data. The package performs segment-based (i.e., unit-based or bed-to-bed) correlation analysis by applying Dynamic Time Warping (DTW) algorithms for automated signal alignment, while honoring fundamental stratigraphic principles (e.g., superposition, age succession, pinchouts). The main tool computes multiple measures for assessing correlation quality, under the assumption that higher signal similarity indicates stronger correlation. These quality metrics can also be used to identify optimal correlation solutions. In addition, the package provides utility functions for preprocessing log data (e.g., cleaning, gap filling) and core image data (e.g., image stitching, clipping, converting color profiles or scans into digital logs) for use in correlation assessment.
Warning
pyCoreRelator is currently under active development and has not yet been peer-reviewed. Please use with caution.
- Python 3.9 to 3.13 (Python 3.14+ is not yet supported due to dependency constraints with numba/librosa)
Users can install pyCoreRelator directly from PyPI with pip command:
pip install pycorerelator
or from conda-forge repository with conda:
conda install pycorerelator
Note: Python 3.14+ is currently not supported because some core dependencies (particularly numba, which is required by librosa) have not yet added support for Python 3.14. Please use Python 3.9-3.13 for installation.
If you use the current pre-release of pyCoreRelator in your work, please cite:
Lai, L.S.-H. (2025) pyCoreRelator. Zenodo, https://doi.org/10.5281/zenodo.17847259
Note
A manuscript describing the methodology and applications of pyCoreRelator is currently in preparation for submission to a peer-reviewed journal.
For questions, feedback, or collaboration opportunities, please contact Larry Lai (larry.lai@beg.utexas.edu, larrysyuhenglai@gmail.com) or visit the Quantitative Clastics Laboratory at the Bureau of Economic Geology, The University of Texas at Austin.
- Segment-Based DTW Correlation: Divide cores into analyzable segments using user-picked or machine-learning based (future feature) depth boundaries, enabling controls on the stratigraphic pinchouts or forced correlation datums
- Interactive Core Datum Picking: Manual stratigraphic boundary picking with real-time visualization, category-based classification, and CSV export for quality control
- Age Constraints Integration: Apply chronostratigraphic constraints to search the optimal correlation solutions
- Quality Assessment: Compute metrics for the quality of correlation and optimal solution search.
- Complete DTW Path Finding: Identify correlation DTW paths spanning entire cores from top to bottom
- Null Hypothesis Testing: Generate synthetic cores and test correlation significance with multi-parameter analysis
- Log Data Cleaning & Processing: Convert core images (CT scans, RGB photos) to digital log data with capabilities of automated brightness/color profile extraction, image alignment & stitching
- Machine Learning Data Imputation: Advanced ML-based gap filling for core log data using ensemble methods (Random Forest, XGBoost, LightGBM) with configurable feature weighting and trend constraints
- Multi-dimensional Log Support: Handle multiple log types (MS, CT, RGB, density) simultaneously with dependent or independent multi-dimentiaonl DTW approach
- Visualizations: DTW cost matrix and paths, segment-wise core correlations, animated sequences, and statistical analysis for the correlation solutions
The package computes comprehensive quality indicators for each correlation with enhanced statistical analysis:
- Correlation Coefficient: [Default] Pearson's r between DTW aligned sequences
- Normalized DTW Distance: [Default] Normalized DTW cost per alignment
- DTW Warping Ratio: DTW distance relative to Euclidean distance
- DTW Warping Efficiency: Efficiency measure combining DTW path length and alignment quality
- Diagonality Percentage: 100% = perfect diagonal alignment in the DTW matrix
- Age Overlap Percentage: Chronostratigraphic compatibility when age constraints applied
The package includes several Jupyter notebooks demonstrating real-world applications:
Processing, stitching, and converting RGB core images into RGB color logs
Processing, stitching, and converting CT scan images into CT intensity (brightness) logs
Machine learning-based data processing and gap filling for core log data
Interactive stratigraphic boundary picking with real-time visualization and category-based classification
Comprehensive workflow with core correlation showing full analysis pipeline
Synthetic data generation examples
Comparison against synthetic cores with multi-parameter analysis
Detailed function documentation is available in FUNCTION_DOCUMENTATION.md.
pyCoreRelator/
├── analysis/ # Core correlation analysis functions
│ ├── dtw_core.py # DTW computation & comprehensive analysis
│ ├── segments.py # Segment identification & manipulation
│ ├── path_finding.py # Complete DTW path discovery algorithms
│ ├── path_combining.py # DTW path combination & merging
│ ├── path_helpers.py # DTW path processing utilities
│ ├── quality.py # Quality indicators & correlation metrics
│ ├── age_models.py # Age constraint handling & interpolation
│ ├── diagnostics.py # Chain break analysis & debugging
│ ├── syn_strat.py # Synthetic data generation & testing
│ └── syn_strat_plot.py # Synthetic stratigraphy visualization
├── preprocessing/ # Data preprocessing & image processing
│ ├── ct_processing.py # CT image processing & brightness analysis
│ ├── ct_plotting.py # CT visualization functions
│ ├── rgb_processing.py # RGB image processing & color profile extraction
│ ├── rgb_plotting.py # RGB visualization functions
│ ├── datum_picker.py # Interactive core boundary picking
│ ├── gap_filling.py # ML-based data gap filling
│ └── gap_filling_plots.py # Gap filling visualization
└── utils/ # Utility functions
├── data_loader.py # Multi-format data loading with directory support (includes load_core_log_data)
├── path_processing.py # DTW path analysis & optimization
├── plotting.py # Core plotting & DTW visualization
├── matrix_plots.py # DTW matrix & path overlays
├── animation.py # Animated correlation sequences
└── helpers.py # General utility functions
Python 3.9 to 3.13 with the following packages:
Core Dependencies:
numpy>=1.20.0- Numerical computing and array operationspandas>=1.3.0- Data manipulation and analysisscipy>=1.7.0- Scientific computing and optimizationmatplotlib>=3.5.0- Plotting and visualizationPillow>=8.3.0- Image processingimageio>=2.9.0- GIF/video animation creationlibrosa>=0.9.0- Audio/signal processing for DTW algorithmstqdm>=4.60.0- Progress barsjoblib>=1.1.0- Parallel processingIPython>=7.25.0- Interactive environment supportpsutil>=5.8.0- System utilities and memory monitoringpydicom>=2.3.0- Image processing for CT scan DICOM filesopencv-python>=4.5.0- Computer vision and image processing
Machine Learning Dependencies:
scikit-learn>=1.0.0- Machine learning algorithms and preprocessingxgboost>=1.6.0- XGBoost gradient boosting frameworklightgbm>=3.3.0- LightGBM gradient boosting framework
Optional Dependencies:
ipympl>=0.9.0- Interactive matplotlib widgets for depth picking functions (for Jupyter notebooks)scikit-image>=0.18.0- Advanced image processing features
pyCoreRelator is licensed under the GNU Affero General Public License 3.0. This means that if you modify and distribute this software, or use it to provide a network service, you must make your modified source code available under the same license. See the LICENSE file for full terms and conditions.
