Connect with us

Maine

Veterans of USS Samuel B Roberts 1988 mine strike reunite in Maine

Published

on

Veterans of USS Samuel B Roberts 1988 mine strike reunite in Maine


Veterans of USS Samuel B Roberts 1988 mine strike reunite in Maine

Advertisement

STUFF DONE. GO DOWN THERE AND KICK BUTT.” THE MAINE DEMOCRATIC PRIMARY IS SCHEDULED FOR JUNE NINTH. VETERANS OF THE 1988 PERSIAN GULF MINE STRIKE ARE NOW REUNITING HERE IN MAINE. THE BATH IRON WORKS BUILT SHIP SUFFERED MAJOR DAMAGE AFTER HITTING AN IRANIAN MINE ON APRIL 14 1988. TONIGHT CATE MCCUSKER SHARES THE HEROIC ACTIONS OF THE CREW AND THE BROTHERHOOD THAT REMAINS TODAY. TUESDAY MARKS 38 YEARS SINCE A SHIP BUILT BY BATH IRON WORKS DEFIED ALL ODDS – AND SURVIVED A DANGEROUS STRIKE IN THE PERSUAN GULF…THANKS TO THE BRAVE EFFORTS OF ITS CREW. “ON OUR WAY BACK THAT WAY FROM THE MINEFIELD, AND WE HIT ONE OF THE MINES.” WHILE ON A MISSION IN THE PERSIAN GULF – DURING THE IRAN-IRAQ WAR – THE USS SAMUEL B ROBERTS STRUCK AN IRANIAN MINE “I WAS FREAKING OUT, YOU KNOW, I’M 19. NEVER GOING TO GET MARRIED, NEVER GOING TO SEE MY FAMILY AGAIN.” THE DAMAGE WAS DRASTIC – LEAVING A MASSIVE HOLE IN THE HULL OF THE SHIP – BUT THE CREW JUMPED INTO ACTION… “OUR TRAINING KICKED IN AND EVERYBODY DID WHAT THEY HAD TO DO, WHATEVER THEIR JOB WAS. FOR ME PERSONALLY, I ONLY KIND OF HESITATED AT ONE TIME, WONDERING WHAT MY WIFE WAS THINKING AT THE TIME, AND I PUSHED THAT ASIDE AND THEN WENT TO WORK. MIRACULOUSLY – EVERYONE ON BOARD SURVIVED – AND ONLY TEN PEOPLE WERE INJURED… WE FOUGHT FIRES AND FLOODING FOR ABOUT FIVE HOURS OR BETTER. THE MINE BLAST HIT US ON THE PORT SIDE, BROKE THE KEEL OF THE SHIP AND CRACKED THE SUPERSTRUCTURE ALL THE WAY AROUND. YEARS LATER – THE GROUP FREQUENTLY REUNITES… FOREVER BONDED BY THE TRAUMA AND BROTHERHOOD OF THAT MOMENT. THIS TIME THEY’VE RETURNED TO BATH – WHERE THE USS SAMUEL ROBERTS WAS BUILT… ” EACH SHIP HAS A MOTTO. OURS WAS NO HIGHER HONOR.” THIS SHIP MEANS SO MUCH TO US. AND AS THE US IS CURRENTLY ENGAGED IN A WAR WITH IRAN – WHERE MEMBERS OF THE MILITARY ARE ALSO ENCOUNTERING DANGEROUS SITUATIONS IN THAT AREA OF THE WORLD… VETERANS OF THE 1988 PERSIAN GULF MINE STRIKE SAY…

Advertisement

Veterans of USS Samuel B Roberts 1988 mine strike reunite in Maine

Updated: 10:31 PM EDT Apr 10, 2026

Editorial Standards

Advertisement

Veterans of the USS Samuel B Roberts are reuniting in Maine this weekend.Tuesday marks 38 years since the ship struck an Iranian mine in the Persian Gulf.“Our training kicked in, and everybody did what they had to do,” crewmember Brad Gutcher said. “We fought fires and flooding for about five hours. The mine blast hit us on the port side, broke the keel of the ship, and cracked the structure all the way around.”Everyone on board survived, and they now meet every few years for remembrance and camaraderie. This year, the reunion is held in Bath, as the USS Samuel B Roberts was built by Bath Iron Works.“Each ship has a motto. Ours was no higher honor,” crewmember Shane Deitert said. “This ship means so much to us.”

Veterans of the USS Samuel B Roberts are reuniting in Maine this weekend.

Tuesday marks 38 years since the ship struck an Iranian mine in the Persian Gulf.

