GrADS

1 program Added 2026-02-28T12:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Grid Analysis and Display System
Provenance: commit f1579b78b3 · authored 2026-02-28T13:23:23+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

NAPSS (0.21)Klerer-May System (0.19)Laning and Zierler System (0.18)GOTRAN (0.18)AADL (0.16)

LLM-contributed programs

Multi-level Wind and Temperature Plot

Provenance: commit f1579b78b3 · authored 2026-02-28T13:23:23+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.gs · added: 2026-02-28T12:00:00Z
* GrADS Script: Plot multi-level wind vectors and temperature
* Demonstrates loops, user-defined functions, and GrADS display commands

function plotlevel(lev)
  'set lev ' lev
  'set gxout shaded'
  'c'
  'd t'
  'set gxout vector'
  'd u;v'
  'draw title Temperature and Wind at ' lev ' hPa'
return

function main(args)
  'reinit'
  'open data.ctl'
  'set lon -180 180'
  'set lat -90 90'
  'set t 1'

  levels = '850 500 250'
  i = 1
  while (i <= 3)
    lv = subwrd(levels, i)
    rc = plotlevel(lv)
    'printim winds_' lv '.png x800 y600'
    say 'Plotted level ' lv ' hPa'
    i = i + 1
  endwhile

  say 'Done plotting all levels.'
return

Contribute — propose a file extension

Tell us where to find evidence about GrADS (mapped to pl/grads). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/GrADS/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Gradle Kotlin DSL Graffiti Markup Language →