Skyline.DataMiner.Empower.SatellitesDemo 1.0.0-preview

Prefix Reserved
This is a prerelease version of Skyline.DataMiner.Empower.SatellitesDemo.
dotnet add package Skyline.DataMiner.Empower.SatellitesDemo --version 1.0.0-preview                
NuGet\Install-Package Skyline.DataMiner.Empower.SatellitesDemo -Version 1.0.0-preview                
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="Skyline.DataMiner.Empower.SatellitesDemo" Version="1.0.0-preview" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Skyline.DataMiner.Empower.SatellitesDemo --version 1.0.0-preview                
#r "nuget: Skyline.DataMiner.Empower.SatellitesDemo, 1.0.0-preview"                
#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 Skyline.DataMiner.Empower.SatellitesDemo as a Cake Addin
#addin nuget:?package=Skyline.DataMiner.Empower.SatellitesDemo&version=1.0.0-preview&prerelease

// Install Skyline.DataMiner.Empower.SatellitesDemo as a Cake Tool
#tool nuget:?package=Skyline.DataMiner.Empower.SatellitesDemo&version=1.0.0-preview&prerelease                

Skyline.DataMiner.Empower.SatellitesDemo

About

This NuGet package is intended for use during an Empower demo. It provides an API to access dummy satellite data on a DataMiner system.

About the data

[!NOTE] This package it does not provide actual current satellite information.

Satellite information is read from a TLE text file assumed to be present in the local file system at C:\Skyline DataMiner\Documents\Empower\satellites.tle.txt. The satellite data is assumed to be retrieved from the CelesTrak Satellite TLE API on October 16th, 2023 at 13h28 UTC.

To avoid satellite decay errors when retrieving the position of a satellite, only the time of day from the provided DateTime is used and added as an offset. Therefore, the position will not match the real satellite position at that time.

About DataMiner

DataMiner is a transformational platform that provides vendor-independent control and monitoring of devices and services. Out of the box and by design, it addresses key challenges such as security, complexity, multi-cloud, and much more. It has a pronounced open architecture and powerful capabilities enabling users to evolve easily and continuously.

The foundation of DataMiner is its powerful and versatile data acquisition and control layer. With DataMiner, there are no restrictions to what data users can access. Data sources may reside on premises, in the cloud, or in a hybrid setup.

A unique catalog of 7000+ connectors already exist. In addition, you can leverage DataMiner Development Packages to build you own connectors (also known as "protocols" or "drivers").

Note See also: About DataMiner.

About Skyline Communications

At Skyline Communications, we deal in world-class solutions that are deployed by leading companies around the globe. Check out our proven track record and see how we make our customers' lives easier by empowering them to take their operations to the next level.

Getting Started

Retrieving satellites

using Satellites;

var satellites = SatelliteAPI.GetSatellites();

Getting satellite positions

var satellite = satellites[0];

// Get the position of the satellite at the current time
var currentPosition = satellite.GetPosition();

// Get the position of the satellite in one hour from now
var nextHour = DateTime.UtcNow.AddHours(1);
var nextHourPosition = satellite.GetPosition(nextHour);

Getting satellite positions periodically

This package contains a Trigger class to help you update satellite positions every second.

var trigger = new Trigger(() => {
	var updatedPosition = satellite.GetPosition();
	
	// Do something with the updated position
	...
});
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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.  net9.0 was computed.  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. 
.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
1.0.0-preview 88 2/27/2025