anss-formats 0.0.2__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,9 +1,9 @@
1
1
  [tool.poetry]
2
2
  name = "anss-formats"
3
- version = "0.0.2" #prev 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.md"
6
+ readme = "README_purpose.md"
7
7
  license = "CC0-1.0"
8
8
  homepage ="https://gitlab.com/anss-netops/anss-data-formats"
9
9
  include = [
@@ -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
-
@@ -1,23 +0,0 @@
1
- # Python 3 ANSS Formats Library
2
-
3
- This is the Python implementation of the library used to generate and parse the
4
- ANSS Formats.
5
-
6
- Dependencies
7
- ------
8
- * ANSS Formats utilizes [JSON](www.json.org) for formatting.
9
- * ANSS Formats was written in Python 3.6
10
- * ANSS Formats uses [poetry](https://python-poetry.org/) for
11
- Package, dependency and environment management.
12
-
13
- Building
14
- ------
15
- The steps to get and use the python ANSS-formats are as follows:
16
-
17
- 1. Clone ANSS-formats.
18
- 2. Open a command window and change directories to /python/
19
- 3. To run unit tests, run the command `poetry run pytest --cov=anssformats --junitxml junit.xml`
20
-
21
- Using
22
- -----S
23
- Once you have the python distribution, simply import anssformats