<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>High risk of 'mega-disasters' in Asia-Pacific</title> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <link href="css/base.css" type="text/css" rel="stylesheet" /> <link href="css/content.css" type="text/css" rel="stylesheet" /> <link href="css/base-printable.css" type="text/css" rel="stylesheet" media="print" /> <link href="css/content-printable.css" type="text/css" rel="stylesheet" media="print" /> <script language="javascript" src="js/protoculous-effects.js" type="text/javascript"></script> </head> <body id="homePage"> <!-- page frame --> <div id="pageFrame"> <!-- global_header.html --> <!-- page header --> <div id="pageHeader"> <!-- banner --> <div id="banner"> <h1> <a href="index.html"><span class="hiddenText">National Disaster Managment Authority</span></a></h1> <div id="bannerAd"> <div> <a href="/whatsnew/">read more</a></div> </div> <div id="utilityNav"> <ul> <li id="utilWelcome">Welcome <span id="fullName"></span></li> <li id="utilLogin"><a href="aboutNDMA.html"><span>About NDMA</span></a></li> <li><a href="http://mail.ndma.gov.pk/exchange"><span>Web Mail</a></li> <li><a href="contact_us.html"><span>Contact Us</span></a></li> </ul> </div> </div> <!-- /banner --> <!-- global nav --> <div id="globalNav"> <ul class="nav"> <li id="home1Tab"><a href="index.html"><span>Home</span></a></li> <li id="buyTab"><a href="news_room.html"><span>News Room</span></a> </li> <li id="sellTab"><a href="Multimedia.html"><span>Multimedia</span></a></li> <li id="productsTab"><a href="bookspublications.html"><span>Books & Publications</span></a></li> <li id="locationsTab"><a href="planahead.html"><span>Plan Ahead</span></a></li> </ul> </div> <!-- /global nav --> </div> <!-- /page header --> <!-- print header --> <img src="/Images/header-printable-bg.gif" id="printHeader" class="printOnly" alt="" /> <!-- /print header --> <!-- page body --> <!-- page body --> <div id="pageBody"> <div id="contentWrapper"> <div id="breadcrumb"> <a href="/">Home</a><span>High risk of 'mega-disasters' in Asia-Pacific</span></div> <br /> <!-- content body --> <div class="clear"> &nbsp;</div> </div> <script language="javascript" type="text/javascript"> /** * @author Ryan Johnson <ryan@livepipe.net> * @copyright 2007 LivePipe LLC * @package Control.Tabs * @license MIT * @url http://livepipe.net/projects/control_tabs/ * @version 2.1.1 */ if(typeof(Control) == 'undefined') var Control = {}; Control.Tabs = Class.create(); Object.extend(Control.Tabs,{ instances: [], findByTabId: function(id){ return Control.Tabs.instances.find(function(tab){ return tab.links.find(function(link){ return link.key == id; }); }); } }); Object.extend(Control.Tabs.prototype,{ initialize: function(tab_list_container,options){ this.activeContainer = false; this.activeLink = false; this.containers = $H({}); this.links = []; Control.Tabs.instances.push(this); this.options = { beforeChange: Prototype.emptyFunction, afterChange: Prototype.emptyFunction, hover: false, linkSelector: 'li a', setClassOnContainer: false, activeClassName: 'active', defaultTab: 'first', autoLinkExternal: true, targetRegExp: /#(.+)$/, showFunction: Element.show, hideFunction: Element.hide }; Object.extend(this.options,options || {}); (typeof(this.options.linkSelector == 'string') ? $(tab_list_container).getElementsBySelector(this.options.linkSelector) : this.options.linkSelector($(tab_list_container)) ).findAll(function(link){ return (/^#/).exec(link.href.replace(window.location.href.split('#')[0],'')); }).each(function(link){ this.addTab(link); }.bind(this)); this.containers.values().each(this.options.hideFunction); if(this.options.defaultTab == 'first') this.setActiveTab(this.links.first()); else if(this.options.defaultTab == 'last') this.setActiveTab(this.links.last()); else this.setActiveTab(this.options.defaultTab); var targets = this.options.targetRegExp.exec(window.location); if(targets && targets[1]){ targets[1].split(',').each(function(target){ this.links.each(function(target,link){ if(link.key == target){ this.setActiveTab(link); throw $break; } }.bind(this,target)); }.bind(this)); } if(this.options.autoLinkExternal){ $A(document.getElementsByTagName('a')).each(function(a){ if(!this.links.include(a)){ var clean_href = a.href.replace(window.location.href.split('#')[0],''); if(clean_href.substring(0,1) == '#'){ if(this.containers.keys().include(clean_href.substring(1))){ $(a).observe('click',function(event,clean_href){ this.setActiveTab(clean_href.substring(1)); }.bindAsEventListener(this,clean_href)); } } } }.bind(this)); } }, addTab: function(link){ this.links.push(link); link.key = link.getAttribute('href').replace(window.location.href.split('#')[0],'').split('/').last().replace(/#/,''); this.containers.set(link.key, $(link.key)); link[this.options.hover ? 'onmouseover' : 'onclick'] = function(link){ if(window.event) Event.stop(window.event); this.setActiveTab(link); return false; }.bind(this,link); }, setActiveTab: function(link){ if(!link) return; if(typeof(link) == 'string'){ this.links.each(function(_link){ if(_link.key == link){ this.setActiveTab(_link); throw $break; } }.bind(this)); }else{ this.notify('beforeChange',this.activeContainer); if(this.activeContainer) this.options.hideFunction(this.activeContainer); this.links.each(function(item){ (this.options.setClassOnContainer ? $(item.parentNode) : item).removeClassName(this.options.activeClassName); }.bind(this)); (this.options.setClassOnContainer ? $(link.parentNode) : link).addClassName(this.options.activeClassName); this.activeContainer = this.containers.get(link.key); this.activeLink = link; this.options.showFunction(this.containers.get(link.key)); this.notify('afterChange',this.containers.get(link.key)); } }, next: function(){ this.links.each(function(link,i){ if(this.activeLink == link && this.links[i + 1]){ this.setActiveTab(this.links[i + 1]); throw $break; } }.bind(this)); return false; }, previous: function(){ this.links.each(function(link,i){ if(this.activeLink == link && this.links[i - 1]){ this.setActiveTab(this.links[i - 1]); throw $break; } }.bind(this)); return false; }, first: function(){ this.setActiveTab(this.links.first()); return false; }, last: function(){ this.setActiveTab(this.links.last()); return false; }, notify: function(event_name){ try{ if(this.options[event_name]) return [this.options[event_name].apply(this.options[event_name],$A(arguments).slice(1))]; }catch(e){ if(e != $break) throw e; else return false; } } }); if(typeof(Object.Event) != 'undefined') Object.Event.extend(Control.Tabs); </script> <div class="nontabbedContentWrapper"> <div class="nontabbedContentHeader"> &nbsp;</div> <div class="tabbedContent"> <h3> High risk of 'mega-disasters' in Asia-Pacific </h3> <img class="floatR" alt="Disaster waiting to happen?: Mount Merapi erupts hot lava as seen from Sleman, in Yogykarta province of Indonesia, 21 May 2006." src="images/headers/DisasterWaitingToHappen.jpg" /> <p> by Heather Catchpole </p> <p> A new analysis of the likelihood of volcanoes and earthquakes to cause future "mega-disasters" in the Asia-Pacific region says these events may affect many more people than previous estimates suggest. Vast cities such as Manila in the Philippines  with 18 million residents  are particularly at risk, according to the analysis, completed by government agency Geoscience Australia. The report is to be revealed today at the Australian Earth Sciences Convention 2008 in Perth. </p> <h4> Focus on people, not records </h4> <p> The research looked at the impact of earthquakes and volcanoes on densely populated cities in the hazard-prone Asia Pacific region. Disaster research in the region has increased since the Asian tsunami in 2004, which was triggered by a magnitude 9 earthquake and killed more than 225,000 people. Most earthquake and volcano risk analysis is based on historical records which go back only a few hundred years. Extreme geological events on the other hand may strike every few thousand, or even hundred thousand years. Risk estimates based on historical records also don't account for recent demographic changes, the researchers say. Populations are continuing to rise in the Asia Pacific with most people packed into densely populated cities. This new analysis pinpoints areas most likely to be at risk and evaluates the potential disaster impact. "There has been a vast increase in the number of people and their vulnerability [to natural disaster] has tended to increase, with increasing population concentration in cities and mega deltas, which are subject to flooding and cyclone hazard," said Phil Cummins seismologist and co-author of the report. Cummins is project leader of the Earthquake Hazard and Neotectonics group of Geoscience Australia. "As far as I am aware, until now there has been no analysis of the impact of such events [geological disasters] on present day or future populations," he said. </p> <h4> ROUGH ESTIMATE </h4> <p> The new results are part of the Geoscience Australia Natural Hazard Impacts Project and were prepared for the Australian government's overseas aid agency AusAID. Data came from global earthquake catalogues and the Smithsonian Institution's Global Volcanism program. To calculate the risk, the researchers drew a rough circle around dormant volcanoes, representing the area that could be hit by ash fall of up to 30 cm in depth  enough to collapse a roof. For earthquakes, the researchers looked at the probability a quake would occur at a distance close enough for ground motion to impact the city. Cummins said it was a rough analysis because the calculations they used, such as the spread of ash fall, was in reality much more complex. But he added that it was important to give organisations some idea of what might reasonably be expected in the region. Much of the Asia Pacific region sits on the tectonic plate boundary between the Australasian and Indian plates and has seen some of the world's worst natural disasters. "What's fairly new about the analysis is looking beyond the physical consequences of geological hazards and trying to get some idea of what the impacts might be on populations affected by natural disasters," said Cummins. "Infrastructure [in cities] can be very fragile and there are also very dense populations in some cities such as Dhaka, Jakarta, or Manilla." </p> </div> <div class="nontabbedContentFooter"> &nbsp;</div> <!-- end content body --> </div> </div> </div> <!-- /page body --> <!-- /page frame --> <!-- footer --> <!-- global_footer.html --> <!-- footer --> <div id="pageFooter"> <div> <p class="links"> <a href="index.html">Home</a>| <a href="index.html">Careers@ndma</a>| <<a href="Tender.html" Tender Notices</a>| <a href="booksPublications.html">Framework</a>| <a href="AboutNDMA.html">About US</a>| <a href="contact_us.html">Contact Us</a> </p><img src="/Images/page-frame-bottom-printable-bg.gif" id="printFooter" class="printOnly" align="right" alt="" /></div> </div> <!-- /footer --> <!-- /footer --> </body> </html>