|
1 |
| -# Example Report |
| 1 | +--- |
| 2 | +toc: true |
| 3 | +--- |
2 | 4 |
|
3 |
| -Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. |
| 5 | +# Overview of Rocket Launches |
4 | 6 |
|
5 |
| -Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. |
| 7 | +This report is a brief overview of the history and current state of rocket launches and general space exploration. |
| 8 | + |
| 9 | +## Background |
| 10 | + |
| 11 | +The history of rocket launches dates back to ancient China, where gunpowder-filled tubes were used as primitive forms of propulsion. |
| 12 | + |
| 13 | +Fast-foward to the 20th century during the Cold War era, the United States and the Soviet Union embarked on a space race, a competition to innovate and explore beyond Earth. |
| 14 | + |
| 15 | +This led to the launch of the first artificial satellite, Sputnik 1, and the manned moon landing by Apollo 11. As technology advanced, rocket launches became synonymous with space exploration and satellite deployment. |
| 16 | + |
| 17 | +## Space Shuttle Era |
| 18 | +The late 20th century witnessed a significant milestone in rocket launches. |
| 19 | + |
| 20 | +```js |
| 21 | +const events = await FileAttachment("./data/spaceHistory.json").json(); // static file |
| 22 | +``` |
| 23 | + |
| 24 | +```js |
| 25 | +const timeline = Plot.plot({ |
| 26 | + insetTop: 30, |
| 27 | + insetBottom: 10, |
| 28 | + insetRight: 10, |
| 29 | + height: 250, |
| 30 | + x: { |
| 31 | + domain: d3.extent(events, d => d["year"]), |
| 32 | + label: "Year", |
| 33 | + nice: true |
| 34 | + }, |
| 35 | + y: { axis: null }, |
| 36 | + marks: [ |
| 37 | + Plot.axisX({ |
| 38 | + tickFormat: d3.format(".0f"), |
| 39 | + }), |
| 40 | + Plot.ruleX(events, { x: "year", y: "y", stroke: "#eee", strokeWidth: 2 }), |
| 41 | + Plot.ruleY([0], {stroke: "#eee"}), |
| 42 | + Plot.dot(events, {x: "year" , y: "y", fill: "currentColor", r: 5}), |
| 43 | + Plot.text( |
| 44 | + events, |
| 45 | + {x: "year", y: "y", text: "name", dy: -20, lineWidth: 10, fontSize: 12}), |
| 46 | + ] |
| 47 | +}); |
| 48 | +display(timeline); |
| 49 | +``` |
| 50 | + |
| 51 | +### Sputnik 1 (1957): |
| 52 | +This was the first artificial satellite. Launched by the Soviet Union, it marked the beginning of the space age. |
| 53 | + |
| 54 | +### Apollo 11 (1969): |
| 55 | +The historic Apollo 11 mission, led by NASA, marked the first successful human landing on the Moon. Astronauts Neil Armstrong and Buzz Aldrin became the first humans to set foot on the lunar surface. |
| 56 | + |
| 57 | +### Viking 1 and 2 (1975): |
| 58 | +NASA's Viking program successfully launched two spacecraft, Viking 1 and Viking 2, to Mars. These missions were the first to successfully land and operate on the Martian surface, conducting experiments to search for signs of life. |
| 59 | + |
| 60 | +### Space Shuttle Columbia (1981): |
| 61 | +The first orbital space shuttle mission, STS-1, launched the Space Shuttle Columbia on April 12, 1981. The shuttle program revolutionized space travel, providing a reusable spacecraft for a variety of missions. |
| 62 | + |
| 63 | +### Hubble Space Telescope (1990): |
| 64 | +The Hubble Space Telescope has provided unparalleled images and data, revolutionizing our understanding of the universe and contributing to countless astronomical discoveries. |
| 65 | + |
| 66 | +### International Space Station (ISS) Construction (1998-2011): |
| 67 | +The ISS, a collaborative effort involving multiple space agencies, began construction with the launch of its first module, Zarya, in 1998. Over the following years, various modules were added, making the ISS a symbol of international cooperation in space exploration. |
| 68 | + |
| 69 | +## Commercial Spaceflight |
| 70 | + |
| 71 | +After the Space Shuttle program, a new era emerged with a shift towards commercial spaceflight. |
| 72 | + |
| 73 | +Private companies like SpaceX, founded by Elon Musk in 2002, and Blue Origin, founded by Jeff Bezos in 2000, entered the scene. These companies focused on developing reusable rocket technologies, significantly reducing launch costs. |
| 74 | + |
| 75 | +SpaceX, in particular, achieved milestones like the first privately developed spacecraft to reach orbit (Dragon in 2010) and the first privately funded spacecraft to dock with the ISS (Dragon in 2012). |
| 76 | + |
| 77 | +## Recent Launch Activity |
| 78 | + |
| 79 | +The proliferation of commercial space companies has driven a surge in global launch activity within the last few years. |
| 80 | + |
| 81 | +SpaceX's Falcon 9 and Falcon Heavy, along with other vehicles from companies like Rocket Lab, have become workhorses for deploying satellites, conducting scientific missions, and ferrying crew to the ISS. |
| 82 | + |
| 83 | +The advent of small satellite constellations, such as Starlink by SpaceX, has further fueled this increase in launches. The push for lunar exploration has added momentum to launch activities, with initiatives like NASA's Artemis program and plans for crewed missions to the Moon and beyond. |
| 84 | + |
| 85 | +## Future |
| 86 | + |
| 87 | +As technology continues to advance and global interest in space exploration grows, the future promises even more exciting developments in the realm of rocket launches and space travel. |
| 88 | + |
| 89 | +Exploration will not only be limited to the Moon or Mars, but extend to other parts of our solar system such as Jupiter and Saturn's moons, and beyond. |
0 commit comments