Skip to content

Commit

Permalink
fix: inactive faults no longer get cropped by unconformities
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlangrose committed Jan 23, 2025
1 parent d1fdbc6 commit 4211b9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LoopStructural/modelling/core/geological_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1182,7 +1182,7 @@ def add_unconformity(self, feature: GeologicalFeature, value: float) -> Unconfor
logger.debug(f"Reached unconformity {f.name}")
break
logger.debug(f"Adding {uc_feature.name} as unconformity to {f.name}")
if f.type == FeatureType.FAULT:
if f.type == FeatureType.FAULT or f.type == FeatureType.INACTIVEFAULT:
continue
if f == feature:
continue
Expand Down

0 comments on commit 4211b9e

Please sign in to comment.