anss-formats 0.0.2__py3-none-any.whl → 0.0.3__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.
@@ -0,0 +1,51 @@
1
+ Metadata-Version: 2.4
2
+ Name: anss-formats
3
+ Version: 0.0.3
4
+ Summary: Python implementation of the library used to communicate seismic event detection information between systems
5
+ License: CC0-1.0
6
+ Keywords: anss,earthquakes,formats,detection
7
+ Author: John Patton
8
+ Author-email: jpatton@usgs.gov
9
+ Requires-Python: >3.9.1,<3.12
10
+ Classifier: License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Provides-Extra: pycurl
15
+ Requires-Dist: certifi (>=2024.07.04,<2025.0.0)
16
+ Requires-Dist: cryptography (>=44.0.1,<45.0.0)
17
+ Requires-Dist: docutils (!=0.21.post1)
18
+ Requires-Dist: dparse (>=0.6.2,<0.7.0)
19
+ Requires-Dist: pydantic (>=2.6.0,<3.0.0)
20
+ Requires-Dist: requests (>=2.32.2,<3.0.0)
21
+ Requires-Dist: twine (>=5.1.1,<6.0.0)
22
+ Project-URL: Homepage, https://gitlab.com/anss-netops/anss-data-formats
23
+ Project-URL: Repository, https://gitlab.com/anss-netops/anss-data-formats
24
+ Description-Content-Type: text/markdown
25
+
26
+ # ANSS Data Formats
27
+ The US Geological Survey (USGS) Advanced National Seismic System (ANSS) defines a number of data exchange formats to communicate seismic event detection information between processing systems. These formats are defined using objects as defined in the [JSON standard](http://www.json.org).
28
+
29
+ The purpose of this project is to:
30
+
31
+ 1. Define formats to hold data representing the estimates of various types of
32
+ seismic event detections.
33
+ 2. Store the format definitions in a source controlled manner.
34
+ 3. Host libraries used to generate, parse, and validate the formats
35
+
36
+ ## Defined formats:
37
+
38
+ * [Pick](format-docs/Pick.md) Format - A format for unassociated picks from a waveform arrival time picking algorithm.
39
+
40
+ ## Supporting format objects:
41
+
42
+ * [Amplitude](format-docs/Amplitude.md) Object - An object that contains information about an amplitude as part of a pick.
43
+ * [Beam](format-docs/Beam.md) Object - An object that contains information about a waveform beam as part of a pick.
44
+ * [Associated](format-docs/Associated.md) Object - An object that contains associated information if a pick is included in a detection.
45
+ * [Filter](format-docs/Filter.md) Object - An object that contains filter information as part of a pick.
46
+ * [Site](format-docs/Site.md) Object - An object that defines the station used to create a pick.
47
+ * [Source](format-docs/Source.md) Object - An object that defines the creator/source of a pick.
48
+ * [Quality](format-docs/Quality.md) Object - An object that defines the data quality of a pick.
49
+ * [MachineLearning](format-docs/MachineLearning.md) Object - An object that defines the machine learning information for a pick.
50
+ * [EventType](format-docs/EventType.md) Object - An object that defines the event type for MachineLearning info.
51
+
@@ -10,6 +10,6 @@ anssformats/machineLearning.py,sha256=6xwmv_F2VuxZl-ng7qUKlV7Mrlw6aQ-LKg6A6x3vdf
10
10
  anssformats/pick.py,sha256=Spaw7Paw_UCkVxNSJxJSirmiXM3e2KEY8-nIwVgk2Vg,2867
11
11
  anssformats/quality.py,sha256=PK5sPAoJTUgCrmQkiWTerEB2klWbR1ECAU-qIABpcjA,389
12
12
  anssformats/source.py,sha256=G78YUwY2fimi8Uy0d1mKjaIIsEDUue50wdHpACQsSMU,398
13
- anss_formats-0.0.2.dist-info/METADATA,sha256=2vPKl4xt_C1jtj5PpsAxFlUjBE6oMJqLaseXNZh8Aok,1750
14
- anss_formats-0.0.2.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
15
- anss_formats-0.0.2.dist-info/RECORD,,
13
+ anss_formats-0.0.3.dist-info/METADATA,sha256=T5YvzS6RgpGi3agxOheaDV8rbuzlJhOmPnoVn54jexM,2814
14
+ anss_formats-0.0.3.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
15
+ anss_formats-0.0.3.dist-info/RECORD,,
@@ -1,49 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: anss-formats
3
- Version: 0.0.2
4
- Summary: Python implementation of the library used to communicate seismic event detection information between systems
5
- License: CC0-1.0
6
- Keywords: anss,earthquakes,formats,detection
7
- Author: John Patton
8
- Author-email: jpatton@usgs.gov
9
- Requires-Python: >3.9.1,<3.12
10
- Classifier: License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3.10
13
- Classifier: Programming Language :: Python :: 3.11
14
- Provides-Extra: pycurl
15
- Requires-Dist: certifi (>=2024.07.04,<2025.0.0)
16
- Requires-Dist: cryptography (>=44.0.1,<45.0.0)
17
- Requires-Dist: docutils (!=0.21.post1)
18
- Requires-Dist: dparse (>=0.6.2,<0.7.0)
19
- Requires-Dist: pydantic (>=2.6.0,<3.0.0)
20
- Requires-Dist: requests (>=2.32.2,<3.0.0)
21
- Requires-Dist: twine (>=5.1.1,<6.0.0)
22
- Project-URL: Homepage, https://gitlab.com/anss-netops/anss-data-formats
23
- Project-URL: Repository, https://gitlab.com/anss-netops/anss-data-formats
24
- Description-Content-Type: text/markdown
25
-
26
- # Python 3 ANSS Formats Library
27
-
28
- This is the Python implementation of the library used to generate and parse the
29
- ANSS Formats.
30
-
31
- Dependencies
32
- ------
33
- * ANSS Formats utilizes [JSON](www.json.org) for formatting.
34
- * ANSS Formats was written in Python 3.6
35
- * ANSS Formats uses [poetry](https://python-poetry.org/) for
36
- Package, dependency and environment management.
37
-
38
- Building
39
- ------
40
- The steps to get and use the python ANSS-formats are as follows:
41
-
42
- 1. Clone ANSS-formats.
43
- 2. Open a command window and change directories to /python/
44
- 3. To run unit tests, run the command `poetry run pytest --cov=anssformats --junitxml junit.xml`
45
-
46
- Using
47
- -----S
48
- Once you have the python distribution, simply import anssformats
49
-