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

Inselberg

An inselberg or monadnock /məˈnædnɒk/ is an isolated rock hill, knob, ridge, or small mountain that rises abruptly from a gently sloping or virtually level surrounding plain.

In southern and south-central Africa, a similar formation of granite is known as a koppie, an Afrikaans word ("little head") from the Dutch word kopje.

If the inselberg is dome-shaped and formed from granite or gneiss, it can also be called a bornhardt, though not all bornhardts are inselbergs.

Definitions

The word inselberg is German for "island mountain"; the name was coined by geologist Wilhelm Bornhardt (1864–1946) in 1900 to describe the abundance of such features found in southern Africa. At that time, the term applied only to arid landscape features. However, the term inselberg has since been used to describe a broader geography and range of rock features, leading to confusion about the precise definition of the term. In a 1973 study examining the use of the term, one researcher found that the term had been used for features in savannah climates 40% of the time, arid or semi-arid climates 32% of the time, humid-subtropical and arctic 12% of the time, and 6% each in humid-tropical and Mediterranean climates. As recently as 1972, the term has been defined as "steep-sided isolated hills rising relatively abruptly above gently sloping ground". This definition includes such features as buttes; conical hills with rectilinear sides typically found in arid regions; regolith-covered concave-convex hills; rock crests over regolith slopes; rock domes with near vertical sides; tors (koppies) formed of large boulders but with solid rock cores. Thus, the terms monadnock and inselberg may not perfectly match, though some authors have explicitly argued these terms are in fact completely synonymous.

Monadnock Lifetime Products

Monadnock Lifetime Products, Inc. is a weapons manufacturer providing equipment to law enforcement and private security companies. Monadnock is well known for several models of police baton they produce. The company is one of several subsidiaries under Safariland, LLC

Company products

Monadnock manufactures several types of police baton, including long polycarbonate riot sticks, side-handle nightsticks (the most famous being the PR-24), and both friction-locking and mechanically locking telescoping batons.

Monadnock's "AutoLock" line of batons are somewhat unique in the industry. Unlike the friction-lock type made by ASP, Inc. and other manufacturers, AutoLocks lock into their extended position via a ball-bearing mechanism. They can be deployed via inertia or simply pulled open with both hands. They are collapsed by pressing a button located in the pommel, rather than being struck on a hard surface.

Other services

In addition to creating products for public service and personal defense, Monadnock also offers certification programs for the personnel most likely to use them. The most well-known certification program is the Monadnock Defensive Tactics System (MDTS), created by Lee Anderson of Louisiana. Since its initial founding, MDTS has evolved and therefore appears different from department to department or teacher to teacher. Originally, it was based upon aikido, since that art is most famous for restraining people with arm-locks and takedowns that use the opponent's own energy against him; this would be similar to the Japanese system of keijutsukai, which also has roots in aikido. Many police instructors, however, have modified the training of the original MDTS system so that it may be taught much like jujutsu or kickboxing. Most recent versions look much like Jeet Kune Do, with elements drawn from Tony Blauer's SPEAR System and MMA ground-fighting.

Monadnock (ACM-14)

Monadnock (ACM-14) was originally built as an M1 mine planter for the U.S. Army Coast Artillery Corps, Mine Planter Service as USAMP Major Samuel Ringgold (MP 11) by the Marietta Manufacturing Co., Point Pleasant, WV and delivered to the Army December 1942. The ship was named for Samuel Ringgold (1796–1846), an officer noted as the "Father of Modern Artillery" that fell in the Mexican-American War.

The mine planter was transferred to the U.S. Navy in March 1951 to become an Auxiliary Minelayer (ACM / MMA) under naval designation. She was then berthed at Boston as a unit of the Atlantic Reserve Fleet. While in the Reserve Fleet, she was redesignated MMA-14, 7 February 1955, and named Monadnock, 1 May 1955; the second ACM to bear this name. The ship was never commissioned and thus never bore the "USS" prefix. Monadnock was struck from the Navy list on 1 July 1960 and sold to commercial interests. In commercial service the ship was named Thiti, Amazonia and eventually Dear operating into the 1980s under Italian registry.

