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

Wakhan Corridor

The Wakhan Corridor (alternatively Vakhan Corridor, or Wakhan) is the narrow strip of territory in northeastern Afghanistan that extends to China and separates Tajikistan from Pakistan. The corridor, wedged between the Pamirs to the north and the Karakoram range to the south, is about 350 km (220 mi) long and 13–65 kilometres (8.1–40.4 mi) wide.

Inside the Wakhan Corridor is a high mountain valley from which the Panj and Pamir Rivers emerge and form the Amu Darya. A trade route through the valley has been used by travelers going to and from East, South and Central Asia since antiquity. Wakhan Corridor can also refer to the valley and the trade route. The closure of the Afghan-Chinese border crossing at the Wakhjir Pass at the east end of the Wakhan Corridor, however, has turned the valley into a cul de sac inhabited by nomads.

The corridor was a political creation of The Great Game. On the corridor's north side, agreements between Britain and Imperial Russia in 1873 and between Britain and Afghanistan in 1893 effectively split the historic region of Wakhan by making the Panj and Pamir Rivers the border between Afghanistan and the Russian Empire. On its south side, the Durand Line agreement of 1893 marked the boundary between British India and Afghanistan. This left a narrow strip of land as a buffer between the two empires, which became known as the Wakhan Corridor in the 20th century.

Afghanistan

Coordinates: 33°N 65°E / 33°N 65°E / 33; 65

Afghanistan i/æfˈɡænstæn/ (Pashto/Dari: افغانستان, Afġānistān), officially the Islamic Republic of Afghanistan, is a landlocked country located within South Asia and Central Asia. It has a population of approximately 32 million, making it the 42nd most populous country in the world. It is bordered by Pakistan in the south and east; Iran in the west; Turkmenistan, Uzbekistan, and Tajikistan in the north; and China in the far northeast. Its territory covers 652,000 km2 (252,000 sq mi), making it the 41st largest country in the world.

Human habitation in Afghanistan dates back to the Middle Paleolithic Era, and the country's strategic location along the Silk Road connected it to the cultures of the Middle East and other parts of Asia. Through the ages the land has been home to various peoples and witnessed numerous military campaigns; notably by Alexander the Great, Muslim Arabs, Mongols, British, Soviet Russians, and in the modern-era by Western powers. The land also served as the source from which the Kushans, Hephthalites, Samanids, Saffarids, Ghaznavids, Ghorids, Khiljis, Mughals, Hotaks, Durranis, and others have risen to form major empires.

War in Afghanistan (2001–14)

The War in Afghanistan (or the American war in Afghanistan) is the period in which the United States invaded Afghanistan after the September 11 attacks. Supported initially by close allies, they were later joined by NATO beginning in 2003. It followed the Afghan Civil War's 1996–2001 phase. Its public aims were to dismantle al-Qaeda and to deny it a safe base of operations in Afghanistan by removing the Taliban from power. Key allies, including the United Kingdom, supported the U.S. from the start to the end of the phase. This phase of the War is the longest war in United States history.

In 2001, U.S. President George W. Bush demanded that the Taliban hand over Osama bin Laden and expel al-Qaeda; bin Laden had already been wanted by the United Nations since 1999. The Taliban declined to extradite him unless given what they deemed convincing evidence of his involvement in the 9/11 attacks and declined demands to extradite other terrorism suspects apart from bin Laden. The request was dismissed by the U.S. as a delaying tactic, and on 7 October 2001 it launched Operation Enduring Freedom with the United Kingdom. The two were later joined by other forces, including the Northern Alliance. In December 2001, the United Nations Security Council established the International Security Assistance Force (ISAF), to assist the Afghan interim authorities with securing Kabul. At the Bonn Conference in December 2001, Hamid Karzai was selected to head the Afghan Interim Administration, which after a 2002 loya jirga in Kabul became the Afghan Transitional Administration. In the popular elections of 2004, Karzai was elected president of the country, now named the Islamic Republic of Afghanistan.

Afghanis-tan

Afghanis-tan (あふがにすタン Afuganisu-tan, see note on name below) or Afghanistan is a Japanese yonkoma manga, originally published as a webcomic, by Timaking (ちまきing). It is also the name of the heroine of the manga. The manga is nicknamed Afgan (あふがん Afugan)

Background

Afghanis-tan illustrates the modern history of Afghanistan and its neighboring countries, starting from the imperialist era in the 19th century, through moe anthropomorphism. The title character, a short and clumsy bishōjo, is a national personification of Afghanistan. Other female characters personify the nearby nations of Central Asia, such as Pakistan and Uzbekistan. Nations that have fought wars in Afghanistan at various times, such as Britain, the Soviet Union and the United States also make appearances. The Taliban government and Al-Qaeda terrorist group are also represented in the comic.

Each yonkoma strip is accompanied by an "Afghan Memo" that explains in prose some of the background and history of the nations depicted. Additional pages give short biographies of the characters.

