We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 193dde7 + 3f03a58 commit dbb3ee1Copy full SHA for dbb3ee1
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