Stellarium 0.15.2
|
Should be renamed as PlanetBasedObserver and derive from a more generical StelObserver class. More...
#include <StelObserver.hpp>
Public Member Functions | |
StelObserver (const StelLocation &loc) | |
Create a new StelObserver instance which is at a fixed Location. More... | |
virtual bool | update (double) |
Update StelObserver info if needed. More... | |
Vec3d | getCenterVsop87Pos (void) const |
Get the position of the home planet center in the heliocentric VSOP87 frame in AU. More... | |
double | getDistanceFromCenter (void) const |
Get the distance between observer and home planet center in AU. More... | |
Mat4d | getRotAltAzToEquatorial (double JD, double JDE) const |
returns rotation matrix for conversion of alt-azimuthal to equatorial coordinates For Earth we need JD(UT), for other planets JDE! To be general, just have both in here! More... | |
Mat4d | getRotEquatorialToVsop87 (void) const |
virtual const QSharedPointer< Planet > | getHomePlanet (void) const |
virtual const StelLocation & | getCurrentLocation () const |
Get the informations on the current location. More... | |
virtual bool | isObserverLifeOver () const |
Get whether the life of this observer is over, and therefore that it should be changed to the next one provided by the getNextObserver() method. More... | |
virtual bool | isTraveling () const |
Get whether the location is a moving one. More... | |
virtual StelObserver * | getNextObserver () const |
Get the next observer to use once the life of this one is over. More... | |
Protected Attributes | |
StelLocation | currentLocation |
QSharedPointer< Planet > | planet |
Should be renamed as PlanetBasedObserver and derive from a more generical StelObserver class.
Definition at line 37 of file StelObserver.hpp.
StelObserver::StelObserver | ( | const StelLocation & | loc | ) |
Create a new StelObserver instance which is at a fixed Location.
Vec3d StelObserver::getCenterVsop87Pos | ( | void | ) | const |
Get the position of the home planet center in the heliocentric VSOP87 frame in AU.
|
inlinevirtual |
Get the informations on the current location.
Definition at line 63 of file StelObserver.hpp.
double StelObserver::getDistanceFromCenter | ( | void | ) | const |
Get the distance between observer and home planet center in AU.
|
inlinevirtual |
Get the next observer to use once the life of this one is over.
Reimplemented in SpaceShipObserver.
Definition at line 73 of file StelObserver.hpp.
Mat4d StelObserver::getRotAltAzToEquatorial | ( | double | JD, |
double | JDE | ||
) | const |
returns rotation matrix for conversion of alt-azimuthal to equatorial coordinates For Earth we need JD(UT), for other planets JDE! To be general, just have both in here!
|
inlinevirtual |
Get whether the life of this observer is over, and therefore that it should be changed to the next one provided by the getNextObserver() method.
Reimplemented in SpaceShipObserver.
Definition at line 67 of file StelObserver.hpp.
|
inlinevirtual |
Get whether the location is a moving one.
Reimplemented in SpaceShipObserver.
Definition at line 70 of file StelObserver.hpp.
|
inlinevirtual |
Update StelObserver info if needed.
Default implementation does nothing. returns whether we actually changed the position.
Reimplemented in SpaceShipObserver.
Definition at line 48 of file StelObserver.hpp.