Asgeir Nyvoll
Asgeir Nyvoll
In the SI system, prefix and units should be written after a space (see e.g.: [https://en.wikipedia.org/wiki/International_System_of_Units#General_rules](https://en.wikipedia.org/wiki/International_System_of_Units#General_rules)) I haven't found an option to do this. The issue can be reproduced by...
According to the Eclipse documentation, the vector parameter values in UNSMRY are stored with the data type `REAL`, which is described as single precision (4 byte) floating point reals. In...
afaik not possible to read `SMSPEC` and get metadata without also reading `UNSMRY` (by using `EclSum`). See e.g: [ecl_smspec_node init function](https://github.com/equinor/ecl/blob/1b671813f27bd73b2ecefb9152106cc8aa38ab1f/python/ecl/summary/ecl_smspec_node.py#L47-L49) If you want to extract the union of metadata...
[Currently only checks if vector ends with `H`.](https://github.com/equinor/libecl/blob/f5d8bc29d1effb9fb2f6db0be769ac56bdeb2eb1/lib/ecl/smspec_node.cpp#L955) Several examples of vectors which return `true`, but should return `false`, exist,. e.g.: `MONTH` and `TCPUH`. History is defined through keywords `WCONHIST`...
[This commit](https://github.com/OPM/opm-common/commit/41b7d0528517955f57cf4f33feea92b7fc9be724) changed the definition of the `TABDIMS` keyword (seems like it might have been defined incorrectly prior to this commit). In the commit, the item `NUM_STATE_EQ` was removed, resulting...
We should add a test with the simplest possible config to reduce the risk of forgetting to add defaults to settings (like e.g.: https://github.com/equinor/webviz-config/pull/636)
The data behind a plugin often requires some description to be useful for others than those who made the data/workflow in the first place. To have it in the view...
With the introduction of pattern matching callbacks in Dash 1.11, a new feature of dictionary id's for dash components was introduced. The current implementation of the tour feature doesn't support...
User request that especially the plot_options argument is better described in the documentation. That is: what are valid plot_options?
We currently don't support additional metadata added to the pandas DataFrames when saving to parquet in portables. The `pd.to_parquet()` function doesn't support it, but following [this article](https://towardsdatascience.com/saving-metadata-with-dataframes-71f51f558d8e) it should be...