private IGeoTransformation GetGeoTransformationToLv95(
            out esriTransformDirection direction)
        {
            IList <KeyValuePair <IGeoTransformation, esriTransformDirection> > transformations =
                SpatialReferenceUtils.GetPredefinedGeoTransformations(
                    _wgs84, _lv95);

            Assert.AreEqual(1, transformations.Count);

            IGeoTransformation transformation = transformations[0].Key;

            direction = transformations[0].Value;

            Console.WriteLine(@"{0} ({1})", transformation.Name, direction);

            return(transformation);
        }