1using System.Collections.Generic;
14 public string Name {
get;
set; }
34 public double Ecc {
get;
set; }
39 public double Axis {
get;
set; }
44 public double Incl {
get;
set; }
173 .Where(x => x.Name == name)
177 return (returnValue ==
null) ?
new BinaryData() { Name =
"NotFound" } : returnValue;
Holds information about binary star systems.
double Ecc
Eccentricity of the orbit.
double Incl
Orbital inclination.
double Period
Period of the orbit.
double EpochPeri
Epoch of the perihelion.
double LongPeri
Longitude of the perihelion.
string Name
Name of binary system.
double PANode
Position angle of the ascending node.
double Axis
Semi-major axis of the orbit.
Binary star system data manager.
static BinaryData GetBinaryInfo(string name)
Retrieve information about a specific binary star system.
static List< BinaryData > _binaryData