'+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:

  • Moses Coulee - Ice Age Floods - New Thoughts

    CWU's Nick Zentner continues learning about Moses Coulee in central Washington. Hungate Canyon trailhead: https://goo.gl/maps/vT5gDrFN8BvKFnd17

    published: 09 Jun 2023
  • Moses Coulee - Before the Ice Age Floods?

    CWU's Nick Zentner wonders what Moses Coulee looked like before the Ice Age Floods in central Washington. Rock Island Creek: https://goo.gl/maps/o2fnKZBN7pwwhjPP8

    published: 17 Jun 2023
  • Moses Coulee

    A megaflood-carved coulee just as large and impressive as Grand Coulee, yet more remote and less crowded. And the only flood coulee once blocked by a glacier.

    published: 29 Dec 2017
  • Randy Lewis in Moses Coulee (part 3)

    Part 3 of 4. Wenatchi/P'squosa tribal elder Randy Lewis (K'ayaxan) shares wisdom with CWU's Nick Zentner. Filmed on June 11, 2021. Part 1: https://youtu.be/UJ4C8NrOVAQ Part 2: https://youtu.be/3nGVx-Rcum0 Part 4: https://youtu.be/bh_suDCjJ7Y

    published: 07 Jul 2021
  • Ep073 Implausible Moses Coulee Formation -Kosmographia The Randall Carlson Podcast

    In the name of liberty and freedom, we are moving this podcast to our new partner platform! Please join us here: https://www.howtube.com/channels/RandallCarlson and Click "SHOW MORE" just below for LINKS, notes, ways to donate & info/hints about each podcast. Randall admits to heeding Mike’s advice and thinking bigger – to encompass activity throughout the solar system, and likely we’re going to have broaden our perspective to the galactic level to understand these cycles of catastrophe. Great firestorms and comets and the destruction of Atlantis are all topics we’re going to get into deeply. Let’s focus now on Moses Coulee and how it possibly could’ve formed by floodwaters emanating from an impounded glacial lake in Montana. RC proposes sudden flash melting and multiple flows coming south...

    published: 29 Oct 2021
  • Randy Lewis in Moses Coulee (part 1)

    Part 1 of 4. Wenatchi/P'squosa tribal elder Randy Lewis (K'ayaxan) shares wisdom with CWU's Nick Zentner. Filmed on February 19, 2020. Part 2: https://youtu.be/3nGVx-Rcum0 Part 3: https://youtu.be/8MKkWC3fsYs Part 4: https://youtu.be/bh_suDCjJ7Y

    published: 18 Jun 2021
  • Where is Moses Coulee?

    published: 27 Feb 2017
  • What is a Coulee?

    What is a Coulee? Dramatic coulees of eastern Washington's Channeled Scablands were created by powerful Ice Age Floods that dug aggressively into the Columbia River Basalt flows. Coulees are unique, box-shaped valleys created quickly by Ice Age Floods of the Pleistocene Epoch. Coulees are most notably found in the Channeled Scablands of eastern Washington. Famous examples include Grand Coulee, Moses Coulee, and Frenchman Coulee. This episode begins with Nick standing at the edge of Echo Coulee, just south of Frenchman Coulee. The classic look of a coulee is on display - flat coulee floor, vertical coulee walls, and no river in the coulee bottom. Beginning in the 1920's, geologist J Harlen Bretz tried convincing the science world that coulees like this one must be the result of large-v...

    published: 24 Jun 2013
  • Randy Lewis in Moses Coulee (part 2)

    Part 2 of 4. Wenatchi/P'squosa tribal elder Randy Lewis (K'ayaxan) shares wisdom with CWU's Nick Zentner. Filmed on June 11, 2021. Part 1: https://youtu.be/UJ4C8NrOVAQ Part 3: https://youtu.be/8MKkWC3fsYs Part 4: https://youtu.be/bh_suDCjJ7Y

    published: 02 Jul 2021
Moses Coulee - Ice Age Floods - New Thoughts
33:16

Moses Coulee - Ice Age Floods - New Thoughts

  • Order:
  • Duration: 33:16
  • Uploaded Date: 09 Jun 2023
  • views: 90129
CWU's Nick Zentner continues learning about Moses Coulee in central Washington. Hungate Canyon trailhead: https://goo.gl/maps/vT5gDrFN8BvKFnd17
https://wn.com/Moses_Coulee_Ice_Age_Floods_New_Thoughts
Moses Coulee - Before the Ice Age Floods?
24:59

Moses Coulee - Before the Ice Age Floods?

  • Order:
  • Duration: 24:59
  • Uploaded Date: 17 Jun 2023
  • views: 26308
CWU's Nick Zentner wonders what Moses Coulee looked like before the Ice Age Floods in central Washington. Rock Island Creek: https://goo.gl/maps/o2fnKZBN7pwwhjPP8
https://wn.com/Moses_Coulee_Before_The_Ice_Age_Floods
Moses Coulee
14:51

Moses Coulee

  • Order:
  • Duration: 14:51
  • Uploaded Date: 29 Dec 2017
  • views: 42331
A megaflood-carved coulee just as large and impressive as Grand Coulee, yet more remote and less crowded. And the only flood coulee once blocked by a glacier.
https://wn.com/Moses_Coulee
Randy Lewis in Moses Coulee (part 3)
45:24

Randy Lewis in Moses Coulee (part 3)

  • Order:
  • Duration: 45:24
  • Uploaded Date: 07 Jul 2021
  • views: 9884
Part 3 of 4. Wenatchi/P'squosa tribal elder Randy Lewis (K'ayaxan) shares wisdom with CWU's Nick Zentner. Filmed on June 11, 2021. Part 1: https://youtu.be/UJ4C8NrOVAQ Part 2: https://youtu.be/3nGVx-Rcum0 Part 4: https://youtu.be/bh_suDCjJ7Y
https://wn.com/Randy_Lewis_In_Moses_Coulee_(Part_3)
Ep073 Implausible Moses Coulee Formation -Kosmographia The Randall Carlson Podcast
1:50:56

Ep073 Implausible Moses Coulee Formation -Kosmographia The Randall Carlson Podcast

  • Order:
  • Duration: 1:50:56
  • Uploaded Date: 29 Oct 2021
  • views: 37040
In the name of liberty and freedom, we are moving this podcast to our new partner platform! Please join us here: https://www.howtube.com/channels/RandallCarlson and Click "SHOW MORE" just below for LINKS, notes, ways to donate & info/hints about each podcast. Randall admits to heeding Mike’s advice and thinking bigger – to encompass activity throughout the solar system, and likely we’re going to have broaden our perspective to the galactic level to understand these cycles of catastrophe. Great firestorms and comets and the destruction of Atlantis are all topics we’re going to get into deeply. Let’s focus now on Moses Coulee and how it possibly could’ve formed by floodwaters emanating from an impounded glacial lake in Montana. RC proposes sudden flash melting and multiple flows coming south off the Cordilleran Ice Sheet! Kosmographia Ep073 The Randall Carlson Podcast with Brothers of the Serpent – Kyle and Russ, Normal Guy Mike, and GeocosmicREX admin Bradley, from 8/23/21. LINKS: Announcements about events, tours and more: http://randallcarlson.com/newsletter (Monthly) Contact at the Clark Fork June '22 http://contactatthecabin.com/montana-with-Randall-Carlson/ Full listing of scientific papers about the Younger Dryas Impact Hypothesis: https://cosmictusk.com USGS detailed maps of North America: https://apps.nationalmap.gov/viewer/ CBD RECOMMENDED - Listen to Randall’s experience with “CBD from the gods” after the mid-break at 1:02:50. They have some special deals going on right now, and in addition, for the Kosmographia audience - you can also get FREE shipping on your order! Use code: “RCshipsFREE” (not case sensitive) when you check out at https://www.cbdfromthegods.com Support Randall Carlson's efforts to discover and share pivotal paradigm-shifting information! Improve the quality of the podcast and future videos. Allow him more time for his research into the many scientific journals, books, and his expeditions into the field, as he continues to decipher the clues that explain the mysteries of our past, and prepare us for the future... Make a one-time donation thru PayPal, credit/debit card or other account here: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8YVDREQ9SMKL6&source=url http://www.RandallCarlson.com has the podcast, RC’s blog, galleries, and products to purchase! T-shirts available here: https://randallcarlson.com/product-category/apparel/ Podcast crew email: Kosmographia1618@gmail.com Info on upcoming trips with Randall and the crew: TOURS@RandallCarlson.com Offer your time/services/accommodations here: VOLUNTEER@RandallCarlson.com Add to the expanding library of evidence here: RESEARCH@RandallCarlson.com Small class lectures "Cosmography 101" from '06-'09 on Brad's original channel: https://youtube.com/geocosmicrex Kosmographia logo and design animation by Brothers of the Serpent. Check out their podcast: http://www.BrothersoftheSerpent.com/ Theme “Deos” and bumper music by Fifty Dollar Dynasty: http://www.FiftyDollarDynasty.net/ Video recording, editing and publishing by Bradley Young with YSI Productions LLC (copyrights), with audio mastered by Kyle Allen. CBD FROM THE GODS LINK: http://www.cbdfromthegods.com COUPON CODE: RCshipsFREE Chapters: 0:00 Think Even Bigger 8:08 One per Galaxy? 15:48 Firestorm Events 29:28 Basalt Erratics Transport 36:43 Scablands Maps 45:56 Moses Coulee 1:03:00 CBD usage report 1:05:33 Moses et al. Coulees 1:13:03 Columbia Vly / Babcock 1:20:25 Alta Coulee / Fewer Floods? 1:34:08 Flash Melting / Flood Art 1:41:41 Survival? Historical Insight 1:48:03 RandallCarlson.com !!!
https://wn.com/Ep073_Implausible_Moses_Coulee_Formation_Kosmographia_The_Randall_Carlson_Podcast
Randy Lewis in Moses Coulee (part 1)
16:25

Randy Lewis in Moses Coulee (part 1)

  • Order:
  • Duration: 16:25
  • Uploaded Date: 18 Jun 2021
  • views: 10200
Part 1 of 4. Wenatchi/P'squosa tribal elder Randy Lewis (K'ayaxan) shares wisdom with CWU's Nick Zentner. Filmed on February 19, 2020. Part 2: https://youtu.be/3nGVx-Rcum0 Part 3: https://youtu.be/8MKkWC3fsYs Part 4: https://youtu.be/bh_suDCjJ7Y
https://wn.com/Randy_Lewis_In_Moses_Coulee_(Part_1)
Where is Moses Coulee?
0:26

Where is Moses Coulee?

  • Order:
  • Duration: 0:26
  • Uploaded Date: 27 Feb 2017
  • views: 2105
https://wn.com/Where_Is_Moses_Coulee
What is a Coulee?
2:36

What is a Coulee?

  • Order:
  • Duration: 2:36
  • Uploaded Date: 24 Jun 2013
  • views: 51944
What is a Coulee? Dramatic coulees of eastern Washington's Channeled Scablands were created by powerful Ice Age Floods that dug aggressively into the Columbia River Basalt flows. Coulees are unique, box-shaped valleys created quickly by Ice Age Floods of the Pleistocene Epoch. Coulees are most notably found in the Channeled Scablands of eastern Washington. Famous examples include Grand Coulee, Moses Coulee, and Frenchman Coulee. This episode begins with Nick standing at the edge of Echo Coulee, just south of Frenchman Coulee. The classic look of a coulee is on display - flat coulee floor, vertical coulee walls, and no river in the coulee bottom. Beginning in the 1920's, geologist J Harlen Bretz tried convincing the science world that coulees like this one must be the result of large-volume, short-lived flooding events during the Ice Age. Opposition to Bretz's arguments lasted many decades, but today, the scientific community embraces the story of the Ice Age Floods. After some nifty aerials by flying ace Tom Tabbert, the episode resumes with Nick standing at the base of a popular climbing route in Echo Coulee. A discussion of the fractured nature of basalt reveals that the basalt bedrock of eastern Washington - the Columbia River Basalt Group - plays a large role in coulee development. The vertical and horizontal fracture sets, created 15 million years ago when the lava cooled, aided the floodwater's erosive ability. The result? Coulees with vertical and horizontal components directly controlled by the fractures in the basalt bedrock. Filmed in June, 2013. Episode written by Nick Zentner and Tom Foster. Video, Sound, & Editing: Tom Foster
https://wn.com/What_Is_A_Coulee
Randy Lewis in Moses Coulee (part 2)
45:37

