'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Podcasts:

  • Nation Lakes 2022

    8 days paddling the Nation Lake Canoe Route in British Columbia

    published: 30 Nov 2022
  • Nation Lakes Canoe Route in BC, Canada

    In September of 2022 we paddled the Nation Lakes Canoe Route in BC, Canada. The route consists of a series of four lakes: Tsayta, Indata, Tchentlo and Chuchi Lake. They are connected by short stretches of the Nation River and are collectively known as the Nation Lakes. Paddling the route requires a shuttle to the starting point in Tsayta lake. We picked this route because we can bring the dog (often not allowed) and it was rumoured to be a beautiful one. While a true wilderness experience, once the river get lower during summer the water becomes suitable for novice/intermediate paddlers. There are hotsprings to visit (well, warm springs), the fishing is great and there is a lot of wildlife. We were not disappointed. The first few days were a bit rough, cold and rainy, but once the we...

    published: 05 Apr 2023
  • Nation Lakes Canoe Route

    The Keim family paddled the Nation Lakes Canoe Route near Fort St James for 8 days in early September 2020. We had lots of variable weather and great fishing. This was our 6th annual family canoe trip.

    published: 02 Jan 2021
  • Nation Lakes Canoe Route, Full Movie, Std defenition, 2010

    published: 15 Dec 2021
  • Nation Lakes 2016

    published: 17 Apr 2017
  • Nation Lakes Canoe Route - Tchentlo Lake

    Tchentlo Lake is the largest lake on the Nation Lake Canoe Route

    published: 02 Apr 2012
  • Nation Lakes Canoe Route -- Chuchi Lake

    Chuchi Lake is the last lake on the Nation Lakes Canoe Trip.

    published: 02 Apr 2012
  • Nation Lakes Canoe Route - Tsayta Lake

    bTsayta Lake is in the southern ranges of the Omineca Mountains, British Columbia, Canada.

    published: 29 Mar 2012
Nation Lakes 2022
12:58

Nation Lakes 2022

  • Order:
  • Duration: 12:58
  • Uploaded Date: 30 Nov 2022
  • views: 650
8 days paddling the Nation Lake Canoe Route in British Columbia
https://wn.com/Nation_Lakes_2022
Nation Lakes Canoe Route in BC, Canada
39:10

Nation Lakes Canoe Route in BC, Canada

  • Order:
  • Duration: 39:10
  • Uploaded Date: 05 Apr 2023
  • views: 5489
In September of 2022 we paddled the Nation Lakes Canoe Route in BC, Canada. The route consists of a series of four lakes: Tsayta, Indata, Tchentlo and Chuchi Lake. They are connected by short stretches of the Nation River and are collectively known as the Nation Lakes. Paddling the route requires a shuttle to the starting point in Tsayta lake. We picked this route because we can bring the dog (often not allowed) and it was rumoured to be a beautiful one. While a true wilderness experience, once the river get lower during summer the water becomes suitable for novice/intermediate paddlers. There are hotsprings to visit (well, warm springs), the fishing is great and there is a lot of wildlife. We were not disappointed. The first few days were a bit rough, cold and rainy, but once the weather cleared up we had an amazing time on the water. I hope you enjoy the video, feel free to ask questions in the comments and I will do my best to answer them! IN THIS VIDEO: 00:00 Intro (1 minute) 01:07 Day 1 - Rainy day for a tropical island... 02:42 Day 2 - Tsayta Lake 04:44 Day 2 - Into the river we go! 09:24 Day 3 - Firewood for a rest day 12:00 Day 4 - Indata Lake, our second stretch of river and a simultaneous sunset/moonrise 16:50 Day 5 - Chentlo Lake hotsprings 20:34 Day 6 - A lazy morning, an ode to the RAM-X 17 and the first "real" fish! 24:12 Day 7 - Spectacular sunrise on our second rest day 24:50 Day 7 - Playing in the water with the dog 26:03 Day 7 - Oh, them beavers! 27:18 Day 8 - Waking up to smoke in the air 28:07 Day 8 - Old mining camp: core samples everywhere! 30:47 Day 8 - Our third and final stretch of the Nation River and arrival in Chuchi Lake 33:10 Day 9 - Finally! On a cold, but beautiful morning our luck changes... 35:48 Day 9 - We have a weird dog... 36:41 Day 9 - Water like glass 37:32 Day 10 - A quiet morning for our last morning 37:48 Day 10 - Poetry 38:18 Day 10 - Final words and please subscribe! MUSIC: 00:52 HoliznaCC0 - Breath 01:10 Mr. Smith - Lamento 02:21 Jason Shaw - Green Leaves 03:14 Monplaisir - Brotherhood 04:47 Mr. Smith - Insomnia 05:50 Doctor Turtle - I snost, I lost 10:10 HoliznaCC0 - Boredom 10:36 Jason Shaw - Hoedown 16:17 John Bartmann - Soaring Hawk 17:05 Mr. Smith - Sonorus 20:07 HoliznaCC0 - Boredom 20:33 John Bartmann - Iyanetha 21:58 Jason Shaw - Thingamajig 24:11 Mr. Smith - Pequeñas Guitarras 24:49 Jason Shaw - Rocky Top 25:42 Mr. Smith - Sunday Solitude 26:51 Axletree - As the Crow Flies 28:41: HoliznaCC0 - Trauma 30:29 Jason Shaw - Running Waters 31:08 HoliznaCC0 - Busking in the Sunlight 33:38 Kai Engel - Snowmen 34:08 HoliznaCC0 - Crooked Townie 36:43 Peter Rudenko - Iced Spring Theme 38:23 HoliznaCC0 - Sense of Purpose All music from www.freemusicarchive.org.
https://wn.com/Nation_Lakes_Canoe_Route_In_Bc,_Canada
Nation Lakes Canoe Route
16:15

