Skip to main content

linecast

Terminal weather, radar, solar arc, and tide visualizations. Pure Python, zero dependencies.

All data comes from free public APIs with no keys required.

linecast

Commands

weather — Current conditions, hourly braille temperature curve, 7-day forecast with color range bars, precipitation sparkline, natural language comparisons, and weather alerts for 36 countries. Available in 16 languages.

weather

sunshine — Solar arc inspired by the Apple Watch Solar Graph face. Shows the sun's position on its daily arc with sky color gradients, day length with daily delta, and moon phase.

sunshine — midday sunshine — dusk

tides — NOAA tide predictions rendered as a sunlight-shaded braille chart with scrollable multi-day window, current water level, high/low extremes with timestamps, and mouse hover tooltips.

tides

radar — Animated weather radar over a braille basemap. Powered by LibreWXR worldwide: real radar composites for North America (NOAA MRMS incl. Alaska/Hawaii, Environment Canada), Europe (OPERA, 24 countries), Japan, Taiwan and more, with model-derived precipitation filling the gaps everywhere else, 60 minutes of forecast frames, and 13 colour themes (Dark Sky by default; --theme rainbow, or press t in live mode to pick from a menu). Falls back automatically to NEXRAD via Iowa Environmental Mesonet (US) or RainViewer (global). Drag to pan anywhere in the world; the header names wherever you land ("23 mi NE of Boston" near shore, "Gulf of Maine" once offshore) from an offline Natural Earth index, and a crosshair marks the view centre. In the US, storm-based warning polygons (tornado red, severe thunderstorm yellow, flash flood green, marine orange, snow squall violet, emergencies magenta) are outlined over the echoes and rewind in sync with the radar timeline. Optional condition layers (--layers temp,wind, or press c/w in live mode) add a temperature tint beneath the geography and neutral wind arrows whose contrast tracks the speed — invisible in calm air, full text contrast in storm-force wind — sampled from Open-Meteo and time-synced to the displayed frame; rewinding the radar rewinds them too.

radar — Warri, Nigeria

Like the rest of linecast, radar speaks all 16 languages — here looping the forecast over Qingdao with --lang zh:

radar loop — Qingdao, Chinese UI

maps — Terrain and bathymetry, no weather at all. Hillshaded elevation from the AWS/Mapzen terrain tiles (SRTM, GMTED, ETOPO1) painted as a hypsometric ramp — lowland green through alpine white above sea level, deepening bathymetric blues below it — with the coastlines, borders, and city labels rendered in braille over the fill. Drag to pan, +/- to zoom, hover to read the elevation under the pointer.

All five launch in full-screen live mode by default when run in a terminal (auto-refreshing, with keyboard navigation). Use --print for a single static snapshot printed to stdout. When piped, --print behavior is automatic.

Install

pip install linecast

Or with a Homebrew tap:

brew tap ashuttl/linecast
brew install linecast

Usage

weather                          # current location via IP geolocation
weather --location "new york"    # search by place name (uses top result)
weather --location 44.54,-68.42  # specific coordinates
weather --search québec          # find coordinates by city name
weather --metric                 # metric units (°C, km/h, mm)
weather --celsius                # celsius only (wind/precip stay imperial)
weather --metric --fahrenheit    # °F with km/h and mm
weather --lang fr                # UI in French (also covers alert text when available)
# other language codes: es, de, it, pt, nl, pl, no, sv, is, da, fi, ja, ko, zh
weather --print                  # single static snapshot (no live mode)
sunshine                         # solar arc (live by default)
sunshine --print                 # static snapshot
sunshine --classic-colors        # use fixed-color (theme agnostic) sunshine gradient/palette

tides                            # nearest NOAA station (live by default)
tides --station "Bar Harbor"     # search by station name (uses first match)
tides --station 8413320          # specific station ID
tides --search "Bar Harbor"      # find stations by name
tides --metric                   # heights in meters instead of feet
tides --lang fr                  # UI in French
tides --print                    # static snapshot

radar                            # current location via IP geolocation
radar --location "chicago"       # search by place name
radar --location 41.88,-87.63    # specific coordinates
radar --search denver            # find coordinates by city name
radar --zoom 12                  # zoom out (degrees of latitude shown, default 6)
radar --theme rainbow            # colour theme (or press t in live mode)
radar --layers temp,wind         # temperature tint + wind arrows (or press c/w)
radar --print                    # static snapshot

maps                             # terrain around the current location
maps --location "Innsbruck"      # the Alps
maps --location 60.4,5.3 --zoom 8  # Norwegian fjords and the North Sea trench
maps --print                     # static snapshot

Language support

Use --lang or set LINECAST_LANG to switch the full UI into another language. This covers weather descriptions, day names, natural language comparisons, precipitation forecasts, and alert timing. Non-English languages also use 24-hour time.

Supported: English, French, Spanish, German, Italian, Portuguese, Dutch, Polish, Norwegian, Swedish, Icelandic, Danish, Finnish, Japanese, Korean, Chinese

All commands are also available under the linecast namespace if the short names conflict with other tools on your system:

linecast weather
linecast sunshine --print
linecast tides --station 8413320
linecast radar --theme rainbow

Shell completion

Generate shell completion from the CLI:

# Bash
source <(linecast completion bash)

# Zsh
source <(linecast completion zsh)

# Fish
linecast completion fish | source

This installs completions for both linecast <command> and standalone weather, tides, sunshine, and radar.

Weather alerts

Alerts are sourced automatically based on location from eight providers covering 36 countries:

  • US — National Weather Service
  • Canada — Environment and Climate Change Canada
  • China — China Meteorological Administration
  • Germany — Deutscher Wetterdienst (via BrightSky)
  • Ireland — Met Éireann
  • Japan — Japan Meteorological Agency
  • Norway — MET Norway
  • 29 European countries — MeteoAlarm (Austria, Belgium, Bulgaria, Croatia, Cyprus, Czechia, Denmark, Estonia, Finland, France, Greece, Hungary, Iceland, Italy, Latvia, Lithuania, Luxembourg, Malta, Netherlands, Poland, Portugal, Romania, Serbia, Slovakia, Slovenia, Spain, Sweden, Switzerland, UK)

Alert text comes from each national weather service in its native language. When available, alerts are served in your --lang preference.

Environment variables

