anss-formats 0.0.1__tar.gz → 0.0.3__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.
@@ -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
+
@@ -0,0 +1,25 @@
1
+ # ANSS Data Formats
2
+ 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).
3
+
4
+ The purpose of this project is to:
5
+
6
+ 1. Define formats to hold data representing the estimates of various types of
7
+ seismic event detections.
8
+ 2. Store the format definitions in a source controlled manner.
9
+ 3. Host libraries used to generate, parse, and validate the formats
10
+
11
+ ## Defined formats:
12
+
13
+ * [Pick](format-docs/Pick.md) Format - A format for unassociated picks from a waveform arrival time picking algorithm.
14
+
15
+ ## Supporting format objects:
16
+
17
+ * [Amplitude](format-docs/Amplitude.md) Object - An object that contains information about an amplitude as part of a pick.
18
+ * [Beam](format-docs/Beam.md) Object - An object that contains information about a waveform beam as part of a pick.
19
+ * [Associated](format-docs/Associated.md) Object - An object that contains associated information if a pick is included in a detection.
20
+ * [Filter](format-docs/Filter.md) Object - An object that contains filter information as part of a pick.
21
+ * [Site](format-docs/Site.md) Object - An object that defines the station used to create a pick.
22
+ * [Source](format-docs/Source.md) Object - An object that defines the creator/source of a pick.
23
+ * [Quality](format-docs/Quality.md) Object - An object that defines the data quality of a pick.
24
+ * [MachineLearning](format-docs/MachineLearning.md) Object - An object that defines the machine learning information for a pick.
25
+ * [EventType](format-docs/EventType.md) Object - An object that defines the event type for MachineLearning info.
@@ -1,8 +1,9 @@
1
1
  [tool.poetry]
2
2
  name = "anss-formats"
3
- version = "0.0.1"
3
+ version = "0.0.3" #prev 0.0.1, 0.0.2
4
4
  description = "Python implementation of the library used to communicate seismic event detection information between systems"
5
5
  authors = ["John Patton <jpatton@usgs.gov>"]
6
+ readme = "README_purpose.md"
6
7
  license = "CC0-1.0"
7
8
  homepage ="https://gitlab.com/anss-netops/anss-data-formats"
8
9
  include = [
@@ -1,23 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: anss-formats
3
- Version: 0.0.1
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