Skip to content

Commit

Permalink
fix: starting unit id @ 1 means basement =0
Browse files Browse the repository at this point in the history
If no basement included in stratigraphic column, then
  • Loading branch information
Lachlan Grose committed Sep 28, 2022
1 parent 7f0494c commit ba627bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LoopStructural/modelling/input/process_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def stratigraphic_column(self):
stratigraphic_column = {}
# add stratigraphy into the column
if self.stratigraphy:
unit_id = 0
unit_id = 1
val = self._stratigraphic_value()
for name, sg in self._stratigraphic_order:
stratigraphic_column[name] = {}
Expand Down

0 comments on commit ba627bb

Please sign in to comment.