[Hotfix] - Processing countries with the `large-country` flag fails
The code in line 533 is wrong. Currently, this line reads
total_built_area = self.exposure_db.cursor.get_country_built_area(country_iso_code)
but should read
total_built_area = self.exposure_db.get_country_built_area(country_iso_code)