You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to read in a segy data set where dead traces have been inserted into the dataset. Dead traces have source and receiver coordinates set as zero as well as the mute being set at the end of the trace. Is there a way to ignore traces based on a header word value or range (e.g. don't read if SourceX is zero)? I imagine(?) that having zeros in my geometry and dead traces will hurt when I try FWI.
By the way, the "how to" video is very good. In it there is mention of the readme file that goes along with the video but I don't see that file in the distribution or github page. I did not see what I wanted to do in the video but it would be handy to have the readme as a reference if it is available.
Thanks.
The text was updated successfully, but these errors were encountered:
Is there a way to ignore traces based on a header word value or range
Not "easily". The backend is written in a fairly efficient way that reads the file by chunck as it is faster rather than by trace. It would also be tricky because some datasets have valid src/rec at zero position. So the simplest way would be to use get_headers on your data then filter out the trace you don't want with filter/find, see for example in the scanning wiki https://github.com/slimgroup/SegyIO.jl/wiki/Scanning
I am trying to read in a segy data set where dead traces have been inserted into the dataset. Dead traces have source and receiver coordinates set as zero as well as the mute being set at the end of the trace. Is there a way to ignore traces based on a header word value or range (e.g. don't read if SourceX is zero)? I imagine(?) that having zeros in my geometry and dead traces will hurt when I try FWI.
By the way, the "how to" video is very good. In it there is mention of the readme file that goes along with the video but I don't see that file in the distribution or github page. I did not see what I wanted to do in the video but it would be handy to have the readme as a reference if it is available.
Thanks.
The text was updated successfully, but these errors were encountered: