Hi, Some answers to some of your outstanding queries below.
Gary On Monday, 1 February 2021 at 23:35:28 UTC+10 [email protected] wrote: > chart_line_colors = "#4282b4", "#b44242" , "#42b442" > > > > "chart_line_colors" as hex should be in quotes, unlike in the decription > of imagegenerator. > Indeed some colours need to be enclosed in single or double quotes, not so much because they contain hex characters, but rather because they contain the # character. In a config file the # character indicates a comment and any text on the same line following the # is ignored. I see the config extracts in the manuals don't have quotes but actual config files do and that could be confusing. I will update the manuals. > an an other wired thing: > > uv plot weekly could be more than 16? > not shure whats going on there... > The source of your UV week plot problems is that you are asking the plot generator to plot the sum of the UV values in each hour. If you have the typical five minute archive period there will be 12 UV readings being summed to make up each point on the plot. To fix it remove the below highlighted line and you will instead see the average UV reading each hour: [[[weekuv]]] yscale = 0, 16, 1 [[[[UV]]]] aggregate_type = sum aggregate_interval = 3600 label = Ultraviolette Strahlung -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/e07e8542-404d-4526-a93d-0b900d181cfdn%40googlegroups.com.
