コード例 #1
0
        public void ToNorthLambert_Crtm05CoordinateSystem_Converted()
        {
            var latitude  = 1001163;
            var longitude = 463569;

            var northLambertCoordinateSystem = ConvertCoordinates.ToNorthLambert(new Crtm05CoordinateSystem(latitude, longitude));

            Assert.Equal(115744, Math.Round(northLambertCoordinateSystem.Latitude));

            Assert.Equal(500000, Math.Round(northLambertCoordinateSystem.Longitude));
        }