Podcasts:

  • BACKPACKING AFGHANISTAN | The Wakhan Corridor

    My backpacking journey through Afghanistan's rugged Wakhan Corridor (as an American). I spent a total of two weeks in the country, 10-days trekking over 100 miles through the Pamir Mountains. It was a wild trip! READ THE BLOG POST ➜ https://expertvagabond.com/afghanistan-photos-wakhan/ Join Matt Karsten the Expert Vagabond as he shows you how to travel through the Afghanistan Wakhan Corridor. #Travel #Afghanistan #Adventure #WakhanCorridor #TravelVideo SUBSCRIBE FOR MORE VIDEOS ► http://bit.ly/ExpertVagabondVideos HOW TO TRAVEL THE WORLD ➜ https://expertvagabond.com/best-travel-tips/ ✘✘ MY CAMERA GEAR ✘✘ https://expertvagabond.com/travel-photography-gear-guide/ ✘✘ MY TRAVEL GEAR ✘✘ https://expertvagabond.com/travel-gear-guide/ ▬▬ FOLLOW ALONG! ▬▬ ✩ Instagram: http://www.instagra...

    published: 30 Apr 2017
  • Afghanistan : Dans le corridor du Wakhan - Les routes de l'impossible

    00:00 Situé à l’extrême nord-est de l’Afghanistan, le corridor du Wakhan est bordé par les pics de l’Indou Kouch et culmine à presque cinq mille mètres d’altitude. 01:00 Les montagnes de l’Hindu Kush 17:37 -15 degrés, le diesel de mauvaise qualité a gelé 25:43 La caravane de yaks 29:16 Il troque sa marchandise contre quelques têtes de bétail 34:27 Les enfants doivent marcher plus d’une heure pour se rendre à l’école 37:59 L’unique dispensaire du corridor 44:59 C'est le bout du corridor, c'est la fin de la route Écrire à Margo Lgz Cette région oubliée d’Afghanistan est la seule à avoir été épargnée. Ses habitants y vivent comme au moyen-âge, sans eau courante ni électricité, et vivent principalement du troc. L’unique route qui traverse le corridor est difficile d’accès, creusée à flanc de...

    published: 21 Sep 2020
  • The Wakhan Corridor in 90 Seconds

    Let me take you on a quick trip through the Wakhan Corridor. This area of the world encompasses the borders of Tajikistan and Afghanistan and is considered relatively safe. I had no issues traveling through the region and quite enjoyed the amazing views despite the horrific road conditions. However, that's what makes the area so special because it's not that easily accessible.

    published: 15 Oct 2019
  • Pamir Skyroad Towards Afghan Wakhan Corridor 🇨🇳🇦🇫 I S2, EP89

    I am leaving the Karakorum Highway to drive towards one of the most isolated countries, Afghanistan. Afghanistan shares a short border line with China in a region between Pamir and Hindu Kush mountains called the Wakhan Corridor. In the past the Wakhan Corridor was one of the major trade routes through central Asia connecting different cultures as early as Han Dynasty. On my way I stopped by a Kyrgyz Village inside Wakhan Corridor who invited me to their home. I eventually reached the famous Pamir Skyroad which is one of the most curvy roads in the world, having 639 turns in only 30km. Join me on this adventure to the renowned Wakhan Corridor 🎬 0:00 Intro 2:12 The Wakhan Corridor 8:26 Tajik House Tour 15:30 The Pamir Sky Road #china #xinjiang #karakorum #uyghurculture #tajiks #afgha...

    published: 31 Aug 2024
  • Pak-Afghan Clashes and the Battle for Wakhan Corridor | Faisal Warraich

    #faisalwarraich #fsw #history #geopolitics ═══════════════════ Social Media ✨Twitter https://twitter.com/FSWarraich ✨ Instagram https://www.instagram.com/faisal_warraich__/ ✨ Facebook https://web.facebook.com/FSWarraichOfficial?_rdc=1&_rdr ══════════════════════ ★ ☆ Films you must watch before you die 01 ⬛⬜⬜ The Great Game https://bit.ly/3D1Xwvg 02 ⬛⬜⬜ The Ottoman Empire https://bit.ly/3jGk2wo 03 ⬛⬜⬜ Muslim Cold War 01 https://bit.ly/3P44djT 04 ⬛⬜⬜ Muslim Cold War 02 https://bit.ly/3wfymUK 05 ⬛⬜⬜ Muslim Cold War 03 https://bit.ly/3N0uPjU 06 ⬛⬜⬜ Mhd bin Qasim and Sindh https://bit.ly/3yhvMQW 07 ⬛⬜⬜ M. Bin Qasim & Raja Dahar https://youtu.be/6gHkOjnaoGU 08 ⬛⬜⬜ History of Arabs Israel https://youtu.be/yVWW2ll_5nk 09 ⬛⬜⬜ Why the USA lost the Afghan war https://youtu.be/PYhy8oe1sfU 10 ⬛⬜⬜ Cha...

    published: 09 Jan 2025
  • Why Britishers added Wakhan Corridor as a tail to Afghanistan in the GREAT GAME against Russia ?

    App Link - https://pjddn.courses.store/333789?utm_source%3Dother%26utm_medium%3Dtutor-course-referral%26utm_campaign%3Dcourse-overview-webapp For Iphone Users - https://apps.apple.com/in/app/myinstitute/id1472483563 Org code: PJDDN UPSC Prelims 2023 Revision Course + Test Series - Yearly Analysis + Static GK Topics - https://youtu.be/SmqsAgAMNuY Insta - https://www.instagram.com/hrsht.dwivedi Telegram Link - https://t.me/harshitdwivedivideos PDF - Available in Telegram and HDE Application

    published: 29 May 2023
  • Wakhan Corridor - Where China Borders Afghanistan 🇦🇫🇨🇳

    #china #afghanistan #wakhan #silkroad

    published: 01 Sep 2024
  • Deadliest Journeys - Afghanistan: The Wakhan Passage

    Situated in the extreme north-west of Afghanistan, the Wakhan corridor is bordered by the Hindou Kouch mountains and peaks at almost 5000 metres high. The only road that cuts through the corridor is almost inaccessible, crossing the mountainside, often buried by metres of snow. Director : Nicolas Cotto

    published: 29 Jan 2021
  • Last Village of Afghanistan🇦🇫 in Wakhan near Pakistan Border S8 EP.11 | Pakistan to Japan Motorcycle

    Send Money to Pakistan Using my Link: https://referral.lemonade.finance/invite/7HDkADUDHkPGUp366 Code: AbrarPK Instagram: https://www.instagram.com/WildLensByAbrar Email (only business): Business@Wildlensbyabrar.com Membership: https://www.youtube.com/wildlensbyabrar/join Patreon: https://www.patreon.com/Wildlensbyabrar Blog: https://www.WildLensByAbrar.com/ Music: Artlist: https://bit.ly/3bsuF3I (**2 months free if you use this link) Epidemic Sound: http://bit.ly/396ATGl (**1 month free if you use this link ) #Pakistan #Afghanistan #Fayzabad #wakhan #Badakhshan #Japan #motorcycletours #motovlog #roadtrip #offroad #bmwg310gs This is Episode 11 of my Pakistan to Japan Motorcycle Series. In this Episode I travelled to the last village of Afghanistan in Broghil Valley near Pakistan ...

    published: 29 Sep 2024
  • Why Pakistan Wants to Capture the 'Wakhan Corridor'? | Amrit Sir | Map in Short | StudyIQ IAS Hindi

    UPSC IAS Live GS P2I Foundation Hindi New Year Batch : https://studyiq.u9ilnk.me/d/JCGEem0mzT एडमिशन की अंतिम तिथि 15 जनवरी 2025 | बैच का समय सुबह 8:00 बजे Hurry Enroll Now : https://studyiq.u9ilnk.me/d/JCGEem0mzT UPSC IAS P2I Long Term Foundation Hindi New Year Batch : https://studyiq.u9ilnk.me/d/NsRpvMMx3o एडमिशन की अंतिम तिथि 15 जनवरी 2025 | बैच का समय सुबह 8:00 बजे Hurry Enroll Now : https://studyiq.u9ilnk.me/d/NsRpvMMx3o UPSC IAS Live SIP+ 2025 New Year Hindi Batch बैच 10 जनवरी 2025 से शुरू हो रहा है | बैच का समय शाम 6:00 बजे Hurry Enroll Now : https://studyiq.u9ilnk.me/d/DMC1WuXmv9 Super 100 Mentorship Hindi : https://studyiq.u9ilnk.me/d/rAMWaWhh3x UPSC IAS (Mains) Hindi Literature Optional Live 2026 (Comprehensive) New year Batch बैच 10 जनवरी 2025 से शुरू हो रहा है| | बैच का स...

    published: 09 Jan 2025
