SharpAstrology.HumanDesign
0.1.0
See the version list below for details.
dotnet add package SharpAstrology.HumanDesign --version 0.1.0
NuGet\Install-Package SharpAstrology.HumanDesign -Version 0.1.0
<PackageReference Include="SharpAstrology.HumanDesign" Version="0.1.0" />
paket add SharpAstrology.HumanDesign --version 0.1.0
#r "nuget: SharpAstrology.HumanDesign, 0.1.0"
// Install SharpAstrology.HumanDesign as a Cake Addin #addin nuget:?package=SharpAstrology.HumanDesign&version=0.1.0 // Install SharpAstrology.HumanDesign as a Cake Tool #tool nuget:?package=SharpAstrology.HumanDesign&version=0.1.0
SharpAstrology.HumanDesign - A SharpAstrology package for the Human Design system
About
This package is part of the SharpAstrology project. It provides all the tools to calculate the common Human Design Body Graph.
Install
dotnet add package SharpAstrology.HumanDesign
Dependencies
The project uses SharpAstrology.Base. Include the SharpAstrology.SwissEph package, if you don't want to implement IEphemerides yourself. Be aware of the dual license of the swisseph project.
dotnet add package SharpAstrology.SwissEph
SharpAstrology.SwissEph will include SharpAstrology.Base automatically.
Examples
How to get chart information from a point in time?
using SharpAstrology.DataModels;
using SharpAstrology.Enums;
using SharpAstrology.Ephemerides;
using SharpAstrology.Interfaces;
// Using the IEphemerides implementation from SharpAstrology.SwissEph.
// Use swiss eph files or jpl files for more accuracy so that the results are in alignment with online HD chart calculators.
var ephemeridesService = new SwissEphemeridesService(ephType: EphType.Moshier);
using IEphemerides eph = ephemeridesService.CreateContext();
// Calculate the chart for January 1st 2024
//
// The given date must be in utc
var pointInTime = new DateTime(2024, 1, 1, 0, 0, 0, DateTimeKind.Utc);
// Calculate the chart
var chart = new HumanDesignChart(pointInTime, eph);
Console.WriteLine($"Type: {chart.Type}");
// Type: Generator
Console.WriteLine($"Profile: {chart.Profile.GetAsString()}");
// Profile: 1 / 3
Console.WriteLine($"Strategy: {chart.Strategy}");
// Strategy: Emotional
Console.WriteLine($"Split definition: {chart.SplitDefinition.GetAsString()}");
// Split definition: Split
Console.WriteLine("\nActive channels:");
foreach (var channel in chart.ActiveChannels)
{
Console.WriteLine($"\t{channel.ToGates()}");
}
// (Key29, Key46)
// (Key39, Key55)
Console.WriteLine("\nVariables:");
Console.WriteLine($"Digestion: {chart.Variables.Digestion.Orientation}, {chart.Variables.Digestion.Color.ToNumber()}-{chart.Variables.Digestion.Tone.ToNumber()}");
// Digestion: Left, 5-2
Console.WriteLine($"Perspective: {chart.Variables.Perspective.Orientation}, {chart.Variables.Perspective.Color.ToNumber()}-{chart.Variables.Perspective.Tone.ToNumber()}");
// Perspective: Left, 4-3
Console.WriteLine($"Environment: {chart.Variables.Environment.Orientation}, {chart.Variables.Environment.Color.ToNumber()}-{chart.Variables.Environment.Tone.ToNumber()}");
// Environment: Right, 4-1
Console.WriteLine($"Awareness: {chart.Variables.Awareness.Orientation}, {chart.Variables.Awareness.Color.ToNumber()}-{chart.Variables.Awareness.Tone.ToNumber()}");
// Awareness: Left, 3-1
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
-
net8.0
- SharpAstrology.Base (>= 0.8.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on SharpAstrology.HumanDesign:
Package | Downloads |
---|---|
SharpAstrology.HumanDesign.BlazorComponents
This package is part of the SharpAstrology project. It provides Blazor components to display Human Design Body Graph content. |
GitHub repositories
This package is not used by any popular GitHub repositories.