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 the pathname_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:

Catalog

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.

Next to the read_events() function the write() method of the returned Catalog object can be used to export the data to the file system.