Latitude button

Asked by Paul

Would it be possible to add a function that allows us to increase and decrease the latitude without jumping to an interface window? Meaning: I am at my default lat/long gazing at Polaris. I would like to now walk to the equator and show how the star changes position. After observing the stars from the equator I would like to walk to the north pole and watch how the star changes position. The scenery doesn't need to change, the ground can stay as it is, it would just be nice not to have to bring up the window to choose a location, instantly jump to that location, then turn off the window (kinda destroys the illusion).

Would that be possible? Or, am I missing that function because I haven't upgraded to 0.15.0 because of my other question?

Thanks for all your help. Stellarium ROCKS!
Paul Larson

Question information

Language:
English Edit question
Status:
Answered
For:
Stellarium Edit question
Assignee:
No assignee Edit question
Last query:
Last reply:
Revision history for this message
Alexander Wolf (alexwolf) said :
#1

You can use for this demo:
1) Graphics user interface, as you found before
2) Text user interface (activated through Alt+T)
3) Web interface (see plugin Remote Control)
4) through scripting engine (Scripting Console available via F12 )

Revision history for this message
gzotti (georg-zotti) said :
#2

(3) Web interface starting with with 0.15 only.
ad (4) Scripting: write two scripts increaseLat, decreaseLat and assign them to hotkeys.

Revision history for this message
Khalid AlAjaji (kajaji) said :
#3

Sample script to increase latitude by 5 degrees:

// get location info and extract latitude
LocData = core.getObserverLocationInfo()
;
// extract Latitude
CurLat = LocData["latitude"];
CurLon = LocData["longitude"];
CurAlt = LocData["altitude"];
CurName = LocData["name"];
CurPlanet = LocData["planet"];

CurLat = CurLat + 5;
if (CurLat > 90)
{
 CurLat = 90
}

y = core.getScreenHeight()
LabelMgr.deleteAllLabels();
txt1 = LabelMgr.labelScreen("Current Latitude is " + Math.floor(CurLat), 150, y - 150, false, 20, "#0080FF");
LabelMgr.setLabelShow(txt1, true);

core.setObserverLocation(CurLon, CurLat, CurAlt, 1, "upNorth", CurPlanet);

Can you help with this problem?

Provide an answer of your own, or ask Paul for more information if necessary.

To post a message you must log in.