Scott Christie
2011-07-25
Running the new release, it looks like most of the bogus trails have
dissapeared except one. Can anyone run this script and see what's happening?
Thanks Scott
// 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);
}
Alexander Wolf
2011-07-25
This script show of trails of planets and asteroid
Bogdan Marinov
2011-07-25
Alex, campchristie means this bug:
https://bugs.launchpad.net/stellarium/+bug/724868
It hasn't been fixed yet.
Scott Christie
2011-07-26
Thanks.
Scott Christie
2011-10-25
Has there been any work on this or is it on the list for the next upgrade?
Thanks
Bogdan Marinov
2011-10-25
The only person who knows how that part of the graphics engine works is AWOL,
so not, no work has been done on it. He is expected to return later this year
(we hope).
Scott Christie
2012-03-19
Daggerstab, do you know if there's been any talk about fixing the bogus or
phantom planet trails with the graphics engine?
Thanks, Scott