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

Hospital ship

A hospital ship is a ship designated for primary function as a floating medical treatment facility or hospital. Most are operated by the military forces (mostly navies) of various countries, as they are intended to be used in or near war zones.

Although attacking a hospital ship is a war crime, belligerent navies have the right to board such ships for inspections.

History

Early examples

Hospital ships possibly existed in ancient times. The Athenian Navy had a ship named Therapia, and the Roman Navy had a ship named Aesculapius, their names indicating that they may have been hospital ships.

It was only during the 17th century that it became customary for naval squadrons to be accompanied by special vessels with the job of taking in the wounded after each engagement. The first known such vessel was the HMS Goodwill, commissioned in 1608 for the Royal Navy. Hospital ships were also used for the treatment of wounded soldiers fighting on land. An early example of this was during an English operation to evacuate English Tangier in 1683. An account of this evacuation was written by Samuel Pepys, an eyewitness. One of the main concerns was the evacuation of sick soldiers "and the many families and their effects to be brought off". The hospital ship Unity and Welcome sailed for England on 18 October 1683 with 114 invalid soldiers and 104 women and children, arriving at The Downs on 14 December 1683.

Podcasts:

  • HOSPITAL SHIP 병원선 Ep 1: Ha Ji Won Is Back! [ENG]

    Catch Ha Ji Won and Kang Min Hyuk (of CNBLUE) in Hospital Ship with subtitles for FREE or the latest episodes on Viu Premium, every Thu & Fri, 12 hours after Korea's telecast! You can also enjoy unlimited downloads for offline viewing while on the go! Watch the full episode here ► https://goo.gl/VYDDLi Install Viu app for free ► https://goo.gl/cRUUMK Like us on Facebook ► https://www.facebook.com/viusingapore/ Follow us on Instagram ► https://www.instagram.com/viusg/ Follow us on Twitter ► https://twitter.com/ViuSG

    published: 03 Oct 2017
  • HOSPITAL SHIP 병원선 Ep 30: Minhyuk Takes a Bullet For Ha Ji Won! [ENG]

    Catch Ha Ji Won and Kang Min Hyuk (of CNBLUE) in Hospital Ship with subtitles for FREE or the latest episodes on Viu Premium, every Thu & Fri, 12 hours after Korea's telecast! You can also enjoy unlimited downloads for offline viewing while on the go! Watch the full episode with subs ► https://goo.gl/F7DEp7 Install Viu app for free ► https://goo.gl/55kzk3 Like us on Facebook ► https://www.facebook.com/viusingapore/ Follow us on Instagram ► https://www.instagram.com/viusg/ Follow us on Twitter ► https://twitter.com/ViuSG

    published: 20 Oct 2017
  • [Hospital Ship]병원선ep.37,38Ha Ji-won ♥ Kang Min-hyuk, Morning Kiss20171101

    Ha Ji-won ♥ Kang Min-hyuk, Morning Kiss ▶Playlist for More episodes - https://www.youtube.com/playlist? list=PLKGrX96Q1q7ovezEY8zd5bup7xQfVhpmj ▶Like the MBC Fanpage & WATCH new episodes - https://www.facebook.com/MBC

    published: 01 Nov 2017
  • The Biggest Modern Hospital Ships in the World.

    Hospitals are an indispensable resource worldwide, and as human presence on vast oceans grows, floating hospitals have been constructed to deliver these vital services on water. These medical ships are equipped with cutting-edge medical facilities that can deliver critical care to those in need. Whether it's a conflict zone or an area devastated by natural disasters, these ships have the ability to reach remote locations and provide medical assistance to the affected population. The impressive size and capacity of these hospital ships allow them to accommodate a large number of patients and provide them with the necessary medical treatment. These ships play a crucial role in saving lives and easing the suffering of those in need during challenging times. Here are the top 10 largest hospita...

    published: 12 May 2024
  • How the US' Hospital Ships Work

    Learn with Skillshare for free for two months by being one of the first 1000 to sign up at http://skl.sh/wendover9 Listen to Extremities at http://ExtremitiesPodcast.com Buy a Wendover Productions t-shirt: https://standard.tv/collections/wendover-productions/products/wendover-productions-shirt Subscribe to Half as Interesting (The other channel from Wendover Productions): https://www.youtube.com/halfasinteresting Youtube: http://www.YouTube.com/WendoverProductions Instagram: http://Instagram.com/sam.from.wendover Twitter: http://www.Twitter.com/WendoverPro Sponsorship Enquiries: wendover@standard.tv Other emails: sam@wendover.productions Reddit: http://Reddit.com/r/WendoverProductions Animation by Josh Sherrington Sound by Graham Haerther (http://www.Haerther.net) Thumbnail by Simon B...

    published: 07 Apr 2020
  • Hospital Ship | Trailer

    ✨ Download the Viu app through the Play Store or App Store and enjoy your favorite Korean dramas and shows! The Best of Online Korean Entertainment. Enjoy a wide variety of the latest dramas & variety shows here! Like us on Facebook ►https://www.facebook.com/viuthephilippines Follow us on Instagram ► https://www.instagram.com/viuphilippines Follow us on Twitter ► https://twitter.com/Viu_PH

    published: 04 Jul 2020
  • When Hospital Ships are Attacked, Then This Happens: Why No One Can Attack Hospital Ships

    The Untouchable Lifelines at Sea: Understanding the Invincibility of Hospital Ships Please, support the original creators. - None of these images & video clips were created/owned by us. - if you (owners) want to remove this video, please contact me through the email Daftar5tv@gmail.com. We will respectfully remove it. **𝗙𝗼𝗿 𝗤𝘂𝗲𝘀𝘁𝗶𝗼𝗻𝘀, 𝗣𝗿𝗼𝗷𝗲𝗰𝘁𝘀, 𝗖𝗼𝗹𝗹𝗮𝗯𝗼𝗿𝗮𝘁𝗶𝗼𝗻𝘀, 𝗦𝗽𝗼𝗻𝘀𝗼𝗿𝘀𝗵𝗶𝗽, 𝗔𝗱𝘃𝗲𝗿𝘁𝗶𝘀𝗲𝗿𝘀 𝗼𝗿 𝗔𝗻𝘆𝘁𝗵𝗶𝗻𝗴, 𝗖𝗼𝗻𝘁𝗮𝗰𝘁 𝗺𝗲 𝘁𝗼: 𝗡𝗮𝘂𝗰𝘁𝗶𝘀𝗬𝗧@𝗴𝗺𝗮𝗶𝗹.𝗰𝗼𝗺 Nauctis is the ultimate hub for maritime, technology, transportation, and military enthusiasts. We release new videos every day on our YouTube channel, Don't miss out on any of our updates - subscribe to our channel and Follow our Social Media to explore additional content. We request you to maintain a respectful and constructive tone in the comments se...

    published: 23 Feb 2024
  • [Hospital Ship]병원선05,06The results of the surgery done in connection the result of all, Ji-won?

    The results of the surgery done in connection the result of all, Ha Ji-won? ▶Playlist for More episodes - https://www.youtube.com/playlist?list=PLKGrX96Q1q7ovezEY8zd5bup7xQfVhpmj ▶Like the MBC Fanpage & WATCH new episodes - https://www.facebook.com/MBC

    published: 06 Sep 2017
  • Oil tanker, cargo ship collide off UK coast

    영국 북해서 유조선-화물선 충돌 전원 구조 Starting off the east coast of England an oil tanker and a cargo ship have collided, leading to fires and environmental concerns due to leaking fuel. On Monday, the U.S.-flagged oil tanker Stena Immaculate and the Portuguese-flagged cargo vessel Solong collided in the North Sea near the Humber Estuary. The Stena Immaculate, anchored at the time and carrying jet fuel for the U.S. military, suffered ruptured cargo tanks after the collision, resulting in explosions and a subsequent fire. The Solong, reportedly transporting sodium cyanide, also caught fire. Emergency response teams rescued 36 individuals from both vessels. One person was taken to the hospital and one person is reportedly missing. Experts are currently assessing the environmental impact of the collision...

    published: 11 Mar 2025
  • Giant Hospital at Sea: What They Don't Tell You About Life on the US NAVY Biggest Hospital Ship

    Dive deep into the fascinating world of the US Navy's biggest hospital ships: the Mercy and Comfort. Explore their rich history, their vital role in providing medical care in disaster zones, and the challenges they face in design and speed. Discover how these titanic vessels, initially oil tankers, were transformed into hospital ships with cutting-edge medical facilities. Unearth why these ships are paramount in showcasing America's medical prowess to the world and how they stand as beacons of hope in humanitarian missions. Join us on this intriguing voyage to uncover the tales and truths behind these colossal floating hospitals. Nauctis is the ultimate hub for maritime, technology, transportation, and military enthusiasts. We release new videos every day on our YouTube channel, Don't ...

    published: 26 Aug 2023
