Dataset Viewer
Auto-converted to Parquet Duplicate
ok
bool
feed_type
string
spot
dict
updated_at
timestamp[s]
source_status
string
source_note
string
air_temp_c
int64
water_temp_c
float64
wind_kmh
float64
gust_kmh
float64
swell_m
float64
period_s
float64
swell_direction_deg
int64
sea_state_m
float64
wind_wave_ratio
float64
sunrise
timestamp[s]
sunset
timestamp[s]
uv_index_max
float64
moon
dict
air_quality
dict
tide
dict
surf_potential_percent
int64
best_window
dict
beginner_verdict
string
advanced_verdict
string
routes
dict
true
compact_surf_forecast_summary
{ "key": "anchor-point", "name": "Anchor Point", "area": "North Taghazout", "route": "/weather/anchor-point/", "guide_route": "/surf-spots/anchor-point/" }
2026-08-16T16:00:00
live
Open weather and marine model data. Swell height and period are the decomposed swell components, separate from the total sea state. Tide height is modelled sea level relative to the modeled low point in this forecast window, not an absolute harbour-gauge or chart-datum measurement. Use local judgement before entering t...
26
21.6
11.2
18.4
0.66
8.4
327
0.84
0.595238
2026-08-16T07:06:00
2026-08-16T20:20:00
8.25
{ "age_days": 3.3, "illumination": 0.118, "phase": "waxing_crescent", "tide_range": "spring" }
{ "available": true, "pm2_5": 9, "pm10": 19.1, "dust": 3, "dust_peak_24h": 10, "dust_level": "clear", "pm_level": "good", "chergui": false, "updated": "2026-08-16T16:00:00", "stale": false, "source": "Open-Meteo Air Quality (CAMS)" }
{ "label": "Rising tide", "trend": "rising", "height_m": 2.53, "time": "16:00", "datum": "modelled sea level (Open-Meteo), relative to this window’s low" }
82
{ "label": "Mon 08:00", "score_percent": 82, "reason": "lighter wind · softer size · shorter period" }
Check coaching zone and tide first; conditions may be useful if size is manageable.
Worth checking if wind, period, tide and crowd fit the spot.
{ "weather": "/weather/anchor-point/", "surf_spot": "/surf-spots/anchor-point/", "book": "/build/?intent=surf&spot=anchor-point" }

Taghazout Surf Spots & Live Forecast Feed

A registry of 20 named surf breaks on the Taghazout–Tamraght–Agadir coast of Morocco, each mapped to a free, public, keyless JSON forecast endpoint.

Maintained by taghazout.io, a free surf forecast and trip planner run locally on that coast.

What's in here

taghazout-surf-spots.csv

The spot registry — one row per break:

Column Description
spot_key Stable identifier used by the feed (e.g. anchor-point)
spot_name Human name (e.g. Anchor Point)
area Sub-area of the coast (e.g. North Taghazout, Imsouane)
forecast_page Human-readable forecast page
feed_url Machine-readable JSON endpoint for that break

The 20 breaks: Taghazout Bay, Anchor Point, Hash Point, Panorama Point, La Source, Mysteries, Killer Point, Banana Point, Devil's Rock, Cro-Cro, KM11, KM12, Boilers, Dracula's, Tamri, Anza, Tamraght, Agadir Beach, Imsouane Bay, Imsouane Cathedral.

sample-feed-anchor-point.json

A real captured response from the live endpoint, so you can inspect the schema without making a request.

The live endpoint

GET https://taghazout.io/weather-data/_feed.php?loc=<spot_key>

No API key, no auth, no signup. Please cache for a few minutes — the underlying ocean models only update every few hours.

import pandas as pd, urllib.request, json

spots = pd.read_csv("taghazout-surf-spots.csv")

def current(spot_key: str) -> dict:
    url = f"https://taghazout.io/weather-data/_feed.php?loc={spot_key}"
    with urllib.request.urlopen(url, timeout=15) as r:
        return json.loads(r.read())

now = current("anchor-point")
print(now["spot"]["name"], now["swell_m"], "m @", now["period_s"], "s",
      "-", now["surf_potential_percent"], "% potential")

An MIT-licensed Python/JS client is available: taghazout-surf.

Response fields

Field Meaning
swell_m, period_s, swell_direction_deg Decomposed swell components
sea_state_m Total sea state (swell + wind wave) — not the same as swell_m
wind_wave_ratio Share of the sea state that is local wind chop
wind_kmh, gust_kmh Wind at the break
water_temp_c, air_temp_c Temperatures (a 3/2 mm wetsuit suits most of the year here)
surf_potential_percent 0–100 score for the current window
best_window Hours that earned today's score
beginner_verdict, advanced_verdict Plain-language read per level
tide Modelled sea level — see limitations
sunrise, sunset, uv_index_max, moon, air_quality Day context

Intended uses

  • Coastal and ocean data exploration, teaching examples
  • Surf-forecast tooling, bots and dashboards
  • Travel and tourism research on the Souss-Massa coast
  • Grounding factual answers about surf conditions at specific Moroccan breaks

Limitations (please read before using)

  • Modelled, not observed. Values come from numerical ocean and weather models, not from buoys or gauges on this coast.
  • Tide height is modelled sea level relative to the low point of the forecast window. It is not a harbour-gauge or chart-datum measurement, and must not be used for navigation.
  • Offshore models under-resolve shallow reef points. The site's own pages show a confidence flag when Open-Meteo and NOAA WaveWatch III disagree; in testing, WaveWatch has read up to ~55% higher than Open-Meteo at the same hour and location. This feed serves the blended read.
  • Not a safety instrument. Use local judgement before entering the water.

Source data & attribution

Derived from open model data:

  • Weather and marine data by Open-Meteo.com — CC BY 4.0
  • Wave model NOAA WaveWatch III, accessed via PacIOOS

The spot registry (names, areas, keys, routing) is original work by taghazout.io and is released here under CC BY 4.0. If you redistribute derived values, carry the Open-Meteo and NOAA attribution with them.

Citation

@misc{taghazout_surf_spots_2026,
  title  = {Taghazout Surf Spots and Live Forecast Feed},
  author = {{taghazout.io}},
  year   = {2026},
  url    = {https://taghazout.io/weather/},
  note   = {Weather data by Open-Meteo (CC BY 4.0); wave model NOAA WaveWatch III via PacIOOS}
}
Downloads last month
9