Phantom trails

Bug #1248008 reported by Scott Christie
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
Stellarium
Fix Released
Medium
Guillaume Chereau

Bug Description

This is something I've reported in emails but not specifically a bug. There are phantom trail lines that show up that when you move the view they do not respond like the real trails. I was hoping this would be fixed because they distort my script when played.

// Setup display mode
 core.clear("natural");
 LandscapeMgr.setCurrentLandscapeName("Idehan Ubari");
 LandscapeMgr.setFlagCardinalsPoints(true);
 ConstellationMgr.setFlagLines(false);
 ConstellationMgr.setFlagLabels(false);
 ConstellationMgr.setFlagArt(false);
 SolarSystem.setFlagPlanets(true);
 SolarSystem.setFlagLabels(true);
 SolarSystem.setFlagTrails(true);
 StarMgr.setFlagLabels(true);

core.setSelectedObjectInfo ("None");
 core.setObserverLocation(44.33, 26.19, 00, 01, "Bagdad, Iraq");
 StelMovementMgr.zoomTo(90);
 core.setDate("-1:02:05T17:00:00");

core.selectObjectByName("Jupiter");
 StelMovementMgr.setFlagTracking(true);

core.moveToAltAzi(60, 90, 3);
 StelMovementMgr.zoomTo(120);
 StelMovementMgr.setFlagTracking(true);
 core.setProjectionMode("ProjectionEqualArea");

x = .25;
 core.setDate("-1:02:05T18:00:00");
 core.wait(x);
 core.setDate("-1:02:05T18:15:00");
 core.wait(x);
 core.setDate("-1:02:05T18:30:00");
 core.wait(x);
 core.setDate("-1:02:05T18:45:00");
 core.wait(x);
 core.setDate("-1:02:05T19:00:00");
 core.wait(x);
 core.setDate("-1:02:05T19:15:00");
 core.wait(x);
 core.setDate("-1:02:05T19:30:00");
 core.wait(x);
 core.setDate("-1:02:05T19:45:00");
 core.wait(x);
 core.setDate("-1:02:05T20:00:00");
 core.wait(x);
 core.setDate("-1:02:05T20:15:00");
 core.wait(x);
 core.setDate("-1:02:05T20:30:00");
 core.wait(x);
 core.setDate("-1:02:05T20:45:00");
 core.wait(x);
 core.setDate("-1:02:05T21:00:00");
 core.wait(x);
 core.setDate("-1:02:05T21:15:00");
 core.wait(x);
 core.setDate("-1:02:05T21:30:00");
 core.wait(x);
 core.setDate("-1:02:05T21:45:00");
 core.wait(x);
 core.setDate("-1:02:05T22:00:00");
 core.wait(x);
 core.setDate("-1:02:05T22:15:00");
 core.wait(x);
 core.setDate("-1:02:05T22:30:00");
 core.wait(x);
 core.setDate("-1:02:05T22:45:00");
 core.wait(x);
 core.setDate("-1:02:05T23:00:00");
 core.wait(x);
 core.setProjectionMode("ProjectionPerspective");
 core.wait(2);

core.selectObjectByName("Jupiter");
 StelMovementMgr.setFlagTracking(true);
 core.wait(2);
 StelMovementMgr.zoomTo(50);

// sidereal day length in solar days:
 sd = 0.99726955833;
 // get the current Julian Day
 jd = core.getJDay();
 // calculate end date as current jd + 100
 ed = jd + 100;
 core.debug("start jd is " + jd + ". I'm going to wait for about 100 days");
 while(jd <= ed) {
 jd += sd;
 core.setJDay(jd);
 core.debug("jd is now " + jd);
 core.wait(0.2);
 }

StelMovementMgr.zoomTo(10);
 core.setDate("-1:05:18T19:30:00");
 SolarSystem.setFlagTrails(true);
 SolarSystem.setFlagTrails(true);

// sidereal day length in solar days:
 sd = 0.99726955833;
 // get the current Julian Day
 jd = core.getJDay();
 // calculate end date as current jd + 29
 ed = jd + 29;
 core.debug("start jd is " + jd + ". I'm going to wait for about 29 days");
 while(jd <= ed) {
 jd += sd;
 core.setJDay(jd);
 core.debug("jd is now " + jd);
 core.wait(0.2);
 }

Tags: solar-system
Changed in stellarium:
status: New → Confirmed
tags: added: solar-system
Changed in stellarium:
assignee: nobody → Guillaume Chereau (guillaume-chereau)
Revision history for this message
Guillaume Chereau (guillaume-chereau) wrote :

Is this bug still valid? I cannot reproduce it.

Revision history for this message
Alexander Wolf (alexwolf) wrote :

Apparently you fixed it already (issue with projections)

Changed in stellarium:
milestone: none → 0.14.0
Changed in stellarium:
status: Confirmed → Fix Committed
importance: Undecided → Medium
Changed in stellarium:
status: Fix Committed → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.