HOSPITAL SHIP 병원선 Ep 1: Ha Ji Won Is Back! [ENG]
1:06

HOSPITAL SHIP 병원선 Ep 1: Ha Ji Won Is Back! [ENG]

  • Order:
  • Duration: 1:06
  • Uploaded Date: 03 Oct 2017
  • views: 188896
Catch Ha Ji Won and Kang Min Hyuk (of CNBLUE) in Hospital Ship with subtitles for FREE or the latest episodes on Viu Premium, every Thu & Fri, 12 hours after Korea's telecast! You can also enjoy unlimited downloads for offline viewing while on the go! Watch the full episode here ► https://goo.gl/VYDDLi Install Viu app for free ► https://goo.gl/cRUUMK Like us on Facebook ► https://www.facebook.com/viusingapore/ Follow us on Instagram ► https://www.instagram.com/viusg/ Follow us on Twitter ► https://twitter.com/ViuSG
https://wn.com/Hospital_Ship_병원선_Ep_1_Ha_Ji_Won_Is_Back_Eng
HOSPITAL SHIP 병원선 Ep 30: Minhyuk Takes a Bullet For Ha Ji Won! [ENG]
1:25

HOSPITAL SHIP 병원선 Ep 30: Minhyuk Takes a Bullet For Ha Ji Won! [ENG]

  • Order:
  • Duration: 1:25
  • Uploaded Date: 20 Oct 2017
  • views: 1457914
