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

Maritime boundary

A maritime boundary is a conceptual division of the Earth's water surface areas using physiographic or geopolitical criteria. As such, it usually includes areas of exclusive national rights over mineral and biological resources, encompassing maritime features, limits and zones. Generally, a maritime boundary is delineated through a particular measure from a jurisdiction's coastline. Although in some countries the term maritime boundary represent borders of a maritime nation and are recognized by the United Nations Convention on the Law of the Sea, they usually serve to identify international waters.

Maritime boundaries exist in the context of territorial waters, contiguous zones, and exclusive economic zones; however, the terminology does not encompass lake or river boundaries, which are considered within the context of land boundaries.

Some maritime boundaries have remained indeterminate despite efforts to clarify them. This is explained by an array of factors, some of which illustrate regional problems.

Podcasts:

  • How Do Countries' Sea Borders Work?

    Become a member on Patreon & get exclusive info! https://www.patreon.com/funwithflags Join the Discord Server: https://discordapp.com/invite/uRTAdY9 Follow me on Twitter: https://twitter.com/GKonYoutube Business Contact: gilfamc@gmail.com Thanks for watching, remember to subscribe to catch future videos! Special mention to my patrons: Richard, Vlad, Danny, Wilhelm, Taulant, Javier, Ryan, Pete, Cesar & Hendrick!

    published: 22 May 2020
  • Maritime Boundary of Country | Fishing Ship | UNO Law of Sea | EEZ |

    Khan Sir Official App Link Here :- https://play.google.com/store/apps/details?id=xyz.penpencil.khansirofficial&hl=en_IN twitter Link :- https://twitter.com/khansirpatna?s=08 Facebook Page Link :- https://www.facebook.com/khangsresearchcenter/ About Coaching:- Teacher - Khan Sir Address - Kisan Cold Storage, Sai Mandir, Musallah pur, Patna 800006 Call - 8757354880, 8877918018 About Video :- The United Nations Convention on the Law of the Sea, also called the Law of the Sea Convention or the Law of the Sea treaty, is an international agreement that resulted from the third United Nations Conference on the Law of the Sea, which took place between 1973 and 1982. The exclusive economic zone is an area beyond and adjacent to the territorial sea, subject to the s...

    published: 25 Jun 2021
  • Maritime border deal: Lebanon, Israel satisfied with US proposal

    Lebanon says the US mediated maritime border deal with Israel satisfies all requirements. Lebanon's lead negotiator says if 'Everything goes well' it could lead to a 'historic deal'. The final text of the US brokered deal will now be sent to Lebanon’s leaders for review. Media reports suggest the deal could be signed October 20 in Lebanon’s border town Naquora. Israel's national security adviser has also said his country's demands have been met. The US drafted a proposal on resolving the dispute between the two nations. Subscribe to our channel: http://bit.ly/AJSubscribe Follow us on Twitter: https://twitter.com/AJEnglish Find us on Facebook: https://www.facebook.com/aljazeera Check our website: http://www.aljazeera.com/ Check out our Instagram page: https://www.instagram.com/aljazeeraeng...

    published: 11 Oct 2022
  • Unpacking Israel and Lebanon's historic maritime border deal

    This week, Israel and Lebanon, two countries technically at war for decades, took a rare step towards easing tensions with a maritime border agreement brokered by the United States. Neri Zilber, a reporter based in Tel Aviv, and Maya Gebeily, Reuters bureau chief for Lebanon, Syria and Jordan, join John Yang to discuss this historic deal. Stream your PBS favorites with the PBS app: https://to.pbs.org/2Jb8twG Find more from PBS NewsHour at https://www.pbs.org/newshour Subscribe to our YouTube channel: https://bit.ly/2HfsCD6 Follow us: TikTok: https://www.tiktok.com/@pbsnews Twitter: http://www.twitter.com/newshour Instagram: http://www.instagram.com/newshour Facebook: http://www.pbs.org/newshour Subscribe: PBS NewsHour podcasts: https://www.pbs.org/newshour/podcasts Newsletters: https://...

    published: 29 Oct 2022
  • Israel, Lebanon sign landmark maritime border deal

    Israeli and Lebanese leaders finalized a U.S.-brokered maritime demarcation deal, bringing a measure of accommodation between the enemy states as they eye offshore energy exploration. #israel #lebanon #maritime #politics #energy #News #Reuters #newsfeed Subscribe: http://smarturl.it/reuterssubscribe Reuters brings you the latest business, finance and breaking news video from around the globe. Our reputation for accuracy and impartiality is unparalleled. Get the latest news on: http://reuters.com/ Follow Reuters on Facebook: https://www.facebook.com/Reuters Follow Reuters on Twitter: https://twitter.com/Reuters Follow Reuters on Instagram: https://www.instagram.com/reuters/?hl=en

    published: 27 Oct 2022
  • 'Historic' deal brokered by the US settles maritime border between Israel and Lebanon | DW News

    The deal follows months of US-brokered talks and opens up the possibility of offshore energy exploration in previously disputed waters in the eastern Mediterranean. Subscribe: https://www.youtube.com/user/deutschewelleenglish?sub_confirmation=1 For more news go to: http://www.dw.com/en/ Follow DW on social media: ►Facebook: https://www.facebook.com/deutschewellenews/ ►Twitter: https://twitter.com/dwnews ►Instagram: https://www.instagram.com/dwnews ►Twitch: https://www.twitch.tv/dwnews_hangout Für Videos in deutscher Sprache besuchen Sie: https://www.youtube.com/dwdeutsch #israel #lebanon #maritime

    published: 27 Oct 2022
  • Lebanon, Israel finalise US-brokered maritime border deal

    Israeli and Lebanese leaders have signed a US-brokered deal that for the first time lays out their maritime border in the Mediterranean Sea. It enables both countries to conduct offshore exploration for gas and oil. The agreement comes after months of indirect talks that also ended a decades-long border dispute. The two neighbours have no official relations and are technically at war. Israel's Prime Minister Yair Lapid called the agreement a diplomatic achievement. Al Jazeera have two correspondents along the border of the two countries - Bernard Smith is in Israel and Zeina Khodr in Naqoura in southern Lebanon to discuss the latest updates. Subscribe to our channel http://bit.ly/AJSubscribe Follow us on Twitter https://twitter.com/AJEnglish Find us on Facebook https://www...

    published: 27 Oct 2022
  • Kenya rejects ICJ’s verdict on Somalia maritime border row

    Kenya has rejected “in totality” the decision by the International Court of Justice (ICJ) to favour Somalia in a years-long dispute over the two countries’ maritime border, adding that it is “profoundly concerned” over the decision and its implications on the region. “The decision was clearly erroneous,” read a statement by Kenya’s Presidency published on Wednesday, adding that the verdict “embodies a perpetuation of the ICJ’s jurisdictional overreach and raises a fundamental question on the respect of the sovereignty and consent of States to international judicial processes”. Al Jazeera's Catherine Soi reports from Nairobi, Kenya . - Follow us on Twitter: https://twitter.com/AJEnglish/ - Find us on Facebook: https://www.facebook.com/aljazeera/ - Check our website: https://www.alj...

    published: 13 Oct 2021
  • Lebanon and Israel talks resume over disputed maritime border

    Israel and Lebanon have resumed US-mediated talks aimed at ending a decades-long maritime border dispute in the eastern Mediterranean Sea. The indirect talks were called off weeks after they began in October. The talks, between countries still technically at war, kicked off at the UN base in the town of Naqura in southern Lebanon, the National News Agency reported on Tuesday. A deal would encourage international companies to invest, which would help Lebanon’s crippling debt, but the decision to engage in talks appears motivated by political considerations and manoeuvring, not just economics. Al Jazeera’s Zeina Khodr reports from Beirut, Lebanon. - Subscribe to our channel: http://aje.io/AJSubscribe - Follow us on Twitter: https://twitter.com/AJEnglish - Find us on Facebook: https://www...

    published: 04 May 2021
  • Will Israel and Lebanon resolve their maritime border dispute? | Inside Story

    A long-running dispute between Israel and Lebanon may soon be resolved. Both countries lay claim to the same stretch of ocean in the eastern Mediterranean, that could contain lucrative gas deposits. A US mediator has sent a proposal to both countries to demarcate their border. Lebanon's government and Hezbollah have welcomed the offer. Israel's Prime Minister Yair Lapid also supports the deal, but former PM Benjamin Netanyahu called it an 'illegal hijacking' of Israeli territory. So what is at stake here? Presenter: Folly Bah Thibault Guests: Laury Haytayan - Oil and Gas Analyst Russell Shalev - Researcher, Kohelet Policy Forum Subscribe to our channel http://bit.ly/AJSubscribe Follow us on Twitter https://twitter.com/AJEnglish Find us on Facebook https://www.facebook.com/aljazeera ...

    published: 02 Oct 2022
How Do Countries' Sea Borders Work?
12:10

How Do Countries' Sea Borders Work?

  • Order:
  • Duration: 12:10
  • Uploaded Date: 22 May 2020
  • views: 366270
Become a member on Patreon & get exclusive info! https://www.patreon.com/funwithflags Join the Discord Server: https://discordapp.com/invite/uRTAdY9 Follow me on Twitter: https://twitter.com/GKonYoutube Business Contact: gilfamc@gmail.com Thanks for watching, remember to subscribe to catch future videos! Special mention to my patrons: Richard, Vlad, Danny, Wilhelm, Taulant, Javier, Ryan, Pete, Cesar & Hendrick!
https://wn.com/How_Do_Countries'_Sea_Borders_Work
Maritime Boundary of Country | Fishing Ship | UNO Law of Sea | EEZ |
18:53

Maritime Boundary of Country | Fishing Ship | UNO Law of Sea | EEZ |

  • Order:
  • Duration: 18:53
  • Uploaded Date: 25 Jun 2021
  • views: 11789723
Khan Sir Official App Link Here :- https://play.google.com/store/apps/details?id=xyz.penpencil.khansirofficial&hl=en_IN twitter Link :- https://twitter.com/khansirpatna?s=08 Facebook Page Link :- https://www.facebook.com/khangsresearchcenter/ About Coaching:- Teacher - Khan Sir Address - Kisan Cold Storage, Sai Mandir, Musallah pur, Patna 800006 Call - 8757354880, 8877918018 About Video :- The United Nations Convention on the Law of the Sea, also called the Law of the Sea Convention or the Law of the Sea treaty, is an international agreement that resulted from the third United Nations Conference on the Law of the Sea, which took place between 1973 and 1982. The exclusive economic zone is an area beyond and adjacent to the territorial sea, subject to the specific legal regime established in this Part. Territorial sea—the zone extending 12 nm. from the baseline. Contiguous zone—the area extending 24 nm. ... from the baseline except when the space between two countries is less than 400 nm. commercial fishing, commercial fishing vessel this type is distinguished by the way the catch is stored on board. It can be either a side or stern trawler with an insulated hold where the fish are stored. About Khan GS Research Centre:- Here you will find General knowledge, Current Affairs, Science & Technology, History, Polity, Geography, Economics, Physics, Chemistry, Biology, Computer, Science & Technology, Defense, Space Technology, Indian Map & World Map, Social education video. Best Coaching Institute in Patna For UPSC, UPPCS, BPSC,BSSC, UPSSSC, SSC, Bank, Rly, Airforce, NDA, CDS, CPF and Other competitive Examination. Disclaimer:- Copyright Disclaimer under section 107 of the Copyright Act of 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, education and research. Fair use is a use permitted by copyright statute that might otherwise be infringing.
https://wn.com/Maritime_Boundary_Of_Country_|_Fishing_Ship_|_Uno_Law_Of_Sea_|_Eez_|
Maritime border deal: Lebanon, Israel satisfied with US proposal
3:41

