cultpenguin / segypy

Read and write SEGY formatted files using Python
Other
24 stars 15 forks source link

I can't read segy data #5

Open israelklink opened 6 years ago

israelklink commented 6 years ago

I'd like to ask your help for a problem I'm encountering. I need to read a data in segy with 2G, this data is a given test. For me it would be very important, however, I can not because this data is big.

Would you have any solution to help me?

cultpenguin commented 6 years ago

Do you want to read a part of the data? That is not that easy to do right now, but you could use

SH = segypy.getSegyHeader(filename) itrace=11 STH, SegyTraceData = getSegyTrace(SH, itrace)

There may me a problem with getSegyTrace though.. I have not tested it in a while.