webviz-subsurface 0.2.39__py3-none-any.whl → 0.2.41__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 (105) hide show
  1. webviz_subsurface/_figures/timeseries_figure.py +1 -1
  2. webviz_subsurface/_providers/ensemble_summary_provider/_provider_impl_arrow_lazy.py +3 -1
  3. webviz_subsurface/_providers/ensemble_summary_provider/_provider_impl_arrow_presampled.py +3 -1
  4. webviz_subsurface/_providers/ensemble_table_provider/ensemble_table_provider_impl_arrow.py +3 -1
  5. webviz_subsurface/_utils/dataframe_utils.py +1 -1
  6. webviz_subsurface/_version.py +34 -0
  7. webviz_subsurface/plugins/_bhp_qc/views/_view_functions.py +5 -5
  8. webviz_subsurface/plugins/_co2_migration/__init__.py +1 -0
  9. webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_plugin.py +86 -46
  10. webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_utilities/callbacks.py +53 -30
  11. webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_utilities/co2volume.py +283 -40
  12. webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_utilities/color_tables.py +1 -1
  13. webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_utilities/containment_data_provider.py +6 -4
  14. webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_utilities/containment_info.py +6 -0
  15. webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_utilities/ensemble_well_picks.py +1 -1
  16. webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_utilities/generic.py +59 -6
  17. webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_utilities/initialization.py +73 -10
  18. webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_utilities/polygon_handler.py +1 -1
  19. webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_utilities/summary_graphs.py +20 -18
  20. webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_utilities/surface_publishing.py +18 -20
  21. webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_utilities/unsmry_data_provider.py +8 -8
  22. webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/views/mainview/mainview.py +98 -44
  23. webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/views/mainview/settings.py +7 -5
  24. webviz_subsurface/plugins/_disk_usage.py +19 -8
  25. webviz_subsurface/plugins/_line_plotter_fmu/controllers/build_figure.py +4 -4
  26. webviz_subsurface/plugins/_map_viewer_fmu/layout.py +2 -1
  27. webviz_subsurface/plugins/_map_viewer_fmu/map_viewer_fmu.py +1 -1
  28. webviz_subsurface/plugins/_parameter_analysis/_utils/_parameters_model.py +5 -5
  29. webviz_subsurface/plugins/_property_statistics/property_statistics.py +1 -1
  30. webviz_subsurface/plugins/_relative_permeability.py +6 -6
  31. webviz_subsurface/plugins/_reservoir_simulation_timeseries_regional.py +12 -12
  32. webviz_subsurface/plugins/_running_time_analysis_fmu.py +6 -1
  33. webviz_subsurface/plugins/_seismic_misfit.py +2 -3
  34. webviz_subsurface/plugins/_simulation_time_series/_views/_subplot_view/_utils/vector_statistics.py +4 -4
  35. webviz_subsurface/plugins/_structural_uncertainty/views/intersection_and_map.py +1 -1
  36. webviz_subsurface/plugins/_swatinit_qc/_business_logic.py +1 -1
  37. webviz_subsurface-0.2.41.dist-info/METADATA +822 -0
  38. {webviz_subsurface-0.2.39.dist-info → webviz_subsurface-0.2.41.dist-info}/RECORD +51 -102
  39. {webviz_subsurface-0.2.39.dist-info → webviz_subsurface-0.2.41.dist-info}/WHEEL +1 -1
  40. {webviz_subsurface-0.2.39.dist-info → webviz_subsurface-0.2.41.dist-info}/entry_points.txt +1 -1
  41. {webviz_subsurface-0.2.39.dist-info → webviz_subsurface-0.2.41.dist-info}/top_level.txt +0 -1
  42. tests/integration_tests/test_parameter_filter.py +0 -28
  43. tests/integration_tests/test_surface_selector.py +0 -53
  44. tests/unit_tests/abbreviations_tests/test_reservoir_simulation.py +0 -94
  45. tests/unit_tests/data_input/__init__.py +0 -0
  46. tests/unit_tests/data_input/test_calc_from_cumulatives.py +0 -178
  47. tests/unit_tests/data_input/test_image_processing.py +0 -11
  48. tests/unit_tests/mocks/__init__.py +0 -0
  49. tests/unit_tests/mocks/ensemble_summary_provider_dummy.py +0 -67
  50. tests/unit_tests/model_tests/__init__.py +0 -0
  51. tests/unit_tests/model_tests/test_ensemble_model.py +0 -176
  52. tests/unit_tests/model_tests/test_ensemble_set_model.py +0 -105
  53. tests/unit_tests/model_tests/test_gruptree_model.py +0 -89
  54. tests/unit_tests/model_tests/test_property_statistics_model.py +0 -42
  55. tests/unit_tests/model_tests/test_surface_set_model.py +0 -48
  56. tests/unit_tests/model_tests/test_well_attributes_model.py +0 -110
  57. tests/unit_tests/model_tests/test_well_set_model.py +0 -70
  58. tests/unit_tests/plugin_tests/__init__.py +0 -0
  59. tests/unit_tests/plugin_tests/test_grouptree.py +0 -175
  60. tests/unit_tests/plugin_tests/test_simulation_time_series/__init__.py +0 -0
  61. tests/unit_tests/plugin_tests/test_simulation_time_series/mocks/__init__.py +0 -0
  62. tests/unit_tests/plugin_tests/test_simulation_time_series/mocks/derived_vectors_accessor_ensemble_summary_provider_mock.py +0 -60
  63. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/__init__.py +0 -0
  64. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_create_vector_traces_utils.py +0 -530
  65. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_dataframe_utils.py +0 -119
  66. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_datetime_utils.py +0 -51
  67. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_delta_ensemble_utils.py +0 -222
  68. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_derived_delta_ensemble_vectors_accessor_impl.py +0 -319
  69. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_derived_ensemble_vectors_accessor_impl.py +0 -271
  70. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_derived_ensemble_vectors_accessor_utils.py +0 -78
  71. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_derived_vector_accessor.py +0 -57
  72. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_ensemble_summary_provider_set_utils.py +0 -213
  73. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_from_timeseries_cumulatives.py +0 -322
  74. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_history_vectors.py +0 -201
  75. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_trace_line_shape.py +0 -56
  76. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_vector_statistics.py +0 -171
  77. tests/unit_tests/plugin_tests/test_tornado_data.py +0 -130
  78. tests/unit_tests/plugin_tests/test_well_completions.py +0 -158
  79. tests/unit_tests/provider_tests/__init__.py +0 -0
  80. tests/unit_tests/provider_tests/test_ensemble_summary_provider.py +0 -255
  81. tests/unit_tests/provider_tests/test_ensemble_summary_provider_impl_arrow_lazy.py +0 -388
  82. tests/unit_tests/provider_tests/test_ensemble_summary_provider_impl_arrow_presampled.py +0 -160
  83. tests/unit_tests/provider_tests/test_ensemble_summary_provider_resampling.py +0 -320
  84. tests/unit_tests/provider_tests/test_ensemble_table_provider.py +0 -190
  85. tests/unit_tests/utils_tests/__init__.py +0 -0
  86. tests/unit_tests/utils_tests/test_dataframe_utils.py +0 -281
  87. tests/unit_tests/utils_tests/test_ensemble_summary_provider_set/__init__.py +0 -0
  88. tests/unit_tests/utils_tests/test_ensemble_summary_provider_set/test_ensemble_summary_provider_set.py +0 -306
  89. tests/unit_tests/utils_tests/test_formatting.py +0 -10
  90. tests/unit_tests/utils_tests/test_simulation_timeseries.py +0 -51
  91. webviz_subsurface/plugins/_co2_leakage/__init__.py +0 -1
  92. webviz_subsurface/plugins/_co2_leakage/_utilities/__init__.py +0 -0
  93. webviz_subsurface/plugins/_co2_leakage/views/__init__.py +0 -0
  94. webviz_subsurface/plugins/_co2_leakage/views/mainview/__init__.py +0 -0
  95. webviz_subsurface-0.2.39.dist-info/METADATA +0 -147
  96. /webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_error.py +0 -0
  97. /webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_types.py +0 -0
  98. {tests/integration_tests → webviz_subsurface/plugins/_co2_migration/_utilities}/__init__.py +0 -0
  99. /webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_utilities/_misc.py +0 -0
  100. /webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_utilities/fault_polygons_handler.py +0 -0
  101. /webviz_subsurface/plugins/{_co2_leakage → _co2_migration}/_utilities/plume_extent.py +0 -0
  102. {tests/unit_tests → webviz_subsurface/plugins/_co2_migration/views}/__init__.py +0 -0
  103. {tests/unit_tests/abbreviations_tests → webviz_subsurface/plugins/_co2_migration/views/mainview}/__init__.py +0 -0
  104. {webviz_subsurface-0.2.39.dist-info → webviz_subsurface-0.2.41.dist-info/licenses}/LICENSE +0 -0
  105. {webviz_subsurface-0.2.39.dist-info → webviz_subsurface-0.2.41.dist-info/licenses}/LICENSE.chromedriver +0 -0