Podcasts:

  • Pushing the limits, The Monadnock Building

    Burnham & Root, The Monadnock Building, 1885–91 and Holabird & Roche south addition (Kearsarge) 1891–93, 53 West Jackson Boulevard, Chicago, Illinois A conversation with Dr. Beth Harris and Dr. Steven Zucker standing on a very busy intersection looking at The Monadnock Building

    published: 06 Sep 2022
  • Tips for Monadnock Adventure

    Interpretive Rangers, Kelsey Johnson and Rachael Esh offer tips for your next hiking adventure on Mount Monadnock. To hike safely, you should have sturdy hiking boots, a waterproof jacket or windbreaker, and a sweater. Remember, the higher the elevation, the colder, windier, and wetter the weather. Warmer gear is needed during fall, winter, and spring. Be sure to carry drinking water, a first aid kit, and a flashlight in your pack, as well as an emergency supply of foods such as cheese, chocolate, raisins, or other high-energy snacks. For a printable map of Monadnock's hiking trails and other information about Monadnock State Park visit our webpage: http://www.nhstateparks.org/explore/state-parks/monadnock-state-park.aspx Music for this video from: freeplaymusic.com

    published: 02 Oct 2013
  • Mt Monadnock New Hampshire Hike Guide: WORLD'S 2nd MOST CLIMBED MOUNTAIN

    As crazy as it sounds, one of the world's most climbed/hiked mountains can be found in New Hampshire. Mt Monadnock stands at just 3,165ft high but attracts an estimated 125,000+ hikers per year. This guide takes you up the White Dot Trail and down the White Cross, without a doubt the two most popular on the mountain. This was filmed in July. Read a more detailed trail guide on this hike on my website: https://www.thevirtualsherpa.com/mt-monadnock-new-hampshire-hike-guide/ Purchase Virtual Sherpa Gear Here! https://www.thevirtualsherpa.com/shop/ Gear Used Hiker Hunger Hiking Poles: https://amzn.to/3yzLcgv Men's Trail Runners: https://amzn.to/3d2WQG8 Women's Trail Runners: https://amzn.to/36AD1DB La Sportiva Trango Hiking Boots (Men's): https://amzn.to/2wcdTFj La Sportiva Trango Hiking ...

    published: 23 Aug 2021
  • Trailer for "Monadnock, The Mountain that Stands Alone"

    Assembly of clips from interviews with music by Lawrence Siegel for the upcoming film on Mount Monadnock. It begins with Charlie Royce feeding the Turkeys and speaking of the folklore of the mountain being denuded to exterminate wolves that prowled the peak. If you want to see the full film trailer you are invited to the Harris Center event http://www.harriscenter.org/ August 11th at 7:00pm. More about the film www.monadnockfilm.org Music Credit: Lawrence Siegel

    published: 09 Sep 2009
  • Secrets of Mount Monadnock

    Explore Pumpelly Cave, the summit, and Eagle's Nest Instagram : http://instagram.com/mattrwoodward/ Filmed On : Sony a6000, Canon G7X, DJI Mavic Pro Imp photo credit : hopsonrocks.com 0:00 Intro 1:53 Pumpelly Cave 3:58 Summit 4:20 Eagles Nest 5:21 The Rest 5:47 Behind the Scenes

    published: 23 Sep 2017
  • Mount Monadnock ~ My Most Epic Hike Yet!

    Merch Shop: https://the-wandering-woodsman.myspreadshop.com/ Instagram: https://www.instagram.com/thewanderingwoodsman_youtube/ Facebook: https://www.facebook.com/profile.php?id=100063583777147 Patreon: https://www.patreon.com/TheWanderingWoodsman?fan_landing=true Email: pawoodsman76@gmail.com Mailing Address: PO Box 205, Womelsdorf PA 19567

    published: 16 Sep 2022
  • New Hampshire Chronicle: A Mount Monadnock Record Breaker

    Hiker from Rindge sets new record Subscribe to WMUR on YouTube now for more: http://bit.ly/1lOjX9C Get more Manchester news: http://www.wmur.com Like us: https://www.facebook.com/wmur9 Follow us: https://twitter.com/WMUR9 Instagram: https://www.instagram.com/wmur9/

    published: 25 Jun 2021
  • Monadnock Region sees highest snow totals

    The Monadnock Region picked up several inches of snow from a storm that started Sunday and lingered into Monday. Subscribe to WMUR on YouTube now for more: http://bit.ly/1lOjX9C Get more Manchester news: http://www.wmur.com Like us: https://www.facebook.com/wmur9 Follow us: https://twitter.com/WMUR9 Instagram: https://www.instagram.com/wmur9/

    published: 29 Jan 2024
  • New Hampshire's Mt. Monadnock State Park boasts incredible fall views

    New Hampshire's Mt. Monadnock State Park boasts incredible fall views Subscribe to WCVB on YouTube now for more: http://bit.ly/1e8lAMZ Get more Boston news: http://www.wcvb.com Like us: https://www.facebook.com/wcvb5 Follow us: https://twitter.com/WCVB Instagram: https://www.instagram.com/wcvb5/

    published: 22 Nov 2022
  • What is Peneplain and Monadnock: Peneplain/Monadnock

    A peneplain is a low-relief plain which is formed as a result of stream erosion. It is produced by fluvial erosion that would occur, in the course of geologic time. Peneplains are sometimes associated with the cycle of erosion also. The term "peneplain" refers to an area that resembles a plain. It is created by river erosion and continues until all of the elevated sections are eroded. When a peneplain is raised, it becomes a Plateau. A Monadnock is an isolated mountain representing an erosional residual peak or knob. Monadnock" is formed from the exposure of a harder rock as a result of the erosion of a softer one once surrounding it. Some time Monadnocks also called "Inselberg. What is Caldera: Caldera volcano/Yellowstone caldera https://www.youtube.com/watch?v=Uk1GLAPEVoQ Plateau...

    published: 16 Feb 2022
