This NuGet package is intended for use during an Empower demo. It provides an API to access dummy satellite data on a DataMiner system.
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.
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.
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.
using Satellites;
var satellites = SatelliteAPI.GetSatellites();
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);
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
...
});