@@ -1,56 +1,5 @@
1
- tests/integration_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- tests/integration_tests/test_parameter_filter.py,sha256=MUK6g_nbT8kPDjRdRIMrVRjb5_I17jqR7mtggiSOA_Q,849
3
- tests/integration_tests/test_surface_selector.py,sha256=gISgeRpKPvKTdiV2Qh19mhiPK85fGSIl4NYzoh1VMGo,1497
4
- tests/unit_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- tests/unit_tests/abbreviations_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- tests/unit_tests/abbreviations_tests/test_reservoir_simulation.py,sha256=vTS_rusPPEYj8rRHpx_2NvsOY2YhvF_W_2eXenCFjRo,3410
7
- tests/unit_tests/data_input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- tests/unit_tests/data_input/test_calc_from_cumulatives.py,sha256=9F-if9ebpuwIurKcgPiM16MlKn12260X6nUFT3Vi-ds,6414
9
- tests/unit_tests/data_input/test_image_processing.py,sha256=M8hVK2BnNTEE0w_37R7clSd6qLx3vhKH_22Zk8WRKCo,317
10
- tests/unit_tests/mocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- tests/unit_tests/mocks/ensemble_summary_provider_dummy.py,sha256=rhOrBZD6UPiPLg0rA9t905_OkDvcYLdPSisYhPttmXc,2208
12
- tests/unit_tests/model_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
- tests/unit_tests/model_tests/test_ensemble_model.py,sha256=uhAbJHZvz0il9HFhJee1KV0BI5V7EEZtwFlZhZRH_-k,4949
14
- tests/unit_tests/model_tests/test_ensemble_set_model.py,sha256=yUeaNbC2t81Yo09mkQb3EeOo3W6Z7av78pgbXs-4tlY,3758
15
- tests/unit_tests/model_tests/test_gruptree_model.py,sha256=F5N_CvGR5RG32xTLcu1LuU5sK0PY9h0rTCEnjLXrYJM,3529
16
- tests/unit_tests/model_tests/test_property_statistics_model.py,sha256=3eQZPGIKFDA0ypSkB24cB0BFGDkfUaXP2bvYfGQIAnU,1001
17
- tests/unit_tests/model_tests/test_surface_set_model.py,sha256=SPpg7v8fsNjl6UVQD55MLPVEmuxHRtrnlSgjnkqaot8,1653
18
- tests/unit_tests/model_tests/test_well_attributes_model.py,sha256=9C22NFoAz456x1E_ivZWE10RXcb1hhSIBmg6CUa8s9U,3167
19
- tests/unit_tests/model_tests/test_well_set_model.py,sha256=5dzJwOP6ocyQRhx4Rer2gdxk_XS_KuBdiYlLaYjX-Rw,2081
20
- tests/unit_tests/plugin_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- tests/unit_tests/plugin_tests/test_grouptree.py,sha256=7Lf16VF-7E_bWNoON4WuCsmwFazkdd1Dx_2xWtPqnno,5820
22
- tests/unit_tests/plugin_tests/test_tornado_data.py,sha256=JFPY_zAQ9_ueW4vE4kLRw_2l8FJPA1ImlIpYnpyLTzY,4163
23
- tests/unit_tests/plugin_tests/test_well_completions.py,sha256=_Czv9r1pEgzGfJFJ1MVWR0gcbXWJLNZZCesGLYNqIl4,5244
24
- tests/unit_tests/plugin_tests/test_simulation_time_series/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
- tests/unit_tests/plugin_tests/test_simulation_time_series/mocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
- tests/unit_tests/plugin_tests/test_simulation_time_series/mocks/derived_vectors_accessor_ensemble_summary_provider_mock.py,sha256=dR-YxpakLp3jp6bzuwSF473wSQn7HQtx_dy9QcR-47c,1962
27
- tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
- tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_create_vector_traces_utils.py,sha256=p5SlNVBUDzPRb8MMdcLykQ16NGu_jKEIxOYQF_pXgGI,18967
29
- tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_dataframe_utils.py,sha256=a4GbQQdpdhBRLL-S6Vbf0OujOS_iStekx1SLjsMM9Po,5073
30
- tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_datetime_utils.py,sha256=0tytYsgzvledjXajpJgHeqOSEKswRPGlmPqJr0m4zOs,1833
31
- tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_delta_ensemble_utils.py,sha256=93EkSIWVNqUcss9W5-5fLrKuFMZrLU84-JkmWy02G8w,7598
32
- tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_derived_delta_ensemble_vectors_accessor_impl.py,sha256=Brk6bSJX-_CJeGeNNGtPPYUZ6E2LUlRgesssEkvVhi8,11504
33
- tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_derived_ensemble_vectors_accessor_impl.py,sha256=PRHLNuh-IT_36eeW4ahHcjkqYlLVHlqhOawsnRdlLTE,9508
34
- tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_derived_ensemble_vectors_accessor_utils.py,sha256=uVu_-VNraeCnIFYdgtvUzUb_Qpntbs1Y3umPfK1ezrg,2860
35
- tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_derived_vector_accessor.py,sha256=OMIgVxrvvq8qpExq6MThYFUJgXhxcY5K5OshefIgLbY,2258
36
- tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_ensemble_summary_provider_set_utils.py,sha256=rvzFy0I8pX-WU_Rw6a1U8jPxmgkfFfHOPDPtQWZHThw,6811
37
- tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_from_timeseries_cumulatives.py,sha256=Lfjbc7p6HNNaMAHUKDMeiVICGDL15pWSebd_5RjzyLk,13601
38
- tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_history_vectors.py,sha256=nA5LAFCa75H0bEqy73cL7b5ZI7L7VnhYbIy4IH4T4QY,7199
39
- tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_trace_line_shape.py,sha256=RW2PeDM-HUYJtcs-Acg-tlSuq3e-yelF_nSSpqgytX8,1587
40
- tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_vector_statistics.py,sha256=Mkr6bVGL_GxqWYvkOqafa6-K6LahVE-u0iYuNz5ymKM,7208
41
- tests/unit_tests/provider_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
- tests/unit_tests/provider_tests/test_ensemble_summary_provider.py,sha256=Fl6VFtNA6OoaIEugdTrLJBfwqMsoQ_-bVTRDwKa-Lmw,8696
43
- tests/unit_tests/provider_tests/test_ensemble_summary_provider_impl_arrow_lazy.py,sha256=Oox5Th84VpbrU7CG8Spu_LUzzxmKZ4VvBQQhi4rPMTQ,13539
44
- tests/unit_tests/provider_tests/test_ensemble_summary_provider_impl_arrow_presampled.py,sha256=4sxYpKnQL-U3BhnVmR10d7K9jVO4uB-fIvk4M1xLiAA,5491
45
- tests/unit_tests/provider_tests/test_ensemble_summary_provider_resampling.py,sha256=X5W_X9xJ6pIMqNn5s0_SEB-4G0Sx2bCx5zBCxWnTsZg,11344
46
- tests/unit_tests/provider_tests/test_ensemble_table_provider.py,sha256=Di_uu-Q6dBG9SDnJ1f1HW9q1Mr-hQfIo4KtR7rHE00Y,6252
47
- tests/unit_tests/utils_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
- tests/unit_tests/utils_tests/test_dataframe_utils.py,sha256=-LJVmEqe0c8159OseQjPHBd6bRePMLH0WnTZaEcaMFk,8887
49
- tests/unit_tests/utils_tests/test_formatting.py,sha256=-zA0PUjNzATU_vWNPDuwCTYWZ1kWaZoVodedvkk_-dI,432
50
- tests/unit_tests/utils_tests/test_simulation_timeseries.py,sha256=jH18f2HTNGdA8NENIhZUtsfrcfb2hrtjYbDhzkZph9o,2242
51
- tests/unit_tests/utils_tests/test_ensemble_summary_provider_set/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
- tests/unit_tests/utils_tests/test_ensemble_summary_provider_set/test_ensemble_summary_provider_set.py,sha256=8GWUgkp1dfhaQwOMPAe85I-r4lbIAJPiTXy2I4aFjLY,10922
53
1
  webviz_subsurface/__init__.py,sha256=XUL8THCPZObkUsxDodKtE_wx-pYmQ4sATXgx5sdYa-A,3824
