-
Notifications
You must be signed in to change notification settings - Fork 12
880 Data Provider Framework in Intersection Module #948
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
Merged
jorgenherje
merged 69 commits into
equinor:main
from
jorgenherje:880-intersection-module-layer-framework-NEW
Jun 4, 2025
Merged
Changes from 11 commits
Commits
Show all changes
69 commits
Select commit
Hold shift + click to select a range
5b78189
Remove old Intersection module
jorgenherje 810ae91
New Intersection Module - WIP
jorgenherje 371bfa3
WIP - and fix after rebase
jorgenherje e1d0962
Fix prev settings/storedData issue in provider
jorgenherje 3f24ebd
Adjust color scales and utilize value ranges for grid and seismic
jorgenherje 6e2f68b
Adjust viewport code, and remove duplicate layerMaker-code
jorgenherje 11016c8
Fix linting/formatting issues
jorgenherje a1c3243
Adjust calc of boundingBox, bounds and viewport
jorgenherje fecf69e
Minor adjustment of maker functions - utilise isLoading
jorgenherje e4f461b
Fix WebGL context issue
jorgenherje cad7f06
Adjust filename and import order
jorgenherje 9bd1cad
Adjust boundingBox methods for layers
jorgenherje d3c0803
Rename module from IntersectionNew to Intersection
jorgenherje 2421d32
Fix typing of utility functions
jorgenherje 55b800f
Ensure invalid/error for fetch if polyline has less than two points
jorgenherje b1ac2a5
Sort available settings alphabetically and adjust time/interval setting
jorgenherje 635ba0c
Ensure valid viewport and bounds values
jorgenherje 76bce44
Rename IntersectionExtensionLength -> WellboreExtensionLength
jorgenherje aea27cd
Adjust seismic colorScale to be symmetric around 0
jorgenherje dcdc748
Adjust after rebase
jorgenherje ea580c3
Merge branch 'main' into 880-intersection-module-layer-framework-NEW
jorgenherje d4034da
Adjust after merge
jorgenherje ef2d02d
Adjust viewport and make arrays readonly
jorgenherje 0b5ba34
Control enable state for view setting
jorgenherje 99d3009
Add validation and fixup for DrilledWellborePicksSetting
jorgenherje cc89018
Add default color scale for seismic
jorgenherje 84c5dc6
Add color opacity setting for grid and seismic layer
jorgenherje f8d2da3
Adjust wellbore dependency code for providers
jorgenherje d4336ad
Add IntersectionView by default for a new module
jorgenherje 3c98f26
Fix EnsembleSetting bug: use EnsembleIdent.equals() for comparison
jorgenherje c06201b
Adjust shared settings options and add date as shared setting
jorgenherje 7ef7335
adjust moved allowed logic
jorgenherje a822a67
Handle valid extension length for selected intersection type
jorgenherje 925e833
Improve IntersectionSetting
jorgenherje 13607c6
Remove ?. notation for already guarded null
jorgenherje 1c3e504
Fix import path after merge
jorgenherje 1a49bda
Revert incorrect formatting in package and package-lock files
jorgenherje 5af705f
Make SeismicLayer generate image async in `onRescale` handler
jorgenherje 30573e2
Fix incorrect folder name for utils
jorgenherje 9db75a2
Add boundingbox for surfaces uncertainties
jorgenherje c96f321
Review feedback: Filter surface names on selected attribute
jorgenherje 1608617
Added observation number to well pick endpoints
Anders2303 12126a8
Generate api after update of end-point
jorgenherje 6a18dbd
First step of fixes based on review
jorgenherje eaba538
Second step of fixes based on review
jorgenherje 1c417ed
Merge remote-tracking branch 'equinor/main' into 880-intersection-mod…
jorgenherje bf4f0a9
Use new useVisualizationAssemblerProduct hook
jorgenherje 734627e
Handle verticalScale in handleFitInViewClick function
jorgenherje 9429e93
Fixes based on review
jorgenherje 32fdc43
Update viewport when changing intersection and extension length
jorgenherje 143ad1b
Merge remote-tracking branch 'equinor/main' into 880-intersection-mod…
jorgenherje 5d1fca8
Improve viewport and fit in view functionality
jorgenherje 9ff4a6d
Move ColorLegends into viewportwrapper
jorgenherje ff9f87d
Adjust according to review
jorgenherje 847108d
Make correct bounding box for surfaces and surfaces uncertainty
jorgenherje d8a4292
Remove unused code
jorgenherje a94abe8
Remove mismatching comment, improve error message
jorgenherje 300f260
Control min width and visibility of input in SliderNumberSetting
jorgenherje d2bdc16
Focus on reference system if no layers are visible
jorgenherje 610948d
Merge remote-tracking branch 'equinor/main' into 880-intersection-mod…
jorgenherje 1c80b00
Merge branch 'main' into 880-intersection-module-layer-framework-NEW
jorgenherje dd7b7cb
Adjust request refocus and focus bounds logic
jorgenherje 4fe047c
Adjust enum naming
jorgenherje cd2e20f
Correct extraction of number of providers to visualize
jorgenherje d6bf3c5
Minor adjustment
rubenthoms 0c24288
fix: Add missing group properties
rubenthoms 09b07f8
Merge branch 'dpf-add-missing-group-props' into 880-intersection-modu…
rubenthoms 0379710
Format import
jorgenherje a43feca
Merge remote-tracking branch 'equinor/main' into 880-intersection-mod…
jorgenherje File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| export function assertNonNull<T>(value: T | null | undefined, message?: string): T { | ||
| if (value === null || value === undefined) { | ||
| message = message || "Value cannot be null or undefined"; | ||
| throw new Error(message); | ||
| } | ||
| return value; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.