-
Notifications
You must be signed in to change notification settings - Fork 4
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
Read a large segy file #9
Comments
Hi, Why can use See this: segynp
The minimum and maximum values are not the real values. When Line 80 in 1e0a1c5
|
Since we're not reading the data into memory, reading the time slices will be slower. >>> d[30] # fast
>>> d[:, 30, :]
>>> d[:, :, 30] # slow |
Thanks for your reply. You are right, I missed the eval_range part. |
Hi, thanks for your work, really appreciated!
One question: when I'm reading a large segy file, using this line:
In this case, is "d" already in RAM or not yet? since you can calculate
d.min()
andd.max()
, I assumed
is already read into RAM.However, in the main page, you mentioned "Access the SEG-Y file as a 3D numpy array, without reading the whole file into memory", kind of confused to me.
I'm looking for a solution that could read unstructured data but not into memory yet, I will pick specific inline_number and crossline_number to read into RAM.
Thanks.
The text was updated successfully, but these errors were encountered: