webviz-subsurface 0.2.34__py3-none-any.whl → 0.2.36__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. webviz_subsurface/_providers/ensemble_grid_provider/_xtgeo_to_vtk_explicit_structured_grid.py +1 -1
  2. webviz_subsurface/_providers/ensemble_grid_provider/grid_viz_service.py +3 -3
  3. webviz_subsurface/_providers/ensemble_summary_provider/_provider_impl_arrow_lazy.py +3 -3
  4. webviz_subsurface/_providers/ensemble_summary_provider/_provider_impl_arrow_presampled.py +1 -1
  5. webviz_subsurface/_providers/ensemble_summary_provider/_resampling.py +30 -22
  6. webviz_subsurface/_providers/ensemble_surface_provider/_provider_impl_file.py +1 -17
  7. webviz_subsurface/_providers/ensemble_surface_provider/_surface_to_float32_array.py +1 -1
  8. webviz_subsurface/plugins/_bhp_qc/views/_view_functions.py +1 -1
  9. webviz_subsurface/plugins/_co2_leakage/_utilities/plume_extent.py +1 -1
  10. webviz_subsurface/plugins/_co2_leakage/views/mainview/mainview.py +2 -2
  11. webviz_subsurface/plugins/_grid_viewer_fmu/views/view_3d/view_elements/_vtk_view_3d_element.py +2 -2
  12. webviz_subsurface/plugins/_history_match.py +1 -1
  13. webviz_subsurface/plugins/_map_viewer_fmu/layout.py +2 -2
  14. webviz_subsurface/plugins/_relative_permeability.py +1 -1
  15. webviz_subsurface/plugins/_rft_plotter/_plugin.py +5 -0
  16. webviz_subsurface/plugins/_rft_plotter/_utils/_rft_plotter_data_model.py +5 -2
  17. webviz_subsurface/plugins/_running_time_analysis_fmu.py +3 -3
  18. webviz_subsurface/plugins/_well_log_viewer/well_log_viewer.py +1 -1
  19. {webviz_subsurface-0.2.34.dist-info → webviz_subsurface-0.2.36.dist-info}/METADATA +3 -4
  20. {webviz_subsurface-0.2.34.dist-info → webviz_subsurface-0.2.36.dist-info}/RECORD +25 -52
  21. tests/integration_tests/plugin_tests/__init__.py +0 -0
  22. tests/integration_tests/plugin_tests/test_bhp_qc.py +0 -12
  23. tests/integration_tests/plugin_tests/test_history_match.py +0 -18
  24. tests/integration_tests/plugin_tests/test_line_plotter_fmu.py +0 -29
  25. tests/integration_tests/plugin_tests/test_parameter_analysis.py +0 -26
  26. tests/integration_tests/plugin_tests/test_parameter_correlation.py +0 -25
  27. tests/integration_tests/plugin_tests/test_parameter_distribution.py +0 -13
  28. tests/integration_tests/plugin_tests/test_parameter_parallel_coordinates.py +0 -13
  29. tests/integration_tests/plugin_tests/test_parameter_response_correlation.py +0 -15
  30. tests/integration_tests/plugin_tests/test_property_statistics.py +0 -22
  31. tests/integration_tests/plugin_tests/test_pvt_plot.py +0 -15
  32. tests/integration_tests/plugin_tests/test_relative_permeability.py +0 -14
  33. tests/integration_tests/plugin_tests/test_reservoir_simulation_timeseries.py +0 -30
  34. tests/integration_tests/plugin_tests/test_reservoir_simulation_timeseries_onebyone.py +0 -16
  35. tests/integration_tests/plugin_tests/test_reservoir_simulation_timeseries_regional.py +0 -23
  36. tests/integration_tests/plugin_tests/test_rft_plotter.py +0 -43
  37. tests/integration_tests/plugin_tests/test_segy_viewer.py +0 -22
  38. tests/integration_tests/plugin_tests/test_simulation_timeseries_onebyone.py +0 -23
  39. tests/integration_tests/plugin_tests/test_structural_uncertainty.py +0 -244
  40. tests/integration_tests/plugin_tests/test_surface_viewer_fmu.py +0 -21
  41. tests/integration_tests/plugin_tests/test_surface_with_grid_crossection.py +0 -45
  42. tests/integration_tests/plugin_tests/test_surface_with_seismic_crossection.py +0 -35
  43. tests/integration_tests/plugin_tests/test_tornado_plotter_fmu.py +0 -14
  44. tests/integration_tests/plugin_tests/test_vfp_analysis.py +0 -13
  45. tests/integration_tests/plugin_tests/test_volumetric_analysis.py +0 -38
  46. tests/integration_tests/plugin_tests/test_well_log_viewer.py +0 -16
  47. webviz_subsurface/_providers/ensemble_summary_provider/dev_resampling_perf_testing.py +0 -112
  48. {webviz_subsurface-0.2.34.dist-info → webviz_subsurface-0.2.36.dist-info}/LICENSE +0 -0
  49. {webviz_subsurface-0.2.34.dist-info → webviz_subsurface-0.2.36.dist-info}/LICENSE.chromedriver +0 -0
  50. {webviz_subsurface-0.2.34.dist-info → webviz_subsurface-0.2.36.dist-info}/WHEEL +0 -0
  51. {webviz_subsurface-0.2.34.dist-info → webviz_subsurface-0.2.36.dist-info}/entry_points.txt +0 -0
  52. {webviz_subsurface-0.2.34.dist-info → webviz_subsurface-0.2.36.dist-info}/top_level.txt +0 -0
@@ -75,7 +75,7 @@ def _create_vtk_esgrid_from_verts_and_conn(
75
75
  vtk_cell_array.SetData(8, conn_idarr)
76
76
 
77
77
  vtk_esgrid = vtkExplicitStructuredGrid()
78
- vtk_esgrid.SetDimensions(point_dims.tolist())
78
+ vtk_esgrid.SetDimensions(point_dims.tolist()) # type: ignore
79
79
  vtk_esgrid.SetPoints(vtk_points)
80
80
  vtk_esgrid.SetCells(vtk_cell_array)
81
81
 
@@ -365,15 +365,15 @@ class GridVizService:
365
365
 
366
366
  plane = vtkPlane()
367
367
  plane.SetOrigin([x_0, y_0, 0])
368
- plane.SetNormal(right_vec.tolist())
368
+ plane.SetNormal(right_vec.tolist()) # type: ignore
369
369
 
370
370
  plane_0 = vtkPlane()
371
371
  plane_0.SetOrigin([x_0, y_0, 0])
372
- plane_0.SetNormal(fwd_vec.tolist())
372
+ plane_0.SetNormal(fwd_vec.tolist()) # type: ignore
373
373
 
374
374
  plane_1 = vtkPlane()
375
375
  plane_1.SetOrigin([x_1, y_1, 0])
376
- plane_1.SetNormal((-fwd_vec).tolist())
376
+ plane_1.SetNormal((-fwd_vec).tolist()) # type: ignore
377
377
 
378
378
  cutter_alg.SetPlane(plane)
379
379
  cutter_alg.Update()
@@ -56,7 +56,7 @@ def _find_first_non_increasing_date_pair(
56
56
  ) -> Tuple[Optional[np.datetime64], Optional[np.datetime64]]:
57
57
  dates_np = table.column("DATE").to_numpy()
58
58
  offending_indices = np.asarray(np.diff(dates_np) <= np.timedelta64(0)).nonzero()[0]
59
- if not offending_indices:
59
+ if len(offending_indices) == 0:
60
60
  return (None, None)
61
61
 
62
62
  return (dates_np[offending_indices[0]], dates_np[offending_indices[0] + 1])
@@ -313,7 +313,7 @@ class ProviderImplArrowLazy(EnsembleSummaryProvider):
313
313
  f"find_unique={et_find_unique_ms}ms)"
314
314
  )
