We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hey guys,
I'm new to Processing. I was wondering if someone could teach me how to make charts like the attached image. I'm using a .csv file and tried to come up with something by watching the MeteorStrikes tutorial by Nicholas Felton but it's pretty different. Hope someone could help me out! Thank you!!!
Answers
One way: 1. translate the coordinate origin to the centre of the dial. 2. rotate coordinate axes for the hour of the day. 3. plot the triangle (I'd do it straight up to take advantage of symmetry about the axis), scaled for magnitude using map().
Plotting those triangles looks like it'll take many parallel lines to get the color gradient, using map to control the hue.
Could you plot them with arcs instead? I think it'll look better and be less ambiguous. With triangles, I don't know which point on the far end represents the temperature because they're at different radii. Or is it the area that represents temperature (and rainfall)?
Here's a start:
Thank you very much @stomachion for your time! I'll try to continue and play around with the code.
Post back so we can see how you got on, and what you created!