IO.Astrodynamics 1.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package IO.Astrodynamics --version 1.0.2
NuGet\Install-Package IO.Astrodynamics -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="IO.Astrodynamics" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add IO.Astrodynamics --version 1.0.2
#r "nuget: IO.Astrodynamics, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install IO.Astrodynamics as a Cake Addin
#addin nuget:?package=IO.Astrodynamics&version=1.0.2

// Install IO.Astrodynamics as a Cake Tool
#tool nuget:?package=IO.Astrodynamics&version=1.0.2

IO.SDK.Net

Presentation

Continous integration Continous deployment

IO.Astrodynamics.Net is a .Net astrodynamics framework based on IO.Astrodynamics native library.

It allows .Net developers to call IO.Astrodynamics high level features :

  • Load JPL Spice kernels
  • Compute and convert orbital parameters
    • State vector
    • Two lines elements
    • Equinoctial
    • Keplerian elements
  • Compute and convert coordinates system
    • Equatorial
    • Horizontal
    • Geodetic
  • Frame transformation
    • ICRF
    • Ecliptic
    • Body fixed frames
    • ITRF93 (High accuracy earth fixed frame)
  • Configure spacecraft
    • Clock
    • Fuel tank
    • Engines
    • Instrument
  • Spacecraft propagator
    • Impulsive maneuvers
    • Fuel balance
  • Impulse maneuvers :
    • Apogee height
    • Perigee height
    • Plane alignment
    • Combined maneuver
    • Apsidal alignment
    • Phasing
  • Attitudes
    • Instrument pointing toward an object
    • Nadir
    • Zenith
    • Prograde
    • Retrograde
    • Zenith
  • Surface site on any celestial body
  • Evaluate launch opportunities
  • Use or convert different time referential (TDB, UTC, Local)
  • Get celestial body information based on Naif kernels
  • Find time windows based on distance constraints from spacecraft, celestial body or ground site
  • Find time windows based on occultation constraints from spacecraft, celestial body or ground site
  • Find time windows based on coordinate constraints from spacecraft, celestial body or ground site
  • Find time windows based on illumination constraints from ground site.
  • Find time windows when an object is in instrument field of view.
  • Manipulate kernel files
  • Math tools
    • Vector
    • Matrix
    • Quaternion
    • Lagrange interpolation

Installation

This package is hosted by Nuget here. You can install it in your project with this command :

dotnet add package IO.Astrodynamics

Quick start

//LET'S GO !
//In this example we'll get the moon state vector in ICRF frame relative to the earth without aberration

//Load required kernels for computation
API.Instance.LoadKernels(new DirectoryInfo("/home/spacer/Sources/SDK.Net/IO.Astrodynamics.Tests/Data/SolarSystem"));

//Create moon object
var moon = new CelestialBody(PlanetsAndMoons.MOON.NaifId);

//Get moon ephemeris
var ephemeris = moon.GetEphemeris(DateTimeExtension.J2000, moon.InitialOrbitalParameters.CenterOfMotion, Frame.ICRF, Aberration.None).ToStateVector();

//Display some informations
Console.WriteLine($"Position : {ephemeris.Position.ToString()}");
Console.WriteLine($"Velocity : {ephemeris.Velocity.ToString()}");

//You should have the following result : 
// Position : Vector3 { X = -291608384.6334355, Y = -266716833.39423338, Z = -76102487.09990202 }
// Velocity : Vector3 { X = 643.5313877190328, Y = -666.0876840916304, Z = -301.32570498227307 }

You can find more advanced examples here

Documentation

For more information you can read the wiki

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.4 82 5/3/2024
3.0.3 86 4/30/2024
3.0.2 87 4/27/2024
3.0.1 88 4/26/2024
3.0.0 79 4/22/2024
2.2.0 83 4/17/2024
2.1.0 179 3/15/2024
2.0.0 159 3/8/2024
2.0.0-alpha 161 3/5/2024
1.10.0 293 2/2/2024
1.9.10 333 12/23/2023
1.9.2 371 12/5/2023
1.9.1 361 11/25/2023
1.9.0 311 11/22/2023
1.8.0 435 9/29/2023
1.7.0 547 7/31/2023
1.6.1 486 7/27/2023
1.6.0 546 7/24/2023
1.5.0 586 7/18/2023
1.4.0 568 7/16/2023
1.3.0 560 7/13/2023
1.2.0 551 7/11/2023
1.1.0 508 7/4/2023
1.0.2 588 7/3/2023