-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Genertobs #704
base: main
Are you sure you want to change the base?
Add Genertobs #704
Conversation
I'm uncertain that the upload workflow should live in this repository. Architecturally it feels more appropriate for that functionality to live in the Sumo world, particularly if it's importing private classes and functions from Have you considered locating the uploader there? |
I think this a fair point, I was just very focused on making it work, therefore I added the uploader as a dependency so that one could test it during development. But I think it makes to generate the include file if the cli script upload_obs_2_sumo (or upload_preprocessed_2_sumo?) Already exists?
|
More understandable name
Ensure no writing of rft data file when no data present
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #704 +/- ##
==========================================
+ Coverage 85.99% 86.64% +0.64%
==========================================
Files 51 56 +5
Lines 6854 7397 +543
==========================================
+ Hits 5894 6409 +515
- Misses 960 988 +28 ☔ View full report in Codecov by Sentry. |
return False | ||
|
||
|
||
def is_percent_range(string): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't seem to check if the string contains %
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But I see that the checking is done before calling the function. Could probably update the docstring.
Solving issue #683. Add module for generation of observation data for ert from yaml config file that takes csv, or spreadsheets as input.
Extra feature added: Users can deactivate observations, either in the config file to remove the entire observation group:
Or directly in the csv file, by adding an active column.
This column is not required, and when not present all observations are included
When present only the entries that do not include a no will be included
The name active has been by several suggested to be suboptimal, any suggestion for a different name would be appreciated