webviz-subsurface 0.2.37__py3-none-any.whl → 0.2.38__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.
@@ -13,6 +13,9 @@ from webviz_subsurface._providers.ensemble_surface_provider.ensemble_surface_pro
13
13
  SurfaceStatistic,
14
14
  )
15
15
  from webviz_subsurface.plugins._co2_leakage._utilities.callbacks import property_origin
16
+ from webviz_subsurface.plugins._co2_leakage._utilities.containment_info import (
17
+ StatisticsTabOption,
18
+ )
16
19
  from webviz_subsurface.plugins._co2_leakage._utilities.generic import (
17
20
  Co2MassScale,
18
21
  Co2VolumeScale,
@@ -74,6 +77,8 @@ class ViewSettings(SettingsGroupABC):
74
77
  PLUME_GROUP_MENU = "plume-group-menu"
75
78
  DATE_OPTION = "date-option"
76
79
  DATE_OPTION_COL = "date-option-column"
80
+ STATISTICS_TAB_OPTION = "statistics-tab-option"
81
+ BOX_SHOW_POINTS = "box-plot-points"
77
82
 
78
83
  PLUME_THRESHOLD = "plume-threshold"
79
84
  PLUME_SMOOTHING = "plume-smoothing"
@@ -166,26 +171,31 @@ class ViewSettings(SettingsGroupABC):
166
171
  self.register_component_unique_id(self.Ids.Y_MAX_GRAPH),
167
172
  self.register_component_unique_id(self.Ids.Y_MAX_AUTO_GRAPH),
168
173
  ],
169
- [
170
- self.register_component_unique_id(self.Ids.COLOR_BY),
171
- self.register_component_unique_id(self.Ids.MARK_BY),
172
- self.register_component_unique_id(self.Ids.SORT_PLOT),
173
- self.register_component_unique_id(self.Ids.ZONE),
174
- self.register_component_unique_id(self.Ids.ZONE_COL),
175
- self.register_component_unique_id(self.Ids.REGION),
176
- self.register_component_unique_id(self.Ids.REGION_COL),
177
- self.register_component_unique_id(self.Ids.ZONE_REGION),
178
- self.register_component_unique_id(self.Ids.PHASE),
179
- self.register_component_unique_id(self.Ids.PHASE_MENU),
180
- self.register_component_unique_id(self.Ids.CONTAINMENT),
181
- self.register_component_unique_id(self.Ids.CONTAINMENT_MENU),
182
- self.register_component_unique_id(self.Ids.PLUME_GROUP),
183
- self.register_component_unique_id(self.Ids.PLUME_GROUP_MENU),
184
- self.register_component_unique_id(self.Ids.REAL_OR_STAT),
185
- self.register_component_unique_id(self.Ids.Y_LIM_OPTIONS),
186
- self.register_component_unique_id(self.Ids.DATE_OPTION),
187
- self.register_component_unique_id(self.Ids.DATE_OPTION_COL),
188
- ],
174
+ {
175
+ k: self.register_component_unique_id(k)
176
+ for k in [
177
+ self.Ids.COLOR_BY,
178
+ self.Ids.MARK_BY,
179
+ self.Ids.SORT_PLOT,
180
+ self.Ids.ZONE,
181
+ self.Ids.ZONE_COL,
182
+ self.Ids.REGION,
183
+ self.Ids.REGION_COL,
184
+ self.Ids.ZONE_REGION,
185
+ self.Ids.PHASE,
186
+ self.Ids.PHASE_MENU,
187
+ self.Ids.CONTAINMENT,
188
+ self.Ids.CONTAINMENT_MENU,
189
+ self.Ids.PLUME_GROUP,
190
+ self.Ids.PLUME_GROUP_MENU,
191
+ self.Ids.REAL_OR_STAT,
192
+ self.Ids.Y_LIM_OPTIONS,
193
+ self.Ids.DATE_OPTION,
194
+ self.Ids.DATE_OPTION_COL,
195
+ self.Ids.STATISTICS_TAB_OPTION,
196
+ self.Ids.BOX_SHOW_POINTS,
197
+ ]
198
+ },
189
199
  self._content,
