Snow Farm Snow Report

MOUNTAIN:

Open

We are open. Some cloud with light winds. 2cm of snow to top up the trails yesterday. Current temperature is 0 degrees. Should be able to get some classic tracks in highlander and Merino.

ROAD:

Open

Chains on 2WDs from chain bay 4. Due to the conditions we’ve had the middle section of the road is very soft, muddy and rutted. Icy up the top section. Please carry chains and follow directions if conditions change.

Forecast

Light winds and overcast, temperatures holding at 0 degrees.

SNOW

2cm of snow from yesterday, Ginzu grooming highlander and Merino Glen with classic tracks. Snowshoeing only to huts as River Run is patchy and icy currently.

AcTIVITIES

Cross Country Ski Trails
Open
Snow Fun Zone
Open
Backcountry Huts
Open
Snow Shoeing
Open

Trail Status

Mary's Trail
Closed
Highlander
Groomed
Merino Glen
Groomed
River Run
Open
The Loop
Closed
Toms Track
Open
Dog Loop
Closed
2006
Closed
Sprint Track
Closed
D9 Express
Closed
Whoopity Doo
Closed
Hanging Valley
Closed
Spur Connector
Closed
Tranquility
Closed
Gorge Trail
Closed
Musterers flat
Closed
Kirsty Burn
Closed
Top Beat
Closed
sun-cloud
sun-cloud
const getWeather = async () => { // Get the Divs to change var icon = document.querySelector('.current-icon i'); var forecastIcon = document.querySelector('.forecast-icon i'); // Set the classname from a dynamic field (hidden div) var updateIcon = document.getElementById("current-icon-text").textContent.replace(/[\n\r]+|[\s]{2,}/g, '').toLowerCase(); icon.classList.remove("fa-cloud-sun"); icon.classList.add("fa-"+updateIcon); forecastIcon.classList.remove("fa-cloud-sun"); forecastIcon.classList.add("fa-"+updateIcon); } getWeather();