Maritime border deal: Lebanon, Israel satisfied with US proposal

  • Order:
  • Duration: 3:41
  • Uploaded Date: 11 Oct 2022
  • views: 24677
Lebanon says the US mediated maritime border deal with Israel satisfies all requirements. Lebanon's lead negotiator says if 'Everything goes well' it could lead to a 'historic deal'. The final text of the US brokered deal will now be sent to Lebanon’s leaders for review. Media reports suggest the deal could be signed October 20 in Lebanon’s border town Naquora. Israel's national security adviser has also said his country's demands have been met. The US drafted a proposal on resolving the dispute between the two nations. Subscribe to our channel: http://bit.ly/AJSubscribe Follow us on Twitter: https://twitter.com/AJEnglish Find us on Facebook: https://www.facebook.com/aljazeera Check our website: http://www.aljazeera.com/ Check out our Instagram page: https://www.instagram.com/aljazeeraenglish/ #aljazeeraenglish #BreakingNews #AlJazeeraLive #aljazeeraenglish #newsfeed #news #aljazera #latestnews #latestwhatsappstatus #Lebanon #Israel #LebanonIsraelMaritimeBorder #LebanonIsraelMaritimeDispute #unitedstates #maritime
https://wn.com/Maritime_Border_Deal_Lebanon,_Israel_Satisfied_With_US_Proposal
Unpacking Israel and Lebanon's historic maritime border deal
8:48

