forked from nasa-gcn/gcn.nasa.gov
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial commit of across missions overview (nasa-gcn#1723)
Co-authored-by: Leo Singer <[email protected]>
- Loading branch information
Showing
6 changed files
with
106 additions
and
3 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/*! | ||
* Copyright © 2023 United States Government as represented by the | ||
* Administrator of the National Aeronautics and Space Administration. | ||
* All Rights Reserved. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
import { GridContainer } from '@trussworks/react-uswds' | ||
|
||
import fermiHeroImage from './Fermi_Earth_GWs.jpg' | ||
import { Meatball } from '~/components/meatball/Meatball' | ||
import type { BreadcrumbHandle } from '~/root/Title' | ||
|
||
import fleet from './AstroFleetChart.png' | ||
|
||
export const handle: BreadcrumbHandle = { | ||
breadcrumb: 'Missions', | ||
} | ||
|
||
export default function () { | ||
return ( | ||
<> | ||
<img | ||
alt="Fermi satellite with a GRB in the background, both positioned over earth" | ||
src={fermiHeroImage} | ||
height="1184" | ||
width="3546" | ||
className="width-full height-auto" | ||
/> | ||
<GridContainer className="usa-section"> | ||
<h1>Mutimessenger missions</h1> | ||
<h3>Overview</h3> | ||
<p className="usa-paragraph"> | ||
The joint discovery of gravitational waves and electromagnetic | ||
radiation from the binary neutron star merger GW170817 was a watershed | ||
moment for astrophysics. NASA missions played a critical role in this | ||
discovery, from constraining the speed of gravity, to determining the | ||
site of heavy (r-process) element formation, to furthering our | ||
understanding of the formation and structure of relativistic jets. The | ||
recent detection of a neutrino correlated in space and time with a | ||
flare from gamma-ray blazar has also provided a tantalizing clue to | ||
the origin of high-energy cosmic neutrinos. These studies of | ||
astrophysical transients and time-domain and multimessenger phenomena | ||
are perhaps the most rapidly growing field of astrophysics, rich with | ||
opportunities for exciting discoveries. In the present/near-future, | ||
NASA is well-positioned to capitalize on the exciting scientific | ||
opportunities in time-domain and multimessenger astrophysics. As | ||
highlighted in the 2019 Astrophysics Senior Review of Operating | ||
Missions, the portfolio provides a suite of capabilities that is | ||
“greater than the sum of its parts”, and will contribute significantly | ||
to the major science questions in this field. | ||
</p> | ||
<figure> | ||
<img | ||
alt="a diagram depicting all the missions in the fleet over time shaped as a swirl" | ||
src={fleet} | ||
height="2160" | ||
width="3840" | ||
className="mobile:width-mobile width-tablet height-auto" | ||
/> | ||
<figcaption> | ||
The current NASA Astrophysics fleet, flying and in development. | ||
</figcaption> | ||
</figure> | ||
|
||
<figure className="bordered"> | ||
<blockquote> | ||
"The complementary nature of these missions makes the overall | ||
capability of the portfolio more than the sum of its parts, and many | ||
of the most exciting developments in contemporary astrophysics draw | ||
on observations from several of these observatories simultaneously." | ||
</blockquote> | ||
<figcaption> | ||
<Meatball className="height-auto width-5" /> | ||
2019 Astrophysics Senior Review, Executive Summary, Page 2 | ||
</figcaption> | ||
</figure> | ||
</GridContainer> | ||
</> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters