public interface Star
| Modifier and Type | Field and Description |
|---|---|
static String |
COLOR
The color index shortcut.
|
static String |
DEC
The declination of the star shortcut.
|
static float |
DEFEPOCH
The default epoch (2000.0).
|
static float |
DEFEQUINOX
The default equinox (2000.0).
|
static String |
EPOCH
The epoch shortcut.
|
static String |
EQUINOX
The equinox shortcut.
|
static String |
ID
The identifier of the star shortcut.
|
static String |
MAG
The magnitude shortcut.
|
static String |
NAME
The name of the star shortcut.
|
static String |
PROPDEC
The declination of the star shortcut.
|
static String |
PROPRA
The proper motion in right ascension of the star shortcut.
|
static String |
RA
The right ascension of the star shortcut.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
get(String key)
Returns the queried value in its string representation of additional
info.
|
float |
getColor()
Returns the color of the star as a float.
|
double |
getDe()
Returns the declination of the star as a double in degrees.
|
float |
getEpoch()
Returns the epoch of the position coordinate system as a float.
|
float |
getEquinox()
Returns the equinox of the position coordinate system as a float.
|
int |
getID()
Returns the star id as an int.
|
float |
getMag()
Returns the magnitude of the star as a float.
|
String |
getName()
Returns the target name.
|
double |
getPropDe()
Returns the proper motion in declination of the star as a double.
|
double |
getPropRa()
Returns the proper motion in ra of the star as a double.
|
double |
getRa()
Returns the right ascension of the star as a double in degrees.
|
boolean |
isFullyValid()
Checks if ra, de, mag, color, pmra, and pmde are defined.
|
boolean |
isMarginallyValid()
Checks if at least the right ascension and the declination is valid.
|
boolean |
isValid()
Checks if ra, de, and mag of the star is defined.
|
boolean |
isVeryValid()
Checks if ra, de, mag, and color is defined.
|
static final String NAME
static final String ID
static final String RA
static final String DEC
static final String PROPRA
static final String PROPDEC
static final String EPOCH
static final String EQUINOX
static final String MAG
static final String COLOR
static final float DEFEPOCH
static final float DEFEQUINOX
Object get(String key)
String getName()
int getID()
double getRa()
double getDe()
double getPropRa()
double getPropDe()
float getEpoch()
float getEquinox()
float getMag()
float getColor()
boolean isMarginallyValid()
boolean isValid()
boolean isVeryValid()
boolean isFullyValid()