2
+ webviz_subsurface/_version.py,sha256=SeNxUBwO4yf5cVcoi1R5Vd5n4qagR7-SSwcWu817oBE,706
54
3
  webviz_subsurface/smry2arrow_batch.py,sha256=zTekRSgkUei6_DGT1ZWibd22PrFkkTQ_pnjZYvzMOL4,4129
55
4
  webviz_subsurface/_abbreviations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
5
  webviz_subsurface/_abbreviations/number_formatting.py,sha256=zElrkv3j3H6i7nbeeyKG1oE6VfNtzfrSJQYrC08Bev0,3479
@@ -98,7 +47,7 @@ webviz_subsurface/_figures/__init__.py,sha256=NmV8_9LNMg59e6oAyvTDe9w-tPsJoo4mde
98
47
  webviz_subsurface/_figures/barchart.py,sha256=PRkonfXGjXpfbVhbRz8sVg6FDd4h0DNe4GCOMoq_LCw,2435
99
48
  webviz_subsurface/_figures/px_figure.py,sha256=WXv6zH7aLxw36T3AF9YmY_yxH8FEdwdNG2OLGs6-rmo,10274
100
49
  webviz_subsurface/_figures/scatterplot.py,sha256=vuhRuE4sNdokIuUYEjUvOTos88Ez5aB1QdP09zsuS_0,3130
101
- webviz_subsurface/_figures/timeseries_figure.py,sha256=XRZuQSkSucDED13ks8MgV4DmTRzqlgGCqFNUy330K8Q,9080
50
+ webviz_subsurface/_figures/timeseries_figure.py,sha256=hS7F1qRnBD-vNN44QgXkx7_PG-MY4b_iugbO_gzFn2w,9076
102
51
  webviz_subsurface/_models/__init__.py,sha256=N2vfEx6bChJu9w_Vax_FslPBhNxbdWBqL6VSUD4xsX8,529
103
52
  webviz_subsurface/_models/caching_ensemble_set_model_factory.py,sha256=Jt7lCEpPPBhLB36V-QRyc2cvp2hF85zmiXODqKTza_I,1201
104
53
  webviz_subsurface/_models/ensemble_model.py,sha256=qic5LtPHeWRG3yzITvAihkiIxDZOuKYUFLbzc9peQcM,6288
@@ -141,8 +90,8 @@ webviz_subsurface/_providers/ensemble_summary_provider/_arrow_unsmry_import.py,s
141
90
  webviz_subsurface/_providers/ensemble_summary_provider/_csv_import.py,sha256=znx5say_PuSB0Fg7jH8ob81-NCHgTWZlB-ioRflg8oI,1020
142
91
  webviz_subsurface/_providers/ensemble_summary_provider/_dataframe_utils.py,sha256=6xkb7Rrwdis74sz_VZ4SQgjMm9Z4zun16u5YLhe9OhY,2122
143
92
  webviz_subsurface/_providers/ensemble_summary_provider/_field_metadata.py,sha256=I7l65Q1wj5AXOY4Odrt4kp92vh1JCVq2tOn4EcbdNf8,3843
144
- webviz_subsurface/_providers/ensemble_summary_provider/_provider_impl_arrow_lazy.py,sha256=ia8tg-0Jlzfw_cUSt81YVfFduENj0IZRB_EBG2-1iS4,14489
145
- webviz_subsurface/_providers/ensemble_summary_provider/_provider_impl_arrow_presampled.py,sha256=Mt_BmOv363nhzHO2eyaZFuGrxNH8Yh7OPAE6NJv8lmY,16613
93
+ webviz_subsurface/_providers/ensemble_summary_provider/_provider_impl_arrow_lazy.py,sha256=U_bE2a5PvGjpQXkPF64FOV4E_t--GeiQ9nVKtde3K_Q,14524
94
+ webviz_subsurface/_providers/ensemble_summary_provider/_provider_impl_arrow_presampled.py,sha256=YkMeDRSd9Edo2EB-udUbHGAgB9DH5OqkvykVvnJ3fSI,16648
146
95
  webviz_subsurface/_providers/ensemble_summary_provider/_resampling.py,sha256=yFaSeizf7Krg_L5S4DW6BJwIjtRd10NEoSnZNjs781s,14034
147
96
  webviz_subsurface/_providers/ensemble_summary_provider/_table_utils.py,sha256=KmO1Pa2Ybn9jC9I_ydv1AmbS1rwYWVWDrEqy0ts9rmk,2530
148
97
  webviz_subsurface/_providers/ensemble_summary_provider/dev_compare_fmu_to_lazy_provider.py,sha256=Gueq6uZ9qmsrUXgeDIg3HCtmcjTQz2X9f-IRMHVbepQ,10190
@@ -168,7 +117,7 @@ webviz_subsurface/_providers/ensemble_table_provider/_field_metadata.py,sha256=v
168
117
  webviz_subsurface/_providers/ensemble_table_provider/_table_import.py,sha256=Y6_3KVgkXdBvuhC-LEIIHaatXxyC2LeJ2d6sQYIl8zE,5604
169
118
  webviz_subsurface/_providers/ensemble_table_provider/ensemble_table_provider.py,sha256=GuG88MnbS4RSIIsndxk2TGM-rJ-YWkrkSjj_qRM9ZO8,910
170
119
  webviz_subsurface/_providers/ensemble_table_provider/ensemble_table_provider_factory.py,sha256=v32yheVa9YzBPJc-Wzr1k7OKj39sNAdSpUVk52_i7G0,14365
171
- webviz_subsurface/_providers/ensemble_table_provider/ensemble_table_provider_impl_arrow.py,sha256=ToDZGjRD--S38OkcQgAP7bt28_O52sxLh4M1MidGWgU,8901
120
+ webviz_subsurface/_providers/ensemble_table_provider/ensemble_table_provider_impl_arrow.py,sha256=ps7wDe9TRj8H-7r5RhehVA3j0XKo6meZyZIMllq8pc4,8936
172
121
  webviz_subsurface/_providers/well_provider/__init__.py,sha256=iw0VRgqEA6u77A5SKPuC0pcz9tRfJMkYgpv28Goy29w,131
173
122
  webviz_subsurface/_providers/well_provider/_provider_impl_file.py,sha256=X89ZPB8I9g9zDEV3xv-w2bK2vb-7-De9L4NrcDTtKJU,4011
174
123
  webviz_subsurface/_providers/well_provider/dev_experiments.py,sha256=17y4HGOAslmK8UPXab3MzykGIaw6uJxhyrpuVWEw8Kw,2069
@@ -177,7 +126,7 @@ webviz_subsurface/_providers/well_provider/well_provider_factory.py,sha256=GLznE
177
126
  webviz_subsurface/_providers/well_provider/well_server.py,sha256=XVgZhIsUEsVEFwBwebVlJzVeILVcJpNRsX-7Rj3BWuI,3899
178
127
  webviz_subsurface/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
179
128
  webviz_subsurface/_utils/colors.py,sha256=Ke_OOKMQYeBvzzlmd-7kshqqGbF2IpJEXGRrm7ss708,6184
