// 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

"CQD": The First International Distress Signal

#29 Science in History


01 February 1904


Today in 1904, “CQD” became the first international radio distress signal.

The history of maritime communication and distress signals dates to the early 19th century, when ships communicated with each other using flags, bells, and rockets. However, these signals were often ambiguous, and it was difficult for ships in distress to communicate their specific needs for help.


The “CQD” code was introduced by Marconi's wireless company. “CQ” had been in use as a call to “All Stations” or “Seeking You” but “D” was added to emphasise that it stood for a distress call – “All Stations, Distress” (possibly "Come Quickly, Danger". In 1905, the International Morse Code was introduced, which allowed ships to transmit messages using short and long tones which led, eventually, to the adoption of “SOS”


The change from "CQD" to "SOS" was made because the letters "SOS" were easy to recognize and remember, and they could be transmitted quickly and easily by Morse code. The three letters "SOS" were chosen because they are simple and easy to transmit, and they do not have any meaning in any language, making it an internationally recognized distress call.


The use of "SOS" as a distress call was first officially recognized in Berlin in 1906. Since then, it has become the standard distress call for ships and aircraft, and it is recognized by rescue services all over the world.


“CQD” wasn’t dropped immediately however – wireless operators still used it over the following years. Harold Bride and Jack Phillips, the wireless operators on the "Titanic," used both SOS and CQD distress signals on the night, in 1912, the ship fatally hit an iceberg.










bottom of page