/usr/share/stellarium/scripts/messier_tour.ssc is in stellarium-data 0.15.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | //
// Name: Messier Objects Tour
// License: Public Domain
// Author: C. Gaudion, La Société Guernesiaise, Astronomy Section
// Description: A tour of Messier Objects
// load data array in inc file
include("common_objects.inc");
core.clear("deepspace");
core.wait(4);
ConstellationMgr.setFlagIsolateSelected(true);
LabelMgr.labelScreen("Stellarium Messier Object Tour",200,200,true,30,"#ff0000");
core.wait(5);
LabelMgr.deleteAllLabels();
for (i=0; i<messier.length; i++)
{
objName = messier[i];
core.selectObjectByName(objName, true);
StelMovementMgr.autoZoomIn(6);
core.wait(10);
StelMovementMgr.zoomTo(40,8);
core.wait(5);
}
LabelMgr.labelScreen("Stellarium Messier Object End of Tour",200,200,true,30,"#ff0000");
core.wait(5);
LabelMgr.deleteAllLabels();
|