180
- webviz_subsurface/_utils/dataframe_utils.py,sha256=BrnPO-iNfhhtna-lgeXjOupB23LGZqrpGYbxM7_qxq4,4209
129
+ webviz_subsurface/_utils/dataframe_utils.py,sha256=BvjgDzsEGAa6szmBbNe_yBV4zN-QpXBf9pg-KjU_c6o,4219
181
130
  webviz_subsurface/_utils/design_matrix.py,sha256=yyGVKYmhtzFbt1-1g3hmhVIi8YHeZuj3W_Q_wiHAGw8,1373
182
131
  webviz_subsurface/_utils/ensemble_summary_provider_set.py,sha256=qZAkUwAC9SPOYiIK4968h-_67cJhvJenJc6eGdv3oEM,5550
183
132
  webviz_subsurface/_utils/ensemble_summary_provider_set_factory.py,sha256=y6J1YRTYOvWprFdHKYqKKTAfs7nU3pvV7eCMRXyIQbg,2630
@@ -197,7 +146,7 @@ webviz_subsurface/_utils/vector_selector.py,sha256=zfywfIDuDIhAnyUNuN038jOl5xaIO
197
146
  webviz_subsurface/_utils/webvizstore_functions.py,sha256=48oS1KfclEwLIv19vUzOnSLDp5ZN6X2h9Tm5nzGQjrE,501
198
147
  webviz_subsurface/plugins/__init__.py,sha256=aPjbeEFgySTPyVCFtgoOXKre6ucZ8oLEEEvD1I2Ax48,671
199
148
  webviz_subsurface/plugins/_assisted_history_matching_analysis.py,sha256=_lG6J0TafLUTrzdXkfm5K5dwzzxrxokBXarQ-z1hwCk,21055
200
- webviz_subsurface/plugins/_disk_usage.py,sha256=bIYOvgVYSZP9jVd_8fgNiK5KBzIjaazGGUPGYAMwMXE,7456
149
+ webviz_subsurface/plugins/_disk_usage.py,sha256=Qn8Y1nV7RJyo8qU-me16os9u4g7_jAPxKxxogr4JoTs,7836
201
150
  webviz_subsurface/plugins/_history_match.py,sha256=SGtothL3lUpb-80JJyVC9Lqe1blYgMy0QqZKjADA7b4,5296
202
151
  webviz_subsurface/plugins/_inplace_volumes.py,sha256=scuLxkllfPp4SL01QopsS7uyba9oGA_DW1rlRtHbcHo,23036
203
152
  webviz_subsurface/plugins/_inplace_volumes_onebyone.py,sha256=0N-XklPLvq-zea7zXA0NDnolb4JaCFiO4QVrryTBoEg,27993
@@ -205,13 +154,13 @@ webviz_subsurface/plugins/_morris_plot.py,sha256=hwN-0TdoUAT3AUYyLw4ZXbfQrXaxBk0
205
154
  webviz_subsurface/plugins/_parameter_distribution.py,sha256=Kr3bPrnAviudrBPLYWiGM-AXsyCoiihntoSX5kfinzQ,8330
206
155
  webviz_subsurface/plugins/_parameter_parallel_coordinates.py,sha256=yV-fVp0Jl9y7mPfjBQHQWpPMJwsHMZsw_REna477V3w,23590
207
156
  webviz_subsurface/plugins/_parameter_response_correlation.py,sha256=CEOs-_BRUY8dsSrkrk5l-AxUsIf38-42upl9LDOwAvI,29940
208
- webviz_subsurface/plugins/_relative_permeability.py,sha256=baU7fbIUh1xbLWHPly6dGWJ3gscCIJgpyQieixSQhfQ,47994
157
+ webviz_subsurface/plugins/_relative_permeability.py,sha256=F5cEnln-5d43-h3CQ0_zmycJoYhMjOtpMwhEiMui9uY,47987
209
158
  webviz_subsurface/plugins/_reservoir_simulation_timeseries.py,sha256=reG1FVTDhigeWv6vSUySyUN9qdbGf0Pv1yK1E1_jU-o,62644
210
159
  webviz_subsurface/plugins/_reservoir_simulation_timeseries_onebyone.py,sha256=6OrJe2lNOvwqnWhlZoHYADiOwp75IBKGt3YG1br5Z8U,27474
211
- webviz_subsurface/plugins/_reservoir_simulation_timeseries_regional.py,sha256=p4nsaD3M9Q7Erqn31TNYkZIsChmOETX2essnqZmidOU,54595
212
- webviz_subsurface/plugins/_running_time_analysis_fmu.py,sha256=dwqPB2_3BA8CO1Wma-_NnjmFjlQjxzmQqX6TPXSqgdo,26296
160
+ webviz_subsurface/plugins/_reservoir_simulation_timeseries_regional.py,sha256=_l0WSadKQ38r49uGvePX37xDb-Hb8b1SViL6h7ewnxE,54546
161
+ webviz_subsurface/plugins/_running_time_analysis_fmu.py,sha256=wqKl_EM0u9WIJHyegx9aFxEt3nFPR08eleyZrb6Sv0g,26523
213
162
  webviz_subsurface/plugins/_segy_viewer.py,sha256=WGjrGWF_BynMMQo7bebYbgWWUa4DuHCTJ4yDHpwGFHg,19784
214
- webviz_subsurface/plugins/_seismic_misfit.py,sha256=97INdJs0V6i2h-bTukWRxxliF-OlTzELoh99QSimO2w,146813
163
+ webviz_subsurface/plugins/_seismic_misfit.py,sha256=t0RpFiM5JRLLtKWyKXsYEpVaGNb7nVTAh3e7-HnvngQ,146791
215
164
  webviz_subsurface/plugins/_subsurface_map.py,sha256=8Ca-RgpvX3qpQ6Q0U3bZTPjLpgHxc8lBeP_-qLqXR6w,7550
216
165
  webviz_subsurface/plugins/_surface_viewer_fmu.py,sha256=DONtMEesp8LOWUjZxrgamORaVUYNwILX4p2kS4K07FQ,31232
217
166
  webviz_subsurface/plugins/_surface_with_grid_cross_section.py,sha256=xDSVh9Sj_SdiluCDK5uOE5XJrUVsYwB7fI3efbqY274,18201
@@ -229,31 +178,31 @@ webviz_subsurface/plugins/_bhp_qc/views/__init__.py,sha256=gh4aqt3kKUUUelZ9ErXnR
229
178
  webviz_subsurface/plugins/_bhp_qc/views/_bar_chart.py,sha256=_H0Oi_IdnCIdxZQC2hRdObTNmClbtUnQsIbOND0F_3w,3815
230
179
  webviz_subsurface/plugins/_bhp_qc/views/_fan_chart.py,sha256=q4MtZw2tNJu1DYh5WrOLDw9O5BfH_c6JOtSPKWus6_s,3310
231
180
  webviz_subsurface/plugins/_bhp_qc/views/_line_chart.py,sha256=dUF4H8H4i1yRg-m2GsfONJ0OfkHiIHeDZhjwMygjLN0,3827
