GeoKinematics 2.0.2

Prefix Reserved
dotnet add package GeoKinematics --version 2.0.2
                    
NuGet\Install-Package GeoKinematics -Version 2.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="GeoKinematics" Version="2.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="GeoKinematics" Version="2.0.2" />
                    
Directory.Packages.props
<PackageReference Include="GeoKinematics" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add GeoKinematics --version 2.0.2
                    
#r "nuget: GeoKinematics, 2.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.
#:package GeoKinematics@2.0.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=GeoKinematics&version=2.0.2
                    
Install as a Cake Addin
#tool nuget:?package=GeoKinematics&version=2.0.2
                    
Install as a Cake Tool

GeoKinematics

it is a C# library that i designed using . Net 9.0. it performs calculations for (Earth center) models from Al-biruni Al-buzjani, Ibn-bajja and Newton (etc).

Documentation

I tried to design the library in a simpler and clearer way:

  • Geodesy & Earth Models: Earth Mathematical Models, Haversine Distance Formula, Earth Radius Calculations.

  • Islamic Golden Age Scholars: Al-Biruni (Earth Radius mountain method), Al-Buzjani (Spherical Trigonometry), Ibn-Bajja (Early Dynamics & Velocity).

  • Kinematics & Motion: Current Speed, Speed Limits, Acceleration Engine, Power House, Work Done, Collision Dynamics.

  • Newtonian Physics: Fundamental laws of motion implemented for .NET (Inertia, Force, Action/Reaction).


Some Examples

  1. Calculate the earth radius by (Al-biruni Method)
// example : meashuring earth from the iconic tower (in Egypt's New Administrative Capital)

double IconicTowerHeight = 385.8; 
double HorizonAngle = 0.629;

double radius = AlBiruni.CalculateEarthRadius(IconicTowerHeight, HorizonAngle);

Console.WriteLine(radius);
  1. Newton's Second Law (Force)
// example : calculate the total force needed to move an object

float carWeight = 1000f;
float acceleration = 2.5f;

float force = Newton.CalculatePush(carWeight, acceleration);
Console.WriteLine(force);
  1. Haversine Distance (Geodesy)
// example : calculate the distance between two points

double lat1 = 30.0444;
double lon1 = 31.2357;
double lat2 = 55.7558;
double lon2 = 37.6173;

double radius = RadiusEarthCenter.AverageRadius();

double distance = HaversineFormula.CalculateDistance(lat1 , lon1 , lat2 , lon2 , radius);
Console.WriteLine(distance);
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  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 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
2.0.2 99 5/16/2026
2.0.1 108 5/13/2026
2.0.0 130 5/12/2026
1.0.3 128 2/24/2026
1.0.1 114 2/12/2026
1.0.0 123 2/11/2026