Catch Ha Ji Won and Kang Min Hyuk (of CNBLUE) in Hospital Ship with subtitles for FREE or the latest episodes on Viu Premium, every Thu & Fri, 12 hours after Korea's telecast! You can also enjoy unlimited downloads for offline viewing while on the go! Watch the full episode with subs ► https://goo.gl/F7DEp7 Install Viu app for free ► https://goo.gl/55kzk3 Like us on Facebook ► https://www.facebook.com/viusingapore/ Follow us on Instagram ► https://www.instagram.com/viusg/ Follow us on Twitter ► https://twitter.com/ViuSG
https://wn.com/Hospital_Ship_병원선_Ep_30_Minhyuk_Takes_A_Bullet_For_Ha_Ji_Won_Eng
[Hospital Ship]병원선ep.37,38Ha Ji-won ♥ Kang Min-hyuk, Morning Kiss20171101
3:05

[Hospital Ship]병원선ep.37,38Ha Ji-won ♥ Kang Min-hyuk, Morning Kiss20171101

  • Order:
  • Duration: 3:05
  • Uploaded Date: 01 Nov 2017
  • views: 1437673
Ha Ji-won ♥ Kang Min-hyuk, Morning Kiss ▶Playlist for More episodes - https://www.youtube.com/playlist? list=PLKGrX96Q1q7ovezEY8zd5bup7xQfVhpmj ▶Like the MBC Fanpage & WATCH new episodes - https://www.facebook.com/MBC
https://wn.com/Hospital_Ship_병원선Ep.37,38Ha_Ji_Won_♥_Kang_Min_Hyuk,_Morning_Kiss20171101
The Biggest Modern Hospital Ships in the World.
16:33

The Biggest Modern Hospital Ships in the World.

  • Order:
  • Duration: 16:33
  • Uploaded Date: 12 May 2024
  • views: 62827
