Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 974 Bytes

README.md

File metadata and controls

38 lines (30 loc) · 974 Bytes

Logo

SEGD IO

About The Project

Reader for seismic tape files conforming to the SEG-D specifications.

Currently supported

Usage

Print file summary

from segdio import SEGD
segd = SEGD("segd_file_name.segd")
print(segd)

Read trace data

This will return the data from the specified channel set.

data = segd.data(CHANNEL_SET_INDEX)

Read trace header

This will return the trace headers from the specified channel set.

channel_trace_headers = segd.channel_set_headers[CHANNEL_SET_INDEX].trace_headers

Acknowledgments

Adapted from https://github.com/drsudow/SEG-D (Author: Mattias Südow)