232
- webviz_subsurface/plugins/_bhp_qc/views/_view_functions.py,sha256=Biybm0JKp4DhzmyDCOWJ1xOec9UONSDREQdFZLtv9fA,3052
233
- webviz_subsurface/plugins/_co2_leakage/__init__.py,sha256=axDh1FIv4Q19Vj7wU-Ldwbs4_eRW39tRtdYOF6-sWzQ,32
234
- webviz_subsurface/plugins/_co2_leakage/_error.py,sha256=iZiTIa5qlUA4hy3cmjDrZio2bPAtIAOXoA6eTgkQ1dI,135
235
- webviz_subsurface/plugins/_co2_leakage/_plugin.py,sha256=vyOG2Y3Lc-6t4MDhjfj-My1Vjo9x_pyS_fhel2ERTFo,38754
236
- webviz_subsurface/plugins/_co2_leakage/_types.py,sha256=RbS3WtAjoobXTRXk7S8Gk4Ci0xVty3nJxUPGL8L6q3o,199
237
- webviz_subsurface/plugins/_co2_leakage/_utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
238
- webviz_subsurface/plugins/_co2_leakage/_utilities/_misc.py,sha256=0E-m_Ior6Kb5cbgfQpzC9mHI6FT2xj1Ihk0jtc6Mk6E,307
239
- webviz_subsurface/plugins/_co2_leakage/_utilities/callbacks.py,sha256=Lbfie5v7fY4IfIZnpI7Hzv4zBCC0MwGqY107mbmeAh0,20751
240
- webviz_subsurface/plugins/_co2_leakage/_utilities/co2volume.py,sha256=fEp9K0EwtGFaEvS2aRWXx8WTPTaj0wg9bVzV2a3CIKQ,38203
241
- webviz_subsurface/plugins/_co2_leakage/_utilities/color_tables.py,sha256=7eUWmcL8JiyK5ZPkPtTJ9nVgmp4vZLWEzwUBJBP68OY,2437
242
- webviz_subsurface/plugins/_co2_leakage/_utilities/containment_data_provider.py,sha256=nCEoTcoEraDZ1o1GoSSFC54176_8n4KnFW3WI3ZNYu8,5353
243
- webviz_subsurface/plugins/_co2_leakage/_utilities/containment_info.py,sha256=jWG_FXKVgIiXCZOCXsKCZX-RcLiF8LY_NJ8vj5j8IVk,814
244
- webviz_subsurface/plugins/_co2_leakage/_utilities/ensemble_well_picks.py,sha256=uWTNNyi3t8jAziRMaN3cTd4ULj03HTKTDZ7_jjsNdFg,3938
245
- webviz_subsurface/plugins/_co2_leakage/_utilities/fault_polygons_handler.py,sha256=w74r0DPZGKRCtChtLn4eXO5dOGPWcvMjt9udZFfasI4,1658
246
- webviz_subsurface/plugins/_co2_leakage/_utilities/generic.py,sha256=CFoDEyrpInaKgI1FhZ1rx2bHY2eegGx8zsFCkYuIMOM,6626
247
- webviz_subsurface/plugins/_co2_leakage/_utilities/initialization.py,sha256=rgWvQ6-R5oDVa1vT7oldEY8CkpgxEHKYTr3--xqod9w,9634
248
- webviz_subsurface/plugins/_co2_leakage/_utilities/plume_extent.py,sha256=VsQr6DzJLvfbmwMj34cTa56woS_W8V0S08XQVtVTbu4,3390
249
- webviz_subsurface/plugins/_co2_leakage/_utilities/polygon_handler.py,sha256=DDyGJpTedoLzOyhT0dAmzvqkoaNXSmQ6qLqRBJuQL40,2090
250
- webviz_subsurface/plugins/_co2_leakage/_utilities/summary_graphs.py,sha256=Jgw9PgP72REuruGY5xE8yaOjRnZSYMs6LY_uKXxmdLY,5142
251
- webviz_subsurface/plugins/_co2_leakage/_utilities/surface_publishing.py,sha256=SYze_SMTRBmqOQxZPcdv3ZEsPrAxddT5n7tWFv303QE,8472
252
- webviz_subsurface/plugins/_co2_leakage/_utilities/unsmry_data_provider.py,sha256=r1X7zFFDOP9DRGIc0SIsQPw2iHBgculLCdkGY692SQE,3236
253
- webviz_subsurface/plugins/_co2_leakage/views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
254
- webviz_subsurface/plugins/_co2_leakage/views/mainview/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
255
- webviz_subsurface/plugins/_co2_leakage/views/mainview/mainview.py,sha256=iWJ-kQV8a3q8hEPP3pFIp5_cAIfcWTUzJO3TWzxyOoo,7872
256
- webviz_subsurface/plugins/_co2_leakage/views/mainview/settings.py,sha256=-AYAoV_KUHcA8kfb4If4_3sUu6c5Fz2wwh5sRBibS1A,66135
181
+ webviz_subsurface/plugins/_bhp_qc/views/_view_functions.py,sha256=FdSaCWCnsGdIj2ET6K1r9DZS5rPTalt1SXdm2Hrpgr4,3024
182
+ webviz_subsurface/plugins/_co2_migration/__init__.py,sha256=SPo2gxFgYmDmEeAfZmHJn6x4vNh7215YYesWSL86yEk,34
183
+ webviz_subsurface/plugins/_co2_migration/_error.py,sha256=iZiTIa5qlUA4hy3cmjDrZio2bPAtIAOXoA6eTgkQ1dI,135
184
+ webviz_subsurface/plugins/_co2_migration/_plugin.py,sha256=ZrKYK08uW2-ONCpE7RPhzpylSpgf49C7d_k_hD_O-y4,40725
185
+ webviz_subsurface/plugins/_co2_migration/_types.py,sha256=RbS3WtAjoobXTRXk7S8Gk4Ci0xVty3nJxUPGL8L6q3o,199
186
+ webviz_subsurface/plugins/_co2_migration/_utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
+ webviz_subsurface/plugins/_co2_migration/_utilities/_misc.py,sha256=0E-m_Ior6Kb5cbgfQpzC9mHI6FT2xj1Ihk0jtc6Mk6E,307
188
+ webviz_subsurface/plugins/_co2_migration/_utilities/callbacks.py,sha256=HAjvXUYT8nOMJouFM7hfUuy0TpAV6bUndu7dTyfWz4A,21557
189
+ webviz_subsurface/plugins/_co2_migration/_utilities/co2volume.py,sha256=ZCMkjTGB3fVq-R4jxwYtW1KhlFBIdhPPwyQOdtv2a1w,47004
190
+ webviz_subsurface/plugins/_co2_migration/_utilities/color_tables.py,sha256=NrQf72s7Oeq9rE0TGaHQ0PDfIpg9e0dx7dNtwo6-2ZA,2439
191
+ webviz_subsurface/plugins/_co2_migration/_utilities/containment_data_provider.py,sha256=P1h0c9EIZ6U6IjkUcKoxzv7bcsxi9LWRxTuJLIURpl0,5488
192
+ webviz_subsurface/plugins/_co2_migration/_utilities/containment_info.py,sha256=9vUTTIXO4vyCxEmvt_n38YPV2JWenzYuqutrB1KP1ko,972
193
+ webviz_subsurface/plugins/_co2_migration/_utilities/ensemble_well_picks.py,sha256=9Gx5FLiS5NeHY-8iaV8HBi_dBEldb9A5t5OUfNuAu-Q,3940
194
+ webviz_subsurface/plugins/_co2_migration/_utilities/fault_polygons_handler.py,sha256=w74r0DPZGKRCtChtLn4eXO5dOGPWcvMjt9udZFfasI4,1658
195
+ webviz_subsurface/plugins/_co2_migration/_utilities/generic.py,sha256=b53tr3Q2_rB9B_1PAiSLJiJEYB-g21phpxqLcKTHxSk,8430
196
+ webviz_subsurface/plugins/_co2_migration/_utilities/initialization.py,sha256=HgoGSrTFYv1WT6RBR3nC8Olp5Jl1ApCm7Bj9PsCDsRg,11911
197
+ webviz_subsurface/plugins/_co2_migration/_utilities/plume_extent.py,sha256=VsQr6DzJLvfbmwMj34cTa56woS_W8V0S08XQVtVTbu4,3390
198
+ webviz_subsurface/plugins/_co2_migration/_utilities/polygon_handler.py,sha256=-GA5GsQ-Yc1mwfjb4RZr0DibObAmymV8YrHNfJB7KGw,2092
199
+ webviz_subsurface/plugins/_co2_migration/_utilities/summary_graphs.py,sha256=kWwzGUC2WQBgioPUt6RvXa4kAv6SDdbXJngLFrorCSg,5279
200
+ webviz_subsurface/plugins/_co2_migration/_utilities/surface_publishing.py,sha256=YfY8lOvJkb0oQLTb8EY6Fp_JWykAsItp68iGCpXJdFU,8498
201
+ webviz_subsurface/plugins/_co2_migration/_utilities/unsmry_data_provider.py,sha256=k-J2EkNeEvon64LZdo2mB1BQ4Iz25M1JAoyfCyvQOwc,3292
202
+ webviz_subsurface/plugins/_co2_migration/views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
203
+ webviz_subsurface/plugins/_co2_migration/views/mainview/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
204
+ webviz_subsurface/plugins/_co2_migration/views/mainview/mainview.py,sha256=4uj6d46znDPDfjpm3nh2iAeQavdqdMr623MQ2k1oXgw,10649
205
+ webviz_subsurface/plugins/_co2_migration/views/mainview/settings.py,sha256=22icRI9j21cWmAGJvleTvL2lELT_QQgS22nR06xKMk8,66154
257
206
  webviz_subsurface/plugins/_grid_viewer_fmu/__init__.py,sha256=ZlS_MintakVLD0tEjrCySI4BWcxzR7wLP-smYZoAcE4,47
