feat: add a new webgl polar chart operator#4221
Merged
aglinxinyuan merged 10 commits intoapache:mainfrom Apr 17, 2026
Merged
Conversation
Ma77Ball
suggested changes
Feb 19, 2026
Contributor
Ma77Ball
left a comment
There was a problem hiding this comment.
Overall, it looks good. Please look over the comments and address/respond to them above.
Contributor
|
@anishshiva7, There is an issue where I think you pushed more changes than expected. |
Signed-off-by: Xinyuan Lin <xinyual3@uci.edu>
Signed-off-by: Xinyuan Lin <xinyual3@uci.edu>
Correct formatting of license text in PolarChartOpDesc.scala Signed-off-by: Xinyuan Lin <xinyual3@uci.edu>
aglinxinyuan
approved these changes
Apr 17, 2026
bobbai00
pushed a commit
to bobbai00/texera
that referenced
this pull request
Apr 18, 2026
### What changes were proposed in this PR? <img width="1502" height="855" alt="Screenshot 2026-02-16 at 1 51 11 PM" src="https://github.com/user-attachments/assets/0833347c-b6f0-4f7c-8468-f7a773bffab3" /> This change introduces a WebGL Polar Chart operator, which visualizes data using polar coordinates rendered with GPU-accelerated WebGL. The WebGL Polar Chart operator enables high-performance and interactive visualization of datasets that are naturally expressed in angular and radial dimensions. In a WebGL polar chart: - The angular axis represents categories or continuous angular values. - The radial axis represents magnitude or distance from the center. - Data points are rendered using WebGL for efficient GPU-based visualization. - The visualization supports smooth rendering of larger datasets compared to traditional DOM/SVG approaches. This visualization is useful for: - Displaying cyclic or directional data. - Comparing magnitudes across angular segments. - Identifying patterns in periodic datasets. - Enabling efficient, interactive visual analytics workflows. The operator has been integrated into the Texera workflow system and appears under the visualization category. ### Any related issues, documentation, discussions? Needs python library scikit-image Can be installed using: pip install scikit-image ### How was this PR tested? Tested with existing test cases ### Was this PR authored or co-authored using generative AI tooling? No --------- Signed-off-by: Xinyuan Lin <xinyual3@uci.edu> Co-authored-by: Anish Shivamurthy <anish@dhcp-10-8-033-008.mobile.reshsg.uci.edu> Co-authored-by: Anish Shivamurthy <anish@dhcp-172-31-198-097.mobile.uci.edu> Co-authored-by: Xinyuan Lin <xinyual3@uci.edu>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What changes were proposed in this PR?
This change introduces a WebGL Polar Chart operator, which visualizes data using polar coordinates rendered with GPU-accelerated WebGL. The WebGL Polar Chart operator enables high-performance and interactive visualization of datasets that are naturally expressed in angular and radial dimensions.
In a WebGL polar chart:
This visualization is useful for:
The operator has been integrated into the Texera workflow system and appears under the visualization category.
Any related issues, documentation, discussions?
Needs python library scikit-image
Can be installed using: pip install scikit-image
How was this PR tested?
Tested with existing test cases
Was this PR authored or co-authored using generative AI tooling?
No