- published: 05 Jul 2024
- views: 5421
'+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; })); }); -->
The Republic of China Navy (ROCN; Chinese: 中華民國海軍; pinyin: Zhōnghuá Mínguó Hǎijūn) is the maritime branch of the Republic of China Armed Forces. The ROC Navy's primary mission is to defend ROC territories and the sea lanes that surround Taiwan against a blockade, attack, or possible invasion by forces of the People's Republic of China. Operations include maritime patrols in the Taiwan Strait and surrounding waters, as well as counter-strike and counter-invasion operations during wartime. The Republic of China Marine Corps functions as a branch of the Navy.
The ship prefix for ROCN combatants is ROCS (Republic of China Ship); an older usage is CNS (Chinese Navy Ship).
Coordinates: 23°30′N 121°00′E / 23.500°N 121.000°E / 23.500; 121.000
Taiwan (i/ˌtaɪˈwɑːn/; Chinese: 臺灣 or 台灣; see below), officially the Republic of China (ROC; Chinese: 中華民國; pinyin: Zhōnghuá Mínguó), is a sovereign state in East Asia. The Republic of China, originally based in mainland China, now governs the island of Taiwan, which constitutes more than 99% of its territory, as well as Penghu, Kinmen, Matsu, and other minor islands, following its loss of the mainland China territory in 1949 in the Chinese Civil War. This remaining area is also constitutionally called the "Free area of the Republic of China" which is not ruled by the Communist Party of China in Beijing.
Neighboring states include the People's Republic of China (PRC) to the west (mainland China), Japan to the east and northeast, and the Philippines to the south. Taiwan is one of the most densely populated countries in the world with a population density of 649 people per km2 in October 2015.Taipei is the seat of the central government, and together with the surrounding cities of New Taipei and Keelung forms the largest metropolitan area on the island.
The Republic of China (traditional Chinese: 中華民國; simplified Chinese: 中华民国; pinyin: Zhōnghuá Mínguó; Wade–Giles: Chung1-hua2 Min2-kuo2; Zhuyin Fuhao: ㄓㄨㄥ ㄏㄨㄚˊ ㄇㄧㄣˊ ㄍㄨㄛˊ) was a state in East Asia from 1912 to 1949. It included the present-day territories of China, Taiwan and, for some of its history, Mongolia. As an era of Chinese history, the Republic of China was preceded by the last imperial dynasty of China, the Qing dynasty and its end was marked by the end of the Chinese Civil War, in which the losing Kuomintang retreated to the Island of Taiwan to found the modern Republic of China, while the victorious Communist Party of China proclaimed the People's Republic of China on the Mainland.
The Republic's first president, Sun Yat-sen, served only briefly. His party, then led by Song Jiaoren, won a parliamentary election held in December 1912. However the army led by President Yuan Shikai retained control of the national government in Beijing. After Yuan's death in 1916, local military leaders, or warlords, asserted autonomy.
The Nationalist government, officially the National Government of the Republic of China (Chinese: 中華民國國民政府; pinyin: Zhōnghuá Mínguó Guómín Zhèngfǔ) refers to the government of the Republic of China between 1927 to 1948, led by the Kuomintang (KMT) party. The name derives from the Kuomintang's translated name "Nationalist Party". The government was in place until the Government of the Republic of China under the newly promulgated Constitution of the Republic of China was established in its place.
After the outbreak of the Xinhai Revolution on October 10, 1911, revolutionary leader Sun Yat-sen was elected Provisional President and founded the Provisional Government of the Republic of China. To preserve national unity, Sun ceded the presidency to military strongman Yuan Shikai, who established the Beiyang government. After a failed attempt to install himself as Emperor of China, Yuan died in 1916, leaving a power vacuum which resulted in China being divided into several warlord fiefdoms and rival governments. They were nominally reunified in 1928 by the Nanjing-based government led by Generalissimo Chiang Kai-shek, which after the Northern Expedition, governed the country as a one-party state under the Kuomintang, and was subsequently given international recognition as the legitimate representative of China.
The People's Liberation Army Navy (PLAN), also known as the PLA Navy, is the naval warfare branch of the People's Liberation Army, the national armed forces of the People's Republic of China. The PLAN can trace its lineage to naval units fighting during the Chinese Civil War and was established in September 1950. Throughout the 1950s and early 1960s the Soviet Union provided assistance to the PLAN in the form of naval advisers and export of equipment and technology. Until the late 1980s, the PLAN was largely a riverine and littoral force (brown-water navy). However, by the 1990s, following the fall of the Soviet Union and a shift towards a more forward-oriented foreign and security policy, the leaders of the Chinese military were freed from worrying over land border disputes, and instead turned their attention towards the seas. This led to the development of the People's Liberation Army Navy into a green-water navy by 2009. Before the 1990s the PLAN had traditionally played a subordinate role to the People's Liberation Army Ground Force.
China has long been a cradle and host to a variety of the most enduring religio-philosophical traditions of the world. Confucianism and Taoism, plus Buddhism, constitute the "three teachings", philosophical frameworks which historically have had a significant role in shaping Chinese culture. Elements of these three belief systems are incorporated into folk or popular religions. Chinese religions are family-oriented and do not demand exclusive adherence, allowing the practice or belief of several at the same time. Some scholars prefer not to use the term "religion" in reference to belief systems in China, and suggest "cultural practices", "thought systems" or "philosophies" as more appropriate terms. The emperors of China claimed the Mandate of Heaven and participated in Chinese religious practices. Since 1949, China has been governed by the Communist Party of China, which, in theory, is an atheist institution and prohibits party members from belonging to a religion. During Mao Zedong's rule, religious movements were oppressed. Under following leaders, religious organisations have been given more autonomy. At the same time, China is considered a nation with a long history of humanist and secularist, this-worldly thought since the time of Confucius, who stressed shisu (Chinese: 世俗; pinyin: shìsú, "being in the world"), and Hu Shih stated in the 1920s that "China is a country without religion and the Chinese are a people who are not bound by religious superstitions". The Party formally and institutionally recognises five religions in China: Buddhism, Taoism, Islam, Protestantism, and Catholicism (though despite historic links, the Party enforces a separation of the Chinese Catholic Church from the Roman Catholic Church), and there has been more institutional recognition for Confucianism and the Chinese folk religion.
You can support my channel on Patreon: https://www.patreon.com/HiddenHistoryYT Want U-Boat or Warship models? Go here: https://hiddenhistoryyt.myshopify.com Thanks for watching, remember to like & subscribe! Subscribe to our FREE daily WW2 newsletter: https://hiddenhistoryyt.beehiiv.com/subscribe China, the venerable Middle Empire only emerged from its tumultous warlord era and entered a republican phase with Chiang Kai-Shek as President. In 1930 however troubles were still rampant throughout the country-continent (notably the communist influence) but the biggest threat was outside: The Empire of Japan, already a foot in Korea, had views on China, at least the Northern provinces that she can access easily and were rich in oil and other resources. In 1931, after a serie of orchestrated...
China's military has finished two days of military drills around Taiwan in the greatest escalation in tension across the Taiwan Strait since 2022. China characterised the two day drills as "punishment", while Taiwan insists it won't be cowed by Chinese pressure. Read more: https://news.sky.com/topic/china-5869 #skynews #china #taiwan SUBSCRIBE to our YouTube channel for more videos: http://www.youtube.com/skynews Follow us on Twitter: https://twitter.com/skynews Like us on Facebook: https://www.facebook.com/skynews Follow us on Instagram: https://www.instagram.com/skynews Follow us on TikTok: https://www.tiktok.com/@skynews For more content go to http://news.sky.com and download our apps: Apple https://itunes.apple.com/gb/app/sky-news/id316391924?mt=8 Android https://play.google...
People's Republic of China People's Liberation Army (Navy) Luang II class guided missile destroyer Xi'an (DD 153) arrives at Joint Base Pearl Harbor-Hickam for Rim of the Pacific 2016. The world's largest international maritime exercise, RIMPAC provides a unique training opportunity that helps participants foster and sustain the cooperative relationships that are critical to ensuring the safety of sea lanes and security on the world's oceans. RIMPAC 2016 is the 25th exercise in the series that began in 1971. MiliSource - Your online source for up-to-date military news videos. Favorite this video and subscribe for news updates. subscribe: http://youtube.com/MiliSource facebook: http://facebook.com/MiliSource g+: http://google.com/+MiliSource twitter: http://twitter.com/MiliSource Video b...
Promotional video about the Peoples Liberation Army Navy of the Communist Republic of China... not a very catchy name admittedly
我們是中華民國的新海軍, 我們是三民主義的新海軍, 信仰堅定,紀律嚴明, 操縱新時代之戰艦,使用最堅利之甲兵。 雄視三洋,屏障四海,保衛疆土,鞏固和平, 同舟共濟,萬眾一心,養成忠勇冒險之好習慣, 同舟共濟,萬眾一心,創造海洋生活之新精神。 新海軍,新海軍,乘長風破萬里浪, 為青天白日旗爭光榮,為青天白日旗爭光榮。 *This video has been uploaded only for the purpose of sharing music and history, not for Politics Propagandas. 上傳此視頻僅用於分享音樂和歷史記錄,並無任何政治宣傳目的 Bitchute:https://www.bitchute.com/channel/z9kCIqtHDGme/ 歌曲翻譯頻道(Translated song channel):https://www.youtube.com/channel/UCFE8kTWhpOvY8t9XEcOaFpA 副頻道(2nd Channel):https://www.youtube.com/channel/UC2nEigTtkDLYmfG-L9TyfgQ/featured Discord Servers Note's Awesome Server(反正就是我的伺服器):https://discordapp.com/invite/THmEzAZ MSSRL(國家及羅曼諾夫王朝遺族安全部?):https://discord.gg/PKMf8An (All Polandballs are drawn by me Don't reprint them without my permission pls 右下的球球都...
We review the surface ships, submarines and technologies of the Republic of China Navy (RoCN), known informally as the Taiwanese Navy. We cover guided missile warships, submarines, and amphibious transports. Want to support the channel? - https://www.patreon.com/EurasiaNavalinsight CHAPTERS 00:00 – Intro & key indigenous tech 03:40 – Destroyers and frigates 09:21 – Submarines 12:32 – Corvettes & missile boats 15:48 – Amphibious transports Keywords: 中華民國海軍, China, Taiwan Strait, Chinese Navy, PLA Navy, RoC, Hsiung-Feng, 雄風, 基隆級, Keelung class, Kidd class, Kang Ding class, 康定級, Cheng Kung class, 成功級, Oliver Hazard Perry, Chi Yang class, Knox class, Hai Lung, Tuo-Jiang, Tuo-Chiang, 沱江級, Kuang-Hua VI missile boat, 光華六號飛彈快艇, Yushan class LPD, 玉山級
The Hsiung Feng II (HF-2) (雄風二型, "Brave Wind II") is an anti-ship missile system developed by the Chungshan Institute of Science and Technology in Taiwan. The HF-2 is designed to be deployed aboard ships or at land-based facilities, an airborne version has also been developed which can be carried by the ROC Air Force's F-CK fighters. The HF-2 has ECCM capabilities and is deployed on the ROC Navy's Cheng Kung class frigates and Lafayette class frigates, as well as at several land-based sites. In 2000, plans were announced to replace the HF-2 missiles stationed on the Cheng Kung frigates with the RGM-84 Harpoon, but the budget for this was cancelled. In 2001 a land attack cruise missile variant known as the HF-2E was announced, mass production of the HF-2E began in 2005. 雄風飛彈有1型、2型和3型三大係列...
First time to do navy, hope you enjoyed. Don't forget to sub me and follow my Instagram :)) Song: Two Steps From Hell - Impossible Instagram: https://www.instagram.com/clone1997/ Tags: #忠義軍風 海軍, Taiwan, Ships, Military Tribute
Just wanna share some songs I really enjoy that most of you guys probably never heard of. Discord Server:https://discord.gg/MhtDytd Twitter:https://twitter.com/Comrade_KellyYT?s=09 A republic was formally established on 1 January 1912 following the Xinhai Revolution, which itself began with the Wuchang Uprising on 10 October 1911, successfully overthrowing the Qing Dynasty and ending over two thousand years of imperial rule in China. From its founding until 1949 it was based on mainland China. Central authority waxed and waned in response to warlordism (1915–28), Japanese invasion (1937–45), and a full-scale civil war (1927–49), with central authority strongest during the Nanjing Decade (1927–37), when most of China came under the control of the Kuomintang (KMT) under an authoritarian o...
The Republic of China Navy (ROCN; Chinese: 中華民國海軍; pinyin: Zhōnghuá Mínguó Hǎijūn) is the maritime branch of the Republic of China Armed Forces. The ROC Navy's primary mission is to defend ROC territories and the sea lanes that surround Taiwan against a blockade, attack, or possible invasion by forces of the People's Republic of China. Operations include maritime patrols in the Taiwan Strait and surrounding waters, as well as counter-strike and counter-invasion operations during wartime. The Republic of China Marine Corps functions as a branch of the Navy.
The ship prefix for ROCN combatants is ROCS (Republic of China Ship); an older usage is CNS (Chinese Navy Ship).