Apparent Temperature- Source? #158
-
Just wondering how apparent temperature is derived. |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments
-
Here is the formula: http://www.bom.gov.au/info/thermal_stress/#atapproximation It uses temperature, relative humidity and wind speed for the calculation. Here is the formula implementation in weewx: https://github.com/weewx/weewx/blob/master/bin/weewx/wxformulas.py#L523 Reference: https://groups.google.com/g/weewx-user/c/bNz3ymPNHHc/m/VuHcJAc1AwAJ |
Beta Was this translation helpful? Give feedback.
-
Thanks. I like this explainer from Davis. https://www.davisinstruments.com/blogs/newsletter/meteorology-101-understanding-indexes |
Beta Was this translation helpful? Give feedback.
-
Yes, it sounds like the same (the formula which uses radiation). Here is another discussion started by a Vantage Vue user: https://groups.google.com/g/weewx-user/c/ARBHWDXiDpQ/m/pyHzFA89BAAJ |
Beta Was this translation helpful? Give feedback.
-
So, now that I know it is the THSW value, how can I change that to use another value? At my location, the simple heat index is much closer to what it feels like outside the house. I'd perhaps change it to wind chill in the late fall as well as THSW is not useful at all during winter. |
Beta Was this translation helpful? Give feedback.
-
I think you can not change how the apparent temperature is calculated (you would need to change the WeeWX Code I guess). What you can do is only showing the values you are interested in: You could hide Just remove You could also try and change the labels of the observations to kind of switch them, this can be achieved by editing the translation files (lang/en.conf) |
Beta Was this translation helpful? Give feedback.
-
Well! So I was confused as to why my apptemp equaled the thsw from the WLL. So, in short, user error. But thanks for prompting me to dig deeper. I like to understand what's going on under the hood, not just install something and never learn about it. |
Beta Was this translation helpful? Give feedback.
Well! So I was confused as to why my apptemp equaled the thsw from the WLL.
I went to https://github.com/weewx/weewx/blob/6c90a174f9cf81b1b93b83b70a426199a51b47ba/bin/weewx/wxformulas.py
The apptemp is a calculated value and from the code, should not equal the thsw value from the WLL.
I looked through my weewx.conf and found that I had mapped the incoming WLL value thsw to apptemp.
Doesn't matter if it should be calculated, that mapping takes precedence. The calculated apptemp is a much more realistic value for my location/use that any of the other calculated temps.
So, in short, user error. But thanks for prompting me to dig deeper. I like to understand what's going on under the hood, no…