obspy.core.event.read_events
- read_events(pathname_or_url=None, format=None, **kwargs)[source]
Read event files into an ObsPy
Catalog
object.The
read_events()
function opens either one or multiple event files given via file name or URL using thepathname_or_url
attribute.- Parameters:
pathname_or_url (str, pathlib.Path, or file-like object, optional) – String containing a file name or a URL, Path object, or an open file-like object. Wildcards are allowed for a file name. If this attribute is omitted, an example
Catalog
object will be returned.format (str) – Format of the file to read (e.g.
"QUAKEML"
). See the Supported Formats section below for a list of supported formats.
- Return type:
- Returns:
An ObsPy
Catalog
object.
Supported Formats
Additional ObsPy modules extend the functionality of the
read_events()
function. The following table summarizes all known file formats currently supported by ObsPy.Please refer to the Linked Function Call of each module for any extra options available at the import stage.
Format
Used Module
Linked Function Call
CMTSOLUTION
EVT
FNETMT
obspy.io.nied
FOCMEC
GSE2
HYPODDPHA
IMS10BULLETIN
MCHEDR
NDK
NLLOC_HYP
NORDIC
QUAKEML
SC3ML
SCARDEC
ZMAP
Next to the
read_events()
function thewrite()
method of the returnedCatalog
object can be used to export the data to the file system.