315
315
 
316
- return intersected_dates.astype(datetime.datetime).tolist()
316
+ return intersected_dates.astype(datetime.datetime).tolist() # type: ignore
317
317
 
318
318
  def get_vectors_df(
319
319
  self,
@@ -377,7 +377,7 @@ class ProviderImplArrowLazy(EnsembleSummaryProvider):
377
377
  table = table.filter(real_mask)
378
378
  et_filter_ms = timer.lap_ms()
379
379
 
380
- np_lookup_date = np.datetime64(date, "ms")
380
+ np_lookup_date = np.datetime64(date).astype("M8[ms]")
381
381
  table = sample_segmented_multi_real_table_at_date(table, np_lookup_date)
382
382
 
383
383
  et_resample_ms = timer.lap_ms()
@@ -374,7 +374,7 @@ class ProviderImplArrowPresampled(EnsembleSummaryProvider):
374
374
  f"find_unique={et_find_unique_ms}ms)"
375
375
  )
376
376
 
377
- return intersected_dates.astype(datetime.datetime).tolist()
377
+ return intersected_dates.astype(datetime.datetime).tolist() # type: ignore
378
378
 
379
379
  def get_vectors_df(
380
380
  self,
@@ -17,7 +17,7 @@ def _truncate_day_to_monday(datetime_day: np.datetime64) -> np.datetime64:
17
17
  def _quarter_start_month(datetime_day: np.datetime64) -> np.datetime64:
18
18
  # A bit hackish, utilizes the fact that datetime64 is relative to epoch
19
19
  # 1970-01-01 which is the first day in Q1.
20
- datetime_month = np.datetime64(datetime_day, "M")
20
+ datetime_month = datetime_day.astype("M8[M]")
21
21
  return datetime_month - (datetime_month.astype(int) % 3)
22
22
 
23
23
 
@@ -30,44 +30,52 @@ def generate_normalized_sample_dates(
30
30
  """
31
31
 
32
32
  if freq == Frequency.DAILY:
33
- start = np.datetime64(min_date, "D")
34
- stop = np.datetime64(max_date, "D")
33
+ start = min_date.astype("M8[D]")
34
+ stop = max_date.astype("M8[D]")
35
35
  if stop < max_date:
36
- stop += 1
37
- sampledates = np.arange(start, stop + 1)
36
+ stop += np.timedelta64(1, "D")
37
+ sampledates = np.arange(start, stop + np.timedelta64(1, "D"))
38
+
38
39
  elif freq == Frequency.WEEKLY:
39
- start = _truncate_day_to_monday(np.datetime64(min_date, "D"))
40
- stop = _truncate_day_to_monday(np.datetime64(max_date, "D"))
40
+ start = _truncate_day_to_monday(min_date.astype("M8[D]"))
41
+ stop = _truncate_day_to_monday(max_date.astype("M8[D]"))
41
42
  if start > min_date:
42
- start -= 7
43
+ start -= np.timedelta64(7, "D")
43
44
  if stop < max_date:
44
- stop += 7
45
- sampledates = np.arange(start, stop + 1, 7)
45
+ stop += np.timedelta64(7, "D")
46
+ sampledates = np.arange(
47
+ start, stop + np.timedelta64(1, "D"), np.timedelta64(7, "D")
48
+ )
49
+
46
50
  elif freq == Frequency.MONTHLY:
47
- start = np.datetime64(min_date, "M")
48
- stop = np.datetime64(max_date, "M")
51
+ start = min_date.astype("M8[M]")
52
+ stop = max_date.astype("M8[M]")
49
53
  if stop < max_date:
50
- stop += 1
51
- sampledates = np.arange(start, stop + 1)
54
+ stop += np.timedelta64(1, "M")
55
+ sampledates = np.arange(start, stop + np.timedelta64(1, "M"))
56
+
52
57
  elif freq == Frequency.QUARTERLY:
53
58
  start = _quarter_start_month(min_date)
54
59
  stop = _quarter_start_month(max_date)
55
60
  if stop < max_date:
56
- stop += 3
57
- sampledates = np.arange(start, stop + 1, 3)
61
+ stop += np.timedelta64(3, "M")
62
+ sampledates = np.arange(
63
+ start, stop + np.timedelta64(1, "M"), np.timedelta64(3, "M")
64
+ )
65
+
58
66
  elif freq == Frequency.YEARLY:
59
- start = np.datetime64(min_date, "Y")
60
- stop = np.datetime64(max_date, "Y")
67
+ start = min_date.astype("M8[Y]")
68
+ stop = max_date.astype("M8[Y]")
61
69
  if stop < max_date:
62
- stop += 1
63
- sampledates = np.arange(start, stop + 1)
70
+ stop += np.timedelta64(1, "Y")
71
+ sampledates = np.arange(start, stop + np.timedelta64(1, "Y"))
72
+
64
73
  else:
65
74
  raise NotImplementedError(
66
75
  f"Currently not supporting resampling to frequency {freq}."
67
76
  )
68
77
 
69
- sampledates = sampledates.astype("datetime64[ms]")
70
-
78
+ sampledates = sampledates.astype("M8[ms]")
71
79
  return sampledates
72
80
 
73
81
 
@@ -11,7 +11,6 @@ import xtgeo
11
11
  from webviz_subsurface._utils.enum_shim import StrEnum
12
12
  from webviz_subsurface._utils.perf_timer import PerfTimer
13
13
 
14
- from ._stat_surf_cache import StatSurfCache
15
14
  from ._surface_discovery import SurfaceFileInfo
16
15
  from .ensemble_surface_provider import (
17
16
  EnsembleSurfaceProvider,
@@ -26,7 +25,6 @@ LOGGER = logging.getLogger(__name__)
26
25
 
27
26
  REL_SIM_DIR = "sim"
28
27
  REL_OBS_DIR = "obs"
29
- REL_STAT_CACHE_DIR = "stat_cache"
30
28
 
31
29
 
32
30
  # pylint: disable=too-few-public-methods
@@ -53,8 +51,6 @@ class ProviderImplFile(EnsembleSurfaceProvider):
53
51
  self._provider_dir = provider_dir
54
52
  self._inventory_df = surface_inventory_df
55
53
 
56
- self._stat_surf_cache = StatSurfCache(self._provider_dir / REL_STAT_CACHE_DIR)
57
-
58
54
  @staticmethod
59
55
  # pylint: disable=too-many-locals
60
56
  def write_backing_store(
@@ -237,22 +233,10 @@ class ProviderImplFile(EnsembleSurfaceProvider):
237
233
  ) -> Optional[xtgeo.RegularSurface]:
238
234
  timer = PerfTimer()
239
235
 
240
- surf = self._stat_surf_cache.fetch(address)
241
- if surf:
242
- LOGGER.debug(
243
- f"Fetched statistical surface from cache in: {timer.elapsed_s():.2f}s"
244
- )
245
- return surf
246
-
247
236
  surf = self._create_statistical_surface(address)
248
- et_create_s = timer.lap_s()
249
-
250
- self._stat_surf_cache.store(address, surf)
251
- et_write_cache_s = timer.lap_s()
252
237
 
253
238
  LOGGER.debug(
254
- f"Created and wrote statistical surface to cache in: {timer.elapsed_s():.2f}s ("
255
- f"create={et_create_s:.2f}s, store={et_write_cache_s:.2f}s), "
239
+ f"Created statistical surface in: {timer.elapsed_s():.2f}s ("
256
240
  f"[stat={address.statistic}, "
257
241
  f"attr={address.attribute}, name={address.name}, date={address.datestr}]"
258
242
  )
@@ -6,7 +6,7 @@ import xtgeo
6
6
 
7
7
  def surface_to_float32_array(surface: xtgeo.RegularSurface) -> io.BytesIO:
8
8
  values = surface.values.astype(np.float32)
9
- values.fill_value = np.NaN
9
+ values.fill_value = np.nan
10
10
  values = np.ma.filled(values)
11
11
 
12
12
  # Rotate 90 deg left.
@@ -20,7 +20,7 @@ def filter_df(df: pd.DataFrame, ensemble: str, wells: List[str]) -> pd.DataFrame
20
20
  in statistics.
21
21
  """
22
22
  columns = ["ENSEMBLE"] + [f"WBHP:{well}" for well in wells]
23
- return df.loc[df["ENSEMBLE"] == ensemble][columns].replace(0, np.NaN)
23
+ return df.loc[df["ENSEMBLE"] == ensemble][columns].replace(0, np.nan)
24
24
 
25
25
 
26
26
  def calc_statistics(df: pd.DataFrame) -> pd.DataFrame:
@@ -105,4 +105,4 @@ def _find_contours(
105
105
 
106
106
  def _simplify(poly: np.ndarray, simplify_dist: float) -> List[List[float]]:
107
107
  simplified = shapely.geometry.LineString(poly).simplify(simplify_dist)
108
- return np.array(simplified.coords).tolist()
108
+ return np.array(simplified.coords).tolist() # type: ignore
@@ -6,7 +6,7 @@ from dash import html
6
6
  from dash.development.base_component import Component
7
7
  from webviz_config.utils import StrEnum
8
8
  from webviz_config.webviz_plugin_subclasses import ViewABC, ViewElementABC
9
- from webviz_subsurface_components import DashSubsurfaceViewer
9
+ from webviz_subsurface_components import SubsurfaceViewer
10
10
 
11
11
 
12
12
  class MainView(ViewABC):
@@ -48,7 +48,7 @@ class MapViewElement(ViewElementABC):
48
48
  children=[
49
49
  html.Div(
50
50
  [
51
- DashSubsurfaceViewer(
51
+ SubsurfaceViewer(
52
52
  id=self.register_component_unique_id(
53
53
  self.Ids.DECKGL_MAP
54
54
  ),
@@ -2,7 +2,7 @@ from dash import dcc, html
2
2
  from dash.development.base_component import Component
3
3
  from webviz_config.utils import StrEnum
4
4
  from webviz_config.webviz_plugin_subclasses import ViewElementABC
5
- from webviz_subsurface_components import DashSubsurfaceViewer
5
+ from webviz_subsurface_components import SubsurfaceViewer
6
6
 
7
7
 
8
8
  class VTKView3D(ViewElementABC):
@@ -45,7 +45,7 @@ class VTKView3D(ViewElementABC):
45
45
  html.Div(
46
46
  style={"position": "absolute", "width": "100%", "height": "90%"},
47
47
  children=[
48
- DashSubsurfaceViewer(
48
+ SubsurfaceViewer(
49
49
  id=self.register_component_unique_id(VTKView3D.Ids.VIEW),
50
50
  layers=[
51
51
  {
@@ -155,7 +155,7 @@ def _get_sorted_edges(number_observation_groups: int) -> Dict[str, list]:
155
155
  np.random.chisquare(df=1, size=number_observation_groups)
156
156
  )
157
157
 
158
- sorted_values = np.flip(sorted_values, 0)
158
+ sorted_values = np.flip(sorted_values, 0) # type: ignore
159
159
 
160
160
  p10 = np.percentile(sorted_values, 90, axis=1)
161
161
  p90 = np.percentile(sorted_values, 10, axis=1)
@@ -3,7 +3,7 @@ from typing import Any, Callable, Dict, List, Union
3
3
 
4
4
  import webviz_core_components as wcc
5
5
  from dash import dcc, html
6
- from webviz_subsurface_components import DashSubsurfaceViewer # type: ignore
6
+ from webviz_subsurface_components import SubsurfaceViewer # type: ignore
7
7
 
8
8
  from webviz_subsurface._utils.enum_shim import StrEnum
9
9
 
@@ -271,7 +271,7 @@ class MapViewLayout(FullScreen):
271
271
  ) -> None:
272
272
  super().__init__(
273
273
  children=html.Div(
274
- DashSubsurfaceViewer(
274
+ SubsurfaceViewer(
275
275
  id={"id": get_uuid(LayoutElements.DECKGLMAP), "tab": tab},
276
276
  layers=update_map_layers(1, render_surfaces_as_images),
277
277
  colorTables=color_tables,
@@ -971,7 +971,7 @@ def add_statistic_traces(df, color_by, curves, sataxis, colors, nplots):
971
971
 
972
972
  traces = []
973
973
  for ens_no, (ens, ens_df) in enumerate(
974
- df[["ENSEMBLE", "REAL", "SATNUM", sataxis] + curves].groupby(["ENSEMBLE"])
974
+ df[["ENSEMBLE", "REAL", "SATNUM", sataxis] + curves].groupby("ENSEMBLE")
975
975
  ):
976
976
  for satnum_no, (satnum, satnum_df) in enumerate(
977
977
  ens_df[["REAL", "SATNUM", sataxis] + curves].groupby("SATNUM")
@@ -102,6 +102,8 @@ forward_models.html?highlight=gendata_rft#MERGE_RFT_ERTOBS).
102
102
  def __init__(
103
103
  self,
104
104
  webviz_settings: WebvizSettings,
105
+ rft: str = "share/results/tables/rft.csv",
106
+ rft_ert: str = "share/results/tables/rft_ert.csv",
105
107
  csvfile_rft: Path = None,
106
108
  csvfile_rft_ert: Path = None,
107
109
  ensembles: Optional[List[str]] = None,
@@ -109,11 +111,14 @@ forward_models.html?highlight=gendata_rft#MERGE_RFT_ERTOBS).
109
111
  obsdata: Path = None,
110
112
  faultlines: Path = None,
111
113
  ) -> None:
114
+ # pylint: disable = too-many-arguments
112
115
  super().__init__()
113
116
 
114
117
  self._datamodel = RftPlotterDataModel(
115
118
  webviz_settings,
116
119
  ensembles,
120
+ rft,
121
+ rft_ert,
117
122
  formations,
118
123
  faultlines,
119
124
  obsdata,
@@ -27,12 +27,15 @@ class RftPlotterDataModel:
27
27
  self,
28
28
  webviz_settings: WebvizSettings,
29
29
  ensembles: Optional[List[str]],
30
+ rft: str,
31
+ rft_ert: str,
30
32
  formations: Path = None,
31
33
  faultlines: Path = None,
32
34
  obsdata: Path = None,
33
35
  csvfile_rft: Path = None,
34
36
  csvfile_rft_ert: Path = None,
35
37
  ):
38
+ # pylint: disable = too-many-arguments
36
39
  self.formations = formations
37
40
  self.faultlines = faultlines
38
41
  self.obsdata = obsdata
@@ -67,12 +70,12 @@ class RftPlotterDataModel:
67
70
 
68
71
  self.ertdatadf = create_csvfile_providerset_from_paths(
69
72
  ens_paths,
70
- "share/results/tables/rft_ert.csv",
73
+ rft_ert,
71
74
  ).get_aggregated_dataframe()
72
75
 
73
76
  try:
74
77
  self.simdf = create_csvfile_providerset_from_paths(
75
- ens_paths, "share/results/tables/rft.csv"
78
+ ens_paths, rft
76
79
  ).get_aggregated_dataframe()
77
80
 
78
81
  except ValueError as err:
@@ -557,9 +557,9 @@ def make_status_df(
557
557
  if len(set(range(min(reals), max(reals) + 1))) > len(set(reals)):
558
558
  missing_df = ens_dfs[0].copy()
559
559
  missing_df["STATUS"] = "Realization not started"
560
- missing_df["RUNTIME"] = np.NaN
561
- missing_df["JOB_SCALED_RUNTIME"] = np.NaN
562
- missing_df["ENS_SCALED_RUNTIME"] = np.NaN
560
+ missing_df["RUNTIME"] = np.nan
561
+ missing_df["JOB_SCALED_RUNTIME"] = np.nan
562
+ missing_df["ENS_SCALED_RUNTIME"] = np.nan
563
563
  for missing_real in set(range(min(reals), max(reals) + 1)).difference(
564
564
  set(reals)
565
565
  ):
@@ -171,7 +171,7 @@ Format of the `initial_settings` argument:
171
171
  self.initial_well_name
172
172
  )
173
173
  ),
174
- colorTables=self.colortables,
174
+ colorMapFunctions=self.colortables,
175
175
  axisMnemos={"MD": ["MD"], "TVD": ["TVD"]},
176
176
  ),
177
177
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: webviz-subsurface
3
- Version: 0.2.34
3
+ Version: 0.2.36
4
4
  Summary: Webviz config plugins for subsurface data
5
5
  Home-page: https://github.com/equinor/webviz-subsurface
6
6
  Author: R&T Equinor
@@ -40,9 +40,8 @@ Requires-Dist: scipy>=1.2
40
40
  Requires-Dist: statsmodels>=0.12.1
41
41
  Requires-Dist: xtgeo>=2.20.0
42
42
  Requires-Dist: vtk>=9.2.2
43
- Requires-Dist: webviz-config
44
- Requires-Dist: webviz-core-components>=0.6
45
- Requires-Dist: webviz-subsurface-components==1.0.2
43
+ Requires-Dist: webviz-config>=0.6.5
44
+ Requires-Dist: webviz-subsurface-components>=1.0.3
46
45
  Requires-Dist: res2df>=1.0; sys_platform == "linux"
47
46
  Requires-Dist: opm>=2023.10; sys_platform == "linux"
48
47
  Provides-Extra: tests
@@ -1,32 +1,6 @@
1
1
  tests/integration_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  tests/integration_tests/test_parameter_filter.py,sha256=MUK6g_nbT8kPDjRdRIMrVRjb5_I17jqR7mtggiSOA_Q,849
3
3
  tests/integration_tests/test_surface_selector.py,sha256=gISgeRpKPvKTdiV2Qh19mhiPK85fGSIl4NYzoh1VMGo,1497
4
- tests/integration_tests/plugin_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- tests/integration_tests/plugin_tests/test_bhp_qc.py,sha256=dcAoOjPJnVhqkBqcTDIeXgKZshkaNuSLL0yui_7n-B8,390
6
- tests/integration_tests/plugin_tests/test_history_match.py,sha256=b_ebHT3EiozLf1zp8hVDV2-mxnoTKt3_rWluUvDntvo,550
7
- tests/integration_tests/plugin_tests/test_line_plotter_fmu.py,sha256=Tc0mo-KsePZ8fglLQPcY2gEttJffUhP3s5i8UX7yY3U,971
8
- tests/integration_tests/plugin_tests/test_parameter_analysis.py,sha256=iB3RmFAPLujNewZJOlhf2VteSnaWk7aWoKm7F8qgPhY,729
9
- tests/integration_tests/plugin_tests/test_parameter_correlation.py,sha256=OcrvTQXjViq1aBCjAO7hBWPpbnQGgJQeyDzNBsHJ0uk,976
10
- tests/integration_tests/plugin_tests/test_parameter_distribution.py,sha256=c4A2naqz8O2fGC9H8DcNEozNqdOBCn9eo_XXUgTcTOg,410
11
- tests/integration_tests/plugin_tests/test_parameter_parallel_coordinates.py,sha256=qP_QyY5Nqg_dOkT3JegOZGLyPRErJ1iN7vDt80SpWMA,432
12
- tests/integration_tests/plugin_tests/test_parameter_response_correlation.py,sha256=s1suwMrh3qJVgPxBJNgj8fXWDss2QeBzV-4Xb-ScXvs,559
13
- tests/integration_tests/plugin_tests/test_property_statistics.py,sha256=6UKzrKVVQ2IW_dUO8rkWPYMqjuhf4zFxRB-KjEYNPCQ,683
14
- tests/integration_tests/plugin_tests/test_pvt_plot.py,sha256=4BRxUN5js5VBXORPvLgtrCLwOZDEePtCIR6F76hvxZg,469
15
- tests/integration_tests/plugin_tests/test_relative_permeability.py,sha256=4wOmqHXNOSI1v3Hndy-SEmxbzCULpUSKqIvtH_T4V2M,463
16
- tests/integration_tests/plugin_tests/test_reservoir_simulation_timeseries.py,sha256=79H7G-EeUaaZODCINO9Hg6r2FOq_NfroVdpqaHKNOxQ,810
17
- tests/integration_tests/plugin_tests/test_reservoir_simulation_timeseries_onebyone.py,sha256=BuPgcOQHoToZJ-865f7lLlhAiUTiyzzADaQI6awSF74,501
18
- tests/integration_tests/plugin_tests/test_reservoir_simulation_timeseries_regional.py,sha256=Yt9XzC1x9c9SFHaPbmvhHKfPURaKbz7jztQXUNOWJ0I,664
19
- tests/integration_tests/plugin_tests/test_rft_plotter.py,sha256=6_YPuZX1Pdcii8KinR2uWgEcX-_X6yoPj99WFlzzjUM,1356
20
- tests/integration_tests/plugin_tests/test_segy_viewer.py,sha256=5EN2my8k-ZHFaJFe0LA24268FWaWNsLJ1Cc5qUjXK3s,620
21
- tests/integration_tests/plugin_tests/test_simulation_timeseries_onebyone.py,sha256=ivWIxwRcCi9XZxccc4vNteM7Il9rJ912yMw_amXURF0,722
22
- tests/integration_tests/plugin_tests/test_structural_uncertainty.py,sha256=JeuIPJ8pSuCQlbY4-4atDPNmOrYlxwVfl5eLWpqzYUg,8151
23
- tests/integration_tests/plugin_tests/test_surface_viewer_fmu.py,sha256=rJn_xd6u9iCHW9FEg8hVWECwGxJlQMxC9MmUFm3_EeY,607
24
- tests/integration_tests/plugin_tests/test_surface_with_grid_crossection.py,sha256=0pns3cZtV_YLobNbH7DZ4k9Xsxl8LVfZkcVNignP130,1191
25
- tests/integration_tests/plugin_tests/test_surface_with_seismic_crossection.py,sha256=f_zaMFBK1JBE-QqZcR4LUU-ZUoO9fC8ooNFDIecyZhA,985
26
- tests/integration_tests/plugin_tests/test_tornado_plotter_fmu.py,sha256=PFOsdmwTJ9uWolU674fVvr4DOjdTmadIXLwiW3iswxg,500
27
- tests/integration_tests/plugin_tests/test_vfp_analysis.py,sha256=npT9frSFTlhHE2_xSABIiF_WhaBBtTQuJXZhxYR3KIQ,407
28
- tests/integration_tests/plugin_tests/test_volumetric_analysis.py,sha256=IlXUUaAUcFm1q9elaFu3ljDKL_j0zogbxPS9qcSfGp0,1227
29
- tests/integration_tests/plugin_tests/test_well_log_viewer.py,sha256=GRnd6PBET2lJX5RhFcdadwaqJKQMDljxCTNZM_BJs7o,527
30
4
  tests/unit_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
5
  tests/unit_tests/abbreviations_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
6
  tests/unit_tests/abbreviations_tests/test_reservoir_simulation.py,sha256=vTS_rusPPEYj8rRHpx_2NvsOY2YhvF_W_2eXenCFjRo,3410
@@ -150,10 +124,10 @@ webviz_subsurface/_providers/ensemble_fault_polygons_provider/fault_polygons_ser
150
124
  webviz_subsurface/_providers/ensemble_grid_provider/__init__.py,sha256=XggnzcGocclmfvWELvGUnCAKOg0d7w2LJc-JVPf3sXU,217
151
125
  webviz_subsurface/_providers/ensemble_grid_provider/_egrid_file_discovery.py,sha256=bEzEQ8PGkRdVKThcLi1M81o8rdArmOjloFml95QuwP0,2608
152
126
  webviz_subsurface/_providers/ensemble_grid_provider/_roff_file_discovery.py,sha256=Hg0XFERVUjLdI5Zuxehg3jiuHdLl2Cj-CmtusGDqcfE,3584
153
- webviz_subsurface/_providers/ensemble_grid_provider/_xtgeo_to_vtk_explicit_structured_grid.py,sha256=AYKH-ehLo7yV4BhQSRw8htTLtqJyzyAcBENMDgtK1VI,2904
127
+ webviz_subsurface/_providers/ensemble_grid_provider/_xtgeo_to_vtk_explicit_structured_grid.py,sha256=_ytP2R6MvBeRk-4dcXE5uyGC7OOyly43k50IXhylKYI,2920
154
128
  webviz_subsurface/_providers/ensemble_grid_provider/ensemble_grid_provider.py,sha256=_qDB8kWL8cG6F6SFtKNvGTljH1uT3CZ778oME8cAzPA,1413
155
129
  webviz_subsurface/_providers/ensemble_grid_provider/ensemble_grid_provider_factory.py,sha256=p8gdcUfBCIj7RcvewzHJ2GeYammy6WV8J6sxXxCoY5s,6507
156
- webviz_subsurface/_providers/ensemble_grid_provider/grid_viz_service.py,sha256=RfBhkHzYVdCZE44QRk0hQLcOvJV_EZ9iYssgMYiPDt0,27711
130
+ webviz_subsurface/_providers/ensemble_grid_provider/grid_viz_service.py,sha256=vtjbNIVG3rTL_gCU3bgNN07N4VN80_04WAj1p-KBYiI,27759
157
131
  webviz_subsurface/_providers/ensemble_grid_provider/provider_impl_egrid.py,sha256=Pc9bIW49DCTz8nbz0ujwk7vjA_9Y6lVqp3etidPIk9k,6446
158
132
  webviz_subsurface/_providers/ensemble_grid_provider/provider_impl_roff.py,sha256=FUsBpUroAHAPuKZ-sB1aAFwy4An4QDPYyGQ7WDzvCN0,12509
159
133
  webviz_subsurface/_providers/ensemble_summary_provider/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -161,21 +135,20 @@ webviz_subsurface/_providers/ensemble_summary_provider/_arrow_unsmry_import.py,s
161
135
  webviz_subsurface/_providers/ensemble_summary_provider/_csv_import.py,sha256=znx5say_PuSB0Fg7jH8ob81-NCHgTWZlB-ioRflg8oI,1020
162
136
  webviz_subsurface/_providers/ensemble_summary_provider/_dataframe_utils.py,sha256=6xkb7Rrwdis74sz_VZ4SQgjMm9Z4zun16u5YLhe9OhY,2122
163
137
  webviz_subsurface/_providers/ensemble_summary_provider/_field_metadata.py,sha256=I7l65Q1wj5AXOY4Odrt4kp92vh1JCVq2tOn4EcbdNf8,3843
164
- webviz_subsurface/_providers/ensemble_summary_provider/_provider_impl_arrow_lazy.py,sha256=Ow1zSC6vfboum5U_LQRuJq8qlBmuYJh8rzx6quaJVdQ,14456
165
- webviz_subsurface/_providers/ensemble_summary_provider/_provider_impl_arrow_presampled.py,sha256=oLG1scDsLbbfPFE0WDtfv_-itF18zRb7Zvu9bNPszOc,16597
166
- webviz_subsurface/_providers/ensemble_summary_provider/_resampling.py,sha256=9x_op5b-H-uj8HNkgCD5ImHKDgC9_gEOpFlJlCOGb20,13757
138
+ webviz_subsurface/_providers/ensemble_summary_provider/_provider_impl_arrow_lazy.py,sha256=ia8tg-0Jlzfw_cUSt81YVfFduENj0IZRB_EBG2-1iS4,14489
139
+ webviz_subsurface/_providers/ensemble_summary_provider/_provider_impl_arrow_presampled.py,sha256=Mt_BmOv363nhzHO2eyaZFuGrxNH8Yh7OPAE6NJv8lmY,16613
140
+ webviz_subsurface/_providers/ensemble_summary_provider/_resampling.py,sha256=yFaSeizf7Krg_L5S4DW6BJwIjtRd10NEoSnZNjs781s,14034
167
141
  webviz_subsurface/_providers/ensemble_summary_provider/_table_utils.py,sha256=KmO1Pa2Ybn9jC9I_ydv1AmbS1rwYWVWDrEqy0ts9rmk,2530
168
142
  webviz_subsurface/_providers/ensemble_summary_provider/dev_compare_fmu_to_lazy_provider.py,sha256=Gueq6uZ9qmsrUXgeDIg3HCtmcjTQz2X9f-IRMHVbepQ,10190
169
143
  webviz_subsurface/_providers/ensemble_summary_provider/dev_provider_perf_testing.py,sha256=myIICGuyRRA6qLpI4Zni2kAY6-N78YdUB4sAvx5lOz4,8785
170
- webviz_subsurface/_providers/ensemble_summary_provider/dev_resampling_perf_testing.py,sha256=Huys8WhgVg-IV1Q1RpRhYLi54vqdWRLhYh9bwGWVVTE,3413
171
144
  webviz_subsurface/_providers/ensemble_summary_provider/ensemble_summary_provider.py,sha256=a6RR3QhkE1YC4-FAsD0ebL_RF0cTTywqZJWPnN9IQeE,4263
172
145
  webviz_subsurface/_providers/ensemble_summary_provider/ensemble_summary_provider_factory.py,sha256=TfE68cUdq_FfxR4DErFEyL4jEMu2-19OQnANd_5k3mQ,12999
173
146
  webviz_subsurface/_providers/ensemble_summary_provider/utils.py,sha256=lThZXdce6lTD_IsdCaEMAR3N9Op6Wn38hbUOryEYjyg,738
174
147
  webviz_subsurface/_providers/ensemble_surface_provider/__init__.py,sha256=Aks10uL1CGvS_0rSRP7IqC_-bUD4GLPh7bef5QI0Qv0,473
175
- webviz_subsurface/_providers/ensemble_surface_provider/_provider_impl_file.py,sha256=oItmxs9MXXGCke75MjW_cRXvQP0iWUcGPuAS0Ui5XqY,17975
148
+ webviz_subsurface/_providers/ensemble_surface_provider/_provider_impl_file.py,sha256=2Z6Q9cvie3VAQmTG3O82d1cyMizvOZIjKfFjLVPK058,17365
176
149
  webviz_subsurface/_providers/ensemble_surface_provider/_stat_surf_cache.py,sha256=aaNgp8DlCqGHEF3hnawTLJg6RFuxWLg2lFnae2wmKzk,2967
177
150
  webviz_subsurface/_providers/ensemble_surface_provider/_surface_discovery.py,sha256=G6bP9jLUbCtZ0YGuGRsIno5ls2PCb4RTeExhiltU-84,4420
178
- webviz_subsurface/_providers/ensemble_surface_provider/_surface_to_float32_array.py,sha256=_lVizY61K0QbNjMBXrzdU6BPmEf1EXDFkc6z97EMOj4,508
151
+ webviz_subsurface/_providers/ensemble_surface_provider/_surface_to_float32_array.py,sha256=mpWeT-Kv73ndXzNdzR_LVJARukS6Wr5hwcjgs-16Ujw,508
179
152
  webviz_subsurface/_providers/ensemble_surface_provider/_surface_to_image.py,sha256=Rfi4jS_ngc0S8rLMRuv98Le4wevFWFLfXo98OGmg-Gk,4656
180
153
  webviz_subsurface/_providers/ensemble_surface_provider/_types.py,sha256=JDcXe6aWRMg7waJQZV5hzdrtJVYbhHCNGYPGoqvrrTk,362
181
154
  webviz_subsurface/_providers/ensemble_surface_provider/dev_experiments.py,sha256=TfR2jjl38nIoafKSVaeg2RedDKR2oIaHHiDZ9wDsBcs,3545
@@ -218,18 +191,18 @@ webviz_subsurface/_utils/webvizstore_functions.py,sha256=48oS1KfclEwLIv19vUzOnSL
218
191
  webviz_subsurface/plugins/__init__.py,sha256=aPjbeEFgySTPyVCFtgoOXKre6ucZ8oLEEEvD1I2Ax48,671
219
192
  webviz_subsurface/plugins/_assisted_history_matching_analysis.py,sha256=_lG6J0TafLUTrzdXkfm5K5dwzzxrxokBXarQ-z1hwCk,21055
220
193
  webviz_subsurface/plugins/_disk_usage.py,sha256=bIYOvgVYSZP9jVd_8fgNiK5KBzIjaazGGUPGYAMwMXE,7456
221
- webviz_subsurface/plugins/_history_match.py,sha256=l0BDD81xghPAo8wMslRC0PQXsAzXnCDQQH0TcGzd5PE,5280
194
+ webviz_subsurface/plugins/_history_match.py,sha256=SGtothL3lUpb-80JJyVC9Lqe1blYgMy0QqZKjADA7b4,5296
222
195
  webviz_subsurface/plugins/_inplace_volumes.py,sha256=scuLxkllfPp4SL01QopsS7uyba9oGA_DW1rlRtHbcHo,23036
223
196
  webviz_subsurface/plugins/_inplace_volumes_onebyone.py,sha256=0N-XklPLvq-zea7zXA0NDnolb4JaCFiO4QVrryTBoEg,27993
224
197
  webviz_subsurface/plugins/_morris_plot.py,sha256=hwN-0TdoUAT3AUYyLw4ZXbfQrXaxBk0PWJ1HwASa4GA,3014
225
198
  webviz_subsurface/plugins/_parameter_distribution.py,sha256=Kr3bPrnAviudrBPLYWiGM-AXsyCoiihntoSX5kfinzQ,8330
226
199
  webviz_subsurface/plugins/_parameter_parallel_coordinates.py,sha256=yV-fVp0Jl9y7mPfjBQHQWpPMJwsHMZsw_REna477V3w,23590
227
200
  webviz_subsurface/plugins/_parameter_response_correlation.py,sha256=CEOs-_BRUY8dsSrkrk5l-AxUsIf38-42upl9LDOwAvI,29940
228
- webviz_subsurface/plugins/_relative_permeability.py,sha256=hU6REcrXDH4Rl8iJqkW-fTHe0EQBobMfhjfK48Ux_fo,47996
201
+ webviz_subsurface/plugins/_relative_permeability.py,sha256=baU7fbIUh1xbLWHPly6dGWJ3gscCIJgpyQieixSQhfQ,47994
229
202
  webviz_subsurface/plugins/_reservoir_simulation_timeseries.py,sha256=reG1FVTDhigeWv6vSUySyUN9qdbGf0Pv1yK1E1_jU-o,62644
230
203
  webviz_subsurface/plugins/_reservoir_simulation_timeseries_onebyone.py,sha256=6OrJe2lNOvwqnWhlZoHYADiOwp75IBKGt3YG1br5Z8U,27474
231
204
  webviz_subsurface/plugins/_reservoir_simulation_timeseries_regional.py,sha256=p4nsaD3M9Q7Erqn31TNYkZIsChmOETX2essnqZmidOU,54595
232
- webviz_subsurface/plugins/_running_time_analysis_fmu.py,sha256=AgJIw7FpUy0e7n9P84W93WHrHbwakX8dyKR20ESClwk,26296
205
+ webviz_subsurface/plugins/_running_time_analysis_fmu.py,sha256=dwqPB2_3BA8CO1Wma-_NnjmFjlQjxzmQqX6TPXSqgdo,26296
233
206
  webviz_subsurface/plugins/_segy_viewer.py,sha256=WGjrGWF_BynMMQo7bebYbgWWUa4DuHCTJ4yDHpwGFHg,19784
234
207
  webviz_subsurface/plugins/_seismic_misfit.py,sha256=97INdJs0V6i2h-bTukWRxxliF-OlTzELoh99QSimO2w,146813
235
208
  webviz_subsurface/plugins/_subsurface_map.py,sha256=8Ca-RgpvX3qpQ6Q0U3bZTPjLpgHxc8lBeP_-qLqXR6w,7550
@@ -249,7 +222,7 @@ webviz_subsurface/plugins/_bhp_qc/views/__init__.py,sha256=gh4aqt3kKUUUelZ9ErXnR
249
222
  webviz_subsurface/plugins/_bhp_qc/views/_bar_chart.py,sha256=_H0Oi_IdnCIdxZQC2hRdObTNmClbtUnQsIbOND0F_3w,3815
250
223
  webviz_subsurface/plugins/_bhp_qc/views/_fan_chart.py,sha256=q4MtZw2tNJu1DYh5WrOLDw9O5BfH_c6JOtSPKWus6_s,3310
251
224
  webviz_subsurface/plugins/_bhp_qc/views/_line_chart.py,sha256=dUF4H8H4i1yRg-m2GsfONJ0OfkHiIHeDZhjwMygjLN0,3827
252
- webviz_subsurface/plugins/_bhp_qc/views/_view_functions.py,sha256=kWnv_MLgbPn4DdsYwWrWviQS2-nqcoqO2bp4WuQb1p8,3052
225
+ webviz_subsurface/plugins/_bhp_qc/views/_view_functions.py,sha256=Biybm0JKp4DhzmyDCOWJ1xOec9UONSDREQdFZLtv9fA,3052
253
226
  webviz_subsurface/plugins/_co2_leakage/__init__.py,sha256=axDh1FIv4Q19Vj7wU-Ldwbs4_eRW39tRtdYOF6-sWzQ,32
254
227
  webviz_subsurface/plugins/_co2_leakage/_error.py,sha256=iZiTIa5qlUA4hy3cmjDrZio2bPAtIAOXoA6eTgkQ1dI,135
255
228
  webviz_subsurface/plugins/_co2_leakage/_plugin.py,sha256=mcd3TfQy0_GqAZKr9hJ5IvKr9-tTGnOQPxNXO2uYTLE,26625
@@ -260,12 +233,12 @@ webviz_subsurface/plugins/_co2_leakage/_utilities/color_tables.py,sha256=7eUWmcL
260
233
  webviz_subsurface/plugins/_co2_leakage/_utilities/fault_polygons.py,sha256=w74r0DPZGKRCtChtLn4eXO5dOGPWcvMjt9udZFfasI4,1658
261
234
  webviz_subsurface/plugins/_co2_leakage/_utilities/generic.py,sha256=A8jcKmBQ5Z3lFzEGsLc0ji6uSBTckfqh2QtwGsI4LHc,1829
262
235
  webviz_subsurface/plugins/_co2_leakage/_utilities/initialization.py,sha256=bKJmj8MJm74hsO1vieL7VvH0YRXyT8a53yHDIxENm0Y,6203
263
- webviz_subsurface/plugins/_co2_leakage/_utilities/plume_extent.py,sha256=JwSAG9IkUZbNEpjUtd3RUCl8IgOy0L_KITw_eWPIFOs,3374
236
+ webviz_subsurface/plugins/_co2_leakage/_utilities/plume_extent.py,sha256=VsQr6DzJLvfbmwMj34cTa56woS_W8V0S08XQVtVTbu4,3390
264
237
  webviz_subsurface/plugins/_co2_leakage/_utilities/summary_graphs.py,sha256=u0ODwh7cd-j_GczeeOHwYhFwc69dVT3D2HE47bZFYbU,8305
265
238
  webviz_subsurface/plugins/_co2_leakage/_utilities/surface_publishing.py,sha256=DDdJVORKlD5Hhb9SEfSN9s3OMKYtuQNj-z-CizTKHQ0,5102
266
239
  webviz_subsurface/plugins/_co2_leakage/views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
267
240
  webviz_subsurface/plugins/_co2_leakage/views/mainview/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
268
- webviz_subsurface/plugins/_co2_leakage/views/mainview/mainview.py,sha256=tb4QrDr12U_1k_Izd8F-hPxWUthFmHzxxDNggMaOnic,6985
241
+ webviz_subsurface/plugins/_co2_leakage/views/mainview/mainview.py,sha256=lqu_3jbSp06uS81JVw-TCSVOzLgnLISM0yHTiPGIwiY,6977
269
242
  webviz_subsurface/plugins/_co2_leakage/views/mainview/settings.py,sha256=NO-pw2T8A1eFCMYL7_CGE-IqkEpYznjFl8867Xg_fp4,40665
270
243
  webviz_subsurface/plugins/_grid_viewer_fmu/__init__.py,sha256=ZlS_MintakVLD0tEjrCySI4BWcxzR7wLP-smYZoAcE4,47
271
244
  webviz_subsurface/plugins/_grid_viewer_fmu/_layout_elements.py,sha256=RHJUFVx17LvpsDOa8Y8gwNoRHoodcaXXQGRGwjqbeB0,124
@@ -280,7 +253,7 @@ webviz_subsurface/plugins/_grid_viewer_fmu/views/view_3d/settings/_color_scale.p
280
253
  webviz_subsurface/plugins/_grid_viewer_fmu/views/view_3d/settings/_data_selection.py,sha256=vdONUUvkPzUeOA4VcQLki_VjmOba8fCRs0eqVe27yFI,5497
281
254
  webviz_subsurface/plugins/_grid_viewer_fmu/views/view_3d/settings/_grid_filter.py,sha256=8SfyexdFApPmIbJGE-O_7yAH6nCZOgzliljFOSpfrS0,9982
282
255
  webviz_subsurface/plugins/_grid_viewer_fmu/views/view_3d/view_elements/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
283
- webviz_subsurface/plugins/_grid_viewer_fmu/views/view_3d/view_elements/_vtk_view_3d_element.py,sha256=D4Y2Z8_iLVWlzBBLbFBQf2QvRQ1IFxSrna-ebnQJmoE,3683
256
+ webviz_subsurface/plugins/_grid_viewer_fmu/views/view_3d/view_elements/_vtk_view_3d_element.py,sha256=8DKojRlPnekcgYX0NdAPPK5Kyd_sTx0do4hIwHTAj_A,3675
284
257
  webviz_subsurface/plugins/_group_tree/__init__.py,sha256=Af67dh7-sIaROijLHvzpVLcWiM_cDjQD9A0e7Z3uM2M,31
285
258
  webviz_subsurface/plugins/_group_tree/_plugin.py,sha256=1mat8ADiFDPhfemrTJyxXYW0jDlQbqqt1dp8vNUW-Po,6578
286
259
  webviz_subsurface/plugins/_group_tree/_types.py,sha256=DBGLbIq-BrD4hp9YmR2a2Y2C9X1dXPfvOG1TTII4vMU,639
@@ -312,7 +285,7 @@ webviz_subsurface/plugins/_map_viewer_fmu/_types.py,sha256=RmFjdfVKBdNinz523Mn6D
312
285
  webviz_subsurface/plugins/_map_viewer_fmu/_utils.py,sha256=-tDOg_aK2nKUj7ArilD2cUFoKHpU18BtVZXTzw_NQ-4,1827
313
286
  webviz_subsurface/plugins/_map_viewer_fmu/callbacks.py,sha256=I__IVhAZjzyQ7nk3QALp1sHoaj3eplfVVqa5vl2M0sk,44581
314
287
  webviz_subsurface/plugins/_map_viewer_fmu/color_tables.py,sha256=FaORW2BFvEud9o4exvoo5ta-AFQ4DZo4Rl1dWQ6oT5s,319690
315
- webviz_subsurface/plugins/_map_viewer_fmu/layout.py,sha256=P9IgpDIuXyPrXUthZu4haQDVwREJ5AtvrZ6dkeDbEcI,28184
288
+ webviz_subsurface/plugins/_map_viewer_fmu/layout.py,sha256=fUlMWbkegC9Y09ElxPtMKQ2M7swtY6MjiwZRR7JTe_0,28176
316
289
  webviz_subsurface/plugins/_map_viewer_fmu/map_viewer_fmu.py,sha256=SDJJoOOMgvbrQJmvqL8KpidXmmaWqfp6ECOlO-8d0XQ,10412
317
290
  webviz_subsurface/plugins/_parameter_analysis/__init__.py,sha256=YIsJxDje9XN0Qyzk7wVrZ5GIfdqnwUnnbxAh1iHvoko,39
318
291
  webviz_subsurface/plugins/_parameter_analysis/_plugin.py,sha256=zoXVsOcHIBR4sR5nu5lSf6iQXcRSh_ciY4eM30-rbyk,5593
@@ -396,13 +369,13 @@ webviz_subsurface/plugins/_pvt_plot/_views/_pvt/_settings/_view_settings.py,sha2
396
369
  webviz_subsurface/plugins/_pvt_plot/_views/_pvt/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
397
370
  webviz_subsurface/plugins/_pvt_plot/_views/_pvt/_utils/_plot_utils.py,sha256=I7XSlQwPwH9E8_cwFDuH0w3mIGBPrGJx8S9m80jIp3c,13279
398
371
  webviz_subsurface/plugins/_rft_plotter/__init__.py,sha256=NBGsEJitsFMl9BsCUtYS8W5ceW_Po6Vs7XGBHjLASqo,32
399
- webviz_subsurface/plugins/_rft_plotter/_plugin.py,sha256=PNg8NAsQfbEiyudhXV4jUBvRr23SNQQbzuA_kjWvors,5581
372
+ webviz_subsurface/plugins/_rft_plotter/_plugin.py,sha256=v6isZDc6jTAvMwUUBe4-_vnwI_jg0WIH8Unfycvx39s,5776
400
373
  webviz_subsurface/plugins/_rft_plotter/_reusable_settings.py,sha256=MB1sc9F3DKltrxnYkArnJkzLEoKHzAHIWKUNOYVI3qU,1725
401
374
  webviz_subsurface/plugins/_rft_plotter/_reusable_view_element.py,sha256=gNJ2zEafeoMHilDuhboblR1mGL6zlAlGw2B857rKMTc,399
402
375
  webviz_subsurface/plugins/_rft_plotter/_types.py,sha256=jDFnX3dZ_bRY_lJmwK_L8rLixnLFc5IUbt4QgphaDBw,378
403
376
  webviz_subsurface/plugins/_rft_plotter/_utils/__init__.py,sha256=--tdLFTsZONWf9o-yD2zQ9zvDNPpF1oqlmMU6xUsXhU,169
404
377
  webviz_subsurface/plugins/_rft_plotter/_utils/_formation_figure.py,sha256=paIevOdFZIXMakkRgtxw7VC5gGObz_lvBHZ91yIzoMA,12919
405
- webviz_subsurface/plugins/_rft_plotter/_utils/_rft_plotter_data_model.py,sha256=uNZ1jRalYiOZlEoqEiv92_vR2e4mvnYrQd7fxwp3Wlg,11983
378
+ webviz_subsurface/plugins/_rft_plotter/_utils/_rft_plotter_data_model.py,sha256=WnAj9hGki04pWBl9pK7v2tzrJiGF0P4aGzqtrecxe7E,12016
406
379
  webviz_subsurface/plugins/_rft_plotter/_views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
407
380
  webviz_subsurface/plugins/_rft_plotter/_views/_map_view/__init__.py,sha256=T1S-QMlOla_wMdziFt2obYssR_pLN-Ov0FXvgcHHTqw,27
408
381
  webviz_subsurface/plugins/_rft_plotter/_views/_map_view/_view.py,sha256=HCECeZ-DRb2SOxjYdBtjkHnlaexxoA-Z3JsZK0453Tw,7897
@@ -608,16 +581,16 @@ webviz_subsurface/plugins/_well_completions/_layout.py,sha256=2ptWcfgcp_tyi89pLx
608
581
  webviz_subsurface/plugins/_well_completions/_plugin.py,sha256=s2u_O_2eZjbiaSbiJPY4z8GbChU_vrO2mSaBx1ra1r0,8782
609
582
  webviz_subsurface/plugins/_well_log_viewer/__init__.py,sha256=aZNNFDu7V5XbOQaOwZxgRZyCRrhrY8kR1z1OyP-IJLU,43
610
583
  webviz_subsurface/plugins/_well_log_viewer/_validate_log_templates.py,sha256=0hFs9KFku2TSZnh_b1wzg9jU206r15oy4y4WdK2i51Y,590
611
- webviz_subsurface/plugins/_well_log_viewer/well_log_viewer.py,sha256=UytO4wO88Lp6mTrkTDaCz9XjwzLoOiITXVhsbDiBwGk,7610
584
+ webviz_subsurface/plugins/_well_log_viewer/well_log_viewer.py,sha256=6z3s_BEJIRXRVbD43HGGxN794CUJbSeo0VolcFUFkWA,7616
612
585
  webviz_subsurface/plugins/_well_log_viewer/controllers/__init__.py,sha256=86PQYC115Bgd49-vr1IqtAlzwJUG1x73fNmBGQXC4KU,46
613
586
  webviz_subsurface/plugins/_well_log_viewer/controllers/_well_controller.py,sha256=50uiGGI6YHDf61713zFeigK0aFYn2edPScIRIMg_-E8,791
614
587
  webviz_subsurface/plugins/_well_log_viewer/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
615
588
  webviz_subsurface/plugins/_well_log_viewer/utils/default_color_tables.py,sha256=0UgrvygPGEAuC15vn73NCXJUQLt9Dpn5QZqqq1IJkfw,4872
616
589
  webviz_subsurface/plugins/_well_log_viewer/utils/xtgeo_well_log_to_json.py,sha256=T44-vFwvvjyo376yoL1QWDc98exG8N1cLTEzrGp-I7A,1608
617
- webviz_subsurface-0.2.34.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
618
- webviz_subsurface-0.2.34.dist-info/LICENSE.chromedriver,sha256=H5UWVvf6Y7Ul6i35mriz7071dWR01cR9G-5ypnZHnpM,326542
619
- webviz_subsurface-0.2.34.dist-info/METADATA,sha256=a9zJbOM0oiY158ifjHuaM5NFST_DU4s5k5HUbVa8wIw,6387
620
- webviz_subsurface-0.2.34.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
621
- webviz_subsurface-0.2.34.dist-info/entry_points.txt,sha256=aprJRZQ2dW0An59soobTCaWzw6nEtiZBGncBhWA_C5Y,4129
622
- webviz_subsurface-0.2.34.dist-info/top_level.txt,sha256=NobeVsNfPINQgUSc9hlW3aqYHO5A0SNlhacg-2YDcf4,24
623
- webviz_subsurface-0.2.34.dist-info/RECORD,,
590
+ webviz_subsurface-0.2.36.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
591
+ webviz_subsurface-0.2.36.dist-info/LICENSE.chromedriver,sha256=H5UWVvf6Y7Ul6i35mriz7071dWR01cR9G-5ypnZHnpM,326542
592
+ webviz_subsurface-0.2.36.dist-info/METADATA,sha256=R6nLNgEvhlsBOTvcGAwTvCyGeqYH8xhABnqbZU5Svjo,6351
593
+ webviz_subsurface-0.2.36.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
594
+ webviz_subsurface-0.2.36.dist-info/entry_points.txt,sha256=aprJRZQ2dW0An59soobTCaWzw6nEtiZBGncBhWA_C5Y,4129
595
+ webviz_subsurface-0.2.36.dist-info/top_level.txt,sha256=NobeVsNfPINQgUSc9hlW3aqYHO5A0SNlhacg-2YDcf4,24
596
+ webviz_subsurface-0.2.36.dist-info/RECORD,,
File without changes
@@ -1,12 +0,0 @@
1
- # pylint: disable=no-name-in-module
2
- from webviz_config.plugins import BhpQc
3
- from webviz_config.testing import WebvizComposite
4
-
5
-
6
- def test_bhp_qc(_webviz_duo: WebvizComposite, shared_settings: dict) -> None:
7
- plugin = BhpQc(
8
- shared_settings["HM_SETTINGS"], ensembles=shared_settings["HM_ENSEMBLES"]
9
- )
10
-
11
- _webviz_duo.start_server(plugin)
12
- assert not _webviz_duo.get_logs()
@@ -1,18 +0,0 @@
1
- # pylint: disable=no-name-in-module
2
- from webviz_config.plugins import HistoryMatch
3
-
4
-
5
- def test_history_match(dash_duo, app, testdata_folder, shared_settings) -> None:
6
- plugin = HistoryMatch(
7
- shared_settings["HM_SETTINGS"],
8
- ensembles=shared_settings["HM_ENSEMBLES"],
9
- observation_file=testdata_folder
10
- / "01_drogon_ahm"
11
- / "share"
12
- / "observations"
13
- / "tables"
14
- / "ert_observations.yml",
15
- )
16
- app.layout = plugin.layout
17
- dash_duo.start_server(app)
18
- assert not dash_duo.get_logs()