BACKPACKING AFGHANISTAN | The Wakhan Corridor
8:08

BACKPACKING AFGHANISTAN | The Wakhan Corridor

  • Order:
  • Duration: 8:08
  • Uploaded Date: 30 Apr 2017
  • views: 1162401
My backpacking journey through Afghanistan's rugged Wakhan Corridor (as an American). I spent a total of two weeks in the country, 10-days trekking over 100 miles through the Pamir Mountains. It was a wild trip! READ THE BLOG POST ➜ https://expertvagabond.com/afghanistan-photos-wakhan/ Join Matt Karsten the Expert Vagabond as he shows you how to travel through the Afghanistan Wakhan Corridor. #Travel #Afghanistan #Adventure #WakhanCorridor #TravelVideo SUBSCRIBE FOR MORE VIDEOS ► http://bit.ly/ExpertVagabondVideos HOW TO TRAVEL THE WORLD ➜ https://expertvagabond.com/best-travel-tips/ ✘✘ MY CAMERA GEAR ✘✘ https://expertvagabond.com/travel-photography-gear-guide/ ✘✘ MY TRAVEL GEAR ✘✘ https://expertvagabond.com/travel-gear-guide/ ▬▬ FOLLOW ALONG! ▬▬ ✩ Instagram: http://www.instagram.com/expertvagabond ✩ Twitter: http://www.twitter.com/expertvagabond ✩ Facebook: http://www.facebook.com/expertvagabond ▬▬ ABOUT ▬▬ Hi! I'm Matt -- adventure travel enthusiast, photographer, digital nomad, and professional blogger who's been traveling the world for the past 9 years. Join me as I share entertaining stories, beautiful images, and useful travel tips with you from around the world. Oh, and fun videos like this too. I'm incredibly thankful that I get to do what I love for a living -- sharing travel experiences with you guys! VISIT ➜ https://ExpertVagabond.com ▬▬ ♫ MUSIC ♫ ▬▬ WHERE I GET MY MUSIC: https://expertvagabond.com/go/musicbed
https://wn.com/Backpacking_Afghanistan_|_The_Wakhan_Corridor
Afghanistan : Dans le corridor du Wakhan - Les routes de l'impossible
50:11

Afghanistan : Dans le corridor du Wakhan - Les routes de l'impossible

  • Order:
  • Duration: 50:11
  • Uploaded Date: 21 Sep 2020
  • views: 4513082