Hospitals are an indispensable resource worldwide, and as human presence on vast oceans grows, floating hospitals have been constructed to deliver these vital services on water. These medical ships are equipped with cutting-edge medical facilities that can deliver critical care to those in need. Whether it's a conflict zone or an area devastated by natural disasters, these ships have the ability to reach remote locations and provide medical assistance to the affected population. The impressive size and capacity of these hospital ships allow them to accommodate a large number of patients and provide them with the necessary medical treatment. These ships play a crucial role in saving lives and easing the suffering of those in need during challenging times. Here are the top 10 largest hospital ships in the world. if any content owners notice that the fair use has been abused. *PLEASE* contact us for further procedures and actions through our email: copyattendant@gmail.com Thank you.
https://wn.com/The_Biggest_Modern_Hospital_Ships_In_The_World.
How the US' Hospital Ships Work
10:47

How the US' Hospital Ships Work

  • Order:
  • Duration: 10:47
  • Uploaded Date: 07 Apr 2020
  • views: 1676262
Learn with Skillshare for free for two months by being one of the first 1000 to sign up at http://skl.sh/wendover9 Listen to Extremities at http://ExtremitiesPodcast.com Buy a Wendover Productions t-shirt: https://standard.tv/collections/wendover-productions/products/wendover-productions-shirt Subscribe to Half as Interesting (The other channel from Wendover Productions): https://www.youtube.com/halfasinteresting Youtube: http://www.YouTube.com/WendoverProductions Instagram: http://Instagram.com/sam.from.wendover Twitter: http://www.Twitter.com/WendoverPro Sponsorship Enquiries: wendover@standard.tv Other emails: sam@wendover.productions Reddit: http://Reddit.com/r/WendoverProductions Animation by Josh Sherrington Sound by Graham Haerther (http://www.Haerther.net) Thumbnail by Simon Buckmaster Music by http://epidemicsound.com Select footage courtesy the AP Archive References: [1] https://ihl-databases.icrc.org/applic/ihl/ihl.nsf/Comment.xsp?action=openDocument&documentId=1E5A1F4D6DBD9A08C1258115003C8B8B [2] https://ihl-databases.icrc.org/applic/ihl/ihl.nsf/Comment.xsp?action=openDocument&documentId=94B81A13B60B1175C1258115003E5314 [3] https://covid19.healthdata.org/projections [4] https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=2ahUKEwj2z5ajzszoAhWHgXIEHf1zD7QQFjAAegQIAxAB&url=https%3A%2F%2Fhealth.mil%2FReference-Center%2FPresentations%2F2018%2F08%2F27%2FUSNS-Mercy&usg=AOvVaw2M4T8Erzhsl8ofMy0qWp5s [5] https://www.militaryfactory.com/ships/detail.asp?ship_id=usns-mercy-t-ah-19-hospital-ship-usn [6] http://ie.technion.ac.il/serveng/Lectures/Hall_Flows_Hospitals_chapter1text.pdf
https://wn.com/How_The_Us'_Hospital_Ships_Work
Hospital Ship | Trailer
0:40

Hospital Ship | Trailer

  • Order:
  • Duration: 0:40
  • Uploaded Date: 04 Jul 2020
  • views: 100604
✨ Download the Viu app through the Play Store or App Store and enjoy your favorite Korean dramas and shows! The Best of Online Korean Entertainment. Enjoy a wide variety of the latest dramas & variety shows here! Like us on Facebook ►https://www.facebook.com/viuthephilippines Follow us on Instagram ► https://www.instagram.com/viuphilippines Follow us on Twitter ► https://twitter.com/Viu_PH
https://wn.com/Hospital_Ship_|_Trailer
When Hospital Ships are Attacked, Then This Happens: Why No One Can Attack Hospital Ships
12:01

When Hospital Ships are Attacked, Then This Happens: Why No One Can Attack Hospital Ships

  • Order:
  • Duration: 12:01
  • Uploaded Date: 23 Feb 2024
  • views: 150490
The Untouchable Lifelines at Sea: Understanding the Invincibility of Hospital Ships Please, support the original creators. - None of these images & video clips were created/owned by us. - if you (owners) want to remove this video, please contact me through the email Daftar5tv@gmail.com. We will respectfully remove it. **𝗙𝗼𝗿 𝗤𝘂𝗲𝘀𝘁𝗶𝗼𝗻𝘀, 𝗣𝗿𝗼𝗷𝗲𝗰𝘁𝘀, 𝗖𝗼𝗹𝗹𝗮𝗯𝗼𝗿𝗮𝘁𝗶𝗼𝗻𝘀, 𝗦𝗽𝗼𝗻𝘀𝗼𝗿𝘀𝗵𝗶𝗽, 𝗔𝗱𝘃𝗲𝗿𝘁𝗶𝘀𝗲𝗿𝘀 𝗼𝗿 𝗔𝗻𝘆𝘁𝗵𝗶𝗻𝗴, 𝗖𝗼𝗻𝘁𝗮𝗰𝘁 𝗺𝗲 𝘁𝗼: 𝗡𝗮𝘂𝗰𝘁𝗶𝘀𝗬𝗧@𝗴𝗺𝗮𝗶𝗹.𝗰𝗼𝗺 Nauctis is the ultimate hub for maritime, technology, transportation, and military enthusiasts. We release new videos every day on our YouTube channel, Don't miss out on any of our updates - subscribe to our channel and Follow our Social Media to explore additional content. We request you to maintain a respectful and constructive tone in the comments section. Any spam, insults, or trolling will not be tolerated and will be promptly deleted. Join us on our journey to discover the wonders of the sea, Technology, Transportation and Military!
https://wn.com/When_Hospital_Ships_Are_Attacked,_Then_This_Happens_Why_No_One_Can_Attack_Hospital_Ships
[Hospital Ship]병원선05,06The results of the surgery done in connection the result of all, Ji-won?
3:26

[Hospital Ship]병원선05,06The results of the surgery done in connection the result of all, Ji-won?

  • Order:
  • Duration: 3:26
  • Uploaded Date: 06 Sep 2017
  • views: 139404
The results of the surgery done in connection the result of all, Ha Ji-won? ▶Playlist for More episodes - https://www.youtube.com/playlist?list=PLKGrX96Q1q7ovezEY8zd5bup7xQfVhpmj ▶Like the MBC Fanpage & WATCH new episodes - https://www.facebook.com/MBC
https://wn.com/Hospital_Ship_병원선05,06The_Results_Of_The_Surgery_Done_In_Connection_The_Result_Of_All,_Ji_Won
Oil tanker, cargo ship collide off UK coast
0:59

Oil tanker, cargo ship collide off UK coast

  • Order:
  • Duration: 0:59
  • Uploaded Date: 11 Mar 2025
  • views: 62
영국 북해서 유조선-화물선 충돌 전원 구조 Starting off the east coast of England an oil tanker and a cargo ship have collided, leading to fires and environmental concerns due to leaking fuel. On Monday, the U.S.-flagged oil tanker Stena Immaculate and the Portuguese-flagged cargo vessel Solong collided in the North Sea near the Humber Estuary. The Stena Immaculate, anchored at the time and carrying jet fuel for the U.S. military, suffered ruptured cargo tanks after the collision, resulting in explosions and a subsequent fire. The Solong, reportedly transporting sodium cyanide, also caught fire. Emergency response teams rescued 36 individuals from both vessels. One person was taken to the hospital and one person is reportedly missing. Experts are currently assessing the environmental impact of the collision, noting that while the leaking jet fuel evaporates more quickly than crude oil, the potential release of sodium cyanide presents additional risks. #UK_coast #tanker_cargo_ship_collision #Stena_Immaculate #Solong #솔롱 #스테나이매큘럿 #유조선_화물선_충돌 #Arirang_News #아리랑뉴스 📣 Facebook : https://www.facebook.com/arirangtvnews 📣 Twitter : https://twitter.com/arirangtvnews 📣 Homepage : https://arirang.com/ 2025-03-11, 10:00 (KST)
https://wn.com/Oil_Tanker,_Cargo_Ship_Collide_Off_UK_Coast
Giant Hospital at Sea: What They Don't Tell You About Life on the US NAVY Biggest Hospital Ship
12:56

Giant Hospital at Sea: What They Don't Tell You About Life on the US NAVY Biggest Hospital Ship

  • Order:
  • Duration: 12:56
  • Uploaded Date: 26 Aug 2023
  • views: 12472