Pushing the limits, The Monadnock Building
4:15

Pushing the limits, The Monadnock Building

  • Order:
  • Duration: 4:15
  • Uploaded Date: 06 Sep 2022
  • views: 7740
Burnham & Root, The Monadnock Building, 1885–91 and Holabird & Roche south addition (Kearsarge) 1891–93, 53 West Jackson Boulevard, Chicago, Illinois A conversation with Dr. Beth Harris and Dr. Steven Zucker standing on a very busy intersection looking at The Monadnock Building
https://wn.com/Pushing_The_Limits,_The_Monadnock_Building
Tips for Monadnock Adventure
3:16

Tips for Monadnock Adventure

  • Order:
  • Duration: 3:16
  • Uploaded Date: 02 Oct 2013
  • views: 29081
Interpretive Rangers, Kelsey Johnson and Rachael Esh offer tips for your next hiking adventure on Mount Monadnock. To hike safely, you should have sturdy hiking boots, a waterproof jacket or windbreaker, and a sweater. Remember, the higher the elevation, the colder, windier, and wetter the weather. Warmer gear is needed during fall, winter, and spring. Be sure to carry drinking water, a first aid kit, and a flashlight in your pack, as well as an emergency supply of foods such as cheese, chocolate, raisins, or other high-energy snacks. For a printable map of Monadnock's hiking trails and other information about Monadnock State Park visit our webpage: http://www.nhstateparks.org/explore/state-parks/monadnock-state-park.aspx Music for this video from: freeplaymusic.com
https://wn.com/Tips_For_Monadnock_Adventure
Mt Monadnock New Hampshire Hike Guide: WORLD'S 2nd MOST CLIMBED MOUNTAIN
15:58

