🌎
VSOP2013.NET
  • VSOP2013.NET
    • Quick Start
    • Change Logs
    • Requirements
  • VSOP2013
    • Original Readme
      • Introduction
      • Files Description
      • Terms of Series
      • Record Organization
        • Header Records
        • Terms Records
      • Time Scale and Reference System
      • Precision of the Series VSOP2013
      • Computation
      • Truncation of the Series
    • VSOP2013.f
    • VSOP2013.ctl
    • VSOP2013-secular.dat
  • API Reference
    • VSOP2013 Namespace
      • Calculator Class
        • GetVariable
        • GetVariableAsync
        • GetPlanetPosition
        • GetPlanetPositionAsync
      • Utility Class
        • MultiplyMatrix
        • XYZtoLBR
        • LBRtoXYZ
        • ELLtoXYZ
        • ELLtoLBR
        • DynamicaltoICRS
        • ICRStoDynamical
      • VSOPResult Class
        • VSOPResult_ELL Class
        • VSOPResult_XYZ Class
        • VSOPResult_LBR Class
      • VSOPTime Class
      • Data Structs
      • Enums
Powered by GitBook
On this page
  • Definition
  • Constructors
  • Properties
  • Methods
  1. API Reference
  2. VSOP2013 Namespace
  3. VSOPResult Class

VSOPResult_XYZ Class

PreviousVSOPResult_ELL ClassNextVSOPResult_LBR Class

Last updated 1 year ago

Definition

VSOP2013 calculate result represent in cartesian coordinate system.

public class VSOPResult_XYZ : VSOPResult

Constructors

public VSOPResult_XYZ(VSOPResult_ELL result)

Create a new cartesian result from elliptic result.

Parameters

result

Elliptic result


public VSOPResult_XYZ(VSOPResult_LBR result)

Create a new cartesian result from spherical result.

Parameters

Spherical result


Properties

double x {get;}

Position x (au)

double y {get;}

Position y (au)

double z {get;}

Position z (au)

double dx {get;}

Velocity x (au/day)

double dy {get;}

Velocity y (au/day)

double dz {get;}

Velocity z (au/day)


Methods

public VSOPResult_ELL ToELL()

Convert this result to elliptic coordinate.

public VSOPResult_LBR ToLBR()

Convert this result to spherical coordinate.

result

VSOPResult_ELL
VSOPResult_LBR