Unpacking Israel and Lebanon's historic maritime border deal

  • Order:
  • Duration: 8:48
  • Uploaded Date: 29 Oct 2022
  • views: 23412
This week, Israel and Lebanon, two countries technically at war for decades, took a rare step towards easing tensions with a maritime border agreement brokered by the United States. Neri Zilber, a reporter based in Tel Aviv, and Maya Gebeily, Reuters bureau chief for Lebanon, Syria and Jordan, join John Yang to discuss this historic deal. Stream your PBS favorites with the PBS app: https://to.pbs.org/2Jb8twG Find more from PBS NewsHour at https://www.pbs.org/newshour Subscribe to our YouTube channel: https://bit.ly/2HfsCD6 Follow us: TikTok: https://www.tiktok.com/@pbsnews Twitter: http://www.twitter.com/newshour Instagram: http://www.instagram.com/newshour Facebook: http://www.pbs.org/newshour Subscribe: PBS NewsHour podcasts: https://www.pbs.org/newshour/podcasts Newsletters: https://www.pbs.org/newshour/subscribe
https://wn.com/Unpacking_Israel_And_Lebanon's_Historic_Maritime_Border_Deal
Israel, Lebanon sign landmark maritime border deal
2:22

Israel, Lebanon sign landmark maritime border deal

  • Order:
  • Duration: 2:22
  • Uploaded Date: 27 Oct 2022
  • views: 8502
Israeli and Lebanese leaders finalized a U.S.-brokered maritime demarcation deal, bringing a measure of accommodation between the enemy states as they eye offshore energy exploration. #israel #lebanon #maritime #politics #energy #News #Reuters #newsfeed Subscribe: http://smarturl.it/reuterssubscribe Reuters brings you the latest business, finance and breaking news video from around the globe. Our reputation for accuracy and impartiality is unparalleled. Get the latest news on: http://reuters.com/ Follow Reuters on Facebook: https://www.facebook.com/Reuters Follow Reuters on Twitter: https://twitter.com/Reuters Follow Reuters on Instagram: https://www.instagram.com/reuters/?hl=en
https://wn.com/Israel,_Lebanon_Sign_Landmark_Maritime_Border_Deal
'Historic' deal brokered by the US settles maritime border between Israel and Lebanon | DW News
5:34

