This is an old revision of the document!
Cubemap
Copy and paste the code below into a text editor (notepad for example)
Replace “C:/” with the path to the destination directory of your choice
Script to be placed in the “script” directory of stellarium. Your file must have the extension .ssc
Scripts can be launched in stellarium > general config > scripts tab.
StelMovementMgr.zoomTo(90, 0);
core.wait(1);
core.moveToAltAzi(0,0,0);
core.wait(1);
core.screenshot("cubemap_",false,"C:/");
core.moveToAltAzi(0,90,0);
core.wait(1);
core.screenshot("cubemap_",false,"C:/");
core.moveToAltAzi(0,180,0);
core.wait(1);
core.screenshot("cubemap_",false,"C:/");
core.moveToAltAzi(0,270,0);
core.wait(1);
core.screenshot("cubemap_",false,"C:/");
core.moveToAltAzi(89.99,0,0);
core.wait(1);
core.screenshot("cubemap_",false,"C:/");