segy_read

segy_read(path, keys=None, workers=5, fs=None)

Convenience wrapper to read a SEGY file.

Parameters

Name Type Description Default
path str File system path to the SEGY file. When fs is provided the path is interpreted relative to that filesystem. required
fs filesystem-like object Filesystem providing open if reading from non-local storage. None
keys Iterable[str] Additional header fields to load with each trace. None

Returns

Name Type Description
SeisBlock Loaded dataset.
Back to top