190
200
  )
191
201
  )
@@ -464,6 +474,7 @@ class ViewSettings(SettingsGroupABC):
464
474
  return options, no_update if current_value in dates else dates[-1]
465
475
  return [], None
466
476
 
477
+ # pylint: disable=too-many-branches
467
478
  @callback(
468
479
  Output(
469
480
  self.component_unique_id(self.Ids.MARK_BY).to_string(), "options"
@@ -494,21 +505,28 @@ class ViewSettings(SettingsGroupABC):
494
505
  mark_choice: str,
495
506
  ) -> Tuple[List[Dict], str, Dict, Dict, Dict, Dict, Dict]:
496
507
  mark_options = [
497
- {"label": "Phase", "value": "phase"},
498
508
  {"label": "None", "value": "none"},
499
509
  ]
500
- if self._content["zones"] and color_choice == "containment":
501
- mark_options.append({"label": "Zone", "value": "zone"})
502
- if self._content["regions"] and color_choice == "containment":
503
- mark_options.append({"label": "Region", "value": "region"})
504
- if self._content["plume_groups"] and color_choice == "containment":
505
- mark_options.append(
506
- {"label": "Plume group", "value": "plume_group"}
507
- )
508
- if color_choice in ["zone", "region", "plume_group"]:
509
- mark_options.append(
510
- {"label": "Containment", "value": "containment"}
511
- )
510
+ if color_choice in ["containment", "phase"]:
511
+ if color_choice == "containment":
512
+ mark_options.append({"label": "Phase", "value": "phase"})
513
+ elif color_choice == "phase":
514
+ mark_options.append(
515
+ {"label": "Containment", "value": "containment"}
516
+ )
517
+ if self._content["zones"]:
518
+ mark_options.append({"label": "Zone", "value": "zone"})
519
+ if self._content["regions"]:
520
+ mark_options.append({"label": "Region", "value": "region"})
521
+ if self._content["plume_groups"]:
522
+ mark_options.append(
523
+ {"label": "Plume group", "value": "plume_group"}
524
+ )
525
+ elif color_choice in ["zone", "region", "plume_group"]:
526
+ mark_options += [
527
+ {"label": "Containment", "value": "containment"},
528
+ {"label": "Phase", "value": "phase"},
529
+ ]
512
530
  if (
513
531
  color_choice in ["zone", "region"]
514
532
  and self._content["plume_groups"]
@@ -522,7 +540,10 @@ class ViewSettings(SettingsGroupABC):
522
540
  if self._content["regions"]:
523
541
  mark_options.append({"label": "Region", "value": "region"})
524
542
  if mark_choice is None or mark_choice == color_choice:
525
- mark_choice = "phase"
543
+ if color_choice != "phase":
544
+ mark_choice = "phase"
545
+ else:
546
+ mark_choice = "containment"
526
547
  if mark_choice in ["zone", "region"] and color_choice in [
527
548
  "zone",
528
549
  "region",
@@ -848,20 +869,27 @@ class GraphSelectorsLayout(wcc.Selectors):
848
869
  "flexDirection": "row",
849
870
  }
850
871
 
872
+ # pylint: disable=too-many-locals
851
873
  def __init__(
852
874
  self,
853
875
  graph_source_id: str,
854
876
  co2_scale_id: str,
855
877
  y_min_ids: List[str],
856
878
  y_max_ids: List[str],
857
- containment_ids: List[str],
879
+ containment_ids: Dict[str, str], # ViewSettings.Ids
858
880
  content: Dict[str, bool],
859
881
  ):
860
882
  disp_zone = "flex" if content["zones"] else "none"
861
883
  disp_region = "flex" if content["regions"] else "none"
862
884
  disp_plume_group = "flex" if content["plume_groups"] else "none"
863
- color_options = [{"label": "Containment (standard)", "value": "containment"}]
864
- mark_options = [{"label": "Phase", "value": "phase"}]
885
+ color_options = [
886
+ {"label": "Containment", "value": "containment"},
887
+ {"label": "Phase", "value": "phase"},
888
+ ]
889
+ mark_options = [
890
+ {"label": "Phase", "value": "phase"},
891
+ {"label": "Containment", "value": "containment"},
892
+ ]
865
893
  if content["zones"]:
866
894
  color_options.append({"label": "Zone", "value": "zone"})
867
895
  mark_options.append({"label": "Zone", "value": "zone"})
@@ -883,6 +911,7 @@ class GraphSelectorsLayout(wcc.Selectors):
883
911
  if source_options[0] == GraphSource.CONTAINMENT_ACTUAL_VOLUME
884
912
  else (list(Co2MassScale), Co2MassScale.MTONS)
885
913
  )
914
+ ids = ViewSettings.Ids
886
915
  super().__init__(
887
916
  label="Graph Settings",
888
917
  open_details=not content["maps"],
@@ -909,7 +938,7 @@ class GraphSelectorsLayout(wcc.Selectors):
909
938
  wcc.Dropdown(
910
939
  options=color_options,
911
940
  value="containment",
912
- id=containment_ids[0],
941
+ id=containment_ids[ids.COLOR_BY],
913
942
  clearable=False,
914
943
  ),
915
944
  ],
@@ -924,7 +953,7 @@ class GraphSelectorsLayout(wcc.Selectors):
924
953
  wcc.Dropdown(
925
954
  options=mark_options,
926
955
  value="phase",
927
- id=containment_ids[1],
956
+ id=containment_ids[ids.MARK_BY],
928
957
  clearable=False,
929
958
  ),
930
959
  ],
