public override bool CanGetUSNG(int srFactoryCode, out string coord) { coord = string.Empty; if (Point != null) { try { Project(srFactoryCode); var cn = Point as IConversionNotation; coord = cn.GetUSNGFromCoords(5, true, false); return true; } catch { } } return false; }