Dive deep into the fascinating world of the US Navy's biggest hospital ships: the Mercy and Comfort. Explore their rich history, their vital role in providing medical care in disaster zones, and the challenges they face in design and speed. Discover how these titanic vessels, initially oil tankers, were transformed into hospital ships with cutting-edge medical facilities. Unearth why these ships are paramount in showcasing America's medical prowess to the world and how they stand as beacons of hope in humanitarian missions. Join us on this intriguing voyage to uncover the tales and truths behind these colossal floating hospitals. Nauctis is the ultimate hub for maritime, technology, transportation, and military enthusiasts. We release new videos every day on our YouTube channel, Don't miss out on any of our updates - subscribe to our channel and Follow our Social Media to explore additional content. We request you to maintain a respectful and constructive tone in the comments section. Any spam, insults, or trolling will not be tolerated and will be promptly deleted. Join us on our journey to discover the wonders of the sea, Technology, Transportation and Military! For Questions, Projects, Collaborations, Sponsorship, Advertisers or Anything, Contact me to: NauctisYT@gmail.com
https://wn.com/Giant_Hospital_At_Sea_What_They_Don't_Tell_You_About_Life_On_The_US_Navy_Biggest_Hospital_Ship
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • HOSPITAL SHIP 병원선 Ep 1: Ha Ji Won Is Back! [ENG]
    1:06
    HOSPITAL SHIP 병원선 Ep 1: Ha Ji Won Is Back! [ENG]remove from playlist
  • HOSPITAL SHIP 병원선 Ep 30: Minhyuk Takes a Bullet For Ha Ji Won! [ENG]
    1:25
    HOSPITAL SHIP 병원선 Ep 30: Minhyuk Takes a Bullet For Ha Ji Won! [ENG]remove from playlist
  • [Hospital Ship]병원선ep.37,38Ha Ji-won ♥ Kang Min-hyuk, Morning Kiss20171101
    3:05
    [Hospital Ship]병원선ep.37,38Ha Ji-won ♥ Kang Min-hyuk, Morning Kiss20171101remove from playlist
  • The Biggest Modern Hospital Ships in the World.
    16:33
    The Biggest Modern Hospital Ships in the World.remove from playlist
  • How the US' Hospital Ships Work
    10:47
    How the US' Hospital Ships Workremove from playlist
  • Hospital Ship | Trailer
    0:40
    Hospital Ship | Trailerremove from playlist
  • When Hospital Ships are Attacked, Then This Happens: Why No One Can Attack Hospital Ships
    12:01
    When Hospital Ships are Attacked, Then This Happens: Why No One Can Attack Hospital Shipsremove from playlist
  • [Hospital Ship]병원선05,06The results of the surgery done in connection the result of all, Ji-won?
    3:26
    [Hospital Ship]병원선05,06The results of the surgery done in connection the result of all, Ji-won?remove from playlist
  • Oil tanker, cargo ship collide off UK coast
    0:59
    Oil tanker, cargo ship collide off UK coastremove from playlist
  • Giant Hospital at Sea: What They Don't Tell You About Life on the US NAVY Biggest Hospital Ship
    12:56
    Giant Hospital at Sea: What They Don't Tell You About Life on the US NAVY Biggest Hospital Shipremove from playlist
PLAYLIST TIME: 0:00 / 1:02:58

HOSPITAL SHIP 병원선 Ep 1: Ha Ji Won Is Back! [ENG]

