Saves catalog into a file.
Parameters: |
|
---|
Example
>>> from obspy.core.event import readEvents
>>> catalog = readEvents()
>>> catalog.write("example.xml", format="QUAKEML")
Writing single events into files with meaningful filenames can be done e.g. using event.id
>>> for ev in catalog:
... ev.write("%s.xml" % ev.id, format="QUAKEML")
Supported Formats
Additional ObsPy modules extend the parameters of the write() method. The following table summarizes all known formats currently available for ObsPy.
Please refer to the Linked Function Call of each module for any extra options available.
Format | Required Module | Linked Function Call |
---|---|---|
QUAKEML | obspy.core | obspy.core.quakeml.writeQuakeML() |