Advertisement

“Our training kicked in, and everybody did what they had to do,” crewmember Brad Gutcher said. “We fought fires and flooding for about five hours. The mine blast hit us on the port side, broke the keel of the ship, and cracked the structure all the way around.”

Everyone on board survived, and they now meet every few years for remembrance and camaraderie. This year, the reunion is held in Bath, as the USS Samuel B Roberts was built by Bath Iron Works.

“Each ship has a motto. Ours was no higher honor,” crewmember Shane Deitert said. “This ship means so much to us.”

Advertisement
Advertisement

`;
}

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

Advertisement

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

var location = { zip: window.DEFAULT_ZIPCODE };

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

Advertisement

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.wmtw.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.wmtw.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

Advertisement

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

Advertisement

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

Advertisement

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

`;
}

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

Advertisement

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

var location = { zip: window.DEFAULT_ZIPCODE };

Advertisement

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

Advertisement

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.wmtw.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.wmtw.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

Advertisement

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

Advertisement

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

Loading more articles…



Source link

Advertisement

Maine

Wet, cooler today; rain & snow impacts across Maine

Published

on

Wet, cooler today; rain & snow impacts across Maine


BANGOR, Maine (WABI) – Good morning and Happy Sunday everyone. Skies are cloudy with fog across much of Maine this morning. Rain has entered locations along the interstate and to the northwest. Temperatures vary from the upper 30s to mid 40s. Winds are out of the SE between about 5-15 mph.

Today will be a wet and impactful day with rain and even snow anticipated as a large cold front passes through Maine. Skies will be cloudy with plenty of fog lasting through the morning. Rain will expand across the interstate by the late morning hours, reaching Downeast locations by midday/the early afternoon.

By the early to midafternoon, temperatures will start to drop across northwestern locations as the cold front passes through Maine. This will result in rain turning over to mixed precipitation and eventually snow across the Western Mountains, Moosehead region, and Northern Maine. Rain will continue steadily and at times heavily across the foothills, Interstate, Coast, and Downeast. A few thunderstorms are even possible closer to the coast.

Snow will expand across areas to the northwest of the interstate this evening, reaching all the way down to Interior Midcoast communities, the Bangor region, and Interior Downeast areas by sunset and into the start of the night. Precipitation will taper off across Western Maine shortly after sunset, before exiting the entire state around midnight tonight. High temps today will vary from the low 40s to low 50s with SSE to NW gusts reaching 20-25 mph.

Advertisement
WABI Weather 4/19/26 AM(WABI)

Snowfall totals will vary under 2 inches across Western, Northern, and Interior Downeast locations. However, a few pockets of 2-4 inches are possible, mostly in higher elevations across the mountains. Rainfall totals will accumulate around a half inch to three quarters of an inch when all is said and done.

WABI Weather 4/19/26 AM
WABI Weather 4/19/26 AM(WABI)
WABI Weather 4/19/26 AM
WABI Weather 4/19/26 AM(WABI)

Precipitation will be out of Maine by midnight tonight, with cloudy conditions giving way to mostly clear skies by sunrise. Lows overnight will dip back below freezing across much of the state, from the low 20s to mid 30s tonight, so cover up any plants or flowers outside. WNW gusts will reach 20-25 mph. A Small Craft Advisory is expected offshore.

WABI Weather 4/19/26 AM
WABI Weather 4/19/26 AM(WABI)

Skies will be partly to mostly sunny across the interstate and coast on Monday morning. However, by the late morning to midday hours, clouds will build with a few scattered rain and snow showers in spots. Conditions will remain on the cloudier side in the afternoon before clearing up around sunset into the start of Monday night. Highs will be chilly on Monday, from the low 30s to upper 40s. WNW to SW gusts will be a bit breezy, reaching 20-25 mph, which will add to the wind chill factor.

WABI Weather 4/19/26 AM
WABI Weather 4/19/26 AM(WABI)

High pressure will build on Monday night, remaining overhead on Tuesday. Skies will be sunny in the morning, becoming partly to mostly sunny in the afternoon. Highs will remain cool, in the 40s across the board with North to SW gusts only reaching 15-20 mph.

A weaker low-pressure system could bring showers across Maine on Wednesday and Thursday. There is a bit of model uncertainty on exactly when it will impact Maine. The GFS has impacts on Wednesday, while the EURO, GRAF, and GDPS models have most of the impacts on Thursday. We will continue to monitor this system and potential impacts. All it looks to provide as of now are cloudier skies and rain showers, with some snow shower chances farther to the North.

