-
Notifications
You must be signed in to change notification settings - Fork 59
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
ENH: add key update_option for Well to roxar #987
ENH: add key update_option for Well to roxar #987
Conversation
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.
Some suggestions are commented in but looks good to me. With future annotations I would suggest not importing the Union
type and using the |
notation.
Regarding your comment about *args, **kwargs
on the factory functions, I think we should make an effort to address this for all the major classes.
trajectory: str = "Drilled trajectory", | ||
realisation: int = 0, |
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.
Is trajectory
the trajectory name?
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.
Yes
986d7ac
to
7e1cc57
Compare
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #987 +/- ##
==========================================
- Coverage 80.28% 80.28% -0.01%
==========================================
Files 92 92
Lines 13488 13489 +1
Branches 2222 2222
==========================================
Hits 10829 10829
- Misses 1933 1934 +1
Partials 726 726 ☔ View full report in Codecov by Sentry. |
Closing #884
This aim with this PR is to make it possible to append selected well logs to the RMS icons. It will potentially speed up execution a lot when multiple wells with multiple logs.
The PR do also some refactoring and simplification in the
_well_roxapi.py
module, but no complete attempt onmypy
typing, which can be a separate PR.