An algorithm for predicting snow quality?
Hey all,
I'm trying to develop an algorithm to provide a snow quality rating (from 1 - 5) for ski resorts on a per-day basis, both current day and upcoming (within the next 5 days). The objective is to quickly provide a perspective on if we're looking at concrete or fluffy conditions at Resort X, as well as to potentially help decide between different resorts: say resort X is supposed to get 8 wet inches but resort Y (30 minutes further) is supposed to get 8 soft inches, it's probably worth the extra drive time.
Data I have available per resort per day:
-temperature min/max
-freezing level (and the resort min/max elevations)
-snowfall / projected snowfall
-wind strength and direction
-whether it will be sunny/snowy/cloudy
I have some thoughts on how I could use these to create an algorithm, for example a great snow quality rating would have most of the following: cold temperatures (10 deg F and less), low wind (< 5mph), good FL, recent snow
A poor rating would be the opposite (say above 40 deg F, > 30mph winds, poor FL, no snow for > 3 days).
In an ideal world I could get a shitload of sample data where people have rated the snow quality 1-5 and run some linear regression on all the factors above and come up with a great algorithm, but for now I'm stuck to guesstimating. My plan is to come up with an initial model, then test and tweak throughout the season.
Any thoughts or feedback? What other weather factors do you use when predicting if the snow is going to be good or not?
Thanks