Skip to content

Commit

Permalink
Deprecate SurfaceViewerFMU (#980)
Browse files Browse the repository at this point in the history
  • Loading branch information
HansKallekleiv authored Mar 14, 2022
1 parent cf0e90b commit a9f3145
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#956](https://github.com/equinor/webviz-subsurface/pull/956) - `SimulationTimeSeries` - Deprecate usage of user input options {vector1, vector2, vector3}. Add list of vectors as user input options for initially selected vectors.
- [#961](https://github.com/equinor/webviz-subsurface/pull/961) - Improved error message when there are none valid realizations in an ensemble.
- [#970](https://github.com/equinor/webviz-subsurface/pull/970) - Replaced modals with new Dialog component in `StructuralUncertainty`. Changed display of uncertainty table to be a Dialog.
- [#980](https://github.com/equinor/webviz-subsurface/pull/980) - Deprecated plugin `SurfaceViewerFMU`. This has been replaced by the faster, and more
feature-rich plugin `MapViewerFMU`.

### Fixed
- [#965](https://github.com/equinor/webviz-subsurface/pull/965) - Allow a filtered subset of surface names for multiple attributes in `StructuralUncertainty`.
Expand Down
2 changes: 2 additions & 0 deletions webviz_subsurface/plugins/_surface_viewer_fmu.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from dash import Dash, Input, Output, State, callback_context, dcc, html
from dash.exceptions import PreventUpdate
from webviz_config import WebvizPluginABC, WebvizSettings
from webviz_config.deprecation_decorators import deprecated_plugin
from webviz_config.webviz_store import webvizstore
from webviz_subsurface_components import LeafletMap

Expand All @@ -18,6 +19,7 @@
from webviz_subsurface._private_plugins.surface_selector import SurfaceSelector


@deprecated_plugin("Relevant functionality is implemented in the MapViewerFMU plugin.")
class SurfaceViewerFMU(WebvizPluginABC):
"""Covisualize surfaces from an ensemble.
Expand Down

0 comments on commit a9f3145

Please sign in to comment.