@@ -947,7 +976,7 @@ class GraphSelectorsLayout(wcc.Selectors):
947
976
  dcc.RadioItems(
948
977
  options=["color", "marking"],
949
978
  value="color",
950
- id=containment_ids[2],
979
+ id=containment_ids[ids.SORT_PLOT],
951
980
  inline=True,
952
981
  ),
953
982
  ],
@@ -966,11 +995,11 @@ class GraphSelectorsLayout(wcc.Selectors):
966
995
  wcc.Dropdown(
967
996
  options=[{"label": "All", "value": "all"}],
968
997
  value="all",
969
- id=containment_ids[3],
998
+ id=containment_ids[ids.ZONE],
970
999
  clearable=False,
971
1000
  ),
972
1001
  ],
973
- id=containment_ids[4],
1002
+ id=containment_ids[ids.ZONE_COL],
974
1003
  style={
975
1004
  "width": (
976
1005
  "33%"
@@ -994,11 +1023,11 @@ class GraphSelectorsLayout(wcc.Selectors):
994
1023
  wcc.Dropdown(
995
1024
  options=[{"label": "All", "value": "all"}],
996
1025
  value="all",
997
- id=containment_ids[5],
1026
+ id=containment_ids[ids.REGION],
998
1027
  clearable=False,
999
1028
  ),
1000
1029
  ],
1001
- id=containment_ids[6],
1030
+ id=containment_ids[ids.REGION_COL],
1002
1031
  style={
1003
1032
  "width": (
1004
1033
  "33%"
@@ -1020,10 +1049,10 @@ class GraphSelectorsLayout(wcc.Selectors):
1020
1049
  options=[{"label": "Total", "value": "total"}],
1021
1050
  value="total",
1022
1051
  clearable=False,
1023
- id=containment_ids[8],
1052
+ id=containment_ids[ids.PHASE],
1024
1053
  ),
1025
1054
  ],
1026
- id=containment_ids[9],
1055
+ id=containment_ids[ids.PHASE_MENU],
1027
1056
  style={"display": "none"},
1028
1057
  ),
