We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 193dde7 commit 3f03a58Copy full SHA for 3f03a58
1 file changed
src/mdio/converters/mdio.py
@@ -178,6 +178,10 @@ def mdio_to_segy( # noqa: C901
178
axis=tuple(range(1, samples.ndim)),
179
).compute()
180
181
+ # If whole blocks are missing, remove them from the list.
182
+ missing_mask = flat_files == "missing"
183
+ flat_files = flat_files[~missing_mask]
184
+
185
final_concat = [output_segy_path] + flat_files.tolist()
186
187
if client is not None:
0 commit comments