02-20-2024 07:02 AM
Hi,
Im mapping some wind parameters, and im currently displaying them like this:
]
(goes up to 360 degrees)
Is there any way to do something like this (showing direction and intensity of speed in a period of time):
Solved! Go to Solution.
02-20-2024 11:49 AM - edited 02-20-2024 11:57 AM
A 2D picture allows you to draw anything you want.
(Sorry, not sure if G web has that)
02-20-2024 03:58 PM
Nothing in G Web directly. You'd have to integrate a 3rd party plotting library with an HTML container and JSLI. If you have a LabVIEW app running that's collecting data for the web app you could do the image drawing there and load that into the G Web app.
02-22-2024 12:10 PM
You do have an intensity graph that you can use as a canvas (all axes hidden, one pixel per 2D array element), the just fill values corresponding to the various Z colors.
02-22-2024 12:33 PM
Here's a trivial example. Your data would need more code, of course. Easiest would be to keep the 2D array in a shift register and update elements as needed.
02-22-2024 12:51 PM
Thanks for your time,
I will try to work out with this example!