Mt Monadnock New Hampshire Hike Guide: WORLD'S 2nd MOST CLIMBED MOUNTAIN

  • Order:
  • Duration: 15:58
  • Uploaded Date: 23 Aug 2021
  • views: 10906
As crazy as it sounds, one of the world's most climbed/hiked mountains can be found in New Hampshire. Mt Monadnock stands at just 3,165ft high but attracts an estimated 125,000+ hikers per year. This guide takes you up the White Dot Trail and down the White Cross, without a doubt the two most popular on the mountain. This was filmed in July. Read a more detailed trail guide on this hike on my website: https://www.thevirtualsherpa.com/mt-monadnock-new-hampshire-hike-guide/ Purchase Virtual Sherpa Gear Here! https://www.thevirtualsherpa.com/shop/ Gear Used Hiker Hunger Hiking Poles: https://amzn.to/3yzLcgv Men's Trail Runners: https://amzn.to/3d2WQG8 Women's Trail Runners: https://amzn.to/36AD1DB La Sportiva Trango Hiking Boots (Men's): https://amzn.to/2wcdTFj La Sportiva Trango Hiking Boots (Women's): https://amzn.to/2UJG9cA Backpack: https://amzn.to/2LY39ii Optional: Garmin inReach GPS:https://amzn.to/3ckhnFq Optional: Headlamp: https://amzn.to/2SmfroN Optional: Garmin Fenix Watch: https://amzn.to/38cSlIB Filming Equipment Drone: https://amzn.to/2wrSS9Y Camera: https://amzn.to/388OXg0 Lens: https://amzn.to/2Skyv5w GoPro: https://amzn.to/2v5uFFm GoPro Max: https://amzn.to/2O2RMu3 Selfie Stick: https://amzn.to/2RGwxj8 Joby Tripod: https://amzn.to/36UVxFm Affiliate links to these popular outdoor retailers. REI: http://bit.ly/2NvaMAd Moosejaw: http://bit.ly/2XCNBsz Backcountry: http://bit.ly/2NBJ9FY Steep & Cheap: http://bit.ly/32a8r11 Black Diamond: https://bit.ly/2qSBR5v DISCLAIMER: Links included in this description might be affiliate links. If you purchase a product or service with the links that I provide I may receive a small commission. There is no additional charge to you. Thank you for supporting The Virtual Sherpa so I can continue to provide you with free content! Want content early? FOLLOW Me! INSTAGRAM: https://www.instagram.com/thevirtualsherpa/ HIKING WEBSITE: http://thevirtualsherpa.com FACEBOOK: https://www.facebook.com/TheVirtualSherpa
https://wn.com/Mt_Monadnock_New_Hampshire_Hike_Guide_World'S_2Nd_Most_Climbed_Mountain
Trailer for "Monadnock, The Mountain that Stands Alone"
6:02

Trailer for "Monadnock, The Mountain that Stands Alone"

  • Order:
  • Duration: 6:02
  • Uploaded Date: 09 Sep 2009
  • views: 3809
Assembly of clips from interviews with music by Lawrence Siegel for the upcoming film on Mount Monadnock. It begins with Charlie Royce feeding the Turkeys and speaking of the folklore of the mountain being denuded to exterminate wolves that prowled the peak. If you want to see the full film trailer you are invited to the Harris Center event http://www.harriscenter.org/ August 11th at 7:00pm. More about the film www.monadnockfilm.org Music Credit: Lawrence Siegel
https://wn.com/Trailer_For_Monadnock,_The_Mountain_That_Stands_Alone
Secrets of Mount Monadnock
7:09

Secrets of Mount Monadnock

  • Order:
  • Duration: 7:09
  • Uploaded Date: 23 Sep 2017
  • views: 16494
Explore Pumpelly Cave, the summit, and Eagle's Nest Instagram : http://instagram.com/mattrwoodward/ Filmed On : Sony a6000, Canon G7X, DJI Mavic Pro Imp photo credit : hopsonrocks.com 0:00 Intro 1:53 Pumpelly Cave 3:58 Summit 4:20 Eagles Nest 5:21 The Rest 5:47 Behind the Scenes
https://wn.com/Secrets_Of_Mount_Monadnock
Mount Monadnock ~ My Most Epic Hike Yet!
24:20

