Add Juno mission file

This commit is contained in:
Ylva Selling
2023-05-11 16:53:06 -04:00
parent d06de8b9c0
commit 7d195cbe60
2 changed files with 48 additions and 0 deletions
@@ -1,3 +1,5 @@
asset.require("scene/solarsystem/missions/juno/mission")
local transforms = asset.require("scene/solarsystem/planets/jupiter/transforms")
local sun = asset.require("scene/solarsystem/sun/sun")
@@ -0,0 +1,46 @@
local Mission = {
Name = "Juno",
Image = "https://upload.wikimedia.org/wikipedia/commons/3/32/Juno_mission_insignia.svg",
Description = "On August 5, 2011, NASAs Juno spacecraft embarked on a 5-year journey to our solar system's largest planet the gas giant Jupiter. Its mission: to probe beneath the planet's dense clouds and answer questions about the origin and evolution of Jupiter, our solar system, and giant planets in general across the cosmos. Juno arrived at Jupiter on July 4, 2016, after a 5-year, 1.7-billion-mile journey, and settled into a 53-day polar orbit stretching from just above Jupiters cloud tops to the outer reaches of the Jovian magnetosphere.",
Milestones = {
{
Name = "Arrival at Jupiter",
Date = "2016 JUL 04 00:00:00",
Image = "https://www.nasa.gov/sites/default/files/styles/full_width_feature/public/thumbnails/image/pj41_full.gif" ,
Description = "On Dec. 24, 1968, Apollo 8 astronauts Frank Borman, Jim Lovell, and Bill Anders became the first humans to orbit the Moon, and the first to witness the magnificent sight called 'Earthrise'. As the spacecraft was in the process of rotating, Anders took this iconic picture showing Earth rising over the Moons horizon.",
}
},
Phases = {
{
Name = "Journey to Jupiter",
TimeRange = { Start = "2011 AUG 05 16:25:00", End = "2016 JUL 04 00:00:00" },
Description = "Juno arrived at Jupiter on July 4, 2016, after a five-year, 1,740-million-mile journey, and settled into a 53-day polar orbit stretching from just above Jupiters cloud tops to the outer reaches of the Jovian magnetosphere.",
Image = "https://d2pn8kiwq2w21t.cloudfront.net/original_images/jpegPIA22946.jpg",
Phases = {
{
Name = "Deep space maneuevers",
TimeRange = { Start = "2012 AUG 01 00:00:00", End = "2012 SEP 30 00:00:00"}
}
}
},
{
Name = "Mission",
TimeRange = { Start = "2016 JUL 04 00:00:00", End = "2021 AUG 01 00:00:00" },
Description = "Junos discoveries have revolutionized our understanding of Jupiter and solar system formation. During the prime missions 35 orbits of Jupiter, Juno collected more than three terabits (375 gigabytes) of science data and provided dazzling views of Jupiter and its satellites, all processed by citizen scientists with NASAs first-ever camera dedicated to public outreach. Junos many discoveries have changed our view of Jupiters atmosphere and interior, revealing an atmospheric weather layer that extends far beyond its clouds and a deep interior with a diluted, or 'fuzzy,' heavy element core. Near the end of the prime mission, as the spacecrafts orbit evolved, flybys of the moon Ganymede initiated Junos transition into a full Jovian system explorer.",
Image = "https://www.nasa.gov/sites/default/files/styles/full_width_feature/public/thumbnails/image/pia22692_hires.jpg"
},
{
Name = "Extended Mission",
TimeRange = { Start = "2021 AUG 01 00:00:00", End = "2025 Sep 01 00:00:00" },
Image = "https://www.nasa.gov/sites/default/files/styles/full_width_feature/public/thumbnails/image/pia25015.jpg"
}
}
}
asset.onInitialize(function()
openspace.loadMission(Mission)
end)
asset.onDeinitialize(function()
openspace.unloadMission(Mission.Name)
end)