ADVERTISEMENT

Australia's Minjee Lee leads rain-delayed Women's Scottish Open with opening 67

Published Aug 16, 2024 05:23 am

At A Glance

  • Two-time major champion Minjee Lee of Australia managed a strong wind and caught a break with rare sunshine in a wet Scottish summer with a 5-under 67 on Thursday, Aug. 15, for a one-shot lead in the ISPS Handa Women's Scottish Open before play was stopped for the day.

IRVINE, Scotland (AP) — Two-time major champion Minjee Lee of Australia managed a strong wind and caught a break with rare sunshine in a wet Scottish summer with a 5-under 67 on Thursday, Aug. 15, for a one-shot lead in the ISPS Handa Women’s Scottish Open before play was stopped for the day.

AP24220467211515.jpg
Minjee Lee of Australia (AP)

Lydia Ko, coming off her Olympic gold medal that put her into the LPGA Hall of Fame, faced the worst of the weather at Dundonald Links and made five birdies in her round of 69.

Former U.S. Women’s Open champion A Lim Kim and American Megan Khang were at 68.

The opening round was suspended by bad weather and a water-logged course. Lily May Humphreys of England was at 4 under with six holes to play. Play was halted at the start for about an hour because of rain, and there was another weather delay of 2 hours, 20 minutes.

Lee is coming off a disappointing Olympics outside Paris when she was never in the hunt and wound up finishing in a tie for 22nd. She played bogey-free on a tough course, picking up birdies on both par 5s on the back nine.

“Always a happy girl after a bogey-free round,” Lee said. “I feel like I played smart golf, I’d say. I gave myself a lot of opportunities for birdie. I feel like when I was in trouble, I kind of missed it in the right spots and could get up-and-down, so that was good.”

Lee figures she caught a break not having to deal with the brunt of the rain, although there was no escaping the fierce wind.

Ko got the worst of both, describing the weather as so chaotic that she was too busy dealing with it to get overly stressed.

“If it’s just windy, it’s fine. But it was windy and rain,” Ko said. “It’s hard when you have to hold the umbrella sideways and not up. I’m pretty sure it was built for you to hold it like vertically. So it’s just very difficult out there.”

Ko managed a 69 despite making only one birdie on the par 5s. With the wind direction, both par 5s on the front were reachable. Still, she had no complaints given the weather.

“That’s just part of the experience of coming over. If you don’t like it, you’re probably not going to play that good, anyway,” Ko said. “So it’s just more about grinding it out and know that sometimes you’re not going to be on the fairer side of the draw. But that’s also part of playing tournaments over in this part of the world.”

Charley Hull of England was contending for the lead until a bogey on the par-5 14th slowed her momentum. She wound up in the group at 70 that included Esther Henseleit of Germany, who captured the silver medal at the Paris Games.

The tournament is the final stop before the Women’s British Open next week at St. Andrews.

ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.