Skip to content

Commit

Permalink
BUG: correct xsectplot due to unintended change in previous refacoring
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrivenaes committed Sep 16, 2024
1 parent fd1fbd8 commit 80fba4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xtgeoviz/plot/xsection.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def plot_well(

# reduce the well data by Pandas operations
dfr = self._well.get_dataframe(copy=False)
dfr = dfr[dfr["Z_TVDSS"] > self._zmin]
self._well.set_dataframe(dfr[dfr["Z_TVDSS"] > self._zmin])

# Create a relative XYLENGTH vector (0.0 where well starts)
self._well.create_relative_hlen()
Expand Down

0 comments on commit 80fba4d

Please sign in to comment.