'Historic' deal brokered by the US settles maritime border between Israel and Lebanon | DW News

  • Order:
  • Duration: 5:34
  • Uploaded Date: 27 Oct 2022
  • views: 100323
The deal follows months of US-brokered talks and opens up the possibility of offshore energy exploration in previously disputed waters in the eastern Mediterranean. Subscribe: https://www.youtube.com/user/deutschewelleenglish?sub_confirmation=1 For more news go to: http://www.dw.com/en/ Follow DW on social media: ►Facebook: https://www.facebook.com/deutschewellenews/ ►Twitter: https://twitter.com/dwnews ►Instagram: https://www.instagram.com/dwnews ►Twitch: https://www.twitch.tv/dwnews_hangout Für Videos in deutscher Sprache besuchen Sie: https://www.youtube.com/dwdeutsch #israel #lebanon #maritime
https://wn.com/'Historic'_Deal_Brokered_By_The_US_Settles_Maritime_Border_Between_Israel_And_Lebanon_|_Dw_News
Lebanon, Israel finalise US-brokered maritime border deal
5:05

Lebanon, Israel finalise US-brokered maritime border deal

  • Order:
  • Duration: 5:05
  • Uploaded Date: 27 Oct 2022
  • views: 18586
Israeli and Lebanese leaders have signed a US-brokered deal that for the first time lays out their maritime border in the Mediterranean Sea. It enables both countries to conduct offshore exploration for gas and oil. The agreement comes after months of indirect talks that also ended a decades-long border dispute. The two neighbours have no official relations and are technically at war. Israel's Prime Minister Yair Lapid called the agreement a diplomatic achievement. Al Jazeera have two correspondents along the border of the two countries - Bernard Smith is in Israel and Zeina Khodr in Naqoura in southern Lebanon to discuss the latest updates. Subscribe to our channel http://bit.ly/AJSubscribe Follow us on Twitter https://twitter.com/AJEnglish Find us on Facebook https://www.facebook.com/aljazeera Check our website: http://www.aljazeera.com/ Check out our Instagram page: https://www.instagram.com/aljazeeraenglish/ #Lebanon #Israel #LebanonIsraelMaritimeBorder #LebanonIsraelMaritimeDeal #LebanonIsraelMaritimeAgreement
https://wn.com/Lebanon,_Israel_Finalise_US_Brokered_Maritime_Border_Deal
Kenya rejects ICJ’s verdict on Somalia maritime border row
2:40

Kenya rejects ICJ’s verdict on Somalia maritime border row

  • Order:
  • Duration: 2:40
  • Uploaded Date: 13 Oct 2021
  • views: 77255
Kenya has rejected “in totality” the decision by the International Court of Justice (ICJ) to favour Somalia in a years-long dispute over the two countries’ maritime border, adding that it is “profoundly concerned” over the decision and its implications on the region. “The decision was clearly erroneous,” read a statement by Kenya’s Presidency published on Wednesday, adding that the verdict “embodies a perpetuation of the ICJ’s jurisdictional overreach and raises a fundamental question on the respect of the sovereignty and consent of States to international judicial processes”. Al Jazeera's Catherine Soi reports from Nairobi, Kenya . - Follow us on Twitter: https://twitter.com/AJEnglish/ - Find us on Facebook: https://www.facebook.com/aljazeera/ - Check our website: https://www.aljazeera.com/ #ICJ #KenyaSomaliaMaritimeDispute #IndianOceanBoundaryDispute
https://wn.com/Kenya_Rejects_Icj’S_Verdict_On_Somalia_Maritime_Border_Row
Lebanon and Israel talks resume over disputed maritime border
2:39

Lebanon and Israel talks resume over disputed maritime border

  • Order:
  • Duration: 2:39
  • Uploaded Date: 04 May 2021
  • views: 24946
