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

HMNB Portsmouth

Her Majesty's Naval Base, Portsmouth (HMNB Portsmouth) is one of three operating bases in the United Kingdom for the British Royal Navy (the others being HMNB Clyde and HMNB Devonport). Portsmouth Naval Base is part of the city of Portsmouth; it is located on the eastern shore of Portsmouth Harbour, north of the Solent and the Isle of Wight. Until the early 1970s it was officially known as Portsmouth Royal Dockyard (or HM Dockyard, Portsmouth); the shipbuilding, repair and maintenance element of the base was privatized in the late-1990s/early-2000s.

The base is home to one of the oldest dry docks in the world (the oldest and second-oldest are in Greenock on the River Clyde), as well as being the headquarters for two-thirds of the Royal Navy's surface fleet. The base is also home to a number of commercial shore activities, including shipbuilding and ship repair (operated by BAE Systems Maritime); naval logistics, accommodation and messing; and personnel support functions (e.g. medical and dental; education; pastoral and welfare) provided by Defence Equipment and Support.

HMS Cattistock

Three ships of the Royal Navy have been named HMS Cattistock after the Cattistock hunt:

  • HMS Cattistock (1917), launched in 1917, was a Hunt-class minesweeper that served in World War I
  • HMS Cattistock (L35), launched in 1940, was a Type I Hunt-class destroyer that served in World War II
  • HMS Cattistock (M31), launched in 1981, is a Hunt-class mine countermeasures vessel
  • Battle honours

  • North Sea 1941-45
  • Atlantic 1942-1944
  • Normandy 1944
  • Northern Persian Gulf 1990-91
  • References

    Colledge, J. J.; Warlow, Ben (2006) [1969]. Ships of the Royal Navy: The Complete Record of all Fighting Ships of the Royal Navy (Rev. ed.). London: Chatham Publishing. ISBN 978-1-86176-281-8. OCLC 67375475. 

    Cattistock

    Coordinates: 50°47′41″N 2°34′52″W / 50.7947°N 2.5811°W / 50.7947; -2.5811

    Cattistock is a village and civil parish in west Dorset, England, sited in the upper reaches of the Frome Valley 8 miles (13 km) northwest of the county town Dorchester. The Dorset poet William Barnes called it "elbow-streeted Cattstock", a comment on the less-than-linear village street. In the 2011 census the parish had a population of 509.

    Parish church

    A church was built here in the 12th century by the monks of Milton Abbey, though this structure has not survived. The current church, dedicated to St Peter and St Paul, was rebuilt in the 19th century by architects Sir George Gilbert Scott and his son George Gilbert Scott Junior. The Perpendicular-styled tower was the work of the latter, and has led to the church being dubbed the 'Cathedral of the Frome Valley'; he was also responsible for the porch, north aisle and vestry. A carillon of 35 bells was installed in the new tower a few years after its construction. This was the first carillon to be introduced to England and attracted hundreds of visitors to the valley, though the bells were destroyed by a fire in the tower on 15 September 1940. The fire also destroyed the very large clock, which previously almost spanned the width of the tower. In 1972 the Pevsner guide to Dorset architecture said that "for the mid- to late-nineteenth century, this is the masterpiece amongst Dorset churches".

    Portsmouth

    Portsmouth (i/ˈpɔərtsməθ/) is the second largest city in the ceremonial county of Hampshire on the south coast of England. Located mainly on Portsea Island, it is the United Kingdom's only island city. Portsmouth is situated 64 miles (103 km) south west of London and 19 miles (31 km) south east of Southampton. The city has a population of 205,400 and is the only city in the United Kingdom with a greater population density than London. The City of Portsmouth and Portsmouth Football Club are both nicknamed "Pompey".

    As a significant naval port for centuries, Portsmouth has the world's oldest continuously used dry dock and is home to some noted ships, including HMS Warrior, the Tudor carrack Mary Rose and Lord Nelson's flagship, HMS Victory (the world's oldest naval ship still in commission). By the 19th century, Portsmouth was one of the most fortified cities in the world. During the Second World War, the city served as a pivotal embarkation point for the D-Day landings and was also chosen as the headquarters for the Supreme Allied Commander, Dwight D. Eisenhower. The city was bombed extensively during what was known as the Portsmouth Blitz, which resulted in the deaths of 930 people. Although smaller than in its heyday, the naval base at HMNB Portsmouth remains the largest dockyard for the Royal Navy and is home to two-thirds of the entire surface fleet.

    Portsmouth, Dominica

    Portsmouth is the second largest town in Dominica, with 2,977 inhabitants. It lies on the Indian River on Dominica's northwest coast, in Saint John Parish. Cabrits National Park is located on a peninsula to the north of town. Portsmouth has its own sea port in Prince Rupert Bay.

    Portsmouth was initially chosen as the capital of Dominica, but only served in that capacity in 1760. After malaria broke out there the same year, the capital was moved to Roseau, where it remains.

    The Ross University School of Medicine, which has over 1,000 students mainly from the United States and Canada, is located near Portsmouth, in Picard. The school's presence is a major economic resource for the local people.

    A farmer's market runs Tuesdays, Fridays, and Saturdays in the city.

    The area is the birthplace of Exile One's Gordon Henderson, and local politician Roosevelt Douglas

    Benjamin's Park is the primary sporting venue and has hosted first-class cricket.

    The area has many plans for tourism and employment in general. The Japanese Government is currently funding and constructing a fish processing plant in Portsmouth.

    Pink Floyd bootleg recordings

    Pink Floyd bootleg recordings are the collections of audio and video recordings of musical performances by the British rock band Pink Floyd, which were never officially released by the band. The recordings consist of both live performances and outtakes from studio sessions unavailable in official releases. In some cases, certain bootleg recordings may be highly prized among collectors, as at least 40 songs composed by Pink Floyd have never been officially released.

    During the 1970s, bands such as Pink Floyd created a lucrative market for the mass production of unofficial recordings with large followings of fans willing to purchase them. In addition, the huge crowds that turned up to these concerts made the effective policing of the audience for the presence of recording equipment virtually impossible. Vast numbers of recordings were issued for profit by bootleg labels.

    Some Pink Floyd bootlegs exist in several variations with differing sound quality and length because sometimes listeners have recorded different versions of the same performance at the same time. Pink Floyd was a group that protected its sonic performance, making recording with amateur recording devices difficult. In their career, Pink Floyd played over 1,300 concerts, of which more than 350 were released as bootlegged recordings (sometimes in various versions). Few concerts have ever been broadcast (or repeated once they were broadcast on television), especially during 'the golden age' of the group from 1966 to 1981.

    Podcasts:

    • HM Naval Base Portsmouth

      Arriving back in Portsmouth from Jersey on the Condor Clipper and a great view of all these Naval Vessals at the HM Naval Base Portsmouth.

      published: 21 Aug 2023
    • Royal Navy Parachute Display Team drop in on Portsmouth

      Fantastic footage of the Royal Navy's Parachute Display Team making a splash at Portsmouth Naval Base's Families Day on Saturday, dropping in from 5,000 feet to cool off in 3 Basin. The team, made up of part-time volunteers with full-time day jobs and operating at close-to-zero cost to the taxpayer, plan to appear at HMS Raleigh Open Day on 27 July and at the Southampton Boat Show on 17 & 18 September. Regular and Reserve members of HM Armed Forces with at least 180 parachute descents can contact the team leader at navypol-rfrnpdttl@mod.uk if they are interested in displaying with them during 20i7.

      published: 21 Jul 2016
    • HMNB Portsmouth Dredging - Archaeological Artefacts

      A major project to dredge Portsmouth Harbour ready for the arrival of the first of the Royal Navy’s two new Queen Elizabeth Class aircraft carriers has been completed. A wide range of interesting items were found during the work to clear the harbour and make it wide and deep enough for the 65,000 tonne warships. Find out more about the nations new flagship: https://ukcarrierpower.tumblr.com/ Music: Chasing Rainbows by Frau Holle is licensed under a Attribution-NonCommercial 3.0 International License.

      published: 01 Aug 2017
    • What is HMNB Portsmouth? Explain HMNB Portsmouth, Define HMNB Portsmouth, Meaning of HMNB Portsmouth

      ~~~ HMNB Portsmouth ~~~ Title: What is HMNB Portsmouth? Explain HMNB Portsmouth, Define HMNB Portsmouth, Meaning of HMNB Portsmouth Created on: 2018-09-11 Source Link: https://en.wikipedia.org/wiki/HMNB_Portsmouth ------ Description: Her Majesty's Naval Base, Portsmouth is one of three operating bases in the United Kingdom for the British Royal Navy . Portsmouth Naval Base is part of the city of Portsmouth; it is located on the eastern shore of Portsmouth Harbour, north of the Solent and the Isle of Wight. Until the early 1970s it was officially known as Portsmouth Royal Dockyard ; the shipbuilding, repair and maintenance element of the base was privatized in the late-1990s/early-2000s. The base is home to one of the oldest dry docks in the world, as well as being the headquarters for t...

      published: 11 Sep 2018
    • Preparing Portsmouth Naval base for the arrival of HMS Prince of Wales

      Preparing Portsmouth Naval Base for the arrival of HMS Prince of Wales. Building the support infrastructure for two aircraft carriers. Royal Navy Video

      published: 05 Nov 2019
    • Royal Navy Ships @HMNB Portsmouth

      Filmed during my trip to Europe last month

      published: 30 Jul 2016
    • WE CAME OUT TO CHECK IF YOU'RE A RISK TO THE BASE!!!! - Portsmouth Naval Base

      Join this channel to get access to perks: https://www.youtube.com/channel/UCC4_cbmalJiJLYWY78upmuA/join What is going on everybody, this is TGA, and in today's video, we're down in Portsmouth, with @auditingbyv, where we get armed police out from MDP, and we fly the drone near to the Naval base.

      published: 30 Jun 2023
    • HMS Cattistock returns to HMNB Portsmouth

      HMS Cattistock returns to HMNB Portsmouth on Tuesday 17 Apr 2018, following 3 months in the Baltic sea with Standing NATO Mine Countermeasures Group 1 (SNMCMG1) MoD Video

      published: 17 Apr 2018
    • HMS Queen Elizabeth departs HMNB Portsmouth ahead of its maiden operational deployment | SWNS

      Aircraft carrier HMS Queen Elizabeth has departed HMNB Portsmouth ahead of its first operational deployment after an unscheduled stop. The 65,000 tonne ship was forced to return to its naval base due to heavy winds, but last night (22/5) it took to the sea once more. Spectacular photos show the £3bn Royal Navy warship restart its journey to the Far East where it will join the other ships in the Carrier Strike Group (CSG). ** This content is being managed by SWNS. To licence for editorial or commercial use please contact licensing@swns.com 0117 9066550** Subscribe to our channel to be the first to see our viral, breaking news videos. Twitter.com/swns Instagram.com/swns

      published: 23 May 2021
    • HMS Queen Elizabeth departs HMNB Portsmouth

      We are pleased to be able to bring you a late addition to #WebcamWednesday. At short notice HMS Queen Elizabeth is departing HMNB Portsmouth to continue her next phase of operational sea training. Remember you can watch our live webcam stream 24/7 at https://bit.ly/2VQo1wk #NavigateTheNavy #NMRN

      published: 29 Apr 2020
    developed with YouTube
    HM Naval Base Portsmouth
    3:29

    HM Naval Base Portsmouth

    • Order:
    • Duration: 3:29
    • Uploaded Date: 21 Aug 2023
    • views: 4651
    Arriving back in Portsmouth from Jersey on the Condor Clipper and a great view of all these Naval Vessals at the HM Naval Base Portsmouth.
    https://wn.com/Hm_Naval_Base_Portsmouth
    Royal Navy Parachute Display Team drop in on Portsmouth
    3:30

    Royal Navy Parachute Display Team drop in on Portsmouth

    • Order:
    • Duration: 3:30
    • Uploaded Date: 21 Jul 2016
    • views: 5962
    Fantastic footage of the Royal Navy's Parachute Display Team making a splash at Portsmouth Naval Base's Families Day on Saturday, dropping in from 5,000 feet to cool off in 3 Basin. The team, made up of part-time volunteers with full-time day jobs and operating at close-to-zero cost to the taxpayer, plan to appear at HMS Raleigh Open Day on 27 July and at the Southampton Boat Show on 17 & 18 September. Regular and Reserve members of HM Armed Forces with at least 180 parachute descents can contact the team leader at navypol-rfrnpdttl@mod.uk if they are interested in displaying with them during 20i7.
    https://wn.com/Royal_Navy_Parachute_Display_Team_Drop_In_On_Portsmouth
    HMNB Portsmouth Dredging - Archaeological Artefacts
    3:38

    HMNB Portsmouth Dredging - Archaeological Artefacts

    • Order:
    • Duration: 3:38
    • Uploaded Date: 01 Aug 2017
    • views: 7893
    A major project to dredge Portsmouth Harbour ready for the arrival of the first of the Royal Navy’s two new Queen Elizabeth Class aircraft carriers has been completed. A wide range of interesting items were found during the work to clear the harbour and make it wide and deep enough for the 65,000 tonne warships. Find out more about the nations new flagship: https://ukcarrierpower.tumblr.com/ Music: Chasing Rainbows by Frau Holle is licensed under a Attribution-NonCommercial 3.0 International License.
    https://wn.com/Hmnb_Portsmouth_Dredging_Archaeological_Artefacts
    What is HMNB Portsmouth? Explain HMNB Portsmouth, Define HMNB Portsmouth, Meaning of HMNB Portsmouth
    3:02

    What is HMNB Portsmouth? Explain HMNB Portsmouth, Define HMNB Portsmouth, Meaning of HMNB Portsmouth

    • Order:
    • Duration: 3:02
    • Uploaded Date: 11 Sep 2018
    • views: 98
    ~~~ HMNB Portsmouth ~~~ Title: What is HMNB Portsmouth? Explain HMNB Portsmouth, Define HMNB Portsmouth, Meaning of HMNB Portsmouth Created on: 2018-09-11 Source Link: https://en.wikipedia.org/wiki/HMNB_Portsmouth ------ Description: Her Majesty's Naval Base, Portsmouth is one of three operating bases in the United Kingdom for the British Royal Navy . Portsmouth Naval Base is part of the city of Portsmouth; it is located on the eastern shore of Portsmouth Harbour, north of the Solent and the Isle of Wight. Until the early 1970s it was officially known as Portsmouth Royal Dockyard ; the shipbuilding, repair and maintenance element of the base was privatized in the late-1990s/early-2000s. The base is home to one of the oldest dry docks in the world, as well as being the headquarters for two-thirds of the Royal Navy's surface fleet. The base is also home to a number of commercial shore activities ; naval logistics, accommodation and messing; and personnel support functions provided by Defence Equipment and Support. The base is the oldest in the Royal Navy and it has been an important part of the Senior Service's history and the defence of the British Isles for centuries. At one time it was the largest industrial site in the world. Around the year 2000, the designation HMS Nelson was extended to cover the entire base. The base commander since June 2015 is Commodore Peter J. Sparkes.The harbour is under the control of the Queen's Harbour Master , currently Commander Nigel Hare, who is the regulatory authority of the Dockyard Port of Portsmouth, an area of approximately 50 square miles that encompasses Portsmouth Harbour and the Eastern Solent. QHM Harbour Control is based in the Semaphore Tower building. Shipping movements are handled by a team of admiralty pilots headed by the Chief Admiralty Pilot, Anthony Bannister. Portsmouth naval base is home to two-thirds of the Royal Navy's surface ships, and employs up to 17,200 people. In addition, Portsmouth built sections of, and will be the home port of the two new Royal Navy aircraft carriers ordered in 2008, HMS Queen Elizabeth and HMS Prince of Wales; they have required the harbour to be dredged to allow safe entry and exit. It was claimed that this project had secured the base's future for the next forty years and would revitalise shipbuilding in the city; however, due to budget cuts in 2013 shipbuilding in Portsmouth was closed in favour of BAE keeping open its yards in Glasgow. In 1985 a partnership between the Ministry of Defence and Portsmouth City Council created the Portsmouth Naval Base Property Trust to manage part of the historic south-west corner of the Naval Base, under a 99-year lease, as a heritage area: Portsmouth Historic Dockyard. It allows members of the public to visit important maritime attractions such as Mary Rose, HMS Victory and HMS Warrior. ------ To see your favorite topic here, fill out this request form: https://docs.google.com/forms/d/e/1FAIpQLScU0dLbeWsc01IC0AaO8sgaSgxMFtvBL31c_pjnwEZUiq99Fw/viewform ------ Source: Wikipedia.org articles, adapted under https://creativecommons.org/licenses/by-sa/3.0/ license. Support: Donations can be made from https://wikimediafoundation.org/wiki/Ways_to_Give to support Wikimedia Foundation and knowledge sharing.
    https://wn.com/What_Is_Hmnb_Portsmouth_Explain_Hmnb_Portsmouth,_Define_Hmnb_Portsmouth,_Meaning_Of_Hmnb_Portsmouth
    Preparing Portsmouth Naval base for the arrival of HMS Prince of Wales
    0:44

    Preparing Portsmouth Naval base for the arrival of HMS Prince of Wales

    • Order:
    • Duration: 0:44
    • Uploaded Date: 05 Nov 2019
    • views: 15251
    Preparing Portsmouth Naval Base for the arrival of HMS Prince of Wales. Building the support infrastructure for two aircraft carriers. Royal Navy Video
    https://wn.com/Preparing_Portsmouth_Naval_Base_For_The_Arrival_Of_Hms_Prince_Of_Wales
    Royal Navy Ships @HMNB Portsmouth
    1:51

    Royal Navy Ships @HMNB Portsmouth

    • Order:
    • Duration: 1:51
    • Uploaded Date: 30 Jul 2016
    • views: 3475
    Filmed during my trip to Europe last month
    https://wn.com/Royal_Navy_Ships_Hmnb_Portsmouth
    WE CAME OUT TO CHECK IF YOU'RE A RISK TO THE BASE!!!! - Portsmouth Naval Base
    21:52

    WE CAME OUT TO CHECK IF YOU'RE A RISK TO THE BASE!!!! - Portsmouth Naval Base

    • Order:
    • Duration: 21:52
    • Uploaded Date: 30 Jun 2023
    • views: 7757
    Join this channel to get access to perks: https://www.youtube.com/channel/UCC4_cbmalJiJLYWY78upmuA/join What is going on everybody, this is TGA, and in today's video, we're down in Portsmouth, with @auditingbyv, where we get armed police out from MDP, and we fly the drone near to the Naval base.
    https://wn.com/We_Came_Out_To_Check_If_You'RE_A_Risk_To_The_Base_Portsmouth_Naval_Base
    HMS Cattistock returns to HMNB Portsmouth
    0:44

    HMS Cattistock returns to HMNB Portsmouth

    • Order:
    • Duration: 0:44
    • Uploaded Date: 17 Apr 2018
    • views: 578
    HMS Cattistock returns to HMNB Portsmouth on Tuesday 17 Apr 2018, following 3 months in the Baltic sea with Standing NATO Mine Countermeasures Group 1 (SNMCMG1) MoD Video
    https://wn.com/Hms_Cattistock_Returns_To_Hmnb_Portsmouth
    HMS Queen Elizabeth departs HMNB Portsmouth ahead of its maiden operational deployment | SWNS
    1:20

    HMS Queen Elizabeth departs HMNB Portsmouth ahead of its maiden operational deployment | SWNS

    • Order:
    • Duration: 1:20
    • Uploaded Date: 23 May 2021
    • views: 13055
    Aircraft carrier HMS Queen Elizabeth has departed HMNB Portsmouth ahead of its first operational deployment after an unscheduled stop. The 65,000 tonne ship was forced to return to its naval base due to heavy winds, but last night (22/5) it took to the sea once more. Spectacular photos show the £3bn Royal Navy warship restart its journey to the Far East where it will join the other ships in the Carrier Strike Group (CSG). ** This content is being managed by SWNS. To licence for editorial or commercial use please contact licensing@swns.com 0117 9066550** Subscribe to our channel to be the first to see our viral, breaking news videos. Twitter.com/swns Instagram.com/swns
    https://wn.com/Hms_Queen_Elizabeth_Departs_Hmnb_Portsmouth_Ahead_Of_Its_Maiden_Operational_Deployment_|_Swns
    HMS Queen Elizabeth departs HMNB Portsmouth
    26:04

    HMS Queen Elizabeth departs HMNB Portsmouth

    • Order:
    • Duration: 26:04
    • Uploaded Date: 29 Apr 2020
    • views: 3405
    We are pleased to be able to bring you a late addition to #WebcamWednesday. At short notice HMS Queen Elizabeth is departing HMNB Portsmouth to continue her next phase of operational sea training. Remember you can watch our live webcam stream 24/7 at https://bit.ly/2VQo1wk #NavigateTheNavy #NMRN
    https://wn.com/Hms_Queen_Elizabeth_Departs_Hmnb_Portsmouth
    • HMS Cattistock sails from Portsmouth

      MCM Crew 8 HMSCattistock sails from Portsmouth today for sea training with @FOST Video: PortsmouthProud

      published: 08 Oct 2020
    • "HMS CATTISTOCK GRANTED FREEDOM OF POOLE"

      Recorded on Saturday the 4th of May 2024. The Mayor of Poole presented the freedom scroll. Entire ship company led by the royal marines band marched through the Quay and town centre. HMS Cattistock is the third ship of this name, a hunt class mine countermeasures vessel of the Royal navy war ship. Launched in 1981 and commissioned on the 5th of March 1982. Captain of the Cattistock is Lieutenant Commander Jonny Campbell. I hope you enjoy. Follow me on Twitter.

      published: 04 May 2024
    • Royal Navy HMS Cattistock (M31) Hunt-class Mine Countermeasures Vessel Portsmouth England

      The Hunt class is a class of thirteen mine countermeasure vessels of the Royal Navy. As built, they combined the separate roles of the traditional minesweeper and that of the active minehunter in one hull, but later modifications saw the removal of mine-sweeping equipment. They have a secondary role as offshore patrol vessels. (Text Wikipedia)

      published: 25 Sep 2020
    • HMS Cattistock Final

      published: 09 May 2011
    • 1981 HMS CATTISTOCK mine warfare battleship history and facts

      hms cattistock one of the 13 hunt class mine countermeasures vessels constructed for the royal navy which entered service in 1980 here are some pictures and facts in this video i made

      published: 23 Feb 2015
    • HMS Cattistock

      Portsmouth Harbour. HMS Cattistock (M31), the third ship of this name, is a Hunt-class minesweeper of the Royal Navy. She was launched in 1981 and commissioned on 5 March 1982, the third ship of her class. She was mentioned in the media in December 2002 after coliding with a jetty as she was leaving her homeport of Portsmouth in late November. She was left with a 2 ft hole in her side, although no crew were hurt in the collision.

      published: 20 Sep 2011
    • #pooleharbour HMS Cattistock open day

      published: 05 May 2024
    • the Band of HM Royal Marines Plymouth: HMS Cattistock, Freedom of Poole, Dorset

      HMS Cattistock is granted the freedom on the town of Poole in Dorset on the 4th of may 2024! Marches Played: 0:00 : A Life on the Ocean Wave 2:33 : Hearts of Oak 3:38 : Gibraltar 8:20 : Illawalla 10:10 : Army of the Nile 13:37 : Kitchener's Army 16:04 : Wellington 20:40 : Illawalla 22:20 : Blue Devils 27:42 : Rule Britannia: General Salute Freedom of the City or Town is an ancient honour granted to martial organisations, allowing them the privilege to march into the city "with drums beating, colours flying, and bayonets fixed" This honour dates back to ancient Rome which regarded the "pomerium", the boundary of the city, as sacred. Promagistrates and generals were forbidden from entering it, and resigned their imperium immediately upon crossing it. An exception was made for victory cel...

      published: 04 May 2024
    • The Band of HM Royal Marines Plymouth Freedom of Poole Parade - HMS Cattistock

      The Band of HM Royal Marines Plymouth leading the ship’s company of HMS Cattistock around the town of Poole in Dorest where they were granted the freedom of the town on Saturday May 4th 2024. 00:00 Heart of Oak 01:35 The Captain General 05:07 A Life On The Ocean Wave 06:05 Heart Of Oak 07:02 Gibraltar 09:57 Illawalla (Drum Solo) 11:05 Army Of The Nile 14:09 Kitcheners Army (Drum Solo) 16:18 Washington Grays 20:54 Illawalla (Drum Solo) 21:50 Blue Devils 26:18 Rule Britannia (General Salute) HMS Cattistock is the first Royal Naval ship to be awarded the Freedom of Poole and they were joined by local sea cadets for the parade. The band were under the direction of Captain Weites and led by the Drum Major of Royal Marines Band Portsmouth (Royal Band) as noted by the 'Royal Band' patch on hi...

      published: 04 May 2024
    • HMS Cattistock Exiting Canning Dock, Liverpool

      HMS Cattistock, the third ship of this name, is a Hunt-class mine countermeasures vessel of the Royal Navy. She was launched in 1981 and commissioned on 5 March 1982, the third ship of her class. This is her exiting Canning Dock in Liverpool back in 2019. If you like what i put up youtube and you would like to help me please consider buying me a coffee, thanks in advance. https://www.buymeacoffee.com/jamesohanlI Instagram: https://www.instagram.com/mersey_shipping/ Facebook: https://www.facebook.com/profile.php?id=100082098611881 Twitter: https://twitter.com/mersey_shipping

      published: 13 Nov 2023
    developed with YouTube
    HMS Cattistock sails from Portsmouth
    1:46

    HMS Cattistock sails from Portsmouth

    • Order:
    • Duration: 1:46
    • Uploaded Date: 08 Oct 2020
    • views: 3936
    MCM Crew 8 HMSCattistock sails from Portsmouth today for sea training with @FOST Video: PortsmouthProud
    https://wn.com/Hms_Cattistock_Sails_From_Portsmouth
    "HMS CATTISTOCK GRANTED FREEDOM OF POOLE"
    23:08

    "HMS CATTISTOCK GRANTED FREEDOM OF POOLE"

    • Order:
    • Duration: 23:08
    • Uploaded Date: 04 May 2024
    • views: 991
    Recorded on Saturday the 4th of May 2024. The Mayor of Poole presented the freedom scroll. Entire ship company led by the royal marines band marched through the Quay and town centre. HMS Cattistock is the third ship of this name, a hunt class mine countermeasures vessel of the Royal navy war ship. Launched in 1981 and commissioned on the 5th of March 1982. Captain of the Cattistock is Lieutenant Commander Jonny Campbell. I hope you enjoy. Follow me on Twitter.
    https://wn.com/Hms_Cattistock_Granted_Freedom_Of_Poole
    Royal Navy HMS Cattistock (M31) Hunt-class Mine Countermeasures Vessel Portsmouth England
    0:36

    Royal Navy HMS Cattistock (M31) Hunt-class Mine Countermeasures Vessel Portsmouth England

    • Order:
    • Duration: 0:36
    • Uploaded Date: 25 Sep 2020
    • views: 152
    The Hunt class is a class of thirteen mine countermeasure vessels of the Royal Navy. As built, they combined the separate roles of the traditional minesweeper and that of the active minehunter in one hull, but later modifications saw the removal of mine-sweeping equipment. They have a secondary role as offshore patrol vessels. (Text Wikipedia)
    https://wn.com/Royal_Navy_Hms_Cattistock_(M31)_Hunt_Class_Mine_Countermeasures_Vessel_Portsmouth_England
    HMS Cattistock Final
    0:54

    HMS Cattistock Final

    • Order:
    • Duration: 0:54
    • Uploaded Date: 09 May 2011
    • views: 492
    https://wn.com/Hms_Cattistock_Final
    1981 HMS CATTISTOCK mine warfare battleship history and facts
    4:31

    1981 HMS CATTISTOCK mine warfare battleship history and facts

    • Order:
    • Duration: 4:31
    • Uploaded Date: 23 Feb 2015
    • views: 567
    hms cattistock one of the 13 hunt class mine countermeasures vessels constructed for the royal navy which entered service in 1980 here are some pictures and facts in this video i made
    https://wn.com/1981_Hms_Cattistock_Mine_Warfare_Battleship_History_And_Facts
    HMS Cattistock
    0:24

    HMS Cattistock

    • Order:
    • Duration: 0:24
    • Uploaded Date: 20 Sep 2011
    • views: 815
    Portsmouth Harbour. HMS Cattistock (M31), the third ship of this name, is a Hunt-class minesweeper of the Royal Navy. She was launched in 1981 and commissioned on 5 March 1982, the third ship of her class. She was mentioned in the media in December 2002 after coliding with a jetty as she was leaving her homeport of Portsmouth in late November. She was left with a 2 ft hole in her side, although no crew were hurt in the collision.
    https://wn.com/Hms_Cattistock
    #pooleharbour HMS Cattistock open day
    8:21

    #pooleharbour HMS Cattistock open day

    • Order:
    • Duration: 8:21
    • Uploaded Date: 05 May 2024
    • views: 152
    https://wn.com/Pooleharbour_Hms_Cattistock_Open_Day
    the Band of HM Royal Marines Plymouth: HMS Cattistock, Freedom of Poole, Dorset
    28:03

    the Band of HM Royal Marines Plymouth: HMS Cattistock, Freedom of Poole, Dorset

    • Order:
    • Duration: 28:03
    • Uploaded Date: 04 May 2024
    • views: 22109
    HMS Cattistock is granted the freedom on the town of Poole in Dorset on the 4th of may 2024! Marches Played: 0:00 : A Life on the Ocean Wave 2:33 : Hearts of Oak 3:38 : Gibraltar 8:20 : Illawalla 10:10 : Army of the Nile 13:37 : Kitchener's Army 16:04 : Wellington 20:40 : Illawalla 22:20 : Blue Devils 27:42 : Rule Britannia: General Salute Freedom of the City or Town is an ancient honour granted to martial organisations, allowing them the privilege to march into the city "with drums beating, colours flying, and bayonets fixed" This honour dates back to ancient Rome which regarded the "pomerium", the boundary of the city, as sacred. Promagistrates and generals were forbidden from entering it, and resigned their imperium immediately upon crossing it. An exception was made for victory celebrations (called triumphs), during which the victorious general would be permitted to enter for one day only. Under the Republic, soldiers also lost their status when entering, becoming citizens: thus soldiers at their general's triumph wore civilian dress. Weapons were also banned inside the pomerium for religious and traditional reasons. (The assassination of Julius Caesar occurred outside this boundary.) Similar laws were passed by other European cities throughout the Medieval era, to protect public security and civic rights, even against their own king's troops. As a result, soldiers would be forced to camp outside the walls of the city during the winter months. The Freedom of the City was an honour granted only to troops which had earned the trust of the local populace, either through some valiant action or simply by being a familiar presence. Today, martial freedom of the city is an entirely ceremonial honour, usually bestowed upon a unit or ship with historic ties to the area, as a token of appreciation for their long and dedicated service. The awarding of the Freedom is often accompanied by a celebratory parade through the city.
    https://wn.com/The_Band_Of_Hm_Royal_Marines_Plymouth_Hms_Cattistock,_Freedom_Of_Poole,_Dorset
    The Band of HM Royal Marines Plymouth Freedom of Poole Parade - HMS Cattistock
    26:42

    The Band of HM Royal Marines Plymouth Freedom of Poole Parade - HMS Cattistock

    • Order:
    • Duration: 26:42
    • Uploaded Date: 04 May 2024
    • views: 68928
    The Band of HM Royal Marines Plymouth leading the ship’s company of HMS Cattistock around the town of Poole in Dorest where they were granted the freedom of the town on Saturday May 4th 2024. 00:00 Heart of Oak 01:35 The Captain General 05:07 A Life On The Ocean Wave 06:05 Heart Of Oak 07:02 Gibraltar 09:57 Illawalla (Drum Solo) 11:05 Army Of The Nile 14:09 Kitcheners Army (Drum Solo) 16:18 Washington Grays 20:54 Illawalla (Drum Solo) 21:50 Blue Devils 26:18 Rule Britannia (General Salute) HMS Cattistock is the first Royal Naval ship to be awarded the Freedom of Poole and they were joined by local sea cadets for the parade. The band were under the direction of Captain Weites and led by the Drum Major of Royal Marines Band Portsmouth (Royal Band) as noted by the 'Royal Band' patch on his shoulder. Military Bands Everywhere: Contact - militarybandseverywhere@gmail.com Website: https://www.militarybandseverywhere.co.uk/ Facebook: https://www.facebook.com/MilitaryBandsEverywhere/ Instagram: https://www.instagram.com/militarybands_everywhere/ YouTube: youtube.com/channel/UCqMwv09QL8jQP2j8ITpn-qg
    https://wn.com/The_Band_Of_Hm_Royal_Marines_Plymouth_Freedom_Of_Poole_Parade_Hms_Cattistock
    HMS Cattistock Exiting Canning Dock, Liverpool
    3:54

    HMS Cattistock Exiting Canning Dock, Liverpool

    • Order:
    • Duration: 3:54
    • Uploaded Date: 13 Nov 2023
    • views: 410
    HMS Cattistock, the third ship of this name, is a Hunt-class mine countermeasures vessel of the Royal Navy. She was launched in 1981 and commissioned on 5 March 1982, the third ship of her class. This is her exiting Canning Dock in Liverpool back in 2019. If you like what i put up youtube and you would like to help me please consider buying me a coffee, thanks in advance. https://www.buymeacoffee.com/jamesohanlI Instagram: https://www.instagram.com/mersey_shipping/ Facebook: https://www.facebook.com/profile.php?id=100082098611881 Twitter: https://twitter.com/mersey_shipping
    https://wn.com/Hms_Cattistock_Exiting_Canning_Dock,_Liverpool
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    HM Naval Base Portsmouth

    Arriving back in Portsmouth from Jersey on the Condor Clipper and a great view of all these Naval Vessals at the HM Naval Base Portsmouth.
    3:29
    HM Naval Base Portsmouth
    Arriving back in Portsmouth from Jersey on the Condor Clipper and a great view of all thes...
    published: 21 Aug 2023
    Play in Full Screen
    3:30
    Royal Navy Parachute Display Team drop in on Portsmouth
    Fantastic footage of the Royal Navy's Parachute Display Team making a splash at Portsmouth...
    published: 21 Jul 2016
    Play in Full Screen
    3:38
    HMNB Portsmouth Dredging - Archaeological Artefacts
    A major project to dredge Portsmouth Harbour ready for the arrival of the first of the Roy...
    published: 01 Aug 2017
    Play in Full Screen
    3:02
    What is HMNB Portsmouth? Explain HMNB Portsmouth, Define HMNB Portsmouth, Meaning of HMNB Portsmouth
    ~~~ HMNB Portsmouth ~~~ Title: What is HMNB Portsmouth? Explain HMNB Portsmouth, Define H...
    published: 11 Sep 2018
    Play in Full Screen
    0:44
    Preparing Portsmouth Naval base for the arrival of HMS Prince of Wales
    Preparing Portsmouth Naval Base for the arrival of HMS Prince of Wales. Building the suppo...
    published: 05 Nov 2019
    Play in Full Screen
    1:51
    Royal Navy Ships @HMNB Portsmouth
    Filmed during my trip to Europe last month
    published: 30 Jul 2016
    Play in Full Screen
    21:52
    WE CAME OUT TO CHECK IF YOU'RE A RISK TO THE BASE!!!! - Portsmouth Naval Base
    Join this channel to get access to perks: https://www.youtube.com/channel/UCC4_cbmalJiJLYW...
    published: 30 Jun 2023
    Play in Full Screen
    0:44
    HMS Cattistock returns to HMNB Portsmouth
    HMS Cattistock returns to HMNB Portsmouth on Tuesday 17 Apr 2018, following 3 months in th...
    published: 17 Apr 2018
    Play in Full Screen
    1:20
    HMS Queen Elizabeth departs HMNB Portsmouth ahead of its maiden operational deployment | SWNS
    Aircraft carrier HMS Queen Elizabeth has departed HMNB Portsmouth ahead of its first opera...
    published: 23 May 2021
    Play in Full Screen
    26:04
    HMS Queen Elizabeth departs HMNB Portsmouth
    We are pleased to be able to bring you a late addition to #WebcamWednesday. At short notic...
    published: 29 Apr 2020
    Play in Full Screen

    HMNB Portsmouth

    Her Majesty's Naval Base, Portsmouth (HMNB Portsmouth) is one of three operating bases in the United Kingdom for the British Royal Navy (the others being HMNB Clyde and HMNB Devonport). Portsmouth Naval Base is part of the city of Portsmouth; it is located on the eastern shore of Portsmouth Harbour, north of the Solent and the Isle of Wight. Until the early 1970s it was officially known as Portsmouth Royal Dockyard (or HM Dockyard, Portsmouth); the shipbuilding, repair and maintenance element of the base was privatized in the late-1990s/early-2000s.

    The base is home to one of the oldest dry docks in the world (the oldest and second-oldest are in Greenock on the River Clyde), as well as being the headquarters for two-thirds of the Royal Navy's surface fleet. The base is also home to a number of commercial shore activities, including shipbuilding and ship repair (operated by BAE Systems Maritime); naval logistics, accommodation and messing; and personnel support functions (e.g. medical and dental; education; pastoral and welfare) provided by Defence Equipment and Support.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    HMS Cattistock sails from Portsmouth

    MCM Crew 8 HMSCattistock sails from Portsmouth today for sea training with @FOST Video: PortsmouthProud
    1:46
    HMS Cattistock sails from Portsmouth
    MCM Crew 8 HMSCattistock sails from Portsmouth today for sea training with @FOST Video: ...
    published: 08 Oct 2020
    Play in Full Screen
    23:08
    "HMS CATTISTOCK GRANTED FREEDOM OF POOLE"
    Recorded on Saturday the 4th of May 2024. The Mayor of Poole presented the freedom scroll...
    published: 04 May 2024
    Play in Full Screen
    0:36
    Royal Navy HMS Cattistock (M31) Hunt-class Mine Countermeasures Vessel Portsmouth England
    The Hunt class is a class of thirteen mine countermeasure vessels of the Royal Navy. As bu...
    published: 25 Sep 2020
    Play in Full Screen
    0:54
    HMS Cattistock Final
    published: 09 May 2011
    Play in Full Screen
    4:31
    1981 HMS CATTISTOCK mine warfare battleship history and facts
    hms cattistock one of the 13 hunt class mine countermeasures vessels constructed for the r...
    published: 23 Feb 2015
    Play in Full Screen
    0:24
    HMS Cattistock
    Portsmouth Harbour. HMS Cattistock (M31), the third ship of this name, is a Hunt-class mi...
    published: 20 Sep 2011
    Play in Full Screen
    8:21
    #pooleharbour HMS Cattistock open day
    published: 05 May 2024
    Play in Full Screen
    28:03
    the Band of HM Royal Marines Plymouth: HMS Cattistock, Freedom of Poole, Dorset
    HMS Cattistock is granted the freedom on the town of Poole in Dorset on the 4th of may 202...
    published: 04 May 2024
    Play in Full Screen
    26:42
    The Band of HM Royal Marines Plymouth Freedom of Poole Parade - HMS Cattistock
    The Band of HM Royal Marines Plymouth leading the ship’s company of HMS Cattistock around ...
    published: 04 May 2024
    Play in Full Screen
    3:54
    HMS Cattistock Exiting Canning Dock, Liverpool
    HMS Cattistock, the third ship of this name, is a Hunt-class mine countermeasures vessel o...
    published: 13 Nov 2023
    Play in Full Screen
    '); } 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)); } }); }); }); // -->
    ×