- published: 28 Feb 2019
- views: 45187
'+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; })); }); -->
The Antarctic Peninsula is the northernmost part of the mainland of Antarctica, located at the base of the Southern Hemisphere. At the surface, it is the biggest, most prominent peninsula in Antarctica as it extends 1300 km (800 miles) from a line between Cape Adams (Weddell Sea) and a point on the mainland south of Eklund Islands. Beneath the ice sheet which covers it, the Antarctic Peninsula consists of a string of bedrock islands; these are separated by deep channels whose bottoms lie at depths considerably below current sea level. They are joined together by a grounded ice sheet. Tierra del Fuego, the southernmost tip of South America, lies only about 1000 km (620 miles) away across the Drake Passage.
The Antarctic Peninsula is currently dotted with numerous research stations and nations have made multiple claims of sovereignty. The peninsula is part of disputed and overlapping claims by Argentina, Chile and the United Kingdom. None of these claims has international recognition and, under the Antarctic Treaty System, the respective countries do not attempt to enforce their claims. Argentina has the most bases and personnel stationed on the peninsula.
Antarctica (US English i/æntˈɑːrktɪkə/, UK English /ænˈtɑːktɪkə/ or /ænˈtɑːtɪkə/ or /ænˈɑːtɪkə/) is Earth's southernmost continent, containing the geographic South Pole. It is situated in the Antarctic region of the Southern Hemisphere, almost entirely south of the Antarctic Circle, and is surrounded by the Southern Ocean. At 14,000,000 square kilometres (5,400,000 square miles), it is the fifth-largest continent in area after Asia, Africa, North America, and South America. For comparison, Antarctica is nearly twice the size of Australia. About 98% of Antarctica is covered by ice that averages 1.9 kilometres (1.2 mi) in thickness, which extends to all but the northernmost reaches of the Antarctic Peninsula.
Antarctica, on average, is the coldest, driest, and windiest continent, and has the highest average elevation of all the continents. Antarctica is considered a desert, with annual precipitation of only 200 mm (8 in) along the coast and far less inland. The temperature in Antarctica has reached −89.2 °C (−128.6 °F), though the average for the third quarter (the coldest part of the year) is −63 °C (−81 °F). There are no permanent human residents, but anywhere from 1,000 to 5,000 people reside throughout the year at the research stations scattered across the continent. Organisms native to Antarctica include many types of algae, bacteria, fungi, plants, protista, and certain animals, such as mites, nematodes, penguins, seals and tardigrades. Vegetation, where it occurs, is tundra.
Eight Below is a 2006 American adventure drama film based on Antarctica by Toshirô Ishidô, Koreyoshi Kurahara, Tatsuo Nogami and Susumu Saji. It was produced by Patrick Crowley and David Hoberman, directed by Frank Marshall with music by Mark Isham and written by David DiGilio. It stars Paul Walker, Bruce Greenwood, Moon Bloodgood, and Jason Biggs. It was released theatrically on February 17, 2006, by Walt Disney Pictures in the United States. The film is set in Antarctica, but was filmed in Svalbard, Norway, Greenland, and British Columbia, Canada. The film received positive reviews from critics and it earned $120.4 million on a $40 million budget.
In 1993, Jerry Shepard (Paul Walker) is a guide at an Antarctica research base under contract with the National Science Foundation. UCLA professor, Dr. Davis McClaren (Bruce Greenwood), arrives at the base. He presses Shepard to take him to Mount Melbourne to attempt to find a rare meteorite from the planet Mercury. Shepard does so, ignoring his own intuition, which tells him it is too late in the season to complete such a treacherous route, and decides that the only way to get to Mount Melbourne is by dog sled.
Antarctica: The Bliss Out, Vol. 2 is the third album by Windy & Carl, released in February, 1997 through Darla Records.
All songs written and composed by Carl Hultgren and Windy Weber.
The Antarctic (US English /æntˈɑːrktɪk/, UK English /ænˈtɑːrktɪk/ or /æntˈɑːrtɪk/ and /ænˈtɑːrtɪk/ or /ænˈɑːrtɪk/) is a polar region, specifically the region around the Earth's South Pole, opposite the Arctic region around the North Pole. The Antarctic comprises the continent of Antarctica and the ice shelves, waters, and island territories in the Southern Ocean situated south of the Antarctic Convergence. The region covers some 20% of the Southern Hemisphere, of which 5.5% (14 million km2) is the surface area of the continent itself.
The maritime part of the region constitutes the area of application of the international Convention for the Conservation of Antarctic Marine Living Resources (CCAMLR), where for technical reasons the Convention uses an approximation of the Convergence line by means of a line joining specified points along parallels of latitude and meridians of longitude. The implementation of the Convention is managed through an international Commission headquartered in Hobart, Australia, by an efficient system of annual fishing quotas, licenses and international inspectors on the fishing vessels, as well as satellite surveillance.
Antarctic was a Swedish steamship built in Drammen, Norway in 1871. She was used on several research expeditions to the Arctic region and to Antarctica through 1898-1903. In 1895 the first confirmed landing on the mainland of Antarctica was made from this ship.
Antarctic was a barque with three masts and equipped with a steam engine. Build in 1871 at Holmen in Drammen under the name Cap Nor.
Initially Antarctic was used for seal hunting around Svalbard, Jan Mayen and Greenland, under that period the ship was captained by Gullik Jensen and among others Carsten Borchgrevink served on the ship.
In the early 1890s Norwegian ship-owner Svend Foyn wanted to expand his business to the Antarctic Ocean thereby needing capable ships. Foyn then purchased Cap Nor, made extensive repairs and after completion renamed the ship Antarctic. From 1893 the ship was deployed to the Antarctic ocean for whale hunting.
In 1897 the ship was purchased by Alfred Gabriel Nathorst for his planned expedition to Svalbard. Again extensive repairs were made prior to the expedition in 1898.
If you want to set foot on mainland Antarctica, feel the nip of cold air on your cheek, observe the hilarious antics of penguins and explore some of Antarctica's most beautiful spots, a Peninsula cruise is the classic way to experience Antarctica. https://www.swoop-antarctica.com/cruises/peninsula
“The Antarctic Peninsula” showcases the breathtaking beauty and biodiversity hidden at the end of the Earth. Following the binational expedition conducted by the governments of Argentina and Chile in collaboration with National Geographic Pristine Seas, “The Antarctic Peninsula” documents the work and findings of the team of scientists and conservationists who explored the incredible ecosystem above and below the waters of Antarctica. With stunning underwater footage captured by diving in sub-zero temperatures, learn about one of the most unknown and fragile marine ecosystems which is home to incredible sea creatures that are facing the challenges of climate change and fishing pressure. Introduced by National Geographic Pristine Seas Director for Latin America Alex Muñoz, dive into this u...
Antarctica: The land of ice and snow. Documentary film, 2023 Documentary film about Antarctica and the Antarctic peninsula, penguins, whales, geology, the history of Antarctica, future of Antarctica. Ukrainian Polar station Vernadsky. 1:58 - Interesting facts about Antarctica 4:55 - History 7:45 - Geology 12:22 - Flora, Fauna 15:24 - Penguins 20:35 - Future 24:05 - 2 Yachts poem This documentary film explores the breathtaking beauty and unique ecosystem of Antarctica and the Antarctic Peninsula, showcasing the natural wonders of the region such as penguins, whales, and the stunning geology. The film delves into the history of Antarctica and its exploration, revealing the challenges and triumphs of those who have braved the harsh conditions of the continent. The future of Antarctica is als...
We spent four days cruising the Antarctic Peninsula. The weather cooperated for us. It was good visibility and calm. This is something we can now check off our bucket list. For me it was the 7th and last continent. Not sure how we're going to top this trip. #oosterdam #hollandamerica #antarcticpeninsula #antarctica #icebergs #penguins #whale
Join the Extreme Ice Survey (EIS) team on an expedition to South Georgia Island near the Antarctic Peninsula. This trip adds the Southern Hemisphere to a network of 43 time-lapse cameras placed worldwide on 24 glaciers. Capturing one photo per hour of daylight, the cameras placed on South Georgia will document the story of the island's melting glaciers. Extreme Ice Survey (EIS): http://extremeicesurvey.org/ Learn more about climate change: http://www.gettingthepicture.info/ See more videos from the Earth Vision Institute: http://earthvisioninstitute.org/ ➡ Subscribe: http://bit.ly/NatGeoSubscribe ➡ Get More Short Film Showcase: http://bit.ly/ShortFilmShowcase About Short Film Showcase: A curated collection of the most captivating documentary shorts from filmmakers around the world. See mo...
“Antarctic Peninsula” from The Overwatch 2 Original Soundtrack | Composed by Jon Everist Turn it up, turn it up! The Overwatch 2 Original Soundtrack features music from the first year of Overwatch 2, including tracks from cinematics, trailers, maps, events, new heroes and more. Derek Duke © 2023 Azeroth Music and Omnica Music, divisions of Blizzard Entertainment, Inc. All rights reserved. Overwatch 2 and Blizzard Entertainment are trademarks or registered trademarks of Blizzard Entertainment, Inc. in the U.S. and/or other countries. _ Follow #Overwatch2 for the latest news: Instagram: https://www.instagram.com/playoverwatch TikTok: https://www.tiktok.com/@overwatch Twitter: http://www.twitter.com/playoverwatch Facebook: http://www.facebook.com/playoverwatch
Adventures on INSTAGRAM ▷ http://www.instagram.com/photoallison My website ▷ http://www.allisonanderson.com Business inquiries: [email protected] Huge thank you to Seabourn for hosting me on the adventure of a lifetime. Check out their Antarctica voyages here: https://www.seabourn.com/en_US/cruise-destinations/south-america-antarctica.html Thank you to the onboard media team, Coulson & Tennant, for capturing my Antarctic experience from the sky! All aerial footage was filmed by them. https://wearectproductions.com/ https://www.instagram.com/coulsontennant THE GEAR I USE ▷ Main Camera 1 https://amzn.to/3J2JSen ▷ Main Camera 2 https://amzn.to/3WuUqGe ▷ Vlog Camera https://amzn.to/3J6g8gt ▷ Wide Lens https://amzn.to/3ubwZJM ▷ Medium Lens https://amzn.to/3HFrfLD ▷ Telephoto Lens ...
PBS Member Stations rely on viewers like you. To support your local station, go to http://to.pbs.org/DonateEons ↓ More info below ↓ Before the start of the Eocene Epoch about 56 million years ago--Antarctica was still joined to both Australia and South America. And it turns out that a lot of what we recognize about the southern hemisphere can be traced back to that time when Antarctica was green. Check out Crash Course: AI: https://www.youtube.com/watch?v=a0_lo_GDcFw&list=PL8dPuuaLjXtO65LeD2p4_Sb5XQ51par_b&index=2 Thanks to Ceri Thomas for the Notiolofos and Antarctodon illustrations! Check out more of Ceri's paleoart at http://alphynix.tumblr.com And thanks to Julio Lacerda and Studio 252mya for the Antarctodolops illustrations. You can find more of their work here: https://252mya.com...
Our trip began and ended in Buenos Aires Argentina. We cruised to Montevideo Uruguay, Puerto Madryn Argentina, then on to Punta Arenas Chile and Ushuaia Argentina before we crossed the Drake Passage to the Antarctic Peninsula. We did scenic cruising of Deception Island, Livingston Island, King George Island and Elephant Island. Wildlife everywhere, dolphin, various species of penguins and sea birds as well as Finn whales. This was the first time NCL (Norwegian) has been to Antarctica and they did it right! We had 2 naturalist and 1 historian on board who provided many lectures informing us on the history and wildlife that we should encounter. Our ship was the Norwegian Star and we thoroughly enjoyed our time on the ship and the adventure. This video is about the destinations the s...
This video takes you on a cruise to the Antarctic Peninsula leaving from Ushuaia, Argentina. Included are landings on the Antarctic Continent, Zodiac cruises amongst amazing iceberg formations and close up encounters with the wildlife.
Get Nebula using my link for 40% off an annual subscription, just $30 for a year or $2.50/month: https://go.nebula.tv/joescott Antarctica is the last truly untamed land on the planet. It’s a bizarre, otherworldly place buried under miles of ice, with a lot of mysteries and secrets that have come to the surface over the years. So today we’re going to talk about all the strange and unusual stories that swirl around the land of the south pole. Want to support the channel? Here's how: Patreon: http://www.patreon.com/answerswithjoe Channel Memberships: https://www.youtube.com/channel/UC-2YHgc363EdcusLIBbgxzg/join T-Shirts & Merch: http://www.answerswithjoe.com/store Check out my 2nd channel, Joe Scott TMI: https://www.youtube.com/channel/UCqi721JsXlf0wq3Z_cNA_Ew And my podcast channel, Con...
For FREE HelloFresh appetizers for life for both new and repeat customers, use code REALLIFELOREAPPS at https://bit.ly/3xPQitI! One appetizer item per box while subscription is active. Watch more than 30 additional exclusive RealLifeLore videos on Nebula in Modern Conflicts: https://nebula.tv/modernconflicts Please Subscribe: https://www.youtube.com/channel/UCP5tjEmvPItGyLhmjdwP7Ww RealLifeLore on Spotify: https://spoti.fi/47yMfzp RealLifeLore on Facebook: https://www.facebook.com/RealLifeLore/ Select video clips courtesy of Getty Images Select video clips courtesy of the AP Archive Special thanks to MapTiler, OpenStreetMap Contributors, and GEOlayers https://www.maptiler.com/copyright/ https://www.openstreetmap.org/copyright https://aescripts.com/geolayers/
Subscribe for more adventures socials: tiktok: https://tiktok.com/@jordentually instagram: https://instagram.com/jordentually links: my 360 camera: https://www.insta360.com/sal/x3?insrc=INR8W14 my action camera: https://prf.hn/l/QxYdjNE my selfie stick: http://bit.ly/JORDENSELFIE
When a man with a Medal of Honor, Navy Cross, two-time Navy Distinguished Service Medal, two-time Legion of Merit medal, and a Distinguished Flying Cross Congressional Gold Medal tells you that 1 doesn’t equal 1; you drop everything you are doing and listen. In the case of this man, he tells us that Antarctica isn’t what we read it was; if anything Antarctica is a thriving continent with people living in it for generations. If he is right, that means everything our government has ever said was a lie. I know they do lie but this lie would be the ruler of all lies. And then, you start to realize that the lies are not the problem, but what they are covering up in Antarctica that made them lie in the first place. Welcome to Motech, On this Channel we share everything about Technology, Space a...
Get more of my free lessons in your email! Subscribe on https://www.smartnonsense.com/ 🌈
Read more: https://www.iflscience.com/watch-a-camera-drop-into-a-hole-beneath-antarctica-in-search-of-earth-s-oldest-ice-66912
Find out the REAL reasons you're not allowed to go explore the antartica that is the south pole Subscribe for more amazing videos! ► http://bit.ly/Subscribe-to-Richest ◄ DESCRIPTION The world’s coldest continent is also one of the most mysterious places on Earth. It’s as unique as it as secretive, and unlike most of the world, you can’t just hop on a flight and tick it off the bucket list. Unless you’re an elite scientist or an emperor penguin, in an effort to protect the area’s biodiversity, regular folk are forbidden to explore the antarctic. Even if you could, good luck overcoming the frostbite-inducing temperatures of nearly -130 degrees Fahrenheit (-90 C). But where did these heavy restrictions come from? It all started when American Navy officer Admiral Byrd put forth plans for a...
Antarctica Mysterious Facts | Billy Carson Dive into the chilling mysteries of ANTARCTICA with Billy Carson as he explores enigmatic tales from the frozen continent. From Admiral Byrd's intriguing expeditions to rumors of UFO sightings and the mysterious technology of Die Glocke linked to World War 2, uncover the secrets that lie beneath the ice. Thanks for watching, make sure you get the 4biddenknowledge TV app for more content like this http://4bk.tv full of exclusive tv series, documentaries, and movies guaranteed to enlighten you. 🙌 Learn more from Billy Carson: → https://www.youtube.com/@ForbiddenKnowledge1 → https://www.youtube.com/@billycarsonofficial → https://www.4biddenknowledge.com/ → https://www.4biddenknowledge.tv/ 🙌 Special thanks to the host of the conversation Shawn Ry...
I respond to all comments, so if you disagree with me, let me know why! If your reasoning is solid, you could even join me live for a debate. This is Faizaan Unscripted, where we break down the world's most complex topics with cold, hard facts. This video dives into the icy mystery of Antarctica, a land of secrets, global rivalries, and untapped potential. Who truly controls this frozen frontier, and what lies beneath its ice? Let’s uncover the truth. Your thoughts matter, let’s start the conversation. 0:00 - 0:35 - Why countries want Antarctica 0:36 - 0:55 - Treaty Signed to prevent Military 0:56 - 1:10 - Harshest Conditions 1:11 - 1:40 - The Resource Question 1:41 - 2:01 - How It's An Advantage To Control 2:02 - 2:29 - Serious Questions 2:30 - 2:36 - Conclusion Follow me on Twi...
The Antarctic Peninsula is the northernmost part of the mainland of Antarctica, located at the base of the Southern Hemisphere. At the surface, it is the biggest, most prominent peninsula in Antarctica as it extends 1300 km (800 miles) from a line between Cape Adams (Weddell Sea) and a point on the mainland south of Eklund Islands. Beneath the ice sheet which covers it, the Antarctic Peninsula consists of a string of bedrock islands; these are separated by deep channels whose bottoms lie at depths considerably below current sea level. They are joined together by a grounded ice sheet. Tierra del Fuego, the southernmost tip of South America, lies only about 1000 km (620 miles) away across the Drake Passage.
The Antarctic Peninsula is currently dotted with numerous research stations and nations have made multiple claims of sovereignty. The peninsula is part of disputed and overlapping claims by Argentina, Chile and the United Kingdom. None of these claims has international recognition and, under the Antarctic Treaty System, the respective countries do not attempt to enforce their claims. Argentina has the most bases and personnel stationed on the peninsula.