00:00 Situé à l’extrême nord-est de l’Afghanistan, le corridor du Wakhan est bordé par les pics de l’Indou Kouch et culmine à presque cinq mille mètres d’altitude. 01:00 Les montagnes de l’Hindu Kush 17:37 -15 degrés, le diesel de mauvaise qualité a gelé 25:43 La caravane de yaks 29:16 Il troque sa marchandise contre quelques têtes de bétail 34:27 Les enfants doivent marcher plus d’une heure pour se rendre à l’école 37:59 L’unique dispensaire du corridor 44:59 C'est le bout du corridor, c'est la fin de la route Écrire à Margo Lgz Cette région oubliée d’Afghanistan est la seule à avoir été épargnée. Ses habitants y vivent comme au moyen-âge, sans eau courante ni électricité, et vivent principalement du troc. L’unique route qui traverse le corridor est difficile d’accès, creusée à flanc de montagne, souvent ensevelie sous plusieurs mètres neige. Quelques rares aventuriers au volant de vieux camions russes s’y risquent plusieurs fois par an pour ravitailler le corridor isolé, et échangent des biens de première nécessité contre des moutons et des yacks. Réalisateur : Nicolas Cotto
https://wn.com/Afghanistan_Dans_Le_Corridor_Du_Wakhan_Les_Routes_De_L'Impossible
The Wakhan Corridor in 90 Seconds
1:31

The Wakhan Corridor in 90 Seconds

  • Order:
  • Duration: 1:31
  • Uploaded Date: 15 Oct 2019
  • views: 13873
Let me take you on a quick trip through the Wakhan Corridor. This area of the world encompasses the borders of Tajikistan and Afghanistan and is considered relatively safe. I had no issues traveling through the region and quite enjoyed the amazing views despite the horrific road conditions. However, that's what makes the area so special because it's not that easily accessible.
https://wn.com/The_Wakhan_Corridor_In_90_Seconds
Pamir Skyroad Towards Afghan Wakhan Corridor 🇨🇳🇦🇫 I S2, EP89
21:29

Pamir Skyroad Towards Afghan Wakhan Corridor 🇨🇳🇦🇫 I S2, EP89

  • Order:
  • Duration: 21:29
  • Uploaded Date: 31 Aug 2024
  • views: 561527
I am leaving the Karakorum Highway to drive towards one of the most isolated countries, Afghanistan. Afghanistan shares a short border line with China in a region between Pamir and Hindu Kush mountains called the Wakhan Corridor. In the past the Wakhan Corridor was one of the major trade routes through central Asia connecting different cultures as early as Han Dynasty. On my way I stopped by a Kyrgyz Village inside Wakhan Corridor who invited me to their home. I eventually reached the famous Pamir Skyroad which is one of the most curvy roads in the world, having 639 turns in only 30km. Join me on this adventure to the renowned Wakhan Corridor 🎬 0:00 Intro 2:12 The Wakhan Corridor 8:26 Tajik House Tour 15:30 The Pamir Sky Road #china #xinjiang #karakorum #uyghurculture #tajiks #afghan #pakistani #chinatravel #chinavlogger #chinafood #wakhan Do you want to see more of my adventures? 🎬 Follow me on Instagram: https://www.instagram.com/littlechineseeverywhere/ Do you want to support my work? Buy me a coffee ☕: https://www.patreon.com/user?u=89914115 Background Music 🎶 Get 2 extra months when you subscribe to any annual plan https://artlist.io/referral/4406238/Flo https://share.epidemicsound.com/0uaw9g ____________________________ My equipment: Dji Action 4 Camera Sony A7Siii DJI Mavic 3 Pro
https://wn.com/Pamir_Skyroad_Towards_Afghan_Wakhan_Corridor_🇨🇳🇦🇫_I_S2,_Ep89
Pak-Afghan Clashes and the Battle for Wakhan Corridor | Faisal Warraich
33:24

Pak-Afghan Clashes and the Battle for Wakhan Corridor | Faisal Warraich

  • Order:
  • Duration: 33:24
  • Uploaded Date: 09 Jan 2025
  • views: 647582
