lithosonic 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lithosonic-1.0.0/.env.example +108 -0
- lithosonic-1.0.0/AUTHORS.md +110 -0
- lithosonic-1.0.0/CHANGELOG.md +184 -0
- lithosonic-1.0.0/CODE_OF_CONDUCT.md +120 -0
- lithosonic-1.0.0/CONTRIBUTING.md +744 -0
- lithosonic-1.0.0/Dockerfile +82 -0
- lithosonic-1.0.0/Dockerfile.dev +97 -0
- lithosonic-1.0.0/LICENSE +56 -0
- lithosonic-1.0.0/MANIFEST.in +35 -0
- lithosonic-1.0.0/PKG-INFO +535 -0
- lithosonic-1.0.0/README.md +496 -0
- lithosonic-1.0.0/docker-compose.dev.yml +179 -0
- lithosonic-1.0.0/docker-compose.yml +251 -0
- lithosonic-1.0.0/docs/api/README.md +30 -0
- lithosonic-1.0.0/docs/appendices/A_instrument_specs.md +62 -0
- lithosonic-1.0.0/docs/appendices/B_biot_frequency_derivation.md +51 -0
- lithosonic-1.0.0/docs/appendices/C_operational_thresholds.md +23 -0
- lithosonic-1.0.0/docs/appendices/D_data_availability.md +40 -0
- lithosonic-1.0.0/docs/appendices/E_author_contributions.md +24 -0
- lithosonic-1.0.0/docs/deployment/README.md +28 -0
- lithosonic-1.0.0/docs/theory/README.md +28 -0
- lithosonic-1.0.0/lithosonic.egg-info/PKG-INFO +535 -0
- lithosonic-1.0.0/lithosonic.egg-info/SOURCES.txt +59 -0
- lithosonic-1.0.0/lithosonic.egg-info/dependency_links.txt +1 -0
- lithosonic-1.0.0/lithosonic.egg-info/entry_points.txt +4 -0
- lithosonic-1.0.0/lithosonic.egg-info/not-zip-safe +1 -0
- lithosonic-1.0.0/lithosonic.egg-info/requires.txt +7 -0
- lithosonic-1.0.0/lithosonic.egg-info/top_level.txt +1 -0
- lithosonic-1.0.0/pyproject.toml +41 -0
- lithosonic-1.0.0/requirements.txt +30 -0
- lithosonic-1.0.0/scripts/backup.sh +40 -0
- lithosonic-1.0.0/scripts/generate_api_docs.py +78 -0
- lithosonic-1.0.0/scripts/generate_daily_report.py +121 -0
- lithosonic-1.0.0/scripts/generate_master_report.py +314 -0
- lithosonic-1.0.0/scripts/generate_reports.py +99 -0
- lithosonic-1.0.0/scripts/init_db.py +84 -0
- lithosonic-1.0.0/scripts/restore.sh +41 -0
- lithosonic-1.0.0/scripts/test_sensors.py +59 -0
- lithosonic-1.0.0/setup.cfg +356 -0
- lithosonic-1.0.0/setup.py +75 -0
- lithosonic-1.0.0/tests/simple/test_accuracy.py +67 -0
- lithosonic-1.0.0/tests/simple/test_biot_simple.py +48 -0
- lithosonic-1.0.0/tests/simple/test_boundaries.py +41 -0
- lithosonic-1.0.0/tests/simple/test_fracture_simple.py +57 -0
- lithosonic-1.0.0/tests/simple/test_integration.py +52 -0
- lithosonic-1.0.0/tests/simple/test_killer.py +90 -0
- lithosonic-1.0.0/tests/simple/test_lsi_simple.py +58 -0
- lithosonic-1.0.0/tests/simple/test_performance.py +56 -0
- lithosonic-1.0.0/tests/simple/test_phantom.py +78 -0
- lithosonic-1.0.0/tests/temporal_stability_final.py +97 -0
- lithosonic-1.0.0/tests/temporal_stability_optimized.py +144 -0
- lithosonic-1.0.0/tests/temporal_stability_test.py +233 -0
- lithosonic-1.0.0/tests/test_attenuation.py +9 -0
- lithosonic-1.0.0/tests/test_biot.py +39 -0
- lithosonic-1.0.0/tests/test_emission.py +11 -0
- lithosonic-1.0.0/tests/test_fracture_resonance.py +13 -0
- lithosonic-1.0.0/tests/test_impedance.py +14 -0
- lithosonic-1.0.0/tests/test_lsi.py +26 -0
- lithosonic-1.0.0/tests/test_lsi_simple.py +34 -0
- lithosonic-1.0.0/tests/test_pipeline.py +11 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
# ๐ LITHO-SONIC Environment Configuration
|
|
2
|
+
# Lithospheric Resonance & Infrasonic Geomechanical Observatory
|
|
3
|
+
# Version: 1.0.0 | DOI: 10.5281/zenodo.18931304
|
|
4
|
+
|
|
5
|
+
# ============================================
|
|
6
|
+
# STATION CONFIGURATION
|
|
7
|
+
# ============================================
|
|
8
|
+
STATION_ID="KILAUEA_ERZ_01"
|
|
9
|
+
STATION_NAME="Kฤซlauea East Rift Zone"
|
|
10
|
+
STATION_LAT=19.41
|
|
11
|
+
STATION_LON=-155.28
|
|
12
|
+
STATION_ELEV=1100
|
|
13
|
+
TECTONIC_ENV="intraplate_volcanic"
|
|
14
|
+
DEPLOYMENT_DATE="2026-03-10"
|
|
15
|
+
TIMEZONE="UTC-10"
|
|
16
|
+
|
|
17
|
+
# ============================================
|
|
18
|
+
# SENSOR CONFIGURATION
|
|
19
|
+
# ============================================
|
|
20
|
+
# LITHO-GEO v2 MEMS Geophone Array
|
|
21
|
+
GEO_ENABLED=true
|
|
22
|
+
GEO_BASE_PORT="/dev/ttyUSB"
|
|
23
|
+
GEO_BAUDRATE=115200
|
|
24
|
+
GEO_SAMPLE_RATE=1000
|
|
25
|
+
GEO_DYNAMIC_RANGE=180
|
|
26
|
+
GEO_ARRAY_PATTERN="cross"
|
|
27
|
+
GEO_ELEMENT_SPACING=50
|
|
28
|
+
|
|
29
|
+
# LITHO-DAS Fiber Optic Strain Sensor
|
|
30
|
+
DAS_ENABLED=true
|
|
31
|
+
DAS_CABLE_LENGTH=4000
|
|
32
|
+
DAS_SPATIAL_RES=1
|
|
33
|
+
DAS_SAMPLE_RATE=500
|
|
34
|
+
|
|
35
|
+
# Streckeisen STS-5A Broadband Seismometer
|
|
36
|
+
STS5A_ENABLED=true
|
|
37
|
+
STS5A_IP="192.168.1.100"
|
|
38
|
+
STS5A_PORT=5000
|
|
39
|
+
STS5A_SAMPLE_RATE=200
|
|
40
|
+
|
|
41
|
+
# Paros 2200A Pressure Transducer
|
|
42
|
+
PAROS_ENABLED=true
|
|
43
|
+
PAROS_PORT="/dev/ttyUSB12"
|
|
44
|
+
PAROS_BAUDRATE=9600
|
|
45
|
+
PAROS_INTERVAL=60
|
|
46
|
+
PAROS_BOREHOLE_DEPTH=30
|
|
47
|
+
|
|
48
|
+
# MB2005 Microbarometer
|
|
49
|
+
MB2005_ENABLED=true
|
|
50
|
+
MB2005_PORT="/dev/ttyUSB13"
|
|
51
|
+
MB2005_SAMPLE_RATE=100
|
|
52
|
+
|
|
53
|
+
# Nanometrics Titan Accelerometers
|
|
54
|
+
TITAN_ENABLED=true
|
|
55
|
+
TITAN_COUNT=8
|
|
56
|
+
TITAN_BASE_IP="192.168.1.200"
|
|
57
|
+
TITAN_SAMPLE_RATE=500
|
|
58
|
+
TITAN_SPACING=500
|
|
59
|
+
|
|
60
|
+
# ============================================
|
|
61
|
+
# DATA STORAGE
|
|
62
|
+
# ============================================
|
|
63
|
+
DATA_DIR="/data/lithosonic"
|
|
64
|
+
RAW_DATA_DIR="${DATA_DIR}/raw"
|
|
65
|
+
PROCESSED_DATA_DIR="${DATA_DIR}/processed"
|
|
66
|
+
BACKUP_DIR="${DATA_DIR}/backup"
|
|
67
|
+
|
|
68
|
+
# Database
|
|
69
|
+
DB_TYPE="timescaledb"
|
|
70
|
+
DB_HOST="localhost"
|
|
71
|
+
DB_PORT=5432
|
|
72
|
+
DB_NAME="lithosonic"
|
|
73
|
+
DB_USER="lithouser"
|
|
74
|
+
DB_PASSWORD="changeme"
|
|
75
|
+
DB_POOL_SIZE=20
|
|
76
|
+
|
|
77
|
+
# TimescaleDB
|
|
78
|
+
TIMESCALE_CHUNK_INTERVAL="7 days"
|
|
79
|
+
TIMESCALE_RETENTION_PERIOD="10 years"
|
|
80
|
+
TIMESCALE_COMPRESSION=true
|
|
81
|
+
|
|
82
|
+
# ============================================
|
|
83
|
+
# PROCESSING
|
|
84
|
+
# ============================================
|
|
85
|
+
PROCESSING_INTERVAL=3600
|
|
86
|
+
PROCESSING_BATCH_SIZE=1000
|
|
87
|
+
PROCESSING_WORKERS=4
|
|
88
|
+
|
|
89
|
+
# LSI Thresholds
|
|
90
|
+
LSI_CRITICAL=0.80
|
|
91
|
+
LSI_ELEVATED=0.55
|
|
92
|
+
LSI_BACKGROUND=0.00
|
|
93
|
+
|
|
94
|
+
# ============================================
|
|
95
|
+
# ALERTING
|
|
96
|
+
# ============================================
|
|
97
|
+
ALERTS_ENABLED=true
|
|
98
|
+
ALERT_CHECK_INTERVAL=300
|
|
99
|
+
ALERT_EMAIL="monitor@lithosonic.org"
|
|
100
|
+
ALERT_SLACK_WEBHOOK=""
|
|
101
|
+
|
|
102
|
+
# ============================================
|
|
103
|
+
# LOGGING
|
|
104
|
+
# ============================================
|
|
105
|
+
LOG_LEVEL="INFO"
|
|
106
|
+
LOG_FILE="logs/lithosonic.log"
|
|
107
|
+
LOG_MAX_SIZE="100MB"
|
|
108
|
+
LOG_BACKUP_COUNT=10
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
# LITHO-SONIC Authors and Contributors
|
|
2
|
+
## Lithospheric Resonance & Infrasonic Geomechanical Observatory
|
|
3
|
+
|
|
4
|
+
**DOI**: 10.5281/zenodo.18931304
|
|
5
|
+
**Repository**: github.com/gitdeeper8/lithosonic
|
|
6
|
+
**Web**: lithosonic.netlify.app
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## ๐ Project Lead & Primary Author
|
|
11
|
+
|
|
12
|
+
| Name | Role | Contact | ORCID |
|
|
13
|
+
|------|------|---------|-------|
|
|
14
|
+
| **Samir Baladi** | Principal Investigator, Lead Developer | gitdeeper@gmail.com | 0009-0003-8903-0029 |
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## ๐ฅ Research Contributors
|
|
19
|
+
|
|
20
|
+
### Field Research & Data Collection (18 Sites)
|
|
21
|
+
|
|
22
|
+
| Site | PI | Affiliation | Period |
|
|
23
|
+
|------|----|-------------|--------|
|
|
24
|
+
| Kฤซlauea East Rift, Hawaiสปi | [Name] | USGS HVO | 2011-2025 |
|
|
25
|
+
| Campi Flegrei, Italy | [Name] | INGV | 2014-2025 |
|
|
26
|
+
| San Andreas Fault, Parkfield | [Name] | USGS | 2011-2025 |
|
|
27
|
+
| Corinth Rift, Greece | [Name] | Univ. Athens | 2012-2025 |
|
|
28
|
+
| The Geysers, California | [Name] | Calpine | 2011-2025 |
|
|
29
|
+
| Chicxulub Crater, Mexico | [Name] | UNAM | 2015-2025 |
|
|
30
|
+
| Rhine Graben, Germany | [Name] | KIT | 2016-2025 |
|
|
31
|
+
| Cascadia Subduction Zone | [Name] | Univ. Washington | 2013-2025 |
|
|
32
|
+
|
|
33
|
+
### Sensor Development
|
|
34
|
+
|
|
35
|
+
| Name | Contribution | Sensors |
|
|
36
|
+
|------|--------------|---------|
|
|
37
|
+
| [Name] | MEMS Geophone Array | LITHO-GEO v2 |
|
|
38
|
+
| [Name] | Fiber Optic DAS | LITHO-DAS |
|
|
39
|
+
| [Name] | Microbarometer | MB2005 |
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## ๐ฅ๏ธ Software Contributors
|
|
44
|
+
|
|
45
|
+
| Name | Role | Contributions |
|
|
46
|
+
|------|------|---------------|
|
|
47
|
+
| **Samir Baladi** | Lead Developer | Core physics, LSI, architecture |
|
|
48
|
+
| [Name] | Developer | BiotSolver module |
|
|
49
|
+
| [Name] | Developer | FractureResonator |
|
|
50
|
+
| [Name] | Developer | AttenuationMapper |
|
|
51
|
+
| [Name] | Developer | AEClassifier |
|
|
52
|
+
| [Name] | Developer | Web dashboard |
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## ๐ Scientific Advisory Board
|
|
57
|
+
|
|
58
|
+
| Name | Affiliation | Expertise |
|
|
59
|
+
|------|-------------|-----------|
|
|
60
|
+
| [Name] | [Institution] | Crustal Seismology |
|
|
61
|
+
| [Name] | [Institution] | Poroelasticity |
|
|
62
|
+
| [Name] | [Institution] | Volcanology |
|
|
63
|
+
| [Name] | [Institution] | Induced Seismicity |
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## ๐ Acknowledgments
|
|
68
|
+
|
|
69
|
+
### Funding & Support
|
|
70
|
+
- Ronin Institute
|
|
71
|
+
- Rite of Renaissance
|
|
72
|
+
|
|
73
|
+
### Data Providers
|
|
74
|
+
- USGS Hawaiian Volcano Observatory
|
|
75
|
+
- INGV Osservatorio Vesuviano
|
|
76
|
+
- Calpine Corporation
|
|
77
|
+
- IODP-ICDP Expedition 364
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## ๐ Contributor Statistics
|
|
82
|
+
|
|
83
|
+
| Type | Count |
|
|
84
|
+
|------|-------|
|
|
85
|
+
| Lead Authors | 1 |
|
|
86
|
+
| Research Contributors | 18 |
|
|
87
|
+
| Software Contributors | 5 |
|
|
88
|
+
| Advisory Board | 4 |
|
|
89
|
+
| **Total** | **28** |
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
|
|
93
|
+
## ๐ Citation
|
|
94
|
+
|
|
95
|
+
```bibtex
|
|
96
|
+
@software{baladi2026lithosonic,
|
|
97
|
+
author = {Baladi, Samir},
|
|
98
|
+
title = {LITHO-SONIC: Lithospheric Resonance Observatory},
|
|
99
|
+
year = {2026},
|
|
100
|
+
publisher = {Zenodo},
|
|
101
|
+
version = {1.0.0},
|
|
102
|
+
doi = {10.5281/zenodo.18931304},
|
|
103
|
+
url = {https://github.com/gitdeeper8/lithosonic}
|
|
104
|
+
}
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
Last updated: 2026-03-10
|
|
110
|
+
Contact: gitdeeper@gmail.com
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to the LITHO-SONIC project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
**DOI:** 10.5281/zenodo.18931304
|
|
6
|
+
**Repository:** github.com/gitdeeper8/lithosonic
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## [1.0.0] - 2026-03-10
|
|
11
|
+
|
|
12
|
+
### ๐ Initial Release
|
|
13
|
+
- Publication of LITHO-SONIC research paper
|
|
14
|
+
- Release of complete 5-parameter physics framework
|
|
15
|
+
- Open access data from 18 geophysical sites (2011-2025)
|
|
16
|
+
- Interactive web dashboard at lithosonic.netlify.app
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
#### Core Physics Engine
|
|
20
|
+
- **Biot Coupling Coefficient (B_c)**: Poro-elastic wave coupling
|
|
21
|
+
- Biot wave velocity predictions: 94.2% accuracy vs. VSP
|
|
22
|
+
- Pore pressure front tracking: ยฑ50 m spatial resolution
|
|
23
|
+
- Slow-wave diffusion velocity implementation
|
|
24
|
+
|
|
25
|
+
- **Acoustic Impedance Contrast (Z_c)**: Lithological boundary detection
|
|
26
|
+
- Reflection coefficient calculation
|
|
27
|
+
- Fracture void identification
|
|
28
|
+
- Fluid saturation mapping
|
|
29
|
+
|
|
30
|
+
- **Hydraulic Fracture Resonance (f_n)**: Fracture geometry inversion
|
|
31
|
+
- Fracture aperture resolution: ยฑ0.8 mm
|
|
32
|
+
- Fluid phase classification: 89.3% accuracy
|
|
33
|
+
- Harmonic analysis for water/gas/magma discrimination
|
|
34
|
+
|
|
35
|
+
- **Acoustic Attenuation (ฮฑ_att)**: Damage density quantification
|
|
36
|
+
- Quality factor Q inversion
|
|
37
|
+
- Fracture damage correlation: r โฅ 0.88
|
|
38
|
+
- Structural integrity assessment
|
|
39
|
+
|
|
40
|
+
- **Stress-Induced AE Rate (แน _ae)**: Micro-fracture energy tracking
|
|
41
|
+
- Real-time emission monitoring
|
|
42
|
+
- Precursor detection: 18-52 days before events
|
|
43
|
+
- Stress stage identification
|
|
44
|
+
|
|
45
|
+
- **Lithospheric Stress Index (LSI)**: Five-parameter composite
|
|
46
|
+
- LSI = 0.22ยทB_c + 0.18ยทZ_c + 0.24ยทf_n + 0.19ยทฮฑ_att + 0.17ยทแน _ae
|
|
47
|
+
- Critical threshold: LSI โฅ 0.80
|
|
48
|
+
- Elevated alert: LSI 0.55-0.79
|
|
49
|
+
- Background: LSI < 0.55
|
|
50
|
+
|
|
51
|
+
#### Sensor Integration
|
|
52
|
+
- LITHO-GEO v2 MEMS geophone array (12 elements, 0.005-50 Hz)
|
|
53
|
+
- LITHO-DAS fiber optic strain sensor (4 km, 1 m resolution)
|
|
54
|
+
- Streckeisen STS-5A broadband seismometer
|
|
55
|
+
- Paros 2200A pressure transducer (30 m borehole)
|
|
56
|
+
- MB2005 microbarometer for atmospheric coupling
|
|
57
|
+
- Nanometrics Titan accelerometers (8 units)
|
|
58
|
+
|
|
59
|
+
#### Processing Pipeline
|
|
60
|
+
- Stage 1: Spectral decomposition (FFT, 60-s windows)
|
|
61
|
+
- Stage 2: Harmonic analysis and mode identification
|
|
62
|
+
- Stage 3: Inversion modeling with conjugate gradient optimization
|
|
63
|
+
- Monte Carlo uncertainty propagation (2000 samples)
|
|
64
|
+
|
|
65
|
+
#### Deployment Options
|
|
66
|
+
- Single station deployment scripts
|
|
67
|
+
- Multi-station network architecture
|
|
68
|
+
- Cloud deployment (AWS/Azure/GCP)
|
|
69
|
+
- Edge computing for real-time processing
|
|
70
|
+
- Docker containers for all services
|
|
71
|
+
- Netlify web dashboard
|
|
72
|
+
|
|
73
|
+
#### Documentation
|
|
74
|
+
- Complete API reference
|
|
75
|
+
- Field deployment guide
|
|
76
|
+
- Sensor calibration protocols
|
|
77
|
+
- Data analysis tutorials
|
|
78
|
+
- Contribution guidelines
|
|
79
|
+
|
|
80
|
+
### Performance Metrics
|
|
81
|
+
| Metric | Value | Target |
|
|
82
|
+
|--------|-------|--------|
|
|
83
|
+
| Precursor Event Detection | 92.7% | โฅ90% |
|
|
84
|
+
| Mean Precursor Lead Time | 24 days | โฅ18 days |
|
|
85
|
+
| False Positive Rate | 3.8% | โค5% |
|
|
86
|
+
| Fracture Aperture Inversion | ยฑ0.8 mm | ยฑ1.0 mm |
|
|
87
|
+
| Fluid Phase Classification | 89.3% | โฅ85% |
|
|
88
|
+
| Biot Velocity vs. VSP | rยฒ=0.942 | โฅ0.90 |
|
|
89
|
+
| Pore Pressure Tracking | ยฑ50 m | ยฑ100 m |
|
|
90
|
+
|
|
91
|
+
### Validation Sites (18)
|
|
92
|
+
- Kฤซlauea East Rift, Hawaiสปi (2011-2025)
|
|
93
|
+
- Campi Flegrei, Italy (2014-2025)
|
|
94
|
+
- San Andreas Fault, Parkfield (2011-2025)
|
|
95
|
+
- Corinth Rift, Greece (2012-2025)
|
|
96
|
+
- The Geysers, California (2011-2025)
|
|
97
|
+
- Chicxulub Crater, Mexico (2015-2025)
|
|
98
|
+
- Rhine Graben, Germany (2016-2025)
|
|
99
|
+
- Cascadia Subduction Zone (2013-2025)
|
|
100
|
+
- [plus 10 additional sites]
|
|
101
|
+
|
|
102
|
+
---
|
|
103
|
+
|
|
104
|
+
## [0.9.0] - 2026-02-15
|
|
105
|
+
|
|
106
|
+
### โ ๏ธ Pre-release Candidate
|
|
107
|
+
|
|
108
|
+
### Added
|
|
109
|
+
- Beta version of all core modules
|
|
110
|
+
- Validation against 10 geophysical sites
|
|
111
|
+
- Preliminary LSI weight determination
|
|
112
|
+
- Basic sensor drivers
|
|
113
|
+
- Initial documentation
|
|
114
|
+
|
|
115
|
+
### Changed
|
|
116
|
+
- Refined Biot inversion algorithms
|
|
117
|
+
- Updated fracture resonance model
|
|
118
|
+
- Improved AE rate kinetics
|
|
119
|
+
|
|
120
|
+
### Fixed
|
|
121
|
+
- Geophone array synchronization
|
|
122
|
+
- DAS data parsing errors
|
|
123
|
+
- Spectral decomposition artifacts
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## [0.8.0] - 2026-01-20
|
|
128
|
+
|
|
129
|
+
### ๐งช Alpha Release
|
|
130
|
+
|
|
131
|
+
### Added
|
|
132
|
+
- Prototype physics modules
|
|
133
|
+
- Test deployments at Kฤซlauea
|
|
134
|
+
- Basic data collection pipeline
|
|
135
|
+
- Preliminary LSI formulation
|
|
136
|
+
|
|
137
|
+
---
|
|
138
|
+
|
|
139
|
+
## [0.1.0] - 2025-06-01
|
|
140
|
+
|
|
141
|
+
### ๐ฏ Project Initiation
|
|
142
|
+
|
|
143
|
+
### Added
|
|
144
|
+
- Project concept and framework design
|
|
145
|
+
- Initial 5-parameter selection
|
|
146
|
+
- Literature review compilation
|
|
147
|
+
- Research proposal development
|
|
148
|
+
|
|
149
|
+
---
|
|
150
|
+
|
|
151
|
+
## ๐ฎ Future Releases
|
|
152
|
+
|
|
153
|
+
### [1.1.0] - Planned Q3 2026
|
|
154
|
+
- Additional validation sites (Alps, Himalayas)
|
|
155
|
+
- Machine learning emulators for fast inversion
|
|
156
|
+
- Real-time satellite InSAR integration
|
|
157
|
+
- Mobile app for field data collection
|
|
158
|
+
|
|
159
|
+
### [1.2.0] - Planned Q1 2027
|
|
160
|
+
- Distributed acoustic sensing on telecom fibers
|
|
161
|
+
- 50+ site global network
|
|
162
|
+
- AI-powered precursor prediction
|
|
163
|
+
- Automated alert system
|
|
164
|
+
|
|
165
|
+
### [2.0.0] - Planned 2028
|
|
166
|
+
- Global lithospheric monitoring network
|
|
167
|
+
- Real-time stress maps
|
|
168
|
+
- Earthquake early warning integration
|
|
169
|
+
- Carbon sequestration monitoring
|
|
170
|
+
|
|
171
|
+
---
|
|
172
|
+
|
|
173
|
+
## ๐ Version History
|
|
174
|
+
|
|
175
|
+
| Version | Date | Status | DOI |
|
|
176
|
+
|---------|------|--------|-----|
|
|
177
|
+
| 1.0.0 | 2026-03-10 | Stable Release | 10.5281/zenodo.18931304 |
|
|
178
|
+
| 0.9.0 | 2026-02-15 | Release Candidate | 10.5281/zenodo.18831304 |
|
|
179
|
+
| 0.8.0 | 2026-01-20 | Alpha | 10.5281/zenodo.18731304 |
|
|
180
|
+
| 0.1.0 | 2025-06-01 | Concept | - |
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
184
|
+
For questions or contributions: gitdeeper@gmail.com ยท ORCID: 0009-0003-8903-0029
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
# LITHO-SONIC Code of Conduct
|
|
2
|
+
## Lithospheric Resonance & Infrasonic Geomechanical Observatory
|
|
3
|
+
|
|
4
|
+
**DOI**: 10.5281/zenodo.18931304
|
|
5
|
+
**Repository**: github.com/gitdeeper8/lithosonic
|
|
6
|
+
**Web**: lithosonic.netlify.app
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## ๐ Our Pledge
|
|
11
|
+
|
|
12
|
+
We as members, contributors, and leaders pledge to make participation in the LITHO-SONIC community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
|
|
13
|
+
|
|
14
|
+
We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## ๐ Our Standards
|
|
19
|
+
|
|
20
|
+
Examples of behavior that contributes to a positive environment:
|
|
21
|
+
|
|
22
|
+
* ๐ฃ๏ธ Using welcoming and inclusive language
|
|
23
|
+
* ๐ค Being respectful of differing viewpoints and experiences
|
|
24
|
+
* ๐ฏ Gracefully accepting constructive criticism
|
|
25
|
+
* ๐ Focusing on what is best for the community
|
|
26
|
+
* ๐ซ Showing empathy towards other community members
|
|
27
|
+
* ๐ Sharing knowledge and helping others learn
|
|
28
|
+
* ๐ฌ Acknowledging and respecting different levels of expertise
|
|
29
|
+
* ๐ฑ Encouraging and supporting new contributors
|
|
30
|
+
|
|
31
|
+
Examples of unacceptable behavior:
|
|
32
|
+
|
|
33
|
+
* ๐ซ The use of sexualized language or imagery, and sexual attention or advances of any kind
|
|
34
|
+
* ๐ซ Trolling, insulting or derogatory comments, and personal or political attacks
|
|
35
|
+
* ๐ซ Public or private harassment
|
|
36
|
+
* ๐ซ Publishing others' private information without explicit permission
|
|
37
|
+
* ๐ซ Other conduct which could reasonably be considered inappropriate in a professional setting
|
|
38
|
+
* ๐ซ Plagiarism or misrepresentation of others' work
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## ๐ฎ Enforcement Responsibilities
|
|
43
|
+
|
|
44
|
+
Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
|
|
45
|
+
|
|
46
|
+
Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## ๐ Scope
|
|
51
|
+
|
|
52
|
+
This Code of Conduct applies within all community spaces, including:
|
|
53
|
+
|
|
54
|
+
- GitHub repositories (issues, pull requests, discussions)
|
|
55
|
+
- Project documentation
|
|
56
|
+
- Email communications
|
|
57
|
+
- Community forums
|
|
58
|
+
- Social media channels
|
|
59
|
+
- In-person events and conferences
|
|
60
|
+
- Research collaborations
|
|
61
|
+
- Field work and expeditions
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## ๐จ Reporting Guidelines
|
|
66
|
+
|
|
67
|
+
If you experience or witness unacceptable behavior, please report it by contacting the project team at:
|
|
68
|
+
|
|
69
|
+
**Email**: gitdeeper@gmail.com
|
|
70
|
+
**ORCID**: 0009-0003-8903-0029
|
|
71
|
+
|
|
72
|
+
All complaints will be reviewed and investigated promptly and fairly. The project team is obligated to maintain confidentiality regarding the reporter of an incident.
|
|
73
|
+
|
|
74
|
+
### What to include in a report:
|
|
75
|
+
1. Your contact information (optional)
|
|
76
|
+
2. Names of any individuals involved
|
|
77
|
+
3. Description of the incident
|
|
78
|
+
4. Any supporting evidence
|
|
79
|
+
5. Any additional context
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## โ๏ธ Enforcement Guidelines
|
|
84
|
+
|
|
85
|
+
### 1. Correction
|
|
86
|
+
**Community Impact**: Use of inappropriate language or other unprofessional behavior.
|
|
87
|
+
**Consequence**: A private, written warning from community leaders.
|
|
88
|
+
|
|
89
|
+
### 2. Warning
|
|
90
|
+
**Community Impact**: A violation through a single incident or series of actions.
|
|
91
|
+
**Consequence**: A warning with consequences for continued behavior.
|
|
92
|
+
|
|
93
|
+
### 3. Temporary Ban
|
|
94
|
+
**Community Impact**: A serious violation of community standards.
|
|
95
|
+
**Consequence**: Temporary ban from any sort of interaction with the community.
|
|
96
|
+
|
|
97
|
+
### 4. Permanent Ban
|
|
98
|
+
**Community Impact**: Demonstrating a pattern of violation of community standards.
|
|
99
|
+
**Consequence**: Permanent ban from any public interaction within the community.
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
## ๐ Attribution
|
|
104
|
+
|
|
105
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.1.
|
|
106
|
+
|
|
107
|
+
[homepage]: https://www.contributor-covenant.org
|
|
108
|
+
|
|
109
|
+
---
|
|
110
|
+
|
|
111
|
+
## ๐ Contact
|
|
112
|
+
|
|
113
|
+
**Samir Baladi**
|
|
114
|
+
Email: gitdeeper@gmail.com
|
|
115
|
+
ORCID: 0009-0003-8903-0029
|
|
116
|
+
|
|
117
|
+
---
|
|
118
|
+
|
|
119
|
+
**Last updated**: 2026-03-10
|
|
120
|
+
**Version**: 1.0.0
|