Planetary Science

Neptune's Dark Spot

Storms on the windiest planet — features that appear and vanish over years

Neptune's atmosphere has dark spots — large storm systems similar to Jupiter's Great Red Spot but transient. The Great Dark Spot (Voyager 2, 1989) was Earth-sized but vanished by 1994. New ones form and dissipate over years. Despite being far from the Sun (30 AU), Neptune has the strongest winds in the solar system (~2100 km/h — supersonic).

  • Wind speedsUp to 2100 km/h (supersonic at -200°C)
  • Voyager 2 visit1989 — discovered Great Dark Spot
  • Great Dark Spot~13,000 × 6,500 km; vanished by 1994
  • New dark spotsHubble has tracked several over years
  • Distance30 AU (4.5 billion km)
  • Year length165 Earth years

Interactive visualization

Press play, or step through manually. The visualization is yours to drive — try it before reading on.

Open visualization fullscreen ↗

Watch the 60-second explainer

A condensed visual walkthrough — narrated, captioned, under a minute.

Neptune's atmosphere

PropertyValue
Composition~80% H, ~19% He, 1.5% CH₄, traces water/ammonia
Surface T (cloud tops)~-200°C (-330°F)
ColorBlue from methane absorbing red
Wind speed (max)~2100 km/h
Internal heat1.6× absorbed solar
Magnetic field~25× Earth's at surface

JavaScript — Neptune calculations

// Neptune's distance from Sun
const a_NEPTUNE = 30.07;  // AU
const T_NEPTUNE = Math.pow(a_NEPTUNE, 1.5);  // years
console.log(`Neptune year: ${T_NEPTUNE.toFixed(1)} years`);

// Solar flux at Neptune
const flux_neptune = 1361 / (a_NEPTUNE * a_NEPTUNE);
console.log(`Solar flux at Neptune: ${flux_neptune.toFixed(2)} W/m²`);
// ~1.5 W/m² — vs Earth's 1361

// Speed of sound at -200°C in H₂/He mix
function soundSpeed(T_K, M_kgPerMol = 0.002, gamma = 1.4) {
  const R = 8.314;
  return Math.sqrt(gamma * R * T_K / M_kgPerMol);
}

const T_neptune = 73;
const c_sound = soundSpeed(T_neptune, 0.0024, 1.4);  // ~hydrogen-like
console.log(`Sound speed: ${c_sound.toFixed(0)} m/s`);

const v_winds = 2100 / 3.6;  // m/s
console.log(`Wind speed: ${v_winds.toFixed(0)} m/s`);
console.log(`Mach number: ${(v_winds / c_sound).toFixed(2)}`);
// Above 1 — supersonic!

// Heat balance
const albedo_NEPTUNE = 0.290;
const absorbed = (1 - albedo_NEPTUNE) * flux_neptune / 4;
console.log(`Absorbed solar: ${absorbed.toFixed(3)} W/m²`);
const internal = absorbed * 0.6;  // additional internal heat
console.log(`Internal: ${internal.toFixed(3)} W/m²`);

Why Neptune storms matter

  • Atmospheric dynamics. Strongest winds in solar system on coldest gas giant.
  • Internal heat. Distant planet heated more than received from Sun.
  • Comparative planetology. Ice giant vs gas giant atmospheric differences.
  • Future missions. Strong scientific case for Neptune orbiter mission.
  • Exoplanet inferences. Many discovered exoplanets are Neptune-like (sub-Saturn).
  • Education. Voyager 2 legacy data still revealed.
  • Magnetic field. Dynamo physics of ice giants distinct from gas giants.

Common misconceptions

  • Distance means cold and quiet. Neptune is cold but extremely active.
  • Neptune is similar to Jupiter. Different — ice giant vs gas giant; different storm behaviors.
  • Great Dark Spot is permanent. Vanished after few years; not like Jupiter's GRS.
  • Neptune is ignored. Voyager 2 visited; Hubble continues observations.
  • Neptune has no internal energy. Radiates ~1.6× absorbed solar — significant interior heat.
  • Storm physics same as Jupiter. Different atmospheric composition, structure, dynamics.

Frequently asked questions

How can Neptune have such strong winds?

Despite weak sunlight (1/900 of Earth's), Neptune has internal heat (1.6× absorbed solar radiation) driving circulation. Atmospheric features show banding similar to Jupiter. Wind speeds reach 2100 km/h — faster than any other planet. Mechanism may include weaker drag, strong differential heating, or angular momentum transport from interior. Active research.

What was the Great Dark Spot?

A storm imaged by Voyager 2 in 1989 — Earth-sized vortex in southern hemisphere. Moved westward at ~325 m/s (~1170 km/h). Surrounding clouds suggested upwelling/condensation. By Hubble images in 1994, GDS had vanished (different from Jupiter's GRS, which persists for centuries).

Why don't Neptune storms last like Jupiter's?

Possibly Neptune's atmospheric dynamics — different banding, different convection. Or simply observation bias — we don't have continuous monitoring of Neptune (visited only by Voyager 2; Hubble images periodic). Several dark spots have been observed; their lifetimes ~years (vs Jupiter's centuries).

How are Neptune's storms studied today?

Hubble Space Telescope monitoring; James Webb is now observing. Ground-based adaptive optics (Keck, VLT) provide rare detailed views. New dark spot detected in 2018, 2023 — atmospheric activity ongoing despite Neptune's distance.

How is Neptune different from Jupiter?

Both have storms and bands. Neptune is "ice giant" (water, methane, ammonia ices) vs Jupiter "gas giant" (mostly H₂/He). Neptune is much smaller (3.9 Earth diameters vs Jupiter's 11). Neptune is colder, farther from Sun, has stronger differential heating between poles.

Has anything visited Neptune since Voyager?

NO! Only one mission ever visited Neptune (Voyager 2, brief flyby 1989). Subsequent observations from Hubble, ground telescopes. Future missions proposed (Trident, Neptune Odyssey) but none approved/funded yet. After Voyager 2 left, Neptune is essentially unobserved at close range.

What about Neptune's Triton?

Largest moon — captured Kuiper Belt object likely. Retrograde orbit (orbits backward relative to Neptune). Has thin nitrogen atmosphere, geysers. Fascinating world; only Voyager 2 has imaged it. See triton-retrograde concept.