mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-24 04:59:24 -06:00
64 lines
1.7 KiB
Modula-2
64 lines
1.7 KiB
Modula-2
return {
|
|
-- Charon module
|
|
{
|
|
Name = "Charon",
|
|
Parent = "PlutoBarycenter",
|
|
Renderable = {
|
|
Type = "RenderablePlanet",
|
|
Frame = "IAU_CHARON",
|
|
Body = "CHARON",
|
|
Geometry = {
|
|
Type = "SimpleSphere",
|
|
Radius = { 6.035 , 5 },
|
|
Segments = 100
|
|
},
|
|
Textures = {
|
|
Type = "simple",
|
|
Color = "textures/gray.jpg",
|
|
},
|
|
Atmosphere = {
|
|
Type = "Nishita", -- for example, values missing etc etc
|
|
MieFactor = 1.0,
|
|
MieColor = {1.0, 1.0, 1.0}
|
|
}
|
|
},
|
|
Ephemeris = {
|
|
Type = "Spice",
|
|
Body = "CHARON",
|
|
Reference = "ECLIPJ2000",
|
|
Observer = "PLUTO BARYCENTER",
|
|
Kernels = {
|
|
"${OPENSPACE_DATA}/spice/de430_1850-2150.bsp"
|
|
}
|
|
},
|
|
Rotation = {
|
|
Type = "Spice",
|
|
Frame = "IAU_CHARON",
|
|
Reference = "ECLIPJ2000"
|
|
},
|
|
GuiName = "/Solar/Planets/Charon"
|
|
},
|
|
|
|
-- CharonTrail module
|
|
{
|
|
Name = "CharonTrail",
|
|
Parent = "PlutoBarycenter",
|
|
Renderable = {
|
|
Type = "RenderableTrail",
|
|
Body = "CHARON",
|
|
Frame = "GALACTIC",
|
|
Observer = "PLUTO BARYCENTER",
|
|
RGB = {0.00,0.62,1.00},
|
|
TropicalOrbitPeriod = 120 ,
|
|
EarthOrbitRatio = 0.03,
|
|
DayLength = 1,
|
|
Textures = {
|
|
Type = "simple",
|
|
Color = "${COMMON_MODULE}/textures/glare_blue.png",
|
|
-- need to add different texture
|
|
},
|
|
},
|
|
GuiName = "/Solar/CharonTrail"
|
|
}
|
|
}
|