#faisalwarraich #fsw #history #geopolitics ═══════════════════ Social Media ✨Twitter https://twitter.com/FSWarraich ✨ Instagram https://www.instagram.com/faisal_warraich__/ ✨ Facebook https://web.facebook.com/FSWarraichOfficial?_rdc=1&_rdr ══════════════════════ ★ ☆ Films you must watch before you die 01 ⬛⬜⬜ The Great Game https://bit.ly/3D1Xwvg 02 ⬛⬜⬜ The Ottoman Empire https://bit.ly/3jGk2wo 03 ⬛⬜⬜ Muslim Cold War 01 https://bit.ly/3P44djT 04 ⬛⬜⬜ Muslim Cold War 02 https://bit.ly/3wfymUK 05 ⬛⬜⬜ Muslim Cold War 03 https://bit.ly/3N0uPjU 06 ⬛⬜⬜ Mhd bin Qasim and Sindh https://bit.ly/3yhvMQW 07 ⬛⬜⬜ M. Bin Qasim & Raja Dahar https://youtu.be/6gHkOjnaoGU 08 ⬛⬜⬜ History of Arabs Israel https://youtu.be/yVWW2ll_5nk 09 ⬛⬜⬜ Why the USA lost the Afghan war https://youtu.be/PYhy8oe1sfU 10 ⬛⬜⬜ Charles Darwin and Evolution https://bit.ly/3kOLgns 11 ⬛⬜⬜ Bio Abraham Lincoln https://bit.ly/3TAQAdC 12 ⬛⬜⬜ Pak India war of 1965 https://bit.ly/3vUJnvT 13 ⬛⬜⬜ Pak India war of 1971 https://bit.ly/3vW0opE 14 ⬛⬜⬜ The Universe https://bit.ly/3w9BstD 15 ⬛⬜⬜ Rise and Fall of Muslim Spain https://bit.ly/397NI68 16 ⬛⬜⬜ Biography of Karl Marx https://bit.ly/3sIdIfl 17 ⬛⬜⬜ Last days of Saddam Hussain https://bit.ly/3FsCjKf 18 ⬛⬜⬜ Last days of Qasem Sulemani https://bit.ly/3kRDvx9 19 ⬛⬜⬜ Family of the last Ottoman Caliph? https://bit.ly/3P8ZFbW 20 ⬛⬜⬜ History of USA 01 https://bit.ly/3VDuNnj 21 ⬛⬜⬜ History of USA 02 https://bit.ly/3CLFZFR 22 ⬛⬜⬜ Battles of Khalid Bin Walid https://bit.ly/3F0MKXb 23 ⬛⬜⬜ Battle of Bengal https://bit.ly/3Dmxhj0 ═════ ✌ The list of the greatest documentary films ever made ☀ History of Nations https://www.youtube.com/watch?v=SqXQBfcoQPM&list=PLYt5jguM4dGxAu9l5X391Yp9ekBw_b_Iw https://www.youtube.com/watch?v=3CnuiYjT2oI&list=PLYt5jguM4dGxRqmRChe8cknuZQLyFpsye https://www.youtube.com/watch?v=ch3rqK6UEO4&list=PLYt5jguM4dGwPAeLXmNorJV559crcMvuN https://www.youtube.com/watch?v=aES3IK5TjBY&list=PLYt5jguM4dGw-cNRAlR-ewDVpg7kZG1ji https://www.youtube.com/watch?v=3q_Zjsr7BUQ&list=PLYt5jguM4dGz-i4mlyL1Hkb3Q-CvzVyh4 https://www.youtube.com/watch?v=8aRUgXCC-G8&list=PLFzojsQltjOCFQHQI-u8JhMWRI_JgxyUd https://www.youtube.com/watch?v=rR2YMCqkSYI&list=PLYt5jguM4dGxDowE9ZxZVPE339aEYUPOI https://www.youtube.com/watch?v=-rPzLOAWbxo&list=PLRt405tl8PGRKkzdP-kxgE2F2hB2T652Z ☀ Biographies https://www.youtube.com/watch?v=H-sBR2G-qYw&list=PLYt5jguM4dGwgWPsBCAhINI41484ThXMp https://www.youtube.com/watch?v=tu7L6d3Yuks&list=PLYt5jguM4dGyc8BbFLh6HUso6dsmdv6OO https://www.youtube.com/watch?v=T628ogPzABg&list=PLYt5jguM4dGyqMnRL1IlIHHIGNSQ-XnFN https://www.youtube.com/watch?v=8QXuA3UvTUM&list=PLYt5jguM4dGzcTBqbJim2xW1BzF39J7KB https://www.youtube.com/watch?v=89SpQrzaMw8&list=PLYt5jguM4dGwNqmqx3Msf28fU55IAUAH5 https://www.youtube.com/watch?v=4DyTj06vll4&list=PLFzojsQltjOCQE72aQ5q45l2hPTFul83U ☀ Science & Now https://www.youtube.com/watch?v=HkMXiQ4qUc8&list=PLYt5jguM4dGwRe--seOjAKjE-ZIiDCw_X&index=1&t=695s https://www.youtube.com/watch?v=3fjyWs81n3M&list=PLFzojsQltjOABScXTDhssA_T9g6__Qj8y https://www.youtube.com/watch?v=Qx6Wk7AaljQ&list=PLFzojsQltjODe4Jdt8r09uSe7cfT5zJl7 https://www.youtube.com/watch?v=x0V6S7UWQKU&list=PLFzojsQltjOCE6ShqPGbscTbbPIBwsM3_ https://www.youtube.com/watch?v=1YUNDLJnOpg&list=PLFzojsQltjOAtvVmo8qIa8rpuF89pJTOl https://www.youtube.com/watch?v=c9L4TPfiDWA&list=PLRt405tl8PGS2ttugVYLGUrv4S3sZQfL2 ☀Wars & Battles https://www.youtube.com/watch?v=xdOAxT1vDBs&list=PLYt5jguM4dGwNg_J-GvogooniCg8oLxMU https://www.youtube.com/watch?v=w4AUJKmoIFM&list=PLFzojsQltjODpSKGukmnfE7v-eX-t2Iyj https://www.youtube.com/watch?v=cbWungxfodQ&list=PLFzojsQltjODzvoEag1O3WGeNh9Zai3CM https://www.youtube.com/watch?v=V5BX9SVUBgk&list=PLYt5jguM4dGy9yNlxY2iYOB58kqE47UD2 https://www.youtube.com/watch?v=2_GRPuXrm0g&list=PLYt5jguM4dGy6AzfArVgnHFooq97XCcao Thanks for watching, my curious fellows, and always remember we love 💝 you all.
https://wn.com/Pak_Afghan_Clashes_And_The_Battle_For_Wakhan_Corridor_|_Faisal_Warraich
Why Britishers added Wakhan Corridor as a tail to Afghanistan in the GREAT GAME against Russia ?
6:49