By Friday and Saturday, conditions are trending on the drier side with sunshine and average temperatures returning to the forecast.

WABI Weather 4/19/26 AM
WABI Weather 4/19/26 AM(WABI)

SUNDAY: Highs from low 40s to low 50s. Cloudy with AM fog. Rain becoming widespread throughout the day, turning over to snow to the north & west during PM. SSE to NW gusts reach 20-25 mph.

MONDAY: Highs from low 30s to upper 40s. Partly to mostly sunny early. Developing clouds with scattered rain/snow showers by midday/afternoon. WNW to SW gusts reach 20-25 mph.

TUESDAY: Highs throughout the 40s. Sunnier AM. Partly to mostly sunny PM. North to SW gusts reach 15-20 mph.

Advertisement

WEDNESDAY: Highs from low 40s to low 50s. Mostly cloudy with a few rain showers. Few AM snow showers possible North. SSE to SSW gusts reach 20-25 mph.

THURSDAY: Highs from mid 40s to mid 50s. Cloudier skies with rain showers possible. Some AM snow showers possible North. NW gusts reach 20-25 mph.

FRIDAY: Highs from upper 40s to mid 50s. Partly cloudy. NNW gusts reach 20 mph.

Copyright 2026 WABI. All rights reserved.



Source link

Advertisement
Continue Reading

Maine

18 jaw-dropping views from Katahdin to help you plan for warmer weather

Published

on

18 jaw-dropping views from Katahdin to help you plan for warmer weather


Editor’s note: This story was originally published in September 2022.

When it comes to Maine hiking, summiting Katahdin is the ultimate achievement.

Maine’s tallest mountain stands at 5,269 feet, and there are a number of different trails hikers can take to get up and down Katahdin. And while some are harder than others, none are easy.

Advertisement

But the views are incredible.

Whether it’s the rugged terrain of the Knife Edge or the vast landscape of the 200,000 acres that compose Baxter State Park below, here’s a look at what it’s like to climb Katahdin.

Hunt Trail

Hunt Trail traces the edge of a ridge on the west side of Katahdin known as Hunt Spur. Credit: Aislinn Sarnacki / BDN
Sara Clark (front) navigates a steep section of Katahdin’s Hunt Trail, while Sam Schipani takes a break on a boulder. Credit: Aislinn Sarnacki / BDN
Katahdin Stream Falls is one of the many scenic highlights of Katahdin’s Hunt Trail. It’s located about a mile from the trailhead at Katahdin Stream Campground. Credit: Aislinn Sarnacki / BDN

Abol Trail

A group of friends and family hiking down Abol Trail, Katahdin. (From top to bottom) Jeff McBurnie, Janet Jordan, Eve Jordan, Kerry Jordan (far right), Bruce Jordan, Joyce Sarnacki, Aislinn Sarnacki (far left), and Gary Robinson, in 2010. Credit: Photo courtesy of Derek Runnells
Hikers climb and enjoy the open views along the Abol Trail on Katahdin, the tallest mountain in Maine, on Sept. 10, 2016, in Baxter State Park. Credit: Aislinn Sarnacki / BDN

Chimney Pond Trail

Bright fall foliage surrounds Derek Runnells of Dedham as he walks along a boardwalk on the Chimney Pond Trail in Baxter State Park. Credit: Aislinn Sarnacki / BDN

Cathedral Trail

A rock formation on Katahdin called the Second Cathedral is seen from above on the Cathedral Trail on Sept. 27, 2014, in Baxter State Park. Peaking out behind the Cathedral is Chimney Pond, a pristine tarn at 2, 914 feet above sea level. The closest ridge on the right leads to Pamola Peak and is traversed via Dudley Trail. And the mountain range at the center of the view is South Turner, North Turner and East Turner mountains. Credit: Aislinn Sarnacki / BDN
Hikers approach the first Cathedral on the Cathedral Trail on Katahdin. Credit: Aislinn Sarnacki / BDN

Saddle Trail

Members of the 2015 Beyond Limits Katahdin Expedition make their way down the Saddle Trail after reaching the summit of Katahdin. Six men took 10-minute turns carrying Jacquelyn Lowman ,63, — who is paraplegic — to the summit, assisting each other along the way. The expedition took a year of planning and involved the help of about 20 people, who helped with the planning, carrying food, equipment and cooking. Eleven members of the group reached the summit with Lowman. Credit: Gabor Degre / BDN
Clouds settle over the upper reaches of the Saddle Trail, a route the leads to the peak of Katahdin, on Aug. 10, 2012. Credit: Aislinn Sarnacki / BDN

