anss-formats 0.0.3__py3-none-any.whl → 0.0.4__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,561 @@
1
+ Metadata-Version: 2.4
2
+ Name: anss-formats
3
+ Version: 0.0.4
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
+
52
+ # Amplitude Object Specification
53
+
54
+ ## Description
55
+
56
+ The Amplitude object is an object designed to encode the amplitude information
57
+ that may or may not be part of the [Pick](Pick.md) Format. Amplitude uses the
58
+ [JSON standard](http://www.json.org).
59
+
60
+ ## Usage
61
+
62
+ The Amplitude object is intended for use as part of the [Pick](Pick.md) Format
63
+ in seismic data messaging between seismic applications and organizations.
64
+
65
+ ## Output
66
+
67
+ ```json
68
+ {
69
+ "amplitude" : Number,
70
+ "period" : Number,
71
+ "snr" : Number
72
+ }
73
+ ```
74
+
75
+ ## Glossary
76
+
77
+ **Optional Values:**
78
+
79
+ The following are values that **may or may not** be provided as part of an
80
+ amplitude.
81
+
82
+ * amplitude - A decimal number containing the amplitude.
83
+ * period - A decimal number containing the amplitude period.
84
+ * snr - A decimal number containing the signal to noise ratio, capped at 1E9.
85
+
86
+ # Association Object Specification
87
+
88
+ ## Description
89
+
90
+ The Association object is an object designed to encode information provided when
91
+ a [Pick](Pick.md). Association uses the [JSON standard](http://www.json.org).
92
+
93
+ ## Usage
94
+
95
+ Association is intended for use as part of the [Pick](Pick.md) Format in seismic data messaging between seismic applications and organizations.
96
+
97
+ ## Output
98
+
99
+ ```json
100
+ {
101
+ "phase" : String,
102
+ "distance" : Number,
103
+ "azimuth" : Number,
104
+ "residual" : Number,
105
+ "sigma" : Number
106
+ }
107
+ ```
108
+
109
+ ## Glossary
110
+
111
+ **Optional Values:**
112
+
113
+ The following are values that **may or may not** be provided as part of
114
+ association.
115
+
116
+ * phase - A string that identifies the seismic phase for this data if Association.
117
+ * distance - A decimal number containing the distance in degrees between the detection's and data's locations if Association.
118
+ * azimuth - A decimal number containing the azimuth in degrees between the detection's and data's locations if Association.
119
+ * residual - A decimal number containing residual in seconds of the data if Association.
120
+ * sigma - A decimal number reflecting the number of standard deviations of the data from the calculated value if Association.
121
+
122
+ # Beam Object Specification
123
+
124
+ ## Description
125
+
126
+ The Beam object is an object designed to encode waveform beam information
127
+ that may or may not be part of the [Pick](Pick.md) Format. Beam uses the
128
+ [JSON standard](http://www.json.org).
129
+
130
+ ## Usage
131
+
132
+ The Beam object is intended for use as part of the [Pick](Pick.md) Format
133
+ in seismic data messaging between seismic applications and organizations.
134
+
135
+ ## Output
136
+
137
+ ```json
138
+ {
139
+ "backAzimuth" : Number,
140
+ "backAzimuthError" : Number,
141
+ "slowness" : Number,
142
+ "slownessError" : Number,
143
+ "powerRatio" : Number,
144
+ "powerRatioError" : Number
145
+ }
146
+ ```
147
+
148
+ ## Glossary
149
+
150
+ **Required Values:**
151
+
152
+ These are the values **required** to define a beam.
153
+
154
+ * backAzimuth - A decimal number containing the back azimuth.
155
+ * slowness - A decimal number containing the horizontal slowness.
156
+
157
+ **Optional Values:**
158
+
159
+ The following are supplementary values that **may or may not** be provided by
160
+ various algorithms.
161
+
162
+ * backAzimuthError - A decimal number containing the back azimuth error.
163
+ * slownessError - A decimal number containing the horizontal slowness error.
164
+ * powerRatio - A decimal number containing the power ratio.
165
+ * powerRatioError - A decimal number containing the power ratio error.
166
+
167
+ # Site Object Specification
168
+
169
+ ## Description
170
+
171
+ The Site object is an object designed to define the seismic station used to
172
+ produce a [Pick](Pick.md) message. Site uses the [JSON](https://www.json.org) and [GeoJSON](https://geojson.org/) standards.
173
+
174
+ ## Usage
175
+
176
+ Site is intended for use as part of the [Pick](Pick.md) Format in seismic data
177
+ messaging between seismic applications and organizations.
178
+
179
+ ## Output
180
+
181
+ ```json
182
+ {
183
+ "type": "Feature",
184
+ "geometry": {
185
+ "type": "Point",
186
+ "coordinates": [125.6, 10.1]
187
+ },
188
+ "properties": {
189
+ "Station" : String,
190
+ "Channel" : String,
191
+ "Network" : String,
192
+ "Location" : String
193
+ }
194
+ }
195
+ ```
196
+
197
+ ## Glossary
198
+
199
+ **Required Values:**
200
+
201
+ These are the properties **required** to define a Site.
202
+
203
+ * type - A string indicating the geojson feature type
204
+ * geometry - A geojson point containing the station coordinates in the form [Latitude, Longitude, Elevation (in meters)]
205
+ * station - A string the station code.
206
+ * network - A string containing network code.
207
+
208
+ **Optional Values:**
209
+
210
+ The following are supplementary properties that **may or may not** be provided as
211
+ part of a Site.
212
+
213
+ * channel - A string containing the channel code.
214
+ * location - A string containing the location code.
215
+
216
+ # EventType Object Specification
217
+
218
+ ## Description
219
+
220
+ The EventType object is an object designed to define the originating seismic
221
+ organization that produced a [MachineLearning](MachineLearning.md) object.
222
+ Site uses the [JSON standard](http://www.json.org).
223
+
224
+ ## Usage
225
+
226
+ EventType is intended for use as part of the [PicMachineLearningk](MachineLearning.md) Oject in seismic data
227
+ messaging between seismic applications and organizations.
228
+
229
+ ## Output
230
+
231
+ ```json
232
+ {
233
+ "type" : String,
234
+ "certainty" : String
235
+ }
236
+ ```
237
+
238
+ ## Glossary
239
+
240
+ **Required Values:**
241
+
242
+ These are the values **required** to define a EventType
243
+
244
+ * type - A string containing the event type, allowed type strings are: "Earthquake", "MineCollapse", "NuclearExplosion", "QuarryBlast", "InducedOrTriggered", "RockBurst", "FluidInjection", "IceQuake", and "VolcanicEruption"
245
+
246
+ **Optional Values:**
247
+
248
+ The following are values that **may or may not** be provided as part of EventType.
249
+
250
+ * certainty - A string containing the certainty of the event type; allowed strings are "Suspected" and "Confirmed"
251
+
252
+ # Filter Object Specification
253
+
254
+ ## Description
255
+
256
+ The Filter object is an object designed to encode a single set of filter
257
+ frequencies that may or may not be part of the filter list in the [Pick](Pick.md)
258
+ Format. Filter uses the [JSON standard](http://www.json.org) .
259
+
260
+ ## Usage
261
+
262
+ The Filter object is intended for use as part of the [Pick](Pick.md) Format
263
+ in seismic data messaging between seismic applications and organizations.
264
+
265
+ ## Output
266
+
267
+ ```json
268
+ {
269
+ "type" : String,
270
+ "highPass" : Number,
271
+ "lowPass" : Number,
272
+ "units" : String
273
+ }
274
+ ```
275
+
276
+ ## Glossary
277
+
278
+ **Optional Values:**
279
+
280
+ The following are values that **may or may not** be provided as part of a filter.
281
+
282
+ * type - A string containing the type of filter
283
+ * highPass - A decimal number containing the high pass frequency in Hz.
284
+ * lowPass - A decimal number containing the low pass frequency in Hz.
285
+ * units - A string containing the filter frequency units.
286
+
287
+ Note: The Type of filter is assumed to be "BandPass", and the Units are assumed
288
+ to be "Hertz"
289
+
290
+ # MachineLearning Object Specification
291
+
292
+ ## Description
293
+
294
+ The MachineLearning object is an object designed to encode value added
295
+ information available for a [Pick](Pick.md) from advanced algorithms such as
296
+ machine learning. MachineLearning uses the [JSON standard](http://www.json.org).
297
+
298
+ ## Usage
299
+
300
+ MachineLearning is intended for use as part of the [Pick](Pick.md) Format in
301
+ seismic data messaging between seismic
302
+ applications and organizations.
303
+
304
+ ## Output
305
+
306
+ ```json
307
+ {
308
+ "phase" : String,
309
+ "phaseProbability" : Number,
310
+ "distance" : Number,
311
+ "distanceProbability" : Number,
312
+ "distanceRangeHalfWidth" : Number,
313
+ "distanceRangeSigma" : Number,
314
+ "backAzimuth" : Number,
315
+ "backAzimuthProbability" : Number,
316
+ "magnitude" : Number,
317
+ "magnitudeType" : String,
318
+ "magnitudeProbability" : Number,
319
+ "depth" : Number,
320
+ "depthProbability" : Number,
321
+ "eventType" :
322
+ {
323
+ "type" : String,
324
+ "certainty" : String
325
+ },
326
+ "eventTypeProbability" : Number,
327
+ "repickShift" : Number,
328
+ "repickSTD" : Number,
329
+ "repickCredibleIntervalLower" : Number,
330
+ "repickCredibleIntervalUpper" : Number,
331
+ "source" :
332
+ {
333
+ "agencyID" : String,
334
+ "author" : String
335
+ }
336
+ }
337
+ ```
338
+
339
+ ## Glossary
340
+
341
+ **Optional Values:**
342
+
343
+ The following are values that **may or may not** be provided as part of MachineLearning.
344
+
345
+ * phase - A string that identifies the seismic phase for this data
346
+ * phaseProbability - A decimal number containing the probability of the phase identification
347
+ * distance - A decimal number containing a distance estimation in degrees
348
+ * distanceProbability - A decimal number containing the probability of the distance estimation
349
+ * distanceRangeHalfWidth - A decimal number containing the half-width of a distance range centered at Distance (e.g. Distance is 15 deg +/- 10 deg)
350
+ * distanceRangeSigma - A decimal number containing the standard deviation for a probability PDF curve for Distance (e.g. Distance is 15 deg +/- 3 * DistanceRangeSigma where DistanceProbability is modified by the PDF probability, lowering as it gets further from Distance ). DistanceRangeSigma is mutually exclusive of DistanceRangeHalfWidth, and if both are provided DistanceRangeSigma should be used.
351
+ * backAzimuth - A decimal number containing a backazimuth estimation in degrees
352
+ * backAzimuthProbability - A decimal number containing the probability of the backazimuth estimation
353
+ * magnitude - A decimal number containing the magnitude estimation
354
+ * magnitudeType - A string that identifies the magnitude type
355
+ * magnitudeProbability - A decimal number containing the probability of the magnitude estimation
356
+ * depth - A decimal number containing a depth estimation in kilometers
357
+ * depthProbability - A decimal number containing the probability of the depth estimation
358
+ * eventType - An object containing the event type, see [EventType](EventType.md).
359
+ * eventTypeProbability - A decimal number containing the probability of the event type estimation
360
+ * repickShift - A decimal number containing the repick shift in seconds (to regenerate the initial Pick.Time, subtract this value from the current Pick.Time)
361
+ * repickSTD - A decimal number containing the repick shift standard deviation
362
+ * repickCredibleIntervalLower - A decimal number containing the repick shift credible interval lower
363
+ * repickCredibleIntervalUpper - A decimal number containing the repick shift credible interval upper
364
+ * source - An object containing the source of the MachineLearning, see [Source](Source.md).
365
+
366
+ # Pick Format Specification
367
+
368
+ ## Description
369
+
370
+ Pick is a format designed to encode the basic information of an unassociated
371
+ waveform arrival time pick. Pick uses the
372
+ [JSON standard](http://www.json.org).
373
+
374
+ ## Usage
375
+ Pick is intended for use in seismic data messaging between seismic
376
+ applications and organizations.
377
+
378
+ ## Output
379
+
380
+ ```json
381
+ {
382
+ "type" : "Pick",
383
+ "id" : String,
384
+ "channel" :
385
+ {
386
+ "type": "Feature",
387
+ "geometry": {
388
+ "type": "Point",
389
+ "coordinates": [125.6, 10.1, 1589.0]
390
+ },
391
+ "properties": {
392
+ "station" : String,
393
+ "channel" : String,
394
+ "network" : String,
395
+ "location" : String
396
+ }
397
+ },
398
+ "time" : ISO8601,
399
+ "source" :
400
+ {
401
+ "agencyID" : String,
402
+ "author" : String
403
+ },
404
+ "phase" : String,
405
+ "polarity" : ("up" | "down"),
406
+ "onset" : ("impulsive" | "emergent" | "questionable"),
407
+ "pickerType" : ("manual" | "raypicker" | "filterpicker" | "earthworm" | "other"),
408
+ "filterInfo" : [ {
409
+ "type" : String,
410
+ "highPass" : Number,
411
+ "lowPass" : Number,
412
+ "units" : String
413
+ }, ...],
414
+ "amplitudeInfo" :
415
+ {
416
+ "value" : Number,
417
+ "period" : Number,
418
+ "snr" : Number
419
+ },
420
+ "beamInfo" :
421
+ {
422
+ "backAzimuth" : Number,
423
+ "backAzimuthError" : Number,
424
+ "slowness" : Number,
425
+ "slownessError" : Number,
426
+ "powerRatio" : Number,
427
+ "powerRatioError" : Number,
428
+ },
429
+ "associationInfo" :
430
+ {
431
+ "phase" : String,
432
+ "distance" : Number,
433
+ "azimuth" : Number,
434
+ "residual" : Number,
435
+ "sigma" : Number
436
+ },
437
+ "qualityInfo" : [ {
438
+ "standard": String,
439
+ "value": Number
440
+ }, ...],
441
+ "machineLearningInfo" :
442
+ {
443
+ "phase" : String,
444
+ "phaseProbability" : Number,
445
+ "distance" : Number,
446
+ "distanceProbability" : Number,
447
+ "distanceRangeHalfWidth" : Number,
448
+ "distanceRangeSigma" : Number,
449
+ "backAzimuth" : Number,
450
+ "backAzimuthProbability" : Number,
451
+ "magnitude" : Number,
452
+ "magnitudeType" : String,
453
+ "magnitudeProbability" : Number,
454
+ "depth" : Number,
455
+ "depthProbability" : Number,
456
+ "eventType" : {
457
+ "type" : String,
458
+ "certainty" : String
459
+ },
460
+ "eventTypeProbability" : Number,
461
+ "repickShift" : Number,
462
+ "repickSTD" : Number,
463
+ "repickCredibleIntervalLower" : Number,
464
+ "repickCredibleIntervalUpper" : Number,
465
+ "source" : {
466
+ "agencyID" : String,
467
+ "author" : String
468
+ }
469
+ }
470
+ }
471
+ ```
472
+
473
+ ## Glossary
474
+
475
+ **Required Values:**
476
+
477
+ These are the values **required** to define a pick.
478
+
479
+ * type - A string that identifies this message as a pick.
480
+ * id - A string containing an unique identifier for this pick.
481
+ * channel - A GeoJSON object containing the channel the pick was made at, see [Channel](Channel.md).
482
+ * source - An object containing the source of the pick, see [Source](Source.md).
483
+ * time - A string containing the UTC arrival time of the phase that was picked, in the ISO8601 format `YYYY-MM-DDTHH:MM:SS.SSSZ`.
484
+
485
+ **Optional Values:**
486
+
487
+ The following are supplementary values that **may or may not** be provided by
488
+ various picking algorithms.
489
+
490
+ * phase - A string that identifies the seismic phase that was picked.
491
+ * polarity - A string containing the phase polarity; "up" or "down".
492
+ * onset - A string containing the phase onset; "impulsive", "emergent", or "questionable" .
493
+ * pickerType - A string describing the type of picker; "manual", "raypicker", "filterpicker", "earthworm", or "other".
494
+ * filter - An array of objects containing the filter frequencies when the pick was made, see [Filter](Filter.md).
495
+ * amplitude - An object containing the amplitude associated with the pick, see [Amplitude](Amplitude.md).
496
+ * beam - An object containing the waveform beam information associated with the pick, see [Beam](Beam.md).
497
+ * associationInfo - An object containing the association information if this pick is used as data in a Detection, see [Associated](Associated.md).
498
+ * machineLearningInfo - An object containing the machine learning information of this pick, see [MachineLearning](MachineLearning.md).
499
+ * qualityInfo - An array of objects containing the containing the quality metric information for this pick, see [Quality](Quality.md).
500
+
501
+ # Quality Object Specification
502
+
503
+ ## Description
504
+
505
+ The Quality object is an object designed to hold data quality for a [Pick](Pick.md) message.
506
+ Site uses the [JSON standard](http://www.json.org).
507
+
508
+ ## Usage
509
+
510
+ Quality is intended for use as part of the [Pick](Pick.md) Format in seismic data
511
+ messaging between seismic applications and organizations.
512
+
513
+ ## Output
514
+
515
+ ```json
516
+ {
517
+ "standard": String,
518
+ "value": Number
519
+ }
520
+ ```
521
+
522
+ ## Glossary
523
+
524
+ **Required Values:**
525
+
526
+ These are the values **required** to define a Quality
527
+
528
+ * standard - A string containing the name of the quality standard.
529
+ * value - A string containing numarical value of the quality standard.
530
+
531
+ # Source Object Specification
532
+
533
+ ## Description
534
+
535
+ The Source object is an object designed to define the originating seismic
536
+ organization that produced a [Pick](Pick.md) message.
537
+ Site uses the [JSON standard](http://www.json.org).
538
+
539
+ ## Usage
540
+
541
+ Source is intended for use as part of the [Pick](Pick.md) Format in seismic data
542
+ messaging between seismic applications and organizations.
543
+
544
+ ## Output
545
+
546
+ ```json
547
+ {
548
+ "agencyID" : String,
549
+ "author" : String
550
+ }
551
+ ```
552
+
553
+ ## Glossary
554
+
555
+ **Required Values:**
556
+
557
+ These are the values **required** to define a Source
558
+
559
+ * agencyID - A string containing the originating agency FDSN ID.
560
+ * author - A string containing the source author.
561
+
@@ -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.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,,
13
+ anss_formats-0.0.4.dist-info/METADATA,sha256=8RSZ270Phj4OLm0zK_6NMkrokce0uEUHkoadqJY9a9w,19170
14
+ anss_formats-0.0.4.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
15
+ anss_formats-0.0.4.dist-info/RECORD,,
@@ -1,51 +0,0 @@
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
-