public void MercatorProjection_Test_Simple()
        {
            Point p = new Point(0, 0);

            MercatorProjection proj = new MercatorProjection();
            Point mercPoint         = proj.Convert(p);

            int stop = 0;
        }