Files
OpenSpace/data/scene/neptune/neptune.mod

67 lines
1.8 KiB
Modula-2

return {
-- Neptune barycenter module
{
Name = "NeptuneBarycenter",
Parent = "SolarSystemBarycenter",
Ephemeris = {
Type = "Static"
}
},
-- Neptune module
{
Name = "Neptune",
Parent = "NeptuneBarycenter",
Renderable = {
Type = "RenderablePlanet",
Frame = "IAU_NEPTUNE",
Body = "NEPTUNE BARYCENTER",
Geometry = {
Type = "SimpleSphere",
Radius = { 2.4622 , 7 },
Segments = 100
},
Textures = {
Type = "simple",
Color = "textures/neptune.jpg",
},
},
Ephemeris = {
Type = "Spice",
Body = "NEPTUNE BARYCENTER",
Reference = "ECLIPJ2000",
Observer = "SUN",
Kernels = {
"${OPENSPACE_DATA}/spice/de430_1850-2150.bsp"
}
},
Rotation = {
Type = "Spice",
Frame = "IAU_NEPTUNE",
Reference = "ECLIPJ2000"
},
GuiName = "/Solar/Planets/Neptune"
},
-- NeptuneTrail module
{
Name = "NeptuneTrail",
Parent = "NeptuneBarycenter",
Renderable = {
Type = "RenderableTrail",
Body = "NEPTUNE BARYCENTER",
Frame = "GALACTIC",
Observer = "SUN",
RGB = {0.2, 0.5, 1.0 },
TropicalOrbitPeriod = 59799.9 ,
EarthOrbitRatio = 163.73,
DayLength = 16.11,
Textures = {
Type = "simple",
Color = "${COMMON_MODULE}/textures/glare_blue.png",
-- need to add different texture
},
},
GuiName = "/Solar/NeptuneTrail"
}
}