pyckster 26.1.4__tar.gz → 26.1.5__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.
- {pyckster-26.1.4 → pyckster-26.1.5}/PKG-INFO +2 -2
- {pyckster-26.1.4 → pyckster-26.1.5}/README.md +1 -1
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/__init__.py +1 -1
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/core.py +2047 -1562
- pyckster-26.1.5/pyckster/dispersion_stack_viewer.py +307 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/sw_utils.py +2 -2
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster.egg-info/PKG-INFO +2 -2
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster.egg-info/SOURCES.txt +1 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/LICENCE +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/__main__.py +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/auto_picking.py +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/bayesian_inversion.py +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/inversion_app.py +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/inversion_manager.py +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/inversion_visualizer.py +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/ipython_console.py +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/mpl_export.py +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/obspy_utils.py +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/pick_io.py +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/pyqtgraph_utils.py +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/surface_wave_analysis.py +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/surface_wave_profiling.py +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/tab_factory.py +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster/visualization_utils.py +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster.egg-info/dependency_links.txt +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster.egg-info/entry_points.txt +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster.egg-info/not-zip-safe +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster.egg-info/requires.txt +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/pyckster.egg-info/top_level.txt +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/setup.cfg +0 -0
- {pyckster-26.1.4 → pyckster-26.1.5}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyckster
|
|
3
|
-
Version: 26.1.
|
|
3
|
+
Version: 26.1.5
|
|
4
4
|
Summary: A PyQt5-based GUI for the processing and analysis of active near-surface seismic data
|
|
5
5
|
Home-page: https://gitlab.in2p3.fr/metis-geophysics/pyckster
|
|
6
6
|
Author: Sylvain Pasquet
|
|
@@ -44,7 +44,7 @@ PyCKSTER is an open-source PyQt5-based GUI for processing and analysis of active
|
|
|
44
44
|
- **File I/O**: Read and write seismic files in SEG2, SEGY, and Seismic Unix (SU) formats
|
|
45
45
|
- **Data Editing**: Edit headers information (source and trace coordinates, topography integration, delay, ffid) and traces (move, swap, mute, delete)
|
|
46
46
|
- **Traveltime Analysis**: Interactive picking with multiple visualization options (source/geophone diagrams, hodochrones) and direct inversion using [pyGIMLi](https://www.pygimli.org)
|
|
47
|
-
- **Surface Wave Analysis**: Compute dispersion images using phase-shift transform, simple windowing with interactive picking capabilities, and import dispersion curves
|
|
47
|
+
- **Surface Wave Analysis**: Compute dispersion images using phase-shift transform, simple windowing with interactive picking capabilities, and import/export dispersion curves with [SWIP](https://github.com/spasquet/SWIP) MATLAB package compatibility.
|
|
48
48
|
|
|
49
49
|
**Coming Soon**: Advanced dispersion windowing and stacking, surface wave dispersion inversion
|
|
50
50
|
|
|
@@ -12,7 +12,7 @@ PyCKSTER is an open-source PyQt5-based GUI for processing and analysis of active
|
|
|
12
12
|
- **File I/O**: Read and write seismic files in SEG2, SEGY, and Seismic Unix (SU) formats
|
|
13
13
|
- **Data Editing**: Edit headers information (source and trace coordinates, topography integration, delay, ffid) and traces (move, swap, mute, delete)
|
|
14
14
|
- **Traveltime Analysis**: Interactive picking with multiple visualization options (source/geophone diagrams, hodochrones) and direct inversion using [pyGIMLi](https://www.pygimli.org)
|
|
15
|
-
- **Surface Wave Analysis**: Compute dispersion images using phase-shift transform, simple windowing with interactive picking capabilities, and import dispersion curves
|
|
15
|
+
- **Surface Wave Analysis**: Compute dispersion images using phase-shift transform, simple windowing with interactive picking capabilities, and import/export dispersion curves with [SWIP](https://github.com/spasquet/SWIP) MATLAB package compatibility.
|
|
16
16
|
|
|
17
17
|
**Coming Soon**: Advanced dispersion windowing and stacking, surface wave dispersion inversion
|
|
18
18
|
|
|
@@ -15,7 +15,7 @@ except ImportError:
|
|
|
15
15
|
pass # matplotlib not available, that's fine
|
|
16
16
|
|
|
17
17
|
# Define version and metadata in one place
|
|
18
|
-
__version__ = "26.1.
|
|
18
|
+
__version__ = "26.1.5"
|
|
19
19
|
__author__ = "Sylvain Pasquet"
|
|
20
20
|
__email__ = "sylvain.pasquet@sorbonne-universite.fr"
|
|
21
21
|
__license__ = "GPLv3"
|