Catch Ha Ji Won and Kang Min Hyuk (of CNBLUE) in Hospital Ship with subtitles for FREE or the latest episodes on Viu Premium, every Thu & Fri, 12 hours after Korea's telecast! You can also enjoy unlimited downloads for offline viewing while on the go! Watch the full episode here ► https://goo.gl/VYDDLi Install Viu app for free ► https://goo.gl/cRUUMK Like us on Facebook ► https://www.facebook.com/viusingapore/ Follow us on Instagram ► https://www.instagram.com/viusg/ Follow us on Twitter ► https://twitter.com/ViuSG
1:06
HOSPITAL SHIP 병원선 Ep 1: Ha Ji Won Is Back! [ENG]
Catch Ha Ji Won and Kang Min Hyuk (of CNBLUE) in Hospital Ship with subtitles for FREE or ...
published: 03 Oct 2017
Play in Full Screen
1:25
HOSPITAL SHIP 병원선 Ep 30: Minhyuk Takes a Bullet For Ha Ji Won! [ENG]
Catch Ha Ji Won and Kang Min Hyuk (of CNBLUE) in Hospital Ship with subtitles for FREE or ...
published: 20 Oct 2017
Play in Full Screen
3:05
[Hospital Ship]병원선ep.37,38Ha Ji-won ♥ Kang Min-hyuk, Morning Kiss20171101
Ha Ji-won ♥ Kang Min-hyuk, Morning Kiss ▶Playlist for More episodes - https://www.youtube....
published: 01 Nov 2017
Play in Full Screen
16:33
The Biggest Modern Hospital Ships in the World.
Hospitals are an indispensable resource worldwide, and as human presence on vast oceans gr...
published: 12 May 2024
Play in Full Screen
10:47
How the US' Hospital Ships Work
Learn with Skillshare for free for two months by being one of the first 1000 to sign up at...
published: 07 Apr 2020
Play in Full Screen
0:40
Hospital Ship | Trailer
✨ Download the Viu app through the Play Store or App Store and enjoy your favorite Korean ...
published: 04 Jul 2020
Play in Full Screen
12:01
When Hospital Ships are Attacked, Then This Happens: Why No One Can Attack Hospital Ships
The Untouchable Lifelines at Sea: Understanding the Invincibility of Hospital Ships Pleas...
published: 23 Feb 2024
Play in Full Screen
3:26
[Hospital Ship]병원선05,06The results of the surgery done in connection the result of all, Ji-won?
The results of the surgery done in connection the result of all, Ha Ji-won? ▶Playlist for...
published: 06 Sep 2017
Play in Full Screen
0:59
Oil tanker, cargo ship collide off UK coast
영국 북해서 유조선-화물선 충돌 전원 구조 Starting off the east coast of England an oil tanker and a cargo ...
published: 11 Mar 2025
Play in Full Screen
12:56
Giant Hospital at Sea: What They Don't Tell You About Life on the US NAVY Biggest Hospital Ship
Dive deep into the fascinating world of the US Navy's biggest hospital ships: the Mercy an...
published: 26 Aug 2023
Play in Full Screen

Hospital ship

A hospital ship is a ship designated for primary function as a floating medical treatment facility or hospital. Most are operated by the military forces (mostly navies) of various countries, as they are intended to be used in or near war zones.

Although attacking a hospital ship is a war crime, belligerent navies have the right to board such ships for inspections.

History

Early examples

Hospital ships possibly existed in ancient times. The Athenian Navy had a ship named Therapia, and the Roman Navy had a ship named Aesculapius, their names indicating that they may have been hospital ships.

It was only during the 17th century that it became customary for naval squadrons to be accompanied by special vessels with the job of taking in the wounded after each engagement. The first known such vessel was the HMS Goodwill, commissioned in 1608 for the Royal Navy. Hospital ships were also used for the treatment of wounded soldiers fighting on land. An early example of this was during an English operation to evacuate English Tangier in 1683. An account of this evacuation was written by Samuel Pepys, an eyewitness. One of the main concerns was the evacuation of sick soldiers "and the many families and their effects to be brought off". The hospital ship Unity and Welcome sailed for England on 18 October 1683 with 114 invalid soldiers and 104 women and children, arriving at The Downs on 14 December 1683.

'); } 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: Hospital ship

Edit

Dramatic moment passenger is 'urgently' airlifted off cruise ship as it sailed up the Australian ...

The Daily Mail 04 Apr 2025
Cruise ship passengers off the coast of Australia were left shocked when a fellow cruisegoer had to be urgently airlifted to the hospital ... he was taken to Bundaberg Hospital for a medical condition.
Edit

New Residential Cruise Line to Launch Oceania’s Insignia as Second Ship

The Maritime Executive 03 Apr 2025
Cresent Seas will be marketing the residencies while Norwegian will continue to own the cruise ship and the well-known cruise management and hospitality services company The Apollo Group will manage all onboard hospitality and culinary offerings.
Edit

