# Create a run folder
mkdir my_event_run
cd my_event_run
# Set up structure
mkdir DATA
# Copy configuration for your event
cp ../input.ctl .
# Copy observed data
cp /path/to/data/real_disp_* DATA/
# Go back to main directory and run
cd ..
python main.py --run my_event_runEach run folder (--run argument) must contain:
- input.ctl - Configuration file with all inversion parameters
- DATA/ - Directory with observed waveforms
- Either:
real_disp_x,real_disp_y,real_disp_z(flat files) - Or:
DATA/RAW/with SAC/MiniSEED files
- Either:
Results automatically created in <RUN_DIR>/output/:
na_results.json- Full results in JSON formatna_results.csv- Results in CSV formatFigures/NA_results_summary.png- Summary plot
python main.py --run event_2025_01for event in events/event_*; do
python main.py --run "$event" --no-plot
donecd /my/data/folder
python /path/to/kinematic_inversion/main.py --run .| Option | Purpose |
|---|---|
--run <DIR> |
Event run folder (default: current dir) |
--no-plot |
Skip plot generation (faster for batch) |
See RUN_FOLDER_GUIDE.md for comprehensive documentation including:
- Data format specifications
- Configuration file parameters
- Troubleshooting
- Advanced options