-
Notifications
You must be signed in to change notification settings - Fork 41
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
feat: Enhanced "refine" keyword for wells. #1693
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.
Would be nice with a story and some unit tests.
typescript/packages/subsurface-viewer/src/layers/wells/wellsLayer.ts
Outdated
Show resolved
Hide resolved
typescript/packages/subsurface-viewer/src/layers/wells/utils/spline.ts
Outdated
Show resolved
Hide resolved
typescript/packages/subsurface-viewer/src/layers/wells/utils/generateSyntheticWell.ts
Outdated
Show resolved
Hide resolved
-May be either a boolean or a number specifying number of new points inserted between pairs of existing points.
7e56c7b
to
3aecd43
Compare
typescript/packages/subsurface-viewer/src/layers/wells/utils/spline.test.ts
Outdated
Show resolved
Hide resolved
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.
Still missing a story for the refine
parameter
typescript/packages/subsurface-viewer/src/layers/wells/wellsLayer.ts
Outdated
Show resolved
Hide resolved
typescript/packages/subsurface-viewer/src/layers/wells/wellsLayer.ts
Outdated
Show resolved
Hide resolved
-May be either a boolean or a number specifying number of new points inserted between pairs of existing points.
…ellsParameterizedRefine
- removed use of lodash range function. In certaing cases it incuded the end value and returned to many valures.
typescript/packages/subsurface-viewer/src/layers/wells/wellsLayer.stories.tsx
Show resolved
Hide resolved
typescript/packages/subsurface-viewer/src/layers/wells/wellsLayer.stories.tsx
Show resolved
Hide resolved
<Root> | ||
<div className={classes.main}> | ||
<SubsurfaceViewer {...props} /> | ||
</div> | ||
<Slider | ||
min={1} | ||
max={10} | ||
defaultValue={1} | ||
step={1} | ||
onChange={handleChange} | ||
valueLabelDisplay={"auto"} | ||
/> | ||
</Root> |
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.
# [0.5.0](https://github.com/equinor/webviz-subsurface-components/compare/[email protected]@0.5.0) (2023-10-24) ### Features * Enhanced "refine" keyword for wells. ([#1693](#1693)) ([0b9c72e](0b9c72e))
🎉 This issue has been resolved in version [email protected] 🎉 The release is available on GitHub release |
-May be either a boolean or a number specifying number of new points inserted between pairs of existing points.