public void TestCoordinateToOrientation()
        {
            DateTime    date            = new DateTime(2018, 11, 15, 13, 00, 00, 00);
            Coordinate  testCoordinate  = new Coordinate(21.5, -14.5);
            Orientation testOrientation = CoordinateTransformation.CoordinateToOrientation(testCoordinate, RT_LAT, RT_LONG, RT_ALT, date);

            Assert.AreEqual(105, testOrientation.Azimuth);
            Assert.AreEqual(-90, testOrientation.Elevation);
        }