Connect with us

New Hampshire

Video: Sunny skies; highs reaching into the 40s

Published

on

Video: Sunny skies; highs reaching into the 40s


Video: Sunny skies; highs reaching into the 40s

Advertisement

Temperatures early this morning are in the teens and 20s. We have clear skies across the area. I think everyone can agree. Let’s have some sunshine out there today, and I think full sun today and tomorrow. Today it’s with temperatures in the 40s. Tomorrow we’ll be back into the 50s and we’ll jump into the 60s on Friday afternoon. I think Friday is the relative warm day for us out there. We’ll slip back *** little bit over the weekend after the chance of *** shower Friday night, but. That chance of *** shower Friday night is really the only wet weather we have in the forecast all the way through the weekend. So, uh, while that was all going on yesterday, we had pollen counts which were on the modern category. Now the scale is out of 12. The first phase of pollen is tree pollen, and we are starting to see those buds on the trees in the southern half of the state. So this is around *** 5.5 out of 12. This will continue for *** good portion of the next several days and look for this to go up to. *** higher level as we go forward here over the next week or two. There is your ramp up in temperatures peaking Friday. We’ll still be in the 50s with dry skies over the weekend after that chance of *** shower later Friday night. *** lot of sunshine for us today. There may be *** little bit of *** lingering breeze at 5 to 15 miles an hour, but wouldn’t even call it breezy or even windy going into the afternoon. That is the next front, and again, by the time it gets here, it might be *** stray rain. Shower with temperatures in the 60s out ahead of it Friday afternoon and kind of holding in the 40s going into Friday evening. Temperatures right now down to the 20s. This is the recipe of clear skies and light winds. We’ve dropped all the way to the teens up north and yes, sub-zero atop Mount Washington for actual temperatures this morning. 40s this afternoon, running about 5 or 7 degrees cooler than our normal highs for this time of year. And after another seasonably chilly night with the clear skies. Light winds tonight. That is the beginnings of *** warming trend. Tomorrow, breeze will start to pick up out of *** southwesterly direction, as you will notice, just about full sunshine again for your Thursday afternoon. We get into Friday and we’ll kind of mix clouds with sunshine. We’ll call it partly sunny, and there will be the risk of *** shower as we go later into Friday evening. But as you will notice here on Futurecast, minus that chance of *** shower during the daylight hours Friday, there really isn’t much to write home about here as. as that rain chance going into Friday night, skies will clear very early Saturday, 60s Friday back into the 50s, but as you can see, it is partly sunny skies for both days over the weekend. Next chance of showers will likely be *** warm front arriving on Monday. And as you will notice all the way at the end of the 7 day forecast is that warm front with temperatures in the 60s Monday and *** chance to go above 70 on Tuesday.

As the latest system moves away, skies have cleared. This sets up full sunshine today and Thursday as temperatures get a boost as the week wears on. Highs on Friday could make it into the upper 60s. The weekend starts with a few showers then dry. Temperatures in the 50s. It is a chilly start to the day but sunshine will lead to a cool afternoon. Highs will remain mostly in the 40s.Temps will drop into the 20s tonight just about statewide with fair skies.Temperatures trend upward to end the week. Highs will bounce back into the 50s Thursday and above 60 on Friday.Passing showers will be possible later Friday night and into Saturday morning. That front will bring the temperatures back into the 50s for highs over the weekend.

As the latest system moves away, skies have cleared. This sets up full sunshine today and Thursday as temperatures get a boost as the week wears on. Highs on Friday could make it into the upper 60s. The weekend starts with a few showers then dry. Temperatures in the 50s.

Advertisement

It is a chilly start to the day but sunshine will lead to a cool afternoon. Highs will remain mostly in the 40s.

Temps will drop into the 20s tonight just about statewide with fair skies.

Temperatures trend upward to end the week. Highs will bounce back into the 50s Thursday and above 60 on Friday.

Advertisement

Passing showers will be possible later Friday night and into Saturday morning. That front will bring the temperatures back into the 50s for highs over the weekend.

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’);
});

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.wmur.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.wmur.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

