VOOZH about

URL: https://apify.com/fortuitous_pirate/snow-forecast-agent

โ‡ฑ Snow Forecast Weather Agent ยท Apify


Pricing

from $3.50 / 1,000 results

Go to Apify Store

Snow Forecast Weather Agent

Snow Forecast Weather Agent. Structured data export for lead generation, enrichment, and competitive research.

Pricing

from $3.50 / 1,000 results

Rating

0.0

(0)

Developer

๐Ÿ‘ Fortuitous Pirate

Fortuitous Pirate

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

1

Monthly active users

a month ago

Last modified

Share

Snow Forecast DataAgent

Continuously collects snow forecast data from NOAA Weather API for ski resorts to build historical forecast archive.

Why This Matters

Weather services don't archive their snow predictions. This DataAgent captures:

  • What snowfall was predicted for each resort
  • Temperature and wind forecasts
  • Data to analyze "powder day" prediction accuracy
  • Historical forecasts no one else has

Data Source: NOAA Weather API

Uses the free, official NOAA Weather API (api.weather.gov):

  • No API key required
  • 7-day forecasts
  • Quantitative snowfall predictions
  • Works for any US location (by lat/lon)

Note: NOAA doesn't cover international resorts. Whistler (Canada) coordinates work because NOAA provides forecasts near the border.

Input

ParameterDescriptionDefault
resortsArray of resort configs with lat/lonTop 11 North American resorts
forecastDaysDays ahead to capture (max 7)7
supabaseUrlOptional Supabase project URL-
supabaseKeyOptional Supabase anon key-

Resort Configuration Format

[
{"id":"vail","name":"Vail, Colorado","lat":39.6403,"lon":-106.3742},
{"id":"aspen","name":"Aspen, Colorado","lat":39.1911,"lon":-106.8175}
]

Priority Resorts (Default)

ResortStateElevation
VailColorado11,570 ft
AspenColorado11,212 ft
BreckenridgeColorado12,998 ft
Park CityUtah10,000 ft
AltaUtah10,550 ft
SnowbirdUtah11,000 ft
Jackson HoleWyoming10,450 ft
MammothCalifornia11,053 ft
Palisades TahoeCalifornia9,050 ft
KillingtonVermont4,241 ft
StoweVermont4,393 ft

Output Schema

{
"capturedAt":"2026-01-26T14:30:00Z",
"forecastDate":"2026-01-28T06:00:00Z",
"forecastDateLocal":"2026-01-28",
"daysAhead":2,
"resortId":"vail",
"resortName":"Vail, Colorado",
"latitude":39.6403,
"longitude":-106.3742,
"predictedSnowfall":6.5,
"snowProbability":80,
"temperature":28,
"temperatureUnit":"F",
"windSpeed":"10 to 15 mph",
"windDirection":"NW",
"shortForecast":"Snow",
"detailedForecast":"Snow, mainly after 11am. High near 28. Northwest wind 10 to 15 mph. Chance of precipitation is 80%. New snow accumulation of 5 to 8 inches possible.",
"source":"noaa"
}

Scheduled Runs

Run every 12 hours during ski season (November - April):

  • Cron: 0 0,12 * * *

Consider disabling May-October when snow forecasts aren't relevant.

Local Testing

cd /home/peteylinux/Projects/Apify/dataagents/snow-forecast-agent
npminstall
mkdir-p storage/key_value_stores/default
echo'{"resorts": [{"id": "vail", "name": "Vail", "lat": 39.6403, "lon": -106.3742}]}'> storage/key_value_stores/default/INPUT.json
npm start

Adding More Resorts

To find coordinates for a resort:

  1. Go to Google Maps
  2. Right-click on the resort base/village
  3. Click the coordinates to copy them
  4. Format: {"id": "resort-id", "name": "Resort Name", "lat": 39.1234, "lon": -106.5678}

NOAA API Notes

  • Rate limited: 500 requests/hour
  • Requires User-Agent header (included)
  • Returns GeoJSON format
  • May return 503 during high traffic (agent retries automatically)

You might also like

Weather Forecast

accelerationengg/weather-forecast

The Weather Forecast Scraper collects daily weather data for a city, including temperature, conditions, wind, humidity, precipitation, and UV index. It supports solar forecasting, trip planning, data dashboards, and research on weather and solar patterns.

192

5.0

Snow Peak Scraper

mshopik/snow-peak-scraper

Scrape Snow Peak and extract data on recreation from snowpeak.com. Our Snow Peak API lets you crawl product information and pricing. The saved data can be downloaded as HTML, JSON, CSV, Excel, and XML.

Open-Meteo Weather Scraper

gio21/open-meteo-scraper

Free weather data for any location using Open-Meteo public API. No API key required. Returns current conditions, hourly 24h forecast, or daily 7-day forecast. Temperature, wind, humidity, precipitation, weather code.