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
A C++ tool for extracting and processing 3D seismic data slices from MDIO datasets. The tool will extract a slice of a larger MDIO dataset and output the result to a NumPy array called seismic_slice.npy.
4
+
5
+
This tool demonstrates working with the Poseidon dataset, a public seismic dataset available on AWS Earth, and is provided under a CC BY 4.0 license.
6
+
7
+
## Overview
8
+
9
+
This tool allows users to extract specific slices from 3D seismic data stored in MDIO format, with options to specify ranges for inline, crossline, and depth dimensions. The extracted data can be saved in NumPy format for further analysis.
10
+
11
+
## Prerequisites
12
+
13
+
- GCC 11 *or better* or Clang14 *or better*
14
+
- MDIO library (for reading seismic data)
15
+
- indicators library (for progress bars)
16
+
- CMake (for building)
17
+
18
+
## Installation
19
+
20
+
[Installation instructions would be valuable here]
21
+
22
+
## Usage
23
+
24
+
```bash
25
+
./real_data_example [flags]
26
+
```
27
+
28
+
### Flags
29
+
30
+
-`--dataset_path`: Path to the MDIO dataset (default: "s3://tgs-opendata-poseidon/full_stack_agc.mdio")
31
+
-`--inline_range`: Inline range in format {inline,start,end,step} (default: "{inline,700,701,1}")
32
+
-`--xline_range`: Crossline range in format {crossline,start,end,step} (default: "{crossline,500,700,1}")
33
+
-`--depth_range`: Optional depth range in format {depth,start,end,step}
34
+
-`--variable_name`: Name of the seismic variable to extract (default: "seismic")
35
+
-`--print_dataset`: Print the dataset URL and return without processing
0 commit comments