Northwest Basin Trail

BDN reporter Aislinn Sarnacki walks toward Hamlin Peak on Katahdin on the Northwest Basin Trail in Baxter State Park. Credit: Courtesy of Derek Runnells

Knife Edge

From Baxter Peak of Katahdin, hikers can enjoy a stunning view of Pamola Peak and a mile-long ridge known as Knife Edge. Credit: Aislinn Sarnacki / BDN
BDN reporter Aislinn Sarnacki hikes over Knife Edge of Katahdin on July 13, 2013. The ridge becomes just a few feet wide at some points, and the mountain drops away for thousands of feet on both sides. The trail should only be hiked in good weather. Credit: Courtesy of Derek Runnells
Hikers on the Knife Edge of Katahdin have few options for getting off trail to relieve themselves of human waste. Above treeline, Leave No Trace principles recommend planning ahead to avoid the necessity of going to the bathroom in fragile alpine areas, or getting off trail as far as possible to relieve themselves on rock or gravel. Credit: Courtesy of Brad Viles

Tablelands

A hiking trail winds through delicate alpine vegetation on the tablelands of Katahdin in Baxter State Park. Credit: Aislinn Sarnacki / BDN
The Tablelands of Katahdin, a relatively flat area between Baxter and Hamlin peaks, is visible from Cathedral Trail on Sept. 27, 2014, in Baxter State Park. Credit: Aislinn Sarnacki / BDN

South Peak

Hikers descend from South Peak on Katahdin in 2016. Credit: Courtesy of Brad Viles

Hamlin Peak

The rocky Hamlin Peak extends to the east, and beyond it are the Basin Ponds, South Turner Mountain, Katahdin Lake and the Katahdin Woods and Waters National Monument. Credit: Aislinn Sarnacki / BDN



Source link

Continue Reading

Maine

Maine Township Residents OK Purchase Of Building For Food Pantry – Journal & Topics Media Group

Published

on

Maine Township Residents OK Purchase Of Building For Food Pantry – Journal & Topics Media Group


Maine Township residents vote in support of purchasing building for the relocation of the township food pantry.

A proposal for Maine Township to purchase a building at 9850 Milwaukee Ave. in Glenview to move its popular and growing food pantry received strong approval at the township’s Annual Meeting held last week at the Town Hall on Ballard Road.
More than 100 residents attended the meeting where they approved buying the property for $1,429,000. The 3,000 sq. ft. building, which is located within the township, had been the home of a local restaurant. It is currently vacant.
In March, Supervisor Kim Jones explained that the food pantry needs more space for food and to accommodate clients who need food. “We’ve totally outgrown it,” said Jones at the time. “We’ve been looking for more than a year.”
Following last week’s meeting, Jones said about the vote, “That magical moment really encapsulated the strong support system that’s been built from neighbors helping neighbors throughout our community. The food pantry has grown in leaps and bounds throughout the last five years thanks to the dedicated work of its staff, volunteers and the public.”
Des Plaines City Clerk Dominik Bronakowski served as ceremonial moderator for the event.
Jones also recognized a number of employees and officials who currently serve the township. They included Assessor Susan Moylan-Krey and MaineStay Youth and Family Services Director Richard Lyon for their 20 years of service to Maine. Assistant Director of MaineStreamers, Therese Tully was recognized for her 25 years of service.
The meeting also recognized former Des Plaines Self-Help Closet and Pantry Director Debbie Walusiak who was presented the Sgt. Karen Lader Good Citizen Award for her more than 20 years of service to the Des Plaines community.
“Debbie is an exceptional community leader and volunteer,” said township Clerk Pete Gialamas whose office runs the annual award program. “Her work with the Des Plaines community, particularly her leadership navigating the Self-Help Closet and Pantry’s 2020 move to a larger location in the midst of the COVID pandemic really shows the depth and resolve of that leadership and dedication to service.”
In 2011, the clerk’s office instituted the award in honor of Lader, a resident of Des Plaines and a 15-year veteran of the Cook County Sheriff’s Police who lost her battle with cancer in 2010. She was deeply involved with the township’s Neighborhood Watch program and active in Maine’s National Night Out Against Crime event held each August. She also worked on Special Olympics and animal rescue.


If you like this story, you can get a whole lot more practically every day of the week by subscribing to journal-topics.com. Click here to choose your preference of either print or online, or call 847-299-5511.


Advertisement



Source link

Continue Reading
Advertisement

Trending