Commit 8cd1570
feat: add a new webgl polar chart operator (#4221)
### 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>1 parent d868b85 commit 8cd1570
3 files changed
Lines changed: 115 additions & 0 deletions
File tree
- common/workflow-operator/src/main/scala/org/apache/texera/amber/operator
- visualization/polarChart
- frontend/src/assets/operator_images
Lines changed: 2 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
132 | 132 | | |
133 | 133 | | |
134 | 134 | | |
| 135 | + | |
135 | 136 | | |
136 | 137 | | |
137 | 138 | | |
| |||
194 | 195 | | |
195 | 196 | | |
196 | 197 | | |
| 198 | + | |
197 | 199 | | |
198 | 200 | | |
199 | 201 | | |
| |||
Lines changed: 113 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
Loading
0 commit comments