From d144839ade564b7685045f2f3ace752b398b6519 Mon Sep 17 00:00:00 2001 From: Rizky Maulana Nugraha Date: Thu, 30 Nov 2017 08:37:21 +0700 Subject: [PATCH] refactor string location for Ash Report --- realtime/ash/ash_event.py | 136 +----- .../fixtures/landcover-table.template.html | 2 +- .../ash/fixtures/nearby-table.template.html | 2 +- realtime/ash/report_text.py | 149 ++++++ realtime/i18n/inasafe_realtime_af.ts | 257 ++++++----- realtime/i18n/inasafe_realtime_en.ts | 257 ++++++----- realtime/i18n/inasafe_realtime_es_ES.qm | Bin 4565 -> 4599 bytes realtime/i18n/inasafe_realtime_es_ES.ts | 368 +++++++-------- realtime/i18n/inasafe_realtime_fr.qm | Bin 10237 -> 10920 bytes realtime/i18n/inasafe_realtime_fr.ts | 368 +++++++-------- realtime/i18n/inasafe_realtime_id.qm | Bin 18858 -> 18787 bytes realtime/i18n/inasafe_realtime_id.ts | 345 +++++++------- realtime/i18n/inasafe_realtime_vi.ts | 432 +++++++++--------- 13 files changed, 1226 insertions(+), 1090 deletions(-) create mode 100644 realtime/ash/report_text.py diff --git a/realtime/ash/ash_event.py b/realtime/ash/ash_event.py index d46fd5b4f..30f56ac71 100644 --- a/realtime/ash/ash_event.py +++ b/realtime/ash/ash_event.py @@ -21,6 +21,7 @@ QgsRectangle) from jinja2 import Template from headless.tasks.utilities import download_file +from realtime.ash.report_text import ReportText from realtime.exceptions import MapComposerError from realtime.utilities import realtime_logger_name from safe.common.exceptions import ( @@ -88,6 +89,9 @@ def __init__( :param airport_path: """ QObject.__init__(self) + + self.report_text = ReportText() + if event_time: self.time = event_time else: @@ -258,48 +262,19 @@ def event_dict(self): tzinfo=pytz.utc) - self.time elapsed_hour = elapsed_time.seconds / 3600 elapsed_minute = (elapsed_time.seconds / 60) % 60 - event = { - 'report-title': self.tr('Volcanic Ash Impact'), - 'report-timestamp': self.tr('Volcano: %s, %s') % ( - self.volcano_name, - timestamp_string), - 'report-province': self.tr('Province: %s') % (self.region,), - 'report-alert-level': self.tr('Alert Level: %s') % ( - self.alert_level.capitalize(), ), - 'report-location': self.tr( - 'Position: %s, %s;' - ' Eruption Column Height (a.s.l) - %d m') % ( - longitude_string, latitude_string, self.erupction_height), - 'report-elapsed': self.tr( - 'Elapsed time since event: %s hour(s) and %s minute(s)') % ( - elapsed_hour, elapsed_minute), - 'header-impact-table': self.tr( - 'Potential impact at each fallout level'), - 'header-nearby-table': self.tr('Nearby places'), - 'header-landcover-table': self.tr('Land Cover Impact'), - 'content-disclaimer': self.tr( - 'The impact estimation is automatically generated and only ' - 'takes into account the population, cities and land cover ' - 'affected by different levels of volcanic ash fallout at ' - 'surface level. The estimate is based on volcanic ash ' - 'fallout data from Badan Geologi, population count data ' - 'derived by DMInnovation from worldpop.org.uk, place ' - 'information and land cover classification data provided by ' - 'Indonesian Geospatial Portal at http://portal.ina-sdi.or.id ' - 'and software developed by BNPB. Limitation in the estimates ' - 'of surface fallout, population and place names datasets may ' - 'result in a significant misrepresentation of the ' - 'on-the-surface situation in the figures shown here. ' - 'Consequently, decisions should not be made solely on the ' - 'information presented here and should always be verified ' - 'by ground truthing and other reliable information sources.' - ), - 'content-notes': self.tr( - 'This report was created using InaSAFE version %s. Visit ' - 'http://inasafe.org for more information. ') % get_version(), - 'content-support': self.tr( - 'Supported by DMInnovation, Geoscience Australia and the World Bank-GFDRR') - } + + event = self.report_text.qpt_token( + volcano_name=self.volcano_name, + timestamp_string=timestamp_string, + region=self.region, + alert_level=self.alert_level, + longitude_string=longitude_string, + latitude_string=latitude_string, + eruption_height=self.erupction_height, + elapsed_hour=elapsed_hour, + elapsed_minute=elapsed_minute, + version=get_version() + ) return event @classmethod @@ -347,47 +322,8 @@ def render_population_table(self): population_template = self.ash_fixtures_dir( 'population-table.template.html') - table_header = [ - { - 'header': self.tr('Fallout Level') - }, - { - 'header': self.tr('Very Low'), - 'class': 'lv1' - }, - { - 'header': self.tr('Low'), - 'class': 'lv2' - }, - { - 'header': self.tr('Moderate'), - 'class': 'lv3' - }, - { - 'header': self.tr('High'), - 'class': 'lv4' - }, - { - 'header': self.tr('Very High'), - 'class': 'lv5' - }, - ] - - potential_impact_header = [ - self.tr('Potential Impact'), - self.tr('Impact on health (respiration), livestock, and contamination of water supply.'), - self.tr('Damage to transportation routes (e.g. airports, roads, railways); damage to critical infrastructure (e.g. electricity supply); damage to more vulnerable agricultural crops (e.g. rice fields)'), - self.tr('Damage to less vulnerable agricultural crops (e.g. tea plantations) and destruction of more vulnerable crops; destruction of critical infrastructure; cosmetic (non-structural) damage to buildings'), - self.tr('Dry loading on buildings causing structural damage but not collapse; Wet loading on buildings (i.e. ash loading + heavy rainfall) causing structural collapse.'), - self.tr('Dry loading on buildings causing structural collapse.') - ] - - context = { - 'table_header': table_header, - 'affected_header': self.tr('Estimated People Affected'), - 'potential_impact_header': potential_impact_header, - 'ash_thickness_header': self.tr('Ash Thickness Range (cm)') - } + context = self.report_text.population_table_token() + context.update(population_dict) with open(population_template) as f: template = Template(f.read()) @@ -423,17 +359,7 @@ def render_landcover_table(self): # 'type': 'Rice Field', # 'area': 10 # }, - # ] - - # Landcover type localization for dynamic translations: - # noqa - landcover_types = [ - self.tr('Forest'), - self.tr('Plantation'), - self.tr('Water Supply'), - self.tr('Settlement'), - self.tr('Rice Field') - ] + # landcover_list = [] for land_type, area in landcover_dict.iteritems(): @@ -447,11 +373,8 @@ def render_landcover_table(self): landcover_template = self.ash_fixtures_dir( 'landcover-table.template.html') - context = { - 'landcover_list': landcover_list, - 'landcover_type_header': self.tr('Land Cover Type'), - 'landcover_area_header': self.tr('Area affected (km2)') - } + context = self.report_text.landcover_table_token( + landcover_list=landcover_list) with open(landcover_template) as f: template = Template(f.read()) # generate table here @@ -469,13 +392,7 @@ def render_nearby_table(self): 3: 'High', 4: 'Very High' } - hazard_label = { - 0: self.tr('Very Low'), - 1: self.tr('Low'), - 2: self.tr('Moderate'), - 3: self.tr('High'), - 4: self.tr('Very High') - } + hazard_label = self.report_text.hazard_label_token() # load PLACES keyword_io = KeywordIO() @@ -598,12 +515,7 @@ def render_nearby_table(self): nearby_template = self.ash_fixtures_dir( 'nearby-table.template.html') - context = { - 'item_list': item_list, - 'name_header': self.tr('Name'), - 'affected_header': self.tr('People / Airport affected'), - 'fallout_header': self.tr('Fallout Level') - } + context = self.report_text.nearby_table_token(item_list=item_list) with open(nearby_template) as f: template = Template(f.read()) # generate table here diff --git a/realtime/ash/fixtures/landcover-table.template.html b/realtime/ash/fixtures/landcover-table.template.html index 5872c6ce0..74d2a9927 100644 --- a/realtime/ash/fixtures/landcover-table.template.html +++ b/realtime/ash/fixtures/landcover-table.template.html @@ -47,7 +47,7 @@ {% else %} - No area affected + {{ empty_rows|safe }} {% endfor %} diff --git a/realtime/ash/fixtures/nearby-table.template.html b/realtime/ash/fixtures/nearby-table.template.html index f53b9d7e9..123068f31 100644 --- a/realtime/ash/fixtures/nearby-table.template.html +++ b/realtime/ash/fixtures/nearby-table.template.html @@ -79,7 +79,7 @@ {% else %} - No nearby cities or airport affected + {{ empty_rows|safe }} {% endfor %} diff --git a/realtime/ash/report_text.py b/realtime/ash/report_text.py new file mode 100644 index 000000000..191e0a631 --- /dev/null +++ b/realtime/ash/report_text.py @@ -0,0 +1,149 @@ +# coding=utf-8 + +from PyQt4.QtCore import QObject + +__author__ = 'Rizky Maulana Nugraha ' +__date__ = '2/11/2017' + + +class ReportText(QObject): + """Placeholder class for texts in the report.""" + + def __init__(self): + QObject.__init__(self) + + def qpt_token( + self, + volcano_name=None, timestamp_string=None, region=None, + alert_level=None, longitude_string=None, latitude_string=None, + eruption_height=None, elapsed_hour=None, elapsed_minute=None, + version=None): + """Token string for QPT template""" + event = { + 'report-title': self.tr('Volcanic Ash Impact'), + 'report-timestamp': self.tr('Volcano: %s, %s') % ( + volcano_name, + timestamp_string), + 'report-province': self.tr('Province: %s') % (region,), + 'report-alert-level': self.tr('Alert Level: %s') % ( + alert_level.capitalize(),), + 'report-location': self.tr( + 'Position: %s, %s;' + ' Eruption Column Height (a.s.l) - %d m') % ( + longitude_string, + latitude_string, + eruption_height), + 'report-elapsed': self.tr( + 'Elapsed time since event: %s hour(s) and %s minute(s)') % ( + elapsed_hour, elapsed_minute), + 'header-impact-table': self.tr( + 'Potential impact at each fallout level'), + 'header-nearby-table': self.tr('Nearby places'), + 'header-landcover-table': self.tr('Land Cover Impact'), + 'content-disclaimer': self.tr( + 'The impact estimation is automatically generated and only ' + 'takes into account the population, cities and land cover ' + 'affected by different levels of volcanic ash fallout at ' + 'surface level. The estimate is based on volcanic ash ' + 'fallout data from Badan Geologi, population count data ' + 'derived by DMInnovation from worldpop.org.uk, place ' + 'information and land cover classification data provided by ' + 'Indonesian Geospatial Portal at http://portal.ina-sdi.or.id ' + 'and software developed by BNPB. Limitation in the estimates ' + 'of surface fallout, population and place names datasets may ' + 'result in a significant misrepresentation of the ' + 'on-the-surface situation in the figures shown here. ' + 'Consequently, decisions should not be made solely on the ' + 'information presented here and should always be verified ' + 'by ground truthing and other reliable information sources.' + ), + 'content-notes': self.tr( + 'This report was created using InaSAFE version %s. Visit ' + 'http://inasafe.org for more information. ') % version, + 'content-support': self.tr( + 'Supported by DMInnovation, Geoscience Australia and the World Bank-GFDRR') + } + return event + + def population_table_token(self): + table_header = [ + { + 'header': self.tr('Fallout Level') + }, + { + 'header': self.tr('Very Low'), + 'class': 'lv1' + }, + { + 'header': self.tr('Low'), + 'class': 'lv2' + }, + { + 'header': self.tr('Moderate'), + 'class': 'lv3' + }, + { + 'header': self.tr('High'), + 'class': 'lv4' + }, + { + 'header': self.tr('Very High'), + 'class': 'lv5' + }, + ] + + potential_impact_header = [ + self.tr('Potential Impact'), + self.tr('Impact on health (respiration), livestock, and contamination of water supply.'), + self.tr('Damage to transportation routes (e.g. airports, roads, railways); damage to critical infrastructure (e.g. electricity supply); damage to more vulnerable agricultural crops (e.g. rice fields)'), + self.tr('Damage to less vulnerable agricultural crops (e.g. tea plantations) and destruction of more vulnerable crops; destruction of critical infrastructure; cosmetic (non-structural) damage to buildings'), + self.tr('Dry loading on buildings causing structural damage but not collapse; Wet loading on buildings (i.e. ash loading + heavy rainfall) causing structural collapse.'), + self.tr('Dry loading on buildings causing structural collapse.') + ] + + context = { + 'table_header': table_header, + 'affected_header': self.tr('Estimated People Affected'), + 'potential_impact_header': potential_impact_header, + 'ash_thickness_header': self.tr('Ash Thickness Range (cm)') + } + return context + + def landcover_table_token(self, landcover_list=None): + # Landcover type localization for dynamic translations: + # noqa + landcover_types = [ + self.tr('Forest'), + self.tr('Plantation'), + self.tr('Water Supply'), + self.tr('Settlement'), + self.tr('Rice Field') + ] + + context = { + 'landcover_list': landcover_list, + 'landcover_type_header': self.tr('Land Cover Type'), + 'landcover_area_header': self.tr('Area affected (km2)'), + 'empty_rows': self.tr('No area affected') + } + + return context + + def hazard_label_token(self): + return { + 0: self.tr('Very Low'), + 1: self.tr('Low'), + 2: self.tr('Moderate'), + 3: self.tr('High'), + 4: self.tr('Very High') + } + + def nearby_table_token(self, item_list=None): + return { + 'item_list': item_list, + 'name_header': self.tr('Name'), + 'affected_header': self.tr('People / Airport affected'), + 'fallout_header': self.tr('Fallout Level'), + 'empty_rows': self.tr('No nearby cities or airport affected') + } + diff --git a/realtime/i18n/inasafe_realtime_af.ts b/realtime/i18n/inasafe_realtime_af.ts index e1232383b..0c2558d77 100644 --- a/realtime/i18n/inasafe_realtime_af.ts +++ b/realtime/i18n/inasafe_realtime_af.ts @@ -2,287 +2,300 @@ AshEvent - - Volcanic Ash Impact + + People Affected + + + FloodEvent - - Volcano: %s, %s + + THE GOVERNMENT OF DKI JAKARTA PROVINCE +REGIONAL DISASTER MANAGEMENT AGENCY + - - Province: %s + + FLOOD IMPACT REPORT FOR POPULATION - - Alert Level: %s + + Based on flood %s - - Position: %s, %s; Eruption Column Height (a.s.l) - %d m + + Legend - - Elapsed time since event: %s hour(s) and %s minute(s) + + InaSAFE Analysis Result - - Potential impact at each fallout level + + Data Source - - Nearby places + + Contact - - Land Cover Impact + + Supported by - - The impact estimation is automatically generated and only takes into account the population, cities and land cover affected by different levels of volcanic ash fallout at surface level. The estimate is based on volcanic ash fallout data from Badan Geologi, population count data derived by DMInnovation from worldpop.org.uk, place information and land cover classification data provided by Indonesian Geospatial Portal at http://portal.ina-sdi.or.id and software developed by BNPB. Limitation in the estimates of surface fallout, population and place names datasets may result in a significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified by ground truthing and other reliable information sources. + + Disclaimer - - This report was created using InaSAFE version %s. Visit http://inasafe.org for more information. + + Data Sources: +1. Hazard Data + Flood: BPBD DKI Jakarta / PetaJakarta.org +2. Exposure Data + Population: Population Agency DKI Jakarta Prov. + - - Supported by DMInnovation, Geoscience Australia and the World Bank-GFDRR + + This impact estimate is automatically generated and only takes into account the population affected by flood hazard in Jakarta. The estimate is based on flood hazard data from BPBD DKI Jakarta and population exposure data from the Population Agency, DKI Jakarta Province. Limitations in the estimates of flood hazard and population may result in significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified with other reliable information sources. - - People Affected + + Pusat Pengendalian Operasi (Pusdalops) +BPBD Provinsi DKI Jakarta +Gedung Dinas Teknis Lt. 5 +Jl. Abdul Muis No. 66, Telp. 121 + - - Fallout Level + + %s - - Very Low + + Total affected population (people) - - Low + + Estimates of IDP (people) - - Moderate + + Relief items to be provided %s : - - High + + People Affected - - Very High + + Flood Depth (cm) + + + ReportText - - Potential Impact + + Volcanic Ash Impact - - Impact on health (respiration), livestock, and contamination of water supply. + + Volcano: %s, %s - - Damage to less vulnerable agricultural crops (e.g. tea plantations) and destruction of more vulnerable crops; destruction of critical infrastructure; cosmetic (non-structural) damage to buildings + + Province: %s - - Dry loading on buildings causing structural damage but not collapse; Wet loading on buildings (i.e. ash loading + heavy rainfall) causing structural collapse. + + Alert Level: %s - - Dry loading on buildings causing structural collapse. + + Position: %s, %s; Eruption Column Height (a.s.l) - %d m - - Ash Thickness Range (cm) + + Elapsed time since event: %s hour(s) and %s minute(s) - - Land Cover Type + + Potential impact at each fallout level - - Area affected (km<sup>2</sup>) + + Nearby places - - Name + + Land Cover Impact - - People (x1000)/ Airport affected + + The impact estimation is automatically generated and only takes into account the population, cities and land cover affected by different levels of volcanic ash fallout at surface level. The estimate is based on volcanic ash fallout data from Badan Geologi, population count data derived by DMInnovation from worldpop.org.uk, place information and land cover classification data provided by Indonesian Geospatial Portal at http://portal.ina-sdi.or.id and software developed by BNPB. Limitation in the estimates of surface fallout, population and place names datasets may result in a significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified by ground truthing and other reliable information sources. - - Forest + + This report was created using InaSAFE version %s. Visit http://inasafe.org for more information. - - Plantation + + Supported by DMInnovation, Geoscience Australia and the World Bank-GFDRR - - Water Supply + + Fallout Level - - Settlement + + Very Low - - Rice Field + + Low - - Damage to transportation routes (e.g. airports, roads, railways); damage to critical infrastructure (e.g. electricity supply); damage to more vulnerable agricultural crops (e.g. rice fields) + + Moderate - - Estimated People Affected + + High - - - FloodEvent - - THE GOVERNMENT OF DKI JAKARTA PROVINCE -REGIONAL DISASTER MANAGEMENT AGENCY - + + Very High - - FLOOD IMPACT REPORT FOR POPULATION + + Potential Impact - - Based on flood %s + + Impact on health (respiration), livestock, and contamination of water supply. - - Legend + + Damage to transportation routes (e.g. airports, roads, railways); damage to critical infrastructure (e.g. electricity supply); damage to more vulnerable agricultural crops (e.g. rice fields) - - InaSAFE Analysis Result + + Damage to less vulnerable agricultural crops (e.g. tea plantations) and destruction of more vulnerable crops; destruction of critical infrastructure; cosmetic (non-structural) damage to buildings - - Data Source + + Dry loading on buildings causing structural damage but not collapse; Wet loading on buildings (i.e. ash loading + heavy rainfall) causing structural collapse. - - Contact + + Dry loading on buildings causing structural collapse. - - Supported by + + Estimated People Affected - - Disclaimer + + Ash Thickness Range (cm) - - Data Sources: -1. Hazard Data - Flood: BPBD DKI Jakarta / PetaJakarta.org -2. Exposure Data - Population: Population Agency DKI Jakarta Prov. - + + Forest - - This impact estimate is automatically generated and only takes into account the population affected by flood hazard in Jakarta. The estimate is based on flood hazard data from BPBD DKI Jakarta and population exposure data from the Population Agency, DKI Jakarta Province. Limitations in the estimates of flood hazard and population may result in significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified with other reliable information sources. + + Plantation - - Pusat Pengendalian Operasi (Pusdalops) -BPBD Provinsi DKI Jakarta -Gedung Dinas Teknis Lt. 5 -Jl. Abdul Muis No. 66, Telp. 121 - + + Water Supply - - %s + + Settlement - - Total affected population (people) + + Rice Field - - Estimates of IDP (people) + + Land Cover Type - - Relief items to be provided %s : + + Area affected (km<sup>2</sup>) - - People Affected + + No area affected - - Flood Depth (cm) + + Name + + + + + People / Airport affected + + + + + No nearby cities or airport affected diff --git a/realtime/i18n/inasafe_realtime_en.ts b/realtime/i18n/inasafe_realtime_en.ts index 8b5172a40..af1a7afb8 100644 --- a/realtime/i18n/inasafe_realtime_en.ts +++ b/realtime/i18n/inasafe_realtime_en.ts @@ -3,287 +3,300 @@ AshEvent - - Volcanic Ash Impact + + People Affected + + + FloodEvent - - Volcano: %s, %s + + THE GOVERNMENT OF DKI JAKARTA PROVINCE +REGIONAL DISASTER MANAGEMENT AGENCY + - - Province: %s + + FLOOD IMPACT REPORT FOR POPULATION - - Alert Level: %s + + Based on flood %s - - Position: %s, %s; Eruption Column Height (a.s.l) - %d m + + Legend - - Elapsed time since event: %s hour(s) and %s minute(s) + + InaSAFE Analysis Result - - Potential impact at each fallout level + + Data Source - - Nearby places + + Contact - - Land Cover Impact + + Supported by - - The impact estimation is automatically generated and only takes into account the population, cities and land cover affected by different levels of volcanic ash fallout at surface level. The estimate is based on volcanic ash fallout data from Badan Geologi, population count data derived by DMInnovation from worldpop.org.uk, place information and land cover classification data provided by Indonesian Geospatial Portal at http://portal.ina-sdi.or.id and software developed by BNPB. Limitation in the estimates of surface fallout, population and place names datasets may result in a significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified by ground truthing and other reliable information sources. + + Disclaimer - - This report was created using InaSAFE version %s. Visit http://inasafe.org for more information. + + Data Sources: +1. Hazard Data + Flood: BPBD DKI Jakarta / PetaJakarta.org +2. Exposure Data + Population: Population Agency DKI Jakarta Prov. + - - Supported by DMInnovation, Geoscience Australia and the World Bank-GFDRR + + This impact estimate is automatically generated and only takes into account the population affected by flood hazard in Jakarta. The estimate is based on flood hazard data from BPBD DKI Jakarta and population exposure data from the Population Agency, DKI Jakarta Province. Limitations in the estimates of flood hazard and population may result in significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified with other reliable information sources. - - People Affected + + Pusat Pengendalian Operasi (Pusdalops) +BPBD Provinsi DKI Jakarta +Gedung Dinas Teknis Lt. 5 +Jl. Abdul Muis No. 66, Telp. 121 + - - Fallout Level + + %s - - Very Low + + Total affected population (people) - - Low + + Estimates of IDP (people) - - Moderate + + Relief items to be provided %s : - - High + + People Affected - - Very High + + Flood Depth (cm) + + + ReportText - - Potential Impact + + Volcanic Ash Impact - - Impact on health (respiration), livestock, and contamination of water supply. + + Volcano: %s, %s - - Damage to less vulnerable agricultural crops (e.g. tea plantations) and destruction of more vulnerable crops; destruction of critical infrastructure; cosmetic (non-structural) damage to buildings + + Province: %s - - Dry loading on buildings causing structural damage but not collapse; Wet loading on buildings (i.e. ash loading + heavy rainfall) causing structural collapse. + + Alert Level: %s - - Dry loading on buildings causing structural collapse. + + Position: %s, %s; Eruption Column Height (a.s.l) - %d m - - Ash Thickness Range (cm) + + Elapsed time since event: %s hour(s) and %s minute(s) - - Land Cover Type + + Potential impact at each fallout level - - Area affected (km<sup>2</sup>) + + Nearby places - - Name + + Land Cover Impact - - People (x1000)/ Airport affected + + The impact estimation is automatically generated and only takes into account the population, cities and land cover affected by different levels of volcanic ash fallout at surface level. The estimate is based on volcanic ash fallout data from Badan Geologi, population count data derived by DMInnovation from worldpop.org.uk, place information and land cover classification data provided by Indonesian Geospatial Portal at http://portal.ina-sdi.or.id and software developed by BNPB. Limitation in the estimates of surface fallout, population and place names datasets may result in a significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified by ground truthing and other reliable information sources. - - Forest + + This report was created using InaSAFE version %s. Visit http://inasafe.org for more information. - - Plantation + + Supported by DMInnovation, Geoscience Australia and the World Bank-GFDRR - - Water Supply + + Fallout Level - - Settlement + + Very Low - - Rice Field + + Low - - Damage to transportation routes (e.g. airports, roads, railways); damage to critical infrastructure (e.g. electricity supply); damage to more vulnerable agricultural crops (e.g. rice fields) + + Moderate - - Estimated People Affected + + High - - - FloodEvent - - THE GOVERNMENT OF DKI JAKARTA PROVINCE -REGIONAL DISASTER MANAGEMENT AGENCY - + + Very High - - FLOOD IMPACT REPORT FOR POPULATION + + Potential Impact - - Based on flood %s + + Impact on health (respiration), livestock, and contamination of water supply. - - Legend + + Damage to transportation routes (e.g. airports, roads, railways); damage to critical infrastructure (e.g. electricity supply); damage to more vulnerable agricultural crops (e.g. rice fields) - - InaSAFE Analysis Result + + Damage to less vulnerable agricultural crops (e.g. tea plantations) and destruction of more vulnerable crops; destruction of critical infrastructure; cosmetic (non-structural) damage to buildings - - Data Source + + Dry loading on buildings causing structural damage but not collapse; Wet loading on buildings (i.e. ash loading + heavy rainfall) causing structural collapse. - - Contact + + Dry loading on buildings causing structural collapse. - - Supported by + + Estimated People Affected - - Disclaimer + + Ash Thickness Range (cm) - - Data Sources: -1. Hazard Data - Flood: BPBD DKI Jakarta / PetaJakarta.org -2. Exposure Data - Population: Population Agency DKI Jakarta Prov. - + + Forest - - This impact estimate is automatically generated and only takes into account the population affected by flood hazard in Jakarta. The estimate is based on flood hazard data from BPBD DKI Jakarta and population exposure data from the Population Agency, DKI Jakarta Province. Limitations in the estimates of flood hazard and population may result in significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified with other reliable information sources. + + Plantation - - Pusat Pengendalian Operasi (Pusdalops) -BPBD Provinsi DKI Jakarta -Gedung Dinas Teknis Lt. 5 -Jl. Abdul Muis No. 66, Telp. 121 - + + Water Supply - - %s + + Settlement - - Total affected population (people) + + Rice Field - - Estimates of IDP (people) + + Land Cover Type - - Relief items to be provided %s : + + Area affected (km<sup>2</sup>) - - People Affected + + No area affected - - Flood Depth (cm) + + Name + + + + + People / Airport affected + + + + + No nearby cities or airport affected diff --git a/realtime/i18n/inasafe_realtime_es_ES.qm b/realtime/i18n/inasafe_realtime_es_ES.qm index 0b4d7bcef9c0d427693e87d3f216327900a15932..125864d4d58e302c02f3005e21632b90e05cef94 100644 GIT binary patch delta 785 zcmY+AZAep59LAsR-gEA~=kA3_C@RS@YK*e7mk*MJn6Zk`+Lp}Bf@(@HV%jPpV)Sm| z$QtB_24NUWO0s646n+T{Ldl}SO2lZ1g<()IB!d3551l?e{O+IU<=i*!jJtJy6k7l- z7jWvN6{MGeKrNu20UEXu*Fv2h0hIG#8`seHbXG+lSj7gwTn+Z&1mGwJ?^H-Tk!$V+ z>^bm`xB+W3RxCeD{`=Vc>^5}-P}chnFf8!@{)s4zo2VWlgJ$65V=_2@yAS z%Bnccy2i#RcQ@5nGT zG$3L0q~=oIO5qMf{Zu?H!bv)yLG(4Nq{ymeMhpypp@0JOU}O^&1kK|GG{}C%rp=n6 zAwJvnP?CZU*nYJfrQ#twUrK(5aKu7%H#?k%$_t5KJG(vP(_;JSwG%WEdDx0D8gV54 zUR|G3v?6QVVJ#KHA3j{)7zu`(;ybMMGQPBWB)qD)B#L{L8X4P^kc=56PsW96zKl0) ti;aJ+r_>VpIESs0(a(G`wzIV|rr9zX=kfn~%K0w&`j8h(m?|_9`X2}^*Qo#i delta 742 zcmYk2ZAepb7{$+a@BhAULkSAYXp9=8*9CpZB6=IMIjm-ki7YakC2Fg*MMNy3vKOt< zK#PJP3^TK&^+BnGFpHung2G6a#Tpg^rIHmP^yEHVKb?E-bI)^r&&}H2*^T9qIq5ND3og8Ts3e_q= z`vJ$0jdH-Ur6*{g6`p4|sl$oV-VcEE3BJi+h(bPw;42F7-8lM?0+x%0&vyp^?y}+g zICMuZ*Hfx&-szjL3;m%Egaqm2w`^h0@@g@eRH(Ad`Wpb-BDfv9h%hNsDBH+qh3ePj)eXYi$P5B> z3nO#RP_a*3lOa_K#I~O@6%~ouU=}dll7tG5F7r#)#`$#d1*xZ>faDUXH)f|lQzAV` zrwG6!-%rdU9ad~*Q6CjuQbHXxU)g zA_&E=@v9_hUBez%B(yi4;={TLGP`chGpla;Sha2(LO?g?gn9h`ZShl@GxzXFbL1W} z+G_K@y2`3hgGc~VA5C(_aj(%FuNN2VE80c3ZYIQObVbqytcrZNh8x K7!#FptMm`HHpRaH diff --git a/realtime/i18n/inasafe_realtime_es_ES.ts b/realtime/i18n/inasafe_realtime_es_ES.ts index 9a4bc53b1..f80621fb4 100644 --- a/realtime/i18n/inasafe_realtime_es_ES.ts +++ b/realtime/i18n/inasafe_realtime_es_ES.ts @@ -1,290 +1,302 @@ - - + AshEvent - + + People Affected + Persona afectada + + + + FloodEvent + + + THE GOVERNMENT OF DKI JAKARTA PROVINCE +REGIONAL DISASTER MANAGEMENT AGENCY + + + + + + FLOOD IMPACT REPORT FOR POPULATION + + + + + Based on flood %s + + + + + Legend + Leyenda + + + + InaSAFE Analysis Result + Resultado de los análisis InaSAFE + + + + Data Source + Fuente de datos + + + + Contact + Contacto + + + + Supported by + Apoyado por + + + + Disclaimer + Descargo de responsabilidad + + + + Data Sources: +1. Hazard Data + Flood: BPBD DKI Jakarta / PetaJakarta.org +2. Exposure Data + Population: Population Agency DKI Jakarta Prov. + + + + + + This impact estimate is automatically generated and only takes into account the population affected by flood hazard in Jakarta. The estimate is based on flood hazard data from BPBD DKI Jakarta and population exposure data from the Population Agency, DKI Jakarta Province. Limitations in the estimates of flood hazard and population may result in significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified with other reliable information sources. + + + + + Pusat Pengendalian Operasi (Pusdalops) +BPBD Provinsi DKI Jakarta +Gedung Dinas Teknis Lt. 5 +Jl. Abdul Muis No. 66, Telp. 121 + + + + + + %s + %s + + + + Total affected population (people) + + + + + Estimates of IDP (people) + + + + + Relief items to be provided %s : + + + + + People Affected + Persona afectada + + + + Flood Depth (cm) + + + + + ReportText + + Volcanic Ash Impact Impacto de ceniza volcánica - + Volcano: %s, %s Volcán: %s, %s - + Province: %s Provincia: %s - + Alert Level: %s Nivel de alerta: %s - + Position: %s, %s; Eruption Column Height (a.s.l) - %d m - + - + Elapsed time since event: %s hour(s) and %s minute(s) - + - + Potential impact at each fallout level - + - + Nearby places Lugares cercanos - + Land Cover Impact Impacto en la cubierta del suelo - + The impact estimation is automatically generated and only takes into account the population, cities and land cover affected by different levels of volcanic ash fallout at surface level. The estimate is based on volcanic ash fallout data from Badan Geologi, population count data derived by DMInnovation from worldpop.org.uk, place information and land cover classification data provided by Indonesian Geospatial Portal at http://portal.ina-sdi.or.id and software developed by BNPB. Limitation in the estimates of surface fallout, population and place names datasets may result in a significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified by ground truthing and other reliable information sources. - + - + This report was created using InaSAFE version %s. Visit http://inasafe.org for more information. - + - + Supported by DMInnovation, Geoscience Australia and the World Bank-GFDRR - + - - People Affected - Persona afectada - - - + Fallout Level - + - + Very Low Muy Bajo - + Low Bajo - + Moderate Moderado - + High Alto - + Very High Muy alto - + Potential Impact Impacto potencial - + Impact on health (respiration), livestock, and contamination of water supply. - + + + + + Damage to transportation routes (e.g. airports, roads, railways); damage to critical infrastructure (e.g. electricity supply); damage to more vulnerable agricultural crops (e.g. rice fields) + - + Damage to less vulnerable agricultural crops (e.g. tea plantations) and destruction of more vulnerable crops; destruction of critical infrastructure; cosmetic (non-structural) damage to buildings - + - + Dry loading on buildings causing structural damage but not collapse; Wet loading on buildings (i.e. ash loading + heavy rainfall) causing structural collapse. - + - + Dry loading on buildings causing structural collapse. - - - - - Ash Thickness Range (cm) - - - - - Land Cover Type - Tipo de cubierta del suelo - - - - Area affected (km<sup>2</sup>) - Área afectada (km<sup>2</sup>) + - - Name - Nombre + + Estimated People Affected + - - People (x1000)/ Airport affected - + + Ash Thickness Range (cm) + - + Forest Bosque - + Plantation Plantación - + Water Supply - + - + Settlement - + - + Rice Field - - - - - Damage to transportation routes (e.g. airports, roads, railways); damage to critical infrastructure (e.g. electricity supply); damage to more vulnerable agricultural crops (e.g. rice fields) - - - - - Estimated People Affected - - - - - FloodEvent - - - THE GOVERNMENT OF DKI JAKARTA PROVINCE -REGIONAL DISASTER MANAGEMENT AGENCY - - - - - - FLOOD IMPACT REPORT FOR POPULATION - - - - - Based on flood %s - - - - - Legend - Leyenda - - - - InaSAFE Analysis Result - Resultado de los análisis InaSAFE - - - - Data Source - Fuente de datos - - - - Contact - Contacto - - - - Supported by - Apoyado por - - - - Disclaimer - Descargo de responsabilidad - - - - Data Sources: -1. Hazard Data - Flood: BPBD DKI Jakarta / PetaJakarta.org -2. Exposure Data - Population: Population Agency DKI Jakarta Prov. - - - - - - This impact estimate is automatically generated and only takes into account the population affected by flood hazard in Jakarta. The estimate is based on flood hazard data from BPBD DKI Jakarta and population exposure data from the Population Agency, DKI Jakarta Province. Limitations in the estimates of flood hazard and population may result in significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified with other reliable information sources. - - - - - Pusat Pengendalian Operasi (Pusdalops) -BPBD Provinsi DKI Jakarta -Gedung Dinas Teknis Lt. 5 -Jl. Abdul Muis No. 66, Telp. 121 - - + - - %s - %s + + Land Cover Type + Tipo de cubierta del suelo - - Total affected population (people) - + + Area affected (km<sup>2</sup>) + Área afectada (km<sup>2</sup>) - - Estimates of IDP (people) - + + No area affected + - - Relief items to be provided %s : - + + Name + Nombre - - People Affected - Persona afectada + + People / Airport affected + - - Flood Depth (cm) - + + No nearby cities or airport affected + @@ -392,7 +404,7 @@ Jl. Abdul Muis No. 66, Telp. 121 Estimated number of people exposed by each MMI level - + @@ -407,22 +419,22 @@ Jl. Abdul Muis No. 66, Telp. 121 Population count per grid cell - + This impact estimation is automatically generated and only takes into account the population and cities affected by different levels of ground shaking. The estimate is based on ground shaking data from BMKG, population count data derived by DMInnovation from worldpop.org.uk and BPS Census Data 2010, place information data provided by Indonesian Geospatial Portal at http://tanahair.indonesia.go.id and software developed by BNPB. Limitations in the estimates of ground shaking, population and place names datasets may result in significant misrepresentation of the on-the-ground situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified by ground truthing and other reliable information sources. The fatality calculation assumes that no fatalities occur for shake levels below MMI 4. Fatality counts of less than 50 are rounded down. - + This report was created using InaSAFE version %s. Visit http://inasafe.org for more information. - + Supported by the Australian Government, Geoscience Australia and the World Bank-GFDRR. - + @@ -495,4 +507,4 @@ Jl. Abdul Muis No. 66, Telp. 121 Versión: %s - + \ No newline at end of file diff --git a/realtime/i18n/inasafe_realtime_fr.qm b/realtime/i18n/inasafe_realtime_fr.qm index 8f8a0235fe036bc4efdd92bd8227f8b49760e149..d79370b8e06de18c70909326c115104e20528acd 100644 GIT binary patch delta 1402 zcmY+C3v5$m6vzL4+(&y0UCo?juInAm)>h|mfH5#N5vOw_8QZ|cWs!JkZ^y;5&imMd z35{V2E|82|ol(IUU(7foNf#W1j3|Q9D54?af-GtP+@j6;5-4K1>izJw3=)y*;By!4&at6z?03yLva80El^Yq=Ha`5;MzGW zhQYKx2#7;q&i4ZqGT3)qWKSa`B!Kc7+_`LkbOzAy$p}z#4vpiJK&gS28&`pBxDfjJ zK1w`=?Z+b2=oiP!J0AcFqK+TlKLIQmcKm#W;$nmIuTwh!-sx%^ya$9A zr-19Yd)w7Pz|rphX3v{6sMG!Z<&#vWGPi$M3o!eb{$EKKJn!fzSZk?%hDbAvX0T zv3Q)_m0b)(rr58$3u&RnT;QKLaMKa)zM1D}kWsGQ7^8(IxhQA0+caiW6-}C$9KyfpFXo4m!y}*wTMd?bP=VxOZfty!)#&SX6))zcq96k!L zQ{KpWdOp`muYB+#Z8+)OoZC+eT=O2;?Iy;YWj^+vJTpytZwSjqsIIs`sC_m&L09pC zP-ko*p`h@DUQdJc3q94eQTe!!3tXf40bjvuBv|&k@0CXnQsb|D*Y_ACbpIl@k{VQ0 z``2Eg&5Jhr)9Y3dU-uu1()p0z|IsitbRYKr_!2#xJFWn+Fs+CRG(m<6&D_h^=Pvlp z`g7ZzJDmYE@a5pDHfy1 zH2InNn1)JgQWU98fn^?({h!k0sepU~W&Pn8p6zfGiUz;?ac9xmDUCZya^iz2y zmHH}FZ%t+7>ywC*LYg>{pG+aEkT-2pSz$K1in5l9O1W+Hzf7LB%fhZzy!C1<{U>Ur ztx|_9>KRd2rB2Pd97$I)ouZmCbXgN)a#cr_C@HFy(JCn{B`qT<=^m+1i`R(Bd4+_k z=t`nSN{dQoN|iKSH4?g^%KwSTX*r>*Nql4%Euc57{RN@{d2beU1h!a(JL z^+&OGkui%{gphWS*kON!VMwOkN=1=GMSZof>&zeDy!ZR&eeeCgy5+w!y;1HpfVKrN zt_C<8Fw#SH1>mp)OE&^c3Q(Lyd_VM`Isjb-nDlAHR|cwWAD9*M0b4(q&b@%W8SF(J z^(Vk4tOw%HU}EB7K;MCd_v--bR4i_M4#Yl1_U~_iTPj9L=Wa5PXjA9hwJv zG~L%)$jk)IhtI^@eA@5#4gis&F86pZAf46y=b2`G#DWJvSet&&x8s1|(my+Ko{Z+} zU%tCbeUF)h7pZ_)%k1qZUE^VX0lJqq5wk`H@mNb zj2k#-sh@&u=ZYQ;1BTt^PJcB}zmFSOIpC%%%jVfU9bJi&-}Qyo!S(RK-9;qi5H^=MX;&S>u1S={9&O?xeh`1j6n>5b9xJ6-e33b!f#p?5;ypv4ga*DdxS zP`fOWCWsV|9HUsR86jeaRo4HLR9x}n10U7#gQUJ&X9d_f{9>h5YgSTX$A^C29jk;u xjFc1txzeCEuQVfgqP9!PgZxCxlY>V}mOLc{JaRz@{F1ZOR_!ZM&5z3v{sIS^{E7eo diff --git a/realtime/i18n/inasafe_realtime_fr.ts b/realtime/i18n/inasafe_realtime_fr.ts index 093fc96ca..a07742978 100644 --- a/realtime/i18n/inasafe_realtime_fr.ts +++ b/realtime/i18n/inasafe_realtime_fr.ts @@ -1,297 +1,309 @@ - - + AshEvent - + + People Affected + Personnes Affectées + + + + FloodEvent + + + THE GOVERNMENT OF DKI JAKARTA PROVINCE +REGIONAL DISASTER MANAGEMENT AGENCY + + LE GOUVERNEMENT DE LA PROVINCE DE DKI JAKARTA +AGENCE RÉGIONALE DE LA RÉDUCTION DES DÉSASTRES + + + + + FLOOD IMPACT REPORT FOR POPULATION + RAPPORT D'INONDATION SUR LA POPULATION + + + + Based on flood %s + Utilisant l'inondation %s + + + + Legend + Légende + + + + InaSAFE Analysis Result + Résultat de l'analyse d'InaSAFE + + + + Data Source + Source des données + + + + Contact + Contact + + + + Supported by + Soutenu par + + + + Disclaimer + Avertissement sur la limitation de responsabilité + + + + Data Sources: +1. Hazard Data + Flood: BPBD DKI Jakarta / PetaJakarta.org +2. Exposure Data + Population: Population Agency DKI Jakarta Prov. + + Source des données: +1. Couche d'aléa +Inondation: BPBD DKi Jakarta : PetaJakarta.org +2. Couche d'enjeu +Population: Population Agence DKI Jakarta Prov. + + + + + This impact estimate is automatically generated and only takes into account the population affected by flood hazard in Jakarta. The estimate is based on flood hazard data from BPBD DKI Jakarta and population exposure data from the Population Agency, DKI Jakarta Province. Limitations in the estimates of flood hazard and population may result in significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified with other reliable information sources. + L’estimation de l’impact est généré automatiquement et ne prend en compte que la population touchée par les différents niveaux de l'inondation. L’estimation est basée sur des données d'inondation BPBD DKI Jakarta, les données de recensement de l'Agence de la Population de DKI Jakarta. Les limitations dans les estimations d'inondation et la population peuvent entraîner une importante différence de la représentation du terrain comparée aux chiffres présentés ici. Par conséquent, les décisions ne doivent pas être prises uniquement sur les informations présentées ici et doivent toujours être vérifiées par vérification au sol et par d’autres sources d’information fiables. + + + + Pusat Pengendalian Operasi (Pusdalops) +BPBD Provinsi DKI Jakarta +Gedung Dinas Teknis Lt. 5 +Jl. Abdul Muis No. 66, Telp. 121 + + + + + + %s + %s + + + + Total affected population (people) + Total population affectée + + + + Estimates of IDP (people) + Estimation d'IDP (people) + + + + Relief items to be provided %s : + Matériels de secours à fournir %s : + + + + People Affected + Personnes Affectées + + + + Flood Depth (cm) + Profondeur d'inondation (cm) + + + + ReportText + + Volcanic Ash Impact Impact des cendres volcaniques - + Volcano: %s, %s - + - + Province: %s Province: %s - + Alert Level: %s - + - + Position: %s, %s; Eruption Column Height (a.s.l) - %d m - + - + Elapsed time since event: %s hour(s) and %s minute(s) - + - + Potential impact at each fallout level Impact potentiel à chaque niveau de retombée - + Nearby places Lieux proches - + Land Cover Impact Impact sur l'occupation du sol - + The impact estimation is automatically generated and only takes into account the population, cities and land cover affected by different levels of volcanic ash fallout at surface level. The estimate is based on volcanic ash fallout data from Badan Geologi, population count data derived by DMInnovation from worldpop.org.uk, place information and land cover classification data provided by Indonesian Geospatial Portal at http://portal.ina-sdi.or.id and software developed by BNPB. Limitation in the estimates of surface fallout, population and place names datasets may result in a significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified by ground truthing and other reliable information sources. - + - + This report was created using InaSAFE version %s. Visit http://inasafe.org for more information. Ce rapport a été créé avec InaSAFE version %s. Visitez http://inasafe.org pour plus d'information. - + Supported by DMInnovation, Geoscience Australia and the World Bank-GFDRR - + - - People Affected - Personnes Affectées - - - + Fallout Level - + - + Very Low Très Faible - + Low Bas - + Moderate Modéré - + High Élevé - + Very High Très Élevé - + Potential Impact - + - + Impact on health (respiration), livestock, and contamination of water supply. Impact sur la santé (respiration), bétail, et la contamination de l'approvisionnement en eau. - + + Damage to transportation routes (e.g. airports, roads, railways); damage to critical infrastructure (e.g. electricity supply); damage to more vulnerable agricultural crops (e.g. rice fields) + Dommages sur les réseaux de transport (aéroports, routes, voies ferrés par ex), dommages sur les infrastructures critiques (fournisseur d'électricité), dommages sur les cultures vulnérables (rizière par ex). + + + Damage to less vulnerable agricultural crops (e.g. tea plantations) and destruction of more vulnerable crops; destruction of critical infrastructure; cosmetic (non-structural) damage to buildings Dommages sur les cultures les moins vulnérables (plantation de thé par ex) et destruction des cultures vulnérables; destruction des infrastructures critiques; dommages visuelles et non structurelles sur les bâtiments - + Dry loading on buildings causing structural damage but not collapse; Wet loading on buildings (i.e. ash loading + heavy rainfall) causing structural collapse. - + - + Dry loading on buildings causing structural collapse. Un dépôt solide sur les structures provoquant l'effondrement. - - Ash Thickness Range (cm) - - - - - Land Cover Type - - - - - Area affected (km<sup>2</sup>) - - - - - Name - Nom + + Estimated People Affected + - - People (x1000)/ Airport affected - + + Ash Thickness Range (cm) + - + Forest Forêt - + Plantation Plantation - + Water Supply Approvisionnement en Eau - + Settlement Implantation - + Rice Field Rizière - - Damage to transportation routes (e.g. airports, roads, railways); damage to critical infrastructure (e.g. electricity supply); damage to more vulnerable agricultural crops (e.g. rice fields) - - - - - Estimated People Affected - - - - - FloodEvent - - - THE GOVERNMENT OF DKI JAKARTA PROVINCE -REGIONAL DISASTER MANAGEMENT AGENCY - - LE GOUVERNEMENT DE LA PROVINCE DE DKI JAKARTA -AGENCE RÉGIONALE DE LA RÉDUCTION DES DÉSASTRES - - - - - FLOOD IMPACT REPORT FOR POPULATION - RAPPORT D'INONDATION SUR LA POPULATION - - - - Based on flood %s - Utilisant l'inondation %s - - - - Legend - Légende - - - - InaSAFE Analysis Result - Résultat de l'analyse d'InaSAFE - - - - Data Source - Source des données - - - - Contact - Contact - - - - Supported by - Soutenu par - - - - Disclaimer - Avertissement sur la limitation de responsabilité - - - - Data Sources: -1. Hazard Data - Flood: BPBD DKI Jakarta / PetaJakarta.org -2. Exposure Data - Population: Population Agency DKI Jakarta Prov. - - Source des données: -1. Couche d'aléa -Inondation: BPBD DKi Jakarta : PetaJakarta.org -2. Couche d'enjeu -Population: Population Agence DKI Jakarta Prov. - - - - - This impact estimate is automatically generated and only takes into account the population affected by flood hazard in Jakarta. The estimate is based on flood hazard data from BPBD DKI Jakarta and population exposure data from the Population Agency, DKI Jakarta Province. Limitations in the estimates of flood hazard and population may result in significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified with other reliable information sources. - L’estimation de l’impact est généré automatiquement et ne prend en compte que la population touchée par les différents niveaux de l'inondation. L’estimation est basée sur des données d'inondation BPBD DKI Jakarta, les données de recensement de l'Agence de la Population de DKI Jakarta. Les limitations dans les estimations d'inondation et la population peuvent entraîner une importante différence de la représentation du terrain comparée aux chiffres présentés ici. Par conséquent, les décisions ne doivent pas être prises uniquement sur les informations présentées ici et doivent toujours être vérifiées par vérification au sol et par d’autres sources d’information fiables. - - - - Pusat Pengendalian Operasi (Pusdalops) -BPBD Provinsi DKI Jakarta -Gedung Dinas Teknis Lt. 5 -Jl. Abdul Muis No. 66, Telp. 121 - - - - - - %s - %s + + Land Cover Type + - - Total affected population (people) - Total population affectée + + Area affected (km<sup>2</sup>) + - - Estimates of IDP (people) - Estimation d'IDP (people) + + No area affected + - - Relief items to be provided %s : - Matériels de secours à fournir %s : + + Name + Nom - - People Affected - Personnes Affectées + + People / Airport affected + - - Flood Depth (cm) - Profondeur d'inondation (cm) + + No nearby cities or airport affected + @@ -384,7 +396,7 @@ Jl. Abdul Muis No. 66, Telp. 121 People Exposed (x 1000) - + @@ -399,7 +411,7 @@ Jl. Abdul Muis No. 66, Telp. 121 Estimated number of people exposed by each MMI level - + @@ -419,7 +431,7 @@ Jl. Abdul Muis No. 66, Telp. 121 This impact estimation is automatically generated and only takes into account the population and cities affected by different levels of ground shaking. The estimate is based on ground shaking data from BMKG, population count data derived by DMInnovation from worldpop.org.uk and BPS Census Data 2010, place information data provided by Indonesian Geospatial Portal at http://tanahair.indonesia.go.id and software developed by BNPB. Limitations in the estimates of ground shaking, population and place names datasets may result in significant misrepresentation of the on-the-ground situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified by ground truthing and other reliable information sources. The fatality calculation assumes that no fatalities occur for shake levels below MMI 4. Fatality counts of less than 50 are rounded down. - + @@ -502,4 +514,4 @@ Jl. Abdul Muis No. 66, Telp. 121 Version: %s - + \ No newline at end of file diff --git a/realtime/i18n/inasafe_realtime_id.qm b/realtime/i18n/inasafe_realtime_id.qm index 93407c5eb316a659e28212dad0f441782d96e380..74bcbc12a79ff83fa2ebbc704b48e37b085deddf 100644 GIT binary patch delta 1356 zcmZXSe@v8h9LL|!-Sgw_x##Y=<1SDT&%=yP6u1LAZAOa652;Zej&UQK7@%T=wj(vB zw^k{Tmg8wUjY-QC4K&t6Mnr7ov>!$mt%8{j(6XE^Dkl@m`YitFi~aT4>-&9wKR@1| z?^_yov6lK>tCq(mV135q2^o&hLc1I&06*tnd|d%*uX2*jU(P>=;A3X{>_ z3!x+z$Vh{5t{w=sLp*9Ey@Eswg^#fw1J0-=3RKE*Xc$F3jAiGj)JZxoJQxIhkU7W!8205Yw@=aw){ z+#p=dIYb3GG2dGOq!ox|@(Riu6|2q?XHp!X<1ztO?p78{&G557nb(^K@(=Klg3w$lg0B*VwsT&95;C)bEvV9Y1413 zfRt}doqg1}Z-c3OcQWY)O&|Pp37A=H8o&2(AU4Y^KUW0A3Fa<+8Z{6w_n(ON(7yZS z*~KCH2YZ@OC1HoJWlWYpf;5hsd$_Y`aP+QN}@aZdWhe3+h9c z$=dh{^~pyT(kcRKefc$7(YtDAG8Il8Qa|29jq~@Yqx-heUua!NA1h2ALYteMqusLG z^s1z0Rf{zi%5tc3L+#U%6_uN{wZ@Gsju^`s)C>9T2FHKu2uJz2!`gD*t=|@l4UAL^ zn@|5wS*@)yKd9Hp-*c?;VWoq?W@{Bg+EdoWES|8=Ve#TrwA*g5w>Gti#R|26#V+-3 z7Kc?Yiw?Vo#ry5qEEYR5SbW*h$zop25*A;H*~?<8b0Leh&MX!?oW474LzC9(jn~%4 zC1@U3`<=JaYOOr>E`7{(SZ4C*2i&DoOujv90duWodjc$O^-OW<8_yKe6OtZa#QN{P H?zn#d8Cs8x delta 1346 zcmY*X3s6*L6#n*c?_Ta*ST;zI*=3hEOX)sfb#&|jEQ^FgD;fhingqKkA|fuJF|lJA z_@Z&TGg8Woju}#6Qp+@ENCiHqiO`rD9UDgp9}$?14n+1k?oM2~ckZ0~{paGaAptTJ!$FE)m!m^p(7n^~MWz5$?2~B*S z8P9r`8pzmOQ#oL6W>@hmsjiRp3=vL$hi&$S0a^L%cXg38=tlOMZkLaQDOPF!F#(DJ z)sy49i1`jxUTrr`_JXS7+qooFiK_J;O_M@p`P(Sb$A7w0NxQxmw26`Y*$Y2YgDw2UKbDY$YXox##fP^Ej;3Bx zYFNmvtpJjyg$>?3+Wl=|;=n?9zmq^bt*3 zcMsh#hbI3PNi0B9`RpQ6pia|JIzg*y)O4i~0dusbZ$Ax?kgOSbyOHk1q4iYF`Ib2T zNCC%XZdsR8=dKbR5t}9Oc|_?9@TWyK$t84Z&Nc~&Ps}|hxk6*~vs@Xv&KZ|Drt^p{ zMVPo&zgRjvs!x)@@N6KDos>Ls!z`N58c9ECGP*l(!UZ>~P>$Nbw*f|^Vk@k$1YQ%&bdrVAKujrW#N`olY#e2RrO)VcZ>p|z z8&kJhEf$N(Y|LC=Q@yFiYb^D6++|*Oxr%}Ugrd1+fq9#Z^CY^bja?F`kIR%mUtFsM z%HkJEpgrC$fgABw2^bS@%>chPv5yZ99-cEP4w*ecaK{-VK4*!SK&vHgCQ0nG%n~-n e`n2}{V(H)#x5qvzzG^l2U5djR|3}u3qy7bJ)q4#9 diff --git a/realtime/i18n/inasafe_realtime_id.ts b/realtime/i18n/inasafe_realtime_id.ts index 328ee06af..95933cacb 100644 --- a/realtime/i18n/inasafe_realtime_id.ts +++ b/realtime/i18n/inasafe_realtime_id.ts @@ -2,298 +2,311 @@ AshEvent - + + People Affected + Penduduk Terdampak + + + + FloodEvent + + + THE GOVERNMENT OF DKI JAKARTA PROVINCE +REGIONAL DISASTER MANAGEMENT AGENCY + + PEMERINTAH PROVINSI DKI JAKARTA +BADAN PENANGGULANGAN BENCANA DAERAH + + + + FLOOD IMPACT REPORT FOR POPULATION + LAPORAN DAMPAK BANJIR PADA PENDUDUK + + + + Based on flood %s + Berdasarkan banjir %s + + + + Legend + Legenda + + + + InaSAFE Analysis Result + Hasil Analisis InaSAFE + + + + Data Source + Sumber Data + + + + Contact + Kontak + + + + Supported by + Didukung oleh + + + + Disclaimer + Ketentuan + + + + Data Sources: +1. Hazard Data + Flood: BPBD DKI Jakarta / PetaJakarta.org +2. Exposure Data + Population: Population Agency DKI Jakarta Prov. + + Sumber Data: +1. Data Ancaman +Banjir: BPBD DKI Jakarta / PetaJakarta.org +2. Data Keterpaparan +Penduduk: Dinas Kependudukan DKI Jakarta. + + + + + This impact estimate is automatically generated and only takes into account the population affected by flood hazard in Jakarta. The estimate is based on flood hazard data from BPBD DKI Jakarta and population exposure data from the Population Agency, DKI Jakarta Province. Limitations in the estimates of flood hazard and population may result in significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified with other reliable information sources. + Perkiraan dampak ini secara otomatis dibangkitkan dan hanya memperhitungkan penduduk dan kota yang terdampak banjir di Jakarta. Perkiraan ini berdasarkan data banjir dari BPBD DKI Jakarta dan data penduduk dari Dinas Kependudukan DKI Jakarta. Batasan dalam perkiraan banjir dan penduduk dapat menyebabkan kesalahan representasi dari situasi yang sebenarnya terjadi. Oleh karena itu, keputusan tidak seharusnya diambil semata-mata berdasarkan informasi yang tertera di sini dan harus selalu diverifikasi dengan sumber terpercaya lainnya. + + + + Pusat Pengendalian Operasi (Pusdalops) +BPBD Provinsi DKI Jakarta +Gedung Dinas Teknis Lt. 5 +Jl. Abdul Muis No. 66, Telp. 121 + + Pusat Pengendalian Operasi (Pusdalops) +BPBD Provinsi DKI Jakarta +Gedung Dinas Teknis Lt. 5 +Jl. Abdul Muis No. 66, Telp. 121 + + + + + %s + %s + + + + Total affected population (people) + Total populasi (penduduk) terdampak + + + + Estimates of IDP (people) + Perkiraan IDP (penduduk) + + + + Relief items to be provided %s : + Barang bantuan yang perlu disediakan %s: + + + + People Affected + Penduduk Terdampak + + + + Flood Depth (cm) + Kedalaman Banjir (cm) + + + + ReportText + + Volcanic Ash Impact Dampak abu vulkanik - + Volcano: %s, %s Gunung: %s, %s - + Province: %s Provinsi: %s - + Alert Level: %s Tingkat Peringatan: %s - + Position: %s, %s; Eruption Column Height (a.s.l) - %d m Posisi: %s, %s; Tinggi Kolom Erupsi (d.p.l) - %d m - + Elapsed time since event: %s hour(s) and %s minute(s) Waktu berlalu sejak kejadian: %s jam dan %s menit - + Potential impact at each fallout level Dampak potensial pada setiap tingkat kejatuhan - + Nearby places Lokasi sekitar - + Land Cover Impact Dampak Penutup Lahan - + The impact estimation is automatically generated and only takes into account the population, cities and land cover affected by different levels of volcanic ash fallout at surface level. The estimate is based on volcanic ash fallout data from Badan Geologi, population count data derived by DMInnovation from worldpop.org.uk, place information and land cover classification data provided by Indonesian Geospatial Portal at http://portal.ina-sdi.or.id and software developed by BNPB. Limitation in the estimates of surface fallout, population and place names datasets may result in a significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified by ground truthing and other reliable information sources. Perkiraan dampak ini dihasilkan secara otomatis dan hanya memperhitungkan penduduk, data perkotaan dan penutup lahan yang terdampak oleh berbagai tingkat curahan abu vulkanik di permukaan tanah. Perkiraan ini berdasarkan pada data curahan abu vulkanik yang bersumber dari Badan Geologi, data jumlah penduduk yang diturunkan oleh DMInnovation dari worldpop.org.uk, informasi tempat dan data klasifikasi penutup lahan dari Portal Geospasial Indonesia di http://portal.ina-sdi.or.id dan perangkat lunak yang dikembangkan oleh BNPB. Batasan dalam perkiraan curahan abu vulkanik, data populasi, dan data nama tempat dapat menghasilkan kesalahan representasi yang signifikan dari situasi yang sebenarnya terjadi. Oleh karena itu, keputusan tidak seharusnya diambil semata-mata hanya berdasarkan informasi yang ditunjukkan disini dan seharusnya selalu diperiksa kebenarannya dengan survey lapangan ataupun dari sumber informasi lainnya yang terpercaya. - + This report was created using InaSAFE version %s. Visit http://inasafe.org for more information. Laporan ini dibuat dengan menggunakan InaSAFE versi %s. Kunjungi http://inasafe.org untuk informasi lebih lanjut. - + Supported by DMInnovation, Geoscience Australia and the World Bank-GFDRR Didukung oleh DMInnovation, Geoscience Australia dan Bank Dunia-GFDRR - - People Affected - Penduduk Terdampak - - - + Fallout Level Tingkat Jatuhan - + Very Low Sangat Rendah - + Low Rendah - + Moderate Sedang - + High Tinggi - + Very High Sangat Tinggi - + Potential Impact Potensi Dampak - + Impact on health (respiration), livestock, and contamination of water supply. Dampak pada kesehatan (respirasi), ternak, dan kontaminasi persediaan air. - + + Damage to transportation routes (e.g. airports, roads, railways); damage to critical infrastructure (e.g. electricity supply); damage to more vulnerable agricultural crops (e.g. rice fields) + Kerusakan pada rute transportasi (contoh: bandara, jalan, rel kereta api); kerusakan pada infrastruktur kritis (contoh: persediaan kelistrikan); kerusakan pada tanaman pertanian yang lebih rentan (contoh: sawah) + + + Damage to less vulnerable agricultural crops (e.g. tea plantations) and destruction of more vulnerable crops; destruction of critical infrastructure; cosmetic (non-structural) damage to buildings Kerusakan pada tanaman pertanian yang kerentanan lebih sedikit (contoh: perkebunan teh) dan kerusakan tanaman yang lebih rentan; kerusakan pada infrastruktur kritis; kerusakan kosmetik (non-struktural) pada bangunan - + Dry loading on buildings causing structural damage but not collapse; Wet loading on buildings (i.e. ash loading + heavy rainfall) causing structural collapse. Muatan kering pada bangunan menyebabkan kerusakan struktural tetapi tidak runtuh; beban kering pada bangunan (misalnya muatan abu + hujan deras) mengakibatkan keruntuhan struktural. - + Dry loading on buildings causing structural collapse. Muatan kering pada bangunan mengakibatkan keruntuhan struktur. - - Ash Thickness Range (cm) - Rentang Ketebalan Abu (cm) - - - - Land Cover Type - Tipe Penutup Lahan - - - - Area affected (km<sup>2</sup>) - Area terdampak (km<sup>2</sup>) - - - - Name - Nama + + Estimated People Affected + Perkiraan Penduduk Terdampak - - People (x1000)/ Airport affected - Penduduk (x1000)/ Bandara terdampak + + Ash Thickness Range (cm) + Rentang Ketebalan Abu (cm) - + Forest Hutan - + Plantation Perkebunan - + Water Supply Persediaan Air - + Settlement Pemukiman - + Rice Field Ladang Padi - - Damage to transportation routes (e.g. airports, roads, railways); damage to critical infrastructure (e.g. electricity supply); damage to more vulnerable agricultural crops (e.g. rice fields) - Kerusakan pada rute transportasi (contoh: bandara, jalan, rel kereta api); kerusakan pada infrastruktur kritis (contoh: persediaan kelistrikan); kerusakan pada tanaman pertanian yang lebih rentan (contoh: sawah) - - - - Estimated People Affected - Perkiraan Penduduk Terdampak - - - - FloodEvent - - - THE GOVERNMENT OF DKI JAKARTA PROVINCE -REGIONAL DISASTER MANAGEMENT AGENCY - - PEMERINTAH PROVINSI DKI JAKARTA -BADAN PENANGGULANGAN BENCANA DAERAH - - - - FLOOD IMPACT REPORT FOR POPULATION - LAPORAN DAMPAK BANJIR PADA PENDUDUK - - - - Based on flood %s - Berdasarkan banjir %s - - - - Legend - Legenda - - - - InaSAFE Analysis Result - Hasil Analisis InaSAFE - - - - Data Source - Sumber Data - - - - Contact - Kontak - - - - Supported by - Didukung oleh - - - - Disclaimer - Ketentuan - - - - Data Sources: -1. Hazard Data - Flood: BPBD DKI Jakarta / PetaJakarta.org -2. Exposure Data - Population: Population Agency DKI Jakarta Prov. - - Sumber Data: -1. Data Ancaman -Banjir: BPBD DKI Jakarta / PetaJakarta.org -2. Data Keterpaparan -Penduduk: Dinas Kependudukan DKI Jakarta. - - - - - This impact estimate is automatically generated and only takes into account the population affected by flood hazard in Jakarta. The estimate is based on flood hazard data from BPBD DKI Jakarta and population exposure data from the Population Agency, DKI Jakarta Province. Limitations in the estimates of flood hazard and population may result in significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified with other reliable information sources. - Perkiraan dampak ini secara otomatis dibangkitkan dan hanya memperhitungkan penduduk dan kota yang terdampak banjir di Jakarta. Perkiraan ini berdasarkan data banjir dari BPBD DKI Jakarta dan data penduduk dari Dinas Kependudukan DKI Jakarta. Batasan dalam perkiraan banjir dan penduduk dapat menyebabkan kesalahan representasi dari situasi yang sebenarnya terjadi. Oleh karena itu, keputusan tidak seharusnya diambil semata-mata berdasarkan informasi yang tertera di sini dan harus selalu diverifikasi dengan sumber terpercaya lainnya. - - - - Pusat Pengendalian Operasi (Pusdalops) -BPBD Provinsi DKI Jakarta -Gedung Dinas Teknis Lt. 5 -Jl. Abdul Muis No. 66, Telp. 121 - - Pusat Pengendalian Operasi (Pusdalops) -BPBD Provinsi DKI Jakarta -Gedung Dinas Teknis Lt. 5 -Jl. Abdul Muis No. 66, Telp. 121 - - - - - %s - %s + + Land Cover Type + Tipe Penutup Lahan - - Total affected population (people) - Total populasi (penduduk) terdampak + + Area affected (km<sup>2</sup>) + Area terdampak (km<sup>2</sup>) - - Estimates of IDP (people) - Perkiraan IDP (penduduk) + + No area affected + - - Relief items to be provided %s : - Barang bantuan yang perlu disediakan %s: + + Name + Nama - - People Affected - Penduduk Terdampak + + People / Airport affected + - - Flood Depth (cm) - Kedalaman Banjir (cm) + + No nearby cities or airport affected + diff --git a/realtime/i18n/inasafe_realtime_vi.ts b/realtime/i18n/inasafe_realtime_vi.ts index ba155716d..96b78bcee 100644 --- a/realtime/i18n/inasafe_realtime_vi.ts +++ b/realtime/i18n/inasafe_realtime_vi.ts @@ -1,290 +1,302 @@ - - + AshEvent - - Volcanic Ash Impact - + + People Affected + + + + FloodEvent - - Volcano: %s, %s - + + THE GOVERNMENT OF DKI JAKARTA PROVINCE +REGIONAL DISASTER MANAGEMENT AGENCY + + - - Province: %s - + + FLOOD IMPACT REPORT FOR POPULATION + - - Alert Level: %s - + + Based on flood %s + - - Position: %s, %s; Eruption Column Height (a.s.l) - %d m - + + Legend + - - Elapsed time since event: %s hour(s) and %s minute(s) - + + InaSAFE Analysis Result + - - Potential impact at each fallout level - + + Data Source + - - Nearby places - + + Contact + - - Land Cover Impact - + + Supported by + - - The impact estimation is automatically generated and only takes into account the population, cities and land cover affected by different levels of volcanic ash fallout at surface level. The estimate is based on volcanic ash fallout data from Badan Geologi, population count data derived by DMInnovation from worldpop.org.uk, place information and land cover classification data provided by Indonesian Geospatial Portal at http://portal.ina-sdi.or.id and software developed by BNPB. Limitation in the estimates of surface fallout, population and place names datasets may result in a significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified by ground truthing and other reliable information sources. - + + Disclaimer + - - This report was created using InaSAFE version %s. Visit http://inasafe.org for more information. - + + Data Sources: +1. Hazard Data + Flood: BPBD DKI Jakarta / PetaJakarta.org +2. Exposure Data + Population: Population Agency DKI Jakarta Prov. + + - - Supported by DMInnovation, Geoscience Australia and the World Bank-GFDRR - + + This impact estimate is automatically generated and only takes into account the population affected by flood hazard in Jakarta. The estimate is based on flood hazard data from BPBD DKI Jakarta and population exposure data from the Population Agency, DKI Jakarta Province. Limitations in the estimates of flood hazard and population may result in significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified with other reliable information sources. + - - People Affected - + + Pusat Pengendalian Operasi (Pusdalops) +BPBD Provinsi DKI Jakarta +Gedung Dinas Teknis Lt. 5 +Jl. Abdul Muis No. 66, Telp. 121 + + - - Fallout Level - + + %s + - - Very Low - + + Total affected population (people) + - - Low - + + Estimates of IDP (people) + - - Moderate - + + Relief items to be provided %s : + - - High - + + People Affected + - - Very High - + + Flood Depth (cm) + + + + ReportText - - Potential Impact - + + Volcanic Ash Impact + - - Impact on health (respiration), livestock, and contamination of water supply. - + + Volcano: %s, %s + - - Damage to less vulnerable agricultural crops (e.g. tea plantations) and destruction of more vulnerable crops; destruction of critical infrastructure; cosmetic (non-structural) damage to buildings - + + Province: %s + - - Dry loading on buildings causing structural damage but not collapse; Wet loading on buildings (i.e. ash loading + heavy rainfall) causing structural collapse. - + + Alert Level: %s + - - Dry loading on buildings causing structural collapse. - + + Position: %s, %s; Eruption Column Height (a.s.l) - %d m + - - Ash Thickness Range (cm) - + + Elapsed time since event: %s hour(s) and %s minute(s) + - - Land Cover Type - + + Potential impact at each fallout level + - - Area affected (km<sup>2</sup>) - + + Nearby places + - - Name - + + Land Cover Impact + - - People (x1000)/ Airport affected - + + The impact estimation is automatically generated and only takes into account the population, cities and land cover affected by different levels of volcanic ash fallout at surface level. The estimate is based on volcanic ash fallout data from Badan Geologi, population count data derived by DMInnovation from worldpop.org.uk, place information and land cover classification data provided by Indonesian Geospatial Portal at http://portal.ina-sdi.or.id and software developed by BNPB. Limitation in the estimates of surface fallout, population and place names datasets may result in a significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified by ground truthing and other reliable information sources. + - - Forest - + + This report was created using InaSAFE version %s. Visit http://inasafe.org for more information. + - - Plantation - + + Supported by DMInnovation, Geoscience Australia and the World Bank-GFDRR + - - Water Supply - + + Fallout Level + - - Settlement - + + Very Low + - - Rice Field - + + Low + - - Damage to transportation routes (e.g. airports, roads, railways); damage to critical infrastructure (e.g. electricity supply); damage to more vulnerable agricultural crops (e.g. rice fields) - + + Moderate + - - Estimated People Affected - + + High + - - - FloodEvent - - THE GOVERNMENT OF DKI JAKARTA PROVINCE -REGIONAL DISASTER MANAGEMENT AGENCY - - + + Very High + - - FLOOD IMPACT REPORT FOR POPULATION - + + Potential Impact + - - Based on flood %s - + + Impact on health (respiration), livestock, and contamination of water supply. + - - Legend - + + Damage to transportation routes (e.g. airports, roads, railways); damage to critical infrastructure (e.g. electricity supply); damage to more vulnerable agricultural crops (e.g. rice fields) + - - InaSAFE Analysis Result - + + Damage to less vulnerable agricultural crops (e.g. tea plantations) and destruction of more vulnerable crops; destruction of critical infrastructure; cosmetic (non-structural) damage to buildings + - - Data Source - + + Dry loading on buildings causing structural damage but not collapse; Wet loading on buildings (i.e. ash loading + heavy rainfall) causing structural collapse. + - - Contact - + + Dry loading on buildings causing structural collapse. + - - Supported by - + + Estimated People Affected + - - Disclaimer - + + Ash Thickness Range (cm) + - - Data Sources: -1. Hazard Data - Flood: BPBD DKI Jakarta / PetaJakarta.org -2. Exposure Data - Population: Population Agency DKI Jakarta Prov. - - + + Forest + - - This impact estimate is automatically generated and only takes into account the population affected by flood hazard in Jakarta. The estimate is based on flood hazard data from BPBD DKI Jakarta and population exposure data from the Population Agency, DKI Jakarta Province. Limitations in the estimates of flood hazard and population may result in significant misrepresentation of the on-the-surface situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified with other reliable information sources. - + + Plantation + - - Pusat Pengendalian Operasi (Pusdalops) -BPBD Provinsi DKI Jakarta -Gedung Dinas Teknis Lt. 5 -Jl. Abdul Muis No. 66, Telp. 121 - - + + Water Supply + - - %s - + + Settlement + - - Total affected population (people) - + + Rice Field + - - Estimates of IDP (people) - + + Land Cover Type + - - Relief items to be provided %s : - + + Area affected (km<sup>2</sup>) + - - People Affected - + + No area affected + - - Flood Depth (cm) - + + Name + + + + + People / Airport affected + + + + + No nearby cities or airport affected + @@ -292,77 +304,77 @@ Jl. Abdul Muis No. 66, Telp. 121 Not felt - + Weak - + Light - + Moderate - + Strong - + Very strong - + Severe - + Violent - + Extreme - + None - + Very light - + Mod/Heavy - + Heavy - + Very heavy - + Name - + @@ -372,37 +384,37 @@ Jl. Abdul Muis No. 66, Telp. 121 Intensity - + People Exposed (x 1000) - + Perceived Shaking - + Estimated Earthquake Impact - + Estimated number of people exposed by each MMI level - + Estimated fatalities - + Nearby Places - + @@ -412,42 +424,42 @@ Jl. Abdul Muis No. 66, Telp. 121 This impact estimation is automatically generated and only takes into account the population and cities affected by different levels of ground shaking. The estimate is based on ground shaking data from BMKG, population count data derived by DMInnovation from worldpop.org.uk and BPS Census Data 2010, place information data provided by Indonesian Geospatial Portal at http://tanahair.indonesia.go.id and software developed by BNPB. Limitations in the estimates of ground shaking, population and place names datasets may result in significant misrepresentation of the on-the-ground situation in the figures shown here. Consequently, decisions should not be made solely on the information presented here and should always be verified by ground truthing and other reliable information sources. The fatality calculation assumes that no fatalities occur for shake levels below MMI 4. Fatality counts of less than 50 are rounded down. - + This report was created using InaSAFE version %s. Visit http://inasafe.org for more information. - + Supported by the Australian Government, Geoscience Australia and the World Bank-GFDRR. - + km - + of - + bearing - + n/a - + Elapsed time since event - + @@ -467,7 +479,7 @@ Jl. Abdul Muis No. 66, Telp. 121 Located - + @@ -495,4 +507,4 @@ Jl. Abdul Muis No. 66, Telp. 121 phiên bản : %s - + \ No newline at end of file