public void WorldMillerCylindricalProjectionForwardTest()
        {
            // expected values were generated with OSGeo Proj.4 (https://github.com/OSGeo/proj.4/wiki)
            GeoCoordinate input    = new GeoCoordinate(Angle.FromDegree(30), Angle.FromDegree(-110));
            Coordinate    expected = new Coordinate(Length.FromMetre(-2226389.81587).Value, Length.FromMetre(3441760.13671).Value);
            Coordinate    actual   = _projection.Forward(input);

            Assert.AreEqual(expected.X, actual.X, 0.00001);
            Assert.AreEqual(expected.Y, actual.Y, 0.00001);
        }