Mount Monadnock ~ My Most Epic Hike Yet!

  • Order:
  • Duration: 24:20
  • Uploaded Date: 16 Sep 2022
  • views: 6246
Merch Shop: https://the-wandering-woodsman.myspreadshop.com/ Instagram: https://www.instagram.com/thewanderingwoodsman_youtube/ Facebook: https://www.facebook.com/profile.php?id=100063583777147 Patreon: https://www.patreon.com/TheWanderingWoodsman?fan_landing=true Email: pawoodsman76@gmail.com Mailing Address: PO Box 205, Womelsdorf PA 19567
https://wn.com/Mount_Monadnock_~_My_Most_Epic_Hike_Yet
New Hampshire Chronicle: A Mount Monadnock Record Breaker
7:03

New Hampshire Chronicle: A Mount Monadnock Record Breaker

  • Order:
  • Duration: 7:03
  • Uploaded Date: 25 Jun 2021
  • views: 3071
Hiker from Rindge sets new record Subscribe to WMUR on YouTube now for more: http://bit.ly/1lOjX9C Get more Manchester news: http://www.wmur.com Like us: https://www.facebook.com/wmur9 Follow us: https://twitter.com/WMUR9 Instagram: https://www.instagram.com/wmur9/
https://wn.com/New_Hampshire_Chronicle_A_Mount_Monadnock_Record_Breaker
Monadnock Region sees highest snow totals
1:23

Monadnock Region sees highest snow totals

  • Order:
  • Duration: 1:23
  • Uploaded Date: 29 Jan 2024
  • views: 590
The Monadnock Region picked up several inches of snow from a storm that started Sunday and lingered into Monday. Subscribe to WMUR on YouTube now for more: http://bit.ly/1lOjX9C Get more Manchester news: http://www.wmur.com Like us: https://www.facebook.com/wmur9 Follow us: https://twitter.com/WMUR9 Instagram: https://www.instagram.com/wmur9/
https://wn.com/Monadnock_Region_Sees_Highest_Snow_Totals
New Hampshire's Mt. Monadnock State Park boasts incredible fall views
5:57

New Hampshire's Mt. Monadnock State Park boasts incredible fall views

  • Order:
  • Duration: 5:57
  • Uploaded Date: 22 Nov 2022
  • views: 1454
New Hampshire's Mt. Monadnock State Park boasts incredible fall views Subscribe to WCVB on YouTube now for more: http://bit.ly/1e8lAMZ Get more Boston news: http://www.wcvb.com Like us: https://www.facebook.com/wcvb5 Follow us: https://twitter.com/WCVB Instagram: https://www.instagram.com/wcvb5/
https://wn.com/New_Hampshire's_Mt._Monadnock_State_Park_Boasts_Incredible_Fall_Views
What is Peneplain and Monadnock: Peneplain/Monadnock
2:22

What is Peneplain and Monadnock: Peneplain/Monadnock

  • Order:
  • Duration: 2:22
  • Uploaded Date: 16 Feb 2022
  • views: 10042
A peneplain is a low-relief plain which is formed as a result of stream erosion. It is produced by fluvial erosion that would occur, in the course of geologic time. Peneplains are sometimes associated with the cycle of erosion also. The term "peneplain" refers to an area that resembles a plain. It is created by river erosion and continues until all of the elevated sections are eroded. When a peneplain is raised, it becomes a Plateau. A Monadnock is an isolated mountain representing an erosional residual peak or knob. Monadnock" is formed from the exposure of a harder rock as a result of the erosion of a softer one once surrounding it. Some time Monadnocks also called "Inselberg. What is Caldera: Caldera volcano/Yellowstone caldera https://www.youtube.com/watch?v=Uk1GLAPEVoQ Plateau/What is Plateau/ How it forms https://www.youtube.com/watch?v=B8TD5_jTFoQ&t=2s What is 'Plain' in Geography: How Plain forms https://www.youtube.com/watch?v=oAFQNZASzq8&t=4s Geotourism around the world https://thejerker.com Follow us on Instagram https://www.instagram.com/sutikshan.dwivedi/ Follow us on the Facebook page https://www.facebook.com/sutikshan.dwivedi https://www.facebook.com/GeoTourismandmodernGeotechniques
https://wn.com/What_Is_Peneplain_And_Monadnock_Peneplain_Monadnock
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 1:17:45

