Class SatOrbitStateVector
Orbit state vector
Inheritance
System.Object
SatOrbitStateVector
Namespace: Stac.Extensions.Sat
Assembly: DotNetStac.dll
Syntax
public class SatOrbitStateVector : object
Constructors
| Improve this Doc View SourceSatOrbitStateVector(DateTime, Double[], Double[], Double[])
Initializes a new instance of the SatOrbitStateVector class.
Declaration
public SatOrbitStateVector(DateTime time, double[] position, double[] velocity, double[] acceleration)
Parameters
Type | Name | Description |
---|---|---|
DateTime | time | Time of the state vector |
System.Double[] | position | Position of the state vector |
System.Double[] | velocity | Velocity of the state vector |
System.Double[] | acceleration | Acceleration of the state vector |
Properties
| Improve this Doc View SourceAcceleration
Gets or sets acceleration of the state vector
Declaration
public double[] Acceleration { get; set; }
Property Value
Type | Description |
---|---|
System.Double[] | Acceleration of the state vector |
Position
Gets or sets position of the state vector
Declaration
public double[] Position { get; set; }
Property Value
Type | Description |
---|---|
System.Double[] | Position of the state vector |
Time
Gets or sets time of the state vector
Declaration
public DateTime Time { get; set; }
Property Value
Type | Description |
---|---|
DateTime | Time of the state vector |
Velocity
Gets or sets velocity of the state vector
Declaration
public double[] Velocity { get; set; }
Property Value
Type | Description |
---|---|
System.Double[] | Velocity of the state vector |