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

Gulf of Khambhat

The Gulf of Khambhat (also known as the Gulf of Cambay) is an inlet of the Arabian Sea along the west coast of India, in the state of Gujarat. It is about 130 kilometres (80 mi) miles in length, and divides the Kathiawar peninsula to the west from the eastern part of Gujarat state.

The Narmada, Tapti, Mahi and Sabarmati rivers drain into it.

There are plans to construct a 30km dam across the gulf.

See also

  • Marine archaeology in the Gulf of Cambay
  • Marine National Park, Gulf of Kutch
  • References

    Coordinates: 21°30′N 72°30′E / 21.500°N 72.500°E / 21.500; 72.500

    Khambhat

    Khambhat, Gujarati:ખંભાત,(Hindi:खंभात) ( pronunciation ), also known as Cambay, is a town and the surrounding urban agglomeration in Khambhat Taluka, Anand district in the Indian state of Gujarat. It was once an important trading center, but its harbour gradually silted up, and the maritime trade moved elsewhere. Khambhat lies on an alluvial plain at the north end of the Gulf of Khambhat, noted for the extreme rise and fall of its tides, which can vary as much as thirty feet in the vicinity of Khambhat. Khambhat is known for its halvasan, sutarfeni and kites (patang). And though being a part of sources of oil and gas.

    Khambat is perhaps the only place in India, where the Harappan craft – the agate bead making is found in the living tradition. Surprisingly Khambat has no stone deposit. But the craft has survived mainly through acquiring stones from the Rajpipla hills, about 200 km away from the town. In the folklore of Khambat the beginning of the craft is attributed to Baba Ghor, a 1500 AD saint from Ethiopia who had led a large contingent of Muslims to settle in the town. However, in the archaeological record the origin of the craft can be traced to the nearby Lothal, a Harappan outpost flourished about 4000 years ago.

    Khambhat (Vidhan Sabha constituency)

    Khambhat assembly constituency (ખંભાત વિધાનસભા બેઠક) is one of the 182 assembly constituencies of Gujarat. It is located in Anand district.

    List of segments

    This assembly seat represents the following segments

    - Khambhat Taluka

    Total Number of Voters

    Member of Legislative Assembly

  • 2007 - Shirish Shukla, Bharatiya Janata Party
  • 2012 - Sanjay Patel, Bharatiya Janata Party
  • Election Results

    2012

    References

    See also

    List of constituencies of Gujarat Legislative Assembly

    Gujarat Legislative Assembly

    Podcasts:

    • 32,000 years old Ancient Hindu City : Gulf of Khambhat

      Sanatana Hindu Dharma is now officially more than 32,000 years old A Research in Gulf of Khambhat reveals that sanatana Hindu Dharma is More than 32,000 years old and this Ancient City was drowned 9000 years ago ( in dwapara yuga)

      published: 18 Oct 2019
    • 9500 Year Old Remains in the Gulf of Cambay?

      🌟Subscribe NOW to The Lost History Channel TKTC🌟 The Squatter-Man Project: https://www.youtube.com/playlist?list=PLV-I21lCq9lnE8ObyhRlRQmW-7HQMoueM Narrated by @BuzWeaver: https://www.youtube.com/user/BuzWeaver Follow us on Odysee: https://odysee.com/@TheLostHistoryChannelTKTC:0 Tweeting Stuff: https://twitter.com/STARGAZERNATION The Lost History Channel TKTC 'ONLY on YT: https://www.youtube.com/user/MRSTARGAZERNATION TKTC on FB: https://www.facebook.com/TheKeplertelescopeChannel/ TKTC Face covering: https://teespring.com/LostHistorySeekTruthDesign?pid=1026 Channel Support: https://www.patreon.com/TheLostHistoryChannelTKTC TKTC on Instagram: https://www.instagram.com/thelosthistorychanneltktc/ Brien Foerster. The Legend: https://hiddenincatours.com/ His YT Channel: https://www.youtub...

      published: 12 Dec 2020
    • 12,000+ Year-Old Submerged City, Gujarat Coast

      From Episode 113 of #AskAbhijit. WATCH FULL EPISODE: #AskAbhijit 112: #AskAbhijit 113: History, Geopolitics, Current Affairs ► https://youtu.be/pf0gRUigTdg SUBSCRIBE to this channel ► https://www.youtube.com/AbhijitChavdaClips/?sub_confirmation=1 SUBSCRIBE to the main channel ► https://www.youtube.com/AbhijitChavda/?sub_confirmation=1 -------------------------------------------------------------------------- SUPPORT THE CHANNEL -------------------------------------------------------------------------- ►UPI (G-Pay/PhonePe/Paytm): abhijitchavda@icici ►PayPal: https://paypal.me/AbhijitChavda -------------------------------------------------------------------------- JOIN #AbhijitChavda ------------------------------------------------------------...

      published: 28 Jul 2022
    • Khambhat a city of pillars | Gulf of Cambay | khambati halwasan | खम्बात दुनिया का प्राचीन बंदरगाह

      #khambhatthecityofpillars #gulfofKhambhat #khambatihalwasan #unboundindia #sutrafeni #khambhatkahalwasan #cambayworldsoldestharbour #Khambhat means #thecityofpillars, the coastal town of #Gujarat which was once a very big & important port. This small city situated on the banks of the Arabian Sea in the #GulfofKhambhat was a great center for trade with Middle East countries. Water vessels laden with goods used to put their anchor here, and trade was done. Many foreign travelers have also mentioned this city that time. Time changed so that the sea also changed its position and slipped several kilometers behind and a big port became extinct and the only memories that have not changed. The unchanged are the mood of the city and business identity of the city. The world famous workmanship of s...

      published: 04 Jan 2021
    • Gulf Of Khambhat || Khambhat No Dariyo || Gulf Of Cambay || Mohammad Yasin Official

      Gulf Of Khambhat || Khambhat No Dariyo || Gulf Of Cambay || Mohammad Yasin Official Please Like , Share & Subscribe My Youtube Channel Assalamu Alaikum I Am Shaikh Mohammad Yasin.Welcome To My Official YouTube Channel Mohammad Yasin Official. About This Video- Dosto Aaj Ki Is Video Me Aap Dekh Sakte He Ke Gujrat Ke Khambhat City Ka Gulf Of Khambhat Ka Beautiful Nazara Dekh Sakte He.Ummeed He Aapko Ye Video Pasand Aayegi Thank You So Much. Google Map Location : View of Gulf of Khambhat https://maps.app.goo.gl/a31yEu2kuUw2mc2s7 More Videos About Khambhat Related 👇👇 Gulf Of Khambhat All Videos : https://youtube.com/playlist?list=PLfxqICtGUz-3CRVyrUOug-P75QULcnSUJ&feature=shares Khambhat Muharram 2019 All Parts: https://youtube.com/playlist?list=PLfxqICtGUz-0sZQyrzolvEBD_8npfHZEz&feat...

      published: 05 Oct 2019
    • Scientists are Now Correcting Their Stupidity! | Gulf Of Cambay | Shiva | Aliens| Sadhguru|Adiyogi

      Get your NEW 'Adiyogi' Clothing ► https://bit.ly/adiyogi_store Scientists are Now Correcting Their Stupidity! | Gulf Of Cambay | Shiva | Aliens| Sadhguru|Adiyogi Yogi, mystic and visionary, Sadhguru is a spiritual master with a difference. An arresting blend of profundity and pragmatism, his life and work serves as a reminder that yoga is a contemporary science, vitally relevant to our times. Check out Adiyogi Collections ► https://kit.co/Adiyogi Subscribe to Adiyogi YouTube Channel Here: https://bit.ly/3fgwc0o ***** Official Social Profiles of Adiyogi ***** Instagram - https://www.instagram.com/adiyogi_store/ Facebook - https://www.facebook.com/adiyogi1008/ Twitter - https://twitter.com/adiyogi1008

      published: 22 Mar 2022
    • Gulf of kachchh & Gulf of khambhat ।। India map learn

      #gulfofkachchh #gulfofkhambhat #Indiamaplearn #कच्छकीखाड़ी #खंभातकीखाड़ी India map playlist :- https://youtube.com/playlist?list=PLUfCO6t2E1vwBbJMLHzd3_jhqx4BXmt3B subscribe to my channel for IAS, PCS preparation and more :- https://youtube.com/channel/UCVsNh552JTNJxbHIoLhYGFg

      published: 31 Jul 2021
    • Dwarka: Have archaeologists finally found India's sunken kingdom? - BBC REEL

      The city of Dwarka is one of the seven holy pilgrimage centres in India. It is the only place which is contemporary with the events described in the epic Mahabharata, where it is described as the ancient kingdom of Krishna. It is written that upon Krishna's death the city was sunk beneath the Arabian sea. Today, archaeologists searching for the lost kingdom believe they have found evidence of its existence off the coast of the modern-day Dwarka, and are trying to understand what could have caused it to be lost beneath the sea. Video by Mithun Pramanik #bbcreel #bbc #bbcnews

      published: 27 Dec 2021
    developed with YouTube
    32,000 years old Ancient Hindu City : Gulf of Khambhat
    4:36

    32,000 years old Ancient Hindu City : Gulf of Khambhat

    • Order:
    • Duration: 4:36
    • Uploaded Date: 18 Oct 2019
    • views: 28775
    Sanatana Hindu Dharma is now officially more than 32,000 years old A Research in Gulf of Khambhat reveals that sanatana Hindu Dharma is More than 32,000 years old and this Ancient City was drowned 9000 years ago ( in dwapara yuga)
    https://wn.com/32,000_Years_Old_Ancient_Hindu_City_Gulf_Of_Khambhat
    9500 Year Old Remains in the Gulf of Cambay?
    5:46

    9500 Year Old Remains in the Gulf of Cambay?

    • Order:
    • Duration: 5:46
    • Uploaded Date: 12 Dec 2020
    • views: 19352
    🌟Subscribe NOW to The Lost History Channel TKTC🌟 The Squatter-Man Project: https://www.youtube.com/playlist?list=PLV-I21lCq9lnE8ObyhRlRQmW-7HQMoueM Narrated by @BuzWeaver: https://www.youtube.com/user/BuzWeaver Follow us on Odysee: https://odysee.com/@TheLostHistoryChannelTKTC:0 Tweeting Stuff: https://twitter.com/STARGAZERNATION The Lost History Channel TKTC 'ONLY on YT: https://www.youtube.com/user/MRSTARGAZERNATION TKTC on FB: https://www.facebook.com/TheKeplertelescopeChannel/ TKTC Face covering: https://teespring.com/LostHistorySeekTruthDesign?pid=1026 Channel Support: https://www.patreon.com/TheLostHistoryChannelTKTC TKTC on Instagram: https://www.instagram.com/thelosthistorychanneltktc/ Brien Foerster. The Legend: https://hiddenincatours.com/ His YT Channel: https://www.youtube.com/channel/UCOavg1FtdeuyUTLz3wmuIKQ All the latest from 'The Lost History Channel TKTC: https://www.youtube.com/playlist?list=PLV-I21lCq9lkivgexh0TrsNj3pnbI2na6 Astrophotography? Join our FB Group: https://www.facebook.com/groups/StargazersNation Licensed under a creative commons: https://creativecommons.org/licenses/by/3.0/ #India, #GulfofCambay, #UnderwaterCity, #TheLostHistoryChannelTKTC, #LostHistory, #Ancient, #History, #Prehistory
    https://wn.com/9500_Year_Old_Remains_In_The_Gulf_Of_Cambay
    12,000+ Year-Old Submerged City, Gujarat Coast
    6:55

    12,000+ Year-Old Submerged City, Gujarat Coast

    • Order:
    • Duration: 6:55
    • Uploaded Date: 28 Jul 2022
    • views: 108483
    From Episode 113 of #AskAbhijit. WATCH FULL EPISODE: #AskAbhijit 112: #AskAbhijit 113: History, Geopolitics, Current Affairs ► https://youtu.be/pf0gRUigTdg SUBSCRIBE to this channel ► https://www.youtube.com/AbhijitChavdaClips/?sub_confirmation=1 SUBSCRIBE to the main channel ► https://www.youtube.com/AbhijitChavda/?sub_confirmation=1 -------------------------------------------------------------------------- SUPPORT THE CHANNEL -------------------------------------------------------------------------- ►UPI (G-Pay/PhonePe/Paytm): abhijitchavda@icici ►PayPal: https://paypal.me/AbhijitChavda -------------------------------------------------------------------------- JOIN #AbhijitChavda -------------------------------------------------------------------------- ★Twitter: http://twitter.com/AbhijitChavda ★Instagram: http://instagram.com/TheAbhijitChavda ★Facebook: https://www.facebook.com/TheAbhijitChavda ★Website: http://AbhijitChavda.com ★Email Inquiries: inquiries.chavda@gmail.com -------------------------------------------------------------------------- #AskAbhijitChavda #AskAbhijitPodcast #Abhijit #Chavda #AskAbhijitShow #AbhijitChavdaClips
    https://wn.com/12,000_Year_Old_Submerged_City,_Gujarat_Coast
    Khambhat a city of pillars | Gulf of Cambay  | khambati halwasan | खम्बात दुनिया का प्राचीन बंदरगाह
    12:05

    Khambhat a city of pillars | Gulf of Cambay | khambati halwasan | खम्बात दुनिया का प्राचीन बंदरगाह

    • Order:
    • Duration: 12:05
    • Uploaded Date: 04 Jan 2021
    • views: 31863
    #khambhatthecityofpillars #gulfofKhambhat #khambatihalwasan #unboundindia #sutrafeni #khambhatkahalwasan #cambayworldsoldestharbour #Khambhat means #thecityofpillars, the coastal town of #Gujarat which was once a very big & important port. This small city situated on the banks of the Arabian Sea in the #GulfofKhambhat was a great center for trade with Middle East countries. Water vessels laden with goods used to put their anchor here, and trade was done. Many foreign travelers have also mentioned this city that time. Time changed so that the sea also changed its position and slipped several kilometers behind and a big port became extinct and the only memories that have not changed. The unchanged are the mood of the city and business identity of the city. The world famous workmanship of sweets like #Halwasan #Sutrapheni and colored stones has now become a new identity here. My YouTube channel link YouTube link http://www.youtube.com/c/vinodkashyap Other social media links Facebook page links @unboundindia05 https://www.facebook.com/vinod.kashyap.73 Instagram page @kvinod22 Twitter page @vinodkashyap22 @UNBOUNDINDIA2 #Khambhatthecityofpillars #GulfofKhambhat #khambatihalwasan #Khambhatshaharmekyahai -~-~~-~~~-~~-~- Please watch: "क्यों और कैसे डूबी थी द्वारका? | Ancient Dwarka a submerged city | Amazing facts about India" https://www.youtube.com/watch?v=DvHSzxDvl5E -~-~~-~~~-~~-~-
    https://wn.com/Khambhat_A_City_Of_Pillars_|_Gulf_Of_Cambay_|_Khambati_Halwasan_|_खम्बात_दुनिया_का_प्राचीन_बंदरगाह
    Gulf Of Khambhat || Khambhat No Dariyo || Gulf  Of Cambay || Mohammad Yasin Official
    3:01

    Gulf Of Khambhat || Khambhat No Dariyo || Gulf Of Cambay || Mohammad Yasin Official

    • Order:
    • Duration: 3:01
    • Uploaded Date: 05 Oct 2019
    • views: 83471
    Gulf Of Khambhat || Khambhat No Dariyo || Gulf Of Cambay || Mohammad Yasin Official Please Like , Share & Subscribe My Youtube Channel Assalamu Alaikum I Am Shaikh Mohammad Yasin.Welcome To My Official YouTube Channel Mohammad Yasin Official. About This Video- Dosto Aaj Ki Is Video Me Aap Dekh Sakte He Ke Gujrat Ke Khambhat City Ka Gulf Of Khambhat Ka Beautiful Nazara Dekh Sakte He.Ummeed He Aapko Ye Video Pasand Aayegi Thank You So Much. Google Map Location : View of Gulf of Khambhat https://maps.app.goo.gl/a31yEu2kuUw2mc2s7 More Videos About Khambhat Related 👇👇 Gulf Of Khambhat All Videos : https://youtube.com/playlist?list=PLfxqICtGUz-3CRVyrUOug-P75QULcnSUJ&feature=shares Khambhat Muharram 2019 All Parts: https://youtube.com/playlist?list=PLfxqICtGUz-0sZQyrzolvEBD_8npfHZEz&feature=shares More Videos About Shaikh Mohammad Yasin👇👇👇 :- Naat playlist :- https://www.youtube.com/playlist?list=PLfxqICtGUz-1Z5jjDxAMpWRBFa5OfUqVb 🔷Connect with Shaikh Mohammad Yasin:- ✓YouTube :https://youtube.com/@MohammadYasinOfficial786?feature=shares ✓Instagram :https://www.instagram.com/yasin_creations/ ✓Facebook :https://www.facebook.com/profile.php?id=100013588037281 #gulfofkhambhat #gulfofcambay #khambhatnodariyo #khambhatnoakhaat #mohammadyasinofficial #khambhat #cambay
    https://wn.com/Gulf_Of_Khambhat_||_Khambhat_No_Dariyo_||_Gulf_Of_Cambay_||_Mohammad_Yasin_Official
    Scientists are Now Correcting Their Stupidity! | Gulf Of Cambay | Shiva | Aliens| Sadhguru|Adiyogi
    11:39

    Scientists are Now Correcting Their Stupidity! | Gulf Of Cambay | Shiva | Aliens| Sadhguru|Adiyogi

    • Order:
    • Duration: 11:39
    • Uploaded Date: 22 Mar 2022
    • views: 1237163
    Get your NEW 'Adiyogi' Clothing ► https://bit.ly/adiyogi_store Scientists are Now Correcting Their Stupidity! | Gulf Of Cambay | Shiva | Aliens| Sadhguru|Adiyogi Yogi, mystic and visionary, Sadhguru is a spiritual master with a difference. An arresting blend of profundity and pragmatism, his life and work serves as a reminder that yoga is a contemporary science, vitally relevant to our times. Check out Adiyogi Collections ► https://kit.co/Adiyogi Subscribe to Adiyogi YouTube Channel Here: https://bit.ly/3fgwc0o ***** Official Social Profiles of Adiyogi ***** Instagram - https://www.instagram.com/adiyogi_store/ Facebook - https://www.facebook.com/adiyogi1008/ Twitter - https://twitter.com/adiyogi1008
    https://wn.com/Scientists_Are_Now_Correcting_Their_Stupidity_|_Gulf_Of_Cambay_|_Shiva_|_Aliens|_Sadhguru|Adiyogi
    Gulf of kachchh & Gulf of khambhat ।। India map learn
    0:43

    Gulf of kachchh & Gulf of khambhat ।। India map learn

    • Order:
    • Duration: 0:43
    • Uploaded Date: 31 Jul 2021
    • views: 4958
    #gulfofkachchh #gulfofkhambhat #Indiamaplearn #कच्छकीखाड़ी #खंभातकीखाड़ी India map playlist :- https://youtube.com/playlist?list=PLUfCO6t2E1vwBbJMLHzd3_jhqx4BXmt3B subscribe to my channel for IAS, PCS preparation and more :- https://youtube.com/channel/UCVsNh552JTNJxbHIoLhYGFg
    https://wn.com/Gulf_Of_Kachchh_Gulf_Of_Khambhat_।।_India_Map_Learn
    Dwarka: Have archaeologists finally found India's sunken kingdom? - BBC REEL
    7:21

    Dwarka: Have archaeologists finally found India's sunken kingdom? - BBC REEL

    • Order:
    • Duration: 7:21
    • Uploaded Date: 27 Dec 2021
    • views: 2696509
    The city of Dwarka is one of the seven holy pilgrimage centres in India. It is the only place which is contemporary with the events described in the epic Mahabharata, where it is described as the ancient kingdom of Krishna. It is written that upon Krishna's death the city was sunk beneath the Arabian sea. Today, archaeologists searching for the lost kingdom believe they have found evidence of its existence off the coast of the modern-day Dwarka, and are trying to understand what could have caused it to be lost beneath the sea. Video by Mithun Pramanik #bbcreel #bbc #bbcnews
    https://wn.com/Dwarka_Have_Archaeologists_Finally_Found_India's_Sunken_Kingdom_BBC_Reel
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    32,000 years old Ancient Hindu City : Gulf of Khambhat

    Sanatana Hindu Dharma is now officially more than 32,000 years old A Research in Gulf of Khambhat reveals that sanatana Hindu Dharma is More than 32,000 years old and this Ancient City was drowned 9000 years ago ( in dwapara yuga)
    4:36
    32,000 years old Ancient Hindu City : Gulf of Khambhat
    Sanatana Hindu Dharma is now officially more than 32,000 years old A Research in Gulf of ...
    published: 18 Oct 2019
    Play in Full Screen
    5:46
    9500 Year Old Remains in the Gulf of Cambay?
    🌟Subscribe NOW to The Lost History Channel TKTC🌟 The Squatter-Man Project: https://www.you...
    published: 12 Dec 2020
    Play in Full Screen
    6:55
    12,000+ Year-Old Submerged City, Gujarat Coast
    From Episode 113 of #AskAbhijit. WATCH FULL EPISODE: #AskAbhijit 112: #AskAbhijit 113: Hi...
    published: 28 Jul 2022
    Play in Full Screen
    12:05
    Khambhat a city of pillars | Gulf of Cambay | khambati halwasan | खम्बात दुनिया का प्राचीन बंदरगाह
    #khambhatthecityofpillars #gulfofKhambhat #khambatihalwasan #unboundindia #sutrafeni #kham...
    published: 04 Jan 2021
    Play in Full Screen
    3:01
    Gulf Of Khambhat || Khambhat No Dariyo || Gulf Of Cambay || Mohammad Yasin Official
    Gulf Of Khambhat || Khambhat No Dariyo || Gulf Of Cambay || Mohammad Yasin Official Plea...
    published: 05 Oct 2019
    Play in Full Screen
    11:39
    Scientists are Now Correcting Their Stupidity! | Gulf Of Cambay | Shiva | Aliens| Sadhguru|Adiyogi
    Get your NEW 'Adiyogi' Clothing ► https://bit.ly/adiyogi_store Scientists are Now Correct...
    published: 22 Mar 2022
    Play in Full Screen
    0:43
    Gulf of kachchh & Gulf of khambhat ।। India map learn
    #gulfofkachchh #gulfofkhambhat #Indiamaplearn #कच्छकीखाड़ी #खंभातकीखाड़ी India map playli...
    published: 31 Jul 2021
    Play in Full Screen
    7:21
    Dwarka: Have archaeologists finally found India's sunken kingdom? - BBC REEL
    The city of Dwarka is one of the seven holy pilgrimage centres in India. It is the only pl...
    published: 27 Dec 2021
    Play in Full Screen

    Gulf of Khambhat

    The Gulf of Khambhat (also known as the Gulf of Cambay) is an inlet of the Arabian Sea along the west coast of India, in the state of Gujarat. It is about 130 kilometres (80 mi) miles in length, and divides the Kathiawar peninsula to the west from the eastern part of Gujarat state.

    The Narmada, Tapti, Mahi and Sabarmati rivers drain into it.

    There are plans to construct a 30km dam across the gulf.

    See also

  • Marine archaeology in the Gulf of Cambay
  • Marine National Park, Gulf of Kutch
  • References

    Coordinates: 21°30′N 72°30′E / 21.500°N 72.500°E / 21.500; 72.500

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

    Most Viewed

    ×