obspy.io.css.station._write_css
- _write_css(inventory, basename)[source]
Writes an inventory object to a CSS database.
The
Inventory
,Network
,Station
, andChannel
objects are included in the resulting database. AnyComment
objects are only saved for the network. AnyResponse
objects are not saved. For fields that are saved, most of the important information is used, but any extra metadata that cannot be represented in CSS will be lost.Note
Because CSS stores data in multiple files, you cannot write to a file-like object. You should specify the basename of the CSS database only.
Warning
This function should NOT be called directly, it registers via the the
write()
method of an ObsPyInventory
object, call this instead.- Parameters:
inventory (
Inventory
) – The inventory instance to be written.basename (str) –
The base name of the files to be written. This export format currently writes to the following files (“relations” in CSS terms):
basename.affiliation
Clusters seismic stations into networks.
basename.network
Describes general information about seismic networks.
basename.site
Contains site names and locations on the Earth where seismic measurements are made.
basename.sitechan
Describes the orientation of recording channels at a site.
basename.remark
Stores free-form comments that embellish records of other relations.