`;
}

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’;

Advertisement

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’);

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;
}

Advertisement

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) {}

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;

Advertisement

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.wmur.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.wmur.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;
}

Advertisement

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’);
}

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);
}
}

Advertisement

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);

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

New Hampshire

New Hampshire teacher resigns after alleged inappropriate communication with students online

Published

on

New Hampshire teacher resigns after alleged inappropriate communication with students online



A Salem, New Hampshire High School teacher has resigned after allegations of inappropriate interactions with students on social media. 

“Definitely surprised. It just kind of hurts because he was a very liked teacher,” said senior Thomas Mallous.

The district confirmed that the Salem Police Department has been notified and that a criminal investigation is underway.

Advertisement

In a statement, Superintendent Maura Palmer said parents of students directly affected were notified immediately. The broader school community was informed of the teacher’s resignation on April 14.

Parents described the situation as troubling.

“I think it’s inappropriate,” said parent Inna Gacevic. “I think we need to be careful with our kids on social media, definitely. I have kids on social media, but I make sure that we don’t interact with teachers outside of school in that way.”

The Salem School District has a strict social media policy for staff. According to the policy, teachers are prohibited from “friending” students or sharing social media content unrelated to academic work.

Community members say those rules are critical but acknowledge the challenges of enforcement.

Advertisement

“It’s hard to keep track of that,” another parent said. “We can’t know what every teacher is doing outside of school or what every student is doing,but I think, for ethical reasons, as a teacher, you don’t do that.”

Mallous said interactions between teachers and students on social media should be off-limits. “It should be rule number one of being a teacher never interact with your students online,” Mallous said. “It’s just not acceptable.”

Officials have not released additional details about the investigation.



Source link

Continue Reading

New Hampshire

11 Off-The-Beaten-Path Towns In New Hampshire

Published

on

11 Off-The-Beaten-Path Towns In New Hampshire


New Hampshire is covered with forests and greenery, and many of its off-the-beaten-path towns sit right in the middle of it all. Waterville Valley is one such town, set against the White Mountains with Corcoran Pond, year-round outdoor recreation, and a tiny population of just 520 people. New Castle and Woodstock have the added advantage of gorgeous water views, with New Castle overlooking the Piscataqua River and Woodstock tracing the Lost River. Of New Hampshire’s many tiny towns, the 11 below offer some of the best glimpses of small-town living in the state.

Waterville Valley

Corcoran Pond, Waterville Valley, New Hampshire.

It doesn’t get more off-the-beaten-path than Waterville Valley, with only one road in and out. The road through the town ends at the spectacular White Mountains. Although Waterville Valley’s population is less than 1000, it swells to 6,000 in winter for skiing, snowboarding, and other winter activities, including the NH Special Olympic Winter Games in March. Summer trails include hiking and biking, as well as boating, fishing, and swimming. Waterville Valley’s own trail network offers excellent access to the surrounding landscape, while Corcoran Pond and the nearby White Mountain scenery make it easy to enjoy the outdoors in every season.

The authors of the popular Children’s Curious George books, former residents of Waterville Valley, founded the Rey Cultural Center, which focuses on art, science, and nature education through its many exhibits and programs.

Watch spectacular sunsets from Corcoran Pond and appreciate the beauty of seclusion.

Advertisement

New Castle

Portsmouth Harbor Lighthouse, New Castle, New Hampshire.
Portsmouth Harbor Lighthouse, New Castle, New Hampshire.

Off the coast of New Hampshire lies a town on an island. Originally named Great Island, New Castle is the only town in the state completely on an island. It provides stunning views of the Atlantic Ocean and panoramic vistas of the Piscataqua River. History buffs will particularly enjoy exploring New Castle. Notable sites include Portsmouth Harbor Lighthouse, Fort Stark Historic Site, and Great Island Common, although Fort Constitution is currently closed for repairs.

Ashland

Highland Street in summer, Ashland, New Hampshire.
Highland Street in summer, Ashland, New Hampshire.

Located on the southern edge of the White Mountains and surrounded by the beautiful lakes region, Ashland is a charming town full of delightful surprises. Visitors can explore the historic Whipple House Museum, built in 1837 and once home to Dr. Whipple, as well as the Pauline E. Glidden Toy Museum, showcasing charming toys from the 1800s collected by Glidden. Don’t miss the Ashland Railroad Station Museum and the picturesque Squam River Covered Bridge, which are among the town’s beloved historic landmarks.

For outdoor enthusiasts, there’s plenty to enjoy! Whether you’re hiking, biking, or engaging in water activities, Squam Lake, the Whitten Woods Trailhead, and the stunning White Mountain National Forest offer endless opportunities for adventure and relaxation.

Woodstock

The Woodstock Inn Brewery in Woodstock, New Hampshire.
The Woodstock Inn Brewery in Woodstock, New Hampshire. Image credit Kenneth C. Zirkel – Own work, CC BY-SA 4.0, Wikimedia Commons

Initially, Woodstock served as a hub for the logging industry until 1911. In 1905, tourism emerged as a vital part of Woodstock’s economy thanks to its pristine setting in the White Mountains. Today, the town draws many visitors who come to explore and enjoy its charming, off-the-beaten-path atmosphere. Discover the raw power of nature and breathtaking landscapes at Lost River Gorge and Boulder Caves by walking along the wooden boardwalk through the gorge alongside the Lost River. Jagged rock formations, massive boulders, cascading waterfalls, a treehouse, and a suspension bridge invite every adventurer.

The Woodstock Inn Brewery offers backstage passes for guests to learn about the brewing process, live music, and spectacular igloo dining experiences. Another standout winter attraction in Woodstock is Ice Castles, a seasonal experience featuring ice slides, caverns, archways, crawl tunnels, and illuminated frozen sculptures.

Colebrook

Beaver Brook Falls in Colebrook, New Hampshire
Beaver Brook Falls in Colebrook, New Hampshire.

In the Great North Woods Region is Colebrook, a stunning small town off-the-beaten path to relax and revive the body and mind. The town has preserved its centuries-old history by restoring and maintaining the architecture, historical markers, like the Coos Trail marker, and old-town ambiance. Magnificent buildings, such as the Citizen’s Bank and Hicks Hardware, can be viewed when walking through the town.

Moose watching and hunting are popular activities in Colebrook. The North Country Moose Festival takes place annually on the weekend before Labor Day. Exploring the countryside and its beautiful landscapes, the Poore Family Homestead Historic Farm Museum celebrates the Poore family’s efforts toward Colebrook’s sustainability. In addition to the museum, the homestead offers picnic areas and hosts events such as field trips, demonstrations, concerts, and a six-week student program. For a closer connection to nature, the Beaver Brook Falls Wayside features hiking trails that lead to breathtaking waterfalls and lush forests.

Chichester

Chichester United Methodist Church aerial view in fall at 45 Main Street in historic town center of Chichester, New Hampshire.
Chichester United Methodist Church, Chichester, New Hampshire.

Chichester is a town tucked neatly off the beaten path on the Suncook River. A prominent must-see in Chichester is the 1887 Thunder Bridge, crossing the Suncook River. The Chichester Historical Society keeps its heritage alive with many documents, artifacts, and knowledge of landmarks for public interest.

Family fun in Chichester is best experienced at Chuckster’s Family Fun Park, which provides a variety of activities for all ages, including go-karts, climbing walls, ziplines, bumper boats, and batting cages. Additionally, the Chichester Town Line Trail is a gentle two-mile route offering great wildlife sightings and beautiful scenery.

Sunapee

Fall colors in Sunapee, New Hampshire.
Fall colors in Sunapee, New Hampshire.

Sunapee is a charming small town that welcomes visitors year-round. During summer, Strolling along Sunapee Harbor offers live music, shops, and dining experiences, especially at The Livery. Visitors can also take a scenic lake cruise or a dinner cruise around Lake Sunapee. In spring and fall, the area is perfect for hiking and biking, while the Adventure Park at Mount Sunapee Resort in nearby Newbury provides additional family entertainment. In winter, the mountain’s ski trails are popular among skiers.

Sunapee’s intriguing past is brought alive at the Sunapee Historical Society’s Flanders-Osborne Museum and the Sunapee Archives on Main Street. In nearby Newbury, explore The Fells, the 83.5-acre 20th-century John Hay Estate, and its six gardens.

Advertisement

Hinsdale

Aging Anna Hunt Marsh Bridge (1920) connecting Brattleboro, Vermont with Hinsdale, New Hampshire.
Aging Anna Hunt Marsh Bridge (1920) connecting Brattleboro, Vermont, with Hinsdale, New Hampshire. Image credit Bob Korn via Shutterstock

Hinsdale hosts the oldest continuously operating post office in the same building in the U.S., operating since 1816. The area spans 37 acres along the Connecticut River, featuring landmarks like the Ebenezer Hinsdale House, Fort Hinsdale, and the Ebenezer Hinsdale Farm. The site includes livestock and agricultural barns, plus a blacksmith shop. Located in the Wantastiquet Mountain Natural Area, Hinsdale offers numerous trails suitable for all skill levels. An easy trail leads to the Walter H. Child Monument and connects to Miners Ledge, which provides stunning views of the Connecticut River Valley and the Madame Sherri Forest in Chesterfield.

Hinsdale is part of the popular 13,300-acre Pisgah State Park, which offers excellent outdoor activities like hiking, biking, horse riding, bird watching, ATV and snowmobiling, and many water sports. Since it is off-the-beaten-path, far from city entertainment, Northfield Drive-In, which has entertained people since 1948, is great for a family outing.

Ossipee

Broad Bay Ossipee Lake, New Hampshire.
Broad Bay Ossipee Lake, New Hampshire.

Ossipee, sharing its name with the Ossipee Mountains, is a hidden outdoor haven composed of several small villages nestled in the hills. The area features Ossipee Lake, its rivers, and the mountains, offering plentiful opportunities for fishing, swimming, hiking, and skiing. At the Ossipee Historical Society’s Grant Hall Museum, visitors can see men’s and women’s clothing, a spinning wheel, a bootmaker’s stand, and Civil War artifacts. The historic Whittier Bridge, which crosses the Bearcamp River and stands as an Ossipee monument, is listed on the National Register of Historic Places.

Campton

View of the Pemigewasset River in Campton, New Hampshire, at Livermore Falls.
Pemigewasset River in Campton, New Hampshire, at Livermore Falls.

The Campton Falls, also known as Beebe River Falls, is a 28-foot-tall waterfall nestled amidst lush vegetation but easily accessible to visitors. It flows throughout the year, offering stunning views of this natural attraction. Campton features 18 historical markers, including sites like the Campton Congregational Church, Campton Pond and Dam, the Campton Town House, and Campton Hollow, one of the original settlements.

The town’s conservation efforts enable visitors to enjoy preserved natural areas such as Blair Woodland Natural Area, Pattee Conservation Park, and West Branch Brook Forest.

Squiggles adds entertainment to this off-the-beaten-path town. It’s more than just a store in an 1826 building that sells locally sourced products, including gifts, toys, and candies. It also hosts a vintage arcade with games like air hockey, various pinball machines, and Pac-Man, all operated with quarters. Additionally, the venue offers mini-golf and a function hall.

Shelburne

Philbrook Farm Inn in Shelburne, New Hampshire.
Philbrook Farm Inn in Shelburne, New Hampshire.

Shelburne, a small town with about 360 residents, may be off the beaten path, but it is vibrant and rich in history. Nestled along the Androscoggin River and surrounded by the White Mountains, it is part of the scenic Presidential Range Trail. The town consistently charms and impresses visitors year-round. Notable landmarks include The Shelburne Birches, which features a bronze plaque honoring military service members, and the Stone Fish, a unique piece from Mason’s 1900 stone collection that stands as an interesting landmark.

New Hampshire’s small towns, gloriously placed within luscious mountain ranges and alongside rivers and the coast, might be off-the-beaten-path, yet they offer excellent outdoor and historical activities that cannot be experienced in a city. New Hampshire is a state for all seasons: winter invites skiers to the mountain slopes, summer invites water sport enthusiasts, and spring and fall invite hikers, bikers, and rock climbers to its countless trails through dense forests, waterfalls, and covered bridges.

Advertisement



Source link

Continue Reading

New Hampshire

New details in man’s suspicious death in Laconia, NH

Published

on

New details in man’s suspicious death in Laconia, NH


A man whose death is being treated as suspicious in Laconia, New Hampshire, was identified on Wednesday, but officials have yet to reveal many details about what happened.

The New Hampshire Attorney General’s Office identified the man found dead at an apartment on South Main Street Tuesday as John Anderson, 62.

He lived at the residence, which officers were called to for a welfare check Tuesday morning, prosecutors said Wednesday.

Anderson was due for an autopsy on Thursday, officials said. The procedure usually reveals a cause and manner of death.

Advertisement

Prosecutors haven’t shared more information about what’s believed to have led to Anderson’s death, or if anyone was suspected in it. But the New Hampshire Attorney General’s Office has said that his death isn’t believed to be connected to the killing of a woman in Laconia, also reported on Tuesday.

State and local police were investigating what happened. Officials have said there was no known threat to the public.

Anyone with any information about the investigation was asked to call the state police tip line at 603-MCU-TIPS.



Source link

Advertisement
Continue Reading

Trending