/* * Yubeshi GPS Parser * * This software is distributed under a zlib-style license. * See license.txt for more information. */ using System; using System.Collections.Generic; using System.Text; using Yubeshi; namespace YubeshiTest { public class SampleCoordinates { public static readonly GeodeticCoordinate SkytreeTop = new GeodeticCoordinate(35.710139, 139.810833, new Height(640.0, Height.Base.Geoid)); public static readonly GeodeticCoordinate SkytreeBottom = new GeodeticCoordinate(35.710139, 139.810833, new Height(6.0, Height.Base.Geoid)); public static readonly GeodeticCoordinate TokyoTowerTop = new GeodeticCoordinate(35.658611, 139.745556, new Height(351.0, Height.Base.Geoid)); } }