I am trying to create a form for displaying solar energy data in real time. Data can be obtained using the following jsp line.
http://pvoutput.org/service/r2/getstatistic.jsp?key=customer-key&sid=customer-id
Exiting this jsp is a comma delimited string similar to the one below:
5379600,49505,112075,0,216496,2.802,48,20100830,20151216,5.412,20151215
The first value is energy, the second is energy exported, and so on ... I need to break these values down and display the HTML in a custom form.
I have reasonable knowledge of HTML, but very little javascript or any other knowledge of the programming language.
Any help would be greatly appreciated.
source
share