eqcctpro 0.6.1__py3-none-any.whl → 0.6.2__py3-none-any.whl
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: eqcctpro
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.2
|
|
4
4
|
Summary: EQCCTPro: A powerful seismic event detection toolkit
|
|
5
5
|
Author-email: Constantinos Skevofilax <constantinos.skevofilax@austin.utexas.edu>, Victor Salles <victor.salles@beg.utexas.edu>
|
|
6
6
|
Project-URL: Homepage, https://pypi.org/project/eqcctpro/
|
|
@@ -25,7 +25,7 @@ Requires-Dist: tensorboard==2.15.2
|
|
|
25
25
|
Requires-Dist: tensorboard-data-server==0.7.2
|
|
26
26
|
Requires-Dist: silence-tensorflow==1.2.3
|
|
27
27
|
Requires-Dist: scipy==1.15.1
|
|
28
|
-
Requires-Dist: protobuf==4.25.
|
|
28
|
+
Requires-Dist: protobuf==4.25.8
|
|
29
29
|
Requires-Dist: grpcio==1.70.0
|
|
30
30
|
Requires-Dist: absl-py==2.1.0
|
|
31
31
|
Requires-Dist: h5py==3.12.1
|
|
@@ -59,9 +59,9 @@ This method installs only the EQCCTPro package **without** the sample waveform d
|
|
|
59
59
|
EQCCTPro **requires Python 3.10.14 or higher as well as minimum Tensorflow packages**. If you have a clean working environment, you can simply run `pip install eqcctpro`. However, if you have a nonclean environment, its highly recommended to create a new conda environment so that you can install the necessary packages safely with no issues. You can create a new conda environment with the correct Python version by using the following commands:
|
|
60
60
|
|
|
61
61
|
```sh
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
62
|
+
conda create --name yourenvironemntname python=3.10.14 -y
|
|
63
|
+
conda activate yourenvironemntname
|
|
64
|
+
python3 --version
|
|
65
65
|
```
|
|
66
66
|
Expected output:
|
|
67
67
|
```
|
|
@@ -70,7 +70,7 @@ Python 3.10.14
|
|
|
70
70
|
|
|
71
71
|
After activating your new conda environment, run the following command:
|
|
72
72
|
```sh
|
|
73
|
-
|
|
73
|
+
pip install eqcctpro
|
|
74
74
|
```
|
|
75
75
|
You will have access to EQCCTPro and its functionality. However you will not have immediate access to the provided sample waveform data to use for testing. Youcan pull the waveform data either by downloading the .zip file from the repository or by following step 3.
|
|
76
76
|
|
|
@@ -78,11 +78,11 @@ You will have access to EQCCTPro and its functionality. However you will not hav
|
|
|
78
78
|
Although not required, **it is highly recommended** to pull the `EQCCTPro` folder to gain access to sample waveform data for testing.
|
|
79
79
|
|
|
80
80
|
```sh
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
81
|
+
mkdir my_work_directory
|
|
82
|
+
cd my_work_directory
|
|
83
|
+
git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
|
|
84
|
+
cd eqcct
|
|
85
|
+
git sparse-checkout set eqcctpro
|
|
86
86
|
```
|
|
87
87
|
|
|
88
88
|
---
|
|
@@ -92,25 +92,25 @@ This method sets up EQCCTPro **with a pre-created conda environment and sample w
|
|
|
92
92
|
|
|
93
93
|
### **Step 1: Clone the EQCCTPro Repository**
|
|
94
94
|
```sh
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
95
|
+
mkdir my_work_directory
|
|
96
|
+
cd my_work_directory
|
|
97
|
+
git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
|
|
98
|
+
cd eqcct
|
|
99
|
+
git sparse-checkout set eqcctpro
|
|
100
100
|
```
|
|
101
101
|
|
|
102
102
|
### **Step 2: Create and Activate the Conda Environment**
|
|
103
103
|
A **pre-configured conda environment** is included in the repository to handle all dependencies.
|
|
104
104
|
|
|
105
105
|
```sh
|
|
106
|
-
|
|
107
|
-
|
|
106
|
+
conda env create -f environment.yml
|
|
107
|
+
conda activate eqcctpro
|
|
108
108
|
```
|
|
109
109
|
|
|
110
110
|
### **Step 3: Install EQCCTPro**
|
|
111
111
|
After activating the environment, install the EQCCTPro package:
|
|
112
112
|
```sh
|
|
113
|
-
|
|
113
|
+
pip install eqcctpro
|
|
114
114
|
```
|
|
115
115
|
|
|
116
116
|
This will install any remaining dependencies needed for **EQCCTPro**.
|
|
@@ -131,7 +131,7 @@ To understand how **EQCCTPro** works, it is **highly recommended** to use provid
|
|
|
131
131
|
### **Step 1: Unzip the Sample Wavefrom Data**
|
|
132
132
|
After downloading the `.zip` file through the GitHub methods above, run:
|
|
133
133
|
```sh
|
|
134
|
-
|
|
134
|
+
unzip 230_stations_1_min_dt.zip
|
|
135
135
|
```
|
|
136
136
|
### **Step 2: Check and Understand the Directory Structure**
|
|
137
137
|
The extracted data will contain a timechunk subdirectories, comprised of multiple station directories:
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
eqcctpro/__init__.py,sha256=JK27ZrLxVDNHsdorp7UAislI8haH23rZhnEivVM7hgA,141
|
|
2
|
+
eqcctpro-0.6.2.dist-info/METADATA,sha256=lAvGe6qc2skJvJ65-4cMjS_ad8PxCN93vBvglb8XDmc,31595
|
|
3
|
+
eqcctpro-0.6.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
4
|
+
eqcctpro-0.6.2.dist-info/top_level.txt,sha256=u0cu2JdF7Z0ob7y4XdUCLoSGp_xOudAYz-fbsQ-B1yY,9
|
|
5
|
+
eqcctpro-0.6.2.dist-info/RECORD,,
|
eqcctpro-0.6.1.dist-info/RECORD
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
eqcctpro/__init__.py,sha256=JK27ZrLxVDNHsdorp7UAislI8haH23rZhnEivVM7hgA,141
|
|
2
|
-
eqcctpro-0.6.1.dist-info/METADATA,sha256=VCY3roBm7hSF0snfHiL5mMDdgmVK0ky2a1aC8xjmRUQ,31847
|
|
3
|
-
eqcctpro-0.6.1.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
4
|
-
eqcctpro-0.6.1.dist-info/top_level.txt,sha256=u0cu2JdF7Z0ob7y4XdUCLoSGp_xOudAYz-fbsQ-B1yY,9
|
|
5
|
-
eqcctpro-0.6.1.dist-info/RECORD,,
|
|
File without changes
|