// StartMathJax Script window.MathJax = {loader: {load: [ 'input/asciimath', 'ui/lazy', 'output/chtml', 'ui/menu']} }; (function() { var script = document.createElement('script'); script.src = "https://cdn.jsdelivr.net/npm/mathjax@3/es5/startup.js"; script.async = true; document.head.appendChild(script); })(); ---------- (Different files) ---------- // UpdateTypeset Script config = { attributes: true, childList: true, subtree: true }; // Callback function to execute when mutations are observed callback = (mutationList, observer) => { for (mutation of mutationList) { if (mutation.type === 'childList') { console.log('A child node has been added or removed.'); MathJax.typeset(); } else if (mutation.type === 'attributes') { console.log(`The ${mutation.attributeName} attribute was modified.`); } } }; // Create an observer instance linked to the callback function observer = new MutationObserver(callback); document.onreadystatechange = () => { if (document.readyState === 'complete') { console.log("Loaded fully according to readyState") targetNode = document.getElementById('content-wrapper') console.log(targetNode) // Start observing the target node for configured mutations observer.observe(targetNode, config); } }
top of page

Venus Uncovered: The Mariner 10 Mission

Updated: Jul 21, 2023

#32 Science in History


05 February 1974


Today in 1974, Mariner 10 sends back information about Venus’s cloud cover.

Mariner 10 was launched by NASA in November 1973 with the objective of exploring the inner planets of our solar system. The NASA designed probe became the first spacecraft to visit the planet Mercury. Notably, it was also the first time a planet’s gravity was used to get to another planet, as well as the first time that a flyby of two planets had been accomplished during a single mission .


The Mariner 10 spacecraft made its closest approach to Venus on 5th February 1974 during the first of two flybys. The spacecraft was able to make detailed observations of the thick toxic atmosphere and showed that the surface of Venus is obscured by cloud cover. It also revealed the presence of sulfuric acid clouds, which are responsible for the planet's intense greenhouse effect and extremely high surface temperature. Despite the thick clouds, Mariner 10 also made limited observations of Venus's surface features, noting large volcanic plains, highlands, and impact craters. The craft also discovered that Venus doesn’t have a global magnetic field.





bottom of page