Why Britishers added Wakhan Corridor as a tail to Afghanistan in the GREAT GAME against Russia ?

  • Order:
  • Duration: 6:49
  • Uploaded Date: 29 May 2023
  • views: 48161
App Link - https://pjddn.courses.store/333789?utm_source%3Dother%26utm_medium%3Dtutor-course-referral%26utm_campaign%3Dcourse-overview-webapp For Iphone Users - https://apps.apple.com/in/app/myinstitute/id1472483563 Org code: PJDDN UPSC Prelims 2023 Revision Course + Test Series - Yearly Analysis + Static GK Topics - https://youtu.be/SmqsAgAMNuY Insta - https://www.instagram.com/hrsht.dwivedi Telegram Link - https://t.me/harshitdwivedivideos PDF - Available in Telegram and HDE Application
https://wn.com/Why_Britishers_Added_Wakhan_Corridor_As_A_Tail_To_Afghanistan_In_The_Great_Game_Against_Russia
Wakhan Corridor - Where China Borders Afghanistan 🇦🇫🇨🇳
0:58

Wakhan Corridor - Where China Borders Afghanistan 🇦🇫🇨🇳

  • Order:
  • Duration: 0:58
  • Uploaded Date: 01 Sep 2024
  • views: 18946
#china #afghanistan #wakhan #silkroad
https://wn.com/Wakhan_Corridor_Where_China_Borders_Afghanistan_🇦🇫🇨🇳
Deadliest Journeys - Afghanistan: The Wakhan Passage
50:15

Deadliest Journeys - Afghanistan: The Wakhan Passage

  • Order:
  • Duration: 50:15
  • Uploaded Date: 29 Jan 2021
  • views: 1135393
Situated in the extreme north-west of Afghanistan, the Wakhan corridor is bordered by the Hindou Kouch mountains and peaks at almost 5000 metres high. The only road that cuts through the corridor is almost inaccessible, crossing the mountainside, often buried by metres of snow. Director : Nicolas Cotto
https://wn.com/Deadliest_Journeys_Afghanistan_The_Wakhan_Passage
Last Village of Afghanistan🇦🇫 in Wakhan near Pakistan Border S8 EP.11 | Pakistan to Japan Motorcycle
24:47

Last Village of Afghanistan🇦🇫 in Wakhan near Pakistan Border S8 EP.11 | Pakistan to Japan Motorcycle

  • Order:
  • Duration: 24:47
  • Uploaded Date: 29 Sep 2024
  • views: 725905
Send Money to Pakistan Using my Link: https://referral.lemonade.finance/invite/7HDkADUDHkPGUp366 Code: AbrarPK Instagram: https://www.instagram.com/WildLensByAbrar Email (only business): Business@Wildlensbyabrar.com Membership: https://www.youtube.com/wildlensbyabrar/join Patreon: https://www.patreon.com/Wildlensbyabrar Blog: https://www.WildLensByAbrar.com/ Music: Artlist: https://bit.ly/3bsuF3I (**2 months free if you use this link) Epidemic Sound: http://bit.ly/396ATGl (**1 month free if you use this link ) #Pakistan #Afghanistan #Fayzabad #wakhan #Badakhshan #Japan #motorcycletours #motovlog #roadtrip #offroad #bmwg310gs This is Episode 11 of my Pakistan to Japan Motorcycle Series. In this Episode I travelled to the last village of Afghanistan in Broghil Valley near Pakistan border.
https://wn.com/Last_Village_Of_Afghanistan🇦🇫_In_Wakhan_Near_Pakistan_Border_S8_Ep.11_|_Pakistan_To_Japan_Motorcycle
Why Pakistan Wants to Capture the 'Wakhan Corridor'? | Amrit Sir | Map in Short | StudyIQ IAS Hindi
1:05

Why Pakistan Wants to Capture the 'Wakhan Corridor'? | Amrit Sir | Map in Short | StudyIQ IAS Hindi

  • Order:
  • Duration: 1:05
  • Uploaded Date: 09 Jan 2025
  • views: 1570945