Pushing the limits, The Monadnock Building

Burnham & Root, The Monadnock Building, 1885–91 and Holabird & Roche south addition (Kearsarge) 1891–93, 53 West Jackson Boulevard, Chicago, Illinois A conversation with Dr. Beth Harris and Dr. Steven Zucker standing on a very busy intersection looking at The Monadnock Building
4:15
Pushing the limits, The Monadnock Building
Burnham & Root, The Monadnock Building, 1885–91 and Holabird & Roche south addition (Kears...
published: 06 Sep 2022
Play in Full Screen
3:16
Tips for Monadnock Adventure
Interpretive Rangers, Kelsey Johnson and Rachael Esh offer tips for your next hiking adven...
published: 02 Oct 2013
Play in Full Screen
15:58
Mt Monadnock New Hampshire Hike Guide: WORLD'S 2nd MOST CLIMBED MOUNTAIN
As crazy as it sounds, one of the world's most climbed/hiked mountains can be found in New...
published: 23 Aug 2021
Play in Full Screen
6:02
Trailer for "Monadnock, The Mountain that Stands Alone"
Assembly of clips from interviews with music by Lawrence Siegel for the upcoming film on M...
published: 09 Sep 2009
Play in Full Screen
7:09
Secrets of Mount Monadnock
Explore Pumpelly Cave, the summit, and Eagle's Nest Instagram : http://instagram.com/matt...
published: 23 Sep 2017
Play in Full Screen
24:20
Mount Monadnock ~ My Most Epic Hike Yet!
Merch Shop: https://the-wandering-woodsman.myspreadshop.com/ Instagram: https://www.instag...
published: 16 Sep 2022
Play in Full Screen
7:03
New Hampshire Chronicle: A Mount Monadnock Record Breaker
Hiker from Rindge sets new record Subscribe to WMUR on YouTube now for more: http://bit.l...
published: 25 Jun 2021
Play in Full Screen
1:23
Monadnock Region sees highest snow totals
The Monadnock Region picked up several inches of snow from a storm that started Sunday and...
published: 29 Jan 2024
Play in Full Screen
5:57
New Hampshire's Mt. Monadnock State Park boasts incredible fall views
New Hampshire's Mt. Monadnock State Park boasts incredible fall views Subscribe to WCVB o...
published: 22 Nov 2022
Play in Full Screen
2:22
What is Peneplain and Monadnock: Peneplain/Monadnock
A peneplain is a low-relief plain which is formed as a result of stream erosion. It is pro...
published: 16 Feb 2022
Play in Full Screen

Inselberg

An inselberg or monadnock /məˈnædnɒk/ is an isolated rock hill, knob, ridge, or small mountain that rises abruptly from a gently sloping or virtually level surrounding plain.

In southern and south-central Africa, a similar formation of granite is known as a koppie, an Afrikaans word ("little head") from the Dutch word kopje.

If the inselberg is dome-shaped and formed from granite or gneiss, it can also be called a bornhardt, though not all bornhardts are inselbergs.

Definitions

The word inselberg is German for "island mountain"; the name was coined by geologist Wilhelm Bornhardt (1864–1946) in 1900 to describe the abundance of such features found in southern Africa. At that time, the term applied only to arid landscape features. However, the term inselberg has since been used to describe a broader geography and range of rock features, leading to confusion about the precise definition of the term. In a 1973 study examining the use of the term, one researcher found that the term had been used for features in savannah climates 40% of the time, arid or semi-arid climates 32% of the time, humid-subtropical and arctic 12% of the time, and 6% each in humid-tropical and Mediterranean climates. As recently as 1972, the term has been defined as "steep-sided isolated hills rising relatively abruptly above gently sloping ground". This definition includes such features as buttes; conical hills with rectilinear sides typically found in arid regions; regolith-covered concave-convex hills; rock crests over regolith slopes; rock domes with near vertical sides; tors (koppies) formed of large boulders but with solid rock cores. Thus, the terms monadnock and inselberg may not perfectly match, though some authors have explicitly argued these terms are in fact completely synonymous.

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

Edit

Monadnock Community Hospital returns to full suite of birthing education resources

The Keene Sentinel 06 Apr 2025
PETERBOROUGH — As hospitals across New Hampshire have eliminated childbirth services, Monadnock Community Hospital is trying to increase awareness of its maternity and birthing educational resources ... .
Edit

Monadnock Food Co-op will not be coming to Peterborough

The Keene Sentinel 05 Apr 2025
Businesses in downtown Peterborough are breathing easier with word that the Monadnock Food Co-op of Keene is not pursuing plans to expand into town ... .
Edit

Step by Step: A Walk to Give Animals a Second Chance

The Keene Sentinel 03 Apr 2025
Every year, our community of animal lovers comes together with one purpose. to give animals the chance at a better life. On May 3, 2025, from 9 a.m. to 1 p.m., we invite you to take part in the 37th ... .
Edit

Jaffrey Selectboard, Historical Society will work on displays for new town offices

The Keene Sentinel 02 Apr 2025
JAFFREY — The town is moving forward with decisions about its new town offices, including an approval by the selectboard to work with the town’s historical society to decorate public areas of the building ... .
Edit

Tariffs have local manufacturers concerned

The Keene Sentinel 31 Mar 2025
Policies from the new administration in Washington, D.C., are keeping businesses in the Monadnock region wondering — and worrying — about the impact of certain tariffs on their enterprises ... .
Edit

Economic Development Authority of Peterborough, ConVal and the Greater Monadnock Collaborative join forces for job fair

The Keene Sentinel 29 Mar 2025
Along with signs outside businesses proclaiming “Now Hiring,” there news stories about people in various sectors of the economy losing their jobs ... .
Edit

Adults who bring children to Music on Norway Pond shows can get in free

The Keene Sentinel 29 Mar 2025
Hancock’s Music on Norway Pond may be the only concert series in the country offering a free ticket for any adult bringing a child to a performance ... .
Edit

Forest Society raising funds to protect 30-acre addition to Mount Monadnock's Old Toll Road trailhead

The Keene Sentinel 24 Mar 2025
The Society for the Protection of New Hampshire Forests (Forest Society) is seeking to raise $275,000 to support the purchase of 30 acres on Mountain Road adjacent to the Old Toll Road Trailhead for Mount Monadnock in Jaffrey ... .
Edit

Monadnock Region firefighters replacing gear contaminated with PFAS

The Keene Sentinel 22 Mar 2025
Editor’s note. This story is the first in a periodic series from the Monadnock Region Health Reporting Lab about the effects of local firefighters’ exposure to forever chemicals in firefighting gear, and efforts to mitigate the issue ... .
Edit

Local resident named new leader of Monadnock Conservancy

The Keene Sentinel 21 Mar 2025
A local resident with decades of experience in conservation has been tapped as the new leader of the Monadnock Conservancy ... .
Edit

Cross-Country Skiing in and Around the Monadnock Region

The Keene Sentinel 19 Mar 2025
Wait! Winter's not over. You may not have snow in your backyard in Keene or Brattleboro, but there's still lots of snow up North. Thankfully, it's been a real, old-time, knee-slapping winter. Snow every other day in February and almost ... .
  • 1
×