Nation Lakes Canoe Route

  • Order:
  • Duration: 16:15
  • Uploaded Date: 02 Jan 2021
  • views: 1353
The Keim family paddled the Nation Lakes Canoe Route near Fort St James for 8 days in early September 2020. We had lots of variable weather and great fishing. This was our 6th annual family canoe trip.
https://wn.com/Nation_Lakes_Canoe_Route
Nation Lakes Canoe Route, Full Movie, Std defenition, 2010
7:29

Nation Lakes Canoe Route, Full Movie, Std defenition, 2010

  • Order:
  • Duration: 7:29
  • Uploaded Date: 15 Dec 2021
  • views: 143
https://wn.com/Nation_Lakes_Canoe_Route,_Full_Movie,_Std_Defenition,_2010
Nation Lakes 2016
6:24

Nation Lakes 2016

  • Order:
  • Duration: 6:24
  • Uploaded Date: 17 Apr 2017
  • views: 1056
https://wn.com/Nation_Lakes_2016
Nation Lakes Canoe Route - Tchentlo Lake
1:43

Nation Lakes Canoe Route - Tchentlo Lake

  • Order:
  • Duration: 1:43
  • Uploaded Date: 02 Apr 2012
  • views: 655
Tchentlo Lake is the largest lake on the Nation Lake Canoe Route
https://wn.com/Nation_Lakes_Canoe_Route_Tchentlo_Lake
Nation Lakes Canoe Route -- Chuchi Lake
1:38

Nation Lakes Canoe Route -- Chuchi Lake

  • Order:
  • Duration: 1:38
  • Uploaded Date: 02 Apr 2012
  • views: 791
Chuchi Lake is the last lake on the Nation Lakes Canoe Trip.
https://wn.com/Nation_Lakes_Canoe_Route_Chuchi_Lake
Nation Lakes Canoe Route - Tsayta Lake
2:28

Nation Lakes Canoe Route - Tsayta Lake

  • Order:
  • Duration: 2:28
  • Uploaded Date: 29 Mar 2012
  • views: 1543
bTsayta Lake is in the southern ranges of the Omineca Mountains, British Columbia, Canada.
https://wn.com/Nation_Lakes_Canoe_Route_Tsayta_Lake
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 1:28:05

Nation Lakes 2022

8 days paddling the Nation Lake Canoe Route in British Columbia
12:58
Nation Lakes 2022
8 days paddling the Nation Lake Canoe Route in British Columbia
published: 30 Nov 2022
Play in Full Screen
39:10
Nation Lakes Canoe Route in BC, Canada
In September of 2022 we paddled the Nation Lakes Canoe Route in BC, Canada. The route co...
published: 05 Apr 2023
Play in Full Screen
16:15
Nation Lakes Canoe Route
The Keim family paddled the Nation Lakes Canoe Route near Fort St James for 8 days in earl...
published: 02 Jan 2021
Play in Full Screen
7:29
Nation Lakes Canoe Route, Full Movie, Std defenition, 2010
published: 15 Dec 2021
Play in Full Screen
6:24
Nation Lakes 2016
published: 17 Apr 2017
Play in Full Screen
1:43
Nation Lakes Canoe Route - Tchentlo Lake
Tchentlo Lake is the largest lake on the Nation Lake Canoe Route
published: 02 Apr 2012
Play in Full Screen
1:38
Nation Lakes Canoe Route -- Chuchi Lake
Chuchi Lake is the last lake on the Nation Lakes Canoe Trip.
published: 02 Apr 2012
Play in Full Screen
2:28
Nation Lakes Canoe Route - Tsayta Lake
bTsayta Lake is in the southern ranges of the Omineca Mountains, British Columbia, Canada....
published: 29 Mar 2012
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: nation lakes