UPSC IAS Live GS P2I Foundation Hindi New Year Batch : https://studyiq.u9ilnk.me/d/JCGEem0mzT एडमिशन की अंतिम तिथि 15 जनवरी 2025 | बैच का समय सुबह 8:00 बजे Hurry Enroll Now : https://studyiq.u9ilnk.me/d/JCGEem0mzT UPSC IAS P2I Long Term Foundation Hindi New Year Batch : https://studyiq.u9ilnk.me/d/NsRpvMMx3o एडमिशन की अंतिम तिथि 15 जनवरी 2025 | बैच का समय सुबह 8:00 बजे Hurry Enroll Now : https://studyiq.u9ilnk.me/d/NsRpvMMx3o UPSC IAS Live SIP+ 2025 New Year Hindi Batch बैच 10 जनवरी 2025 से शुरू हो रहा है | बैच का समय शाम 6:00 बजे Hurry Enroll Now : https://studyiq.u9ilnk.me/d/DMC1WuXmv9 Super 100 Mentorship Hindi : https://studyiq.u9ilnk.me/d/rAMWaWhh3x UPSC IAS (Mains) Hindi Literature Optional Live 2026 (Comprehensive) New year Batch बैच 10 जनवरी 2025 से शुरू हो रहा है| | बैच का समय दोपहर 1:00 बजे Hurry Enroll Now : https://studyiq.u9ilnk.me/d/rgCaPeyt9e UPSC IAS CSAT in 100 Days Live December Hindi Batch बैच 10 जनवरी 2025 से शुरू हो रहा है बैच का समय दोपहर 3:30 बजे | Hurry Enroll Now : https://studyiq.u9ilnk.me/d/FePgIed2mU UPSC Prelims Test Series 2024 Hindi - Last Batch प्रारंभ 13 फरवरी 2024 Hurry Enroll Now : https://bit.ly/42C7mOZ NCERT Live Course In 100 Days September Batch (Hindi) बैच प्रारंभ 28 सितंबर 2023 | बैच का समय दोपहर 3:00 बजे | Hurry Enroll Now : https://bit.ly/3PwAQJs Buy our Best Selling UPSC CSE Books From Online Stores StudyIQ App/Store https://bit.ly/44WvFH8 Amazon https://bit.ly/3ZkCDEF Flipkart https://bit.ly/3Pmu3k3 📌 Connect with [Our Social Media Platform] : ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ Join our Telegram Group:- https://t.me/Studyiqeducation Whatsapp Channel - https://bit.ly/3M1i8Ya Facebook: https://bit.ly/3PZTJDo Instagram: https://bit.ly/48RZNGO Twitter: https://bit.ly/48On8t7 Download the App to Subscribe to the Course - https://bit.ly/Studyiqapp For any doubt, Call 76-4000-3000 or Click here for Whatsapp Chat http://wa.me/919838101240 Dear Viewers, Now Pakistan has its eyes set on the 'Wakhan Corridor' located in Afghanistan. But to know why, you first have to understand the location of the corridor. Look, the Wakhan Corridor falls in the Wakhan district of Badakhshan province of Afghanistan. It is at the junction of China, India, Pakistan and Tajikistan in Afghanistan. #WakhanCorridor #Pakistan #TTP #AmritUpadhyay #MapInShort #UPSC2025
https://wn.com/Why_Pakistan_Wants_To_Capture_The_'Wakhan_Corridor'_|_Amrit_Sir_|_Map_In_Short_|_Studyiq_Ias_Hindi
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • BACKPACKING AFGHANISTAN | The Wakhan Corridor
    8:08
    BACKPACKING AFGHANISTAN | The Wakhan Corridorremove from playlist
  • Afghanistan : Dans le corridor du Wakhan - Les routes de l'impossible
    50:11
    Afghanistan : Dans le corridor du Wakhan - Les routes de l'impossibleremove from playlist
  • The Wakhan Corridor in 90 Seconds
    1:31
    The Wakhan Corridor in 90 Secondsremove from playlist
  • Pamir Skyroad Towards Afghan Wakhan Corridor 🇨🇳🇦🇫 I S2, EP89
    21:29
    Pamir Skyroad Towards Afghan Wakhan Corridor 🇨🇳🇦🇫 I S2, EP89remove from playlist
  • Pak-Afghan Clashes and the Battle for Wakhan Corridor | Faisal Warraich
    33:24
    Pak-Afghan Clashes and the Battle for Wakhan Corridor | Faisal Warraichremove from playlist
  • Why Britishers added Wakhan Corridor as a tail to Afghanistan in the GREAT GAME against Russia ?
    6:49
    Why Britishers added Wakhan Corridor as a tail to Afghanistan in the GREAT GAME against Russia ?remove from playlist
  • Deadliest Journeys - Afghanistan: The Wakhan Passage
    50:15
    Deadliest Journeys - Afghanistan: The Wakhan Passageremove from playlist
  • Last Village of Afghanistan🇦🇫 in Wakhan near Pakistan Border S8 EP.11 | Pakistan to Japan Motorcycle
    24:47
    Last Village of Afghanistan🇦🇫 in Wakhan near Pakistan Border S8 EP.11 | Pakistan to Japan Motorcycleremove from playlist
  • Why Pakistan Wants to Capture the 'Wakhan Corridor'? | Amrit Sir | Map in Short | StudyIQ IAS Hindi
    1:05
    Why Pakistan Wants to Capture the 'Wakhan Corridor'? | Amrit Sir | Map in Short | StudyIQ IAS Hindiremove from playlist
PLAYLIST TIME:

BACKPACKING AFGHANISTAN | The Wakhan Corridor