Variable Description
WEATHER_LOCATION Default lat,lng for weather and radar (e.g., 44.54,-68.42)
TIDE_STATION Default NOAA station ID for tides (e.g., 8413320)
LINECAST_RADAR_THEME Default radar colour theme (same values as radar --theme; default dark-sky)
LINECAST_LIBREWXR_URL Base URL of a self-hosted LibreWXR instance for radar tiles (default https://api.librewxr.net)
TIDES_UNITS Set to metric for tide heights in meters (same as --metric)
LINECAST_LANG UI language, including alerts when available: en, fr, es, de, it, pt, nl, pl, no, sv, is, da, fi, ja, ko, zh
WEATHER_UNITS Set to metric for Celsius, km/h, and mm (same as --metric)
LINECAST_ICONS Set to emoji to use standard emoji instead of Nerd Font icons
LINECAST_COLOR Color mode: auto (default), truecolor, 256, 16, or none
LINECAST_THEME Theme input mode: auto (default) to query terminal colors, or classic / legacy / off for pre-theme palette behavior
LINECAST_THEME_TIMEOUT_MS OSC theme query timeout in milliseconds (default 100)
NO_COLOR Any non-empty value disables ANSI colors (standard convention)

Requirements

  • Python 3.10+
  • A terminal with ANSI color support (truecolor looks best; weather remains usable in low/no color)
  • A Nerd Font for best icon rendering (optional — use --emoji for standard emoji fallback)
  • macOS or Linux (uses termios for live mode)

Data sources

  • WeatherOpen-Meteo (forecast, geocoding, air quality); alerts from the US NWS, Environment Canada, Bright Sky (DWD), MET Norway, and Met Éireann
  • Tides — NOAA CO-OPS (US), Canadian Hydrographic Service, Queensland Open Data (AU), and TideCheck
  • Sunshine — computed locally from NOAA's solar position equations (no API)
  • Radar — global radar, forecast frames and colour themes by LibreWXR (data CC BY 4.0; aggregates NOAA MRMS, Environment Canada, EUMETNET OPERA, JMA, CWA, MET Malaysia and ECMWF-based model precipitation; set LINECAST_LIBREWXR_URL to use a self-hosted instance); fallbacks: NEXRAD via Iowa State University's Iowa Environmental Mesonet (US) and RainViewer; NWS storm-based warning polygons via IEM; basemap geography from Natural Earth

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

linecast-1.5.0.tar.gz (12.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

linecast-1.5.0-py3-none-any.whl (2.2 MB view details)

Uploaded Python 3

File details

Details for the file linecast-1.5.0.tar.gz.

File metadata

  • Download URL: linecast-1.5.0.tar.gz
  • Upload date:
  • Size: 12.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for linecast-1.5.0.tar.gz
Algorithm Hash digest
SHA256 5535e928932125d86c200a1bdfa54bcabb1e7abebe2d522d9267adbb121bab85
MD5 2709e47bff4d4353929281a659b01e27
BLAKE2b-256 e2a957d434c6511d8bb56fb245b537ae174916db282386b9a1f1c1bc8a69e453

See more details on using hashes here.

Provenance

The following attestation bundles were made for linecast-1.5.0.tar.gz:

Publisher: publish.yml on ashuttl/linecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file linecast-1.5.0-py3-none-any.whl.

File metadata

  • Download URL: linecast-1.5.0-py3-none-any.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for linecast-1.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0106120f7c29ed110a9079de093d51063e3a9944c1fdd92885a6634204cad286
MD5 bb0b9294228f4b7284c466d846775709
BLAKE2b-256 b07f82c9c84388a52950cdb3cdacad3e56f8772a107442d835588d04733e4158

See more details on using hashes here.

Provenance

The following attestation bundles were made for linecast-1.5.0-py3-none-any.whl:

Publisher: publish.yml on ashuttl/linecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

2.3.2

2 files

2.3.1

2 files

2.3.0

2 files

2.2.2

2 files

2.2.1

2 files

2.2.0

2 files

2.1.0

2 files

2.0.0

2 files

1.17.0

2 files

1.16.1

2 files

1.16.0

2 files

1.15.2

2 files

1.15.1

2 files

1.15.0

2 files

1.14.0

2 files

1.13.0

2 files

1.12.0

2 files

1.11.0

2 files

1.10.1

2 files

1.10.0

2 files

1.9.2

2 files

1.9.1

2 files

1.9.0

2 files

1.8.0

2 files

1.7.0

2 files

1.6.0

2 files

This release

1.5.0 This release

2 files

1.4.2

2 files

1.4.1

2 files

1.4.0

2 files

1.3.1

2 files

1.3.0

2 files

1.2.7

2 files

1.2.6

2 files

1.2.5

2 files

1.2.4

2 files

1.2.3

2 files

1.2.2

2 files

1.2.1

2 files

1.2.0

2 files

1.1.10

2 files

1.1.9

2 files

1.1.8

2 files

1.1.7

2 files

1.1.6

2 files

1.1.5

2 files

1.1.4

2 files

1.1.3

2 files

1.1.2

2 files

1.1.1

2 files

1.1.0

2 files

1.0.7

2 files

1.0.6

2 files

1.0.5

2 files

1.0.4

2 files

1.0.3

2 files

1.0.2

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page