diff --git a/data/scene/lodglobes/lodcallisto/lodcallisto.mod b/data/scene/lodglobes/lodcallisto/lodcallisto.mod index 7b2ce90f05..8aa1bda8f0 100644 --- a/data/scene/lodglobes/lodcallisto/lodcallisto.mod +++ b/data/scene/lodglobes/lodcallisto/lodcallisto.mod @@ -49,14 +49,15 @@ return { Name = "CallistoTrail", Parent = "JupiterBarycenter", Renderable = { - Type = "RenderableTrail", - Body = "CALLISTO", - Frame = "GALACTIC", - Observer = "JUPITER BARYCENTER", - RGB = { 0.4, 0.3, 0.01 }, - TropicalOrbitPeriod = 60 , - EarthOrbitRatio = 0.045, - DayLength = 9.9259, + Type = "RenderableTrailOrbit", + Translation = { + Type = "SpiceTranslation", + Body = "CALLISTO", + Observer = "JUPITER BARYCENTER", + }, + Color = { 0.4, 0.3, 0.01 }, + Period = 17, + Resolution = 1000 } - }, + } } diff --git a/data/scene/lodglobes/lodeuropa/lodeuropa.mod b/data/scene/lodglobes/lodeuropa/lodeuropa.mod index 6e81a4f224..cd32cdd332 100644 --- a/data/scene/lodglobes/lodeuropa/lodeuropa.mod +++ b/data/scene/lodglobes/lodeuropa/lodeuropa.mod @@ -44,19 +44,21 @@ return { }, } }, + -- Trail module { Name = "EuropaTrail", Parent = "JupiterBarycenter", Renderable = { - Type = "RenderableTrail", - Body = "EUROPA", - Frame = "GALACTIC", - Observer = "JUPITER BARYCENTER", - RGB = { 0.5, 0.3, 0.3 }, - TropicalOrbitPeriod = 60, - EarthOrbitRatio = 0.01, - DayLength = 9.9259, + Type = "RenderableTrailOrbit", + Translation = { + Type = "SpiceTranslation", + Body = "EUROPA", + Observer = "JUPITER BARYCENTER", + }, + Color = { 0.5, 0.3, 0.3 }, + Period = 85 / 24, + Resolution = 1000 } - }, + } } diff --git a/data/scene/lodglobes/lodganymede/lodganymede.mod b/data/scene/lodglobes/lodganymede/lodganymede.mod index 04c8a79216..be1bb1274c 100644 --- a/data/scene/lodglobes/lodganymede/lodganymede.mod +++ b/data/scene/lodglobes/lodganymede/lodganymede.mod @@ -49,14 +49,15 @@ return { Name = "GanymedeTrail", Parent = "JupiterBarycenter", Renderable = { - Type = "RenderableTrail", - Body = "GANYMEDE", - Frame = "GALACTIC", - Observer = "JUPITER BARYCENTER", - RGB = { 0.4, 0.3, 0.3 }, - TropicalOrbitPeriod = 60 , - EarthOrbitRatio = 0.019, - DayLength = 9.9259, + Type = "RenderableTrailOrbit", + Translation = { + Type = "SpiceTranslation", + Body = "GANYMEDE", + Observer = "JUPITER BARYCENTER", + }, + Color = { 0.4, 0.3, 0.3 }, + Period = 172 / 24, + Resolution = 1000 } - }, + } } diff --git a/data/scene/lodglobes/lodio/lodio.mod b/data/scene/lodglobes/lodio/lodio.mod index 75f4ade969..0deb7fae71 100644 --- a/data/scene/lodglobes/lodio/lodio.mod +++ b/data/scene/lodglobes/lodio/lodio.mod @@ -48,14 +48,15 @@ return { Name = "IoTrail", Parent = "JupiterBarycenter", Renderable = { - Type = "RenderableTrail", - Body = "IO", - Frame = "GALACTIC", - Observer = "JUPITER BARYCENTER", - RGB = { 0.4, 0.4, 0.2 }, - TropicalOrbitPeriod = 40 , - EarthOrbitRatio = 0.0045, - DayLength = 9.9259, + Type = "RenderableTrailOrbit", + Translation = { + Type = "SpiceTranslation", + Body = "IO", + Observer = "JUPITER BARYCENTER", + }, + Color = { 0.4, 0.4, 0.2 }, + Period = 42 / 24, + Resolution = 1000 } - }, + } } diff --git a/data/scene/lodglobes/lodjupiter/lodjupiter.mod b/data/scene/lodglobes/lodjupiter/lodjupiter.mod index 60d573616d..d8a50af4a5 100644 --- a/data/scene/lodglobes/lodjupiter/lodjupiter.mod +++ b/data/scene/lodglobes/lodjupiter/lodjupiter.mod @@ -59,14 +59,15 @@ return { Name = "JupiterTrail", Parent = "SolarSystemBarycenter", Renderable = { - Type = "RenderableTrail", - Body = "JUPITER BARYCENTER", - Frame = "GALACTIC", - Observer = "SUN", - RGB = { 0.8, 0.7, 0.7 }, - TropicalOrbitPeriod = 4330.595 , - EarthOrbitRatio = 11.857, - DayLength = 9.9259, + Type = "RenderableTrailOrbit", + Translation = { + Type = "SpiceTranslation", + Body = "JUPITER BARYCENTER", + Observer = "SUN", + }, + Color = { 0.8, 0.7, 0.7 }, + Period = 4330.595, + Resolution = 1000 } - }, + } } \ No newline at end of file diff --git a/data/scene/lodglobes/lodneptune/lodneptune.mod b/data/scene/lodglobes/lodneptune/lodneptune.mod index 20531b941b..9f3c9f854f 100644 --- a/data/scene/lodglobes/lodneptune/lodneptune.mod +++ b/data/scene/lodglobes/lodneptune/lodneptune.mod @@ -57,14 +57,15 @@ return { Name = "NeptuneTrail", Parent = "SolarSystemBarycenter", 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, + Type = "RenderableTrailOrbit", + Translation = { + Type = "SpiceTranslation", + Body = "NEPTUNE BARYCENTER", + Observer = "SUN", + }, + Color = {0.2, 0.5, 1.0 }, + Period = 60200, + Resolution = 1000 }, } } diff --git a/data/scene/lodglobes/lodsaturn/lodsaturn.mod b/data/scene/lodglobes/lodsaturn/lodsaturn.mod index 0754afee7c..6ce3287d0e 100644 --- a/data/scene/lodglobes/lodsaturn/lodsaturn.mod +++ b/data/scene/lodglobes/lodsaturn/lodsaturn.mod @@ -67,14 +67,15 @@ return { Name = "SaturnTrail", Parent = "SolarSystemBarycenter", Renderable = { - Type = "RenderableTrail", - Body = "SATURN BARYCENTER", - Frame = "GALACTIC", + Type = "RenderableTrailOrbit", + Translation = { + Type = "SpiceTranslation", + Body = "SATURN BARYCENTER", Observer = "SUN", - RGB = {0.85,0.75,0.51 }, - TropicalOrbitPeriod = 10746.94 , - EarthOrbitRatio = 29.424, - DayLength = 10.656, + }, + Color = {0.85,0.75,0.51 }, + Period = 10746.94, + Resolution = 1000 }, } } diff --git a/data/scene/lodglobes/loduranus/loduranus.mod b/data/scene/lodglobes/loduranus/loduranus.mod index 1539f2ab0c..9825a16459 100644 --- a/data/scene/lodglobes/loduranus/loduranus.mod +++ b/data/scene/lodglobes/loduranus/loduranus.mod @@ -57,14 +57,15 @@ return { Name = "UranusTrail", Parent = "SolarSystemBarycenter", Renderable = { - Type = "RenderableTrail", - Body = "URANUS BARYCENTER", - Frame = "GALACTIC", - Observer = "SUN", - RGB = {0.60,0.95,1.00 }, - TropicalOrbitPeriod = 30588.740 , - EarthOrbitRatio = 83.749, - DayLength = 17.24, + Type = "RenderableTrailOrbit", + Translation = { + Type = "SpiceTranslation", + Body = "URANUS BARYCENTER", + Observer = "SUN", + }, + Color = {0.60, 0.95, 1.00 }, + Period = 30588.740, + Resolution = 1000 }, } } diff --git a/data/scene/lodglobes/lodvenus/lodvenus.mod b/data/scene/lodglobes/lodvenus/lodvenus.mod index 3b3e3f58d1..ba6e050a33 100644 --- a/data/scene/lodglobes/lodvenus/lodvenus.mod +++ b/data/scene/lodglobes/lodvenus/lodvenus.mod @@ -62,14 +62,15 @@ return { Name = "VenusTrail", Parent = "SolarSystemBarycenter", Renderable = { - Type = "RenderableTrail", - Body = "VENUS", - Frame = "GALACTIC", - Observer = "SUN", - RGB = {1, 0.5, 0.2}, - TropicalOrbitPeriod = 224.695 , - EarthOrbitRatio = 0.615, - DayLength = 2802.0, + Type = "RenderableTrailOrbit", + Translation = { + Type = "SpiceTranslation", + Body = "VENUS BARYCENTER", + Observer = "SUN", + }, + Color = { 1.0, 0.5, 0.2 }, + Period = 224.695, + Resolution = 1000 }, } }