258
207
  webviz_subsurface/plugins/_grid_viewer_fmu/_layout_elements.py,sha256=RHJUFVx17LvpsDOa8Y8gwNoRHoodcaXXQGRGwjqbeB0,124
259
208
  webviz_subsurface/plugins/_grid_viewer_fmu/_plugin.py,sha256=-BFEoSRUxZUaMxJCOrzGdQ5-HYFgvYRLoph_4kmbYA8,5373
@@ -284,7 +233,7 @@ webviz_subsurface/plugins/_horizon_uncertainty_viewer/horizon_uncertainty_viewer
284
233
  webviz_subsurface/plugins/_line_plotter_fmu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
285
234
  webviz_subsurface/plugins/_line_plotter_fmu/line_plotter_fmu.py,sha256=dka39_kfNs_tQoxfR1QbFnz7XI24SEQGzZxSxs9ykf0,6913
286
235
  webviz_subsurface/plugins/_line_plotter_fmu/controllers/__init__.py,sha256=cLQibmydGkfbW9F1WiWbK3szC28gJuDB0Dtn2pH5g7g,102
287
- webviz_subsurface/plugins/_line_plotter_fmu/controllers/build_figure.py,sha256=eZ2cB0_GWAXu0ARcxfA72PPholxnKh8hPG7GtBBFUp0,10192
236
+ webviz_subsurface/plugins/_line_plotter_fmu/controllers/build_figure.py,sha256=uCg56qTdwKNGa3dQB966yCu5Qwj6UOtPmfZ1nNiARmQ,10171
288
237
  webviz_subsurface/plugins/_line_plotter_fmu/controllers/update_figure_clientside.py,sha256=hPnKe5s8icqISzyJirdqUhYYK9ayVMN8uB_ShOXqK3g,2094
289
238
  webviz_subsurface/plugins/_line_plotter_fmu/figures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
290
239
  webviz_subsurface/plugins/_line_plotter_fmu/figures/plotly_line_plot.py,sha256=KCgYusBERAFkPN4rJN_AMVeD3kR5QenW5SzyVwUSMYE,11735
@@ -299,14 +248,14 @@ webviz_subsurface/plugins/_map_viewer_fmu/_types.py,sha256=RmFjdfVKBdNinz523Mn6D
299
248
  webviz_subsurface/plugins/_map_viewer_fmu/_utils.py,sha256=-tDOg_aK2nKUj7ArilD2cUFoKHpU18BtVZXTzw_NQ-4,1827
300
249
  webviz_subsurface/plugins/_map_viewer_fmu/callbacks.py,sha256=I__IVhAZjzyQ7nk3QALp1sHoaj3eplfVVqa5vl2M0sk,44581
301
250
  webviz_subsurface/plugins/_map_viewer_fmu/color_tables.py,sha256=FaORW2BFvEud9o4exvoo5ta-AFQ4DZo4Rl1dWQ6oT5s,319690
302
- webviz_subsurface/plugins/_map_viewer_fmu/layout.py,sha256=fUlMWbkegC9Y09ElxPtMKQ2M7swtY6MjiwZRR7JTe_0,28176
303
- webviz_subsurface/plugins/_map_viewer_fmu/map_viewer_fmu.py,sha256=SDJJoOOMgvbrQJmvqL8KpidXmmaWqfp6ECOlO-8d0XQ,10412
251
+ webviz_subsurface/plugins/_map_viewer_fmu/layout.py,sha256=FjSxlcJ_GcEcwR6iec1ktDieFlLUdPMP_8oXPxC5qxo,28212
252
+ webviz_subsurface/plugins/_map_viewer_fmu/map_viewer_fmu.py,sha256=1S5AopGC4bp6WSxgw7xfV83GChMgVwCSCG5ky20hEBA,10413
304
253
  webviz_subsurface/plugins/_parameter_analysis/__init__.py,sha256=YIsJxDje9XN0Qyzk7wVrZ5GIfdqnwUnnbxAh1iHvoko,39
305
254
  webviz_subsurface/plugins/_parameter_analysis/_plugin.py,sha256=zoXVsOcHIBR4sR5nu5lSf6iQXcRSh_ciY4eM30-rbyk,5593
306
255
  webviz_subsurface/plugins/_parameter_analysis/_types.py,sha256=g-2IPTqbpSbOV7jjuV45tWnR1b55yiFbiRrMNT9KBPo,435
307
256
  webviz_subsurface/plugins/_parameter_analysis/_utils/__init__.py,sha256=VSAGfgdhacGxYW9WCesfdpa5eQM_lsXGh_hPsF3SnSk,120
308
257
  webviz_subsurface/plugins/_parameter_analysis/_utils/_datetime_utils.py,sha256=p2SvffNUmShWsctynt34UGdm9mP4GSYa71pjn4xgSSQ,548
309
- webviz_subsurface/plugins/_parameter_analysis/_utils/_parameters_model.py,sha256=cmVBoU7ke9M8gYvLMdF3j9PQUi4rtLMCFzh29xC8k6o,8231
258
+ webviz_subsurface/plugins/_parameter_analysis/_utils/_parameters_model.py,sha256=wxuhvsPZVTGCW7ETb-bzYpIvA37zG8MYajrRxbx1sVk,8246
310
259
  webviz_subsurface/plugins/_parameter_analysis/_utils/_provider_timesseries_datamodel.py,sha256=70ATYNJEtHjNk-UoJUc9nC8Fziro5kuBl6yynMEbNqU,5394
311
260
  webviz_subsurface/plugins/_parameter_analysis/_views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
312
261
  webviz_subsurface/plugins/_parameter_analysis/_views/_parameter_distributions_view/__init__.py,sha256=J7_qFYcZRB_wIIIiYOVfmJaehzo3HrSV25ueWLgOd2o,45
@@ -351,7 +300,7 @@ webviz_subsurface/plugins/_prod_misfit/views/_view_functions.py,sha256=dyA-4iDA1
351
300
  webviz_subsurface/plugins/_prod_misfit/views/_well_production_coverage.py,sha256=jjjPaL3CLqEWwGP0uRPHQzmJxZTIV2GTPI_LcD9eDqQ,10136
352
301
  webviz_subsurface/plugins/_prod_misfit/views/_well_production_heatmap.py,sha256=D8MSY0rSPDfdC8y9tvGNGqCT70nKpVB_Dgt5CSqw4hs,9339
353
302
  webviz_subsurface/plugins/_property_statistics/__init__.py,sha256=s1O96wUq9zgE61NDcOGHknK4ueKctL4TS_SLHzs6ovw,52
354
- webviz_subsurface/plugins/_property_statistics/property_statistics.py,sha256=DgZtZE8ChWUG85Uktwoc5yJLsLAOVOq6dzYQHfxZwgc,11118
303
+ webviz_subsurface/plugins/_property_statistics/property_statistics.py,sha256=CPW77_1q8-tIHe1y-kv9wJOL1qpI_VWib4mrOfdgCjs,11119
355
304
  webviz_subsurface/plugins/_property_statistics/controllers/__init__.py,sha256=V1N9DOJoDdtzS1VldLdv1By6N_rqiEW9z-bTgsZY5ws,195
