hello Im still around just very occupied but slowly finishing off next update which I guess is the last optional layout to use as mentioned before only so much you can do with grid layouts without becoming repetitive . so a few more modules to complete but this is as far I got with the new dynamic color coded circular gauges . update should be very soon ...

- 22.png (246.15 KiB) Viewed 88767 times
Hello everyone,
can someone please explain me the structure of the cvs files for the daily charts?
Thanks in advance
Best regards, Rolf
weather34-chart-end-of-day.php
csv end of day in the month and year csv files its structured like this also see file for same description
// meteobridge and chart position number
$weather34chartdata1 = date('j M',strtotime("yesterday"))."," // date chart position = 0
.$meteobridgeapi[82]."," //Max Temp chart position = 1
.$meteobridgeapi[84]."," // Min Temp chart position = 2
.$meteobridgeapi[52]."," // Max Dewpoint chart position = 3
.$meteobridgeapi[120]."," // Min Dewpoint chart position = 4
.$meteobridgeapi[100]."," // Rain Total chart position = 5
.$meteobridgeapi[94]."," // Wind Speed Max chart position = 6
.$meteobridgeapi[123]."," // Wind Speed Avg chart position = 7
.$notused."," // Not Used chart position = 8
.$meteobridgeapi[135]."," // Pressure Max chart position = 9
.$meteobridgeapi[137]."," // Pressure Min chart position = 10
.$meteobridgeapi[114]."," // UV Max chart position = 11
.$meteobridgeapi[107]."," // Solar Max chart position = 12
.$aqiweather["aqi24h"]."," // Purple Air 24 hour Avg chart position = 13
.$meteobridgeapi[184]."," // Davis Airlink chart position = 14
.$meteobridgeapi[171]."," // Wind Direction Avg chart position = 15
.$meteobridgeapi[167]."," // Max Humidity chart position = 16
.$meteobridgeapi[169]."" // Min Humidity chart position = 17
chartstoday.php
for the (current) day file
//meteobridge and chart position number
.$meteobridgeapi[2]."," // Temp 2
.$meteobridgeapi[10]."," //Pressure 3
.$meteobridgeapi[9]."," // Rain 4
.$meteobridgeapi[43]."," // UV 5
.$meteobridgeapi[40]."," // Wind Speed 6
.$meteobridgeapi[17]."," // Wind Speed Avg 7
.$meteobridgeapi[45]."," // Solar 8
.$meteobridgeapi[4]."," // Dewpoint 9
.$meteobridgeapi[8]."," // Rain Rate 10
.$meteobridgeapi[7]."," // Wind Direction 11
.$meteobridgeapi[22]."," // Indoor Temp 12
.$meteobridgeapi[23]."," // Indoor Humidity 13
.date('j M')."," // Date Month /Year 14 (not used)
.$weather['realfeel']."," // Real Feel 15
.$weather["lightningmax10"]."," // Lightning Total 16
.$weather["humidity"]."," // Humidity 17
.$aqiweather['aqindex']."" // Air Quality 18
hope that is of some help..brian