Israel and Lebanon have resumed US-mediated talks aimed at ending a decades-long maritime border dispute in the eastern Mediterranean Sea. The indirect talks were called off weeks after they began in October. The talks, between countries still technically at war, kicked off at the UN base in the town of Naqura in southern Lebanon, the National News Agency reported on Tuesday. A deal would encourage international companies to invest, which would help Lebanon’s crippling debt, but the decision to engage in talks appears motivated by political considerations and manoeuvring, not just economics. Al Jazeera’s Zeina Khodr reports from Beirut, Lebanon. - Subscribe to our channel: http://aje.io/AJSubscribe - Follow us on Twitter: https://twitter.com/AJEnglish - Find us on Facebook: https://www.facebook.com/aljazeera - Check our website: https://www.aljazeera.com/ #Lebanon #LebanonIsraelMaritimeBorder #LebanonIsraelMaritimeDispute
https://wn.com/Lebanon_And_Israel_Talks_Resume_Over_Disputed_Maritime_Border
Will Israel and Lebanon resolve their maritime border dispute? | Inside Story
25:01

Will Israel and Lebanon resolve their maritime border dispute? | Inside Story

  • Order:
  • Duration: 25:01
  • Uploaded Date: 02 Oct 2022
  • views: 38837
A long-running dispute between Israel and Lebanon may soon be resolved. Both countries lay claim to the same stretch of ocean in the eastern Mediterranean, that could contain lucrative gas deposits. A US mediator has sent a proposal to both countries to demarcate their border. Lebanon's government and Hezbollah have welcomed the offer. Israel's Prime Minister Yair Lapid also supports the deal, but former PM Benjamin Netanyahu called it an 'illegal hijacking' of Israeli territory. So what is at stake here? Presenter: Folly Bah Thibault Guests: Laury Haytayan - Oil and Gas Analyst Russell Shalev - Researcher, Kohelet Policy Forum Subscribe to our channel http://bit.ly/AJSubscribe Follow us on Twitter https://twitter.com/AJEnglish Find us on Facebook https://www.facebook.com/aljazeera Check our website: http://www.aljazeera.com/ Check out our Instagram page: https://www.instagram.com/aljazeeraenglish/ #Lebanon #Israel #LebanonIsraelMaritimeBorder #LebanonIsraelMaritimeDispute
https://wn.com/Will_Israel_And_Lebanon_Resolve_Their_Maritime_Border_Dispute_|_Inside_Story
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • How Do Countries' Sea Borders Work?
    12:10
    How Do Countries' Sea Borders Work?remove from playlist
  • Maritime Boundary of Country | Fishing Ship | UNO Law of Sea | EEZ |
    18:53
    Maritime Boundary of Country | Fishing Ship | UNO Law of Sea | EEZ |remove from playlist
  • Maritime border deal: Lebanon, Israel satisfied with US proposal
    3:41
    Maritime border deal: Lebanon, Israel satisfied with US proposalremove from playlist
  • Unpacking Israel and Lebanon's historic maritime border deal
    8:48
    Unpacking Israel and Lebanon's historic maritime border dealremove from playlist
  • Israel, Lebanon sign landmark maritime border deal
    2:22
    Israel, Lebanon sign landmark maritime border dealremove from playlist
  • 'Historic' deal brokered by the US settles maritime border between Israel and Lebanon | DW News
    5:34
    'Historic' deal brokered by the US settles maritime border between Israel and Lebanon | DW Newsremove from playlist
  • Lebanon, Israel finalise US-brokered maritime border deal
    5:05
    Lebanon, Israel finalise US-brokered maritime border dealremove from playlist
  • Kenya rejects ICJ’s verdict on Somalia maritime border row
    2:40
    Kenya rejects ICJ’s verdict on Somalia maritime border rowremove from playlist
  • Lebanon and Israel talks resume over disputed maritime border
    2:39
    Lebanon and Israel talks resume over disputed maritime borderremove from playlist
  • Will Israel and Lebanon resolve their maritime border dispute? | Inside Story
    25:01
    Will Israel and Lebanon resolve their maritime border dispute? | Inside Storyremove from playlist
PLAYLIST TIME: 0:00 / 1:26:53