356
305
  webviz_subsurface/plugins/_property_statistics/controllers/property_delta_controller.py,sha256=i-LeUSIukmfQBPcdGF5lDVhdOXWZoH5x5okAg6TQf2g,4599
357
306
  webviz_subsurface/plugins/_property_statistics/controllers/property_qc_controller.py,sha256=1CtY0iT3-_8RA_M1ku0F2MjQ8_toFosF-lmTjCyL4xQ,2269
@@ -450,7 +399,7 @@ webviz_subsurface/plugins/_simulation_time_series/_views/_subplot_view/_utils/en
450
399
  webviz_subsurface/plugins/_simulation_time_series/_views/_subplot_view/_utils/from_timeseries_cumulatives.py,sha256=EjxiEANFPwg7VOS_QvsnMDDOgdQx2Uwn5UgapVVpS6Y,5911
451
400
  webviz_subsurface/plugins/_simulation_time_series/_views/_subplot_view/_utils/history_vectors.py,sha256=TcCud7aerwrrHCKwh4BkMUs03jNlVcHxPMAf1RJe6-8,2743
452
401
  webviz_subsurface/plugins/_simulation_time_series/_views/_subplot_view/_utils/trace_line_shape.py,sha256=Otc03PIxso4u8OlUkYu_jv6jXw6XX3RCvFIpZphxqj8,786
453
- webviz_subsurface/plugins/_simulation_time_series/_views/_subplot_view/_utils/vector_statistics.py,sha256=CveZ_dsoML9KYDG2GmibHAsXreqeIRX3wqnbEvzH1Os,2785
402
+ webviz_subsurface/plugins/_simulation_time_series/_views/_subplot_view/_utils/vector_statistics.py,sha256=2yTwvZNBF6-tmF-Jyc0G9yh6jf0fFODja08gcAa_KRk,2764
454
403
  webviz_subsurface/plugins/_simulation_time_series/_views/_subplot_view/_utils/derived_vectors_accessor/__init__.py,sha256=TvqMtJz0wiQ7AcgMWtnA6D9YnU2Bp-eKTOOK4ZqU0r8,255
455
404
  webviz_subsurface/plugins/_simulation_time_series/_views/_subplot_view/_utils/derived_vectors_accessor/derived_delta_ensemble_vectors_accessor_impl.py,sha256=F7azjYXI9G_gyp6el3hUfT_rgCTVFUmaIzEeCRyeB3s,14121
456
405
  webviz_subsurface/plugins/_simulation_time_series/_views/_subplot_view/_utils/derived_vectors_accessor/derived_ensemble_vectors_accessor_impl.py,sha256=D-E8cX8SrzuT1RvWq8ku3YBDdVtwxse5qauwlYBQvyk,8355
@@ -490,13 +439,13 @@ webviz_subsurface/plugins/_structural_uncertainty/figures/intersection.py,sha256
490
439
  webviz_subsurface/plugins/_structural_uncertainty/views/__init__.py,sha256=UKGAJ5SeYwHq2l0_Lj4xIcnaWmF2e84_5mpZ8F9lkdI,312
491
440
  webviz_subsurface/plugins/_structural_uncertainty/views/clientside_stores.py,sha256=Utn-jBhdkObvEOxZqGGoO9NRQKv_WUgmRegfz47ef04,1784
492
441
  webviz_subsurface/plugins/_structural_uncertainty/views/dialog.py,sha256=rJT38ePA6rGw2pwyT_bUzFlr28UmheZJXU7Ha6E3Lx0,1660
493
- webviz_subsurface/plugins/_structural_uncertainty/views/intersection_and_map.py,sha256=ZYVqRn89gEbqD2--3Ek7hF_UKxicxyxqZAFC94per6c,4413
442
+ webviz_subsurface/plugins/_structural_uncertainty/views/intersection_and_map.py,sha256=IYiGUETadERDJe3znqXu1Qjv4gsEdrDpbMECk4R0UMQ,4414
494
443
  webviz_subsurface/plugins/_structural_uncertainty/views/intersection_data.py,sha256=D__ZVJYP7OJOfAXRAyhm6K-dqOJqTID7LunfsRvF1SU,14607
495
444
  webviz_subsurface/plugins/_structural_uncertainty/views/map_data.py,sha256=dhZEH9veh8cfkUFtPOc9NnnCc_qtOmlDK7IH4rdSxKc,6005
496
445
  webviz_subsurface/plugins/_structural_uncertainty/views/realization_filter.py,sha256=TXyS6Bu3Ie7Fts34RPnYSTtkqrmsrfW0npK_AdJAjP8,774
497
446
  webviz_subsurface/plugins/_structural_uncertainty/views/uncertainty_table.py,sha256=ACuia-ZCgaiaVRp_1ey-RgWdE5GNIg24CB8ERF8MyQs,2710
498
447
  webviz_subsurface/plugins/_swatinit_qc/__init__.py,sha256=veBqReud5UKDA2ENkp_JkMpe_ado3bG2xgU9tMCCPUE,32
499
- webviz_subsurface/plugins/_swatinit_qc/_business_logic.py,sha256=fmyg61mZz9J2siHw8CIUT_0aIBA67xAbe1OA-C750F4,11817
448
+ webviz_subsurface/plugins/_swatinit_qc/_business_logic.py,sha256=xkanIhd24I10Q124E8l3GfTwxzcMsNjVTzWViotjgpc,11833
500
449
  webviz_subsurface/plugins/_swatinit_qc/_callbacks.py,sha256=_foBovdyADWebk5YtBrN9JWlk4hzOGLj2LKloCLr9sY,7572
501
450
  webviz_subsurface/plugins/_swatinit_qc/_figures.py,sha256=7E1O0gzWcRkFdF0nFCEoSStmKViLuVfUyTDzhqZo-II,12544
502
451
  webviz_subsurface/plugins/_swatinit_qc/_layout.py,sha256=JnsTROkHhsTx_B9T3gFoh4zIEgGu-jtYJQ4XWAfEkWs,20536
@@ -601,10 +550,10 @@ webviz_subsurface/plugins/_well_log_viewer/controllers/_well_controller.py,sha25
601
550
  webviz_subsurface/plugins/_well_log_viewer/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
602
551
  webviz_subsurface/plugins/_well_log_viewer/utils/default_color_tables.py,sha256=0UgrvygPGEAuC15vn73NCXJUQLt9Dpn5QZqqq1IJkfw,4872
603
552
  webviz_subsurface/plugins/_well_log_viewer/utils/xtgeo_well_log_to_json.py,sha256=T44-vFwvvjyo376yoL1QWDc98exG8N1cLTEzrGp-I7A,1608
604
- webviz_subsurface-0.2.39.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
605
- webviz_subsurface-0.2.39.dist-info/LICENSE.chromedriver,sha256=H5UWVvf6Y7Ul6i35mriz7071dWR01cR9G-5ypnZHnpM,326542
606
- webviz_subsurface-0.2.39.dist-info/METADATA,sha256=rFnRadClZlAGeQCYmxBT5ozeuYn3v-q6w7FPbGfemfc,6354
607
- webviz_subsurface-0.2.39.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
608
- webviz_subsurface-0.2.39.dist-info/entry_points.txt,sha256=aprJRZQ2dW0An59soobTCaWzw6nEtiZBGncBhWA_C5Y,4129
609
- webviz_subsurface-0.2.39.dist-info/top_level.txt,sha256=NobeVsNfPINQgUSc9hlW3aqYHO5A0SNlhacg-2YDcf4,24
610
- webviz_subsurface-0.2.39.dist-info/RECORD,,
553
+ webviz_subsurface-0.2.41.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
554
+ webviz_subsurface-0.2.41.dist-info/licenses/LICENSE.chromedriver,sha256=H5UWVvf6Y7Ul6i35mriz7071dWR01cR9G-5ypnZHnpM,326542
555
+ webviz_subsurface-0.2.41.dist-info/METADATA,sha256=M-qtMzC9sMWUG782j-UIuxJ6e-qvPzSrirJnGMypaF4,46825
556
+ webviz_subsurface-0.2.41.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
557
+ webviz_subsurface-0.2.41.dist-info/entry_points.txt,sha256=Xdu_x9E_hJBueKfSYBFAAVFzKeUrenikc8lydm9C-6A,4135
558
+ webviz_subsurface-0.2.41.dist-info/top_level.txt,sha256=ivY5svyqFD5YI8wdJHATxBrkxfcdU2Q6fDh5E_tDrl4,18
559
+ webviz_subsurface-0.2.41.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.3.2)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -4,7 +4,7 @@ smry2arrow_batch = webviz_subsurface.smry2arrow_batch:main
4
4
  [webviz_config_plugins]