Suspicious Maine islanders exposed a longtime con artist nearly 70 years ago

Bangor Daily News 03 Apr 2025
At a naval hospital in Nova Scotia and on board a ship in Korea, Demara completed at least 17 surgeries, ranging from pulling teeth to removing a bullet from a soldier’s chest.
Edit

Shadrach Bond DAR members celebrate Golden Thirteen, bats and Martha Gellhorn

The Hawk Eye 03 Apr 2025
Lacking official clearance, she hid in the bathroom of a hospital ship on June 6, 1944, to cover the D-Day invasion and when she arrived at Omaha Beach, she posed as a stretcher bearer to help transport wounded back to the ship.
Edit

Compliance Assurance

The Maritime Executive 02 Apr 2025
Navy's Military Sealift Command, which uses Headhunter's TidalWave HMX system aboard the Expeditionary Fast Transport (EPF) catamaran and the follow-on hospital ship version, the Expeditionary Medical Ship (EMS).
Edit

Operators of US military-contracted tanker sue over deadly UK collision

Freight Waves 01 Apr 2025
KG, a subsidiary of the owner of the container ship Solong, shipping company Ernst Russ ... Dozens of crew members were rescued from the burning ships, and one was hospitalized, according to Agence France-Presse.
Edit

2027: Oil & Gas Host Communities’ Leaders Canvass Tinubu’s Re-election

This Day 01 Apr 2025
&nbsp;“Billions of naira are now  flowing into community trusts, to be channelled into provision of local projects—schools, hospitals, and water schemes and these projects are springing up in about 200 locations in Niger Delta.
Edit

102-year-old Henderson man still works preparing taxes

Las Vegas Review-Journal 01 Apr 2025
He’s 102 years old and he can still do your taxes. As a veteran, pilot and tax preparer, centenarian William Brew has stories to tell ... WWII veteran ... “We came back United States on a old World War I German hospital ship,” said Brew ... .
Edit

Inland tanker collides with passenger ship in Poland

SAFETY4SEA 04 Apr 2025
On 31 March a collision occurred in the Oder Lagoon near Chełminek Island, Poland, between the passenger ship Junker Jörg and the inland motor tanker Argonaut ... subsequently hospitalized.
Edit

Indonesian military to send teams to back Myanmar's quake evacuation

Antara News 31 Mar 2025
In addition to deploying personnel, the TNI would also send aircraft, a hospital ship, and helicopters to support the evacuation process. "They are the Rajiman hospital ship, three C-130/Hercules ...
Edit

Myanmar earthquake: US slow to act as other countries step in

The Observer 31 Mar 2025
The team included earthquake experts, medical workers, field hospital workers and rescue dogs ... From south-east Asia, Indonesia will deploy logistical aid from Monday, including a hospital ship and several helicopters.
Edit

India hands over 50 tons of relief material to Myanmar

Beijing News 31 Mar 2025
With six @IAF_MCC aircraft & five @indiannavy Ships, India's large-scale first-responder assistance has been delivered to Yangon, Naypyitaw & Mandalay.' ... The Indian Army medical team has set up a Field Hospital at the old airport in Mandalay.
Edit

Global aid effort begins for Myanmar quake relief

The Jordan Times 31 Mar 2025
The Indonesian military will send a hospital ship, three Hercules aircraft and four helicopters to assist emergency response, local media reported military spokesman Kristomei Sianturi as saying.
Edit

UAE conducts urgent medical evacuation of 188 injured people, family members from Gaza

Beijing News 30 Mar 2025
... in the southern Gaza Strip and the floating hospital ship anchored in Egypt's Al-Arish Port, in addition to supporting hospitals in Gaza by providing medical equipment, medication, and supplies.
Edit

Aid rushes into Myanmar after earthquake kills over 1,600, ravages cities

CyprusMail 30 Mar 2025
FIELD HOSPITAL ... The Indian army will help set up a field hospital in Mandalay, and two navy ships carrying supplies are heading to Myanmar’s commercial capital of Yangon, said Indian Foreign Minister Subrahmanyam Jaishankar.
×