1029
1058
  html.Div(
@@ -1031,17 +1060,17 @@ class GraphSelectorsLayout(wcc.Selectors):
1031
1060
  "Containment",
1032
1061
  wcc.Dropdown(
1033
1062
  options=[
1034
- {"label": "Total", "value": "total"},
1063
+ {"label": "All areas", "value": "total"},
1035
1064
  {"label": "Contained", "value": "contained"},
1036
1065
  {"label": "Outside", "value": "outside"},
1037
1066
  {"label": "Hazardous", "value": "hazardous"},
1038
1067
  ],
1039
1068
  value="total",
1040
1069
  clearable=False,
1041
- id=containment_ids[10],
1070
+ id=containment_ids[ids.CONTAINMENT],
1042
1071
  ),
1043
1072
  ],
1044
- id=containment_ids[11],
1073
+ id=containment_ids[ids.CONTAINMENT_MENU],
1045
1074
  style={"display": "none"},
1046
1075
  ),
1047
1076
  html.Div(
@@ -1050,11 +1079,11 @@ class GraphSelectorsLayout(wcc.Selectors):
1050
1079
  wcc.Dropdown(
1051
1080
  options=[{"label": "All", "value": "all"}],
1052
1081
  value="all",
1053
- id=containment_ids[12],
1082
+ id=containment_ids[ids.PLUME_GROUP],
1054
1083
  clearable=False,
1055
1084
  ),
1056
1085
  ],
1057
- id=containment_ids[13],
1086
+ id=containment_ids[ids.PLUME_GROUP_MENU],
1058
1087
  style={
1059
1088
  "width": (
1060
1089
  "33%"
@@ -1070,7 +1099,7 @@ class GraphSelectorsLayout(wcc.Selectors):
1070
1099
  },
1071
1100
  ),
1072
1101
  ],
1073
- id=containment_ids[7],
1102
+ id=containment_ids[ids.ZONE_REGION],
1074
1103
  style={"display": "flex"},
1075
1104
  ),
1076
1105
  html.Div(
@@ -1085,7 +1114,7 @@ class GraphSelectorsLayout(wcc.Selectors):
1085
1114
  {"label": "Mean/P10/P90", "value": "stat"},
1086
1115
  ],
1087
1116
  value="real",
1088
- id=containment_ids[14],
1117
+ id=containment_ids[ids.REAL_OR_STAT],
1089
1118
  inline=True,
1090
1119
  ),
1091
1120
  ],
@@ -1101,11 +1130,11 @@ class GraphSelectorsLayout(wcc.Selectors):
1101
1130
  html.Div(
1102
1131
  [
1103
1132
  wcc.Dropdown(
1104
- id=containment_ids[16],
1133
+ id=containment_ids[ids.DATE_OPTION],
1105
1134
  clearable=False,
1106
1135
  ),
1107
1136
  ],
1108
- id=containment_ids[17],
1137
+ id=containment_ids[ids.DATE_OPTION_COL],
1109
1138
  style={
1110
1139
  "width": "100%",
1111
1140
  "flex-direction": "row",
@@ -1142,7 +1171,50 @@ class GraphSelectorsLayout(wcc.Selectors):
1142
1171
  "display": "flex",
1143
1172
  "flex-direction": "column",
1144
1173
  },
1145
- id=containment_ids[15],
1174
+ id=containment_ids[ids.Y_LIM_OPTIONS],
1175
+ ),
1176
+ html.Div(
1177
+ "Statistics tab:",
1178
+ style={"margin-top": "10px"},
1179
+ ),
1180
+ html.Div(
1181
+ [
1182
+ dcc.RadioItems(
1183
+ options=[
1184
+ {
1185
+ "label": "Probability plot",
1186
+ "value": StatisticsTabOption.PROBABILITY_PLOT,
1187
+ },
1188
+ {
1189
+ "label": "Box plot",
1190
+ "value": StatisticsTabOption.BOX_PLOT,
1191
+ },
1192
+ ],
1193
+ value=StatisticsTabOption.PROBABILITY_PLOT,
1194
+ id=containment_ids[ids.STATISTICS_TAB_OPTION],
1195
+ ),
1196
+ ],
1197
+ ),
1198
+ html.Div(
1199
+ "Box plot points to show:",
1200
+ style={"margin-top": "10px"},
1201
+ ),
1202
+ html.Div(
1203
+ [
1204
+ dcc.RadioItems(
1205
+ options=[
1206
+ {"label": "All", "value": "all_points"},
1207
+ {"label": "Outliers", "value": "only_outliers"},
1208
+ ],
1209
+ value="only_outliers",
1210
+ id=containment_ids[ids.BOX_SHOW_POINTS],
1211
+ inline=True,
1212
+ ),
1213
+ ],
1214
+ style={
1215
+ "display": "flex",
1216
+ "flex-direction": "row",
1217
+ },
1146
1218
  ),
