webviz-subsurface 0.2.38__py3-none-any.whl → 0.2.40__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 (86) hide show
  1. webviz_subsurface/_components/tornado/_tornado_bar_chart.py +31 -11
  2. webviz_subsurface/_components/tornado/_tornado_data.py +20 -2
  3. webviz_subsurface/_figures/timeseries_figure.py +1 -1
  4. webviz_subsurface/_providers/ensemble_summary_provider/_provider_impl_arrow_lazy.py +3 -1
  5. webviz_subsurface/_providers/ensemble_summary_provider/_provider_impl_arrow_presampled.py +3 -1
  6. webviz_subsurface/_providers/ensemble_table_provider/ensemble_table_provider_factory.py +4 -0
  7. webviz_subsurface/_providers/ensemble_table_provider/ensemble_table_provider_impl_arrow.py +3 -1
  8. webviz_subsurface/_utils/dataframe_utils.py +1 -1
  9. webviz_subsurface/_utils/design_matrix.py +36 -0
  10. webviz_subsurface/_version.py +34 -0
  11. webviz_subsurface/plugins/_bhp_qc/views/_view_functions.py +5 -5
  12. webviz_subsurface/plugins/_co2_leakage/_utilities/co2volume.py +1 -1
  13. webviz_subsurface/plugins/_disk_usage.py +19 -8
  14. webviz_subsurface/plugins/_line_plotter_fmu/controllers/build_figure.py +4 -4
  15. webviz_subsurface/plugins/_map_viewer_fmu/map_viewer_fmu.py +1 -1
  16. webviz_subsurface/plugins/_parameter_analysis/_types.py +1 -0
  17. webviz_subsurface/plugins/_parameter_analysis/_utils/_parameters_model.py +15 -7
  18. webviz_subsurface/plugins/_parameter_analysis/_views/_parameter_distributions_view/_settings/_visualization_type.py +2 -1
  19. webviz_subsurface/plugins/_property_statistics/property_statistics.py +1 -1
  20. webviz_subsurface/plugins/_relative_permeability.py +6 -6
  21. webviz_subsurface/plugins/_reservoir_simulation_timeseries_regional.py +12 -12
  22. webviz_subsurface/plugins/_running_time_analysis_fmu.py +6 -1
  23. webviz_subsurface/plugins/_seismic_misfit.py +2 -3
  24. webviz_subsurface/plugins/_simulation_time_series/_views/_subplot_view/_utils/vector_statistics.py +4 -4
  25. webviz_subsurface/plugins/_structural_uncertainty/views/intersection_and_map.py +1 -1
  26. webviz_subsurface/plugins/_swatinit_qc/_business_logic.py +1 -1
  27. webviz_subsurface-0.2.40.dist-info/METADATA +822 -0
  28. {webviz_subsurface-0.2.38.dist-info → webviz_subsurface-0.2.40.dist-info}/RECORD +33 -83
  29. {webviz_subsurface-0.2.38.dist-info → webviz_subsurface-0.2.40.dist-info}/WHEEL +1 -1
  30. {webviz_subsurface-0.2.38.dist-info → webviz_subsurface-0.2.40.dist-info}/top_level.txt +0 -1
  31. tests/integration_tests/__init__.py +0 -0
  32. tests/integration_tests/test_parameter_filter.py +0 -28
  33. tests/integration_tests/test_surface_selector.py +0 -53
  34. tests/unit_tests/__init__.py +0 -0
  35. tests/unit_tests/abbreviations_tests/__init__.py +0 -0
  36. tests/unit_tests/abbreviations_tests/test_reservoir_simulation.py +0 -94
  37. tests/unit_tests/data_input/__init__.py +0 -0
  38. tests/unit_tests/data_input/test_calc_from_cumulatives.py +0 -178
  39. tests/unit_tests/data_input/test_image_processing.py +0 -11
  40. tests/unit_tests/mocks/__init__.py +0 -0
  41. tests/unit_tests/mocks/ensemble_summary_provider_dummy.py +0 -67
  42. tests/unit_tests/model_tests/__init__.py +0 -0
  43. tests/unit_tests/model_tests/test_ensemble_model.py +0 -176
  44. tests/unit_tests/model_tests/test_ensemble_set_model.py +0 -105
  45. tests/unit_tests/model_tests/test_gruptree_model.py +0 -89
  46. tests/unit_tests/model_tests/test_property_statistics_model.py +0 -42
  47. tests/unit_tests/model_tests/test_surface_set_model.py +0 -48
  48. tests/unit_tests/model_tests/test_well_attributes_model.py +0 -110
  49. tests/unit_tests/model_tests/test_well_set_model.py +0 -70
  50. tests/unit_tests/plugin_tests/__init__.py +0 -0
  51. tests/unit_tests/plugin_tests/test_grouptree.py +0 -175
  52. tests/unit_tests/plugin_tests/test_simulation_time_series/__init__.py +0 -0
  53. tests/unit_tests/plugin_tests/test_simulation_time_series/mocks/__init__.py +0 -0
  54. tests/unit_tests/plugin_tests/test_simulation_time_series/mocks/derived_vectors_accessor_ensemble_summary_provider_mock.py +0 -60
  55. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/__init__.py +0 -0
  56. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_create_vector_traces_utils.py +0 -530
  57. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_dataframe_utils.py +0 -119
  58. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_datetime_utils.py +0 -51
  59. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_delta_ensemble_utils.py +0 -222
  60. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_derived_delta_ensemble_vectors_accessor_impl.py +0 -319
  61. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_derived_ensemble_vectors_accessor_impl.py +0 -271
  62. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_derived_ensemble_vectors_accessor_utils.py +0 -78
  63. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_derived_vector_accessor.py +0 -57
  64. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_ensemble_summary_provider_set_utils.py +0 -213
  65. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_from_timeseries_cumulatives.py +0 -322
  66. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_history_vectors.py +0 -201
  67. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_trace_line_shape.py +0 -56
  68. tests/unit_tests/plugin_tests/test_simulation_time_series/test_utils/test_vector_statistics.py +0 -171
  69. tests/unit_tests/plugin_tests/test_tornado_data.py +0 -121
  70. tests/unit_tests/plugin_tests/test_well_completions.py +0 -158
  71. tests/unit_tests/provider_tests/__init__.py +0 -0
  72. tests/unit_tests/provider_tests/test_ensemble_summary_provider.py +0 -255
  73. tests/unit_tests/provider_tests/test_ensemble_summary_provider_impl_arrow_lazy.py +0 -388
  74. tests/unit_tests/provider_tests/test_ensemble_summary_provider_impl_arrow_presampled.py +0 -160
  75. tests/unit_tests/provider_tests/test_ensemble_summary_provider_resampling.py +0 -320
  76. tests/unit_tests/provider_tests/test_ensemble_table_provider.py +0 -190
  77. tests/unit_tests/utils_tests/__init__.py +0 -0
  78. tests/unit_tests/utils_tests/test_dataframe_utils.py +0 -281
  79. tests/unit_tests/utils_tests/test_ensemble_summary_provider_set/__init__.py +0 -0
  80. tests/unit_tests/utils_tests/test_ensemble_summary_provider_set/test_ensemble_summary_provider_set.py +0 -306
  81. tests/unit_tests/utils_tests/test_formatting.py +0 -10
  82. tests/unit_tests/utils_tests/test_simulation_timeseries.py +0 -51
  83. webviz_subsurface-0.2.38.dist-info/METADATA +0 -147
  84. {webviz_subsurface-0.2.38.dist-info → webviz_subsurface-0.2.40.dist-info}/entry_points.txt +0 -0
  85. {webviz_subsurface-0.2.38.dist-info → webviz_subsurface-0.2.40.dist-info/licenses}/LICENSE +0 -0
  86. {webviz_subsurface-0.2.38.dist-info → webviz_subsurface-0.2.40.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=5zZ5IW65SOmwxrpJBex0ifKn7MBK3ZB6Iwg8aK8kNis,3879
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=C5ZcjUHMTvwwgpx4ECSnk_lez_XvamCUWMDnz815EZQ,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
@@ -69,8 +18,8 @@ webviz_subsurface/_components/__init__.py,sha256=LA2-36i1GI92rAQK2CrZHCUeFQY4RBS
69
18
  webviz_subsurface/_components/color_picker.py,sha256=Zg73Ha8bmv3phg1LZHCDRP3xrpIVV1Zg1wmF9ql2ETs,8879
70
19
  webviz_subsurface/_components/parameter_filter.py,sha256=XO2BfpkbaY7bhuLK4M0gECBWK3_wd3tlVFMUPXdwvSs,22232
71
20
  webviz_subsurface/_components/tornado/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
- webviz_subsurface/_components/tornado/_tornado_bar_chart.py,sha256=a6n0xV30JL8l8ow7E5axIkxu_jDTG1eyosMhx76SViY,11621
73
- webviz_subsurface/_components/tornado/_tornado_data.py,sha256=ukXCZNSFZfnZ-IiKjl1Zjdx_Q3t8EMwkEETNk9dnof0,12061
21
+ webviz_subsurface/_components/tornado/_tornado_bar_chart.py,sha256=3P2XTBSW-t9n0ayorhBBQmPJCfgr72FIceF6O0ImOdI,12695
22
+ webviz_subsurface/_components/tornado/_tornado_data.py,sha256=nld5vRq0I8Q_sQUod2vHsJkJEHCax8gfgXvYp4tnzvA,12603
74
23
  webviz_subsurface/_components/tornado/_tornado_table.py,sha256=idfm4j3MoROMjTNGz-g21rb_qWQu3-0OJSjFOgB3Ck4,2475
75
24
  webviz_subsurface/_components/tornado/tornado_widget.py,sha256=HdfwH70HAQQpZWt0yl8Pa3teZHCYTZJz-CCCPSRDy14,21547
76
25
  webviz_subsurface/_datainput/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -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
@@ -167,8 +116,8 @@ webviz_subsurface/_providers/ensemble_table_provider/__init__.py,sha256=YxM91G6i
167
116
  webviz_subsurface/_providers/ensemble_table_provider/_field_metadata.py,sha256=vd6EDP00LPIQHsSwXLNaxkUl_Dw8objE3krlGCmT84w,543
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
- webviz_subsurface/_providers/ensemble_table_provider/ensemble_table_provider_factory.py,sha256=mzTAl8ufbO4r2PU0aEtj9kNzsseJ_MGjq9z_J0fLZm4,14192
171
- webviz_subsurface/_providers/ensemble_table_provider/ensemble_table_provider_impl_arrow.py,sha256=ToDZGjRD--S38OkcQgAP7bt28_O52sxLh4M1MidGWgU,8901
119
+ webviz_subsurface/_providers/ensemble_table_provider/ensemble_table_provider_factory.py,sha256=v32yheVa9YzBPJc-Wzr1k7OKj39sNAdSpUVk52_i7G0,14365
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,8 @@ 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
130
+ webviz_subsurface/_utils/design_matrix.py,sha256=yyGVKYmhtzFbt1-1g3hmhVIi8YHeZuj3W_Q_wiHAGw8,1373
181
131
  webviz_subsurface/_utils/ensemble_summary_provider_set.py,sha256=qZAkUwAC9SPOYiIK4968h-_67cJhvJenJc6eGdv3oEM,5550
182
132
  webviz_subsurface/_utils/ensemble_summary_provider_set_factory.py,sha256=y6J1YRTYOvWprFdHKYqKKTAfs7nU3pvV7eCMRXyIQbg,2630
183
133
  webviz_subsurface/_utils/ensemble_table_provider_set.py,sha256=r1w3u4eEmNlC-YZHrdm6DSTZFyjJvJGB8oyZBSsB5MU,2904
@@ -196,7 +146,7 @@ webviz_subsurface/_utils/vector_selector.py,sha256=zfywfIDuDIhAnyUNuN038jOl5xaIO
196
146
  webviz_subsurface/_utils/webvizstore_functions.py,sha256=48oS1KfclEwLIv19vUzOnSLDp5ZN6X2h9Tm5nzGQjrE,501
197
147
  webviz_subsurface/plugins/__init__.py,sha256=aPjbeEFgySTPyVCFtgoOXKre6ucZ8oLEEEvD1I2Ax48,671
198
148
  webviz_subsurface/plugins/_assisted_history_matching_analysis.py,sha256=_lG6J0TafLUTrzdXkfm5K5dwzzxrxokBXarQ-z1hwCk,21055
199
- webviz_subsurface/plugins/_disk_usage.py,sha256=bIYOvgVYSZP9jVd_8fgNiK5KBzIjaazGGUPGYAMwMXE,7456
149
+ webviz_subsurface/plugins/_disk_usage.py,sha256=Qn8Y1nV7RJyo8qU-me16os9u4g7_jAPxKxxogr4JoTs,7836
200
150
  webviz_subsurface/plugins/_history_match.py,sha256=SGtothL3lUpb-80JJyVC9Lqe1blYgMy0QqZKjADA7b4,5296
201
151
  webviz_subsurface/plugins/_inplace_volumes.py,sha256=scuLxkllfPp4SL01QopsS7uyba9oGA_DW1rlRtHbcHo,23036
202
152
  webviz_subsurface/plugins/_inplace_volumes_onebyone.py,sha256=0N-XklPLvq-zea7zXA0NDnolb4JaCFiO4QVrryTBoEg,27993
@@ -204,13 +154,13 @@ webviz_subsurface/plugins/_morris_plot.py,sha256=hwN-0TdoUAT3AUYyLw4ZXbfQrXaxBk0
204
154
  webviz_subsurface/plugins/_parameter_distribution.py,sha256=Kr3bPrnAviudrBPLYWiGM-AXsyCoiihntoSX5kfinzQ,8330
205
155
  webviz_subsurface/plugins/_parameter_parallel_coordinates.py,sha256=yV-fVp0Jl9y7mPfjBQHQWpPMJwsHMZsw_REna477V3w,23590
206
156
  webviz_subsurface/plugins/_parameter_response_correlation.py,sha256=CEOs-_BRUY8dsSrkrk5l-AxUsIf38-42upl9LDOwAvI,29940
207
- webviz_subsurface/plugins/_relative_permeability.py,sha256=baU7fbIUh1xbLWHPly6dGWJ3gscCIJgpyQieixSQhfQ,47994
157
+ webviz_subsurface/plugins/_relative_permeability.py,sha256=F5cEnln-5d43-h3CQ0_zmycJoYhMjOtpMwhEiMui9uY,47987
208
158
  webviz_subsurface/plugins/_reservoir_simulation_timeseries.py,sha256=reG1FVTDhigeWv6vSUySyUN9qdbGf0Pv1yK1E1_jU-o,62644
209
159
  webviz_subsurface/plugins/_reservoir_simulation_timeseries_onebyone.py,sha256=6OrJe2lNOvwqnWhlZoHYADiOwp75IBKGt3YG1br5Z8U,27474
210
- webviz_subsurface/plugins/_reservoir_simulation_timeseries_regional.py,sha256=p4nsaD3M9Q7Erqn31TNYkZIsChmOETX2essnqZmidOU,54595
211
- 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
212
162
  webviz_subsurface/plugins/_segy_viewer.py,sha256=WGjrGWF_BynMMQo7bebYbgWWUa4DuHCTJ4yDHpwGFHg,19784
213
- webviz_subsurface/plugins/_seismic_misfit.py,sha256=97INdJs0V6i2h-bTukWRxxliF-OlTzELoh99QSimO2w,146813
163
+ webviz_subsurface/plugins/_seismic_misfit.py,sha256=t0RpFiM5JRLLtKWyKXsYEpVaGNb7nVTAh3e7-HnvngQ,146791
214
164
  webviz_subsurface/plugins/_subsurface_map.py,sha256=8Ca-RgpvX3qpQ6Q0U3bZTPjLpgHxc8lBeP_-qLqXR6w,7550
215
165
  webviz_subsurface/plugins/_surface_viewer_fmu.py,sha256=DONtMEesp8LOWUjZxrgamORaVUYNwILX4p2kS4K07FQ,31232
216
166
  webviz_subsurface/plugins/_surface_with_grid_cross_section.py,sha256=xDSVh9Sj_SdiluCDK5uOE5XJrUVsYwB7fI3efbqY274,18201
@@ -228,7 +178,7 @@ webviz_subsurface/plugins/_bhp_qc/views/__init__.py,sha256=gh4aqt3kKUUUelZ9ErXnR
228
178
  webviz_subsurface/plugins/_bhp_qc/views/_bar_chart.py,sha256=_H0Oi_IdnCIdxZQC2hRdObTNmClbtUnQsIbOND0F_3w,3815
229
179
  webviz_subsurface/plugins/_bhp_qc/views/_fan_chart.py,sha256=q4MtZw2tNJu1DYh5WrOLDw9O5BfH_c6JOtSPKWus6_s,3310
230
180
  webviz_subsurface/plugins/_bhp_qc/views/_line_chart.py,sha256=dUF4H8H4i1yRg-m2GsfONJ0OfkHiIHeDZhjwMygjLN0,3827
231
- webviz_subsurface/plugins/_bhp_qc/views/_view_functions.py,sha256=Biybm0JKp4DhzmyDCOWJ1xOec9UONSDREQdFZLtv9fA,3052
181
+ webviz_subsurface/plugins/_bhp_qc/views/_view_functions.py,sha256=FdSaCWCnsGdIj2ET6K1r9DZS5rPTalt1SXdm2Hrpgr4,3024
232
182
  webviz_subsurface/plugins/_co2_leakage/__init__.py,sha256=axDh1FIv4Q19Vj7wU-Ldwbs4_eRW39tRtdYOF6-sWzQ,32
233
183
  webviz_subsurface/plugins/_co2_leakage/_error.py,sha256=iZiTIa5qlUA4hy3cmjDrZio2bPAtIAOXoA6eTgkQ1dI,135
234
184
  webviz_subsurface/plugins/_co2_leakage/_plugin.py,sha256=vyOG2Y3Lc-6t4MDhjfj-My1Vjo9x_pyS_fhel2ERTFo,38754
@@ -236,7 +186,7 @@ webviz_subsurface/plugins/_co2_leakage/_types.py,sha256=RbS3WtAjoobXTRXk7S8Gk4Ci
236
186
  webviz_subsurface/plugins/_co2_leakage/_utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
237
187
  webviz_subsurface/plugins/_co2_leakage/_utilities/_misc.py,sha256=0E-m_Ior6Kb5cbgfQpzC9mHI6FT2xj1Ihk0jtc6Mk6E,307
238
188
  webviz_subsurface/plugins/_co2_leakage/_utilities/callbacks.py,sha256=Lbfie5v7fY4IfIZnpI7Hzv4zBCC0MwGqY107mbmeAh0,20751
239
- webviz_subsurface/plugins/_co2_leakage/_utilities/co2volume.py,sha256=fEp9K0EwtGFaEvS2aRWXx8WTPTaj0wg9bVzV2a3CIKQ,38203
189
+ webviz_subsurface/plugins/_co2_leakage/_utilities/co2volume.py,sha256=VWw8oEgoQrTVBK17OLE3-tCb2LH9oMDX6KN_WWhxaRg,38229
240
190
  webviz_subsurface/plugins/_co2_leakage/_utilities/color_tables.py,sha256=7eUWmcL8JiyK5ZPkPtTJ9nVgmp4vZLWEzwUBJBP68OY,2437
241
191
  webviz_subsurface/plugins/_co2_leakage/_utilities/containment_data_provider.py,sha256=nCEoTcoEraDZ1o1GoSSFC54176_8n4KnFW3WI3ZNYu8,5353
242
192
  webviz_subsurface/plugins/_co2_leakage/_utilities/containment_info.py,sha256=jWG_FXKVgIiXCZOCXsKCZX-RcLiF8LY_NJ8vj5j8IVk,814
@@ -283,7 +233,7 @@ webviz_subsurface/plugins/_horizon_uncertainty_viewer/horizon_uncertainty_viewer
283
233
  webviz_subsurface/plugins/_line_plotter_fmu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
284
234
  webviz_subsurface/plugins/_line_plotter_fmu/line_plotter_fmu.py,sha256=dka39_kfNs_tQoxfR1QbFnz7XI24SEQGzZxSxs9ykf0,6913
285
235
  webviz_subsurface/plugins/_line_plotter_fmu/controllers/__init__.py,sha256=cLQibmydGkfbW9F1WiWbK3szC28gJuDB0Dtn2pH5g7g,102
286
- 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
287
237
  webviz_subsurface/plugins/_line_plotter_fmu/controllers/update_figure_clientside.py,sha256=hPnKe5s8icqISzyJirdqUhYYK9ayVMN8uB_ShOXqK3g,2094
288
238
  webviz_subsurface/plugins/_line_plotter_fmu/figures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
289
239
  webviz_subsurface/plugins/_line_plotter_fmu/figures/plotly_line_plot.py,sha256=KCgYusBERAFkPN4rJN_AMVeD3kR5QenW5SzyVwUSMYE,11735
@@ -299,13 +249,13 @@ webviz_subsurface/plugins/_map_viewer_fmu/_utils.py,sha256=-tDOg_aK2nKUj7ArilD2c
299
249
  webviz_subsurface/plugins/_map_viewer_fmu/callbacks.py,sha256=I__IVhAZjzyQ7nk3QALp1sHoaj3eplfVVqa5vl2M0sk,44581
300
250
  webviz_subsurface/plugins/_map_viewer_fmu/color_tables.py,sha256=FaORW2BFvEud9o4exvoo5ta-AFQ4DZo4Rl1dWQ6oT5s,319690
301
251
  webviz_subsurface/plugins/_map_viewer_fmu/layout.py,sha256=fUlMWbkegC9Y09ElxPtMKQ2M7swtY6MjiwZRR7JTe_0,28176
302
- webviz_subsurface/plugins/_map_viewer_fmu/map_viewer_fmu.py,sha256=SDJJoOOMgvbrQJmvqL8KpidXmmaWqfp6ECOlO-8d0XQ,10412
252
+ webviz_subsurface/plugins/_map_viewer_fmu/map_viewer_fmu.py,sha256=1S5AopGC4bp6WSxgw7xfV83GChMgVwCSCG5ky20hEBA,10413
303
253
  webviz_subsurface/plugins/_parameter_analysis/__init__.py,sha256=YIsJxDje9XN0Qyzk7wVrZ5GIfdqnwUnnbxAh1iHvoko,39
304
254
  webviz_subsurface/plugins/_parameter_analysis/_plugin.py,sha256=zoXVsOcHIBR4sR5nu5lSf6iQXcRSh_ciY4eM30-rbyk,5593
305
- webviz_subsurface/plugins/_parameter_analysis/_types.py,sha256=at_5vL34UHclHNFSxkqO694e35do87a_br_rpt9iud0,407
255
+ webviz_subsurface/plugins/_parameter_analysis/_types.py,sha256=g-2IPTqbpSbOV7jjuV45tWnR1b55yiFbiRrMNT9KBPo,435
306
256
  webviz_subsurface/plugins/_parameter_analysis/_utils/__init__.py,sha256=VSAGfgdhacGxYW9WCesfdpa5eQM_lsXGh_hPsF3SnSk,120
307
257
  webviz_subsurface/plugins/_parameter_analysis/_utils/_datetime_utils.py,sha256=p2SvffNUmShWsctynt34UGdm9mP4GSYa71pjn4xgSSQ,548
308
- webviz_subsurface/plugins/_parameter_analysis/_utils/_parameters_model.py,sha256=xNiL8tgv2Hs5rXwlSSB8uBRG68pNkiqPZfD8N6vX0e0,7852
258
+ webviz_subsurface/plugins/_parameter_analysis/_utils/_parameters_model.py,sha256=wxuhvsPZVTGCW7ETb-bzYpIvA37zG8MYajrRxbx1sVk,8246
309
259
  webviz_subsurface/plugins/_parameter_analysis/_utils/_provider_timesseries_datamodel.py,sha256=70ATYNJEtHjNk-UoJUc9nC8Fziro5kuBl6yynMEbNqU,5394
310
260
  webviz_subsurface/plugins/_parameter_analysis/_views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
311
261
  webviz_subsurface/plugins/_parameter_analysis/_views/_parameter_distributions_view/__init__.py,sha256=J7_qFYcZRB_wIIIiYOVfmJaehzo3HrSV25ueWLgOd2o,45
@@ -314,7 +264,7 @@ webviz_subsurface/plugins/_parameter_analysis/_views/_parameter_distributions_vi
314
264
  webviz_subsurface/plugins/_parameter_analysis/_views/_parameter_distributions_view/_settings/__init__.py,sha256=whY4RYk2U9hM0rkABSTC4dqxcDikPn5naPMBeP3qzgk,148
315
265
  webviz_subsurface/plugins/_parameter_analysis/_views/_parameter_distributions_view/_settings/_ensembles.py,sha256=nOZNPmhoxn3L71Omm_5w0jdnkxxi9NO3TDx853ZrTAQ,1333
316
266
  webviz_subsurface/plugins/_parameter_analysis/_views/_parameter_distributions_view/_settings/_parameters.py,sha256=GHKE0ZZZndc1jBjvLAitfaM5k5ARm0vxFWp2JPvTBBw,1628
317
- webviz_subsurface/plugins/_parameter_analysis/_views/_parameter_distributions_view/_settings/_visualization_type.py,sha256=bDmtNgR8msaiERHv_DD-C6MhHoO9PxloUrFtBrAD3gU,1200
267
+ webviz_subsurface/plugins/_parameter_analysis/_views/_parameter_distributions_view/_settings/_visualization_type.py,sha256=Nx8GVM2ng6dSgoduJ3uTW9oOhEK_prTKCXSEYYbsAk4,1279
318
268
  webviz_subsurface/plugins/_parameter_analysis/_views/_parameter_response_view/__init__.py,sha256=7FsVn4FasBbUozc3TMF5rOjqL5nxCnA54P-ruPRe5Q8,41
319
269
  webviz_subsurface/plugins/_parameter_analysis/_views/_parameter_response_view/_view.py,sha256=k3j1-oz7s_UN_nEvHa3cCsqmOQL5tkaqStD73xuyyFc,29763
320
270
  webviz_subsurface/plugins/_parameter_analysis/_views/_parameter_response_view/_view_element.py,sha256=9ymaq2WJx8z4ErEeJhG5I9W2PhrOuSgHEwGpSjLzw_g,556
@@ -350,7 +300,7 @@ webviz_subsurface/plugins/_prod_misfit/views/_view_functions.py,sha256=dyA-4iDA1
350
300
  webviz_subsurface/plugins/_prod_misfit/views/_well_production_coverage.py,sha256=jjjPaL3CLqEWwGP0uRPHQzmJxZTIV2GTPI_LcD9eDqQ,10136
351
301
  webviz_subsurface/plugins/_prod_misfit/views/_well_production_heatmap.py,sha256=D8MSY0rSPDfdC8y9tvGNGqCT70nKpVB_Dgt5CSqw4hs,9339
352
302
  webviz_subsurface/plugins/_property_statistics/__init__.py,sha256=s1O96wUq9zgE61NDcOGHknK4ueKctL4TS_SLHzs6ovw,52
353
- 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
354
304
  webviz_subsurface/plugins/_property_statistics/controllers/__init__.py,sha256=V1N9DOJoDdtzS1VldLdv1By6N_rqiEW9z-bTgsZY5ws,195
355
305
  webviz_subsurface/plugins/_property_statistics/controllers/property_delta_controller.py,sha256=i-LeUSIukmfQBPcdGF5lDVhdOXWZoH5x5okAg6TQf2g,4599
356
306
  webviz_subsurface/plugins/_property_statistics/controllers/property_qc_controller.py,sha256=1CtY0iT3-_8RA_M1ku0F2MjQ8_toFosF-lmTjCyL4xQ,2269
@@ -449,7 +399,7 @@ webviz_subsurface/plugins/_simulation_time_series/_views/_subplot_view/_utils/en
449
399
  webviz_subsurface/plugins/_simulation_time_series/_views/_subplot_view/_utils/from_timeseries_cumulatives.py,sha256=EjxiEANFPwg7VOS_QvsnMDDOgdQx2Uwn5UgapVVpS6Y,5911
450
400
  webviz_subsurface/plugins/_simulation_time_series/_views/_subplot_view/_utils/history_vectors.py,sha256=TcCud7aerwrrHCKwh4BkMUs03jNlVcHxPMAf1RJe6-8,2743
451
401
  webviz_subsurface/plugins/_simulation_time_series/_views/_subplot_view/_utils/trace_line_shape.py,sha256=Otc03PIxso4u8OlUkYu_jv6jXw6XX3RCvFIpZphxqj8,786
452
- 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
453
403
  webviz_subsurface/plugins/_simulation_time_series/_views/_subplot_view/_utils/derived_vectors_accessor/__init__.py,sha256=TvqMtJz0wiQ7AcgMWtnA6D9YnU2Bp-eKTOOK4ZqU0r8,255
454
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
455
405
  webviz_subsurface/plugins/_simulation_time_series/_views/_subplot_view/_utils/derived_vectors_accessor/derived_ensemble_vectors_accessor_impl.py,sha256=D-E8cX8SrzuT1RvWq8ku3YBDdVtwxse5qauwlYBQvyk,8355
@@ -489,13 +439,13 @@ webviz_subsurface/plugins/_structural_uncertainty/figures/intersection.py,sha256
489
439
  webviz_subsurface/plugins/_structural_uncertainty/views/__init__.py,sha256=UKGAJ5SeYwHq2l0_Lj4xIcnaWmF2e84_5mpZ8F9lkdI,312
490
440
  webviz_subsurface/plugins/_structural_uncertainty/views/clientside_stores.py,sha256=Utn-jBhdkObvEOxZqGGoO9NRQKv_WUgmRegfz47ef04,1784
491
441
  webviz_subsurface/plugins/_structural_uncertainty/views/dialog.py,sha256=rJT38ePA6rGw2pwyT_bUzFlr28UmheZJXU7Ha6E3Lx0,1660
492
- 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
493
443
  webviz_subsurface/plugins/_structural_uncertainty/views/intersection_data.py,sha256=D__ZVJYP7OJOfAXRAyhm6K-dqOJqTID7LunfsRvF1SU,14607
494
444
  webviz_subsurface/plugins/_structural_uncertainty/views/map_data.py,sha256=dhZEH9veh8cfkUFtPOc9NnnCc_qtOmlDK7IH4rdSxKc,6005
495
445
  webviz_subsurface/plugins/_structural_uncertainty/views/realization_filter.py,sha256=TXyS6Bu3Ie7Fts34RPnYSTtkqrmsrfW0npK_AdJAjP8,774
496
446
  webviz_subsurface/plugins/_structural_uncertainty/views/uncertainty_table.py,sha256=ACuia-ZCgaiaVRp_1ey-RgWdE5GNIg24CB8ERF8MyQs,2710
497
447
  webviz_subsurface/plugins/_swatinit_qc/__init__.py,sha256=veBqReud5UKDA2ENkp_JkMpe_ado3bG2xgU9tMCCPUE,32
498
- 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
499
449
  webviz_subsurface/plugins/_swatinit_qc/_callbacks.py,sha256=_foBovdyADWebk5YtBrN9JWlk4hzOGLj2LKloCLr9sY,7572
500
450
  webviz_subsurface/plugins/_swatinit_qc/_figures.py,sha256=7E1O0gzWcRkFdF0nFCEoSStmKViLuVfUyTDzhqZo-II,12544
501
451
  webviz_subsurface/plugins/_swatinit_qc/_layout.py,sha256=JnsTROkHhsTx_B9T3gFoh4zIEgGu-jtYJQ4XWAfEkWs,20536
@@ -600,10 +550,10 @@ webviz_subsurface/plugins/_well_log_viewer/controllers/_well_controller.py,sha25
600
550
  webviz_subsurface/plugins/_well_log_viewer/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
601
551
  webviz_subsurface/plugins/_well_log_viewer/utils/default_color_tables.py,sha256=0UgrvygPGEAuC15vn73NCXJUQLt9Dpn5QZqqq1IJkfw,4872
602
552
  webviz_subsurface/plugins/_well_log_viewer/utils/xtgeo_well_log_to_json.py,sha256=T44-vFwvvjyo376yoL1QWDc98exG8N1cLTEzrGp-I7A,1608
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,,
553
+ webviz_subsurface-0.2.40.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
554
+ webviz_subsurface-0.2.40.dist-info/licenses/LICENSE.chromedriver,sha256=H5UWVvf6Y7Ul6i35mriz7071dWR01cR9G-5ypnZHnpM,326542
555
+ webviz_subsurface-0.2.40.dist-info/METADATA,sha256=eY-YSZjIm6pl-UwgUQ4jDLGVupc5OkTtAcTcurwE0h0,46824
556
+ webviz_subsurface-0.2.40.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
557
+ webviz_subsurface-0.2.40.dist-info/entry_points.txt,sha256=aprJRZQ2dW0An59soobTCaWzw6nEtiZBGncBhWA_C5Y,4129
558
+ webviz_subsurface-0.2.40.dist-info/top_level.txt,sha256=ivY5svyqFD5YI8wdJHATxBrkxfcdU2Q6fDh5E_tDrl4,18
559
+ webviz_subsurface-0.2.40.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
 
File without changes
@@ -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)
File without changes
File without changes
@@ -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
@@ -1,178 +0,0 @@
1
- from pathlib import Path
2
- from typing import List
3
-
4
- import pandas as pd
5
- import pytest
6
-
7
- import webviz_subsurface._datainput.from_timeseries_cumulatives as from_cum
8
-
9
-
10
- def get_data_df(testdata_folder: Path) -> pd.DataFrame:
11
- data_df = pd.read_csv(
12
- testdata_folder / "reek_test_data" / "aggregated_data" / "unsmry--monthly.csv"
13
- )
14
- data_df.DATE = data_df.DATE.astype(str)
15
- return data_df
16
-
17
-
18
- def test_calc_from_cumulatives(testdata_folder: Path) -> None:
19
- # Includes monthly data, 10 reals x 4 ensembles, 3 years and 1 month (2000-01-01 to 2003-02-01)
20
- data_df = get_data_df(testdata_folder)
21
-
22
- ## Test single column key, FOPT as average rate avg_fopr, monthly
23
- calc_df = from_cum.calc_from_cumulatives(
24
- data=data_df,
25
- column_keys="FOPT",
26
- time_index="monthly",
27
- time_index_input="monthly",
28
- as_rate=True,
29
- )
30
-
31
- # Test real 0, iter-2
32
- real_data = data_df[(data_df["REAL"] == 0) & (data_df["ENSEMBLE"] == "iter-2")]
33
- real_calc = calc_df[(calc_df["REAL"] == 0) & (calc_df["ENSEMBLE"] == "iter-2")]
34
-
35
- assert real_calc[real_calc.DATE == "2000-01-01"]["AVG_FOPR"].values == (
36
- (
37
- real_data[real_data.DATE == "2000-02-01"]["FOPT"].values
38
- - real_data[real_data.DATE == "2000-01-01"]["FOPT"].values
39
- )
40
- / 31
41
- )
42
-
43
- assert real_calc[real_calc.DATE == "2002-05-01"]["AVG_FOPR"].values == (
44
- (
45
- real_data[real_data.DATE == "2002-06-01"]["FOPT"].values
46
- - real_data[real_data.DATE == "2002-05-01"]["FOPT"].values
47
- )
48
- / 31
49
- )
50
-
51
- ## Test multiple column keys, WOPT:OP_1 as average rate avg_fopr, monthly
52
- calc_df = from_cum.calc_from_cumulatives(
53
- data=data_df,
54
- column_keys=["WOPT:OP_1", "GOPT:OP"],
55
- time_index="yearly",
56
- time_index_input="monthly",
57
- as_rate=True,
58
- )
59
- # Test real 4, iter-0
60
- real_data = data_df[(data_df["REAL"] == 4) & (data_df["ENSEMBLE"] == "iter-0")]
61
- real_calc = calc_df[(calc_df["REAL"] == 4) & (calc_df["ENSEMBLE"] == "iter-0")]
62
-
63
- assert real_calc[real_calc.DATE == "2000-01-01"]["AVG_WOPR:OP_1"].values == (
64
- (
65
- real_data[real_data.DATE == "2001-01-01"]["WOPT:OP_1"].values
66
- - real_data[real_data.DATE == "2000-01-01"]["WOPT:OP_1"].values
67
- )
68
- / 366
69
- )
70
-
71
- assert real_calc[real_calc.DATE == "2002-01-01"]["AVG_GOPR:OP"].values == (
72
- (
73
- real_data[real_data.DATE == "2003-01-01"]["GOPT:OP"].values
74
- - real_data[real_data.DATE == "2002-01-01"]["GOPT:OP"].values
75
- )
76
- / 365
77
- )
78
-
79
- assert real_calc[real_calc.DATE == "2002-01-01"]["AVG_WOPR:OP_1"].values == (
80
- (
81
- real_data[real_data.DATE == "2003-01-01"]["WOPT:OP_1"].values
82
- - real_data[real_data.DATE == "2002-01-01"]["WOPT:OP_1"].values
83
- )
84
- / 365
85
- )
86
-
87
- assert real_calc[real_calc.DATE == "2001-01-01"]["AVG_GOPR:OP"].values == (
88
- (
89
- real_data[real_data.DATE == "2002-01-01"]["GOPT:OP"].values
90
- - real_data[real_data.DATE == "2001-01-01"]["GOPT:OP"].values
91
- )
92
- / 365
93
- )
94
-
95
- ## Test multiple column keys, WOPR_OP as average rate avg_fopr, monthly
96
- calc_df = from_cum.calc_from_cumulatives(
97
- data=data_df,
98
- column_keys=["WGPT:OP_2", "GWPT:OP"],
99
- time_index="monthly",
100
- time_index_input="monthly",
101
- as_rate=False,
102
- )
103
- # Test real 9, iter-0
104
- real_data = data_df[(data_df["REAL"] == 9) & (data_df["ENSEMBLE"] == "iter-0")]
105
- real_calc = calc_df[(calc_df["REAL"] == 9) & (calc_df["ENSEMBLE"] == "iter-0")]
106
-
107
- assert real_calc[real_calc.DATE == "2000-01-01"]["INTVL_WGPT:OP_2"].values == (
108
- real_data[real_data.DATE == "2000-01-01"]["WGPT:OP_2"].values
109
- - real_data[real_data.DATE == "2000-02-01"]["WGPT:OP_2"].values
110
- )
111
-
112
- assert real_calc[real_calc.DATE == "2002-05-01"]["INTVL_GWPT:OP"].values == (
113
- real_data[real_data.DATE == "2002-06-01"]["GWPT:OP"].values
114
- - real_data[real_data.DATE == "2002-05-01"]["GWPT:OP"].values
115
- )
116
-
117
- assert real_calc[real_calc.DATE == "2000-12-01"]["INTVL_WGPT:OP_2"].values == (
118
- real_data[real_data.DATE == "2001-01-01"]["WGPT:OP_2"].values
119
- - real_data[real_data.DATE == "2000-12-01"]["WGPT:OP_2"].values
120
- )
121
-
122
- assert real_calc[real_calc.DATE == "2002-02-01"]["INTVL_GWPT:OP"].values == (
123
- real_data[real_data.DATE == "2002-03-01"]["GWPT:OP"].values
124
- - real_data[real_data.DATE == "2002-02-01"]["GWPT:OP"].values
125
- )
126
-
127
- # Resample the data to yearly datapoints:
128
- data_df = data_df[
129
- data_df["DATE"].isin(["2000-01-01", "2001-01-01", "2002-01-01", "2003-01-01"])
130
- ]
131
- calc_df = from_cum.calc_from_cumulatives(
132
- data=data_df,
133
- column_keys=["WGPT:OP_2", "GWPT:OP"],
134
- time_index="yearly",
135
- time_index_input="yearly",
136
- as_rate=False,
137
- )
138
- # Test real 9, iter-0
139
- real_data = data_df[(data_df["REAL"] == 9) & (data_df["ENSEMBLE"] == "iter-0")]
140
- real_calc = calc_df[(calc_df["REAL"] == 9) & (calc_df["ENSEMBLE"] == "iter-0")]
141
-
142
- assert real_calc[real_calc.DATE == "2000-01-01"]["INTVL_WGPT:OP_2"].values == (
143
- real_data[real_data.DATE == "2001-01-01"]["WGPT:OP_2"].values
144
- - real_data[real_data.DATE == "2000-01-01"]["WGPT:OP_2"].values
145
- )
146
-
147
- assert real_calc[real_calc.DATE == "2002-01-01"]["INTVL_GWPT:OP"].values == (
148
- real_data[real_data.DATE == "2003-01-01"]["GWPT:OP"].values
149
- - real_data[real_data.DATE == "2002-01-01"]["GWPT:OP"].values
150
- )
151
-
152
-
153
- @pytest.mark.parametrize(
154
- "column_keys,time_index,time_index_input,as_rate",
155
- [
156
- (["WGPT:OP_2", "GWPT:OP"], "monthly", "yearly", False),
157
- (["WGPT:OP_2", "GWPT:OP"], "daily", "monthly", True),
158
- (["WGPT:OP_2", "GWPT:OP"], "daily", "yearly", True),
159
- ],
160
- )
161
- def test_calc_from_cumulatives_errors(
162
- column_keys: List[str],
163
- time_index: str,
164
- time_index_input: str,
165
- as_rate: bool,
166
- testdata_folder: Path,
167
- ) -> None:
168
- data_df = get_data_df(testdata_folder)
169
- with pytest.raises(ValueError):
170
- # Is this variable necessary?
171
- # pylint: disable=unused-variable
172
- calc_df = from_cum.calc_from_cumulatives(
173
- data=data_df,
174
- column_keys=column_keys,
175
- time_index=time_index,
176
- time_index_input=time_index_input,
177
- as_rate=as_rate,
178
- )