-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create base segy faster.. #10
Comments
Hi, |
Hi Matteo, only time axis. We need the header for each trace though. |
Hi Dimitrios, @jokva do you see any other way to make the process faster? |
Thanks Matteo, |
Hi, If the behavior you notice is real (@jokva ?) this may do the copy line by line. Another way is to do it trace by trace
but this one is much slower than |
Hi Matteo, |
According to segyio-notebooks/03_basic_segy_editing.ipynb -> Cut all traces, I am creating a minimum size empty segy from a "source" segy file with
spec.samples = spec.samples[:1]
.The thing is that copying
dst.header = src.header
takes too long as the "source" segy is huge. Is there any way to create faster the minimal base segy?The text was updated successfully, but these errors were encountered: