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

Arctic grayling

Arctic grayling (Thymallus arcticus) is a species of freshwater fish in the salmon family Salmonidae. T. arcticus is widespread throughout the Arctic and Pacific drainages in Canada, Alaska, and Siberia, as well as the upper Missouri River drainage in Montana. In the U.S. state of Arizona, an introduced population is found in the Lee Valley and other lakes in the White Mountains. They were also stocked at Toppings Lake by the Teton Range.

Taxonomy

The scientific name of the Arctic grayling is Thymallus arcticus. It was named in 1776 by German zoologist Peter Simon Pallas from specimens collected in Russia. The name of the genus Thymallus first given to grayling (T. thymallus) described in the 1758 edition of Systema Naturae by Swedish zoologist Carl Linnaeus originates from the faint smell of the herb thyme, which emanates from the flesh.

Description

Arctic grayling grow to a maximum recorded length of 76 cm (30 in) and a maximum recorded weight of 3.8 kg (8.4 lb). Of typical thymalline appearance, the Arctic grayling is distinguished from the similar grayling (T. thymallus) by the absence of dorsal and anal spines and by the presence of a larger number of soft rays in these fins. There is a dark midlateral band between the pectoral and pelvic fins, and the flanks may possess a pink iridescence. T. a. arcticus has been recorded as reaching an age of 18 years.

Podcasts:

  • Fishing for Arctic Grayling in Alaska | Summer Boating Delta Clearwater River

    We take a quick break from the Quonset Hut Shop build and head to Delta Clearwater River for a summer day of fishing. Although we didn't catch a fish that we could retain, we had a blast on the water landing these beauties. We appreciate you tagging along for our Alaskan adventure 😀 Thank you for watching and supporting our channel! 💙 - Eric & Arielle (っ◔◡◔)っ ♥ 𝐒𝐡𝐨𝐩 𝐨𝐮𝐫 𝐄𝐭𝐬𝐲 𝐬𝐭𝐨𝐫𝐞 𝐟𝐨𝐫 𝐜𝐮𝐬𝐭𝐨𝐦 𝐓𝐢𝐞 𝐃𝐲𝐞 𝐒𝐢𝐦𝐩𝐥𝐞 𝐋𝐢𝐯𝐢𝐧𝐠 𝐀𝐥𝐚𝐬𝐤𝐚 𝐦𝐞𝐫𝐜𝐡𝐚𝐧𝐝𝐢𝐬𝐞: ♥ https://www.etsy.com/shop/SimpleLivingAKTieDye Visit our Amazon store to see the products we use and recommend: https://www.amazon.com/shop/simplelivingalaska Our Amazon affiliate link if you wish to support our channel: https://amzn.to/2Xi9CvE Products shown in this video: Sony a6400 Camera: https://amzn.to/3MxB2Hj Go-Pro Hero 7: https://amzn.to/3OL9tL...

    published: 04 Aug 2023
  • Fishing Planet - Unique Artic Grayling - Selenge River Mongolia

    Fishing Planet - Unique Artic Grayling - Selenge River Mongolia Fishing Planet Guides - Selenge River Mongolia: https://www.youtube.com/playlist?list=PLrJfe1o8_vi0yyWb14xwG8QO4A9jERWrx Fishing Planets Guides: https://www.youtube.com/playlist?list=PLrJfe1o8_vi3hyyh5flrJNa_eEDT8oM9l Soopa-Dave Gaming: https://www.youtube.com/c/SoopaDaveGaming Fishing Planet Unique Artic Grayling Selenge River Mongolia

    published: 16 Jul 2022
  • How to Fish for Arctic Grayling

    For best results, watch this video in HD. In this eight-minute video, April Behr, a fisheries biologist for the Alaska Department of Fish and Game, shows how to fish for Arctic grayling. She goes over the tackle and techniques for using both spin fishing and fly fishing gear. She also points out good spots to fish for grayling in a river, and describes their feeding habits. Finally, she shows how to successfully land and release grayling. Features underwater videography of grayling. Produced by Erik Anderson -- ADF&G Sport Fish Division Region III. For more information, visit the Arctic grayling Species Profile page: www.adfg.alaska.gov/index.cfm?adfg=arcticgrayling.main. © 2014 ADF&G

    published: 22 May 2014
  • Top 5 Arctic Grayling Fishing Lure in 2024 | Detailed Reviews & Buyer's Guide

    Links to the Best Arctic Grayling Fishing Lure we listed in today's Arctic Grayling Fishing Lure Review video & Buying Guide: Top 5 Arctic Grayling Fishing Lures List: 1 Acme Kastmaster Spoon https://www.amazon.com/dp/B009CM75N2 2 Mepps Aglia Spinner https://www.amazon.com/dp/B07TNCRC6N 3 Rapala Ultra Light Minnow https://www.amazon.com/dp/B07DNFSPBT 4 Panther Martin Classic Spinner https://www.amazon.com/dp/B0C8LWD34M 5 Blue Fox Vibrax Plated Spinner https://www.amazon.com/dp/B001NXCI3U ----------------------------------------------------------------------- ✅ Subscribe Now: https://shorturl.at/hjBT6 In this video, we have gathered the Best Arctic Grayling Fishing Lure on the market today, so your fishing adventure will be much more thrilling. After ex...

    published: 31 Jul 2023
  • Colorado's Arctic Grayling

    Each June, Colorado Parks and Wildlife fishery technicians and biologists capture and spawn arctic grayling at Joe Wright Reservoir. The eggs are then raised at CPW hatcheries, and the fish are restocked in reservoirs across the state. This video provides an intimate look into that detailed process. Although grayling are not native to Colorado, they are highly prized by anglers. Filmed on June 23, 2020 by Jerry Neal/CPW.

    published: 07 Jul 2020
  • (HUGE) Arctic Village Grayling

    published: 07 Jul 2022
  • How to catch grayling - Fishing for arctic grayling - fly fishing and spinning

    Arctic Grayling are one of my favorite fish to catch. The are awesome to catch on a dry fly or with spinning gear. This video was filmed during our two week trip to Alaska. If you would like to see more of our Alaska fishing adventure check out this 4 part video series at https://youtu.be/NnwBa6Q2ANw

    published: 30 Sep 2017
  • How to Fillet Arctic Grayling (Gutless Method)

    Subscribe to Support the Show! ~ https://bit.ly/reelwestcoast The Liard River System is one of the few places you are able to retain Arctic Grayling. In this video, Brendan is shown by Terry of Northern Rockies Adventures a gutless method for filleting Arctic Grayling. This was filmed at a remote outpost cabin that we flew to by float plane and stayed at for 4 days of sun up to sun down dry fly fishing, and sun down was 11pm.... It was an incredible trip and truly a once in a lifetime experience offered by Northern Rockies Adventures. We WILL be back! 00:00-00:26 Intro 00:27-02:54 How to Fillet 02:55-03:17 What the fish tastes like 03:17-04:38 The experience at Northern Rockies Adventures

    published: 01 Feb 2023
  • Exploring High Mountain Lake for ARCTIC GRAYLING!! (Catch n’ Cook)

    First time fishing for, and cooking Arctic Grayling was a success! I will return soon! Thanks for watching! If you enjoyed, be sure to SUBSCRIBE! my contact email - bassntroutfishing@gmail.com My T shirts - https://bassntroutfishing.myshopify.com

    published: 15 Jun 2022
  • Fishing Planet - Selenge River - Unique - Arctic Grayling - Lure (Selenge Hunt: Mouse Lure)

    published: 24 Dec 2022
Fishing for Arctic Grayling in Alaska | Summer Boating Delta Clearwater River
24:09

Fishing for Arctic Grayling in Alaska | Summer Boating Delta Clearwater River

  • Order:
  • Duration: 24:09
  • Uploaded Date: 04 Aug 2023
  • views: 309272
We take a quick break from the Quonset Hut Shop build and head to Delta Clearwater River for a summer day of fishing. Although we didn't catch a fish that we could retain, we had a blast on the water landing these beauties. We appreciate you tagging along for our Alaskan adventure 😀 Thank you for watching and supporting our channel! 💙 - Eric & Arielle (っ◔◡◔)っ ♥ 𝐒𝐡𝐨𝐩 𝐨𝐮𝐫 𝐄𝐭𝐬𝐲 𝐬𝐭𝐨𝐫𝐞 𝐟𝐨𝐫 𝐜𝐮𝐬𝐭𝐨𝐦 𝐓𝐢𝐞 𝐃𝐲𝐞 𝐒𝐢𝐦𝐩𝐥𝐞 𝐋𝐢𝐯𝐢𝐧𝐠 𝐀𝐥𝐚𝐬𝐤𝐚 𝐦𝐞𝐫𝐜𝐡𝐚𝐧𝐝𝐢𝐬𝐞: ♥ https://www.etsy.com/shop/SimpleLivingAKTieDye Visit our Amazon store to see the products we use and recommend: https://www.amazon.com/shop/simplelivingalaska Our Amazon affiliate link if you wish to support our channel: https://amzn.to/2Xi9CvE Products shown in this video: Sony a6400 Camera: https://amzn.to/3MxB2Hj Go-Pro Hero 7: https://amzn.to/3OL9tLn Weebill S Gimble: https://amzn.to/3QkVrkK Collapsible Fly Rod: https://amzn.to/47gCuWq Onyx Life Preservers: https://amzn.to/3Yp7z6o Leatherman Wingman: https://amzn.to/3XJvcG7 QSP Pocket Knife: https://amzn.to/3DADK9i Don't want to miss an episode? You can 🅢🅤🅑🅢🅒🅡🅘🅑🅔 here: http://www.youtube.com/c/SimpleLivingAlaska Our most popular playlist: https://www.youtube.com/watch?v=43yscm4F1pA&list=PL5dzTsBM4zzBbhZowW6uMJD8mdTts66EN 𝐌𝐨𝐫𝐞 𝐅𝐫𝐨𝐦 𝐒𝐢𝐦𝐩𝐥𝐞 𝐋𝐢𝐯𝐢𝐧𝐠 𝐀𝐥𝐚𝐬𝐤𝐚 - 𝐹𝑎𝑐𝑒𝑏𝑜𝑜𝑘: https://www.facebook.com/SimpleLivingAlaska 𝐼𝑛𝑠𝑡𝑎𝑔𝑟𝑎𝑚: https://www.instagram.com/simplelivingalaska/ We are a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for us to earn fees by linking to Amazon.com and affiliated sites.
https://wn.com/Fishing_For_Arctic_Grayling_In_Alaska_|_Summer_Boating_Delta_Clearwater_River
Fishing Planet - Unique Artic Grayling - Selenge River Mongolia
1:50

Fishing Planet - Unique Artic Grayling - Selenge River Mongolia

  • Order:
  • Duration: 1:50
  • Uploaded Date: 16 Jul 2022
  • views: 15561
Fishing Planet - Unique Artic Grayling - Selenge River Mongolia Fishing Planet Guides - Selenge River Mongolia: https://www.youtube.com/playlist?list=PLrJfe1o8_vi0yyWb14xwG8QO4A9jERWrx Fishing Planets Guides: https://www.youtube.com/playlist?list=PLrJfe1o8_vi3hyyh5flrJNa_eEDT8oM9l Soopa-Dave Gaming: https://www.youtube.com/c/SoopaDaveGaming Fishing Planet Unique Artic Grayling Selenge River Mongolia
https://wn.com/Fishing_Planet_Unique_Artic_Grayling_Selenge_River_Mongolia
How to Fish for Arctic Grayling
7:55

How to Fish for Arctic Grayling

  • Order:
  • Duration: 7:55
  • Uploaded Date: 22 May 2014
  • views: 67742
For best results, watch this video in HD. In this eight-minute video, April Behr, a fisheries biologist for the Alaska Department of Fish and Game, shows how to fish for Arctic grayling. She goes over the tackle and techniques for using both spin fishing and fly fishing gear. She also points out good spots to fish for grayling in a river, and describes their feeding habits. Finally, she shows how to successfully land and release grayling. Features underwater videography of grayling. Produced by Erik Anderson -- ADF&G Sport Fish Division Region III. For more information, visit the Arctic grayling Species Profile page: www.adfg.alaska.gov/index.cfm?adfg=arcticgrayling.main. © 2014 ADF&G
https://wn.com/How_To_Fish_For_Arctic_Grayling
Top 5 Arctic Grayling Fishing Lure in 2024 | Detailed Reviews & Buyer's Guide
3:44

Top 5 Arctic Grayling Fishing Lure in 2024 | Detailed Reviews & Buyer's Guide

  • Order:
  • Duration: 3:44
  • Uploaded Date: 31 Jul 2023
  • views: 163
Links to the Best Arctic Grayling Fishing Lure we listed in today's Arctic Grayling Fishing Lure Review video & Buying Guide: Top 5 Arctic Grayling Fishing Lures List: 1 Acme Kastmaster Spoon https://www.amazon.com/dp/B009CM75N2 2 Mepps Aglia Spinner https://www.amazon.com/dp/B07TNCRC6N 3 Rapala Ultra Light Minnow https://www.amazon.com/dp/B07DNFSPBT 4 Panther Martin Classic Spinner https://www.amazon.com/dp/B0C8LWD34M 5 Blue Fox Vibrax Plated Spinner https://www.amazon.com/dp/B001NXCI3U ----------------------------------------------------------------------- ✅ Subscribe Now: https://shorturl.at/hjBT6 In this video, we have gathered the Best Arctic Grayling Fishing Lure on the market today, so your fishing adventure will be much more thrilling. After extensive research, considering all types of consumers, we made this list based on our opinions and ranked them based on quality, durability, brand reputation, and other important things. So, without worrying a bit, get the best Arctic Grayling Fishing Lure right now. ─────── ❏ Business Inquiries ❏ ───────── If you would like to promote your own product, or for any other business inquiries, please contact us at📧Mail: amazonproductreview07@gmail.com ***Music Source: Song: Ikson - New Day (Vlog No Copyright Music) Music provided by Vlog No Copyright Music. Video Link: https://youtu.be/cVA-9JHwbFY ***Video Source: --------------------------------------------------------------------- ***Disclaimer: The following video abides by the YouTube Community Guideline. The footage used in this video is for educational purposes and all the information covered in this video was collected from unofficial sources and assumptions. ***Footage, music, images, and graphics used in the video falls under the YouTube Fair Usage Policy Under Section 107 of the Copyright Act 1976. If you have any copyright issues, please contact us. FTC Disclosure: Fish-Finder is a participant of Amazon Affiliate Program. Provided Amazon product links are linked to my Amazon Affiliate account & I receive small commissions from every successful purchase made using these links. This supports the channel to run and adds no extra cost to you as a customer. ✅ Subscribe Now: https://shorturl.at/hjBT6 #ArcticGraylingFishingLure #BestArcticGraylingFishingLure #ArcticGraylingFishingLureReview
https://wn.com/Top_5_Arctic_Grayling_Fishing_Lure_In_2024_|_Detailed_Reviews_Buyer's_Guide
Colorado's Arctic Grayling
3:14

Colorado's Arctic Grayling

  • Order:
  • Duration: 3:14
  • Uploaded Date: 07 Jul 2020
  • views: 8765
Each June, Colorado Parks and Wildlife fishery technicians and biologists capture and spawn arctic grayling at Joe Wright Reservoir. The eggs are then raised at CPW hatcheries, and the fish are restocked in reservoirs across the state. This video provides an intimate look into that detailed process. Although grayling are not native to Colorado, they are highly prized by anglers. Filmed on June 23, 2020 by Jerry Neal/CPW.
https://wn.com/Colorado's_Arctic_Grayling
(HUGE) Arctic Village Grayling
0:10

(HUGE) Arctic Village Grayling

  • Order:
  • Duration: 0:10
  • Uploaded Date: 07 Jul 2022
  • views: 5837
https://wn.com/(Huge)_Arctic_Village_Grayling
How to catch grayling - Fishing for arctic grayling - fly fishing and spinning
10:15

How to catch grayling - Fishing for arctic grayling - fly fishing and spinning

  • Order:
  • Duration: 10:15
  • Uploaded Date: 30 Sep 2017
  • views: 83541
Arctic Grayling are one of my favorite fish to catch. The are awesome to catch on a dry fly or with spinning gear. This video was filmed during our two week trip to Alaska. If you would like to see more of our Alaska fishing adventure check out this 4 part video series at https://youtu.be/NnwBa6Q2ANw
https://wn.com/How_To_Catch_Grayling_Fishing_For_Arctic_Grayling_Fly_Fishing_And_Spinning
How to Fillet Arctic Grayling (Gutless Method)
5:05

How to Fillet Arctic Grayling (Gutless Method)

  • Order:
  • Duration: 5:05
  • Uploaded Date: 01 Feb 2023
  • views: 3308
Subscribe to Support the Show! ~ https://bit.ly/reelwestcoast The Liard River System is one of the few places you are able to retain Arctic Grayling. In this video, Brendan is shown by Terry of Northern Rockies Adventures a gutless method for filleting Arctic Grayling. This was filmed at a remote outpost cabin that we flew to by float plane and stayed at for 4 days of sun up to sun down dry fly fishing, and sun down was 11pm.... It was an incredible trip and truly a once in a lifetime experience offered by Northern Rockies Adventures. We WILL be back! 00:00-00:26 Intro 00:27-02:54 How to Fillet 02:55-03:17 What the fish tastes like 03:17-04:38 The experience at Northern Rockies Adventures
https://wn.com/How_To_Fillet_Arctic_Grayling_(Gutless_Method)
Exploring High Mountain Lake for ARCTIC GRAYLING!! (Catch n’ Cook)
16:43

Exploring High Mountain Lake for ARCTIC GRAYLING!! (Catch n’ Cook)

  • Order:
  • Duration: 16:43
  • Uploaded Date: 15 Jun 2022
  • views: 13820
First time fishing for, and cooking Arctic Grayling was a success! I will return soon! Thanks for watching! If you enjoyed, be sure to SUBSCRIBE! my contact email - bassntroutfishing@gmail.com My T shirts - https://bassntroutfishing.myshopify.com
https://wn.com/Exploring_High_Mountain_Lake_For_Arctic_Grayling_(Catch_N’_Cook)
Fishing Planet - Selenge River - Unique - Arctic Grayling - Lure (Selenge Hunt: Mouse Lure)
1:18

Fishing Planet - Selenge River - Unique - Arctic Grayling - Lure (Selenge Hunt: Mouse Lure)

  • Order:
  • Duration: 1:18
  • Uploaded Date: 24 Dec 2022
  • views: 2353
https://wn.com/Fishing_Planet_Selenge_River_Unique_Arctic_Grayling_Lure_(Selenge_Hunt_Mouse_Lure)
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 1:14:23

Fishing for Arctic Grayling in Alaska | Summer Boating Delta Clearwater River

We take a quick break from the Quonset Hut Shop build and head to Delta Clearwater River for a summer day of fishing. Although we didn't catch a fish that we could retain, we had a blast on the water landing these beauties. We appreciate you tagging along for our Alaskan adventure 😀 Thank you for watching and supporting our channel! 💙 - Eric & Arielle (っ◔◡◔)っ ♥ 𝐒𝐡𝐨𝐩 𝐨𝐮𝐫 𝐄𝐭𝐬𝐲 𝐬𝐭𝐨𝐫𝐞 𝐟𝐨𝐫 𝐜𝐮𝐬𝐭𝐨𝐦 𝐓𝐢𝐞 𝐃𝐲𝐞 𝐒𝐢𝐦𝐩𝐥𝐞 𝐋𝐢𝐯𝐢𝐧𝐠 𝐀𝐥𝐚𝐬𝐤𝐚 𝐦𝐞𝐫𝐜𝐡𝐚𝐧𝐝𝐢𝐬𝐞: ♥ https://www.etsy.com/shop/SimpleLivingAKTieDye Visit our Amazon store to see the products we use and recommend: https://www.amazon.com/shop/simplelivingalaska Our Amazon affiliate link if you wish to support our channel: https://amzn.to/2Xi9CvE Products shown in this video: Sony a6400 Camera: https://amzn.to/3MxB2Hj Go-Pro Hero 7: https://amzn.to/3OL9tLn Weebill S Gimble: https://amzn.to/3QkVrkK Collapsible Fly Rod: https://amzn.to/47gCuWq Onyx Life Preservers: https://amzn.to/3Yp7z6o Leatherman Wingman: https://amzn.to/3XJvcG7 QSP Pocket Knife: https://amzn.to/3DADK9i Don't want to miss an episode? You can 🅢🅤🅑🅢🅒🅡🅘🅑🅔 here: http://www.youtube.com/c/SimpleLivingAlaska Our most popular playlist: https://www.youtube.com/watch?v=43yscm4F1pA&list=PL5dzTsBM4zzBbhZowW6uMJD8mdTts66EN 𝐌𝐨𝐫𝐞 𝐅𝐫𝐨𝐦 𝐒𝐢𝐦𝐩𝐥𝐞 𝐋𝐢𝐯𝐢𝐧𝐠 𝐀𝐥𝐚𝐬𝐤𝐚 - 𝐹𝑎𝑐𝑒𝑏𝑜𝑜𝑘: https://www.facebook.com/SimpleLivingAlaska 𝐼𝑛𝑠𝑡𝑎𝑔𝑟𝑎𝑚: https://www.instagram.com/simplelivingalaska/ We are a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for us to earn fees by linking to Amazon.com and affiliated sites.
24:09
Fishing for Arctic Grayling in Alaska | Summer Boating Delta Clearwater River
We take a quick break from the Quonset Hut Shop build and head to Delta Clearwater River f...
published: 04 Aug 2023
Play in Full Screen
1:50
Fishing Planet - Unique Artic Grayling - Selenge River Mongolia
Fishing Planet - Unique Artic Grayling - Selenge River Mongolia Fishing Planet Guides - S...
published: 16 Jul 2022
Play in Full Screen
7:55
How to Fish for Arctic Grayling
For best results, watch this video in HD. In this eight-minute video, April Behr, a fishe...
published: 22 May 2014
Play in Full Screen
3:44
Top 5 Arctic Grayling Fishing Lure in 2024 | Detailed Reviews & Buyer's Guide
Links to the Best Arctic Grayling Fishing Lure we listed in today's Arctic Grayling Fishin...
published: 31 Jul 2023
Play in Full Screen
3:14
Colorado's Arctic Grayling
Each June, Colorado Parks and Wildlife fishery technicians and biologists capture and spaw...
published: 07 Jul 2020
Play in Full Screen
0:10
(HUGE) Arctic Village Grayling
published: 07 Jul 2022
Play in Full Screen
10:15
How to catch grayling - Fishing for arctic grayling - fly fishing and spinning
Arctic Grayling are one of my favorite fish to catch. The are awesome to catch on a dry fl...
published: 30 Sep 2017
Play in Full Screen
5:05
How to Fillet Arctic Grayling (Gutless Method)
Subscribe to Support the Show! ~ https://bit.ly/reelwestcoast The Liard River System is o...
published: 01 Feb 2023
Play in Full Screen
16:43
Exploring High Mountain Lake for ARCTIC GRAYLING!! (Catch n’ Cook)
First time fishing for, and cooking Arctic Grayling was a success! I will return soon! Th...
published: 15 Jun 2022
Play in Full Screen
1:18
Fishing Planet - Selenge River - Unique - Arctic Grayling - Lure (Selenge Hunt: Mouse Lure)
published: 24 Dec 2022
Play in Full Screen

Arctic grayling

Arctic grayling (Thymallus arcticus) is a species of freshwater fish in the salmon family Salmonidae. T. arcticus is widespread throughout the Arctic and Pacific drainages in Canada, Alaska, and Siberia, as well as the upper Missouri River drainage in Montana. In the U.S. state of Arizona, an introduced population is found in the Lee Valley and other lakes in the White Mountains. They were also stocked at Toppings Lake by the Teton Range.

Taxonomy

The scientific name of the Arctic grayling is Thymallus arcticus. It was named in 1776 by German zoologist Peter Simon Pallas from specimens collected in Russia. The name of the genus Thymallus first given to grayling (T. thymallus) described in the 1758 edition of Systema Naturae by Swedish zoologist Carl Linnaeus originates from the faint smell of the herb thyme, which emanates from the flesh.

Description

Arctic grayling grow to a maximum recorded length of 76 cm (30 in) and a maximum recorded weight of 3.8 kg (8.4 lb). Of typical thymalline appearance, the Arctic grayling is distinguished from the similar grayling (T. thymallus) by the absence of dorsal and anal spines and by the presence of a larger number of soft rays in these fins. There is a dark midlateral band between the pectoral and pelvic fins, and the flanks may possess a pink iridescence. T. a. arcticus has been recorded as reaching an age of 18 years.

'); } 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: arctic grayling

Edit

Peer Review Plan: Species Status Assessment Report for Upper Missouri River Arctic Grayling (Thymallus arcticus) Distinct Populations Segment (DPS) (US Fish and Wildlife Service)

Public Technologies 06 Feb 2025
Species Status Assessment Report for Upper Missouri River Arctic Grayling (Thymallus arcticus) Distinct Populations Segment (DPS) ... The reviewer should have knowledge of or experience with Arctic grayling or similar species biology.
Edit

Arctic grayling reintroduction begins with May 12 ceremony