How Do Countries' Sea Borders Work?

Become a member on Patreon & get exclusive info! https://www.patreon.com/funwithflags Join the Discord Server: https://discordapp.com/invite/uRTAdY9 Follow me on Twitter: https://twitter.com/GKonYoutube Business Contact: gilfamc@gmail.com Thanks for watching, remember to subscribe to catch future videos! Special mention to my patrons: Richard, Vlad, Danny, Wilhelm, Taulant, Javier, Ryan, Pete, Cesar & Hendrick!
12:10
How Do Countries' Sea Borders Work?
Become a member on Patreon & get exclusive info! https://www.patreon.com/funwithflags Joi...
published: 22 May 2020
Play in Full Screen
18:53
Maritime Boundary of Country | Fishing Ship | UNO Law of Sea | EEZ |
Khan Sir Official App Link Here :- https://play.google.com/store/apps/details?id=xyz.penpe...
published: 25 Jun 2021
Play in Full Screen
3:41
Maritime border deal: Lebanon, Israel satisfied with US proposal
Lebanon says the US mediated maritime border deal with Israel satisfies all requirements. ...
published: 11 Oct 2022
Play in Full Screen
8:48
Unpacking Israel and Lebanon's historic maritime border deal
This week, Israel and Lebanon, two countries technically at war for decades, took a rare s...
published: 29 Oct 2022
Play in Full Screen
2:22
Israel, Lebanon sign landmark maritime border deal
Israeli and Lebanese leaders finalized a U.S.-brokered maritime demarcation deal, bringing...
published: 27 Oct 2022
Play in Full Screen
5:34
'Historic' deal brokered by the US settles maritime border between Israel and Lebanon | DW News
The deal follows months of US-brokered talks and opens up the possibility of offshore ener...
published: 27 Oct 2022
Play in Full Screen
5:05
Lebanon, Israel finalise US-brokered maritime border deal
Israeli and Lebanese leaders have signed a US-brokered deal that for the first time lays o...
published: 27 Oct 2022
Play in Full Screen
2:40
Kenya rejects ICJ’s verdict on Somalia maritime border row
Kenya has rejected “in totality” the decision by the International Court of Justice (ICJ) ...
published: 13 Oct 2021
Play in Full Screen
2:39
Lebanon and Israel talks resume over disputed maritime border
Israel and Lebanon have resumed US-mediated talks aimed at ending a decades-long maritime ...
published: 04 May 2021
Play in Full Screen
25:01
Will Israel and Lebanon resolve their maritime border dispute? | Inside Story
A long-running dispute between Israel and Lebanon may soon be resolved. Both countries lay...
published: 02 Oct 2022
Play in Full Screen

Maritime boundary

A maritime boundary is a conceptual division of the Earth's water surface areas using physiographic or geopolitical criteria. As such, it usually includes areas of exclusive national rights over mineral and biological resources, encompassing maritime features, limits and zones. Generally, a maritime boundary is delineated through a particular measure from a jurisdiction's coastline. Although in some countries the term maritime boundary represent borders of a maritime nation and are recognized by the United Nations Convention on the Law of the Sea, they usually serve to identify international waters.

Maritime boundaries exist in the context of territorial waters, contiguous zones, and exclusive economic zones; however, the terminology does not encompass lake or river boundaries, which are considered within the context of land boundaries.

Some maritime boundaries have remained indeterminate despite efforts to clarify them. This is explained by an array of factors, some of which illustrate regional problems.

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

Edit

Sustainability and governance in maritime challenges: The role of law, knowledge and cooperation

The Malta Independent 30 Mar 2025
These activities are increasingly viewed as major threats to maritime security ... Maritime governance cannot succeed without embedding human dignity, legal clarity, and cross-border solidarity into its foundation.
Edit

S. Korea Pres. accuses N. Korea of new forms of provocations

Kuna 28 Mar 2025
Waters near the western maritime border have been a flashpoint between the two Koreas, where three bloody naval skirmishes took place in 1999, 2002 and 2009.
Edit