Edit

How to spend an evening exploring this historic Lake Michigan car ferry

Michigan Live 10 May 2025
Badger Lake Michigan car ferry, a National Historic Landmark, will be the venue for the kickoff of Love Ludington Weekend on Thursday, June 5 ... ‘Full of energy.’ Lake Michigan beach town to kick off summer with street party.
Edit

National Golf Day: This Athens course was named to 19 best in state by Golfing Georgia

Athens Banner-Herald 10 May 2025
... in AthensAchasta in DahlonegaThe National at Reynolds Lake Oconee in GreensboroBears Best Atlanta in SuwanneeReynolds Lake Oconee - The Preserve in GreensboroSea Island - Plantation Course in St.
Edit

Saturday is National Golf Day. Where Golfing Georgia says are the best courses in the state

Savannah Morning News 10 May 2025
... in AthensAchasta in DahlonegaThe National at Reynolds Lake Oconee in GreensboroBears Best Atlanta in SuwanneeReynolds Lake Oconee - The Preserve in GreensboroSea Island - Plantation Course in St.
Edit

Damen Wayne Landry

American Press 10 May 2025
He was a proud graduate of Grand Lake High School in Grand Lake, La ... on Tuesday, May 13, 2025, at Johnson Funeral Home, 4321 Lake Street, Lake Charles, LA 70605 ... at Grand Lake Community Cemetery.
Edit

Chambersburg gymnast Lila Folmar to compete in USA Gymnastics’ National Championships in Utah

Penn Live 10 May 2025
Folmar is back representing Region 7 at the 2025 Women’s Development Program National Championships, formerly known as Level 10 Nationals, in Salt Lake City ... Folmar finished fifth in the all-around competition to qualify for nationals.
Edit

Dale Roy Smelcer

Moscow-Pullman Daily News 10 May 2025
His military decorations include the National Defense Service Medal. While in Alaska, Dale took out a homesite on Quartz Lake, south of Fairbanks, where he built a log cabin to prove up the claim, and spent weekends fishing.
Edit

Town to hold memorial ceremony

Mooresville Tribune 10 May 2025
The Mooresville Police Department, in partnership with the Exchange Club of Mooresville/Lake Norman, will hold a National Police Week Memorial Ceremony on Tuesday, May 13, at 9 a.m. on the lawn of Town Hall, 413 N. Main St., Mooresville ... .
Edit

Driver in fatal Mattoon nursing home crash reportedly smoked cannabis beforehand

Journal Gazette 10 May 2025
East. People are also reading… ... The Mattoon City Council voted Tuesday evening to authorize a special use permit for what would be the first cannabis dispensary here, in the former First National Bank branch building at 511 Lake Land Boulevard ... .
Edit

The 'outrageously' pretty lake named one of Europe's most beautiful places to visit - and ...

The Daily Mail 09 May 2025
Spanning 318 hectares, Lake Bohinj is the largest permanent lake in Slovenia and is located in the country's Triglav National Park ... Spanning 318 hectares, Lake Bohinj is the largest permanent lake in ...
Edit

Long-awaited Port Opens at Lake Neusiedl

Hungary Today 09 May 2025
The first completed development element of the Lake Neusiedl (Lake Fertő, northwestern Hungary) investment, the northern port, has been handed over. As a result, from Thursday, part of the Hungarian shore of Lake Fertő is once again open to visitors.
Edit

Trump memo seeks to protect Great Lakes from invasive carp, backs barrier project

Detroit news 09 May 2025
Trump's memorandum demands that Illinois "must cease further delay in cooperating with this effort, for the sake of its own citizens and economy and for the sake of all of the Great Lakes states.".
Edit

High school roundup: Fenstermaker signs with Alma; Cheboygan teams collide with Elk Rapids

Cheboygan Daily Tribune 09 May 2025
Fenstermaker, who starred for the Inland Lakes Bulldogs on the gridiron throughout his high school career, signed his National Letter of Intent to join the Scots football program next season ... Lake shines offensively, but softball Chiefs lose two.
Edit

‘A painful summer’: Lake Mead at risk of reaching crisis levels with new projections

Las Vegas Review-Journal 09 May 2025
... less water than previously thought, with scientists predicting runoff into Lake Powell at 55 percent of average, according to the National Weather Service’s Colorado Basin River Forecast Center.
×