Iosco County News Herald 05 Feb 2025
LANSING – The effort to reintroduce Arctic grayling to Michigan waters will enter its next phase with a ceremony Monday, May 12, at the Oden State Fish Hatchery Visitor Center in Alanson ... .
Edit

400,000 Arctic grayling eggs to be planted in Michigan waters 89 years after local extinction

Fairbanks Daily News-Miner 31 Jan 2025
It’s been 89 years since Arctic grayling have been self-sustaining in Michigan’s waters. That could soon change ... .
Edit

DNR and partners work to reintroduce Arctic grayling to Michigan waters. Here's what to know

Cheboygan Daily Tribune 29 Jan 2025
ODEN — More Arctic grayling will be coming to Michigan waters this year ... Arctic grayling have a sail-like dorsal fin and often have iridescent markings, according to the DNR.Where are Arctic grayling usually found?.
Edit

Farmer’s Almanac predicts lingering winter, spring with zing

Michigan Live 28 Jan 2025
When warmer weather does arrive, it will include plenty of thunderstorms ... 400,000 Arctic grayling eggs to be planted in Michigan waters 89 years after local extinctionWitness jaw dropping snowboard tricks from mere feet away as pros shred through U.P.
Edit

Bat-eared fox doesn’t want to eat her broccoli either

Michigan Live 28 Jan 2025
Farmer’s Almanac predicts lingering winter, spring with zing400,000 Arctic grayling eggs to be planted in Michigan waters 89 years after local extinctionWitness jaw dropping snowboard tricks from mere feet away as pros shred through U.P. downtown ....
Edit

What does a porcupine’s snoot feel like? This zoo has the answer

Michigan Live 28 Jan 2025
“The No. 1 question we get ... Farmer’s Almanac predicts lingering winter, spring with zing400,000 Arctic grayling eggs to be planted in Michigan waters 89 years after local extinctionMackinac Bridge closed to some vehicles amid winds up to 64 mph ....
Edit

Jeep the Mac adds bonfires with Mackinac Bridge view, won’t parade across the Straits

Michigan Live 28 Jan 2025
ST ... Ignace and on Drummond Island ... Farmer’s Almanac predicts lingering winter, spring with zing400,000 Arctic grayling eggs to be planted in Michigan waters 89 years after local extinctionMackinac Bridge closed to some vehicles amid winds up to 64 mph.
Edit

Record 19M Americans to cruise this year, Caribbean is top destination

Michigan Live 28 Jan 2025
Farmer’s Almanac predicts lingering winter, spring with zing400,000 Arctic grayling eggs to be planted in Michigan waters 89 years after local extinctionWitness jaw dropping snowboard tricks from mere feet away as pros shred through U.P. downtown ....
Edit

Snow outlook good for U.P.’s CopperDog 150 sled races

Michigan Live 28 Jan 2025
28 to March 2 ... RELATED ... Farmer’s Almanac predicts lingering winter, spring with zing400,000 Arctic grayling eggs to be planted in Michigan waters 89 years after local extinctionMackinac Bridge closed to some vehicles amid winds up to 64 mph ....
Edit

Guided snowshoe hikes through woods, snow-covered dunes coming to Up North state park

Michigan Live 28 Jan 2025
on Saturdays, Feb ... RELATED ... Farmer’s Almanac predicts lingering winter, spring with zing400,000 Arctic grayling eggs to be planted in Michigan waters 89 years after local extinctionMackinac Bridge closed to some vehicles amid winds up to 64 mph ....
Edit

DNR, Native American tribes move ahead with Arctic grayling plan. Where the fish will swim

Lansing State Journal 24 Jan 2025
In 2016, the DNR, in partnership with the Little River Band of Ottawa Indians, announced an initiative to reintroduce Arctic grayling to the state, creating the Michigan Arctic Grayling Initiative, or MAGI.
Edit

‘Full House’ star’s wife says Michigan actor’s cancer battle is ‘getting more difficult’

Michigan Live 24 Jan 2025
borderX-country skiing conditions are ‘amazing’ at this Up North park 15 dead cats found in Lansing home, animal ...
Edit

Spacecraft headed to the moon captures amazing new view of Earth

Michigan Live 24 Jan 2025
borderX-country skiing conditions are ‘amazing’ at this Up North park 15 dead cats found in Lansing home, animal control to request criminal charges400,000 Arctic grayling eggs to be planted in ...
×