Syria and Lebanon sign agreement for cooperation in border demarcation

Enab Baladi 28 Mar 2025
Aoun added that Lebanon will work to open direct channels with the Syrian administration, and through joint committees, will work on delineating both land and maritime borders with Syria to resolve ...
Edit

Seoul says will work for prompt repatriation of 2 N. Koreans found adrift near border

Korea Times 28 Mar 2025
South Korea will work toward the prompt and safe repatriation of two North Koreans who were found adrift in waters south of the inter-Korean maritime border last month, the unification ministry said Friday.
Edit

Lai backs Taiwan made ships, aircraft

Taipei Times 28 Mar 2025
The nation’s coast guard personnel are hard at work defending our maritime borders against the Chinese Communist Party’s incessant harassment via “gray zone” tactics, Lai said, urging coast guard personnel to keep themselves safe when on duty.
Edit

Acting president says N. Korea is plotting 'new forms of provocations'

Korea Times 28 Mar 2025
... the western sea border with the North ... Waters near the western maritime border have been a flashpoint between the two Koreas, where three bloody naval skirmishes took place in 1999, 2002 and 2009.
Edit

Le Figaro: President Aoun says Israel violating ceasefire, Lebanon won’t resume flights with Iran for now

LBC International 28 Mar 2025
He also emphasized plans to resolve outstanding border issues with Syria—both land and maritime—while ...
Edit

Trinidad PM says meeting with US Secretary of State was ‘very good’ - Jamaica Observer

Jamaica Observer 28 Mar 2025
The license, initially issued in early 2023, allows the companies to proceed with planning the project, which aims to supply gas to Trinidad by 2027. The Dragon Field is located in Venezuelan waters near the maritime border with Trinidad ... .
Edit

Taiwan Dismisses China Complaint About Vessel Collision

MarineLink 28 Mar 2025
China said it is also investigating the collision, which happened on the Taiwan side of the Strait's median line which used to unofficially demarcate the two sides' air and maritime border, but which Beijing says it does not recognise ... ....
Edit

Taiwan Dismisses China's Complaint About Vessel Collision

MarineLink 28 Mar 2025
China said it is also investigating the collision, which happened on the Taiwan side of the Strait's median line which used to unofficially demarcate the two sides' air and maritime border, but which Beijing says it does not recognise ... ....
Edit

Russia unleashes nuclear submarine with 621-mile strike range hypersonic missile

Interesting Engineering 28 Mar 2025
It is the sixth vessel if Yasen and Yasen-M crafts are counted together ... He also stated the new vessel will enhance the security of the country’s maritime borders and protect its interest in Arctic region, among other areas ... RECOMMENDED ARTICLES ... .
Edit

Maine’s international border agents are using drones to make more arrests

Bangor Daily News 27 Mar 2025
The Houlton Sector covers the entire state of Maine, including both land and coastal borders ... Whether watching the maritime or land border, agents are looking for people crossing illegally or with illicit contraband, Brandt said.
Edit

Senate panel advances Hoekstra nomination as U.S. ambassador to Canada

Detroit news 27 Mar 2025
"My home state is connected to Canada by four and soon to be five, bridge crossings along a maritime border, across the Great Lakes, vital lakes that drive businesses, jobs and livelihood in both ...
Edit

Myanmar military chief reaffirms election plans and calls for opposition to join politics

Wtop 27 Mar 2025
Senior Gen ... It wasn’t immediately clear whether the four Thais were the fishermen arrested by Myanmar’s navy in November after patrol boats opened fire on Thai fishing vessels in waters close to their maritime border in the Andaman Sea. Source .
Edit

For India, a new frontier in satellite internet

Deccan Herald 27 Mar 2025
The digital economy runs on the internet ... Satellite internet can plug these gaps ... It can also prove to be a critical asset for security forces in the border regions. Even beyond borders, it can be instrumental in maritime and aerial operations.
×