My backpacking journey through Afghanistan's rugged Wakhan Corridor (as an American). I spent a total of two weeks in the country, 10-days trekking over 100 miles through the Pamir Mountains. It was a wild trip! READ THE BLOG POST ➜ https://expertvagabond.com/afghanistan-photos-wakhan/ Join Matt Karsten the Expert Vagabond as he shows you how to travel through the Afghanistan Wakhan Corridor. #Travel #Afghanistan #Adventure #WakhanCorridor #TravelVideo SUBSCRIBE FOR MORE VIDEOS ► http://bit.ly/ExpertVagabondVideos HOW TO TRAVEL THE WORLD ➜ https://expertvagabond.com/best-travel-tips/ ✘✘ MY CAMERA GEAR ✘✘ https://expertvagabond.com/travel-photography-gear-guide/ ✘✘ MY TRAVEL GEAR ✘✘ https://expertvagabond.com/travel-gear-guide/ ▬▬ FOLLOW ALONG! ▬▬ ✩ Instagram: http://www.instagram.com/expertvagabond ✩ Twitter: http://www.twitter.com/expertvagabond ✩ Facebook: http://www.facebook.com/expertvagabond ▬▬ ABOUT ▬▬ Hi! I'm Matt -- adventure travel enthusiast, photographer, digital nomad, and professional blogger who's been traveling the world for the past 9 years. Join me as I share entertaining stories, beautiful images, and useful travel tips with you from around the world. Oh, and fun videos like this too. I'm incredibly thankful that I get to do what I love for a living -- sharing travel experiences with you guys! VISIT ➜ https://ExpertVagabond.com ▬▬ ♫ MUSIC ♫ ▬▬ WHERE I GET MY MUSIC: https://expertvagabond.com/go/musicbed
8:08
BACKPACKING AFGHANISTAN | The Wakhan Corridor
My backpacking journey through Afghanistan's rugged Wakhan Corridor (as an American). I sp...
published: 30 Apr 2017
Play in Full Screen
50:11
Afghanistan : Dans le corridor du Wakhan - Les routes de l'impossible
00:00 Situé à l’extrême nord-est de l’Afghanistan, le corridor du Wakhan est bordé par les...
published: 21 Sep 2020
Play in Full Screen
1:31
The Wakhan Corridor in 90 Seconds
Let me take you on a quick trip through the Wakhan Corridor. This area of the world encom...
published: 15 Oct 2019
Play in Full Screen
21:29
Pamir Skyroad Towards Afghan Wakhan Corridor 🇨🇳🇦🇫 I S2, EP89
I am leaving the Karakorum Highway to drive towards one of the most isolated countries, Af...
published: 31 Aug 2024
Play in Full Screen
33:24
Pak-Afghan Clashes and the Battle for Wakhan Corridor | Faisal Warraich
#faisalwarraich #fsw #history #geopolitics ═══════════════════ Social Media ✨Twitter https...
published: 09 Jan 2025
Play in Full Screen
6:49
Why Britishers added Wakhan Corridor as a tail to Afghanistan in the GREAT GAME against Russia ?
App Link - https://pjddn.courses.store/333789?utm_source%3Dother%26utm_medium%3Dtutor-cour...
published: 29 May 2023
Play in Full Screen
0:58
Wakhan Corridor - Where China Borders Afghanistan 🇦🇫🇨🇳
#china #afghanistan #wakhan #silkroad
published: 01 Sep 2024
Play in Full Screen
50:15
Deadliest Journeys - Afghanistan: The Wakhan Passage
Situated in the extreme north-west of Afghanistan, the Wakhan corridor is bordered by the ...
published: 29 Jan 2021
Play in Full Screen
24:47
Last Village of Afghanistan🇦🇫 in Wakhan near Pakistan Border S8 EP.11 | Pakistan to Japan Motorcycle
Send Money to Pakistan Using my Link: https://referral.lemonade.finance/invite/7HDkADUDHkP...
published: 29 Sep 2024
Play in Full Screen
1:05
Why Pakistan Wants to Capture the 'Wakhan Corridor'? | Amrit Sir | Map in Short | StudyIQ IAS Hindi
UPSC IAS Live GS P2I Foundation Hindi New Year Batch : https://studyiq.u9ilnk.me/d/JCGEem0...
published: 09 Jan 2025
Play in Full Screen

Wakhan Corridor

The Wakhan Corridor (alternatively Vakhan Corridor, or Wakhan) is the narrow strip of territory in northeastern Afghanistan that extends to China and separates Tajikistan from Pakistan. The corridor, wedged between the Pamirs to the north and the Karakoram range to the south, is about 350 km (220 mi) long and 13–65 kilometres (8.1–40.4 mi) wide.

Inside the Wakhan Corridor is a high mountain valley from which the Panj and Pamir Rivers emerge and form the Amu Darya. A trade route through the valley has been used by travelers going to and from East, South and Central Asia since antiquity. Wakhan Corridor can also refer to the valley and the trade route. The closure of the Afghan-Chinese border crossing at the Wakhjir Pass at the east end of the Wakhan Corridor, however, has turned the valley into a cul de sac inhabited by nomads.

The corridor was a political creation of The Great Game. On the corridor's north side, agreements between Britain and Imperial Russia in 1873 and between Britain and Afghanistan in 1893 effectively split the historic region of Wakhan by making the Panj and Pamir Rivers the border between Afghanistan and the Russian Empire. On its south side, the Durand Line agreement of 1893 marked the boundary between British India and Afghanistan. This left a narrow strip of land as a buffer between the two empires, which became known as the Wakhan Corridor in the 20th century.

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

Edit

All Afghan refugees aren’t bad for society

Dawn 29 Mar 2025
WITH the March 31 deadline looming, we would do well to remember that not all Afghan refugees are bad. In fact, many have become family members ... It is inhumane ... Let us not forget that migration across the Wakhan Corridor into Chitral is nothing new ... .
Edit

Humanitarian crisis looms over far-off Broghil valley

The News International 18 Mar 2025
Despite repeated appeals for aid over the past 25 days, the indifference of authorities has led to a growing sense of deprivation and despair among the dwellers of the valley, which is situated at an altitude of 14,000 feet near the Wakhan Corridor ... .
  • 1
×