Randy Lewis in Moses Coulee (part 2)

  • Order:
  • Duration: 45:37
  • Uploaded Date: 02 Jul 2021
  • views: 9310
Part 2 of 4. Wenatchi/P'squosa tribal elder Randy Lewis (K'ayaxan) shares wisdom with CWU's Nick Zentner. Filmed on June 11, 2021. Part 1: https://youtu.be/UJ4C8NrOVAQ Part 3: https://youtu.be/8MKkWC3fsYs Part 4: https://youtu.be/bh_suDCjJ7Y
https://wn.com/Randy_Lewis_In_Moses_Coulee_(Part_2)
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Moses Coulee - Ice Age Floods - New Thoughts
    33:16
    Moses Coulee - Ice Age Floods - New Thoughtsremove from playlist
  • Moses Coulee - Before the Ice Age Floods?
    24:59
    Moses Coulee - Before the Ice Age Floods?remove from playlist
  • Moses Coulee
    14:51
    Moses Couleeremove from playlist
  • Randy Lewis in Moses Coulee (part 3)
    45:24
    Randy Lewis in Moses Coulee (part 3)remove from playlist
  • Ep073 Implausible Moses Coulee Formation -Kosmographia The Randall Carlson Podcast
    1:50:56
    Ep073 Implausible Moses Coulee Formation -Kosmographia The Randall Carlson Podcastremove from playlist
  • Randy Lewis in Moses Coulee (part 1)
    16:25
    Randy Lewis in Moses Coulee (part 1)remove from playlist
  • What is a Coulee?
    2:36
    What is a Coulee?remove from playlist
  • Randy Lewis in Moses Coulee (part 2)
    45:37
    Randy Lewis in Moses Coulee (part 2)remove from playlist
PLAYLIST TIME: 0:00 / 4:54:30

Moses Coulee - Ice Age Floods - New Thoughts

CWU's Nick Zentner continues learning about Moses Coulee in central Washington. Hungate Canyon trailhead: https://goo.gl/maps/vT5gDrFN8BvKFnd17
33:16
Moses Coulee - Ice Age Floods - New Thoughts
CWU's Nick Zentner continues learning about Moses Coulee in central Washington. Hungate Ca...
published: 09 Jun 2023
Play in Full Screen
24:59
Moses Coulee - Before the Ice Age Floods?
CWU's Nick Zentner wonders what Moses Coulee looked like before the Ice Age Floods in cent...
published: 17 Jun 2023
Play in Full Screen
14:51
Moses Coulee
A megaflood-carved coulee just as large and impressive as Grand Coulee, yet more remote an...
published: 29 Dec 2017
Play in Full Screen
45:24
Randy Lewis in Moses Coulee (part 3)
Part 3 of 4. Wenatchi/P'squosa tribal elder Randy Lewis (K'ayaxan) shares wisdom with CWU...
published: 07 Jul 2021
Play in Full Screen
1:50:56
Ep073 Implausible Moses Coulee Formation -Kosmographia The Randall Carlson Podcast
In the name of liberty and freedom, we are moving this podcast to our new partner platform...
published: 29 Oct 2021
Play in Full Screen
16:25
Randy Lewis in Moses Coulee (part 1)
Part 1 of 4. Wenatchi/P'squosa tribal elder Randy Lewis (K'ayaxan) shares wisdom with CWU...
published: 18 Jun 2021
Play in Full Screen
0:26
Where is Moses Coulee?
published: 27 Feb 2017
Play in Full Screen
2:36
What is a Coulee?
What is a Coulee? Dramatic coulees of eastern Washington's Channeled Scablands were create...
published: 24 Jun 2013
Play in Full Screen
45:37
Randy Lewis in Moses Coulee (part 2)
Part 2 of 4. Wenatchi/P'squosa tribal elder Randy Lewis (K'ayaxan) shares wisdom with CWU...
published: 02 Jul 2021
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)); } }); }); }); // -->
×