cfs-python 0.1.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.
- cfs_python-0.1.0/PKG-INFO +51 -0
- cfs_python-0.1.0/README.md +20 -0
- cfs_python-0.1.0/app_panel.py +1058 -0
- cfs_python-0.1.0/cfs_lib/__init__.py +0 -0
- cfs_python-0.1.0/cfs_lib/coulomb_math.py +142 -0
- cfs_python-0.1.0/cfs_lib/io_parser.py +165 -0
- cfs_python-0.1.0/cfs_lib/main.py +173 -0
- cfs_python-0.1.0/cfs_lib/okada_math.py +652 -0
- cfs_python-0.1.0/cfs_lib/okada_wrapper.py +148 -0
- cfs_python-0.1.0/cfs_python.egg-info/PKG-INFO +51 -0
- cfs_python-0.1.0/cfs_python.egg-info/SOURCES.txt +14 -0
- cfs_python-0.1.0/cfs_python.egg-info/dependency_links.txt +1 -0
- cfs_python-0.1.0/cfs_python.egg-info/requires.txt +8 -0
- cfs_python-0.1.0/cfs_python.egg-info/top_level.txt +2 -0
- cfs_python-0.1.0/setup.cfg +4 -0
- cfs_python-0.1.0/setup.py +36 -0
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cfs-python
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Python-based Coulomb Stress Change UI and API
|
|
5
|
+
Home-page: https://github.com/yudhastyawan/cfs-python
|
|
6
|
+
Author: Yudha Styawan
|
|
7
|
+
Author-email: yudhastyawan97@gmail.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: numpy
|
|
15
|
+
Requires-Dist: pandas
|
|
16
|
+
Requires-Dist: panel
|
|
17
|
+
Requires-Dist: plotly
|
|
18
|
+
Requires-Dist: param
|
|
19
|
+
Requires-Dist: geopandas
|
|
20
|
+
Requires-Dist: rasterio
|
|
21
|
+
Requires-Dist: shapely
|
|
22
|
+
Dynamic: author
|
|
23
|
+
Dynamic: author-email
|
|
24
|
+
Dynamic: classifier
|
|
25
|
+
Dynamic: description
|
|
26
|
+
Dynamic: description-content-type
|
|
27
|
+
Dynamic: home-page
|
|
28
|
+
Dynamic: requires-dist
|
|
29
|
+
Dynamic: requires-python
|
|
30
|
+
Dynamic: summary
|
|
31
|
+
|
|
32
|
+
# PyCFS Dashboard
|
|
33
|
+
|
|
34
|
+
An interactive dashboard for visualizing and computing Coulomb Stress Changes.
|
|
35
|
+
Powered by Python (`numpy`), `Panel`, and `Plotly`.
|
|
36
|
+
|
|
37
|
+
## Features
|
|
38
|
+
- Interactive 2D and 3D map views of fault sources and computed stress variables.
|
|
39
|
+
- Dynamically extract Cross-Sectional geometries over user-defined paths.
|
|
40
|
+
- Support for Single Point (Lat/Lon or Km), Grid Box mapping, and Custom Receivers matching algorithms.
|
|
41
|
+
- Custom Scientific Colormaps configurations (`Viridis`, `Jet`, `balance`, etc.) with manual boundary values (`vmin`/`vmax`).
|
|
42
|
+
- High-fidelity exporting: Results available in `.csv` (coordinates included), Georeferenced TIF, and Esri `.shp`.
|
|
43
|
+
|
|
44
|
+
## Interface Snapshot
|
|
45
|
+
This toolkit renders directly in the browser via native WebSockets using the pure Python `Panel` framework.
|
|
46
|
+
|
|
47
|
+
## Usage
|
|
48
|
+
Simply start the dashboard interface locally with:
|
|
49
|
+
```bash
|
|
50
|
+
panel serve app_panel.py --show
|
|
51
|
+
```
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# PyCFS Dashboard
|
|
2
|
+
|
|
3
|
+
An interactive dashboard for visualizing and computing Coulomb Stress Changes.
|
|
4
|
+
Powered by Python (`numpy`), `Panel`, and `Plotly`.
|
|
5
|
+
|
|
6
|
+
## Features
|
|
7
|
+
- Interactive 2D and 3D map views of fault sources and computed stress variables.
|
|
8
|
+
- Dynamically extract Cross-Sectional geometries over user-defined paths.
|
|
9
|
+
- Support for Single Point (Lat/Lon or Km), Grid Box mapping, and Custom Receivers matching algorithms.
|
|
10
|
+
- Custom Scientific Colormaps configurations (`Viridis`, `Jet`, `balance`, etc.) with manual boundary values (`vmin`/`vmax`).
|
|
11
|
+
- High-fidelity exporting: Results available in `.csv` (coordinates included), Georeferenced TIF, and Esri `.shp`.
|
|
12
|
+
|
|
13
|
+
## Interface Snapshot
|
|
14
|
+
This toolkit renders directly in the browser via native WebSockets using the pure Python `Panel` framework.
|
|
15
|
+
|
|
16
|
+
## Usage
|
|
17
|
+
Simply start the dashboard interface locally with:
|
|
18
|
+
```bash
|
|
19
|
+
panel serve app_panel.py --show
|
|
20
|
+
```
|