1147
1219
  ],
1148
1220
  )
@@ -1392,6 +1464,59 @@ def _make_styles(
1392
1464
  else:
1393
1465
  phase["width"] = plume_group["width"] = "100%"
1394
1466
  phase["display"] = "flex"
1467
+ elif color_choice == "phase":
1468
+ if mark_choice == "containment":
1469
+ zone["display"] = "flex" if has_zones else "none"
1470
+ region["display"] = "flex" if has_regions else "none"
1471
+ plume_group["display"] = "flex" if has_plume_groups else "none"
1472
+ n_categories = has_regions + has_zones + has_plume_groups
1473
+ if n_categories == 3:
1474
+ zone["width"] = region["width"] = plume_group["width"] = "33%"
1475
+ elif n_categories == 2:
1476
+ zone["width"] = region["width"] = plume_group["width"] = "50%"
1477
+ else:
1478
+ zone["width"] = region["width"] = plume_group["width"] = "100%"
1479
+ elif mark_choice == "plume_group":
1480
+ zone["display"] = "flex" if has_zones else "none"
1481
+ region["display"] = "flex" if has_regions else "none"
1482
+ containment["display"] = "flex"
1483
+ n_categories = 1 + has_regions + has_zones
1484
+ if n_categories == 3:
1485
+ zone["width"] = region["width"] = containment["width"] = "33%"
1486
+ elif n_categories == 2:
1487
+ zone["width"] = region["width"] = containment["width"] = "50%"
1488
+ else:
1489
+ zone["width"] = region["width"] = containment["width"] = "100%"
1490
+ elif mark_choice == "none":
1491
+ zone["display"] = "flex" if has_zones else "none"
1492
+ region["display"] = "flex" if has_regions else "none"
1493
+ plume_group["display"] = "flex" if has_plume_groups else "none"
1494
+ containment["display"] = "flex"
1495
+ n_categories = 1 + has_regions + has_zones + has_plume_groups
1496
+ if n_categories == 4:
1497
+ containment["width"] = zone["width"] = region["width"] = plume_group[
1498
+ "width"
1499
+ ] = "25%"
1500
+ elif n_categories == 3:
1501
+ containment["width"] = zone["width"] = region["width"] = plume_group[
1502
+ "width"
1503
+ ] = "33%"
1504
+ elif n_categories == 2:
1505
+ containment["width"] = zone["width"] = region["width"] = plume_group[
1506
+ "width"
1507
+ ] = "50%"
1508
+ else:
1509
+ containment["width"] = zone["width"] = region["width"] = plume_group[
1510
+ "width"
1511
+ ] = "100%"
1512
+ else: # mark_choice == "zone" / "region"
1513
+ plume_group["display"] = "flex" if has_plume_groups else "none"
1514
+ n_categories = 1 + has_plume_groups
1515
+ if n_categories == 2:
1516
+ containment["width"] = plume_group["width"] = "50%"
1517
+ else:
1518
+ containment["width"] = plume_group["width"] = "100%"
1519
+ containment["display"] = "flex"
1395
1520
  elif color_choice == "plume_group":
1396
1521
  if mark_choice == "phase":
1397
1522
  zone["display"] = "flex" if has_zones else "none"
@@ -1441,8 +1566,6 @@ def _make_styles(
1441
1566
  phase["display"] = "flex"
1442
1567
  containment["display"] = "flex"
1443
1568
  phase["width"] = containment["width"] = "50%"
1444
- elif color_choice == "phase":
1445
- pass # Not an option
1446
1569
  else: # color_choice == "zone" / "region"
1447
1570
  if mark_choice == "phase":
1448
1571
  plume_group["display"] = "flex" if has_plume_groups else "none"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: webviz-subsurface
3
- Version: 0.2.37
3
+ Version: 0.2.38
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
@@ -87,7 +87,7 @@ webviz_subsurface/_datainput/seismic.py,sha256=7alyU9dezKgrSqiGI1R405hh5ymPDf5Cb
87
87
  webviz_subsurface/_datainput/surface.py,sha256=fxrV65AJBw1dbIyJtnfknk7DriqpotF2oi7ZDNQBheE,348
88
88
  webviz_subsurface/_datainput/units.py,sha256=xBtouLCXa4ZzNSCTjmTRfsHS3GluwTHIBh9SpzxAksA,15902
89
89
  webviz_subsurface/_datainput/well.py,sha256=9_Hi66TMqy4tkwYXugYV_lSyZFQ9SY5rQZvkpPxxnp8,6916
90
- webviz_subsurface/_datainput/well_completions.py,sha256=ZHGULkeLM4YYUKFsDfDYqqPQ5ZPyRZ-6L7YBj7UIlRY,6247
90
+ webviz_subsurface/_datainput/well_completions.py,sha256=ckZug0bwoJmIBZC-h8ADnw2Ss68oKj4-DezCbDuPCr0,6269
91
91
  webviz_subsurface/_datainput/xsection.py,sha256=X3B88ufAANzKOeHelVGIulj3cwRgMMrl6lbAq90QD4U,19126
92
92
  webviz_subsurface/_datainput/eclipse_init_io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
93
  webviz_subsurface/_datainput/eclipse_init_io/pvt_common.py,sha256=iH94cMbifEJjGC7Pj4HA8kYMPH4uXLoIlXtWy2oKo7E,30857
@@ -231,26 +231,28 @@ webviz_subsurface/plugins/_bhp_qc/views/_line_chart.py,sha256=dUF4H8H4i1yRg-m2Gs
231
231
  webviz_subsurface/plugins/_bhp_qc/views/_view_functions.py,sha256=Biybm0JKp4DhzmyDCOWJ1xOec9UONSDREQdFZLtv9fA,3052
232
232
  webviz_subsurface/plugins/_co2_leakage/__init__.py,sha256=axDh1FIv4Q19Vj7wU-Ldwbs4_eRW39tRtdYOF6-sWzQ,32
233
233
  webviz_subsurface/plugins/_co2_leakage/_error.py,sha256=iZiTIa5qlUA4hy3cmjDrZio2bPAtIAOXoA6eTgkQ1dI,135
234
- webviz_subsurface/plugins/_co2_leakage/_plugin.py,sha256=d_4zjCG9Taqt1RS7Lj4UT025REs0HYu75eY0UYctocY,33830
234
+ webviz_subsurface/plugins/_co2_leakage/_plugin.py,sha256=vyOG2Y3Lc-6t4MDhjfj-My1Vjo9x_pyS_fhel2ERTFo,38754
235
+ webviz_subsurface/plugins/_co2_leakage/_types.py,sha256=RbS3WtAjoobXTRXk7S8Gk4Ci0xVty3nJxUPGL8L6q3o,199
235
236
  webviz_subsurface/plugins/_co2_leakage/_utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
236
237
  webviz_subsurface/plugins/_co2_leakage/_utilities/_misc.py,sha256=0E-m_Ior6Kb5cbgfQpzC9mHI6FT2xj1Ihk0jtc6Mk6E,307
237
- webviz_subsurface/plugins/_co2_leakage/_utilities/callbacks.py,sha256=I9vRBwKpQ2aNa7fZFRCJN0TNW_nduO4yb-MjJksRioo,18963
238
- webviz_subsurface/plugins/_co2_leakage/_utilities/co2volume.py,sha256=WeyTPmYbnGV0ql2CMDM7gejjGKyZ_mFCEd2DOkJkdEI,30350
238
+ webviz_subsurface/plugins/_co2_leakage/_utilities/callbacks.py,sha256=Lbfie5v7fY4IfIZnpI7Hzv4zBCC0MwGqY107mbmeAh0,20751
239
+ webviz_subsurface/plugins/_co2_leakage/_utilities/co2volume.py,sha256=fEp9K0EwtGFaEvS2aRWXx8WTPTaj0wg9bVzV2a3CIKQ,38203
239
240
  webviz_subsurface/plugins/_co2_leakage/_utilities/color_tables.py,sha256=7eUWmcL8JiyK5ZPkPtTJ9nVgmp4vZLWEzwUBJBP68OY,2437
240
241
  webviz_subsurface/plugins/_co2_leakage/_utilities/containment_data_provider.py,sha256=nCEoTcoEraDZ1o1GoSSFC54176_8n4KnFW3WI3ZNYu8,5353
242
+ webviz_subsurface/plugins/_co2_leakage/_utilities/containment_info.py,sha256=jWG_FXKVgIiXCZOCXsKCZX-RcLiF8LY_NJ8vj5j8IVk,814
241
243
  webviz_subsurface/plugins/_co2_leakage/_utilities/ensemble_well_picks.py,sha256=uWTNNyi3t8jAziRMaN3cTd4ULj03HTKTDZ7_jjsNdFg,3938
242
244
  webviz_subsurface/plugins/_co2_leakage/_utilities/fault_polygons_handler.py,sha256=w74r0DPZGKRCtChtLn4eXO5dOGPWcvMjt9udZFfasI4,1658
243
245
  webviz_subsurface/plugins/_co2_leakage/_utilities/generic.py,sha256=CFoDEyrpInaKgI1FhZ1rx2bHY2eegGx8zsFCkYuIMOM,6626
244
- webviz_subsurface/plugins/_co2_leakage/_utilities/initialization.py,sha256=my2FAllQxGAECrFoEX6bCv8dHjKsI51_lpJUVhv8NYE,9181
246
+ webviz_subsurface/plugins/_co2_leakage/_utilities/initialization.py,sha256=rgWvQ6-R5oDVa1vT7oldEY8CkpgxEHKYTr3--xqod9w,9634
245
247
  webviz_subsurface/plugins/_co2_leakage/_utilities/plume_extent.py,sha256=VsQr6DzJLvfbmwMj34cTa56woS_W8V0S08XQVtVTbu4,3390
246
248
  webviz_subsurface/plugins/_co2_leakage/_utilities/polygon_handler.py,sha256=DDyGJpTedoLzOyhT0dAmzvqkoaNXSmQ6qLqRBJuQL40,2090
247
249
  webviz_subsurface/plugins/_co2_leakage/_utilities/summary_graphs.py,sha256=Jgw9PgP72REuruGY5xE8yaOjRnZSYMs6LY_uKXxmdLY,5142
248
- webviz_subsurface/plugins/_co2_leakage/_utilities/surface_publishing.py,sha256=My1O2pz6PYM_Pziok9sPPS886avB2-LEpIQ6rO-LkG0,5218
250
+ webviz_subsurface/plugins/_co2_leakage/_utilities/surface_publishing.py,sha256=SYze_SMTRBmqOQxZPcdv3ZEsPrAxddT5n7tWFv303QE,8472
249
251
  webviz_subsurface/plugins/_co2_leakage/_utilities/unsmry_data_provider.py,sha256=r1X7zFFDOP9DRGIc0SIsQPw2iHBgculLCdkGY692SQE,3236
250
252
  webviz_subsurface/plugins/_co2_leakage/views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
251
253
  webviz_subsurface/plugins/_co2_leakage/views/mainview/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
252
- webviz_subsurface/plugins/_co2_leakage/views/mainview/mainview.py,sha256=WaM2mqfgZnBbQRDHeHLfShkpe_uMq2phHE2TWHJ8TQ0,7370
253
- webviz_subsurface/plugins/_co2_leakage/views/mainview/settings.py,sha256=B6UrWoez3SavxCv8src3IblJvO3Ynw9zhyn7oIhRVJI,60856
254
+ webviz_subsurface/plugins/_co2_leakage/views/mainview/mainview.py,sha256=iWJ-kQV8a3q8hEPP3pFIp5_cAIfcWTUzJO3TWzxyOoo,7872
255
+ webviz_subsurface/plugins/_co2_leakage/views/mainview/settings.py,sha256=-AYAoV_KUHcA8kfb4If4_3sUu6c5Fz2wwh5sRBibS1A,66135
254
256
  webviz_subsurface/plugins/_grid_viewer_fmu/__init__.py,sha256=ZlS_MintakVLD0tEjrCySI4BWcxzR7wLP-smYZoAcE4,47
255
257
  webviz_subsurface/plugins/_grid_viewer_fmu/_layout_elements.py,sha256=RHJUFVx17LvpsDOa8Y8gwNoRHoodcaXXQGRGwjqbeB0,124
256
258
  webviz_subsurface/plugins/_grid_viewer_fmu/_plugin.py,sha256=-BFEoSRUxZUaMxJCOrzGdQ5-HYFgvYRLoph_4kmbYA8,5373
@@ -598,10 +600,10 @@ webviz_subsurface/plugins/_well_log_viewer/controllers/_well_controller.py,sha25
598
600
  webviz_subsurface/plugins/_well_log_viewer/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
599
601
  webviz_subsurface/plugins/_well_log_viewer/utils/default_color_tables.py,sha256=0UgrvygPGEAuC15vn73NCXJUQLt9Dpn5QZqqq1IJkfw,4872
600
602
  webviz_subsurface/plugins/_well_log_viewer/utils/xtgeo_well_log_to_json.py,sha256=T44-vFwvvjyo376yoL1QWDc98exG8N1cLTEzrGp-I7A,1608
601
- webviz_subsurface-0.2.37.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
602
- webviz_subsurface-0.2.37.dist-info/LICENSE.chromedriver,sha256=H5UWVvf6Y7Ul6i35mriz7071dWR01cR9G-5ypnZHnpM,326542
603
- webviz_subsurface-0.2.37.dist-info/METADATA,sha256=EpXrnLt7glP-B8h6fDyLUHs6jNzbJxOxk-sAh8gC7-A,6354
604
- webviz_subsurface-0.2.37.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
605
- webviz_subsurface-0.2.37.dist-info/entry_points.txt,sha256=aprJRZQ2dW0An59soobTCaWzw6nEtiZBGncBhWA_C5Y,4129
606
- webviz_subsurface-0.2.37.dist-info/top_level.txt,sha256=NobeVsNfPINQgUSc9hlW3aqYHO5A0SNlhacg-2YDcf4,24
607
- webviz_subsurface-0.2.37.dist-info/RECORD,,
603
+ webviz_subsurface-0.2.38.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
604
+ webviz_subsurface-0.2.38.dist-info/LICENSE.chromedriver,sha256=H5UWVvf6Y7Ul6i35mriz7071dWR01cR9G-5ypnZHnpM,326542
605
+ webviz_subsurface-0.2.38.dist-info/METADATA,sha256=D6TkT_-1cixzO7evVMKMyRs6nEG7wWSZ1Mr4ap4wZ5A,6354
606
+ webviz_subsurface-0.2.38.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
607
+ webviz_subsurface-0.2.38.dist-info/entry_points.txt,sha256=aprJRZQ2dW0An59soobTCaWzw6nEtiZBGncBhWA_C5Y,4129
608
+ webviz_subsurface-0.2.38.dist-info/top_level.txt,sha256=NobeVsNfPINQgUSc9hlW3aqYHO5A0SNlhacg-2YDcf4,24
609
+ webviz_subsurface-0.2.38.dist-info/RECORD,,