Sure thing, feel free to choose what you think it's best - I only enumerated the possibilities, since you asked. Assuming you want both the time, precipitation and irradiance like the site graph you screenshot in the other thread, there are 3 main ones:I get what you mean [...]
- copy paste 168 × 3 measures under different names, for roughly 5000 lines of code; low difficulty, long time, if done manually (irrespective if you use RegExp or the JSONParser)
- copy paste 3 measures under different names, for roughly 70 lines of code; medium difficulty, short time (must use regex substitutions, won't work for the JSONParser, unless it can retrieve entire arrays at once)
- the same 3 measures and a Lua one to get data and build paths, for roughly 70 lines of code and 3 lines in Lua; medium difficulty, short time (no need for the JSONParser, as Lua can do the same via tables aka arrays)
As you can see, the more automation, the less time needed for it. The difficulty level is not that high, not even when it comes to the regex substitutions, in both the 2nd and the 3rd variant it's only about the single (and short) line of code building the Path string according to the coordinates formulas.
Statistics: Posted by Yincognito — Today, 9:56 am