Skip to content

Commit

Permalink
WellLogViewer - Show MD/TVD track and readout (#1236)
Browse files Browse the repository at this point in the history
  • Loading branch information
HansKallekleiv authored Aug 31, 2023
1 parent c2db363 commit 8e3677f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#1229](https://github.com/equinor/webviz-subsurface/pull/1229) - New view for QC of data in `RftPlotter`.

### Fixed
- [#1236](https://github.com/equinor/webviz-subsurface/pull/1236) - Fixed missing scale track and readout after change in `WellLogViewer` component
- [#1232](https://github.com/equinor/webviz-subsurface/pull/1232) - Removed slow function in `RftPlotter` to improve startup time of plugin.
- [#1234](https://github.com/equinor/webviz-subsurface/pull/1234) - Fixed a bug that occured in `SimulationTimeSeriesOneByOne` when changing between ensembles with different sensitivity names.

Expand Down
22 changes: 14 additions & 8 deletions webviz_subsurface/plugins/_well_log_viewer/well_log_viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,15 +159,21 @@ def layout(self) -> html.Div:
wcc.Frame(
style={"flex": 6, "height": "90vh"},
children=[
WellLogViewerComponent(
id=self.uuid("well-log-viewer"),
template=self._log_templates.get(self.initial_log_template),
welllog=xtgeo_well_logs_to_json_format(
well=self._well_set_model.get_well(
self.initial_well_name
)
html.Div(
style={"width": "95%", "height": "100%"},
children=WellLogViewerComponent(
id=self.uuid("well-log-viewer"),
template=self._log_templates.get(
self.initial_log_template
),
welllog=xtgeo_well_logs_to_json_format(
well=self._well_set_model.get_well(
self.initial_well_name
)
),
colorTables=self.colortables,
axisMnemos={"MD": ["MD"], "TVD": ["TVD"]},
),
colorTables=self.colortables,
)
],
),
Expand Down

0 comments on commit 8e3677f

Please sign in to comment.