5
5
  AssistedHistoryMatchingAnalysis = webviz_subsurface.plugins._assisted_history_matching_analysis:AssistedHistoryMatchingAnalysis
6
6
  BhpQc = webviz_subsurface.plugins._bhp_qc:BhpQc
7
- CO2Leakage = webviz_subsurface.plugins._co2_leakage:CO2Leakage
7
+ CO2Migration = webviz_subsurface.plugins._co2_migration:CO2Migration
8
8
  DiskUsage = webviz_subsurface.plugins._disk_usage:DiskUsage
9
9
  EXPERIMENTALGridViewerFMU = webviz_subsurface.plugins._grid_viewer_fmu:EXPERIMENTALGridViewerFMU
10
10
  GroupTree = webviz_subsurface.plugins._group_tree:GroupTree
@@ -1,28 +0,0 @@
1
- import pandas as pd
2
-
3
- from webviz_subsurface._components.parameter_filter import ParameterFilter
4
-
5
-
6
- def test_dataframe(testdata_folder) -> None:
7
- # pylint: disable=protected-access
8
- dframe = pd.read_csv(
9
- testdata_folder / "reek_test_data" / "aggregated_data" / "parameters.csv"
10
- )
11
-
12
- expected_discrete_parameters = [
13
- "FWL",
14
- "MULTFLT_F1",
15
- "INTERPOLATE_WO",
16
- "COHIBA_MODEL_MODE",
17
- "RMS_SEED",
18
- ]
19
-
20
- component = ParameterFilter("test", dframe, include_sens_filter=False)
21
- assert set(component._discrete_parameters) == set(expected_discrete_parameters)
22
-
23
- component = ParameterFilter("test", dframe, include_sens_filter=True)
24
- assert set(component._discrete_parameters) == set(
25
- expected_discrete_parameters + ["SENSNAME"]
26
- )
27
-
28
- assert component.is_sensitivity_run is True
@@ -1,53 +0,0 @@
1
- import json
2
-
3
- import dash
4
- import pandas as pd
5
- from dash.dependencies import Input, Output
6
-
7
- from webviz_subsurface._private_plugins.surface_selector import SurfaceSelector
8
-
9
- surface_context = {
10
- "oilthickness": {
11
- "names": ["lowerreek", "upperreek", "all", "midreek"],
12
- "dates": [
13
- "20030101_20010601",
14
- "20010601_20000101",
15
- "20010601",
16
- "20000101",
17
- "20030101",
18
- "20030101_20000101",
19
- "20010601_20010604",
20
- ],
21
- },
22
- "ds_extracted_horizons": {
23
- "names": ["toplowerreek", "topmidreek", "topupperreek", "baselowerreek"],
24
- "dates": [None],
25
- },
26
- }
27
-
28
- return_value = {
29
- "name": "lowerreek",
30
- "attribute": "oilthickness",
31
- "date": "20030101_20010601",
32
- }
33
-
34
-
35
- def test_surface_selector(dash_duo: dash.testing.composite.DashComposite) -> None:
36
- app = dash.Dash(__name__)
37
- app.config.suppress_callback_exceptions = True
38
- realizations = pd.read_csv("tests/data/realizations.csv")
39
- surface_selector = SurfaceSelector(app, surface_context, realizations)
40
-
41
- app.layout = dash.html.Div(
42
- children=[surface_selector.layout, dash.html.Pre(id="pre", children="ok")]
43
- )
44
-
45
- @app.callback(
46
- Output("pre", "children"), [Input(surface_selector.storage_id, "data")]
47
- )
48
- def _test(data: str) -> str:
49
- return json.dumps(json.loads(data))
50
-
51
- dash_duo.start_server(app)
52
-
53
- dash_duo.wait_for_contains_text("#pre", json.dumps(return_value), timeout=4)
@@ -1,94 +0,0 @@
1
- from webviz_subsurface_components import VectorDefinition, VectorDefinitions
2
-
3
- from webviz_subsurface._abbreviations.reservoir_simulation import (
4
- simulation_vector_description,
5
- )
6
-
7
-
8
- def test_simulation_vector_description_existing_vector() -> None:
9
- # Verify test vector exist in VectorDefinitions
10
- assert "WOPT" in VectorDefinitions
11
-
12
- # Test WITHOUT vector definitions argument
13
- assert simulation_vector_description("WOPT:A1") == "Oil Production Total, well A1"
14
- assert (
15
- simulation_vector_description("PER_DAY_WOPT:A1")
16
- == "Average Oil Production Total Per day, well A1"
17
- )
18
- assert (
19
- simulation_vector_description("PER_INTVL_WOPT:A1")
20
- == "Interval Oil Production Total, well A1"
21
- )
22
- assert (
23
- simulation_vector_description("AVG_WOPT:A1")
24
- == "Average Oil Production Total, well A1"
25
- )
26
- assert (
27
- simulation_vector_description("INTVL_WOPT:A1")
28
- == "Interval Oil Production Total, well A1"
29
- )
30
-
31
- # Test WITH vector definitions argument
32
- vector_definitions = {
33
- "WOPT": VectorDefinition(type="well", description="Test Description"),
34
- }
35
- assert (
36
- simulation_vector_description("WOPT:A1", vector_definitions)
37
- == "Test Description, well A1"
38
- )
39
- assert (
40
- simulation_vector_description("PER_DAY_WOPT:A1", vector_definitions)
41
- == "Average Test Description Per day, well A1"
42
- )
43
- assert (
44
- simulation_vector_description("PER_INTVL_WOPT:A1", vector_definitions)
45
- == "Interval Test Description, well A1"
46
- )
47
- assert (
48
- simulation_vector_description("AVG_WOPT:A1", vector_definitions)
49
- == "Average Test Description, well A1"
50
- )
51
- assert (
52
- simulation_vector_description("INTVL_WOPT:A1", vector_definitions)
53
- == "Interval Test Description, well A1"
54
- )
55
-
56
-
57
- def test_simulation_vector_description_non_existing_vector() -> None:
58
- # Verify test vector does not exist in VectorDefinitions
59
- assert "Custom" not in VectorDefinitions
60
-
61
- # Test WITHOUT vector definitions argument
62
- assert simulation_vector_description("Custom:A1") == "Custom:A1"
63
- assert (
64
- simulation_vector_description("PER_DAY_Custom:A1")
65
- == "Average Custom:A1 Per day"
66
- )
67
- assert simulation_vector_description("PER_INTVL_Custom:A1") == "Interval Custom:A1"
68
- assert simulation_vector_description("AVG_Custom:A1") == "Average Custom:A1"
69
- assert simulation_vector_description("INTVL_Custom:A1") == "Interval Custom:A1"
70
-
71
- # Test WITH vector definitions argument
72
- vector_definitions = {
73
- "Custom": VectorDefinition(type="field", description="Custom Description"),
74
- }
75
- assert (
76
- simulation_vector_description("Custom:A1", vector_definitions)
77
- == "Custom Description, field A1"
78
- )
79
- assert (
80
- simulation_vector_description("PER_DAY_Custom:A1", vector_definitions)
81
- == "Average Custom Description Per day, field A1"
82
- )
83
- assert (
84
- simulation_vector_description("PER_INTVL_Custom:A1", vector_definitions)
85
- == "Interval Custom Description, field A1"
86
- )
87
- assert (
88
- simulation_vector_description("AVG_Custom:A1", vector_definitions)
89
- == "Average Custom Description, field A1"
90
- )
91
- assert (
92
- simulation_vector_description("INTVL_Custom:A1", vector_definitions)
93
- == "Interval Custom Description, field A1"
94
- )
File without changes