<!DOCTYPE html>
<!--
Editorial by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head><meta name="change-frequency" content="hourly">
<title>Weather South Africa - Weervoorspelling, Weerradar, Weerkaarte</title>
<meta name="description" content="Get today's weather forecast for your location. Access detailed, live updates and 10-day weather predictions.">
<meta name="keywords" content="Local Weather, Weather Forecast, Rain Radar, Live Weather, 10-Day Weather">
<html lang="en">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width">
<meta name="robots" content="index,follow"/>
<link rel="icon" sizes="32x32" href="https://whatweather.today/images/icon.ico" type="image/x-icon">
<script>// Configuration
const descriptionTemplates = [
"Get accurate {keyword1} forecast for {keyword2} {keyword3} with real-time updates. {contentWord1} {contentWord2} {contentWord3} {contentWord4}.",
"Current {keyword1} conditions in {keyword2} - {keyword3} outlook. {contentWord1} {contentWord2} {contentWord3} {contentWord4}.",
"Detailed {keyword1} report for {keyword2} - {keyword3} predictions. {contentWord1} {contentWord2} {contentWord3} {contentWord4}.",
"Live {keyword1} updates in {keyword2} - {keyword3} alerts. {contentWord1} {contentWord2} {contentWord3} {contentWord4}.",
"Precise {keyword1} data for {keyword2} - {keyword3} forecast. {contentWord1} {contentWord2} {contentWord3} {contentWord4}.",
"Hourly {keyword1} predictions for {keyword2} - {keyword3} trends. {contentWord1} {contentWord2} {contentWord3} {contentWord4}.",
"Reliable {keyword1} information in {keyword2} - {keyword3} analysis. {contentWord1} {contentWord2} {contentWord3} {contentWord4}.",
"Up-to-date {keyword1} for {keyword2} - {keyword3} outlook. {contentWord1} {contentWord2} {contentWord3} {contentWord4}.",
"Comprehensive {keyword1} coverage in {keyword2} - {keyword3} report. {contentWord1} {contentWord2} {contentWord3} {contentWord4}.",
"Expert {keyword1} forecast for {keyword2} - {keyword3} conditions. {contentWord1} {contentWord2} {contentWord3} {contentWord4}.",
// 190 more templates would be here in a real implementation
];
const excludedWords = ['the', 'a', 'an', 'and', 'or', 'but', 'if', 'as', 'of', 'at', 'by', 'for', 'in', 'on', 'to', 'with', 'is', 'are', 'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'do', 'does', 'did', 'will', 'would', 'can', 'could', 'shall', 'should', 'may', 'might', 'must'];
// Function to extract keywords from URL
function getKeywordsFromUrl(url) {
// Remove protocol and www
let cleanUrl = url.replace(/(https?:\/\/|www\.)/gi, '');
// Split by slashes, dots, dashes
let parts = cleanUrl.split(/[\/\.\-]/);
// Filter out empty strings and common terms
let keywords = parts.filter(part =>
part.length > 2 &&
!['com', 'net', 'org', 'io'].includes(part.toLowerCase())
);
return keywords;
}
// Function to extract meaningful words from body content
function getContentWords() {
let bodyText = document.body.innerText;
let words = bodyText.split(/\s+/);
// Filter words
words = words.filter(word => {
word = word.toLowerCase().replace(/[^a-z]/g, '');
return word.length > 3 && !excludedWords.includes(word);
});
// Get unique words
let uniqueWords = [...new Set(words)];
// Shuffle and return 4 words
return shuffleArray(uniqueWords).slice(0, 4);
}
// Helper function to shuffle array
function shuffleArray(array) {
for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[array[i], array[j]] = [array[j], array[i]];
}
return array;
}
// Function to generate meta description
function generateMetaDescription() {
const urlKeywords = getKeywordsFromUrl(window.location.href);
const contentWords = getContentWords();
// Select a random template
const template = descriptionTemplates[Math.floor(Math.random() * descriptionTemplates.length)];
// Replace placeholders
let description = template
.replace('{keyword1}', urlKeywords[0] || 'weather')
.replace('{keyword2}', urlKeywords[1] || 'your location')
.replace('{keyword3}', urlKeywords[2] || 'today')
.replace('{contentWord1}', contentWords[0] || 'accurate')
.replace('{contentWord2}', contentWords[1] || 'reliable')
.replace('{contentWord3}', contentWords[2] || 'detailed')
.replace('{contentWord4}', contentWords[3] || 'forecast');
// Capitalize first letter and ensure length < 160
description = description.charAt(0).toUpperCase() + description.slice(1);
description = description.substring(0, 160);
return description;
}
// Function to update meta description
function updateMetaDescription() {
const metaDescription = document.querySelector('meta[name="description"]');
if (metaDescription) {
metaDescription.setAttribute('content', generateMetaDescription());
} else {
const meta = document.createElement('meta');
meta.name = 'description';
meta.content = generateMetaDescription();
document.head.appendChild(meta);
}
}
// Update every minute
setInterval(updateMetaDescription, 60000);
// Initial update
updateMetaDescription();</script></head><!--<!-- background images-->
<body>
<style>html{width: 100%; max-width: 1200px; height: 100%;margin: auto;font-size:100%; }html{font-size:100%;-webkit-tap-highlight-color:transparent}body{font-family:helvetica neue,Helvetica,Arial,sans-serif;font-size:calc(1.3rem + 1.3vw);line-height:1.428571429;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}img{vertical-align:middle}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:helvetica neue,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.1;color:inherit}h1,h2,h3{margin-top:0px;margin-bottom:0px}h4,h5,h6{margin-top:10px;margin-bottom:10px}h1,.h1{font-size:calc(0.6rem + 0.6vw)}h2,.h2{font-size:calc(1.0rem + 1.0vw)}h3,.h3{font-size:calc(0.8rem + 0.8vw)}h4,.h4{font-size:calc(0.7rem + 0.7vw)}h5,.h5{font-size:calc(0.6rem + 0.6vw)}h6,.h6{font-size:calc(0.6rem + 0.6vw)}ul,ol{margin-top:0;margin-bottom:10px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.428571429}dt{font-weight:700}dd{margin-left:0}.container{padding-right:auto;padding-left:auto;margin-right:auto;margin-left:auto}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-top{top:0;border-width:0 0 1px}.clearfix:before,.clearfix:after{display:table;content:" "}.clearfix:after{clear:both}.pull-right{float:right;position:fixed;right:20vw}.pull-left{float:left!important}input,textarea,select,.uneditable-input{max-width:20%;width:auto}html{height:100%}body{background-color:#000000;color:#999;padding-top:11vw;height:100%}h1,h2,h3,h4,h5,h6{font-family:sans-serif}a,a:link{outline:0}.navbar-fixed-top{z-index:2}.footer{background-image:url(https://whatweather.today/images/back-trans-85.png);background-position:left top;background-repeat:repeat;z-index:2;padding:10px 0 0;border-top:0}.footer a,.footer a:link,.footer a:visited{color:#757575}.navbar-fixed-top{background-color:transparent;background-position:left top;background-repeat:repeat;background-image:url(https://whatweather.today/images/back-trans-90.png)}.view-taxonomy-term>.view-content>.item-list>ul,.view-taxonomy-term ul.radiogenrerapper{margin:0;padding:0}.view-taxonomy-term>.view-content>.item-list>ul>li,.view-taxonomy-term ul.radiogenrerapper>li{background-image:url(https://whatweather.today/images/back-trans-85.png);background-position:left top;background-repeat:repeat;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;position:relative;margin-bottom:2px;clear:both;display:block;overflow:hidden;padding:0.3vw 0.3vw 0.3vw 1vw}.maintitle{font-size:calc(1.0rem + 1.0vw);color:#FFCC00;}.description{font-size:calc(0.6rem + 0.6vw);color:#b1b1b1;}</style>
<style>.countryFlag,.dropdown dt a span{cursor:pointer;white-space:nowrap}.wrapper{width:63%;margin:0 39vw}.dropdown dd,.dropdown dt,.dropdown ul{margin:0;padding:0}.dropdown dd ul li a span:first-child,.dropdown dt a span span:first-child{background-image:url(https://whatweather.today/images/OQiDoZe.webp);background-repeat:no-repeat;width:16px;height:11px;display:inline-block;margin:5px;vertical-align:top}.dropdown dt a span{display:block;padding:5px}.dropdown dt a img{position:relative;z-index:1}.dropdown dt a span span:first-child:before{position:absolute;content:'';width:15px;height:10px;box-shadow:0 1px 1px rgba(0,0,0,.2) inset}.dropdown dd,.dropdown dt a{position:relative}.dropdown dt a span span{display:inline-block;padding:0}.dropdown dt a span span:first-child{padding:0}.dropdown a,.dropdown a:visited{color:#4a535f;text-decoration:none;outline:0}.dropdown a:hover,.dropdown dt a:focus,.dropdown dt a:hover{color:#5d4617}.dropdown dt a{background:#e3e6ef;display:block;padding-right:0px;overflow:hidden;border:1px solid #ed4267;width:71%}.dropdown dt a:after{content:'';background:#ed4267;height:32px;position:absolute;right:0;top:0;width:35px}.dropdown dt a:before{background:#FFF;content:"";height:3px;position:absolute;right:7px;top:6px;width:20px;z-index:2;box-shadow:0 8px 0 #FFF,0 16px 0 #FFF}.dropdown dd ul{background:#f0f2f7;color:#C5C0B0;display:none;left:0;padding:5px 0;position:absolute;width:71%;border:1px solid #ed4267;list-style:none;max-height:250px;overflow-y:scroll;top:10px;z-index:2}li a{font-size:calc(0.8rem + 0.7vw)}li a span:nth-child(2){line-height:2em}.dropdown dd ul::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 1px rgba(0,0,0,.3);border-left:1px solid rgba(0,0,0,.1)}.dropdown dd ul::-webkit-scrollbar-thumb{background:rgba(0,0,0,.4)}.dropdown dd ul::-webkit-scrollbar-thumb:window-inactive{background:#00f}.dropdown span.value{display:none}.dropdown dd ul li a{padding:14px;display:block;font-size:calc(0.8rem + 0.7vw)!important}.dropdown dd ul li a:hover{background-color:rgba(0,0,0,.05)}dl.dropdown{display:inline-block;width:71%;margin:-3px 0 0 1px}dl.dropdown span:nth-child(3){color:rgba(0,0,0,.4);float:right}dl.dropdown>span:nth-child(2){overflow:hidden;white-space:nowrap;display:inline-block}dl.dropdown dt span:nth-child(2){color:rgba(0,0,0,.6);font-size:calc(0.8rem + 0.7vw);font-weight:700;line-height:1.6em}dl.dropdown dt span:nth-child(3){display:none}.countryFlag{padding:0;background-image:url(http://i.imgur.com/OQiDoZe.png);background-repeat:no-repeat;display:inline-block;height:11px;margin-right:4px;width:16px;-moz-border-bottom-colors:none;-moz-border-left-colors:none;-moz-border-right-colors:none;-moz-border-top-colors:none;border-color:#BFBFC1 #B6B6B6 #969696;border-image:none;border-radius:2px;border-style:solid;border-width:1px;box-shadow:0 1px 1px rgba(0,0,0,.09)}</style>
<style type="text/css">.back{background-color:rgba(0, 0, 0, 0.85);padding:15px 15px;}</style>
<style>div.ads {position: relative;width: 100%;max-height: 300px;min-height: 300px;display: block;}</style>
<style>div.ads1 {position: relative;width: 100%;max-height: 300px;min-height: 300px;display: block;}</style>
<style>div.adsmall {position: relative;width: 100%;max-height: 200px;min-height: 200px;display: block;}</style>
<header id="navbar" class="navbar navbar-inverse navbar-fixed-top"><div class="container">
<a class="logo pull-left" href="https://whatweather.today/" title="weather"><span style="font-size:calc(0.7rem + 0.8vw); color:#ffffff;"><b>What</b></span><span style="font-size:calc(0.7rem + 0.8vw); color:#ff0000;"><b>Weather</b></span><span style="font-size:calc(0.7rem + 0.8vw); color:#cecece;"><b>.today</b></span></a>
<div class="pull-right"><span id="chatGPTLink"><span style="font-size:calc(0.6rem + 0.6vw); color:#f6f6f5;">Chat GPT</span></span> <a href="#countries"><span style="font-size:calc(0.6rem + 0.6vw); color:#f6f6f5;">Countries</span></a>
<style>.dropbtn{background-color:#070707;color:#fff;padding:1px;font-size:calc(0.8rem + 0.8vw);border:none;cursor:pointer;width:100%}.dropdown{position:relative;display:inline-block}.dropdown-content{display:none;position:absolute;font-size:calc(0.5rem + 0.5vw);background-color:#f9f9f9;min-width:30vw;box-shadow:0 8px 16px 0 rgba(254,1,1,.2);z-index:1}.dropdown-content a{color:#000;padding:10px 13px;text-decoration:none;display:block}.dropdown-content a:hover{background-color:#c4c4c4}.dropdown:hover .dropdown-content{display:block;background-color:#fff}.dropdown:hover .dropbtn{background-color:#070707}</style><div class="dropdown">
<button class="dropbtn"><span style="font-size:calc(1.1rem + 1.0vw); color:#f6f6f6;">☰</span>
</button>
<div class="dropdown-content">
<a href="https://whatweather.today/" title="Home">Home</a>
<a href="https://whatweather.today/app/countries.html" title="Countries List">Countries List</a>
<a href="https://whatweather.today/latest/weather-news/" title="Weather News">Weather News</a>
<a href="https://whatweather.today/latest/weather-tv/" title="Weather TV">Weather TV</a>
<a href="https://whatweather.today/latest/satellite/" title="Satellite">Satellite</a>
<a href="https://whatweather.today/latest/earthquakes" title="Earthquakes">Earthquakes</a>
<a href="https://whatweather.today/latest/air-quality/" title="Air Quality">Air Quality</a>
<a href="https://whatweather.today/latest/earth-from-space/" title="Earth from Space">Earth from Space</a>
<a href="https://whatweather.today/latest/sea-temperature/" title="Sea Temperature">Sea Temperature</a>
<a href="https://whatweather.today/maps/flight-radar/" title="Flight Radar">Flight Radar</a>
<a href="https://whatweather.today/maps/ship-radar/" title="Ship Radar">Ship Radar</a>
<a href="https://whatweather.today/maps/road-traffic/" title="Road Traffic">Road Traffic</a>
<a href="https://whatweather.today/contact.html" title="Contact">Contact us</a>
</div></div></div>
<!--Countries-->
</header>
<style>#search-icon{position:fixed;top:4px;right:20px;cursor:pointer;font-size:24px;z-index:1000;background:#070707;color:#fff;width:30px;height:30px;display:flex;align-items:center;justify-content:center}#search-container{position:fixed;top:50px;right:20px;display:none;z-index:999}</style>
<div id="search-icon" onclick="toggleSearch()">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="11" cy="11" r="7" stroke="white" stroke-width="2"/>
<line x1="16" y1="16" x2="22" y2="22" stroke="white" stroke-width="2"/>
</svg>
</div>
<div id="search-container">
<script async src="https://cse.google.com/cse.js?cx=cb2c7022abc05b625"></script>
<div class="gcse-search"></div></div>
<script>function toggleSearch(){var e=document.getElementById("search-container");e.style.display="none"===e.style.display||""===e.style.display?"block":"none"}</script>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix">
<div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a">
<div class="view-content"><div class="item-list"><div class="ads1">
<ins class="adsbygoogle"
style="display:inline-block;width:100%;height:300px"
data-ad-client="ca-pub-4185741460540603"
data-ad-slot="2824828440"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></div></div></div></div></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix">
<div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a">
<div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body">
<a href="https://whatweather.today/latest/weather-tv/" title="Weather TV"><span style="font-size:calc(0.6rem + 0.6vw); color:#cecece;">Weather TV </span></a>
<a href="https://whatweather.today/latest/satellite/" title="Satellite"><span style="font-size:calc(0.6rem + 0.6vw); color:#cecece;"> Satellite </span></a>
<a href="https://whatweather.today/latest/earthquakes" title="Earthquakes"><span style="font-size:calc(0.6rem + 0.6vw); color:#cecece;"> Earthquakes </span></a>
<a href="https://whatweather.today/latest/air-quality/" title="Air Quality"><span style="font-size:calc(0.6rem + 0.6vw); color:#cecece;"> Air Quality </span></a>
<a href="https://whatweather.today/latest/earth-from-space/" title="Earth from Space"><span style="font-size:calc(0.6rem + 0.6vw); color:#cecece;"> ISS Live</span></a>
</span></div></div></div></div></div>
<!-- DO NOT REMOVE THIS LINK -->
<!--searchweather-->
<style type="text/css">.tabset>input[type=radio]{position:absolute;left:-200vw}.tabset .tab-panel{display:none}.tabset>input:first-child:checked~.tab-panels>.tab-panel:first-child,.tabset>input:nth-child(11):checked~.tab-panels>.tab-panel:nth-child(6),.tabset>input:nth-child(3):checked~.tab-panels>.tab-panel:nth-child(2),.tabset>input:nth-child(5):checked~.tab-panels>.tab-panel:nth-child(3),.tabset>input:nth-child(7):checked~.tab-panels>.tab-panel:nth-child(4),.tabset>input:nth-child(9):checked~.tab-panels>.tab-panel:nth-child(5){display:block}.tabset>label{font-size:calc(0.6rem + 0.6vw);font-family:arial;color:#000000;position:relative;display:inline-block;padding:.8rem .3rem .8rem .3rem;border-bottom:0;cursor:pointer;background:rgba(212, 255, 0);text-align:left;white-space:pre}.tabset>label::after{content:"";position:absolute;left:.1rem;bottom:.1rem;height:.1rem;background:#8d8d8d}input:focus-visible+label{outline:rgb(0 102 204) solid 2px;border-radius:1}.tabset>input:checked+label,.tabset>input:focus+label,.tabset>label:hover{color:rgb(77, 0, 103)}.tabset>input:checked+label::after,.tabset>input:focus+label::after,.tabset>label:hover::after{background:#bf0}.tabset>input:checked+label{border-color:#ccc;border-bottom:1px solid #fff;margin-bottom:-1px}.tab-panel{padding:1px 0;border-top:1px solid #ccc}</style>
<style type="text/css">.tab{overflow:hidden;border:0 solid #ccc;background-color:#000}.tab button{background-color:#000;float:left;border:none;outline:0;cursor:pointer;padding:5px 9px;transition:.1s;font-size: calc(0.5rem + 0.5vw);color:#fff}.tab button:hover{background-color:#ffb300;color:#000}.tab button.active{background-color:#ffb300;color:#000}.tabcontent{display:none;padding:0 0;border:0 solid #ccc;border-top:none}.tabcontent.active{display:block}#wrapper-div-maxmin{position:relative;width:100%}.ai-fullscreen-open,.ai-fullscreen-close{cursor:pointer;width:10px;height:10px}</style>
<script>function clickHandle(evt,tabName){var tabcontents=document.getElementsByClassName("tabcontent");for(var i=0;i<tabcontents.length;i++){tabcontents[i].classList.remove("active")} var tablinks=document.getElementsByClassName("tablinks");for(var i=0;i<tablinks.length;i++){tablinks[i].classList.remove("active")} document.getElementById(tabName).classList.add("active");evt.currentTarget.classList.add("active")}</script>
<style type="text/css">.errordiv{padding:10px;margin:10px;border:1px solid #555;color:#000;background-color:#f8f8f8;width:500px}#maxmin{visibility:visible;opacity:1;vertical-align:top}.ai-info-bottom-iframe{position:fixed;z-index:10000;bottom:0;left:0;margin:0;text-align:center;width:100%;background-color:#f99;padding-left:5px;padding-bottom:5px;border-top:1px solid #aaa}a.ai-bold{font-weight:700}#ai-layer-div-maxmin p{height:100%;margin:0;padding:0}.ai-fullscreen{position:fixed;z-index:9000!important;top:0!important;left:0!important;margin:0!important;width:100%!important;height:100%!important}</style><style>#wrapper-div-element-maxmin-0{position:absolute;z-index:auto;left:0;top:0;width:35px;height:35px;background-color:transparent}</style><style>img.ai-fullscreen-open{width:35px;height:35px;cursor:pointer}img.ai-fullscreen-open:hover{transform:scale(1.1)}img.ai-fullscreen-close{z-index:100005;position:fixed;width:35px;height:35px;cursor:pointer;display:none}img.ai-fullscreen-close-maxmin{left:0;top:0}img.ai-fullscreen-close:hover{transform:scale(1.1)}</style>
<!--tabs-->
<!-- weatherapp-->
<!-- display-1200x300 -->
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix">
<div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a">
<div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body">
<div id="weather"><div class="maintitle">South Africa Weather</div>
<a href="/world/africa/" title="Weather, Africa, weather"><span style=" font-size:calc(0.6rem + 0.6vw); color:#FFFFFF;">Africa</span></a>
<a href="/world/asia/" title="Weather, Asia, weather"><span style=" font-size:calc(0.6rem + 0.6vw); color:#FFFFFF;">Asia</span></a>
<a href="/world/europe/" title="Weather, Europe, weather"><span style=" font-size:calc(0.6rem + 0.6vw); color:#FFFFFF;">Europe</span></a>
<a href="/world/australia/" title="Weather, Oceania, weather"><span style=" font-size:calc(0.6rem + 0.6vw); color:#FFFFFF;">Oceania</span></a>
<a href="/world/north-america/" title="Weather, North America, weather"><span style=" font-size:calc(0.6rem + 0.6vw); color:#FFFFFF;">North America </span></a>
<a href="/world/south-america/" title="Weather, South America, weather"><span style=" font-size:calc(0.6rem + 0.6vw); color:#FFFFFF;">South America</span></a>
</div></div></div></div>
<div class="tabset">
<!-- Tab 1 -->
<input type="radio" name="tabset" id="taba1" aria-controls="weathermap" checked>
<label for="taba1" class="tablinks" onclick="clickHandle(event, 'tab1')">Weather Maps</label>
<!-- Tab 2 -->
<input type="radio" name="tabset" id="taba2" aria-controls="weatherapp">
<label for="taba2" class="tablinks" onclick="clickHandle(event, 'cala')">Weather Apps</label>
<!-- Tab 3 -->
<input type="radio" name="tabset" id="taba3" aria-controls="realweather">
<label for="taba3" class="tablinks" onclick="clickHandle(event, 'realtime')">Weather Now</label>
<!-- Tab 4 -->
<input type="radio" name="tabset" id="taba4" aria-controls="otherapps">
<label for="taba4" class="tablinks" onclick="clickHandle(event, 'chatgpt')">Other Apps</label>
<div class="tab-panels">
<section id="weathermap" class="tab-panel">
<div class="tab">
<button title="weather" class="tablinks active" onclick="clickHandle(event, 'tab1')">South Africa 14 Day Weather MAP (Ventusky)</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'windy')">South Africa 10 Day Weather MAP (Windy)</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'aerismap')">XWeather MAP</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'maptiler')">South Africa 5 Day Weather MAP (Maptiler)</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'tutiempo')">Simple Weather MAP</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'tab4')">* Satellite: Clouds and Sun in South Africa</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'tab5')">* Satellite: Clouds and Rain in South Africa</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'tab6')">* Sunshine Hours in South Africa</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'cloudsAndPrecipitation')">* Clouds and Precipitation in South Africa</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'imweatherradar')">Nowcast Radar</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'imweathersatellite')">Nowcast Satellite</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'imweathersatradar')">Nowcast Satellite & Radar</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'weatherandradarall')">Clouds /Rain /Lightning Now</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'weatherandradartemp')">Temp Now</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'weatherandradarwind')">Wind Now</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'tomorrowradar')">Weather Radar (Tomorrow.io)</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'windyapp')">Windy.App (click on map)</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'openweathermap')">Openweather MAP</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'weathernationtvmap')">Weather Nation MAP</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'weather4sport')">Weather4Sport MAP</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'blitzortung')">Live Lightning Map 🔴</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'ventuskyradar')">Rain and Lightning radar 🔴</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'rainviewer')">Rain + Satellite</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'liveweatherradar')">Rain Radar</button>
</div>
</section>
<section id="weatherapp" class="tab-panel">
<div class="tab">
<button title="weather" class="tablinks active" onclick="clickHandle(event, 'cala')">10 Day Cala Weather (Weather.com)</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'bing')">10 Day Weather (MSN)</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'weathernews')">14 Day Weather News (PWS)</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'accuweather')">10 Day Weather (Accuweather)</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'google')">10 Day Weather (Google)</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'aeris')">10 Day Weather (XWeather)</button>
<button class="button" onClick="window.open('https://weather.interia.com/');"><span style="color:#F7F7F7;">45 Day Weather (Accuweather) ↗</span></button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'solsken')">10 Day Solsken Weather (YR.no)</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'merrysky')">7 Day Merry Sky (Pirateweather)</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'topopenapp')">7 Day Weather (Open-Meteo)</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'weathertrends360')">14 Day Weather Trends</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'weatherin')">14 Day Weather (Weatherin)</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'openweather')">8 Day OpenWeather</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'foreca')">7 Day Weather (Foreca)</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'forecasimple')">5 Day Simple Weather (Foreca)</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'scriptax')">16 Day Open-Meteo</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'weathernationtv')">14 Day Weather Nation</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'weatherpro')">7 Day WeatherPro</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'euronewsweather')">10 Day Euronews Weather</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'meteogram')">Meteogram</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'spotwx')">Numeric Weather Models</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'weather2umbrella')">7 Day Weather2umbrella</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'weatherappmeteo')">14 Day Tomorrow</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'froid')">15 Day Froid Weather</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'igetwind')">iGetwind Weather</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'skyweather')">SkyWeather</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'aqiweather')">Real-time + Forecast</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'weathertown')">Weather.town</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'fmi')">10 Day FMI Weather</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'wetterswiss')">Wetter Swiss</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'clearoutside')">Clear Outside?</button>
</div>
</section>
<section id="realweather" class="tab-panel">
<div class="tab">
<button title="weather" class="tablinks" onclick="clickHandle(event, 'realtime')">Real-time Weather</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'synoptic')">Current Weather</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'weathercloud')">Weathercloud App</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'ambientweather')">Ambient Weather Real-time</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'weatherobs')">Weather Obs</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'tempestwx')">Tempestwx Real-time</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'noaareal')">NOAA Real-time Weather</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'purpleair')">Real-time Air Quality Map</buttonn>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'metar')">Current weather on Aiports</button>
</div>
</section>
<section id="otherapps" class="tab-panel">
<div class="tab">
<button title="weather" class="tablinks" onclick="clickHandle(event, 'chatgpt')">Chat GPT</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'googlesearch')">Google Search</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'bingsearch')">Bing Search</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'speedtest')">Speed Test</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'climatetrend')">Climate Trend</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'metar')">Current weather on Aiports</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'uvindex')">UV Index App</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'barometricpressure')">Barometric Pressure App</button>
<button title="weather" class="tablinks" onclick="clickHandle(event, 'flightradar')">Flight Radar in Country</button>
<button class="button" onClick="window.open('https://whatweather.today/maps/flight-radar/', '_self');"><span style="color:#F7F7F7;">Flight Radar Map</span></button>
<button class="button" onClick="window.open('https://whatweather.today/maps/ship-radar/', '_self');"><span style="color:#F7F7F7;">Ships Radar</span></button>
<button class="button" onClick="window.open('https://whatweather.today/maps/road-traffic/', '_self');"><span style="color:#F7F7F7;">Road Traffic</span></button>
</div>
</section>
</div></div>
<div id="topopenapp" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://weatherapp.williamsmata.com/weather" rel="nofollow" width="100%" height="1050px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="scriptax" class="tabcontent"><iframe allow="geolocation" class="lazyload" loading="lazy" src="https://whatweather.today/app/scriptax/" rel="nofollow" width="100%" height="1250px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="weathernews" class="tabcontent"><iframe allow="geolocation" class="lazyload" loading="lazy" src="https://whatweather.today/app/weathernews/index.html" allow="geolocation" rel="nofollow" width="100%" height="1480px" scrolling="yes" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="google" class="tabcontent"><iframe allow="geolocation" class="lazyload" loading="lazy" src="https://whatweather.today/app/google/index.html" rel="nofollow" width="100%" height="1120px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="bing" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://whatweather.today/app/bing/bingmeteo.html" rel="nofollow" width="100%" height="1220px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="accuweather" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://whatweather.today/app/accuweather/accuweather.html" rel="nofollow" width="100%" height="800px" scrolling="yes" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="cala" class="tabcontent"><style>.iframe-container{position:relative;overflow:hidden;height:calc(2170px - 140px)}.iframe-container iframe{position:relative;top:-140px;width:100%;height:2170px;border:none}</style><div class="iframe-container"><iframe class="lazyload" loading="lazy" src="https://www.calaweather.com/" rel="nofollow" scrolling="no" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="solsken" class="tabcontent"><iframe allow="geolocation" class="lazyload" loading="lazy" src="https://solsken.app/" rel="nofollow" width="100%" height="1300px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="fmi" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://en.ilmatieteenlaitos.fi/local-weather/ny,%20united%20states/new%20york?forecast=daily" rel="nofollow" width="100%" height="1550px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="weatherpro" class="tabcontent"><iframe allow="geolocation" class="lazyload" loading="lazy" src="https://www.weatherpro.com/" rel="nofollow" width="100%" height="1850px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="euronewsweather" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://whatweather.today/app/euronews/weather/" rel="nofollow" width="100%" height="1150px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="weathertrends360" class="tabcontent"><iframe allow="geolocation" class="lazyload" loading="lazy" src="https://www.weathertrends360.com/Dashboard" rel="nofollow" width="100%" height="670px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="weatherappmeteo" class="tabcontent"><iframe allow="geolocation" class="lazyload" loading="lazy" src="https://www.tomorrow.io/weather/daily/" rel="nofollow" width="100%" height="1155px" scrolling="yes" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="tomorrowradar" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://weather.tomorrow.io/radar/" rel="nofollow" width="100%" height="920px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="forecasimple" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://whatweather.today/app/foreca/forecasimple.html" rel="nofollow" width="100%" height="470px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="foreca" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://whatweather.today/app/foreca/" rel="nofollow" width="100%" height="1355px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="meteogram" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://weatherian.com/#/" rel="nofollow" width="100%" height="1400px" scrolling="yes" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="merrysky" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://whatweather.today/app/merrysky/" rel="nofollow" width="100%" height="2500px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="wetterswiss" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://wetter.swiss/flightweather/en/droneweather/New%20York,%20New%20York,%20United%20States%20of%20America?lat=40.7127281&lon=-74.0060152" rel="nofollow" width="100%" height="850px" scrolling="yes" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="openweather" class="tabcontent"><iframe allow="geolocation" class="lazyload" loading="lazy" src="https://openweathermap.org/#weather-widget" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="weatherin" class="tabcontent"><iframe allow="geolocation" class="lazyload" loading="lazy" src="https://weatherin.org/" rel="nofollow" width="100%" height="4100px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="openweather" class="tabcontent"><iframe allow="geolocation" class="lazyload" loading="lazy" src="https://openweathermap.org/#weather-widget" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="weather2umbrella" class="tabcontent"><iframe allow="geolocation" class="lazyload" loading="lazy" src="https://www.weather2umbrella.com/" rel="nofollow" width="100%" height="2650px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="igetwind" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://igetwind.com/" rel="nofollow" width="100%" height="700px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="skyweather" class="tabcontent"><iframe allow="geolocation" class="lazyload" loading="lazy" src="https://skyweather.org/" rel="nofollow" width="100%" height="600px" scrolling="yes" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="froid" class="tabcontent"><iframe allow="geolocation" class="lazyload" loading="lazy" src="https://weather-almanac.com/" rel="nofollow" width="100%" height="1070px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="weathernationtv" class="tabcontent"><iframe allow="geolocation" class="lazyload" loading="lazy" src="https://www.weathernationtv.com/" rel="nofollow" width="100%" height="1100px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="weathernationtvmap" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" allow="geolocation" class="lazyload" loading="lazy" src="https://www.weathernationtv.com/national-weather" rel="nofollow" width="100%" height="530px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="tab1" class="tabcontent" style="display:block"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe allow="geolocation" id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://www.ventusky.com/?p=-27.4;25.1;4&" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="maptiler" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" allow="geolocation" class="lazyload" loading="lazy" src="https://www.maptiler.com/tools/weather/?embed=1#4.58/-29.79/25.47" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="ventuskyradar" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe allow="geolocation" id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://www.ventusky.com/?p=-27.4;25.1;4&l=radar&m=ukmo" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="windy" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://embed.windy.com/embed.html?type=map&location=coordinates&metricRain=default&metricTemp=default&metricWind=default&zoom=5&overlay=temp&product=ecmwf&level=surface&lat=-28.613&lon=24.521" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="tutiempo" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://mapa.tutiempo.net/en/#19.64259;-12.83203;3" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="realtime" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://weathermap.netatmo.com/" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="synoptic" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://viewer.synopticdata.com/map/data/now/air-temperature/AV995/#stationdensity=0.25&map=1.01/36.1/24.5" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="weathercloud" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://app.weathercloud.net/home" width="100%" height="600px" scrolling="yes" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="ambientweather" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://ambientweather.net/" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="weatherobs" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://weatherobs.com/" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="tempestwx" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://tempestwx.com/map/36.5495/-31.0661/4" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="noaareal" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://www.wrh.noaa.gov/map/?obs=true" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="aeris" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" allow="geolocation" src="https://live.xweather.com/" rel="nofollow" width="100%" height="670px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="aerismap" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" allow="geolocation" src="https://live.xweather.com/" rel="nofollow" width="100%" height="670px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="openweathermap" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://openweathermap.org/weathermap?basemap=map&cities=true&layer=temperature&lat=23.7250&lon=-5.9766&zoom=1" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="windyapp" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://windy.app/map/#c=32.48398,-2.14453&z=3" rel="nofollow" width="100%" height="720px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="liveweatherradar" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://liveweatherradar.com/" rel="nofollow" width="100%" height="720px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="clearoutside" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://clearoutside.com/forecast/40.71/-74.01#address_search_form" rel="nofollow" width="100%" height="2080px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="climatetrend" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://climate-visualiser.vercel.app/" rel="nofollow" width="100%" height="1900px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="weatherandradarall" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://www.weatherandradar.ie/weather-map/pretoria/757700?center=-30.12,24.8&placemark=-25.7449,28.1878&zoom=5.56&layer=wr" rel="nofollow" width="100%" height="600px" scrolling="yes" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="weatherandradartemp" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://www.weatherandradar.ie/weather-map/pretoria/757700?center=-30.12,24.8&placemark=-25.7449,28.1878&zoom=5.56&layer=tr" rel="nofollow" width="100%" height="600px" scrolling="yes" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="weatherandradarwind" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://www.weatherandradar.ie/weather-map/pretoria/757700?center=-30.12,24.8&placemark=-25.7449,28.1878&zoom=5.56&layer=gr" rel="nofollow" width="100%" height="600px" scrolling="yes" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="blitzortung" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://map.blitzortung.org/#-28.613,24.521,5" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="tab4" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://www.meteoblue.com/en/weather/maps/widget/cape-town_republic-of-south-africa_3369157#coords=4.39/-28.79/26.29&map=satellite~sat~none~none~none" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="tab5" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://www.meteoblue.com/en/weather/maps/widget/cape-town_republic-of-south-africa_3369157#coords=4.39/-28.79/26.29&map=satellite~radar~none~none~none" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="tab6" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://www.meteoblue.com/en/weather/maps/widget/cape-town_republic-of-south-africa_3369157#coords=4.39/-28.79/26.29&map=sunshine~daily~auto~sfc~none" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="cloudsAndPrecipitation" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://www.meteoblue.com/en/weather/maps/widget/cape-town_republic-of-south-africa_3369157#coords=4.39/-28.17/26.29&map=cloudsAndPrecipitation~hourly~auto~sfc~none" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="infrared" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://realearth.ssec.wisc.edu/api/image?products=globalir.100,NESDIS-GHE-HourlyRainfall.100&width=970&height=550&client=RealEarth&background=satellite&labels=google¢er=-28.877451791114055,25.71011404687499&zoom=5×pan=-12h,-1m×tep=60m&animate=true&animationspeed=89.78947368421052" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="flightradar" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://www.flightradar24.com/simple?lat=-27.4&lon=25.1&z=5" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="imweatherradar" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://imweather.com/?model=nowcast&run=&member=&element=radar_obs&level=&lat=-29.5603&lng=24.1084&z=4.40" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="imweathersatellite" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://imweather.com/?model=nowcast&run=&member=&element=satellite&level=&lat=-29.5603&lng=24.1084&z=4.40" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="imweathersatradar" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://imweather.com/?model=nowcast&run=&member=&element=radsat&level=&lat=-29.5603&lng=24.1084&z=4.40" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="weather4sport" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://weather4sport.com/index.html#temp/2025/04/04/1900/16.79713,-7.64630/3/point=41.11892,-73.62589/showdatatable=on" rel="nofollow" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="metar" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://metar.gg/" rel="nofollow" width="100%" height="2250px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="weathertown" class="tabcontent"><iframe allow="geolocation" class="lazyload" loading="lazy" src="https://whatweather.today/app/weathertown/" rel="nofollow" width="100%" height="1260px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="purpleair" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://map.purpleair.com/1/mAQI/a10/p604800/cC0#1.94/16.09/-2.36" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="aqiweather" class="tabcontent"><div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://www.aqi.in/weather/" rel="nofollow" width="100%" height="2400px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div id="uvindex" class="tabcontent"><iframe allow="geolocation" class="lazyload" loading="lazy" src="https://www.uvindex.app/" rel="nofollow" width="100%" height="3800px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="barometricpressure" class="tabcontent"><iframe allow="geolocation" class="lazyload" loading="lazy" src="https://barometricpressure.app/" rel="nofollow" width="100%" height="2820px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="spotwx" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://spotwx.com/" rel="nofollow" width="100%" height="3000px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="chatgpt" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://tinyurl.com/bd25h6wh" rel="nofollow" width="100%" height="700px" scrolling="yes" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="googlesearch" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://www.google.com/webhp?igu=1" rel="nofollow" width="100%" height="800px" scrolling="yes" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="bingsearch" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://www.bing.com/search?form=&q=weather" rel="nofollow" width="100%" height="800px" scrolling="yes" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<div id="speedtest" class="tabcontent"><iframe class="lazyload" loading="lazy" src="https://fast.com/" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div>
<!--endtabs-->
</div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix"><div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a"><div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body"><div class="maintitle">Click. Share. Inspire.</div>
<script type='text/javascript' src='https://platform-api.sharethis.com/js/sharethis.js#property=6777d635ad6fa80019a09419&product=inline-share-buttons' async='async'></script><!-- ShareThis BEGIN --><div class="sharethis-inline-share-buttons"></div><!-- ShareThis END --></div></div></div></div></div></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix">
<div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a">
<div class="view-content"><div class="item-list"><div class="back"><div class="ads">
<ins class="adsbygoogle"
style="display:inline-block;width:100%;height:300px"
data-ad-client="ca-pub-4185741460540603"
data-ad-slot="2824828440"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></div></div></div></div></div></div>
<div id="cala1" class="tabcontent" style="display:block"><style>.iframe-container{position:relative;overflow:hidden;height:calc(2170px - 140px)}.iframe-container iframe{position:relative;top:-140px;width:100%;height:2170px;border:none}</style><div class="iframe-container"><iframe class="lazyload" loading="lazy" src="https://www.calaweather.com/" rel="nofollow" scrolling="no" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix"><div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a"><div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body"><div class="maintitle">Clouds in my location</div>
<div id="wrapper-div-maxmin" class="ai-wrapper-div" style="position:relative;width:100%"><div id="wrapper-div-element-maxmin-0"><img class="ai-fullscreen-open ai-fullscreen-open" title="maximize" src="https://whatweather.today/images/maxims.webp" alt="maximize" data-id="maxmin"/><img class="ai-fullscreen-close ai-fullscreen-close-maxmin" alt="minimize" src="https://whatweather.today/images/minimizing.webp"/></div>
<iframe id="maxmin" name="maxmin" class="lazyload" loading="lazy" src="https://www.meteoblue.com/en/weather/maps/widget?windAnimation=0&gust=0&satellite=0&satellite=1&geoloc=detect&zoom=7&autowidth=auto&map=satellite~sat~none~none~none" width="100%" height="600px" title="satellite weather" scrolling="no" allowtransparency="true" frameborder="0" sandbox="allow-same-origin allow-scripts allow-popups allow-popups-to-escape-sandbox"></iframe></div>
</div></div></div></div></div></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix">
<div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a">
<div class="view-content"><div class="item-list"><div class="back"><div class="ads">
<ins class="adsbygoogle"
style="display:inline-block;width:100%;height:300px"
data-ad-client="ca-pub-4185741460540603"
data-ad-slot="2824828440"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></div></div></div></div></div></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix"><div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a"><div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body"><div class="maintitle">Weather TV LIVE</div>
<iframe class="lazyload" loading="lazy" src="https://tv.garden/us/9a6LkOKsyhE8Y4" rel="nofollow" width="100%" height="600px" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" title="weather" allowfullscreen allow="fullscreen"></iframe>
<div align="center"><a href="https://whatweather.today/latest/weather-tv/" title="World Weather TV Live, Weather today"><div class="maintitle">Watch More Weather TV LIVE</div></a></div></div></div></div></div></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix">
<div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a">
<div class="view-content"><div class="item-list"><div class="back"><div class="ads">
<ins class="adsbygoogle"
style="display:inline-block;width:100%;height:300px"
data-ad-client="ca-pub-4185741460540603"
data-ad-slot="2824828440"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></div></div></div></div></div></div>
<!--weathertv--><div class="region region-content"><section id="block-system-main" class="block block-system clearfix"><div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a"><div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body"><div class="maintitle">Weather TV Live</div><a href="/latest/weather-tv/" title="World Weather TV Live, Weather today"><img loading="lazy" class="lazy" data-src="/images/webcams.webp" width="100%" height="100%" alt="World Weather TV Live, Weather today"/></a><a href="https://whatweather.today/latest/weather-tv/" title="World Weather TV Live, Weather today">
<br><div class="description">Stay ahead of changing conditions with weather TV and weather online platforms that deliver real-time forecasts, severe storm alerts, and hyperlocal updates straight to your devices. Leading services like The Weather Channel provide 24/7 coverage through TV online streams, combining expert analysis with interactive radar maps so you can track rain, snow, or extreme heat as it develops. Whether you prefer TV live broadcasts or on-demand weather live updates via apps and websites, these platforms ensure you’re always prepared with accurate, minute-by-minute reports. Advanced features like live Doppler radar, hurricane tracking, and personalized alerts make it easy to monitor storms, plan outdoor activities, or avoid travel disruptions.</div>
</a></div></div></div></div></div><!--endweathertv-->
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix"><div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a"><div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body">
<a href="/latest/satellite/" title="Satellite: Clouds and Sun"><div class="maintitle">Satellite: Clouds and Sun</div></a><a href="/latest/satellite/" class="image" title="Satellite: Clouds and Sun"><img loading="lazy" class="lazy" data-src="/images/satellites.webp" width="100%" height="100%" alt="Satellite: Clouds and Sun"/></a><a href="/latest/satellite/" title="Satellite: Clouds and Sun"><br><div class="description">Satellites provide essential data for weather forecasting by continuously monitoring Earth’s atmosphere, tracking cloud formations, and detecting changes in temperature, humidity, and wind patterns. Advanced satellite technology captures high-resolution images of clouds, helping meteorologists predict storms, hurricanes, and other extreme weather events with greater accuracy. Geostationary satellites remain fixed over specific regions, delivering real-time updates on developing weather systems, while polar-orbiting satellites scan the entire planet, offering comprehensive data for long-term climate analysis. Clouds serve as key indicators of weather changes, with satellites using infrared and visible-light sensors to differentiate between light cirrus clouds and thick cumulonimbus formations that signal heavy rain or thunderstorms. As climate change increases the frequency of extreme weather, satellite observations become even more critical for early warnings and disaster preparedness. Governments and scientists rely on this data to improve weather models, ensuring accurate forecasts that protect lives and support agriculture, aviation, and emergency response efforts.</div></a>
</div></div></div></div></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix"><div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a"><div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body">
<a href="/latest/sea-temperature/" title="World Water Temperature"><div class="maintitle">World Water Temperature / Sea Surface Temperature</div></a><a href="/latest/sea-temperature/" class="image"><img loading="lazy" class="lazy" data-src="/images/sea-temp.webp" width="100%" height="100%" alt="World Water Temperature"/></a><a href="/latest/sea-temperature/" title="World Water Temperature"><br><div class="description">Monitoring world water temperature and sea surface temperature (SST) is critical for understanding global climate patterns, marine ecosystems, and weather forecasting. Satellites and ocean buoys collect precise SST data, revealing trends such as El Niño and La Niña events, which influence rainfall, hurricanes, and marine biodiversity. Rising sea surface temperatures, driven by climate change, contribute to coral bleaching, stronger tropical storms, and shifting fish populations, impacting coastal economies and food security. Scientists analyze world water temperature trends to predict long-term climate shifts, as oceans absorb over 90% of Earth’s excess heat, acting as a buffer against rapid atmospheric warming. Advanced satellite sensors, like those on NOAA and ESA missions, provide real-time global SST maps, helping researchers track ocean currents, heat distribution, and anomalies that affect weather systems. Warmer sea surface temperatures also intensify evaporation, leading to heavier rainfall in some regions while causing droughts in others, disrupting agriculture and water supplies.</div></a>
</div></div></div></div></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix"><div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a"><div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body">
<a href="/latest/earthquakes/" title="Worldwide Earthquakes"><div class="maintitle">Worldwide Earthquakes</div></a><a href="/latest/earthquakes/" class="image"><img loading="lazy" class="lazy" data-src="/images/seismic1.webp" width="100%" height="100%" alt="Worldwide Earthquakes"/></a><a href="/latest/earthquakes/" title="Worldwide Earthquakes"><br><div class="description">Earthquakes are powerful natural phenomena caused by the sudden release of energy along seismic faults, resulting in ground shaking that can devastate communities and reshape landscapes. Scientists monitor these movements using advanced seismic sensors and networks, detecting even minor tremors to better understand tectonic activity and improve early warning systems. The Richter scale and moment magnitude scale measure earthquake intensity, helping experts assess potential damage and coordinate emergency responses. Regions along major fault lines, such as the Pacific Ring of Fire, experience frequent seismic activity, making preparedness critical for at-risk populations. Modern technology, including AI-powered analysis of seismic waves, enhances prediction accuracy, though earthquakes remain inherently unpredictable.</div></a>
</div></div></div></div></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix"><div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a"><div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body">
<a href="/latest/air-quality/" title="Air Quality"><div class="maintitle">Air Quality</div></a><a href="/latest/air-quality/" class="image"><img loading="lazy" class="lazy" data-src="/images/air1.webp" width="100%" height="100%" alt="Air Quality"/></a><a href="/latest/air-quality/" title="Air Quality"><br><div class="description">Air quality is a critical environmental factor directly impacted by pollutants such as particulate matter (PM2.5/PM10), ozone, nitrogen dioxide, and sulfur dioxide, which pose serious health risks when concentrations exceed safe levels. Weather conditions play a significant role in dispersing or trapping these pollutants, with wind, rain, and temperature inversions either clearing the air or exacerbating smog formation in urban areas. Industrial emissions, vehicle exhaust, and wildfires release harmful substances into the atmosphere, reducing air quality and contributing to respiratory illnesses, cardiovascular diseases, and climate change. Governments and environmental agencies monitor pollutants using ground-based sensors and satellite data, providing real-time air quality indexes (AQI) to help the public minimize exposure on high-risk days.</div></a>
</div></div></div></div></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix"><div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a"><div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body">
<a href="https://whatweather.today/latest/earth-from-space/" title="Earth from space"><div class="maintitle">Live: Earth from Space</div></a><a href="https://whatweather.today/latest/earth-from-space/" title="Earth from space"><img loading="lazy" class="lazy" data-src="/images/space1.webp" width="100%" height="100%" alt="Earth from space"/></a><a href="https://whatweather.today/latest/earth-from-space/" title="Earth from space"><br><div class="description">Witness the breathtaking beauty of Earth from Space through live feeds and high-resolution imagery captured by the International Space Station (ISS), offering a real-time glimpse of our planet's dynamic landscapes, swirling weather systems, and glittering city lights at night. Services like ISS Live stream continuous video feeds directly from orbit, allowing viewers to observe Earth from Space live as astronauts experience it—from sunrises racing across continents to the vivid blues of oceans and vast stretches of deserts. These stunning visuals, made possible by advanced cameras mounted on the ISS, not only inspire awe but also support scientific research, tracking hurricanes, wildfires, and environmental changes with unparalleled clarity. Whether you're an educator, space enthusiast, or simply curious, Earth from Space broadcasts provide a unique perspective on global geography, climate patterns, and human activity visible from orbit. NASA and other space agencies enhance these streams with telemetry data, explaining phenomena like auroras, thunderstorms, and the thin blue line of our atmosphere.</div></a>
</div></div></div></div></div>
<!-- flightradar --><div class="region region-content"><section id="block-system-main" class="block block-system clearfix"><div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a"><div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body">
<a href="/maps/flight-radar/" title="Flight radar"><div class="maintitle">Flight radar</div></a><br><a href="/maps/flight-radar/" class="image" title="Flight radar"><img loading="lazy" class="lazy" data-src="/images/air-tracking1.webp" width="100%" height="100%" alt="Flight radar, Weather today"/></a><a href="/maps/flight-radar/" title="Flight radar"><br><div class="description">Tracking flights in real-time has become an essential tool for travelers and aviation enthusiasts alike, thanks to platforms like Flightradar24 and Google Flight Radar. These services, such as radar 24 flight and flight tracker live, provide up-to-the-minute updates on flight status, allowing users to monitor flights worldwide with ease. The flight radar map offers a comprehensive view of air traffic, while live radar features ensure that you can follow planes in real-time, whether you're using a flight radar app or an online flight radar platform. For those in the UK, flight radar UK tools like Skyscanner and FlightAware offer localized data, making it simple to track departures and arrivals at nearby airports. The integration of weather radar into these systems adds another layer of functionality, helping users understand how atmospheric conditions might impact their travel plans. With flight radar tracking, you can see not only the position of a plane but also its altitude, speed, and route, all displayed on an interactive flight radar map.</div></a>
</div></div></div></div></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix"><div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a"><div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body">
<a href="/maps/ship-radar/" title="Ship radar"><div class="maintitle">Ship radar</div></a><br><a href="/maps/ship-radar/" class="image"><img loading="lazy" class="lazy" data-src="/images/shipping-map1.webp" width="100%" height="100%" alt="Ship radar, Weather today"/></a><a href="/maps/ship-radar/" title="Ship radar"><br><div class="description">Radar technology has become an indispensable tool across various industries, from aviation to maritime navigation. What is radar if not a system that uses radio waves to detect objects and measure their distance, speed, and direction? In the maritime world, radar in ship systems, such as ship radar 24, play a crucial role in ensuring the safety and efficiency of vessels. Platforms like ship tracker and live ship radar allow users to monitor the movements of cruise ships, cargo vessels, and even smaller boats in real-time. For instance, a cruise ship radar system helps captains navigate safely through crowded waterways, while marine radar and boat radar systems are essential for avoiding collisions and tracking weather conditions at sea. The ship radar 24 live feature provides continuous updates, making it easier for operators to make informed decisions.</div></a>
</div></div></div></div></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix"><div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a"><div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body">
<a href="/maps/road-traffic/" title="Road traffic"><div class="maintitle">Road traffic</div></a><br><a href="/maps/road-traffic/" class="image"><img loading="lazy" class="lazy" data-src="/images/traffic1.webp" width="100%" height="100%" alt="Road traffic, Weather today"/></a><a href="/maps/road-traffic/" title="Road traffic"><br><div class="description">Navigating through a traffic road can often be challenging, especially during peak hours when a traffic jam brings vehicles to a standstill, causing delays and frustration for commuters. To avoid such situations, many rely on a detailed road map or a real-time traffic map, which provides updates on congestion, accidents, and alternative routes. These tools are invaluable for planning efficient journeys, whether you're driving through a bustling city or a quiet rural area. By using a traffic map, drivers can make informed decisions, saving time and reducing stress, while also contributing to smoother traffic flow and fewer bottlenecks on busy roads.</div></a>
</div></div></div></div></div><!-- flightradarend -->
<script>document.addEventListener("DOMContentLoaded",function(){var e,n=document.querySelectorAll("img.lazy");function t(){e&&clearTimeout(e),e=setTimeout(function(){var e=window.pageYOffset;n.forEach(function(n){n.offsetTop<window.innerHeight+e&&(n.src=n.dataset.src,n.classList.remove("lazy"))}),0==n.length&&(document.removeEventListener("scroll",t),window.removeEventListener("resize",t),window.removeEventListener("orientationChange",t))},20)}document.addEventListener("scroll",t),window.addEventListener("resize",t),window.addEventListener("orientationChange",t)});</script>
<div id="countries"></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix">
<div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a">
<div class="view-content"><div class="item-list"><div class="back"><div class="ads">
<ins class="adsbygoogle"
style="display:inline-block;width:100%;height:300px"
data-ad-client="ca-pub-4185741460540603"
data-ad-slot="2824828440"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></div></div></div></div></div></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix"><div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a"><div class="view-content"><div class="item-list"><div class="back"><div class="maintitle">Weather in Countries</div></div></div></div></div></div>
<style type="text/css">/*
CSS for the main interaction
*/
.tablet > input[type="radio"] {
position: absolute;
left: -200vw;}
.tablet .tab-panelek {
display: none;}
.tablet > input:first-child:checked ~ .tab-panelik > .tab-panelek:first-child,
.tablet > input:nth-child(3):checked ~ .tab-panelik > .tab-panelek:nth-child(2),
.tablet > input:nth-child(5):checked ~ .tab-panelik > .tab-panelek:nth-child(3),
.tablet > input:nth-child(7):checked ~ .tab-panelik > .tab-panelek:nth-child(4),
.tablet > input:nth-child(9):checked ~ .tab-panelik > .tab-panelek:nth-child(5),
.tablet > input:nth-child(11):checked ~ .tab-panelik > .tab-panelek:nth-child(6),
.tablet > input:nth-child(13):checked ~ .tab-panelik > .tab-panelek:nth-child(7) {
display: block;}
/*
Styling
*/
.tablet > label {
width: auto;
color:#fff;
font-size: calc(0.5rem + 0.6vw);
position: relative;
display: inline-block;
padding: 5px 5px 5px;
border: 1px solid transparent;
border-bottom: 0;
cursor: pointer;}
.tablet > label::after {
content: "";
position: absolute;
left: 15px;
bottom: 10px;
width: auto;
height: 4px;
background: #8d8d8d;}
.tablet > label:hover,
.tablet > input:focus + label {
color: rgb(179, 255, 1);}
.tablet > label:hover::after,
.tablet > input:focus + label::after,
.tablet > input:checked + label::after {
background: rgb(179, 255, 1);}
.tablet > input:checked + label {
border-color: #ccc;
border-bottom: 1px solid #fff;
margin-bottom: -1px;}
.tab-panelek {
padding: 30px 0;
border-top: 1px solid #ccc;}
.tablet {
max-width: 85em;}</style>
<div class="back"><div class="tablet">
<!-- Tab 1 -->
<input type="radio" name="tablet" id="tabasco1" aria-controls="world" checked>
<label for="tabasco1" class="tablink"><a href="#countries">All Countries</a></label>
<!-- Tab 2 -->
<input type="radio" name="tablet" id="tabasco2" aria-controls="europe">
<label for="tabasco2" class="tablink"><a href="#europe">Europe Countries</a></label>
<!-- Tab 3 -->
<input type="radio" name="tablet" id="tabasco3" aria-controls="asia">
<label for="tabasco3" class="tablink"><a href="#asia">Asia Countries</a></label>
<!-- Tab 4 -->
<input type="radio" name="tablet" id="tabasco4" aria-controls="africa">
<label for="tabasco4" class="tablink"><a href="#africa">Africa Countries</a></label>
<!-- Tab 5 -->
<input type="radio" name="tablet" id="tabasco5" aria-controls="namerica">
<label for="tabasco5" class="tablink"><a href="#na">North America Countries</a></label>
<!-- Tab 6 -->
<input type="radio" name="tablet" id="tabasco6" aria-controls="samerica">
<label for="tabasco6" class="tablink"><a href="#sa">South America Countries</a></label>
<!-- Tab 7 -->
<input type="radio" name="tablet" id="tabasco7" aria-controls="australia">
<label for="tabasco7" class="tablink"><a href="#oceania">Oceania Countries</a></label>
<div class="tab-panelik">
<section id="world" class="tab-panelek">
<div class="tab">
<div id="africa"></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix">
<div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a">
<div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body">
<br><div class="maintitle">Africa Countries</div><br>
<a href="https://whatweather.today/weather/algeria/" title="Weather, Algeria, 10-DAY Forecast, Weather today"><img alt="Flag of Algeria" src="https://flagcdn.com/48x36/dz.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Algeria </span></b></a> |
<a href="https://whatweather.today/weather/angola/" title="Weather, Angola, 10-DAY Forecast, Weather today"><img alt="Flag of Angola" src="https://flagcdn.com/48x36/ao.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Angola </span></b></a> |
<a href="https://whatweather.today/weather/ascension-island/" title="Weather, Ascension Island, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Ascension Island </span></b></a> |
<a href="https://whatweather.today/weather/benin/" title="Weather, Benin, 10-DAY Forecast, Weather today"><img alt="Flag of Benin" src="https://flagcdn.com/48x36/bj.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Benin </span></b></a> |
<a href="https://whatweather.today/weather/botswana/" title="Weather, Botswana, 10-DAY Forecast, Weather today"><img alt="Flag of Botswana" src="https://flagcdn.com/48x36/bw.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Botswana </span></b></a> |
<a href="https://whatweather.today/weather/burkina-faso/" title="Weather, Burkina Faso, 10-DAY Forecast, Weather today"><img alt="Flag of Burkina Faso" src="https://flagcdn.com/48x36/bf.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Burkina Faso </span></b></a> |
<a href="https://whatweather.today/weather/burundi/" title="Weather, Burundi, 10-DAY Forecast, Weather today"><img alt="Flag of Burundi" src="https://flagcdn.com/48x36/bi.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Burundi </span></b></a> |
<a href="https://whatweather.today/weather/cameroon/" title="Weather, Cameroon, 10-DAY Forecast, Weather today"><img alt="Flag of Cameroon" src="https://flagcdn.com/48x36/cm.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Cameroon </span></b></a>
<a href="https://whatweather.today/weather/cape-verde/" title="Weather, Cape Verde, 10-DAY Forecast, Weather today"><img alt="Flag of Cape Verde" src="https://flagcdn.com/48x36/cv.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Cape Verde </span></b></a> |
<a href="https://whatweather.today/weather/central-african-republic/" title="Weather, Central African Republic, 10-DAY Forecast, Weather today"><img alt="Flag of Central African Republic" src="https://flagcdn.com/48x36/cf.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Central African Republic </span></b></a> |
<a href="https://whatweather.today/weather/chad/" title="Weather, Chad, 10-DAY Forecast, Weather today"><img alt="Flag of Chad" src="https://flagcdn.com/48x36/td.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Chad </span></b></a> |
<a href="https://whatweather.today/weather/comoros-and-mayotte/" title="Weather, Comoros and Mayotte, 10-DAY Forecast, Weather today"><img alt="Flag of Comoros" src="https://flagcdn.com/48x36/km.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Comoros and Mayotte </span></b></a> |
<a href="https://whatweather.today/weather/congo/" title="Weather, Congo, 10-DAY Forecast, Weather today"><img alt="Flag of Republic of the Congo" src="https://flagcdn.com/48x36/cg.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Congo </span></b></a> |
<a href="https://whatweather.today/weather/congo-dem-rep/" title="Weather, Congo Dem Rep, 10-DAY Forecast, Weather today"><img alt="Flag of Democratic Republic of the Congo" src="https://flagcdn.com/48x36/cd.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Congo Dem Rep </span></b></a>
<a href="https://whatweather.today/weather/cote-ivoire/" title="Weather, Cote d'Ivoire, 10-DAY Forecast, Weather today"><img alt="Flag of Cote d'Ivoire" src="https://flagcdn.com/48x36/ci.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Cote d'Ivoire </span></b></a> |
<a href="https://whatweather.today/weather/djibouti/" title="Weather, Djibouti, 10-DAY Forecast, Weather today"><img alt="Flag of Djibouti" src="https://flagcdn.com/48x36/dj.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Djibouti </span></b></a> |
<a href="https://whatweather.today/weather/egypt/" title="Weather, Egypt, 10-DAY Forecast, Weather today"><img alt="Flag of Egypt" src="https://flagcdn.com/48x36/eg.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Egypt </span></b></a> |
<a href="https://whatweather.today/weather/equatorial-guinea/" title="Weather, Equatorial Guinea, 10-DAY Forecast, Weather today"><img alt="Flag of Equatorial Guinea" src="https://flagcdn.com/48x36/gq.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Equatorial Guinea </span></b></a> |
<a href="https://whatweather.today/weather/eritrea/" title="Weather, Eritrea, 10-DAY Forecast, Weather today"><img alt="Flag of Eritrea" src="https://flagcdn.com/48x36/er.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Eritrea </span></b></a> |
<a href="https://whatweather.today/weather/ethiopia/" title="Weather, Ethiopia, 10-DAY Forecast, Weather today"><img alt="Flag of Ethiopia" src="https://flagcdn.com/48x36/et.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Ethiopia </span></b></a> |
<a href="https://whatweather.today/weather/gabon/" title="Weather, Gabon, 10-DAY Forecast, Weather today"><img alt="Flag of Gabon" src="https://flagcdn.com/48x36/ga.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Gabon </span></b></a> |
<a href="https://whatweather.today/weather/gambia/" title="Weather, Gambia, 10-DAY Forecast, Weather today"><img alt="Flag of Gambia" src="https://flagcdn.com/48x36/gm.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Gambia </span></b></a>
<a href="https://whatweather.today/weather/ghana/" title="Weather, Ghana, 10-DAY Forecast, Weather today"><img alt="Flag of Ghana" src="https://flagcdn.com/48x36/gh.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Ghana </span></b></a> |
<a href="https://whatweather.today/weather/guinea/" title="Weather, Guinea, 10-DAY Forecast, Weather today"><img alt="Flag of Guinea" src="https://flagcdn.com/48x36/gn.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Guinea </span></b></a> |
<a href="https://whatweather.today/weather/guinea-bissau/" title="Weather, Guinea Bissau, 10-DAY Forecast, Weather today"><img alt="Flag of Guinea-Bissau" src="https://flagcdn.com/48x36/gw.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Guinea Bissau </span></b></a> |
<a href="https://whatweather.today/weather/kenya/" title="Weather, Kenya, 10-DAY Forecast, Weather today"><img alt="Flag of Kenya" src="https://flagcdn.com/48x36/ke.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Kenya </span></b></a> |
<a href="https://whatweather.today/weather/lesotho/" title="Weather, Lesotho, 10-DAY Forecast, Weather today"><img alt="Flag of Lesotho" src="https://flagcdn.com/48x36/ls.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Lesotho </span></b></a> |
<a href="https://whatweather.today/weather/liberia/" title="Weather, Liberia, 10-DAY Forecast, Weather today"><img alt="Flag of Liberia" src="https://flagcdn.com/48x36/lr.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Liberia </span></b></a> |
<a href="https://whatweather.today/weather/libya/" title="Weather, Libya, 10-DAY Forecast, Weather today"><img alt="Flag of Libya" src="https://flagcdn.com/48x36/ly.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Libya </span></b></a> |
<a href="https://whatweather.today/weather/madagascar/" title="Weather, Madagascar, 10-DAY Forecast, Weather today"><img alt="Flag of Madagascar" src="https://flagcdn.com/48x36/mg.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Madagascar </span></b></a> |
<a href="https://whatweather.today/weather/malawi/" title="Weather, Malawi, 10-DAY Forecast, Weather today"><img alt="Flag of Malawi" src="https://flagcdn.com/48x36/mw.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Malawi </span></b></a> |
<a href="https://whatweather.today/weather/mali/" title="Weather, Mali, 10-DAY Forecast, Weather today"><img alt="Flag of Mali" src="https://flagcdn.com/48x36/ml.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Mali </span></b></a> |
<a href="https://whatweather.today/weather/mauritania/" title="Weather, Mauritania, 10-DAY Forecast, Weather today"><img alt="Flag of Mauritania" src="https://flagcdn.com/48x36/mr.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Mauritania </span></b></a> |
<a href="https://whatweather.today/weather/mauritius/" title="Weather, Mauritius, 10-DAY Forecast, Weather today"><img alt="Flag of Mauritius" src="https://flagcdn.com/48x36/mu.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Mauritius </span></b></a> |
<a href="https://whatweather.today/weather/morocco/" title="Weather, Morocco, 10-DAY Forecast, Weather today"><img alt="Flag of Morocco" src="https://flagcdn.com/48x36/ma.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Morocco </span></b></a> |
<a href="https://whatweather.today/weather/mozambique/" title="Weather, Mozambique, 10-DAY Forecast, Weather today"><img alt="Flag of Mozambique" src="https://flagcdn.com/48x36/mz.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Mozambique </span></b></a> |
<a href="https://whatweather.today/weather/namibia/" title="Weather, Namibia, 10-DAY Forecast, Weather today"><img alt="Flag of Namibia" src="https://flagcdn.com/48x36/na.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Namibia </span></b></a> |
<a href="https://whatweather.today/weather/niger/" title="Weather, Niger, 10-DAY Forecast, Weather today"><img alt="Flag of Niger" src="https://flagcdn.com/48x36/ne.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Niger </span></b></a> |
<a href="https://whatweather.today/weather/nigeria/" title="Weather, Nigeria, 10-DAY Forecast, Weather today"><img alt="Flag of Nigeria" src="https://flagcdn.com/48x36/ng.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Nigeria </span></b></a> |
<a href="https://whatweather.today/weather/reunion/" title="Weather, Reunion, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Reunion </span></b></a> |
<a href="https://whatweather.today/weather/rwanda/" title="Weather, Rwanda, 10-DAY Forecast, Weather today"><img alt="Flag of Rwanda" src="https://flagcdn.com/48x36/rw.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Rwanda </span></b></a> |
<a href="https://whatweather.today/weather/saint-helena/" title="Weather, Saint Helena, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Saint Helena </span></b></a> |
<a href="https://whatweather.today/weather/sao-tome-and-principe/" title="Weather, Sao Tome and Principe, 10-DAY Forecast, Weather today"><img alt="Flag of Sao Tome and Principe" src="https://flagcdn.com/48x36/st.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Sao Tome and Principe </span></b></a> |
<a href="https://whatweather.today/weather/senegal/" title="Weather, Senegal, 10-DAY Forecast, Weather today"><img alt="Flag of Senegal" src="https://flagcdn.com/48x36/sn.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Senegal </span></b></a> |
<a href="https://whatweather.today/weather/seychelles/" title="Weather, Seychelles, 10-DAY Forecast, Weather today"><img alt="Flag of Seychelles" src="https://flagcdn.com/48x36/sc.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Seychelles </span></b></a> |
<a href="https://whatweather.today/weather/sierra-leone/" title="Weather, Sierra Leone, 10-DAY Forecast, Weather today"><img alt="Flag of Sierra Leone" src="https://flagcdn.com/48x36/sl.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Sierra Leone </span></b></a> |
<a href="https://whatweather.today/weather/somalia/" title="Weather, Somalia, 10-DAY Forecast, Weather today"><img alt="Flag of Somalia" src="https://flagcdn.com/48x36/so.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Somalia </span></b></a> |
<a href="https://whatweather.today/weather/south-africa/" title="Weather, South Africa, 10-DAY Forecast, Weather today"><img alt="Flag of South Africa" src="https://flagcdn.com/48x36/za.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in South Africa </span></b></a> |
<a href="https://whatweather.today/weather/south-sudan/" title="Weather, South Sudan, 10-DAY Forecast, Weather today"><img alt="Flag of South Sudan" src="https://flagcdn.com/48x36/ss.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in South Sudan </span></b></a> |
<a href="https://whatweather.today/weather/sudan/" title="Weather, Sudan, 10-DAY Forecast, Weather today"><img alt="Flag of Sudan" src="https://flagcdn.com/48x36/sd.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Sudan </span></b></a> |
<a href="https://whatweather.today/weather/swaziland/" title="Weather, Swaziland, 10-DAY Forecast, Weather today"><img alt="Flag of Swaziland" src="https://flagcdn.com/48x36/sz.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Swaziland </span></b></a> |
<a href="https://whatweather.today/weather/tanzania/" title="Weather, Tanzania, 10-DAY Forecast, Weather today"><img alt="Flag of Tanzania" src="https://flagcdn.com/48x36/tz.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Tanzania </span></b></a> |
<a href="https://whatweather.today/weather/togo/" title="Weather, Togo, 10-DAY Forecast, Weather today"><img alt="Flag of Togo" src="https://flagcdn.com/48x36/tg.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Togo </span></b></a> |
<a href="https://whatweather.today/weather/tonga/" title="Weather, Tonga, 10-DAY Forecast, Weather today"><img alt="Flag of Tonga" src="https://flagcdn.com/48x36/to.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Tonga </span></b></a> |
<a href="https://whatweather.today/weather/tunisia/" title="Weather, Tunisia, 10-DAY Forecast, Weather today"><img alt="Flag of Tunisia" src="https://flagcdn.com/48x36/tn.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Tunisia </span></b></a> |
<a href="https://whatweather.today/weather/uganda/" title="Weather, Uganda, 10-DAY Forecast, Weather today"><img alt="Flag of Uganda" src="https://flagcdn.com/48x36/ug.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Uganda </span></b></a> |
<a href="https://whatweather.today/weather/zambia/" title="Weather, Zambia, 10-DAY Forecast, Weather today"><img alt="Flag of Zambia" src="https://flagcdn.com/48x36/zm.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Zambia </span></b></a> |
<a href="https://whatweather.today/weather/zimbabwe/" title="Weather, Zimbabwe, 10-DAY Forecast, Weather today"><img alt="Flag of Zimbabwe" src="https://flagcdn.com/48x36/zw.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Zimbabwe </span></b></a> |
</div></div></div></div></div>
<div id="asia"></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix">
<div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a">
<div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body">
<br><div class="maintitle">Asia Countries</div><br>
<a href="https://whatweather.today/weather/afghanistan/" title="Weather, Afghanistan, 10-DAY Forecast, Weather today"><img alt="Flag of Afghanistan" src="https://flagcdn.com/48x36/af.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Afghanistan </span></b></a> |
<a href="https://whatweather.today/weather/armenia/" title="Weather, Armenia, 10-DAY Forecast, Weather today"><img alt="Flag of Armenia" src="https://flagcdn.com/48x36/am.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Armenia </span></b></a> |
<a href="https://whatweather.today/weather/azerbaijan/" title="Weather, Azerbaijan, 10-DAY Forecast, Weather today"><img alt="Flag of Azerbaijan" src="https://flagcdn.com/48x36/az.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Azerbaijan </span></b></a> |
<a href="https://whatweather.today/weather/bahrain/" title="Weather, Bahrain, 10-DAY Forecast, Weather today"><img alt="Flag of Bahrain" src="https://flagcdn.com/48x36/bh.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Bahrain </span></b></a> |
<a href="https://whatweather.today/weather/bangladesh/" title="Weather, Bangladesh, 10-DAY Forecast, Weather today"><img alt="Flag of Bangladesh" src="https://flagcdn.com/48x36/bd.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Bangladesh </span></b></a> |
<a href="https://whatweather.today/weather/bhutan/" title="Weather, Bhutan, 10-DAY Forecast, Weather today"><img alt="Flag of Bhutan" src="https://flagcdn.com/48x36/bt.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Bhutan </span></b></a> |
<a href="https://whatweather.today/weather/brunei/" title="Weather, Brunei, 10-DAY Forecast, Weather today"><img alt="Flag of Brunei" src="https://flagcdn.com/48x36/bn.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Brunei </span></b></a> |
<a href="https://whatweather.today/weather/cambodia/" title="Weather, Cambodia, 10-DAY Forecast, Weather today"><img alt="Flag of Cambodia" src="https://flagcdn.com/48x36/kh.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Cambodia </span></b></a>
<a href="https://whatweather.today/weather/china/" title="Weather, China, 10-DAY Forecast, Weather today"><img alt="Flag of People's Republic of China" src="https://flagcdn.com/48x36/cn.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in China </span></b></a> |
<a href="https://whatweather.today/weather/diego-garcia/" title="Weather, Diego Garcia, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Diego Garcia </span></b></a> |
<a href="https://whatweather.today/weather/georgia/" title="Weather, Georgia, 10-DAY Forecast, Weather today"><img alt="Flag of Georgia" src="https://flagcdn.com/48x36/ge.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Georgia </span></b></a> |
<a href="https://whatweather.today/weather/hong-kong/" title="Weather, Hong Kong, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Hong Kong </span></b></a> |
<a href="https://whatweather.today/weather/india/" title="Weather, India, 10-DAY Forecast, Weather today"><img alt="Flag of India" src="https://flagcdn.com/48x36/in.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in India </span></b></a> |
<a href="https://whatweather.today/weather/indonesia/" title="Weather, Indonesia, 10-DAY Forecast, Weather today"><img alt="Flag of Indonesia" src="https://flagcdn.com/48x36/id.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Indonesia </span></b></a> |
<a href="https://whatweather.today/weather/iran/" title="Weather, Iran, 10-DAY Forecast, Weather today"><img alt="Flag of Iran" src="https://flagcdn.com/48x36/ir.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Iran </span></b></a> |
<a href="https://whatweather.today/weather/iraq/" title="Weather, Iraq, 10-DAY Forecast, Weather today"><img alt="Flag of Iraq" src="https://flagcdn.com/48x36/iq.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Iraq </span></b></a> |
<a href="https://whatweather.today/weather/israel/" title="Weather, Israel, 10-DAY Forecast, Weather today"><img alt="Flag of Israel" src="https://flagcdn.com/48x36/il.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Israel </span></b></a> |
<a href="https://whatweather.today/weather/japan/" title="Weather, Japan, 10-DAY Forecast, Weather today"><img alt="Flag of Japan" src="https://flagcdn.com/48x36/jp.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Japan </span></b></a> |
<a href="https://whatweather.today/weather/jordan/" title="Weather, Jordan, 10-DAY Forecast, Weather today"><img alt="Flag of Jordan" src="https://flagcdn.com/48x36/jo.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Jordan </span></b></a> |
<a href="https://whatweather.today/weather/kazakhstan/" title="Weather, Kazakhstan, 10-DAY Forecast, Weather today"><img alt="Flag of Kazakhstan" src="https://flagcdn.com/48x36/kz.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Kazakhstan </span></b></a> |
<a href="https://whatweather.today/weather/kuwait/" title="Weather, Kuwait, 10-DAY Forecast, Weather today"><img alt="Flag of Kuwait" src="https://flagcdn.com/48x36/kw.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Kuwait </span></b></a> |
<a href="https://whatweather.today/weather/kyrgyzstan/" title="Weather, Kyrgyzstan, 10-DAY Forecast, Weather today"><img alt="Flag of Kyrgyzstan" src="https://flagcdn.com/48x36/kg.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Kyrgyzstan </span></b></a> |
<a href="https://whatweather.today/weather/laos/" title="Weather, Laos, 10-DAY Forecast, Weather today"><img alt="Flag of Laos" src="https://flagcdn.com/48x36/la.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Laos </span></b></a> |
<a href="https://whatweather.today/weather/lebanon/" title="Weather, Lebanon, 10-DAY Forecast, Weather today"><img alt="Flag of Lebanon" src="https://flagcdn.com/48x36/lb.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Lebanon </span></b></a> |
<a href="https://whatweather.today/weather/macao/" title="Weather, Macao, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Macao </span></b></a> |
<a href="https://whatweather.today/weather/malaysia/" title="Weather, Malaysia, 10-DAY Forecast, Weather today"><img alt="Flag of Malaysia" src="https://flagcdn.com/48x36/my.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Malaysia </span></b></a>
<a href="https://whatweather.today/weather/maldives/" title="Weather, Maldives, 10-DAY Forecast, Weather today"><img alt="Flag of Maldives" src="https://flagcdn.com/48x36/mv.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Maldives </span></b></a> |
<a href="https://whatweather.today/weather/mongolia/" title="Weather, Mongolia, 10-DAY Forecast, Weather today"><img alt="Flag of Mongolia" src="https://flagcdn.com/48x36/mn.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Mongolia </span></b></a> |
<a href="https://whatweather.today/weather/myanmar/" title="Weather, Myanmar, 10-DAY Forecast, Weather today"><img alt="Flag of Myanmar" src="https://flagcdn.com/48x36/mm.webp" width="18" height="12" /><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Myanmar </span></b></a> |
<a href="https://whatweather.today/weather/nepal/" title="Weather, Nepal, 10-DAY Forecast, Weather today"><img alt="Flag of Nepal" src="https://flagcdn.com/48x36/np.webp" width="18" height="12" /><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Nepal </span></b></a> |
<a href="https://whatweather.today/weather/korea-north/" title="Weather, North Korea, 10-DAY Forecast, Weather today"><img alt="Flag of North Korea" src="https://flagcdn.com/48x36/kp.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in North Korea </span></b></a> |
<a href="https://whatweather.today/weather/oman/" title="Weather, Oman, 10-DAY Forecast, Weather today"><img alt="Flag of Oman" src="https://flagcdn.com/48x36/om.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Oman </span></b></a> |
<a href="https://whatweather.today/weather/pakistan/" title="Weather, Pakistan, 10-DAY Forecast, Weather today"><img alt="Flag of Pakistan" src="https://flagcdn.com/48x36/pk.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Pakistan </span></b></a> |
<a href="https://whatweather.today/weather/palestine/" title="Weather, Palestinian Territories, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Palestinian Territories </span></b></a> |
<a href="https://whatweather.today/weather/philippines/" title="Weather, Philippines, 10-DAY Forecast, Weather today"><img alt="Flag of Philippines" src="https://flagcdn.com/48x36/ph.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Philippines </span></b></a> |
<a href="https://whatweather.today/weather/qatar/" title="Weather, Qatar, 10-DAY Forecast, Weather today"><img alt="Flag of Qatar" src="https://flagcdn.com/48x36/qa.webp" width="18" height="12" /><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Qatar </span></b></a> |
<a href="https://whatweather.today/weather/saudi-arabia/" title="Weather, Saudi Arabia, 10-DAY Forecast, Weather today"><img alt="Flag of Saudi Arabia" src="https://flagcdn.com/48x36/sa.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Saudi Arabia </span></b></a> |
<a href="https://whatweather.today/weather/singapore/" title="Weather, Singapore, 10-DAY Forecast, Weather today"><img alt="Flag of Singapore" src="https://flagcdn.com/48x36/sg.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Singapore </span></b></a> |
<a href="https://whatweather.today/weather/korea-south/" title="Weather, South Korea, 10-DAY Forecast, Weather today"><img alt="Flag of South Korea" src="https://flagcdn.com/48x36/kr.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in South Korea </span></b></a> |
<a href="https://whatweather.today/weather/sri-lanka/" title="Weather, Sri Lanka, 10-DAY Forecast, Weather today"><img alt="Flag of Sri Lanka" src="https://flagcdn.com/48x36/lk.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Sri Lanka </span></b></a> |
<a href="https://whatweather.today/weather/syria/" title="Weather, Syria, 10-DAY Forecast, Weather today"><img alt="Flag of Syria" src="https://flagcdn.com/48x36/sy.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Syria </span></b></a> |
<a href="https://whatweather.today/weather/taiwan/" title="Weather, Taiwan, 10-DAY Forecast, Weather today"><img alt="Flag of Republic of China" src="https://flagcdn.com/48x36/tw.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Taiwan </span></b></a> |
<a href="https://whatweather.today/weather/tajikistan/" title="Weather, Tajikistan, 10-DAY Forecast, Weather today"><img alt="Flag of Tajikistan" src="https://flagcdn.com/48x36/tj.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Tajikistan </span></b></a> |
<a href="https://whatweather.today/weather/thailand/" title="Weather, Thailand, 10-DAY Forecast, Weather today"><img alt="Flag of Thailand" src="https://flagcdn.com/48x36/th.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Thailand </span></b></a> |
<a href="https://whatweather.today/weather/timor-leste/" title="Weather, Timor-Leste, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Timor-Leste </span></b></a> |
<a href="https://whatweather.today/weather/turkey/" title="Weather, Turkey, 10-DAY Forecast, Weather today"><img alt="Flag of Turkey" src="https://flagcdn.com/48x36/tr.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Turkey </span></b></a> |
<a href="https://whatweather.today/weather/turkmenistan/" title="Weather, Turkmenistan, 10-DAY Forecast, Weather today"><img alt="Flag of Turkmenistan" src="https://flagcdn.com/48x36/tm.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Turkmenistan </span></b></a> |
<a href="https://whatweather.today/weather/united-arab-emirates/" title="Weather, United Arab Emirates, 10-DAY Forecast, Weather today"><img alt="Flag of United Arab Emirates" src="https://flagcdn.com/48x36/ae.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in United Arab Emirates </span></b></a> |
<a href="https://whatweather.today/weather/uzbekistan/" title="Weather, Uzbekistan, 10-DAY Forecast, Weather today"><img alt="Flag of Uzbekistan" src="https://flagcdn.com/48x36/uz.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Uzbekistan </span></b></a> |
<a href="https://whatweather.today/weather/vietnam/" title="Weather, Vietnam, 10-DAY Forecast, Weather today"><img alt="Flag of Vietnam" src="https://flagcdn.com/48x36/vn.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Vietnam </span></b></a> |
<a href="https://whatweather.today/weather/yemen/" title="Weather, Yemen, 10-DAY Forecast, Weather today"><img alt="Flag of Yemen" src="https://flagcdn.com/48x36/ye.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Yemen </span></b></a> |
</div></div></div></div></div>
<div id="oceania"></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix">
<div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a">
<div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body">
<br><div class="maintitle">Australia and Oceania Countries</div><br>
<a href="https://whatweather.today/weather/american-samoa/" title="Weather, American Samoa, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in American Samoa </span></b></a> |
<a href="https://whatweather.today/weather/australia/" title="Weather, Australia, 10-DAY Forecast, Weather today"><img alt="Flag of Australia" src="https://flagcdn.com/48x36/au.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Australia </span></b></a> |
<a href="https://whatweather.today/weather/cook-islands/" title="Weather, Cook Islands, 10-DAY Forecast, Weather today"><img alt="Flag of the Cook Islands" src="https://flagcdn.com/48x36/ck.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Cook Islands </span></b></a> |
<a href="https://whatweather.today/weather/fiji/" title="Weather, Fiji, 10-DAY Forecast, Weather today"><img alt="Flag of Fiji" src="https://flagcdn.com/48x36/fj.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Fiji </span></b></a> |
<a href="https://whatweather.today/weather/french-polynesia/" title="Weather, French Polynesia, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in French Polynesia </span></b></a> |
<a href="https://whatweather.today/weather/guam/" title="Weather, Guam, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Guam </span></b></a> |
<a href="https://whatweather.today/weather/kiribati/" title="Weather, Kiribati, 10-DAY Forecast, Weather today"><img alt="Flag of Kiribati" src="https://flagcdn.com/48x36/ki.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Kiribati </span></b></a> |
<a href="https://whatweather.today/weather/marshall-islands/" title="Weather, Marshall Islands, 10-DAY Forecast, Weather today"><img alt="Flag of Marshall Islands" src="https://flagcdn.com/48x36/mh.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Marshall Islands </span></b></a> |
<a href="https://whatweather.today/weather/micronesia/" title="Weather, Micronesia, 10-DAY Forecast, Weather today"><img alt="Flag of Micronesia" src="https://flagcdn.com/48x36/fm.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Micronesia </span></b></a> |
<a href="https://whatweather.today/weather/nauru/" title="Weather, Nauru, 10-DAY Forecast, Weather today"><img alt="Flag of Nauru" src="https://flagcdn.com/48x36/nr.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Nauru </span></b></a> |
<a href="https://whatweather.today/weather/new-caledonia/" title="Weather, New Caledonia, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in New Caledonia </span></b></a> |
<a href="https://whatweather.today/weather/new-zealand/" title="Weather, New Zealand, 10-DAY Forecast, Weather today"><img alt="Flag of New Zealand" src="https://flagcdn.com/48x36/nz.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in New Zealand </span></b></a> |
<a href="https://whatweather.today/weather/niue/" title="Weather, Niue, 10-DAY Forecast, Weather today"><img alt="Flag of Niue" src="https://flagcdn.com/48x36/nu.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Niue </span></b></a> |
<a href="https://whatweather.today/weather/norfolk-island/" title="Weather, Norfolk Island, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Norfolk Island </span></b></a> |
<a href="https://whatweather.today/weather/northern-mariana-islands/" title="Weather, Northern Mariana Islands, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Northern Mariana Islands </span></b></a> |
<a href="https://whatweather.today/weather/palau/" title="Weather, Palau, 10-DAY Forecast, Weather today"><img alt="Flag of Palau" src="https://flagcdn.com/48x36/pw.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Palau </span></b></a> |
<a href="https://whatweather.today/weather/papua-new-guinea/" title="Weather, Papua New Guinea, 10-DAY Forecast, Weather today"><img alt="Flag of Papua New Guinea" src="https://flagcdn.com/48x36/pg.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Papua New Guinea </span></b></a> |
<a href="https://whatweather.today/weather/samoa/" title="Weather, Samoa, 10-DAY Forecast, Weather today"><img alt="Flag of Samoa" src="https://flagcdn.com/48x36/ws.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Samoa </span></b></a> |
<a href="https://whatweather.today/weather/solomon-islands/" title="Weather, Solomon Islands, 10-DAY Forecast, Weather today"><img alt="Flag of Solomon Islands" src="https://flagcdn.com/48x36/sb.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Solomon Islands </span></b></a> |
<a href="https://whatweather.today/weather/tokelau/" title="Weather, Tokelau, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Tokelau </span></b></a> |
<a href="https://whatweather.today/weather/tuvalu/" title="Weather, Tuvalu, 10-DAY Forecast, Weather today"><img alt="Flag of Tuvalu" src="https://flagcdn.com/48x36/tv.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Tuvalu </span></b></a> |
<a href="https://whatweather.today/weather/vanuatu/" title="Weather, Vanuatu, 10-DAY Forecast, Weather today"><img alt="Flag of Vanuatu" src="https://flagcdn.com/48x36/vu.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Vanuatu </span></b></a> |
<a href="https://whatweather.today/weather/wallis-and-futuna/" title="Weather, Wallis and Futuna, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Wallis and Futuna </span></b></a> |
</div></div></div></div></div>
<div id="europe"></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix">
<div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a">
<div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body">
<br><div class="maintitle">Europe Countries</div><br>
<a href="https://whatweather.today/weather/albania/" title="Weather, Albania, 10-DAY Forecast, Weather today"><img alt="Flag of Albania" src="https://flagcdn.com/48x36/al.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Albania </span></b></a> |
<a href="https://whatweather.today/weather/andorra/" title="Weather, Andorra, 10-DAY Forecast, Weather today"><img alt="Flag of Andorra" src="https://flagcdn.com/48x36/ad.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Andorra </span></b></a> |
<a href="https://whatweather.today/weather/austria/" title="Weather, Austria, 10-DAY Forecast, Weather today"><img alt="Flag of Austria" src="https://flagcdn.com/48x36/at.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Austria </span></b></a> |
<a href="https://whatweather.today/weather/belarus/" title="Weather, Belarus, 10-DAY Forecast, Weather today"><img alt="Flag of Belarus" src="https://flagcdn.com/48x36/by.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Belarus </span></b></a> |
<a href="https://whatweather.today/weather/belgium/" title="Weather, Belgium, 10-DAY Forecast, Weather today"><img alt="Flag of Belgium" src="https://flagcdn.com/48x36/be.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Belgium </span></b></a> |
<a href="https://whatweather.today/weather/bosnia-and-herzegovina/" title="Weather, Bosnia and Herzegovina, 10-DAY Forecast, Weather today"><img alt="Flag of Bosnia and Herzegovina" src="https://flagcdn.com/48x36/ba.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Bosnia and Herzegovina </span></b></a> |
<a href="https://whatweather.today/weather/bulgaria/" title="Weather, Bulgaria, 10-DAY Forecast, Weather today"><img alt="Flag of Bulgaria" src="https://flagcdn.com/48x36/bg.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Bulgaria </span></b></a> |
<a href="https://whatweather.today/weather/croatia/" title="Weather, Croatia, 10-DAY Forecast, Weather today"><img alt="Flag of Croatia" src="https://flagcdn.com/48x36/hr.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Croatia </span></b></a> |
<a href="https://whatweather.today/weather/cyprus/" title="Weather, Cyprus, 10-DAY Forecast, Weather today"><img alt="Flag of Cyprus" src="https://flagcdn.com/48x36/cy.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Cyprus </span></b></a> |
<a href="https://whatweather.today/weather/czech-republic/" title="Weather, Czech Republic, 10-DAY Forecast, Weather today"><img alt="Flag of Czech Republic" src="https://flagcdn.com/48x36/cz.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Czech Republic </span></b></a> |
<a href="https://whatweather.today/weather/denmark/" title="Weather, Denmark, 10-DAY Forecast, Weather today"><img alt="Flag of Denmark" src="https://flagcdn.com/48x36/dk.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Denmark </span></b></a> |
<a href="https://whatweather.today/weather/estonia/" title="Weather, Estonia, 10-DAY Forecast, Weather today"><img alt="Flag of Estonia" src="https://flagcdn.com/48x36/ee.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Estonia </span></b></a> |
<a href="https://whatweather.today/weather/faroe-islands/" title="Weather, Faroe Islands, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Faroe Islands </span></b></a> |
<a href="https://whatweather.today/weather/finland/" title="Weather, Finland, 10-DAY Forecast, Weather today"><img alt="Flag of Finland" src="https://flagcdn.com/48x36/fi.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Finland </span></b></a> |
<a href="https://whatweather.today/weather/france/" title="Weather, France, 10-DAY Forecast, Weather today"><img alt="Flag of France" src="https://flagcdn.com/48x36/fr.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in France </span></b></a> |
<a href="https://whatweather.today/weather/germany/" title="Weather, Germany, 10-DAY Forecast, Weather today"><img alt="Flag of Germany" src="https://flagcdn.com/48x36/de.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Germany </span></b></a> |
<a href="https://whatweather.today/weather/gibraltar/" title="Weather, Gibraltar, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Gibraltar </span></b></a> |
<a href="https://whatweather.today/weather/greece/" title="Weather, Greece, 10-DAY Forecast, Weather today"><img alt="Flag of Greece" src="https://flagcdn.com/48x36/gr.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Greece </span></b></a> |
<a href="https://whatweather.today/weather/hungary/" title="Weather, Hungary, 10-DAY Forecast, Weather today"><img alt="Flag of Hungary" src="https://flagcdn.com/48x36/hu.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Hungary </span></b></a> |
<a href="https://whatweather.today/weather/iceland/" title="Weather, Iceland, 10-DAY Forecast, Weather today"><img alt="Flag of Iceland" src="https://flagcdn.com/48x36/is.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Iceland </span></b></a> |
<a href="https://whatweather.today/weather/ireland/" title="Weather, Ireland, 10-DAY Forecast, Weather today"><img alt="Flag of Ireland" src="https://flagcdn.com/48x36/ie.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Ireland </span></b></a> |
<a href="https://whatweather.today/weather/italy/" title="Weather, Italy, 10-DAY Forecast, Weather today"><img alt="Flag of Italy" src="https://flagcdn.com/48x36/it.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Italy </span></b></a> |
<a href="https://whatweather.today/weather/latvia/" title="Weather, Latvia, 10-DAY Forecast, Weather today"><img alt="Flag of Latvia" src="https://flagcdn.com/48x36/lv.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Latvia </span></b></a> |
<a href="https://whatweather.today/weather/liechtenstein/" title="Weather, Liechtenstein, 10-DAY Forecast, Weather today"><img alt="Flag of Liechtenstein" src="https://flagcdn.com/48x36/li.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Liechtenstein </span></b></a>
<a href="https://whatweather.today/weather/lithuania/" title="Weather, Lithuania, 10-DAY Forecast, Weather today"><img alt="Flag of Lithuania" src="https://flagcdn.com/48x36/lt.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Lithuania </span></b></a> |
<a href="https://whatweather.today/weather/luxembourg/" title="Weather, Luxembourg, 10-DAY Forecast, Weather today"><img alt="Flag of Luxembourg" src="https://flagcdn.com/48x36/lu.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Luxembourg </span></b></a> |
<a href="https://whatweather.today/weather/macedonia/" title="Weather, Macedonia, 10-DAY Forecast, Weather today"><img alt="Flag of Macedonia" src="https://flagcdn.com/48x36/mk.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Macedonia </span></b></a> |
<a href="https://whatweather.today/weather/malta/" title="Weather, Malta, 10-DAY Forecast, Weather today"><img alt="Flag of Malta" src="https://flagcdn.com/48x36/mt.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Malta </span></b></a> |
<a href="https://whatweather.today/weather/moldova/" title="Weather, Moldova, 10-DAY Forecast, Weather today"><img alt="Flag of Moldova" src="https://flagcdn.com/48x36/md.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Moldova </span></b></a> |
<a href="https://whatweather.today/weather/monaco/" title="Weather, Monaco, 10-DAY Forecast, Weather today"><img alt="Flag of Monaco" src="https://flagcdn.com/48x36/mc.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Monaco </span></b></a> |
<a href="https://whatweather.today/weather/montenegro/" title="Weather, Montenegro, 10-DAY Forecast, Weather today"><img alt="Flag of Montenegro" src="https://flagcdn.com/48x36/me.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Montenegro </span></b></a> |
<a href="https://whatweather.today/weather/netherlands/" title="Weather, Netherlands, 10-DAY Forecast, Weather today"><img alt="Flag of Netherlands" src="https://flagcdn.com/48x36/nl.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Netherlands </span></b></a> |
<a href="https://whatweather.today/weather/norway/" title="Weather, Norway, 10-DAY Forecast, Weather today"><img alt="Flag of Norway" src="https://flagcdn.com/48x36/no.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Norway </span></b></a> |
<a href="https://whatweather.today/weather/poland/" title="Weather, Poland, 10-DAY Forecast, Weather today"><img alt="Flag of Poland" src="https://flagcdn.com/48x36/pl.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Poland </span></b></a> |
<a href="https://whatweather.today/weather/portugal/" title="Weather, Portugal, 10-DAY Forecast, Weather today"><img alt="Flag of Portugal" src="https://flagcdn.com/48x36/pt.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Portugal </span></b></a> |
<a href="https://whatweather.today/weather/romania/" title="Weather, Romania, 10-DAY Forecast, Weather today"><img alt="Flag of Romania" src="https://flagcdn.com/48x36/ro.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Romania </span></b></a> |
<a href="https://whatweather.today/weather/russia/" title="Weather, Russia, 10-DAY Forecast, Weather today"><img alt="Flag of Russia" src="https://flagcdn.com/48x36/ru.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Russia </span></b></a> |
<a href="https://whatweather.today/weather/san-marino/" title="Weather, San Marino, 10-DAY Forecast, Weather today"><img alt="Flag of San Marino" src="https://flagcdn.com/48x36/sm.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in San Marino </span></b></a> |
<a href="https://whatweather.today/weather/serbia/" title="Weather, Serbia, 10-DAY Forecast, Weather today"><img alt="Flag of Serbia" src="https://flagcdn.com/48x36/rs.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Serbia </span></b></a> |
<a href="https://whatweather.today/weather/slovakia/" title="Weather, Slovakia, 10-DAY Forecast, Weather today"><img alt="Flag of Slovakia" src="https://flagcdn.com/48x36/sk.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Slovakia </span></b></a> |
<a href="https://whatweather.today/weather/slovenia/" title="Weather, Slovenia, 10-DAY Forecast, Weather today"><img alt="Flag of Slovenia" src="https://flagcdn.com/48x36/si.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Slovenia </span></b></a> |
<a href="https://whatweather.today/weather/spain/" title="Weather, Spain, 10-DAY Forecast, Weather today"><img alt="Flag of Spain" src="https://flagcdn.com/48x36/es.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Spain </span></b></a> |
<a href="https://whatweather.today/weather/sweden/" title="Weather, Sweden, 10-DAY Forecast, Weather today"><img alt="Flag of Sweden" src="https://flagcdn.com/48x36/se.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Sweden </span></b></a> |
<a href="https://whatweather.today/weather/switzerland/" title="Weather, Switzerland, 10-DAY Forecast, Weather today"><img alt="Flag of Switzerland" src="https://flagcdn.com/48x36/ch.webp" width="30" height="23" /><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Switzerland </span></b></a> |
<a href="https://whatweather.today/weather/ukraine/" title="Weather, Ukraine, 10-DAY Forecast, Weather today"><img alt="Flag of Ukraine" src="https://flagcdn.com/48x36/ua.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Ukraine </span></b></a> |
<a href="https://whatweather.today/weather/united-kingdom/" title="Weather, United Kingdom, 10-DAY Forecast, Weather today"><img alt="Flag of United Kingdom" src="https://flagcdn.com/48x36/gb.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in United Kingdom </span></b></a> |
<a href="https://whatweather.today/weather/vatican-city/" title="Weather, Vatican City, 10-DAY Forecast, Weather today"><img alt="Flag of Vatican City" src="https://flagcdn.com/48x36/va.webp" width="30" height="23" /><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Vatican </span></b></a>
</div></div></div></div></div>
<div id="na"></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix">
<div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a">
<div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body">
<br><div class="maintitle">North America Countries</div><br>
<a href="https://whatweather.today/weather/usa/" title="Weather, United States, 10-DAY Forecast, Weather today"><img alt="Flag of United States" src="https://flagcdn.com/48x36/us.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in United States </span></b></a> |
<a href="https://whatweather.today/weather/anguilla/" title="Weather, Anguilla, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Anguilla </span></b></a> |
<a href="https://whatweather.today/weather/antigua-and-barbuda/" title="Weather, Antigua and Barbuda, 10-DAY Forecast, Weather today"><img alt="Flag of Antigua and Barbuda" src="https://flagcdn.com/48x36/ag.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Antigua and Barbuda </span></b></a> |
<a href="https://whatweather.today/weather/bahamas/" title="Weather, Bahamas, 10-DAY Forecast, Weather today"><img alt="Flag of Bahamas" src="https://flagcdn.com/48x36/bs.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Bahamas </span></b></a> |
<a href="https://whatweather.today/weather/barbados/" title="Weather, Barbados, 10-DAY Forecast, Weather today"><img alt="Flag of Barbados" src="https://flagcdn.com/48x36/bb.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Barbados </span></b></a> |
<a href="https://whatweather.today/weather/belize/" title="Weather, Belize, 10-DAY Forecast, Weather today"><img alt="Flag of Belize" src="https://flagcdn.com/48x36/bz.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Belize </span></b></a> |
<a href="https://whatweather.today/weather/bermuda/" title="Weather, Bermuda, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Bermuda </span></b></a> |
<a href="https://whatweather.today/weather/canada/" title="Weather, Canada, 10-DAY Forecast, Weather today"><img alt="Flag of Canada" src="https://flagcdn.com/48x36/ca.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Canada </span></b></a> |
<a href="https://whatweather.today/weather/cayman-islands/" title="Weather, Cayman Islands, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Cayman Islands </span></b></a> |
<a href="https://whatweather.today/weather/cuba/" title="Weather, Cuba, 10-DAY Forecast, Weather today"><img alt="Flag of Cuba" src="https://flagcdn.com/48x36/cu.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Cuba </span></b></a> |
<a href="https://whatweather.today/weather/dominica/" title="Weather, Dominica, 10-DAY Forecast, Weather today"><img alt="Flag of Dominica" src="https://flagcdn.com/48x36/dm.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Dominica </span></b></a> |
<a href="https://whatweather.today/weather/dominican-republic/" title="Weather, Dominican Republic, 10-DAY Forecast, Weather today"><img alt="Flag of Dominican Republic" src="https://flagcdn.com/48x36/do.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Dominican Republic </span></b></a> |
<a href="https://whatweather.today/weather/greenland/" title="Weather, Greenland, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Greenland </span></b></a> |
<a href="https://whatweather.today/weather/grenada/" title="Weather, Grenada, 10-DAY Forecast, Weather today"><img alt="Flag of Grenada" src="https://flagcdn.com/48x36/gd.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Grenada </span></b></a> |
<a href="https://whatweather.today/weather/guadeloupe/" title="Weather, Guadeloupe, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Guadeloupe </span></b></a> |
<a href="https://whatweather.today/weather/guatemala/" title="Weather, Guatemala, 10-DAY Forecast, Weather today"><img alt="Flag of Guatemala" src="https://flagcdn.com/48x36/gt.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Guatemala </span></b></a> |
<a href="https://whatweather.today/weather/haiti/" title="Weather, Haiti, 10-DAY Forecast, Weather today"><img alt="Flag of Haiti" src="https://flagcdn.com/48x36/ht.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Haiti </span></b></a> |
<a href="https://whatweather.today/weather/honduras/" title="Weather, Honduras, 10-DAY Forecast, Weather today"><img alt="Flag of Honduras" src="https://flagcdn.com/48x36/hn.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Honduras </span></b></a> |
<a href="https://whatweather.today/weather/jamaica/" title="Weather, Jamaica, 10-DAY Forecast, Weather today"><img alt="Flag of Jamaica" src="https://flagcdn.com/48x36/jm.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Jamaica </span></b></a> |
<a href="https://whatweather.today/weather/martinique/" title="Weather, Martinique, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Martinique </span></b></a> |
<a href="https://whatweather.today/weather/mexico/" title="Weather, Mexico, 10-DAY Forecast, Weather today"><img alt="Flag of Mexico" src="https://flagcdn.com/48x36/mx.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Mexico </span></b></a> |
<a href="https://whatweather.today/weather/montserrat/" title="Weather, Montserrat, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Montserrat </span></b></a> |
<a href="https://whatweather.today/weather/nicaragua/" title="Weather, Nicaragua, 10-DAY Forecast, Weather today"><img alt="Flag of Nicaragua" src="https://flagcdn.com/48x36/ni.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Nicaragua </span></b></a> |
<a href="https://whatweather.today/weather/panama/" title="Weather, Panama, 10-DAY Forecast, Weather today"><img alt="Flag of Panama" src="https://flagcdn.com/48x36/pa.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Panama </span></b></a> |
<a href="https://whatweather.today/weather/puerto-rico/" title="Weather, Puerto Rico, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Puerto Rico </span></b></a> |
<a href="https://whatweather.today/weather/saba/" title="Weather, Saba, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Saba </span></b></a> |
<a href="https://whatweather.today/weather/saint-barthelemy/" title="Weather, Saint Barthélemy, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Saint Barthélemy </span></b></a> |
<a href="https://whatweather.today/weather/saint-kitts-and-nevis/" title="Weather, Saint Kitts and Nevis, 10-DAY Forecast, Weather today"><img alt="Flag of Saint Kitts and Nevis" src="https://flagcdn.com/48x36/kn.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Saint Kitts and Nevis </span></b></a> |
<a href="https://whatweather.today/weather/saint-lucia/" title="Weather, Saint Lucia, 10-DAY Forecast, Weather today"><img alt="Flag of Saint Lucia" src="https://flagcdn.com/48x36/lc.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Saint Lucia </span></b></a> |
<a href="https://whatweather.today/weather/saint-martin/" title="Weather, Saint Martin, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Saint Martin </span></b></a> |
<a href="https://whatweather.today/weather/saint-pierre-and-miquelon/" title="Weather, Saint Pierre and Miquelon, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Saint Pierre and Miquelon </span></b></a> |
<a href="https://whatweather.today/weather/saint-vincent-grenadines/" title="Weather, Saint Vincent Grenadines, 10-DAY Forecast, Weather today"><img alt="Flag of Saint Vincent and the Grenadines" src="https://flagcdn.com/48x36/vc.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Saint Vincent Grenadines </span></b></a> |
<a href="https://whatweather.today/weather/sint-maarten/" title="Weather, Sint Maarten, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Sint Maarten </span></b></a> |
<a href="https://whatweather.today/weather/turks-and-caicos/" title="Weather, Turks and Caicos, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Turks and Caicos </span></b></a> |
<a href="https://whatweather.today/weather/virgin-islands-british/" title="Weather, British Virgin Islands, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in British Virgin Islands </span></b></a> |
<a href="https://whatweather.today/weather/virgin-islands-us/" title="Weather, US Virgin Islands, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in US Virgin Islands </span></b></a> |
<a href="https://whatweather.today/weather/usa/" title="Weather, United States, 10-DAY Forecast, Weather today"><img alt="Flag of United States" src="https://flagcdn.com/48x36/us.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in United States </span></b></a>
</div></div></div></div></div>
<div id="sa"></div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix">
<div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a">
<div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body">
<br><div class="maintitle">South America Countries</div><br>
<a href="https://whatweather.today/weather/argentina/" title="Weather, Argentina, 10-DAY Forecast, Weather today"><img alt="Flag of Argentina" src="https://flagcdn.com/48x36/ar.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Argentina </span></b></a> |
<a href="https://whatweather.today/weather/aruba/" title="Weather, Aruba, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Aruba </span></b></a> |
<a href="https://whatweather.today/weather/bolivia/" title="Weather, Bolivia, 10-DAY Forecast, Weather today"><img alt="Flag of Bolivia" src="https://flagcdn.com/48x36/bo.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Bolivia </span></b></a> |
<a href="https://whatweather.today/weather/bonaire/" title="Weather, Bonaire, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Bonaire </span></b></a> |
<a href="https://whatweather.today/weather/brazil/" title="Weather, Brazil, 10-DAY Forecast, Weather today"><img alt="Flag of Brazil" src="https://flagcdn.com/48x36/br.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Brazil </span></b></a> |
<a href="https://whatweather.today/weather/chile/" title="Weather, Chile, 10-DAY Forecast, Weather today"><img alt="Flag of Chile" src="https://flagcdn.com/48x36/cl.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Chile </span></b></a> |
<a href="https://whatweather.today/weather/colombia/" title="Weather, Colombia, 10-DAY Forecast, Weather today"><img alt="Flag of Colombia" src="https://flagcdn.com/48x36/co.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Colombia </span></b></a> |
<a href="https://whatweather.today/weather/costa-rica/" title="Weather, Costa Rica, 10-DAY Forecast, Weather today"><img alt="Flag of Costa Rica" src="https://flagcdn.com/48x36/cr.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Costa Rica </span></b></a> |
<a href="https://whatweather.today/weather/curacao/" title="Weather, Curaçao, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Curaçao </span></b></a> |
<a href="https://whatweather.today/weather/ecuador/" title="Weather, Ecuador, 10-DAY Forecast, Weather today"><img alt="Flag of Ecuador" src="https://flagcdn.com/48x36/ec.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Ecuador </span></b></a> |
<a href="https://whatweather.today/weather/el-salvador/" title="Weather, El Salvador, 10-DAY Forecast, Weather today"><img alt="Flag of Falkland Islands" src="https://flagcdn.com/48x36/sv.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in El Salvador </span></b></a> |
<a href="https://whatweather.today/weather/falkland-islands/" title="Weather, Falkland Islands, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Falkland Islands </span></b></a> |
<a href="https://whatweather.today/weather/french-guiana/" title="Weather, French Guiana, 10-DAY Forecast, Weather today"><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in French Guiana </span></b></a> |
<a href="https://whatweather.today/weather/guyana/" title="Weather, Guyana, 10-DAY Forecast, Weather today"><img alt="Flag of Guyana" src="https://flagcdn.com/48x36/gy.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Guyana </span></b></a> |
<a href="https://whatweather.today/weather/paraguay/" title="Weather, Paraguay, 10-DAY Forecast, Weather today"><img alt="Flag of Paraguay" src="https://flagcdn.com/48x36/py.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Paraguay </span></b></a> |
<a href="https://whatweather.today/weather/peru/" title="Weather, Peru, 10-DAY Forecast, Weather today"><img alt="Flag of Peru" src="https://flagcdn.com/48x36/pe.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Peru </span></b></a> |
<a href="https://whatweather.today/weather/suriname/" title="Weather, Suriname, 10-DAY Forecast, Weather today"><img alt="Flag of Suriname" src="https://flagcdn.com/48x36/sr.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Suriname </span></b></a>
<a href="https://whatweather.today/weather/trinidad-and-tobago/" title="Weather, Trinidad and Tobago, 10-DAY Forecast, Weather today"><img alt="Flag of Trinidad and Tobago" src="https://flagcdn.com/48x36/tt.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Trinidad and Tobago </span></b></a> |
<a href="https://whatweather.today/weather/venezuela/" title="Weather, Venezuela, 10-DAY Forecast, Weather today"><img alt="Flag of Venezuela" src="https://flagcdn.com/48x36/ve.webp" width="30" height="23" rel="nofollow"/><b><span style="font-size: calc(0.6rem + 0.6vw); color:#D1D1D2;"> Weather in Venezuela </span></b></a> |
<br><br>
</div></div></div></div></div>
</div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix">
<div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a">
<div class="view-content"><div class="item-list"><div class="back"><div class="ads">
<ins class="adsbygoogle"
style="display:inline-block;width:100%;height:300px"
data-ad-client="ca-pub-4185741460540603"
data-ad-slot="2824828440"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></div></div></div></div></div></div>
</section>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix"><div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a"><div class="view-content"><div class="item-list"><div class="back"><div class="maintitle">About WHATWEATHER.today</div><br></div></div></div></div><footer class="footer clearfix">
<div align="center"><div class="description"><h2>Cartes vent, pluie et température animées, prévisions météo détaillées pour votre lieu.</h2>
<h3>Voir la météo actuelle de partout dans le monde sur What Weather.today</h3>
<h4>Notre site Web fournit différentes sources de prévisions météorologiques mondiales en ligne.</h4>
<h5>Prévisions météo à 10 jours pour des milliers de lieux dans le monde entier. Des cartes météo interactives pour tous les pays du monde.</h5>
<marquee style="font-size:calc(0.6rem + 0.6vw);" behavior="scroll" direction="left" bgcolor="#020202" scrollamount="16" height="35"><h1>
Date: Wednesday, April 24, 2025 Sunrise: 6:08 AM Sunset: 7:52 PM Morning (6 AM – 12 PM) ☁️ Overcast Temperature: 10°C (50°F) → 15°C (59°F) Wind: E 15–20 km/h (9–12 mph) Precipitation: 60% chance of light rain Humidity: 80% Description: Gloomy and cool with a chance of drizzle. Grab an umbrella. Afternoon (12 PM – 6 PM) 🌧️ Light Rain Temperature: 14°C (57°F) → 16°C (61°F) Wind: E 20–25 km/h (12–15 mph) Precipitation: 80% chance of steady light rain Humidity: 85% Description: Persistent light rain throughout the afternoon. Keep rain gear handy. Evening (6 PM – 12 AM) ☔ Rain Tapering Temperature: 16°C (61°F) → 13°C (55°F) Wind: NE 15–20 km/h (9–12 mph) Precipitation: 50% chance, tapering off towards midnight Humidity: 88% Description: Rain becoming intermittent and lighter. Still damp outside. Overnight (12 AM – 6 AM) 🌫️ Foggy Temperature: 13°C (55°F) → 9°C (48°F) Wind: Light & variable, 5 km/h (3 mph) Precipitation: 30% chance of mist/fog Humidity: 95% Description: Dense fog expected to develop overnight, reducing visibility significantly. Tomorrow’s Outlook: ☁️ Cloudy, Chance of Showers High: 18°C (64°F) | Low: 10°C (50°F) Rain Chance: 30% in the afternoon Wind: N 10–15 km/h (6–9 mph) Air Quality: Moderate (AQI 55) UV Index: Low (2) Date: Wednesday, April 24, 2025 Sunrise: 6:12 AM Sunset: 7:48 PM Morning (6 AM – 12 PM) ☀️ Sunny Temperature: 15°C (59°F) → 20°C (68°F) Wind: SW 5–10 km/h (3–6 mph) Precipitation: 0% (Dry) Humidity: 70% Description: Bright and sunny start, warming up quickly. Pleasant conditions. Afternoon (12 PM – 6 PM) ☀️ Sunny Temperature: 20°C (68°F) → 25°C (77°F) Wind: SW 10–15 km/h (6–9 mph) Precipitation: 0% (No rain) Humidity: 55% Description: Warm and sunny, ideal for outdoor activities. Stay hydrated. Evening (6 PM – 12 AM) ☀️ Clear Temperature: 25°C (77°F) → 18°C (64°F) Wind: W 5–10 km/h (3–6 mph) Precipitation: 0% Humidity: 65% Description: Warm evening, skies remain clear. Great for a sunset walk. Overnight (12 AM – 6 AM) 🌙 Clear Temperature: 18°C (64°F) → 14°C (57°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% Humidity: 75% Description: Cool and calm overnight under clear skies. Tomorrow’s Outlook: ☀️ Sunny High: 26°C (79°F) | Low: 15°C (59°F) Rain Chance: 0% Wind: W 10–15 km/h (6–9 mph) Air Quality: Good (AQI 45) UV Index: High (7) – Sunscreen essential Date: Wednesday, April 24, 2025 Sunrise: 6:05 AM Sunset: 7:55 PM Morning (6 AM – 12 PM) 🌫️ Dense Fog Temperature: 8°C (46°F) → 12°C (54°F) Wind: Light & variable, 5 km/h (3 mph) Precipitation: 10% chance of mist Humidity: 98% Description: Very low visibility due to dense fog. Drive with caution. Afternoon (12 PM – 6 PM) ☁️ Fog Dissipating, Cloudy Temperature: 12°C (54°F) → 14°C (57°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 20% chance of drizzle Humidity: 90% Description: Fog slowly lifting but skies remain cloudy and damp. Evening (6 PM – 12 AM) ☁️ Cloudy Temperature: 14°C (57°F) → 11°C (52°F) Wind: N 15–20 km/h (9–12 mph) Precipitation: 30% chance of light rain Humidity: 85% Description: Overcast and cool with a slight chance of light rain showers. Overnight (12 AM – 6 AM) 🌧️ Light Rain Temperature: 11°C (52°F) → 8°C (46°F) Wind: N 20–25 km/h (12–15 mph) Precipitation: 70% chance of light rain Humidity: 92% Description: Rain likely to develop and persist overnight. Tomorrow’s Outlook: 🌧️ Rain Likely High: 13°C (55°F) | Low: 7°C (45°F) Rain Chance: 80% throughout the day Wind: N 20–30 km/h (12–19 mph) Air Quality: Good (AQI 38) UV Index: Very Low (1) Date: Wednesday, April 24, 2025 Sunrise: 6:18 AM Sunset: 7:42 PM Morning (6 AM – 12 PM) 🥶 Frosty Start, Sunny Temperature: -2°C (28°F) → 8°C (46°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% (Dry) Humidity: 60% Description: A cold start with widespread frost, but bright sunshine expected. Afternoon (12 PM – 6 PM) ☀️ Sunny and Mild Temperature: 8°C (46°F) → 14°C (57°F) Wind: W 10–15 km/h (6–9 mph) Precipitation: 0% (No rain) Humidity: 45% Description: Pleasant and mild under clear, sunny skies. Great day for a walk. Evening (6 PM – 12 AM) ☀️ Clear and Cool Temperature: 14°C (57°F) → 5°C (41°F) Wind: NW 5–10 km/h (3–6 mph) Precipitation: 0% Humidity: 55% Description: Skies remain clear as temperatures drop after sunset. Overnight (12 AM – 6 AM) ✨ Clear, Cold Temperature: 5°C (41°F) → -1°C (30°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% Humidity: 65% Description: Very cold overnight, potential for frost again in low areas. Tomorrow’s Outlook: ☀️ Sunny, Cold Morning High: 15°C (59°F) | Low: -3°C (27°F) Rain Chance: 0% Wind: SW 10–15 km/h (6–9 mph) Air Quality: Excellent (AQI 25) UV Index: Moderate (4) Date: Wednesday, April 24, 2025 Sunrise: 6:00 AM Sunset: 8:00 PM Morning (6 AM – 12 PM) ⛈️ Thunderstorms Developing Temperature: 18°C (64°F) → 22°C (72°F) Wind: S 20–30 km/h (12–19 mph) Precipitation: 70% chance of thunderstorms Humidity: 85% Description: Increasing cloudiness with a high likelihood of morning thunderstorms. Afternoon (12 PM – 6 PM) ⚡ Thunderstorms Likely Temperature: 22°C (72°F) → 20°C (68°F) Wind: SW 25–40 km/h (15–25 mph), gusts up to 55 km/h (34 mph) Precipitation: 90% chance of widespread thunderstorms, possibly severe Humidity: 90% Description: Strong thunderstorms expected with heavy rain, lightning, and strong winds. Seek shelter. Evening (6 PM – 12 AM) 🌦️ Showers Lingering Temperature: 20°C (68°F) → 16°C (61°F) Wind: W 15–25 km/h (9–15 mph) Precipitation: 60% chance of showers Humidity: 92% Description: Thunderstorms moving out, but showers may continue into the evening. Overnight (12 AM – 6 AM) ☁️ Cloudy, Chance of Showers Temperature: 16°C (61°F) → 14°C (57°F) Wind: NW 10–15 km/h (6–9 mph) Precipitation: 40% chance of light showers Humidity: 88% Description: Skies remain cloudy with a chance of scattered showers overnight. Tomorrow’s Outlook: 🌥️ Partly Cloudy High: 24°C (75°F) | Low: 15°C (59°F) Rain Chance: 20% Wind: N 10–20 km/h (6–12 mph) Air Quality: Moderate (AQI 68) UV Index: Moderate (5) Date: Wednesday, April 24, 2025 Sunrise: 6:10 AM Sunset: 7:50 PM Morning (6 AM – 12 PM) 💨 Windy Temperature: 12°C (54°F) → 17°C (63°F) Wind: W 30–45 km/h (19–28 mph) Precipitation: 0% (Dry) Humidity: 65% Description: Breezy conditions developing, feeling cooler in the wind. Afternoon (12 PM – 6 PM) 💨 Very Windy Temperature: 17°C (63°F) → 19°C (66°F) Wind: W 40–55 km/h (25–34 mph), gusts up to 70 km/h (43 mph) Precipitation: 10% chance of isolated light showers Humidity: 50% Description: Strong winds expected, potentially causing difficulty with outdoor activities. Evening (6 PM – 12 AM) 💨 Windy, Calming Temperature: 19°C (66°F) → 15°C (59°F) Wind: NW 20–35 km/h (12–22 mph) Precipitation: 5% Humidity: 55% Description: Winds beginning to decrease but remaining breezy. Overnight (12 AM – 6 AM) 🌬️ Breezy Temperature: 15°C (59°F) → 11°C (52°F) Wind: N 15–25 km/h (9–15 mph) Precipitation: 0% Humidity: 60% Description: Breezy overnight, but significantly less windy than during the day. Tomorrow’s Outlook: ☀️ Sunny, Less Wind High: 21°C (70°F) | Low: 12°C (54°F) Rain Chance: 0% Wind: NW 10–20 km/h (6–12 mph) Air Quality: Good (AQI 40) UV Index: Moderate (6) Date: Wednesday, April 24, 2025 Sunrise: 6:14 AM Sunset: 7:46 PM Morning (6 AM – 12 PM) ❄️ Flurries Temperature: 0°C (32°F) → 2°C (36°F) Wind: NE 10–15 km/h (6–9 mph) Precipitation: 40% chance of light snow flurries Humidity: 70% Description: Unseasonably cold with a chance of snow flurries. Afternoon (12 PM – 6 PM) 🌨️ Light Snow Temperature: 2°C (36°F) → 3°C (37°F) Wind: NE 15–20 km/h (9–12 mph) Precipitation: 60% chance of light snow accumulation Humidity: 75% Description: Light snow may accumulate, making roads slippery. Dress warmly. Evening (6 PM – 12 AM) ❄️ Snow Tapering Temperature: 3°C (37°F) → 1°C (34°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 50% chance, tapering off Humidity: 80% Description: Snow becoming less frequent, but roads may remain slick. Overnight (12 AM – 6 AM) ✨ Clear and Cold Temperature: 1°C (34°F) → -3°C (27°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% Humidity: 70% Description: Skies clearing but temperatures dropping well below freezing. Tomorrow’s Outlook: ☀️ Sunny, Cold Morning High: 10°C (50°F) | Low: -4°C (25°F) Rain Chance: 0% Wind: W 5–10 km/h (3–6 mph) Air Quality: Excellent (AQI 18) UV Index: Moderate (3) Date: Wednesday, April 24, 2025 Sunrise: 6:07 AM Sunset: 7:53 PM Morning (6 AM – 12 PM) 🌞 Sunny and Warm Temperature: 18°C (64°F) → 24°C (75°F) Wind: S 10–15 km/h (6–9 mph) Precipitation: 0% (Dry) Humidity: 60% Description: A warm and sunny start to the day. Afternoon (12 PM – 6 PM) 🥵 Hot and Sunny Temperature: 24°C (75°F) → 29°C (84°F) Wind: SW 15–20 km/h (9–12 mph) Precipitation: 0% (No rain) Humidity: 40% Description: Becoming hot under direct sunshine. Stay hydrated and seek shade. Evening (6 PM – 12 AM) ☀️ Warm and Clear Temperature: 29°C (84°F) → 22°C (72°F) Wind: W 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 50% Description: A warm evening with clear skies. Overnight (12 AM – 6 AM) 🌙 Clear and Mild Temperature: 22°C (72°F) → 18°C (64°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% Humidity: 60% Description: Mild overnight temperatures with clear skies. Tomorrow’s Outlook: ☀️ Hot High: 31°C (88°F) | Low: 19°C (66°F) Rain Chance: 0% Wind: S 10–20 km/h (6–12 mph) Air Quality: Moderate (AQI 75) UV Index: Very High (8) – Protect yourself from the sun Date: Wednesday, April 24, 2025 Sunrise: 6:11 AM Sunset: 7:49 PM Morning (6 AM – 12 PM) ☁️ Cloudy Temperature: 10°C (50°F) → 13°C (55°F) Wind: E 10–15 km/h (6–9 mph) Precipitation: 30% chance of light drizzle Humidity: 80% Description: Dull and cloudy with a possibility of light drizzle. Afternoon (12 PM – 6 PM) ☁️ Cloudy Temperature: 13°C (55°F) → 15°C (59°F) Wind: NE 15–20 km/h (9–12 mph) Precipitation: 40% chance of light rain Humidity: 85% Description: Skies remain cloudy with a higher chance of light rain developing. Evening (6 PM – 12 AM) 🌧️ Light Rain Temperature: 15°C (59°F) → 12°C (54°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 70% chance of light rain Humidity: 90% Description: Light rain likely to continue into the evening. Overnight (12 AM – 6 AM) ☔ Rain Temperature: 12°C (54°F) → 9°C (48°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 80% chance of rain Humidity: 94% Description: Rain expected to persist and possibly become heavier overnight. Tomorrow’s Outlook: 🌧️ Rain Likely High: 14°C (57°F) | Low: 8°C (46°F) Rain Chance: 70% throughout the day Wind: N 15–25 km/h (9–15 mph) Air Quality: Good (AQI 35) UV Index: Low (1) Date: Wednesday, April 24, 2025 Sunrise: 6:15 AM Sunset: 7:45 PM Morning (6 AM – 12 PM) 💨 Breezy, Mostly Sunny Temperature: 14°C (57°F) → 19°C (66°F) Wind: W 20–30 km/h (12–19 mph) Precipitation: 0% (Dry) Humidity: 60% Description: A breezy start with plenty of sunshine. Afternoon (12 PM – 6 PM) ☀️ Mostly Sunny, Windy Temperature: 19°C (66°F) → 22°C (72°F) Wind: W 25–40 km/h (15–25 mph) Precipitation: 0% (No rain) Humidity: 50% Description: Winds picking up in the afternoon under mostly sunny skies. Evening (6 PM – 12 AM) ☀️ Clear, Breezy Temperature: 22°C (72°F) → 16°C (61°F) Wind: NW 15–25 km/h (9–15 mph) Precipitation: 0% Humidity: 55% Description: Skies clearing with winds gradually easing through the evening. Overnight (12 AM – 6 AM) 🌙 Clear, Cool Temperature: 16°C (61°F) → 12°C (54°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 65% Description: Cool and clear overnight. Tomorrow’s Outlook: ☀️ Sunny, Less Wind High: 23°C (73°F) | Low: 13°C (55°F) Rain Chance: 0% Wind: NW 10–20 km/h (6–12 mph) Air Quality: Good (AQI 48) UV Index: Moderate (6) Date: Wednesday, April 24, 2025 Sunrise: 6:03 AM Sunset: 7:57 PM Morning (6 AM – 12 PM) 🌧️ Heavy Rain Temperature: 15°C (59°F) → 16°C (61°F) Wind: SE 25–35 km/h (15–22 mph) Precipitation: 90% chance of heavy rain Humidity: 95% Description: Intense rainfall expected, potential for localized flooding. Afternoon (12 PM – 6 PM) ⛈️ Thunderstorms, Heavy Rain Temperature: 16°C (61°F) → 17°C (63°F) Wind: S 30–45 km/h (19–28 mph), gusts up to 60 km/h (37 mph) Precipitation: 95% chance of heavy rain and thunderstorms Humidity: 96% Description: Thunderstorms and heavy rain continuing, creating hazardous conditions. Evening (6 PM – 12 AM) ☔ Rain Easing Temperature: 17°C (63°F) → 15°C (59°F) Wind: SW 20–30 km/h (12–19 mph) Precipitation: 80% chance of rain, intensity decreasing Humidity: 94% Description: Rain slowly becoming less heavy but still persistent. Overnight (12 AM – 6 AM) 🌧️ Light Rain Temperature: 15°C (59°F) → 13°C (55°F) Wind: W 15–25 km/h (9–15 mph) Precipitation: 60% chance of light rain Humidity: 90% Description: Lighter rain showers expected overnight. Tomorrow’s Outlook: ☁️ Cloudy, Chance of Showers High: 19°C (66°F) | Low: 14°C (57°F) Rain Chance: 40% in the morning Wind: W 15–20 km/h (9–12 mph) Air Quality: Moderate (AQI 58) UV Index: Low (1) Date: Wednesday, April 24, 2025 Sunrise: 6:16 AM Sunset: 7:44 PM Morning (6 AM – 12 PM) 🥶 Very Cold, Sunny Temperature: -5°C (23°F) → 5°C (41°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% (Dry) Humidity: 50% Description: Exceptionally cold start with widespread hard frost. Bundle up. Afternoon (12 PM – 6 PM) ☀️ Sunny but Cold Temperature: 5°C (41°F) → 10°C (50°F) Wind: NW 10–15 km/h (6–9 mph) Precipitation: 0% (No rain) Humidity: 40% Description: Sunshine but temperatures remain well below average. Evening (6 PM – 12 AM) ✨ Clear and Very Cold Temperature: 10°C (50°F) → 0°C (32°F) Wind: N 5–10 km/h (3–6 mph) Precipitation: 0% Humidity: 50% Description: Rapid temperature drop after sunset under clear skies. Overnight (12 AM – 6 AM) ✨ Clear, Freezing Temperature: 0°C (32°F) → -6°C (21°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% Humidity: 60% Description: Dangerously cold overnight with potential for significant freezing. Tomorrow’s Outlook: ☀️ Sunny, Bitterly Cold Morning High: 12°C (54°F) | Low: -7°C (19°F) Rain Chance: 0% Wind: NW 5–10 km/h (3–6 mph) Air Quality: Excellent (AQI 15) UV Index: Moderate (3) Date: Wednesday, April 24, 2025 Sunrise: 6:09 AM Sunset: 7:51 PM Morning (6 AM – 12 PM) 💨 Very Breezy, Cloudy Temperature: 13°C (55°F) → 16°C (61°F) Wind: E 30–40 km/h (19–25 mph) Precipitation: 20% chance of drizzle Humidity: 75% Description: A strong east wind making it feel cool despite temperatures. Cloudy skies. Afternoon (12 PM – 6 PM) ☁️ Cloudy, Windy Temperature: 16°C (61°F) → 18°C (64°F) Wind: E 35–50 km/h (22–31 mph), gusts up to 65 km/h (40 mph) Precipitation: 30% chance of light rain Humidity: 70% Description: Strong winds persist with cloudy skies and a chance of light rain. Evening (6 PM – 12 AM) 🌧️ Light Rain, Windy Temperature: 18°C (64°F) → 14°C (57°F) Wind: NE 25–35 km/h (15–22 mph) Precipitation: 60% chance of light rain Humidity: 80% Description: Light rain likely to develop while remaining windy. Overnight (12 AM – 6 AM) ☔ Rain, Breezy Temperature: 14°C (57°F) → 11°C (52°F) Wind: N 20–30 km/h (12–19 mph) Precipitation: 70% chance of rain Humidity: 88% Description: Rain continues overnight with breezy conditions. Tomorrow’s Outlook: 🌧️ Rain, Less Wind High: 16°C (61°F) | Low: 10°C (50°F) Rain Chance: 60% in the morning Wind: N 15–25 km/h (9–15 mph) Air Quality: Good (AQI 42) UV Index: Low (1) Date: Wednesday, April 24, 2025 Sunrise: 6:13 AM Sunset: 7:47 PM Morning (6 AM – 12 PM) ☀️ Sunny and Pleasant Temperature: 16°C (61°F) → 21°C (70°F) Wind: SW 10–15 km/h (6–9 mph) Precipitation: 0% (Dry) Humidity: 60% Description: A beautiful morning with abundant sunshine and comfortable temperatures. Afternoon (12 PM – 6 PM) ☀️ Sunny and Warm Temperature: 21°C (70°F) → 26°C (79°F) Wind: SW 15–20 km/h (9–12 mph) Precipitation: 0% (No rain) Humidity: 50% Description: Continued sunshine and warming temperatures. Evening (6 PM – 12 AM) ☀️ Clear and Warm Temperature: 26°C (79°F) → 19°C (66°F) Wind: W 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 55% Description: Clear skies and warm evening temperatures. Overnight (12 AM – 6 AM) 🌙 Clear and Mild Temperature: 19°C (66°F) → 15°C (59°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% Humidity: 65% Description: Mild overnight under clear skies. Tomorrow’s Outlook: ☀️ Sunny High: 28°C (82°F) | Low: 16°C (61°F) Rain Chance: 0% Wind: SW 15–20 km/h (9–12 mph) Air Quality: Good (AQI 50) UV Index: High (7) – Sunscreen essential Date: Wednesday, April 24, 2025 Sunrise: 6:06 AM Sunset: 7:54 PM Morning (6 AM – 12 PM) ☁️ Cloudy Temperature: 9°C (48°F) → 12°C (54°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 10% chance of drizzle Humidity: 85% Description: Dull and cloudy with a slight chance of drizzle. Afternoon (12 PM – 6 PM) ☁️ Cloudy Temperature: 12°C (54°F) → 14°C (57°F) Wind: N 15–20 km/h (9–12 mph) Precipitation: 20% chance of light rain Humidity: 88% Description: Remaining cloudy with an increasing chance of light rain. Evening (6 PM – 12 AM) 🌧️ Light Rain Temperature: 14°C (57°F) → 11°C (52°F) Wind: NE 10–15 km/h (6–9 mph) Precipitation: 60% chance of light rain Humidity: 92% Description: Light rain likely to persist through the evening. Overnight (12 AM – 6 AM) ☔ Rain Temperature: 11°C (52°F) → 8°C (46°F) Wind: E 10–15 km/h (6–9 mph) Precipitation: 70% chance of rain Humidity: 95% Description: Rain expected overnight. Tomorrow’s Outlook: 🌧️ Rain High: 13°C (55°F) | Low: 7°C (45°F) Rain Chance: 80% throughout the day Wind: E 15–20 km/h (9–12 mph) Air Quality: Good (AQI 30) UV Index: Very Low (1) Date: Wednesday, April 24, 2025 Sunrise: 6:17 AM Sunset: 7:43 PM Morning (6 AM – 12 PM) 💨 Windy and Cold Temperature: 3°C (37°F) → 8°C (46°F) Wind: NW 30–45 km/h (19–28 mph) Precipitation: 0% (Dry) Humidity: 50% Description: A cold wind making it feel much colder. Mostly sunny. Afternoon (12 PM – 6 PM) ☀️ Sunny and Windy Temperature: 8°C (46°F) → 12°C (54°F) Wind: NW 35–50 km/h (22–31 mph) Precipitation: 0% (No rain) Humidity: 40% Description: Strong winds continue under sunny skies. Evening (6 PM – 12 AM) ✨ Clear and Cold, Windy Temperature: 12°C (54°F) → 4°C (39°F) Wind: N 20–30 km/h (12–19 mph) Precipitation: 0% Humidity: 50% Description: Winds gradually easing but remaining breezy and cold. Overnight (12 AM – 6 AM) ✨ Clear and Freezing Temperature: 4°C (39°F) → -2°C (28°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 60% Description: Very cold overnight with frost likely. Tomorrow’s Outlook: ☀️ Sunny, Less Wind High: 14°C (57°F) | Low: -1°C (30°F) Rain Chance: 0% Wind: NW 10–15 km/h (6–9 mph) Air Quality: Excellent (AQI 20) UV Index: Moderate (4) Date: Wednesday, April 24, 2025 Sunrise: 6:02 AM Sunset: 7:58 PM Morning (6 AM – 12 PM) ☀️ Sunny, Humid Temperature: 20°C (68°F) → 25°C (77°F) Wind: S 10–15 km/h (6–9 mph) Precipitation: 10% chance of a brief shower Humidity: 80% Description: Warm and humid with plenty of sunshine. Afternoon (12 PM – 6 PM) ☀️ Hot and Humid, Isolated Thunderstorms Temperature: 25°C (77°F) → 28°C (82°F) Wind: S 15–25 km/h (9–15 mph) Precipitation: 30% chance of isolated thunderstorms Humidity: 85% Description: Feeling hot and muggy. A few pop-up thunderstorms are possible. Evening (6 PM – 12 AM) ☁️ Partly Cloudy, Humid Temperature: 28°C (82°F) → 21°C (70°F) Wind: SW 10–15 km/h (6–9 mph) Precipitation: 20% chance of a shower Humidity: 88% Description: Remaining warm and humid with some cloudiness. Overnight (12 AM – 6 AM) ☁️ Cloudy, Humid Temperature: 21°C (70°F) → 18°C (64°F) Wind: W 5–10 km/h (3–6 mph) Precipitation: 10% Humidity: 90% Description: Humid conditions continue overnight under cloudy skies. Tomorrow’s Outlook: ☀️ Partly Cloudy, Humid High: 29°C (84°F) | Low: 19°C (66°F) Rain Chance: 30% in the afternoon Wind: S 10–20 km/h (6–12 mph) Air Quality: Moderate (AQI 70) UV Index: High (8) – Protect yourself from the sun Date: Wednesday, April 24, 2025 Sunrise: 6:19 AM Sunset: 7:41 PM Morning (6 AM – 12 PM) 🌥️ Partly Cloudy, Cool Temperature: 8°C (46°F) → 14°C (57°F) Wind: W 10–15 km/h (6–9 mph) Precipitation: 10% Humidity: 70% Description: A cool morning with a mix of sun and clouds. Afternoon (12 PM – 6 PM) 🌦️ Partly Cloudy, Chance of Showers Temperature: 14°C (57°F) → 17°C (63°F) Wind: W 15–20 km/h (9–12 mph) Precipitation: 30% chance of scattered showers Humidity: 60% Description: Becoming breezy with a chance of light showers developing. Evening (6 PM – 12 AM) ☁️ Cloudy, Showers Temperature: 17°C (63°F) → 12°C (54°F) Wind: NW 10–15 km/h (6–9 mph) Precipitation: 50% chance of showers Humidity: 75% Description: Showers likely to continue into the evening. Overnight (12 AM – 6 AM) 🌧️ Showers Temperature: 12°C (54°F) → 9°C (48°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 60% chance of showers Humidity: 85% Description: Scattered showers expected overnight. Tomorrow’s Outlook: 🌥️ Partly Cloudy, Less Rain High: 19°C (66°F) | Low: 10°C (50°F) Rain Chance: 20% in the morning Wind: N 10–15 km/h (6–9 mph) Air Quality: Good (AQI 45) UV Index: Moderate (5) Date: Wednesday, April 24, 2025 Sunrise: 6:01 AM Sunset: 7:59 PM Morning (6 AM – 12 PM) ☀️ Sunny and Very Warm Temperature: 22°C (72°F) → 28°C (82°F) Wind: S 15–20 km/h (9–12 mph) Precipitation: 0% (Dry) Humidity: 70% Description: A very warm and sunny start, feeling like summer. Afternoon (12 PM – 6 PM) ☀️ Hot, Breezy Temperature: 28°C (82°F) → 32°C (90°F) Wind: SW 20–30 km/h (12–19 mph) Precipitation: 5% Humidity: 55% Description: Temperatures soaring under sunny skies. A noticeable breeze. Evening (6 PM – 12 AM) ☀️ Clear and Warm Temperature: 32°C (90°F) → 24°C (75°F) Wind: W 15–20 km/h (9–12 mph) Precipitation: 0% Humidity: 60% Description: Warm evening with clear skies. Overnight (12 AM – 6 AM) 🌙 Clear and Mild Temperature: 24°C (75°F) → 20°C (68°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% Humidity: 70% Description: Mild overnight temperatures. Tomorrow’s Outlook: ☀️ Hot High: 33°C (91°F) | Low: 21°C (70°F) Rain Chance: 10% Wind: SW 15–25 km/h (9–15 mph) Air Quality: Moderate (AQI 80) UV Index: Very High (9) – Extreme caution recommended Date: Wednesday, April 24, 2025 Sunrise: 6:20 AM Sunset: 7:40 PM Morning (6 AM – 12 PM) ☁️ Overcast, Cold Temperature: 5°C (41°F) → 9°C (48°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 20% chance of drizzle Humidity: 80% Description: Grey and cold with a chance of light drizzle. Afternoon (12 PM – 6 PM) ☁️ Cloudy and Cold Temperature: 9°C (48°F) → 11°C (52°F) Wind: N 15–20 km/h (9–12 mph) Precipitation: 30% chance of light rain Humidity: 85% Description: Remaining cold and cloudy with a higher chance of light rain. Evening (6 PM – 12 AM) 🌧️ Light Rain, Cold Temperature: 11°C (52°F) → 7°C (45°F) Wind: NE 10–15 km/h (6–9 mph) Precipitation: 60% chance of light rain Humidity: 90% Description: Light rain likely to continue into a cold evening. Overnight (12 AM – 6 AM) ☔ Rain, Freezing Possible Temperature: 7°C (45°F) → 3°C (37°F) Wind: E 10–15 km/h (6–9 mph) Precipitation: 70% chance of rain, potential for freezing rain on elevated surfaces Humidity: 94% Description: Rain overnight with a risk of freezing rain as temperatures approach freezing. Tomorrow’s Outlook: 🌧️ Rain, Cold High: 10°C (50°F) | Low: 2°C (36°F) Rain Chance: 80% in the morning Wind: E 15–20 km/h (9–12 mph) Air Quality: Good (AQI 28) UV Index: Very Low (1) Date: Wednesday, April 24, 2025 Sunrise: 6:04 AM Sunset: 7:56 PM Morning (6 AM – 12 PM) ☀️ Sunny and Warm Temperature: 18°C (64°F) → 23°C (73°F) Wind: S 10–15 km/h (6–9 mph) Precipitation: 0% (Dry) Humidity: 65% Description: A warm and sunny start. Afternoon (12 PM – 6 PM) ☀️ Sunny and Hot Temperature: 23°C (73°F) → 27°C (81°F) Wind: SW 15–20 km/h (9–12 mph) Precipitation: 0% (No rain) Humidity: 50% Description: Becoming hot under sunny skies. Evening (6 PM – 12 AM) ☀️ Clear and Warm Temperature: 27°C (81°F) → 20°C (68°F) Wind: W 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 55% Description: Warm evening with clear skies. Overnight (12 AM – 6 AM) 🌙 Clear and Mild Temperature: 20°C (68°F) → 16°C (61°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% Humidity: 65% Description: Mild overnight temperatures. Tomorrow’s Outlook: ☀️ Sunny High: 29°C (84°F) | Low: 17°C (63°F) Rain Chance: 0% Wind: SW 15–20 km/h (9–12 mph) Air Quality: Good (AQI 52) UV Index: High (7) – Sunscreen essential Date: Wednesday, April 24, 2025 Sunrise: 6:15 AM Sunset: 7:45 PM Morning (6 AM – 12 PM) ☀️ Partly Cloudy Temperature: 12°C (54°F) → 18°C (64°F) Wind: NW 10–15 km/h (6–9 mph) Precipitation: 10% chance (Dry) Humidity: 75% Description: A cool start with increasing sunshine. Light breeze, comfortable for outdoor activities. Afternoon (12 PM – 6 PM) ☀️ Mostly Sunny Temperature: 18°C (64°F) → 22°C (72°F) Wind: W 15–20 km/h (9–12 mph), gusts up to 25 km/h (15 mph) Precipitation: 0% (No rain) Humidity: 60% Description: Pleasant and mild with steady sunshine. A light jacket may be needed in the shade. Evening (6 PM – 12 AM) 🌙 Clear Skies Temperature: 18°C (64°F) → 14°C (57°F) Wind: NW 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 70% Description: Cool and calm, perfect for a stroll under the stars. Overnight (12 AM – 6 AM) 🌫️ Patchy Fog Temperature: 14°C (57°F) → 10°C (50°F) Wind: Light & variable, 5 km/h (3 mph) Precipitation: 20% chance of light mist Humidity: 85% Description: Fog may develop in low-lying areas; visibility reduced. Tomorrow’s Outlook: 🌦️ Partly Cloudy, Late Showers High: 20°C (68°F) | Low: 11°C (52°F) Rain Chance: 40% in the evening Wind: SE 10–15 km/h (6–9 mph) Air Quality: Good (AQI 32) UV Index: Moderate (5) – Sunscreen recommended Date: Wednesday, April 24, 2025 Sunrise: 6:08 AM Sunset: 7:52 PM Morning (6 AM – 12 PM) 🌧️ Heavy Rain Temperature: 15°C (59°F) → 16°C (61°F) Wind: E 25–35 km/h (15–22 mph) Precipitation: 90% chance of heavy rain Humidity: 95% Description: Intense rainfall expected, potential for localized flooding. Afternoon (12 PM – 6 PM) ⛈️ Thunderstorms, Heavy Rain Temperature: 16°C (61°F) → 17°C (63°F) Wind: S 30–45 km/h (19–28 mph), gusts up to 60 km/h (37 mph) Precipitation: 95% chance of heavy rain and thunderstorms Humidity: 96% Description: Thunderstorms and heavy rain continuing, creating hazardous conditions. Evening (6 PM – 12 AM) ☔ Rain Easing Temperature: 17°C (63°F) → 15°C (59°F) Wind: SW 20–30 km/h (12–19 mph) Precipitation: 80% chance of rain, intensity decreasing Humidity: 94% Description: Rain slowly becoming less heavy but still persistent. Overnight (12 AM – 6 AM) 🌧️ Light Rain Temperature: 15°C (59°F) → 13°C (55°F) Wind: W 15–25 km/h (9–15 mph) Precipitation: 60% chance of light rain Humidity: 90% Description: Lighter rain showers expected overnight. Tomorrow’s Outlook: ☁️ Cloudy, Chance of Showers High: 19°C (66°F) | Low: 14°C (57°F) Rain Chance: 40% in the morning Wind: W 15–20 km/h (9–12 mph) Air Quality: Moderate (AQI 58) UV Index: Low (1) Date: Wednesday, April 24, 2025 Sunrise: 6:12 AM Sunset: 7:48 PM Morning (6 AM – 12 PM) ☀️ Sunny Temperature: 15°C (59°F) → 20°C (68°F) Wind: SW 5–10 km/h (3–6 mph) Precipitation: 0% (Dry) Humidity: 70% Description: Bright and sunny start, warming up quickly. Pleasant conditions. Afternoon (12 PM – 6 PM) ☀️ Sunny Temperature: 20°C (68°F) → 25°C (77°F) Wind: SW 10–15 km/h (6–9 mph) Precipitation: 0% (No rain) Humidity: 55% Description: Warm and sunny, ideal for outdoor activities. Stay hydrated. Evening (6 PM – 12 AM) ☀️ Clear Temperature: 25°C (77°F) → 18°C (64°F) Wind: W 5–10 km/h (3–6 mph) Precipitation: 0% Humidity: 65% Description: Warm evening, skies remain clear. Great for a sunset walk. Overnight (12 AM – 6 AM) 🌙 Clear Temperature: 18°C (64°F) → 14°C (57°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% Humidity: 75% Description: Cool and calm overnight under clear skies. Tomorrow’s Outlook: ☀️ Sunny High: 26°C (79°F) | Low: 15°C (59°F) Rain Chance: 0% Wind: W 10–15 km/h (6–9 mph) Air Quality: Good (AQI 45) UV Index: High (7) – Sunscreen essential Date: Wednesday, April 24, 2025 Sunrise: 6:05 AM Sunset: 7:55 PM Morning (6 AM – 12 PM) 🌫️ Dense Fog Temperature: 8°C (46°F) → 12°C (54°F) Wind: Light & variable, 5 km/h (3 mph) Precipitation: 10% chance of mist Humidity: 98% Description: Very low visibility due to dense fog. Drive with caution. Afternoon (12 PM – 6 PM) ☁️ Fog Dissipating, Cloudy Temperature: 12°C (54°F) → 14°C (57°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 20% chance of drizzle Humidity: 90% Description: Fog slowly lifting but skies remain cloudy and damp. Evening (6 PM – 12 AM) ☁️ Cloudy Temperature: 14°C (57°F) → 11°C (52°F) Wind: N 15–20 km/h (9–12 mph) Precipitation: 30% chance of light rain Humidity: 85% Description: Overcast and cool with a slight chance of light rain showers. Overnight (12 AM – 6 AM) 🌧️ Light Rain Temperature: 11°C (52°F) → 8°C (46°F) Wind: N 20–25 km/h (12–15 mph) Precipitation: 70% chance of light rain Humidity: 92% Description: Rain likely to develop and persist overnight. Tomorrow’s Outlook: 🌧️ Rain Likely High: 13°C (55°F) | Low: 7°C (45°F) Rain Chance: 80% throughout the day Wind: N 20–30 km/h (12–19 mph) Air Quality: Good (AQI 38) UV Index: Very Low (1) Date: Wednesday, April 24, 2025 Sunrise: 6:18 AM Sunset: 7:42 PM Morning (6 AM – 12 PM) 🥶 Frosty Start, Sunny Temperature: -2°C (28°F) → 8°C (46°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% (Dry) Humidity: 60% Description: A cold start with widespread frost, but bright sunshine expected. Afternoon (12 PM – 6 PM) ☀️ Sunny and Mild Temperature: 8°C (46°F) → 14°C (57°F) Wind: W 10–15 km/h (6–9 mph) Precipitation: 0% (No rain) Humidity: 45% Description: Pleasant and mild under clear, sunny skies. Great day for a walk. Evening (6 PM – 12 AM) ☀️ Clear and Cool Temperature: 14°C (57°F) → 5°C (41°F) Wind: NW 5–10 km/h (3–6 mph) Precipitation: 0% Humidity: 55% Description: Skies remain clear as temperatures drop after sunset. Overnight (12 AM – 6 AM) ✨ Clear, Cold Temperature: 5°C (41°F) → -1°C (30°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% Humidity: 65% Description: Very cold overnight, potential for frost again in low areas. Tomorrow’s Outlook: ☀️ Sunny, Cold Morning High: 15°C (59°F) | Low: -3°C (27°F) Rain Chance: 0% Wind: SW 10–15 km/h (6–9 mph) Air Quality: Excellent (AQI 25) UV Index: Moderate (4) Date: Wednesday, April 24, 2025 Sunrise: 6:00 AM Sunset: 8:00 PM Morning (6 AM – 12 PM) ⛈️ Thunderstorms Developing Temperature: 18°C (64°F) → 22°C (72°F) Wind: S 20–30 km/h (12–19 mph) Precipitation: 70% chance of thunderstorms Humidity: 85% Description: Increasing cloudiness with a high likelihood of morning thunderstorms. Afternoon (12 PM – 6 PM) ⚡ Thunderstorms Likely Temperature: 22°C (72°F) → 20°C (68°F) Wind: SW 25–40 km/h (15–25 mph), gusts up to 55 km/h (34 mph) Precipitation: 90% chance of widespread thunderstorms, possibly severe Humidity: 90% Description: Strong thunderstorms expected with heavy rain, lightning, and strong winds. Seek shelter. Evening (6 PM – 12 AM) 🌦️ Showers Lingering Temperature: 20°C (68°F) → 16°C (61°F) Wind: W 15–25 km/h (9–15 mph) Precipitation: 60% chance of showers Humidity: 92% Description: Thunderstorms moving out, but showers may continue into the evening. Overnight (12 AM – 6 AM) ☁️ Cloudy, Chance of Showers Temperature: 16°C (61°F) → 14°C (57°F) Wind: NW 10–15 km/h (6–9 mph) Precipitation: 40% chance of light showers Humidity: 88% Description: Skies remain cloudy with a chance of scattered showers overnight. Tomorrow’s Outlook: 🌥️ Partly Cloudy High: 24°C (75°F) | Low: 15°C (59°F) Rain Chance: 20% Wind: N 10–20 km/h (6–12 mph) Air Quality: Moderate (AQI 68) UV Index: Moderate (5) Date: Wednesday, April 24, 2025 Sunrise: 6:10 AM Sunset: 7:50 PM Morning (6 AM – 12 PM) 💨 Windy Temperature: 12°C (54°F) → 17°C (63°F) Wind: W 30–45 km/h (19–28 mph) Precipitation: 0% (Dry) Humidity: 65% Description: Breezy conditions developing, feeling cooler in the wind. Afternoon (12 PM – 6 PM) 💨 Very Windy Temperature: 17°C (63°F) → 19°C (66°F) Wind: W 40–55 km/h (25–34 mph), gusts up to 70 km/h (43 mph) Precipitation: 10% chance of isolated light showers Humidity: 50% Description: Strong winds expected, potentially causing difficulty with outdoor activities. Evening (6 PM – 12 AM) 💨 Windy, Calming Temperature: 19°C (66°F) → 15°C (59°F) Wind: NW 20–35 km/h (12–22 mph) Precipitation: 5% Humidity: 55% Description: Winds beginning to decrease but remaining breezy. Overnight (12 AM – 6 AM) 🌬️ Breezy Temperature: 15°C (59°F) → 11°C (52°F) Wind: N 15–25 km/h (9–15 mph) Precipitation: 0% Humidity: 60% Description: Breezy overnight, but significantly less windy than during the day. Tomorrow’s Outlook: ☀️ Sunny, Less Wind High: 21°C (70°F) | Low: 12°C (54°F) Rain Chance: 0% Wind: NW 10–20 km/h (6–12 mph) Air Quality: Good (AQI 40) UV Index: Moderate (6) Date: Wednesday, April 24, 2025 Sunrise: 6:14 AM Sunset: 7:46 PM Morning (6 AM – 12 PM) ❄️ Flurries Temperature: 0°C (32°F) → 2°C (36°F) Wind: NE 10–15 km/h (6–9 mph) Precipitation: 40% chance of light snow flurries Humidity: 70% Description: Unseasonably cold with a chance of snow flurries. Afternoon (12 PM – 6 PM) 🌨️ Light Snow Temperature: 2°C (36°F) → 3°C (37°F) Wind: NE 15–20 km/h (9–12 mph) Precipitation: 60% chance of light snow accumulation Humidity: 75% Description: Light snow may accumulate, making roads slippery. Dress warmly. Evening (6 PM – 12 AM) ❄️ Snow Tapering Temperature: 3°C (37°F) → 1°C (34°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 50% chance, tapering off Humidity: 80% Description: Snow becoming less frequent, but roads may remain slick. Overnight (12 AM – 6 AM) ✨ Clear and Cold Temperature: 1°C (34°F) → -3°C (27°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% Humidity: 70% Description: Skies clearing but temperatures dropping well below freezing. Tomorrow’s Outlook: ☀️ Sunny, Cold Morning High: 10°C (50°F) | Low: -4°C (25°F) Rain Chance: 0% Wind: W 5–10 km/h (3–6 mph) Air Quality: Excellent (AQI 18) UV Index: Moderate (3) Date: Wednesday, April 24, 2025 Sunrise: 6:07 AM Sunset: 7:53 PM Morning (6 AM – 12 PM) 🌞 Sunny and Warm Temperature: 18°C (64°F) → 24°C (75°F) Wind: S 10–15 km/h (6–9 mph) Precipitation: 0% (Dry) Humidity: 60% Description: A warm and sunny start to the day. Afternoon (12 PM – 6 PM) 🥵 Hot and Sunny Temperature: 24°C (75°F) → 29°C (84°F) Wind: SW 15–20 km/h (9–12 mph) Precipitation: 0% (No rain) Humidity: 40% Description: Becoming hot under direct sunshine. Stay hydrated and seek shade. Evening (6 PM – 12 AM) ☀️ Warm and Clear Temperature: 29°C (84°F) → 22°C (72°F) Wind: W 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 50% Description: A warm evening with clear skies. Overnight (12 AM – 6 AM) 🌙 Clear and Mild Temperature: 22°C (72°F) → 18°C (64°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% Humidity: 60% Description: Mild overnight temperatures with clear skies. Tomorrow’s Outlook: ☀️ Hot High: 31°C (88°F) | Low: 19°C (66°F) Rain Chance: 0% Wind: S 10–20 km/h (6–12 mph) Air Quality: Moderate (AQI 75) UV Index: Very High (8) – Protect yourself from the sun Date: Wednesday, April 24, 2025 Sunrise: 6:11 AM Sunset: 7:49 PM Morning (6 AM – 12 PM) ☁️ Cloudy Temperature: 10°C (50°F) → 13°C (55°F) Wind: E 10–15 km/h (6–9 mph) Precipitation: 30% chance of light drizzle Humidity: 80% Description: Dull and cloudy with a possibility of light drizzle. Afternoon (12 PM – 6 PM) ☁️ Cloudy Temperature: 13°C (55°F) → 15°C (59°F) Wind: NE 15–20 km/h (9–12 mph) Precipitation: 40% chance of light rain Humidity: 85% Description: Remaining cloudy with an increasing chance of light rain developing. Evening (6 PM – 12 AM) 🌧️ Light Rain Temperature: 15°C (59°F) → 12°C (54°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 70% chance of light rain Humidity: 90% Description: Light rain likely to continue into the evening. Overnight (12 AM – 6 AM) ☔ Rain Temperature: 12°C (54°F) → 9°C (48°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 80% chance of rain Humidity: 94% Description: Rain expected overnight. Tomorrow’s Outlook: 🌧️ Rain Likely High: 14°C (57°F) | Low: 8°C (46°F) Rain Chance: 70% throughout the day Wind: N 15–25 km/h (9–15 mph) Air Quality: Good (AQI 35) UV Index: Low (1) Date: Wednesday, April 24, 2025 Sunrise: 6:15 AM Sunset: 7:45 PM Morning (6 AM – 12 PM) 💨 Breezy, Mostly Sunny Temperature: 14°C (57°F) → 19°C (66°F) Wind: W 20–30 km/h (12–19 mph) Precipitation: 0% (Dry) Humidity: 60% Description: A breezy start with plenty of sunshine. Afternoon (12 PM – 6 PM) ☀️ Mostly Sunny, Windy Temperature: 19°C (66°F) → 22°C (72°F) Wind: W 25–40 km/h (15–25 mph) Precipitation: 0% (No rain) Humidity: 50% Description: Winds picking up in the afternoon under mostly sunny skies. Evening (6 PM – 12 AM) ☀️ Clear, Breezy Temperature: 22°C (72°F) → 16°C (61°F) Wind: NW 15–25 km/h (9–15 mph) Precipitation: 0% Humidity: 55% Description: Skies clearing with winds gradually easing through the evening. Overnight (12 AM – 6 AM) 🌙 Clear, Cool Temperature: 16°C (61°F) → 12°C (54°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 65% Description: Cool and clear overnight. Tomorrow’s Outlook: ☀️ Sunny, Less Wind High: 23°C (73°F) | Low: 13°C (55°F) Rain Chance: 0% Wind: NW 10–20 km/h (6–12 mph) Air Quality: Good (AQI 48) UV Index: Moderate (6) Date: Wednesday, April 24, 2025 Sunrise: 6:03 AM Sunset: 7:57 PM Morning (6 AM – 12 PM) 🌧️ Heavy Rain Temperature: 15°C (59°F) → 16°C (61°F) Wind: SE 25–35 km/h (15–22 mph) Precipitation: 90% chance of heavy rain Humidity: 95% Description: Intense rainfall expected, potential for localized flooding. Afternoon (12 PM – 6 PM) ⛈️ Thunderstorms, Heavy Rain Temperature: 16°C (61°F) → 17°C (63°F) Wind: S 30–45 km/h (19–28 mph), gusts up to 60 km/h (37 mph) Precipitation: 95% chance of heavy rain and thunderstorms Humidity: 96% Description: Thunderstorms and heavy rain continuing, creating hazardous conditions. Evening (6 PM – 12 AM) ☔ Rain Easing Temperature: 17°C (63°F) → 15°C (59°F) Wind: SW 20–30 km/h (12–19 mph) Precipitation: 80% chance of rain, intensity decreasing Humidity: 94% Description: Rain slowly becoming less heavy but still persistent. Overnight (12 AM – 6 AM) 🌧️ Light Rain Temperature: 15°C (59°F) → 13°C (55°F) Wind: W 15–25 km/h (9–15 mph) Precipitation: 60% chance of light rain Humidity: 90% Description: Lighter rain showers expected overnight. Tomorrow’s Outlook: ☁️ Cloudy, Chance of Showers High: 19°C (66°F) | Low: 14°C (57°F) Rain Chance: 40% in the morning Wind: W 15–20 km/h (9–12 mph) Air Quality: Moderate (AQI 58) UV Index: Low (1) Date: Wednesday, April 24, 2025 Sunrise: 6:16 AM Sunset: 7:44 PM Morning (6 AM – 12 PM) 🥶 Very Cold, Sunny Temperature: -5°C (23°F) → 5°C (41°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% (Dry) Humidity: 50% Description: Exceptionally cold start with widespread hard frost. Bundle up. Afternoon (12 PM – 6 PM) ☀️ Sunny but Cold Temperature: 5°C (41°F) → 10°C (50°F) Wind: NW 10–15 km/h (6–9 mph) Precipitation: 0% (No rain) Humidity: 40% Description: Sunshine but temperatures remain well below average. Evening (6 PM – 12 AM) ✨ Clear and Very Cold Temperature: 10°C (50°F) → 0°C (32°F) Wind: N 5–10 km/h (3–6 mph) Precipitation: 0% Humidity: 50% Description: Rapid temperature drop after sunset under clear skies. Overnight (12 AM – 6 AM) ✨ Clear, Freezing Temperature: 0°C (32°F) → -6°C (21°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% Humidity: 60% Description: Dangerously cold overnight with potential for significant freezing. Tomorrow’s Outlook: ☀️ Sunny, Bitterly Cold Morning High: 12°C (54°F) | Low: -7°C (19°F) Rain Chance: 0% Wind: NW 5–10 km/h (3–6 mph) Air Quality: Excellent (AQI 15) UV Index: Moderate (3) Date: Wednesday, April 24, 2025 Sunrise: 6:09 AM Sunset: 7:51 PM Morning (6 AM – 12 PM) 💨 Very Breezy, Cloudy Temperature: 13°C (55°F) → 16°C (61°F) Wind: E 30–40 km/h (19–25 mph) Precipitation: 20% chance of drizzle Humidity: 75% Description: A strong east wind making it feel cool despite temperatures. Cloudy skies. Afternoon (12 PM – 6 PM) ☁️ Cloudy, Windy Temperature: 16°C (61°F) → 18°C (64°F) Wind: E 35–50 km/h (22–31 mph), gusts up to 65 km/h (40 mph) Precipitation: 30% chance of light rain Humidity: 70% Description: Strong winds persist with cloudy skies and a chance of light rain. Evening (6 PM – 12 AM) 🌧️ Light Rain, Windy Temperature: 18°C (64°F) → 14°C (57°F) Wind: NE 25–35 km/h (15–22 mph) Precipitation: 60% chance of light rain Humidity: 80% Description: Light rain likely to develop while remaining windy. Overnight (12 AM – 6 AM) ☔ Rain, Breezy Temperature: 14°C (57°F) → 11°C (52°F) Wind: N 20–30 km/h (12–19 mph) Precipitation: 70% chance of rain Humidity: 88% Description: Rain continues overnight with breezy conditions. Tomorrow’s Outlook: 🌧️ Rain, Less Wind High: 16°C (61°F) | Low: 10°C (50°F) Rain Chance: 60% in the morning Wind: N 15–25 km/h (9–15 mph) Air Quality: Good (AQI 42) UV Index: Low (1) Date: Wednesday, April 24, 2025 Sunrise: 6:13 AM Sunset: 7:47 PM Morning (6 AM – 12 PM) ☀️ Sunny and Pleasant Temperature: 16°C (61°F) → 21°C (70°F) Wind: SW 10–15 km/h (6–9 mph) Precipitation: 0% (Dry) Humidity: 60% Description: A beautiful morning with abundant sunshine and comfortable temperatures. Afternoon (12 PM – 6 PM) ☀️ Sunny and Warm Temperature: 21°C (70°F) → 26°C (79°F) Wind: SW 15–20 km/h (9–12 mph) Precipitation: 0% (No rain) Humidity: 50% Description: Continued sunshine and warming temperatures. Evening (6 PM – 12 AM) ☀️ Clear and Warm Temperature: 26°C (79°F) → 19°C (66°F) Wind: W 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 55% Description: Clear skies and warm evening temperatures. Overnight (12 AM – 6 AM) 🌙 Clear and Mild Temperature: 19°C (66°F) → 15°C (59°F) Wind: Calm, 0–5 km/h (0–3 mph) Precipitation: 0% Humidity: 65% Description: Mild overnight under clear skies. Tomorrow’s Outlook: ☀️ Sunny High: 28°C (82°F) | Low: 16°C (61°F) Rain Chance: 0% Wind: SW 15–20 km/h (9–12 mph) Air Quality: Good (AQI 50) UV Index: High (7) – Sunscreen essential Date: Wednesday, April 24, 2025 Sunrise: 6:06 AM Sunset: 7:54 PM Morning (6 AM – 12 PM) ☁️ Cloudy Temperature: 9°C (48°F) → 12°C (54°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 10% chance of drizzle Humidity: 85% Description: Dull and cloudy with a slight chance of drizzle. Afternoon (12 PM – 6 PM) ☁️ Cloudy Temperature: 12°C (54°F) → 14°C (57°F) Wind: N 15–20 km/h (9–12 mph) Precipitation: 20% chance of light rain Humidity: 88% Description: Remaining cloudy with an increasing chance of light rain. Evening (6 PM – 12 AM) 🌧️ Light Rain Temperature: 14°C (57°F) → 11°C (52°F) Wind: NE 10–15 km/h (6–9 mph) Precipitation: 60% chance of light rain Humidity: 92% Description: Light rain likely to persist through the evening. Overnight (12 AM – 6 AM) ☔ Rain Temperature: 11°C (52°F) → 8°C (46°F) Wind: E 10–15 km/h (6–9 mph) Precipitation: 70% chance of rain Humidity: 95% Description: Rain expected overnight. Tomorrow’s Outlook: 🌧️ Rain High: 13°C (55°F) | Low: 7°C (45°F) Rain Chance: 80% throughout the day Wind: E 15–20 km/h (9–12 mph) Air Quality: Good (AQI 30) UV Index: Very Low (1) Date: Wednesday, April 24, 2025 Sunrise: 6:17 AM Sunset: 7:43 PM Morning (6 AM – 12 PM) 💨 Windy and Cold Temperature: 3°C (37°F) → 8°C (46°F) Wind: NW 30–45 km/h (19–28 mph) Precipitation: 0% (Dry) Humidity: 50% Description: A cold wind making it feel much colder. Mostly sunny. Afternoon (12 PM – 6 PM) ☀️ Sunny and Windy Temperature: 8°C (46°F) → 12°C (54°F) Wind: NW 35–50 km/h (22–31 mph) Precipitation: 0% (No rain) Humidity: 40% Description: Strong winds continue under sunny skies. Evening (6 PM – 12 AM) ✨ Clear and Cold, Windy Temperature: 12°C (54°F) → 4°C (39°F) Wind: N 20–30 km/h (12–19 mph) Precipitation: 0% Humidity: 50% Description: Winds gradually easing but remaining breezy and cold. Overnight (12 AM – 6 AM) ✨ Clear and Freezing Temperature: 4°C (39°F) → -2°C (28°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 60% Description: Very cold overnight with frost likely. Tomorrow’s Outlook: ☀️ Sunny, Less Wind High: 14°C (57°F) | Low: -1°C (30°F) Rain Chance: 0% Wind: NW 10–15 km/h (6–9 mph) Air Quality: Excellent (AQI 20) UV Index: Moderate (4) Date: Wednesday, April 24, 2025 Sunrise: 6:17 AM Sunset: 7:47 PM Morning (6 AM – 12 PM) ☀️ Sunny Temperature: 10°C (50°F) → 20°C (68°F) Wind: S 5–10 km/h (3–6 mph) Precipitation: 0% (Dry) Humidity: 70% Description: Bright sunshine and rapidly warming up. Pleasant conditions to start the day. Afternoon (12 PM – 6 PM) ☀️ Sunny Temperature: 20°C (68°F) → 24°C (75°F) Wind: SW 15–20 km/h (9–12 mph) Precipitation: 0% (No rain) Humidity: 55% Description: Hot and sunny, peak temperature in the early afternoon. Stay hydrated. Evening (6 PM – 12 AM) 🌤️ Partly Cloudy Temperature: 23°C (73°F) → 17°C (63°F) Wind: W 10–15 km/h (6–9 mph) Precipitation: 10% chance Humidity: 65% Description: Clouds increasing towards evening as temperatures cool off. Still pleasant. Overnight (12 AM – 6 AM) ☁️ Cloudy Temperature: 17°C (63°F) → 13°C (55°F) Wind: NW 5–10 km/h (3–6 mph) Precipitation: 30% chance of light drizzle Humidity: 80% Description: Overcast with a slight chance of patchy light rain. Tomorrow’s Outlook: 🌧️ Rain Likely High: 18°C (64°F) | Low: 12°C (54°F) Rain Chance: 70% throughout the day Wind: N 15–20 km/h (9–12 mph) Air Quality: Moderate (AQI 55) UV Index: Low (2) Date: Wednesday, April 24, 2025 Sunrise: 6:16 AM Sunset: 7:46 PM Morning (6 AM – 12 PM) ☁️ Cloudy Temperature: 8°C (46°F) → 12°C (54°F) Wind: NE 10–15 km/h (6–9 mph) Precipitation: 40% chance of light rain Humidity: 85% Description: Gray and damp start with a chance of light showers. Dress in layers. Afternoon (12 PM – 6 PM) 🌧️ Light Rain Temperature: 11°C (52°F) → 10°C (50°F) Wind: NE 15–20 km/h (9–12 mph) Precipitation: 60% chance of rain Humidity: 90% Description: Steady light rain expected throughout the afternoon. An umbrella is needed. Evening (6 PM – 12 AM) 🌧️ Rain Temperature: 10°C (50°F) → 9°C (48°F) Wind: N 20–25 km/h (12–16 mph) Precipitation: 70% chance of moderate rain Humidity: 92% Description: Rain continues, potentially heavier at times. Cool and wet. Overnight (12 AM – 6 AM) 🌧️ Rain Temperature: 9°C (48°F) → 8°C (46°F) Wind: N 15–20 km/h (9–12 mph) Precipitation: 80% chance of rain Humidity: 95% Description: Rain persists overnight. Roads may be slick. Tomorrow’s Outlook: ☁️ Cloudy, Lingering Showers High: 11°C (52°F) | Low: 7°C (45°F) Rain Chance: 50% in the morning Wind: N 10–15 km/h (6–9 mph) Air Quality: Good (AQI 38) UV Index: Very Low (1) Date: Wednesday, April 24, 2025 Sunrise: 6:18 AM Sunset: 7:48 PM Morning (6 AM – 12 PM) 🥶 Freezing Fog Temperature: -2°C (28°F) → 4°C (39°F) Wind: Calm Precipitation: 0% Humidity: 98% Description: Dense freezing fog causing very low visibility. Conditions slippery. Afternoon (12 PM – 6 PM) 🌫️ Fog Lifting, ☁️ Cloudy Temperature: 4°C (39°F) → 7°C (45°F) Wind: Light & variable, 5 km/h (3 mph) Precipitation: 10% chance Humidity: 90% Description: Fog slowly lifting but skies remain overcast. Still chilly. Evening (6 PM – 12 AM) ☁️ Cloudy Temperature: 7°C (45°F) → 5°C (41°F) Wind: E 5–10 km/h (3–6 mph) Precipitation: 20% chance of light drizzle/mist Humidity: 88% Description: Overcast and cool with a slight chance of mist. Overnight (12 AM – 6 AM) ❄️ Light Snow Chance Temperature: 5°C (41°F) → 0°C (32°F) Wind: E 10–15 km/h (6–9 mph) Precipitation: 30% chance of light snow/flurries Humidity: 90% Description: Temperatures dropping to freezing overnight; a few flurries possible, especially on higher ground. Tomorrow’s Outlook: ☁️ Cloudy, Cold High: 5°C (41°F) | Low: -1°C (30°F) Rain Chance: 20% Wind: E 10–15 km/h (6–9 mph) Air Quality: Good (AQI 25) UV Index: Very Low (0) Date: Wednesday, April 24, 2025 Sunrise: 6:15 AM Sunset: 7:45 PM Morning (6 AM – 12 PM) ⛈️ Thunderstorms Likely Temperature: 15°C (59°F) → 18°C (64°F) Wind: SW 20–30 km/h (12–19 mph), gusts up to 40 km/h (25 mph) Precipitation: 80% chance of thunderstorms Humidity: 80% Description: Severe weather is possible with heavy rain, lightning, and strong winds. Seek shelter. Afternoon (12 PM – 6 PM) 🌦️ Showers Clearing Temperature: 18°C (64°F) → 20°C (68°F) Wind: W 25–35 km/h (16–22 mph), gusts up to 45 km/h (28 mph) Precipitation: 50% chance of showers early, decreasing Humidity: 70% Description: Storms gradually moving out, but lingering showers and strong winds remain. Evening (6 PM – 12 AM) 🌤️ Partly Cloudy, Windy Temperature: 19°C (66°F) → 15°C (59°F) Wind: W 30–40 km/h (19–25 mph), gusts up to 50 km/h (31 mph) Precipitation: 20% chance Humidity: 65% Description: Clearing skies but winds will remain strong. Gusty conditions possible. Overnight (12 AM – 6 AM) 💨 Windy, Clear Temperature: 15°C (59°F) → 13°C (55°F) Wind: W 20–30 km/h (12–19 mph) Precipitation: 10% chance Humidity: 60% Description: Winds slowly diminishing overnight under clear skies. Still breezy. Tomorrow’s Outlook: ☀️ Sunny and Breezy High: 22°C (72°F) | Low: 14°C (57°F) Rain Chance: 10% Wind: W 15–25 km/h (9–16 mph) Air Quality: Good (AQI 45) UV Index: High (7) – Sun protection essential Date: Wednesday, April 24, 2025 Sunrise: 6:19 AM Sunset: 7:49 PM Morning (6 AM – 12 PM) 💨 Very Windy, Partly Cloudy Temperature: 7°C (45°F) → 10°C (50°F) Wind: NW 30–40 km/h (19–25 mph), gusts up to 55 km/h (34 mph) Precipitation: 10% chance Humidity: 70% Description: Strong winds making it feel colder. Prepare for very blustery conditions. Afternoon (12 PM – 6 PM) 💨 Windy, Mostly Sunny Temperature: 10°C (50°F) → 12°C (54°F) Wind: NW 35–45 km/h (22–28 mph), gusts up to 60 km/h (37 mph) Precipitation: 0% Humidity: 60% Description: Winds peaking in the afternoon under mostly sunny skies. Secure loose objects. Evening (6 PM – 12 AM) 💨 Windy, Clear Temperature: 11°C (52°F) → 8°C (46°F) Wind: NW 25–35 km/h (16–22 mph), gusts up to 45 km/h (28 mph) Precipitation: 0% Humidity: 65% Description: Winds slowly subsiding but remaining strong. Clear and cold. Overnight (12 AM – 6 AM) 🌬️ Breezy, Clear Temperature: 8°C (46°F) → 5°C (41°F) Wind: NW 15–20 km/h (9–12 mph) Precipitation: 0% Humidity: 70% Description: Winds continue to ease overnight under clear skies. Tomorrow’s Outlook: ☀️ Sunny and Cool High: 14°C (57°F) | Low: 6°C (43°F) Rain Chance: 0% Wind: N 10–15 km/h (6–9 mph) Air Quality: Good (AQI 30) UV Index: Moderate (5) Date: Wednesday, April 24, 2025 Sunrise: 6:17 AM Sunset: 7:47 PM Morning (6 AM – 12 PM) ☀️ Sunny Temperature: 18°C (64°F) → 25°C (77°F) Wind: SW 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 60% Description: A beautiful, rapidly warming morning. Ideal for outdoor activities. Afternoon (12 PM – 6 PM) 🔥 Hot and Sunny Temperature: 25°C (77°F) → 29°C (84°F) Wind: SW 15–20 km/h (9–12 mph) Precipitation: 0% Humidity: 45% Description: Very warm afternoon under intense sunshine. Seek shade and stay hydrated. Evening (6 PM – 12 AM) ☀️ Clear and Warm Temperature: 28°C (82°F) → 22°C (72°F) Wind: W 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 50% Description: Lingering warmth into the evening under clear skies. Comfortable. Overnight (12 AM – 6 AM) 🌙 Clear and Mild Temperature: 22°C (72°F) → 19°C (66°F) Wind: Light & variable, 5 km/h (3 mph) Precipitation: 0% Humidity: 55% Description: Mild overnight temperatures with clear conditions. Tomorrow’s Outlook: ☀️ Hot and Sunny High: 31°C (88°F) | Low: 21°C (70°F) Rain Chance: 0% Wind: SW 10–15 km/h (6–9 mph) Air Quality: Moderate (AQI 65) UV Index: Very High (9) – Strong sun protection needed Date: Wednesday, April 24, 2025 Sunrise: 6:16 AM Sunset: 7:46 PM Morning (6 AM – 12 PM) 🌫️ Dense Fog Temperature: 5°C (41°F) → 8°C (46°F) Wind: Calm Precipitation: 10% chance of mist Humidity: 99% Description: Very low visibility due to dense fog. Allow extra travel time. Afternoon (12 PM – 6 PM) 🌫️ Fog Lingering, ☁️ Cloudy Temperature: 8°C (46°F) → 10°C (50°F) Wind: Light & variable, 5 km/h (3 mph) Precipitation: 20% chance of drizzle Humidity: 95% Description: Fog may be slow to clear, especially near coast/low-lying areas. Overcast otherwise. Evening (6 PM – 12 AM) ☁️ Cloudy Temperature: 10°C (50°F) → 8°C (46°F) Wind: E 5–10 km/h (3–6 mph) Precipitation: 30% chance of light rain Humidity: 93% Description: Overcast with a higher chance of light rain developing. Overnight (12 AM – 6 AM) 🌧️ Light Rain Temperature: 8°C (46°F) → 7°C (45°F) Wind: E 10–15 km/h (6–9 mph) Precipitation: 60% chance of light rain Humidity: 96% Description: Light rain likely through the overnight hours. Tomorrow’s Outlook: 🌧️ Rain Continues High: 10°C (50°F) | Low: 7°C (45°F) Rain Chance: 80% throughout the day Wind: NE 15–20 km/h (9–12 mph) Air Quality: Good (AQI 35) UV Index: Very Low (0) Date: Wednesday, April 24, 2025 Sunrise: 6:18 AM Sunset: 7:48 PM Morning (6 AM – 12 PM) ☀️ Sunny and Warm Temperature: 15°C (59°F) → 22°C (72°F) Wind: W 5–10 km/h (3–6 mph) Precipitation: 0% Humidity: 60% Description: A bright and pleasant start, quickly warming up. Afternoon (12 PM – 6 PM) ☀️ Mostly Sunny, Building Clouds Temperature: 22°C (72°F) → 25°C (77°F) Wind: SW 10–15 km/h (6–9 mph) Precipitation: 10% chance Humidity: 50% Description: Mostly sunny but watch for clouds developing, possibly towering. Evening (6 PM – 12 AM) ⛈️ Thunderstorm Risk Temperature: 24°C (75°F) → 18°C (64°F) Wind: S 15–25 km/h (9–16 mph), gusts up to 40 km/h (25 mph) Precipitation: 50% chance of scattered thunderstorms Humidity: 65% Description: Risk of thunderstorms, potentially severe with heavy rain and strong winds. Overnight (12 AM – 6 AM) 🌦️ Showers Ending Temperature: 18°C (64°F) → 16°C (61°F) Wind: W 10–15 km/h (6–9 mph) Precipitation: 30% chance of showers early, then clearing Humidity: 75% Description: Showers tapering off overnight as storms move east. Tomorrow’s Outlook: ☀️ Sunny High: 26°C (79°F) | Low: 17°C (63°F) Rain Chance: 10% Wind: NW 10–15 km/h (6–9 mph) Air Quality: Moderate (AQI 50) UV Index: High (8) – Sun protection essential Date: Wednesday, April 24, 2025 Sunrise: 6:15 AM Sunset: 7:45 PM Morning (6 AM – 12 PM) ❄️ Freezing Rain/Sleet Temperature: -1°C (30°F) → 0°C (32°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 70% chance of freezing rain/sleet Humidity: 95% Description: Hazardous travel conditions due to ice accumulation. Stay indoors if possible. Afternoon (12 PM – 6 PM) ❄️ Sleet/Snow Temperature: 0°C (32°F) → 1°C (34°F) Wind: N 15–20 km/h (9–12 mph) Precipitation: 80% chance of sleet changing to snow Humidity: 98% Description: Precipitation changes from sleet to snow. Continued slippery conditions. Evening (6 PM – 12 AM) 🌨️ Snow Temperature: 1°C (34°F) → -2°C (28°F) Wind: NE 20–25 km/h (12–16 mph) Precipitation: 90% chance of snow Humidity: 99% Description: Snow expected, potentially accumulating. Visibility reduced. Overnight (12 AM – 6 AM) 🌨️ Heavy Snow Temperature: -2°C (28°F) → -4°C (25°F) Wind: NE 25–30 km/h (16–19 mph) Precipitation: 95% chance of heavy snow Humidity: 99% Description: Heavy snow and strong winds creating blizzard-like conditions. Travel not recommended. Tomorrow’s Outlook: 🌨️ Snow Continues, Very Cold High: -3°C (27°F) | Low: -6°C (21°F) Rain Chance: 100% (as snow) Wind: NE 20–30 km/h (12–19 mph) Air Quality: Good (AQI 20) UV Index: Very Low (0) Date: Wednesday, April 24, 2025 Sunrise: 6:20 AM Sunset: 7:50 PM Morning (6 AM – 12 PM) 💨 Breezy, Clear Temperature: 12°C (54°F) → 18°C (64°F) Wind: SW 15–20 km/h (9–12 mph) Precipitation: 0% Humidity: 60% Description: Clear skies and a noticeable breeze. Pleasant but slightly windy. Afternoon (12 PM – 6 PM) ☀️ Sunny, Breezy Temperature: 18°C (64°F) → 21°C (70°F) Wind: SW 20–25 km/h (12–16 mph), gusts up to 35 km/h (22 mph) Precipitation: 0% Humidity: 50% Description: Sunshine continues with winds picking up slightly. Evening (6 PM – 12 AM) ☀️ Clear Temperature: 20°C (68°F) → 15°C (59°F) Wind: W 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 55% Description: Winds easing under clear evening skies. Overnight (12 AM – 6 AM) 🌙 Clear and Calm Temperature: 15°C (59°F) → 12°C (54°F) Wind: Light & variable, 5 km/h (3 mph) Precipitation: 0% Humidity: 60% Description: Calm and clear overnight. Tomorrow’s Outlook: ☀️ Sunny High: 23°C (73°F) | Low: 14°C (57°F) Rain Chance: 0% Wind: W 10–15 km/h (6–9 mph) Air Quality: Good (AQI 40) UV Index: High (7) – Sun protection essential Date: Wednesday, April 24, 2025 Sunrise: 6:17 AM Sunset: 7:47 PM Morning (6 AM – 12 PM) ☁️ Overcast Temperature: 10°C (50°F) → 13°C (55°F) Wind: E 10–15 km/h (6–9 mph) Precipitation: 20% chance of light rain Humidity: 85% Description: A gray morning with thick cloud cover. A slight chance of drizzle. Afternoon (12 PM – 6 PM) ☁️ Overcast Temperature: 13°C (55°F) → 14°C (57°F) Wind: E 15–20 km/h (9–12 mph) Precipitation: 30% chance of light rain Humidity: 88% Description: Skies remain overcast. Drizzle is possible. Evening (6 PM – 12 AM) ☁️ Overcast Temperature: 14°C (57°F) → 11°C (52°F) Wind: E 10–15 km/h (6–9 mph) Precipitation: 20% chance of light rain Humidity: 90% Description: Cloudy and cool throughout the evening. Overnight (12 AM – 6 AM) ☁️ Overcast Temperature: 11°C (52°F) → 9°C (48°F) Wind: Light & variable, 5 km/h (3 mph) Precipitation: 10% chance of mist Humidity: 92% Description: Lingering cloud cover and cool temperatures overnight. Tomorrow’s Outlook: ☁️ Cloudy High: 15°C (59°F) | Low: 10°C (50°F) Rain Chance: 20% Wind: E 10–15 km/h (6–9 mph) Air Quality: Good (AQI 42) UV Index: Low (2) Date: Wednesday, April 24, 2025 Sunrise: 6:16 AM Sunset: 7:46 PM Morning (6 AM – 12 PM) ☀️ Sunny and Cool Temperature: 5°C (41°F) → 15°C (59°F) Wind: NW 5–10 km/h (3–6 mph) Precipitation: 0% Humidity: 70% Description: A crisp, clear morning with temperatures rising quickly under sunshine. Afternoon (12 PM – 6 PM) ☀️ Sunny and Mild Temperature: 15°C (59°F) → 19°C (66°F) Wind: NW 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 55% Description: Continued sunshine and pleasant temperatures. Evening (6 PM – 12 AM) ☀️ Clear and Cool Temperature: 18°C (64°F) → 10°C (50°F) Wind: NW 5–10 km/h (3–6 mph) Precipitation: 0% Humidity: 60% Description: Clear skies and cooling temperatures after sunset. Overnight (12 AM – 6 AM) 🌙 Clear and Cold Temperature: 10°C (50°F) → 4°C (39°F) Wind: Calm Precipitation: 0% Humidity: 70% Description: Calm and cold overnight with the risk of frost in low-lying areas. Tomorrow’s Outlook: ☀️ Sunny and Cool High: 17°C (63°F) | Low: 5°C (41°F) Rain Chance: 0% Wind: NW 5–10 km/h (3–6 mph) Air Quality: Excellent (AQI 28) UV Index: Moderate (6) Date: Wednesday, April 24, 2025 Sunrise: 6:18 AM Sunset: 7:48 PM Morning (6 AM – 12 PM) 🌤️ Partly Cloudy, Mild Temperature: 14°C (57°F) → 20°C (68°F) Wind: S 10–15 km/h (6–9 mph) Precipitation: 10% chance Humidity: 70% Description: Mix of sun and clouds, feeling mild. Afternoon (12 PM – 6 PM) 🌥️ Mostly Cloudy Temperature: 20°C (68°F) → 23°C (73°F) Wind: S 15–20 km/h (9–12 mph) Precipitation: 20% chance of a sprinkle Humidity: 65% Description: Clouds increasing throughout the afternoon. Still warm. Evening (6 PM – 12 AM) ☁️ Cloudy, Showers Developing Temperature: 22°C (72°F) → 17°C (63°F) Wind: SW 15–20 km/h (9–12 mph) Precipitation: 40% chance of showers Humidity: 75% Description: Showers becoming more likely as the evening progresses. Overnight (12 AM – 6 AM) 🌧️ Showers Temperature: 17°C (63°F) → 15°C (59°F) Wind: W 10–15 km/h (6–9 mph) Precipitation: 60% chance of showers Humidity: 85% Description: On-and-off showers overnight. Tomorrow’s Outlook: 🌦️ Showers Ending, Clearing High: 20°C (68°F) | Low: 13°C (55°F) Rain Chance: 50% in the morning, decreasing Wind: NW 10–15 km/h (6–9 mph) Air Quality: Good (AQI 50) UV Index: Moderate (4) Date: Wednesday, April 24, 2025 Sunrise: 6:15 AM Sunset: 7:45 PM Morning (6 AM – 12 PM) 💨 Windy, Clear Temperature: 8°C (46°F) → 14°C (57°F) Wind: W 20–30 km/h (12–19 mph), gusts up to 40 km/h (25 mph) Precipitation: 0% Humidity: 60% Description: Clear and cold start with strong winds making it feel colder. Afternoon (12 PM – 6 PM) ☀️ Sunny, Windy Temperature: 14°C (57°F) → 17°C (63°F) Wind: W 25–35 km/h (16–22 mph), gusts up to 50 km/h (31 mph) Precipitation: 0% Humidity: 50% Description: Sunshine but winds remain very strong. Evening (6 PM – 12 AM) 🌬️ Breezy, Clear Temperature: 16°C (61°F) → 10°C (50°F) Wind: W 15–20 km/h (9–12 mph) Precipitation: 0% Humidity: 55% Description: Winds easing somewhat but still breezy. Clear and cool. Overnight (12 AM – 6 AM) 🌙 Clear and Calm Temperature: 10°C (50°F) → 5°C (41°F) Wind: Light & variable, 5 km/h (3 mph) Precipitation: 0% Humidity: 60% Description: Winds die down overnight under clear skies. Cold. Tomorrow’s Outlook: ☀️ Sunny and Cooler High: 15°C (59°F) | Low: 6°C (43°F) Rain Chance: 0% Wind: W 10–15 km/h (6–9 mph) Air Quality: Good (AQI 30) UV Index: Moderate (5) Date: Wednesday, April 24, 2025 Sunrise: 6:19 AM Sunset: 7:49 PM Morning (6 AM – 12 PM) 🌧️ Rain Temperature: 10°C (50°F) → 11°C (52°F) Wind: E 15–20 km/h (9–12 mph) Precipitation: 80% chance of rain Humidity: 95% Description: Rain expected throughout the morning. An umbrella is essential. Afternoon (12 PM – 6 PM) 🌧️ Rain Continues Temperature: 11°C (52°F) → 12°C (54°F) Wind: E 20–25 km/h (12–16 mph) Precipitation: 90% chance of rain, possibly heavy at times Humidity: 96% Description: Steady rain continuing, with some heavier downpours possible. Evening (6 PM – 12 AM) 🌧️ Rain and Wind Temperature: 12°C (54°F) → 10°C (50°F) Wind: NE 20–30 km/h (12–19 mph) Precipitation: 80% chance of rain Humidity: 94% Description: Rain persists, becoming breezy. Overnight (12 AM – 6 AM) 🌦️ Rain Tapering Temperature: 10°C (50°F) → 9°C (48°F) Wind: N 15–20 km/h (9–12 mph) Precipitation: 60% chance of rain, decreasing Humidity: 90% Description: Rain slowly tapering off overnight but still likely. Tomorrow’s Outlook: ☁️ Cloudy, Chance of Showers High: 14°C (57°F) | Low: 8°C (46°F) Rain Chance: 40% in the morning Wind: N 10–15 km/h (6–9 mph) Air Quality: Good (AQI 38) UV Index: Very Low (1) Date: Wednesday, April 24, 2025 Sunrise: 6:17 AM Sunset: 7:47 PM Morning (6 AM – 12 PM) ☀️ Sunny and Warm Temperature: 16°C (61°F) → 24°C (75°F) Wind: S 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 65% Description: A warm and sunny start to the day. Afternoon (12 PM – 6 PM) ☀️ Hot and Sunny Temperature: 24°C (75°F) → 28°C (82°F) Wind: SW 15–20 km/h (9–12 mph) Precipitation: 0% Humidity: 50% Description: Temperatures climb into the high 20s under strong sunshine. Evening (6 PM – 12 AM) 🌤️ Partly Cloudy, Warm Temperature: 27°C (81°F) → 21°C (70°F) Wind: W 10–15 km/h (6–9 mph) Precipitation: 10% chance Humidity: 55% Description: Clouds starting to build but still feeling warm. Overnight (12 AM – 6 AM) ☁️ Cloudy, Mild Temperature: 21°C (70°F) → 18°C (64°F) Wind: Light & variable, 5 km/h (3 mph) Precipitation: 20% chance of light rain Humidity: 70% Description: Increasing clouds overnight with a slight chance of a sprinkle. Tomorrow’s Outlook: ⛈️ Thunderstorm Risk High: 25°C (77°F) | Low: 19°C (66°F) Rain Chance: 60% in the afternoon/evening Wind: S 15–20 km/h (9–12 mph) Air Quality: Moderate (AQI 60) UV Index: High (8) – Sun protection essential Date: Wednesday, April 24, 2025 Sunrise: 6:16 AM Sunset: 7:46 PM Morning (6 AM – 12 PM) ☁️ Cloudy and Cool Temperature: 7°C (45°F) → 10°C (50°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 30% chance of light rain Humidity: 88% Description: A cool, gray, and damp morning. Afternoon (12 PM – 6 PM) 🌧️ Light Rain Temperature: 9°C (48°F) → 8°C (46°F) Wind: N 15–20 km/h (9–12 mph) Precipitation: 70% chance of light rain Humidity: 95% Description: Light rain likely to continue through the afternoon. Evening (6 PM – 12 AM) 🌧️ Rain and Cold Temperature: 8°C (46°F) → 6°C (43°F) Wind: N 20–25 km/h (12–16 mph) Precipitation: 80% chance of rain Humidity: 96% Description: Rain persists with temperatures dropping. Feeling raw. Overnight (12 AM – 6 AM) 🌨️ Rain/Snow Mix Possible Temperature: 6°C (43°F) → 2°C (36°F) Wind: N 15–20 km/h (9–12 mph) Precipitation: 40% chance of rain mixing with snow Humidity: 98% Description: Temperatures nearing freezing overnight; a mix of rain and wet snow is possible. Tomorrow’s Outlook: ☁️ Cloudy, Cold High: 9°C (48°F) | Low: 3°C (37°F) Rain Chance: 30% (mix early) Wind: N 15–20 km/h (9–12 mph) Air Quality: Good (AQI 35) UV Index: Very Low (1) Date: Wednesday, April 24, 2025 Sunrise: 6:18 AM Sunset: 7:48 PM Morning (6 AM – 12 PM) ☀️ Sunny and Pleasant Temperature: 12°C (54°F) → 20°C (68°F) Wind: NW 5–10 km/h (3–6 mph) Precipitation: 0% Humidity: 60% Description: A lovely, clear morning with comfortable temperatures. Afternoon (12 PM – 6 PM) ☀️ Sunny and Warm Temperature: 20°C (68°F) → 24°C (75°F) Wind: W 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 50% Description: Plenty of sunshine and warmth throughout the afternoon. Evening (6 PM – 12 AM) ☀️ Clear and Mild Temperature: 23°C (73°F) → 17°C (63°F) Wind: W 5–10 km/h (3–6 mph) Precipitation: 0% Humidity: 55% Description: A mild and clear evening. Overnight (12 AM – 6 AM) 🌙 Clear and Cool Temperature: 17°C (63°F) → 14°C (57°F) Wind: Light & variable, 5 km/h (3 mph) Precipitation: 0% Humidity: 60% Description: Calm conditions overnight under clear skies. Tomorrow’s Outlook: ☀️ Sunny High: 26°C (79°F) | Low: 15°C (59°F) Rain Chance: 0% Wind: W 10–15 km/h (6–9 mph) Air Quality: Good (AQI 45) UV Index: High (7) – Sun protection essential Date: Wednesday, April 24, 2025 Sunrise: 6:15 AM Sunset: 7:45 PM Morning (6 AM – 12 PM) ⛈️ Scattered Thunderstorms Temperature: 16°C (61°F) → 19°C (66°F) Wind: SW 20–30 km/h (12–19 mph) Precipitation: 60% chance of scattered thunderstorms Humidity: 80% Description: Chance of thunderstorms, some potentially strong. Be weather aware. Afternoon (12 PM – 6 PM) 🌦️ Showers/Storms Waning Temperature: 19°C (66°F) → 21°C (70°F) Wind: W 15–25 km/h (9–16 mph) Precipitation: 40% chance of showers/storms, decreasing Humidity: 70% Description: Storm activity expected to decrease through the afternoon. Evening (6 PM – 12 AM) 🌤️ Partly Cloudy Temperature: 20°C (68°F) → 16°C (61°F) Wind: W 10–15 km/h (6–9 mph) Precipitation: 20% chance Humidity: 65% Description: Skies clearing up as storms move out. Overnight (12 AM – 6 AM) 🌙 Clear Temperature: 16°C (61°F) → 14°C (57°F) Wind: NW 5–10 km/h (3–6 mph) Precipitation: 10% chance Humidity: 60% Description: Clear and cool overnight. Tomorrow’s Outlook: ☀️ Sunny High: 24°C (75°F) | Low: 15°C (59°F) Rain Chance: 10% Wind: NW 10–15 km/h (6–9 mph) Air Quality: Good (AQI 55) UV Index: High (7) – Sun protection essential Date: Wednesday, April 24, 2025 Sunrise: 6:20 AM Sunset: 7:50 PM Morning (6 AM – 12 PM) 🌫️ Patchy Fog, Cool Temperature: 4°C (39°F) → 10°C (50°F) Wind: Calm Precipitation: 10% chance of mist Humidity: 90% Description: Areas of fog possible early, otherwise cool. Afternoon (12 PM – 6 PM) ☀️ Sunny After Fog Temperature: 10°C (50°F) → 16°C (61°F) Wind: Light & variable, 5 km/h (3 mph) Precipitation: 0% Humidity: 70% Description: Fog should lift, leading to a sunny afternoon. Evening (6 PM – 12 AM) ☀️ Clear and Cool Temperature: 15°C (59°F) → 7°C (45°F) Wind: N 5–10 km/h (3–6 mph) Precipitation: 0% Humidity: 75% Description: Clear and noticeably cooler after sunset. Overnight (12 AM – 6 AM) 🌙 Clear and Cold, Frost Possible Temperature: 7°C (45°F) → 1°C (34°F) Wind: Calm Precipitation: 0% Humidity: 80% Description: Cold overnight with the possibility of frost formation. Tomorrow’s Outlook: ☀️ Sunny and Cool High: 18°C (64°F) | Low: 6°C (43°F) Rain Chance: 0% Wind: N 5–10 km/h (3–6 mph) Air Quality: Excellent (AQI 25) UV Index: Moderate (6) Date: Wednesday, April 24, 2025 Sunrise: 6:17 AM Sunset: 7:47 PM Morning (6 AM – 12 PM) ☁️ Cloudy, Mild Temperature: 15°C (59°F) → 18°C (64°F) Wind: S 10–15 km/h (6–9 mph) Precipitation: 30% chance of light rain Humidity: 80% Description: Overcast and mild with a chance of scattered light rain. Afternoon (12 PM – 6 PM) 🌧️ Rain Developing Temperature: 17°C (63°F) → 19°C (66°F) Wind: S 15–20 km/h (9–12 mph) Precipitation: 50% chance of rain Humidity: 85% Description: Rain becoming more likely in the afternoon. Evening (6 PM – 12 AM) 🌧️ Rain and Wind Temperature: 18°C (64°F) → 15°C (59°F) Wind: SW 20–25 km/h (12–16 mph) Precipitation: 70% chance of rain Humidity: 90% Description: Rain continues with increasing wind. Overnight (12 AM – 6 AM) 🌧️ Rain, Clearing Late Temperature: 15°C (59°F) → 13°C (55°F) Wind: W 15–20 km/h (9–12 mph) Precipitation: 60% chance of rain early, then clearing Humidity: 88% Description: Rain gradually ends overnight, with skies clearing towards morning. Tomorrow’s Outlook: 🌤️ Partly Cloudy, Breezy High: 20°C (68°F) | Low: 14°C (57°F) Rain Chance: 20% Wind: W 15–20 km/h (9–12 mph) Air Quality: Good (AQI 48) UV Index: Moderate (5) Date: Wednesday, April 24, 2025 Sunrise: 6:16 AM Sunset: 7:46 PM Morning (6 AM – 12 PM) ☀️ Sunny and Cool Temperature: 6°C (43°F) → 16°C (61°F) Wind: NW 5–10 km/h (3–6 mph) Precipitation: 0% Humidity: 70% Description: A chilly but sunny start, temperatures rising quickly. Afternoon (12 PM – 6 PM) ☀️ Sunny and Pleasant Temperature: 16°C (61°F) → 20°C (68°F) Wind: NW 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 55% Description: Continued sunshine and comfortable temperatures. Evening (6 PM – 12 AM) ☀️ Clear and Cool Temperature: 19°C (66°F) → 11°C (52°F) Wind: NW 5–10 km/h (3–6 mph) Precipitation: 0% Humidity: 60% Description: Clear and cool evening. Overnight (12 AM – 6 AM) 🌙 Clear and Cold Temperature: 11°C (52°F) → 5°C (41°F) Wind: Calm Precipitation: 0% Humidity: 65% Description: Calm and cold overnight. Tomorrow’s Outlook: ☀️ Sunny High: 22°C (72°F) | Low: 12°C (54°F) Rain Chance: 0% Wind: W 10–15 km/h (6–9 mph) Air Quality: Excellent (AQI 29) UV Index: High (6) Date: Wednesday, April 24, 2025 Sunrise: 6:18 AM Sunset: 7:48 PM Morning (6 AM – 12 PM) ☁️ Cloudy, Chance of Showers Temperature: 13°C (55°F) → 16°C (61°F) Wind: SE 10–15 km/h (6–9 mph) Precipitation: 40% chance of showers Humidity: 80% Description: Overcast with scattered showers possible. Afternoon (12 PM – 6 PM) 🌧️ Showers Likely Temperature: 15°C (59°F) → 17°C (63°F) Wind: SE 15–20 km/h (9–12 mph) Precipitation: 60% chance of showers Humidity: 85% Description: Showers becoming more widespread in the afternoon. Evening (6 PM – 12 AM) 🌦️ Showers Tapering Temperature: 16°C (61°F) → 14°C (57°F) Wind: S 10–15 km/h (6–9 mph) Precipitation: 50% chance of showers, decreasing Humidity: 88% Description: Showers gradually ending as the evening goes on. Overnight (12 AM – 6 AM) ☁️ Mostly Cloudy Temperature: 14°C (57°F) → 12°C (54°F) Wind: W 5–10 km/h (3–6 mph) Precipitation: 20% chance Humidity: 80% Description: Lingering clouds overnight. Tomorrow’s Outlook: 🌤️ Partly Cloudy High: 20°C (68°F) | Low: 13°C (55°F) Rain Chance: 20% Wind: W 10–15 km/h (6–9 mph) Air Quality: Good (AQI 40) UV Index: Moderate (4) Date: Wednesday, April 24, 2025 Sunrise: 6:15 AM Sunset: 7:45 PM Morning (6 AM – 12 PM) 🌫️ Dense Fog, Cold Temperature: 2°C (36°F) → 6°C (43°F) Wind: Calm Precipitation: 10% chance of mist Humidity: 99% Description: Very low visibility due to widespread dense fog and cold temperatures. Afternoon (12 PM – 6 PM) ☁️ Fog Slowly Lifting Temperature: 6°C (43°F) → 9°C (48°F) Wind: Light & variable, 5 km/h (3 mph) Precipitation: 20% chance of drizzle Humidity: 95% Description: Fog expected to be slow to clear. Cloudy and damp. Evening (6 PM – 12 AM) ☁️ Overcast and Cold Temperature: 9°C (48°F) → 5°C (41°F) Wind: E 5–10 km/h (3–6 mph) Precipitation: 10% chance Humidity: 92% Description: Skies remain overcast and cold. Overnight (12 AM – 6 AM) 🌫️ Patchy Freezing Fog Temperature: 5°C (41°F) → -1°C (30°F) Wind: Calm Precipitation: 20% chance of freezing mist Humidity: 98% Description: Fog may redevelop and become freezing overnight. Hazardous. Tomorrow’s Outlook: 🌫️ Foggy Start, Cloudy High: 8°C (46°F) | Low: 1°C (34°F) Rain Chance: 10% Wind: Light & variable Air Quality: Good (AQI 33) UV Index: Very Low (0) Date: Wednesday, April 24, 2025 Sunrise: 6:19 AM Sunset: 7:49 PM Morning (6 AM – 12 PM) ☀️ Sunny and Warm Temperature: 17°C (63°F) → 25°C (77°F) Wind: SW 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 60% Description: A warm and sunny morning. Afternoon (12 PM – 6 PM) 🔥 Hot and Sunny Temperature: 25°C (77°F) → 30°C (86°F) Wind: SW 15–20 km/h (9–12 mph) Precipitation: 0% Humidity: 40% Description: Very hot under intense sunshine. Stay cool. Evening (6 PM – 12 AM) ☀️ Clear and Warm Temperature: 29°C (84°F) → 23°C (73°F) Wind: W 10–15 km/h (6–9 mph) Precipitation: 0% Humidity: 45% Description: Warm evening with clear skies. Overnight (12 AM – 6 AM) 🌙 Clear and Mild Temperature: 23°C (73°F) → 20°C (68°F) Wind: Light & variable, 5 km/h (3 mph) Precipitation: 0% Humidity: 50% Description: Mild overnight temperatures. Tomorrow’s Outlook: 🔥 Hot and Sunny High: 32°C (90°F) | Low: 22°C (72°F) Rain Chance: 0% Wind: SW 10–15 km/h (6–9 mph) Air Quality: Moderate (AQI 70) UV Index: Extreme (10) – Strong sun protection essential, limit sun exposure Date: Wednesday, April 24, 2025 Sunrise: 6:17 AM Sunset: 7:47 PM Morning (6 AM – 12 PM) 💨 Breezy, Partly Cloudy Temperature: 10°C (50°F) → 15°C (59°F) Wind: NW 15–20 km/h (9–12 mph) Precipitation: 10% chance Humidity: 70% Description: A cool and breezy start with some clouds. Afternoon (12 PM – 6 PM) ☀️ Mostly Sunny, Breezy Temperature: 15°C (59°F) → 18°C (64°F) Wind: NW 20–25 km/h (12–16 mph), gusts up to 35 km/h (22 mph) Precipitation: 0% Humidity: 60% Description: Becoming mostly sunny, but winds remain blustery. Evening (6 PM – 12 AM) 🌬️ Breezy, Clear Temperature: 17°C (63°F) → 12°C (54°F) Wind: NW 15–20 km/h (9–12 mph) Precipitation: 0% Humidity: 65% Description: Winds easing slightly under clear skies. Overnight (12 AM – 6 AM) 🌙 Clear and Cool Temperature: 12°C (54°F) → 8°C (46°F) Wind: NW 5–10 km/h (3–6 mph) Precipitation: 0% Humidity: 70% Description: Calm and cool overnight. Tomorrow’s Outlook: ☀️ Sunny and Cool High: 20°C (68°F) | Low: 10°C (50°F) Rain Chance: 0% Wind: NW 10–15 km/h (6–9 mph) Air Quality: Good (AQI 35) UV Index: Moderate (6) Date: Wednesday, April 24, 2025 Sunrise: 6:16 AM Sunset: 7:46 PM Morning (6 AM – 12 PM) 🌨️ Light Snow Temperature: -3°C (27°F) → -1°C (30°F) Wind: N 10–15 km/h (6–9 mph) Precipitation: 60% chance of light snow Humidity: 98% Description: Light snow falling, potentially accumulating slightly. Cold. Afternoon (12 PM – 6 PM) 🌨️ Snow Continues Temperature: -1°C (30°F) → 0°C (32°F) Wind: N 15–20 km/h (9–12 mph) Precipitation: 70% chance of snow Humidity: 99% Description: Snow likely throughout the afternoon. Visibility reduced. Evening (6 PM – 12 AM) ❄️ Snow Tapering Temperature: 0°C (32°F) → -3°C (27°F) Wind: NE 10–15 km/h (6–9 mph) Precipitation: 50% chance of snow, decreasing Humidity: 95% Description: Snow gradually tapering off. Temperatures dropping below freezing. Overnight (12 AM – 6 AM) 🌙 Clear and Very Cold Temperature: -3°C (27°F) → -7°C (19°F) Wind: Calm Precipitation: 10% chance Humidity: 90% Description: Skies clear and temperatures drop significantly overnight. Very cold. Tomorrow’s Outlook: ☀️ Sunny and Cold High: 2°C (36°F) | Low: -5°C (23°F) Rain Chance: 0% Wind: N 5–10 km/h (3–6 mph) Air Quality: Good (AQI 22) UV Index: Very Low (1)Aaiwynkop Aalwynpoort Aalwynskop Aandrus Aangenaam Aansvilla Aapkrans Aapsrivier Aar Doorns Aardoff Aardoorns Aasvoël Aasvoëlberg Aasvoëlkop Aasvoëlkrans Aasvogel Kop Aasvogel Krans Aasvogel Nest Aasvogel Point Abbotsford Abedale Aberdeen Aberdeen Road Aberdeen Vlakte Aberdour Abrahamskloof Abrams Skote Acacia Achaskloof Acton Caba Adams Fontein Adams Kraal Adams Krans Adcock Adderskraalkop Addo Addo Elephant National Park Addo Heights Adelaide Adendorp Adjoining Klipheuvel Adjoining Lange Vlei Adjoining Misgund Adjoining Onbedacht Adjoining Traka Adolphs Hohe Adolphs Kraal Adolphs Poort West Adolphus Poort Afgunst African Pride Hacklewood Hill Country House African Pride The Sands At St Francis Africanders Kloof Afrikanerdam Agnes Agnes Rest Agterberg Agter-Sneeuberg Agterstraat Ailsa Aintree Air Force Station Port Elizabeth Alandale Al-Beit Alberthoek Alderley Alegryns Kraal Alewyns Fontein Alewynsfontein Alex Hill Alexanderfontein Alexandria Alexandria Forest Alexandria New Algoa Bay Algoapark Alice Alicedale Aliwal North All Saints All Saints Nek Allanwater Alle Hoop Alleengelaaten Allemans Fontein Allemans Gat Allemans Kraal Allemansfontein Allemanskraal Allendale Allmans Kraal Alloekop Almondale Almonds Fontein Aloe Grove Aloe Kop Aloe Kranz Aloe Ridge Aloedale Aloehill Aloekop Aloeridge Aloes Aloma Alsatia Alstonfield Alton Farm Altona Aluin Krantz West Alwingate Amabele Amahlathi Amakameso Amalinda Amandelhoogte Amanzi Amathole District Municipality Amatole Amatole Basin Amber Guest Lodge Amberdale Amendel Poort Amherst Amospoortjie Amosrivier Amosvlei Amsterdam Plein Amsterdamhoek Anders Mission Andrew F.C. Turpin Dam Andrew Geddes Bain Monument Andrews Forest Andries Berg Andries Bergen Andriesberg Andrieskraal Angledale Anhalt Ann Shaw Annan Water Annandale Annawater Annex Alleen Gelaten Annex Aloe Ridge Annex Belmont Annex Brooklyn Annex Corndale Annex de Hoop Annex Doorskraal Annex Fontein Plaats Annex Geluk Annex Goliads Kraal Annex Jagersbosch Annex Klipfontein Annex Kranskop Annex Leeufontein Annex Leeuw Blad Annex Misgund Annex Nooitgedacht Annex Oudeberg Annex Petersburg Annex Present Annex Riet Poort Annex Rietkuil Annex Rooiklip Annex Spitskop Annex Tafelberg Annex Vrunsfontein Annex Waterkloof Annex Welgelegen Annex Widcombe Annex Winterhoek Annex Wolvekloof Annex Wolvekloof A Annex Wolvekloof B Annex Zandfontein Anondale Anta Anteelfontein Antelope Anthonys Kraal Antonie Antoniesberg Antonieskop Apefield Apieskloof Apieskraal Apiesrivier Apiesrug Appelkraal Appelskraal se Loop Aprilskraal Aqua Dreams Premier Guest House Aquavista Aranmor Araratsberg Arcadia Arch Rock Arch Rock Chalets Ardlusa Ardnamurchan Ardoff Ardtonisch Arends Krans Arendspruit Argyle Aries Hoek Ariesberg Arlington Arlington (SA) Racecourse Armanus Kraal Arminel Armistice Armmansvriend Armstrong House Arnes Forest Arnoldton Arolsen Arrie se Baai Arthurs Kraal Arundel Ashbourne Ashoek Askeaton Askop Assegaai Bush Assegaaibos Assegaaibosberg Assegaaikloof Assegaairivier Assegai Boom Assegai Bush Monument Aston Bay Atherstone Athlone Atlone Auckland Fingo Auckland Forest Reserve Audie Aultbea Aurora Austry Auxmere Avalon Avoca Avondale Avondrust Avondsrust Avonleigh Avontuur Azeronskop B.K. Mond (2) Baakhoek Baarboon Babilon Toring Babilonstoring Bacela Bacolas Baddaford Badenoch Badi Badsfontein Bailey Bailey’s Kop Bak se Baken Bakaneni Baken se Berg Baken se Kop Baken se Loop Bakenberg Bakeni Bakenkop Bakenkopskloof Bakenrant Bakenshoek Bakenshoekheuwel Bakenskop Bakensrivier Bakensrug Bakhuis Bakhuiskop Bakkie Bakleikraal se Leegte Bakneskloof Bakoondslaagte Bakoven Bak-Oven Bakuba Balambra Balasi Balcraig Baldriaan Balfour Balie se Leegte Balies Kraal Ballard Ballinafad Ballinderry Ballysaggan Balmoral Balube Balura Bamboo Bampiespruit Band Banghoek Bangindlala Bangweni Bank Kop Bankberg Bankies Banksia Bankskop Bankview Bansi Poort Banzi Barakke Barandas Barbersberg Barberskrans Bareacres Barends Kuil Barendskraal Barendskuil Barkhuizenberg Barkly Bridge Barkly East Barnards Berg Barnfather Baroda Baroe Baroe Kraal Barracuda Barrington Barrys Kop Barterroad Barville Park Bashee Bashee Bridge Bashee Hill Bashee River Beacon (historical) Bassons Kloof Bassons Kraal Bassonsberg Bassonsrust Batchelors Rest Bathurst Bats Cave Batshole Batura Baviaan Berg Baviaan Krans Baviaans Baviaans Krans Baviaans Pile Baviaans River Baviaanskloof Baviaanskloof Farming Community Baviaanskloof Reeks Baviaanskloof Staatsbos Baviaanskloofberge Baviaanskloofrivier Baviaanskop Baviaanskrans Baviaansrivier Baviaansrivierberge Bawa Bawa Falls Bay View Bayside Lodge Baysvale Bayswater Bayview Baziya Beachfront Beachview Beacon Bay Beacon Hill Beacon Island Beacon Island Estate Beacon Island Lifestyle Resort Beacon Peak Beacon Point Beaconfield Beaconsfield Beacosnek Beakos Nek Beamishspruit Beamont Beans River Beaufortvale Beauly Beaumont Beccles Becker’s Fontein Bede Bedford Bedford Convent Farm Bedroefd Klein Bedrogfonteinspoort Bedstead Beecham Woods Been Kraal Been Leegte Beene Kuil Beenekraal Beenkuilleegte Beenleegte Beenleegterivier Beer Kraal Beerfonteinspruit Beerpoort Beervlei Beervlei Bosboustasie Beervleidam Beervleidrif Beesjes Bult Beesjes Bult North Beesjes Bult South Beeskloof Beeskraal Beest Kraal Beeste Kraal Begarivier Begelly Beggars Bush Forest Reserve Begha Mouth Beginsel Behulpsaam Beisjes Fontein Bekileni Bekker se Berg Bekker se Kloof Bekkers Dam Bekkers Kloof Bekkers Plain Bekkersvlei Belekana Beletskloof Beletskloofspruit Belgrave Bell Bell Rock Belladonna Bellcrest Belle Vue Bellevue Bellevue Kop Bellevue Wes Bellgrove Bellrock Belmont Belstone Belton Belvedere Belvidere Manor Belvior Ben Allen Ben Gray Ben Holme Ben Pringle Benard Bencor Bende Bendigo Bush Bendoran Benebos Benekop Benerivier Benfield Park Benghoil Bengu Bengu Basin Benholm Benmore Bentinck Benton Benwell Berendslaagte Berg Kraal Berg Plaat Berg Plaats Berg Vliet Bergfontein Bergheim Bergkloof Bergkraals Poort Bergplaas Bergplaasplantasie Berlin Berlin Kop Bernardshoek Bernese Besemgoedkop Besjesvlei Best Cove Bestehoop Besters Kraal Bestersdal Besterskop Besuidenhout’s Kraal Bethel Bethelsdorp Bethesdaweg Betjes Kraal Beversvleispruit Beyele Beyers se Eiland Beyersvlei Bezuidenhout Grave Bezuidenhouts Kraal Bezuidenhouts Kraal Mond Bezuidenhoutsberg Bezuidenhoutsrivier Bhetani Bhisho Bhisho Airport Bhokhwe Bholotwa Bhongweni Bhoqo Bhunga Bibby’s Hoek Bickley Biesenfontein Biesiesdam Biesiesfontein Biesieskloof Biesieslee-gte Biesiesvlei se Loop Biesjes Fontein Bietourivier Biezies Vley Big Thomas River Bikamma Bikana Bikanadale Bilaty Billson Binfield Farm Bingles Drif Bira Birch Birchleigh Birchwood Park Bird Island Bird Island Lighthouse Bird Island Passage Bird Islands Bird Riviers Poort Bird Rock Birds River Birds Rivier Bishonon Bishops Hoek Bishops Inn Bisserton Hill Bitou Bitouws Fontein Bitterhill Bitterne Bityi Blaas Kraal Blaasbank Blaaukrans Blaaukrantz Blaauw Bank Blaauw Bosch Kuil Blaauw Heuvel Blaauw Kop Blaauw Koppen Blaauw Krans Blaauw Krantz Blaauw Krantz Outspan Blaauw Kranz West Blaauwater Blaauwbosch Kuil Blaauwbosch Poort Blaauwboschkuil Blaauwbosh Kuil Blaauwbospoort Blaauwe Krans Blaauwewater Blaauwkop Rante Blaauwkrans Blaauwkrants Blaauwkrantz Blaaw Drift Black Beacon (historical) Black Hill Black Point Black Rock Black Rocks Black Streams Blackpool Blackwood Blackwoods Blake Ridge Blake’s Ridge Blaney Blaney Stream Blasberg Blaukrans Blauw Baatjes Vley Blauw Bosch Kuil Blauw Krans Blauwe Krans Blauwekrans Blauwpunt Bleakmoor Blenheim Blesberg Bleskop Blik Kraal Blikkiesdorp Blikkraal Blind River Blindekloof Blinkberg Blinkhoff Blinkkop Blinkwaterrivier Bloem Fontein Bloem Zyn Kraal Bloemfontein Bloemhof Bloemhof Farm Bloemhop Bloems Kraal Blomfontein Blomfonteinberge Blomfonteinloop Blomplaas Bloodfell Bloomfield Bloubaai Bloubank se Loop Bloubankies Blouberg Bloubos Blouboschpoortjie Blouboskuil Bloudraai Blougatkop Blouheuvels Kloof Bloukop Bloukop II Bloukoppe Bloukoprante Bloukrans Bloukrans River Bloukrans-Bosreservaat Bloukransmond Bloukranspas Bloukransrivier Bloupietrivier Bloupoortjie Bloupunt Bloupuntrivier Blouput Blourivier Blousloep Blouwater Blue Bend Blue Boulders Blue Crane Route Blue Gum House Blue Hell Blue Horizon Bay Blue Krans Blue Krans Stream Blue Lagoon Blue Mountain Blue River Blue Rock Blue Rocks Blue Water Blueberg Bluecliff Bluegum Grove Bluegumvale Blueliliesbush Blueliliesbush State Forest Bluerock Bluewater Bay Bluewater Beachfront Guesthouse Bly Rivier Blydeberg Blydedam Blyderivier Blyderivierdam Blydskap Blyth Station Blythswood Blythswood Training Institute Blywend Bo Plaas Boalax Bobbejaanberg Bobbejaankrans Bobbejaanrivier Bobbejaansberg Bobbejaansrivier Boberg Bodiam Bodini Bodker Boekenhoutfontein Boel se Baai Boesmans Fontein Boesmans Grot Boesmansberg Boesmanshoek Boesmanshoekberg Boesmanskloofspruit Boesmanskop Boesmanskrans Boesmanspoort Boesmanspoort se Plaat Boesmanspoortberg Boesmansrivier Boesmansriviermond Boesmansvlei Boezakskraalspruit Bog Farm Bogo Bojeni Boka Hill Bokdam se Loop Bokkiesfontein Bokkop Boknes Bokneskop Boknesrivier Boknesstrand Bo-Kouga Bokpoort Bokpos Bokrivier Bokvlei Bold Point Bold’s Point Bolegha Hill Bolo Bolo Head Bolotwa Bolowane Boltonwoods Bolwana Boma Pass Bombani Bombani Hill Bombaza Bomela Bonaparte Bonchurch Bonde Bongitole Bongolethu Bongolo Bongweni Bonhill Boniswa Bonkolo Dam Bonkolo Mountains Bonkolo Nek Bonny Glen Bonny Valley Bontrug Bonza Bay Boomkloof Boomplaas Boomslangbank Boomspruit Booysen Park Booysenspoort Boplaas Boqo Border Technikon Bordje Outspan Bos Bosberg Bosbergloop Bosbokstrand Bosboustasie Bosch Fontein Bosch Kloof Bosch Place Bosch Rivier Spruit Bosch Riviers Berg Bosch Rug Bosch Ruggens Boschfontein Boschhoek Boschkloof Boschmans Kloof Boschplaats Bosduivverivier Bosfontein Bosfonteinrivier Boshmans Hoek Boshoogte Bosjemansfontein Bosjeskloof Bosjesmansfontein Boskloof Boskop Boskraal Bosky Dell Boslaagte se Loop Bo-Slot Bosmans Kloof Bosnek Bo-Spitskop Bosplaas Bospoort Bosrant Bosreserwe Bosrivier Bossieshoek Bossieskloof Boter Fontein Boterkuil Outspan Botha’s Forest Botha’s Hill Botha’s Hoek Botha’s Ridge Bothas Baken Bothas Hoek Bothas Kloof Bothas Kraal Bothas Lighte Bothasbaken Bothashoop Bothaskaagte Bothaskraal Bothasrivier Bothasrus Bothasspruit Botmans Gat Botmansgat Bottelbaken Bottelgatrivier Botterkop Bottleneck Bouersfontein Bousie Side Bouthoek Bouwers Fontein Bouwers Hoek Bouwershoek Bouwershoekberge Boven Diep Rivier Boven Palmiet Rivier Bovenmelks Rivier Bovenmelksrivier Bowens Bower Hope Bowes Bowker’s Bay Bowker’s Bluff Bowker’s Kop Bowker’s Park Boxmoor Boxwood Braaiden Braamberg Braamfontein Braamnek Braamrivier Bracefield Brack Kloof Bracken Hill Bracken Hill Forest Braelynn Braemaer Braemore Stream Braes Braeside Brak Fontein Brak Gat Brak Kloof Brak Laagte Brak Leegte Brak Pan Brak River Brak Rivier Brak Vallei Brake Fontein Brakfontein Brakhill Brakke Duiner Brakke Fontein Brakke Fonteyn Brakke Rivier Wagen Drift Brakke Valley Brakkefontein Brakkloof Brakkloofrivier Brakkloofspruit Brakloop Brakplaas Brakpoort Brakpos Brakrivier Brakriviermond Brakvlei Brampton Estate Brand Hoek Brand Kraal Brand Rug Brandberg Brandbosrivier Brandekraal Branderskloof Branderskop Brandeston Brandewyns Leegte Brandewynskop Brandfontein Uitspan Brandhoek Brandkloof Brandkloofspruit Brandkop Brandkraal Brandleegte Brandnek Brandplaas Brandrug Brandt Kloof Brandt Koppen Brandt Legte Brandt’s Leisure Brandtbosch Brandtbosch Kloof Brandtskop Brandtskraal Branksome Branstone Branvlei Braunschweig Braunville Break Neck Breakfast Vlei Breakfast Vlei Outspan Brederivier Bree Leegte Breede Drift Breede Laagte Breëleegte Breezy Point Breidbach Brenford Brentford Brenton Brenton Haven Brenton Island Brenton-on-Sea Bridge Farm Bridgecamp Bridgewater Bridgnorth Bridle Drift Bridle Drift Dam Brighton Brighton Drift Brinksdale Bristol British Ridge Brits Brits Eigendom Brits Kraal Britshoek Broadfield Broadlands Broadlea Broadmead Broederstroom Brokenslopes Bromley Bromsgrove Bronkhorstspruit Bronkorsfontein Bronkos Fontein Brookes Hill Suites Brooklyn Brown’s Vale Brugklip Bruglaagte Bruinklip Bruinrante Bruintjieshoogte Bruintjieshoogte Berg Brummersdam Brummersdam A Brymac Buccleigh Bucklands Buckness Buffalo Buffalo City Buffalo City Metropolitan Municipality Buffalo Flats Buffalo Harbor Buffalo River Buffalo Thorns Buffelfontein Buffels Buffels Bosch Buffels Drift Buffels Fontein Buffels Hoek Buffels Klip Buffels Kloof Buffels Nek Buffelsbaai Buffelsberg Buffelsbos Buffelsdoring Buffelsdrif Buffelsdrift Buffelsfontein Buffelshoek Buffelshoek se Pas Buffelshoekkloof Buffelshoekkop Buffelshoekspruit Buffelsklip Buffelskliprivier Buffelskloof Buffelskop Buffelskuil Buffelsnek Buffelspoort Buffelsrivier Buffelsrug Buffelsvalley Buffelsvlei Bufmba Buispoort Buiteberg Buiten Gebruik Bul Hoek Bulembu Bulhoek Bulhoekspruit Bulkraal Bulkrivier Bulkrivierdam Bulleties Kraal Bullhower Bulls Run Bulo Hill Bulrivier Bulskloof Bultfontein Bulungula Bulungula Hill Bulungulu Bulura Bulvlei Bumbana Bumbane Bumbani Bunga Bunkers Hill Burgers Dammen Burghers Burghers Drift Burghley Hills Burnley Park Burnshill Burnside Burnt Kraal Bush Kloof Bush Nek Bushby Park Bushfontein Bushkloof Bushman Sands Hotel Bushmans Cave Bushmans Kop Bushmans River Bushview Bushy Beach Bushy Park Busila Busruk Butterworth Butterworth Airport Butterworth Hospital Butterworth Mission Buwa Buxton Buxton Forest Station Buxtonrivier Buyskloof Buyspoort Bwani Bykoms Bylletrs Caba Cabaga Dho Caca Cacadu Caesar’s Dam Cafutweni Cairnend Cairns Cala Cala Flats Calderwood Callonwood Camama Camata Camboosfontein Cambria Cambridge Camdeboo Camdeboo National Park Camel Pile Cameron’s Glen Camerons Glen Camp Camphers Berg Camphers Mountain Camsha Canaan Canaga Canary Fonteyn Candu Cannon Rocks Cannonvale Canon Canossa Canteen Poort Cape Henderson Cape Morgan Cape Padrone Cape Recife Cape Recife Lighthouse Cape Saint Francis Cape Saint Francis Lighthouse Cape Seal Cape St Francis Cape St Francis Resort Capell Caphu Carbridge Cardelanga Cardiff Careeboschfontein Carel’s Rust Carelsville Careys Brook Cariega Carleen Carlisle Bridge Carlson Sloot Carlsrus Carn Nek Carnarvon Carnarvondale Carols Rust Carree Bosch Carrickmoor Carrig na Gunnel Cascade Caspars Kop Casperskop Cassilis Castle Dale Castle Point Castle Rock Cat’s Pass Cata Cathcart Cathcart Forest Cathcart Place Cathcarts Gift Cathedral Rock Cats Pass Cauchafsie Cebe Cefane Cegcuana Cegcuwana Celetyuma Cememe Cendani Cengewewana Centane Centani Centerton Centlivres Centre Pivot East Centre Pivot West Centuli Cenyu Ceru Ceru Bawa Cetha Cezu Chachaba Chachu Chalumna Chalumna Hill Chalumna River Chancery Hali Chargrove Charl Malan Basin Charlgrove Charlwood Chase’s Kloof Chatten Chatty Chatty River Chelmsford Cheloy Chelsea Chelsea Point Cherry’s Point Chertsey Cheviot Cheviot Fells Chevy Finch Chilton Chintsa Chiselford Chiselhurst Chisira Chris Hani District Municipality Christiana Christmas Rock Christmas Vale Chumbi Church Millwood Bosch Churchill Dam Cibini Cicira Cihana Ciko Cimezile Cingweni Cintsa Cintsa Bay Cintsa Mouth Cintsa Mouth West Ciskei Aerodrome Citronia City Lodge Port Elizabeth Cizele Clachan Clan Lindsay Rocks Clapton Clarafontein Claremont Claremont B Clarkebury Clarks Clarkson Clarkson Primary School Classen Point Clavering Clay Pits Clear View Clearwater Clevedon Cleveland Wier Clifford Clifton Clifton Hill Clifton Vale Cliftop Clinton’s Bank Cloetedale Cloudlands Clover Hill Cloverdale Club Break And Beach Break Villas Clumber Cobongo Park Cobosi Cockscomb Cockscomb East Cockscomb State Forest Cockscomb View Cockscomb West Coega Coega Kammas Kloof Coegakop Coegarivier Coegas Kop Coegas Rivier Coemey Coerney Coerney Rivier Coetzees Fontein Coetzeesberge Coetzena Coetzenburg Coetzenburghek Coetzers Dal Coetzers Kloof Coetzerskloof Coetzerskloofspruit Cofimvaba Coghlan Cola Hashes Colchester Cold Spring Cold Stream Coldstream Coleskeplaas Colliesfontein Collingham Collingham Outspan Collins Store Collis Fontein Collywobbles Colosa Columba Combleigh Combrink Comdo Commando Drift Commando Fonteyn Commando Kraal Committee Hill Committees Drift Committuys Compagna Compensation Conbridge Concordia Concordia Forest Reserve Congas Kraal Congoskraal Conical Hill Conical Kloof Connaught Conrad Pezula Consandkraal Consol Consol Doornkloof Consol Wilger Consolidated Consolidated Olive Woods Estate Consolidated Primeston Contented Conway Conway Farm Cookhouse Cool Ray Cooling Coombs Coombs Fountain Coombs River Coombs Vale Cooper’s Kop Cooperdale Coopers Drift Coral Dene Corn Flats Corndale Corneliskop Cornelius Rust Cornville Corriedale Cosmos Cuisine Cotswold Cottage Kop Cottesbrook Cottongrove Cotyeni Couga Poort Coulters Kop Courtlands Courtyard Courtyard Port Elizabeth Couties Kraal Coutomiete Cove Rock Coverside Covie Cowie Berg Cowie Neck Cowie River Cowmeade C-Place Cqaka Peak Cradock Craig Ewan Craig Rennie Craiglands Craikcross Cranemera Cranstoun Craster Estate Crawford's Beach Lodge Crawley Crediton Cregus Kraal Cresswell Crocodile Vlei Crocodilevlei Crooksriver Crossroads Crossways Farm Village Crown Nook Crownhill Cuba Cul de Sac Culdale Cullean Cullendale Cumakala Cumessie Cungcwini Cungwana Cungweni Cunningham Cunstula Custom House (historical) Cuyler Manor Cuylerville Cwaru Cwebe Cwebeni Cwecweni Cwencwe Cwencwe Forest Cwengcwe Cwili Cyfer Cyferfontein Cyfrans Hoek Cypher Gat Cypherfontein Cypress Grove Cypress Valley Cypress Vlei Cyprus Cyprus Dale Daantjes Kraal Daantjieskraal se Laagte Daantjieskraalkop Dabane Dabayiya Dabi Dadamba Dadeni Dadiyane Daeraad se Baai Dagbreek Daggaboerhoek Daggaboerloop Daggaboersnek Dakanim Dal van Varings Daleview Dalgleish Bank Dalham Dallas Dam Plaats Dam se Kloof Dam se Laagte Damado Damascus Damdam Dammetjies Damplaas Damskop Danger Point Danielsrivier Daninge Dankeni Danserskloof Darabe Dark Hill Darlington Darries se Kop Dartford Darwin Das en Door Daskop Dassekrans Dassenkrans Dassie se Kop Dassiedeur Dassiegat se Kloof Dassieklip Dassiekop Dassiekrans Dassies Krans Dassies Krantz Dassies Scheur Dassiesfontein Dassieshoogte Dassieskrans Davelsrivier Dawn De Aap De Aar De Bergs Kuil and Doorn Poort De Boulogne De Brakke Rivier De Bril De Bruins Drift De Bruins Request De Couga De Dam De Doornkloof De Doorns De Draai De Erf De Goede Hoop De Grip De Hoek De Hoogte De Hoop De Hoopdam De Kleine Hel De Klerks Deel De Klyne-Brakke Rivier De Kol De Kruydfontyn De Kuylen De Langes Rust De Mist De Mistkraal De Mistkraal Nedersetting De Mond De Mullers Kraal De Nek De Neus De Oude Muragle De Paardekraal De Pannen De Plaat De Plat De Poort De Poortje De Poortjie De Put De Puts De Rietfontyn De Roode Wal De Rust De Twis Kuil De Villierspan De Vlakte De Vlei De Vrede De Waterval De Weg De Wits Rust Deaconskloof Deal Party Death Valley Debe Debe Marela Debe Nek Debeerspas Debera Debruinspoort Deckert’s Hill Deel Kraal Deelkraal Deep Drift Deepdale Deepdells Deerchase Dekselfontein Delarey Dell Delport Delports Delports Rivier Delportsrivier Delton Dempsey Den Stone Denhoek Depus Des Duivels Speelplaats Despatch Despatch Rock Detyana Deugas Devil’s Backbone Devil’s Bellows Nek Devilliersrivier Devils Staircase Devonia Dewaalskloof Dewpoint Deysels Kraal Deysels Plaat Diabolo Diakenhoutblok Diaz Way Dick King Route Monument Dickenstone Didima Hill Didima Range Didimanu Die Aar se Loop Die Alwyne Die Barakke Die Blaasbalk Die Bles Die Dorings Die Eiland Die Erf Die Hoek Die Kamberg Die Kamdeboo Die Kamp Die Keer Die Keps Die Kloof Die Knol Die Kop Die Krans Die Laagte Die Langkloof Die Moot Die Ou Tol Die Ou Voortrekkerpas Die Plaat Die Poort Die Punt Die Put Die Tand Die Toring Die Tsitsikamma Die Vlakte Die Vleie Die Vlug Die Weg Die Wonderboom Die Woud Diene Dowkloof Dienedouw Dienekloof Diep Diep kloof Diep Kloof Annex B Diep Rivier Diepdrif Diepkloof Diepkloofrivier Diepleegte Diepnek Diepnekkloof Dieprivier Diepriviersmond Diepsloot Diepte van Ellende Diepvalle Diepwalle Dieve Kop Dikeni Dikkop Flats Dimbaza Dingle Dintsi Diova Diphini Dirko Dirks Kraal Ditchling Diva Dlakatweni Dlepu Doddington Rock Dodwana Hill Dohne Dohne Agricultural Experimental Dohne Peak Dolfsrivier Dom Pedro Jetty Dome Doncaster Dondashe Dongwe Dongweni Donisa Pass Donker Hoek Donkerhoek Donkerhoek se Nek Donkerhoekpoort Donkerhoeksrivier Donkerkloof Donkinvale Donner Kloof Donnington Donnybrook Donny-brook Doon Doonegat Doonside Doorch Poort Doordrift Doorn Boom Doorn Drie Doorn Fonteyn Doorn Hoek Doorn Kloof Doorn Kom Doorn Kop Doorn Kraal Doorn Kroon Doorn Poort Doorn Rivier Doornboom Doornbosch Doornbosh Doorndraai Doornfontein Doornhoek Doornkloof Doornkom Doornkraal Doornlaagte Doornplaats Doornpoort Doorntjies Doornvlei Doornylei Doorskraal Doorst Vlakte Doortjes Laagte Doraine Doring Doringberg Doringboomkloof Doringboomrivier Doringbosberg Doringhoek Doringkloof Doringkloofrivier Doringkom Doringkop Doringkraal Doringkraalrivier Doringnek Doringnekkloof Doringpoortjiespruit Doringpoortlaagte Doringrivier Doringrivierdam Dorn Kloof Dornfontyn Dorringtonlokasie Dorsch Fontein Dorset Dorst Poort Double Drift Double Mouth Douglas Douglas Heights Douglas Vale Doukamma Doukomskraal Dourivier Douwkoms Kraal Douwurmkop Dover Hill Dowerville Dowie Kop Downton Draad se Kloof Draad se Kop Draad se Poortjie Draagos Fontein Draai Draai Hoek Draaiberg Draaibos Draaifontein Draaifonteinsrivier Draaihoek Draaikloof Draairivier Draay Kloof Drennan Dresden Drewlands Drie Fontein Drie Koppe Drie Koppies Drie Kuilen Drie Oppen Drie Roppen Drie Susters Drie Werwe Driefontein Driefontein Ridge Driegore Driehoek Driehoeksrivier Driekop Driekoppen Driekoprivier Driekops Driekopsvlei Drie-Kops-Vley West Driekuilen Drielingskloof Driepoort Drift Station Drinkrivier Drinkwater Drinkwater’s Kloof Drinkwaterkloof Driversdrift Droëfontein Droeg Hoek Droëkloof Droëkloofberge Droëkloofrivier Droërivier Droërug Droëspruit Dromore Drooge Drooge Heuvel Drooge Kloof Drooge Kraal Drooge Rivier Drooge Vlakte Drooge Vlakte A Droogeboom Droogekloof Druipkelder Drummond Drummond Gate Drummond Hill Dryhurst Du Plessis Leegte Du Randts Bert Dubbel Berg Dubbelberg Dube Dube Drift Dube Location Duff Bank Duiker Rocks Duikerkop Duikerskloof Duikerskrans Duisterniskop Duitbergbos Duiwefontein Duiwekloof Duiwekop Duiwelsberg Duiwelsgatrivier Duiwelskop Duiwerivier Dukani Duluca Dulwini Dumalisile Dumdum Dumrans Dunbrody Duncairn Duncan Village Duncraggen Dundas Dune Ridge Country House Dunedin Dunskye Dunstun Dunville Dunxa Duplex Dupreez se Kraal Durands Leegte Durandsberg Durban Mission Location Durlstone Durug Dutywa Duze Dwaal Fontein Dwaalberg Dwaalfontein Dwaalfontein se Rivier Dwaalfontein West Dwaars Pad Leegte Dwaas Dwaasberg Dwadwa Dwaleni Dwars Fontein Dwars Kloof Dwars Rivier Dwarsberg Dwarsfontein Dwarsfonteinkloof Dwarsfonteinrivier Dwarsfonteinruggens Dwarsrivier Dwass Dwass Rivier Dwassrivier Dwempe Dwesa Dwesa Point Dwessa Dwing Fontein Dwingfontein Dwykarante Dyaba Dyamala Dyam-Dyam Dyashi Dynamite Dyselberg Dysselsberg Dyushu Eagle Eagle’s Crag Eagles Nek Eamus Easington East Bank East Beach East Brook East Cape East Field East London East London Airport East of Klipgat East of Kruidfontein East Poort East Quagga East Reef Eastbrook Eastcot Eastern Beach Eastern Cape Eastern Cape Provincial Legislature Eastern Head Eastern Province Rugby Union Stadium Eastpoort Eastpoort Drift Ebb and Flow Ebenda Ebenezer Ebenezer Mhlambiso’s Ebufumbu Ecca Pass Echodale Echola Eddie Honniball Edeldam Edendale Edendell Edenfield Edgelaw Edmonton eDrayini Eenfontein Eensaam Eensaamheid Eenstroom Eenzaamheid Eenzaamheid and Molen Rivier Eerenkroons Rust Eerste Eerste Geluk Eerste Water Eerstekloof Eerstekrans Eersterivier Eersterivierstrand Eert de Koningin Effingham Egerton Egerton Dam Egerton Park Egg Rock Egglestone Eglistone eGoso Eiffel Eikenek Eilands Hoek Eilands Vlakte Eildon Elabafazi eLalini Elands Drift Elands Fontein Elands Fontyn Elands Fountain Elands Hoom Elands Jagt Elands Kloof Elands Kop Elands Kraal Elands River Elands Rivier Poort Elands Valley Elandsberg Elandsberge Elandsbos Elandsbos se Mond Elandsbosrivier Elandsdrift Elandsfontein Elandsheuwel Elandshoorn Elandskloof Elandskop Elandspoort Elandspunt Elandsrivier Elandsrivier Bosreserwe Elandsrivier Poort Elandsrivierberg Elandsrivierpoort Elandsvlakte Elderslie Elephant Hide of Knysna Guest Lodge Elephant House Elephant Park Elfin Elgin Elim Elima Soga Elinus Elizabeth Ellendale Ellende Ellerslie Ellington Elliotdale Ellispost Elstow Elton Elundini eLuqolweni Eluqoweni Hills Eluxolweni Elvadell eMabaleni eMabeleni eMablubini Emacosa Emadwaleni Emalahleni Emalwalweni Emasunguzaneni Ematshanganeni Embangweni Embugwini Emerald Hill Emerald Vale Emgcwe Emgcwe Forest Reserve Emjanyana Emnexe Emnxe Emtabazo Emu Rock eMxaxa Endeavour Endfield Endwe Endwell Energy Engcobo Engcobo Main Engcobo North Engelandkop Engelbrecht se Kop Engele Engelsche Drift English Drift Engxogi Enkeldoorn Enon Enon Mission Reserve Enqek Ezweni Ridge Enqobokeni Ensam Ententeni Entunja eQokama Equtubeni Erasmus Kloof Erasmus Kraal Erasmus Laaghte Erasmusboskloof Erasmuskloof Erasmuslaagte Erekroons Erekroonspoort Erekroonsrivier Erenkrons Berg Erfpag Ergenis A Ernsheenie Erresvlei Eselkop Esels Hoeck Esher Esigubude Esikhobeni Esikobeni Esinquineni Esinqumeni Esk River Eskweleni Esperanza Essenbos Essex Estrella Etempen Ethembeni Euing Euphorbia Evening Sun Everdale Evergreen Stream Eversley Everton (1) Everton (2) Ewanrigg Ewans Hope Ewecweni Range Excelsior Exeni Exwell Eyne Ezibeleni Ezolo Faanskraalrivier Fabers Kraal Faders Poort Fair View Fairbairn Fairfax Fairfield Fairford Fairlight Fairview Fairview A Fairview Racecourse Fairwell Falakahla Falcon Ridge Falcons View Manor Falloden Falstaff Vale Fama Fameni Fameni Ncora School Fancy Vale Far Horizons Farewell Farfield Farleigh Farm No XI Farmer Field M Farrgate Farrington Fascadale Fathers Poort Faure Featherstone Kloof Februarie Feni Ferguson Fern Ferndale Ferney Fernglen Ferniebrae Forest Reserve Ferreira Town Ferreiras-Laagte Fertility Ficks Figtree Fincham’s Nek Finella Falls Finger Pol First Krans Fish River Mouth Fish River Rand Fish River Sun Fitzpatrick Valley Flat Field Flat Point Flat Rock Fleurville Flinksfontein Flintham Flip se Baai Flipspruit Florida Flosdale Flowers Fontein Fontein Kloof Fontein Plaats Fonteinkloof Fonteins Hoek Fonteins Plaats Fonteinshoek Fonteinskloof Fonteinsplaas Fonteinsrivier Fonteintjiekloof Fontyn Foots Cray Fordini Fordyce Fordyce-Fontein Forest Cliff Forest Creek Forest Downs Forest glade Forest Hill Forest Range Forest View Forestdale Fork Road Formosa Peak Formosa Staatsbos Fort Armstrong Fort Beaufort Fort Bowker Fort Brown Fort Cox Fort Cunynghame Fort D’Acre Fort Fordyce Fort Gale Fort Glamorgan Fort Grey Fort Hare Fort Hill Fort Ivor Fort Jackson Fort Malan Fort Montgomery Fort Murray Fort Pato Forest Reserve Fort Victoria Fort Warden Fort Warden Outspan Fort Waterloo Fort Willshire Fort Willshire Road Fortuinplaas Foulkes Point Fountain Point Fountain Rocks Fountains Estate Fouries Kraal Fowlds Fraaiuitsig Frachet Framesby Francoisrust Frankfort Fransburg Fraser’s Camp Freemantle Fresh Water Poort Stream Fresh Water Port Friesland Frieslandsdrifrivier Frome Frynsfonteinberg Fullarton Fuller’s Bay Futye Fynboshoek Gabe Gabos Gadzooks Gaga Gaika Gaika Ford Gaika’s Kop Gaikaford Galamatunzi Galla Hill Gallants Kloof Gallawater Gamelands Gameston Gamtoos Gamtoos Ferry Gamtoos Valley Gamtoosrivier Gamtoosriviermond Gamtos Bridge Ganda Ganesdrif Ganna Hoek Ganna Kloof Ganna Leegte Ganna Vlakte Ganna Vlekte Gannahoek Gannahoekberge Gannahoekrivier Gannakraal Gannalandkloof Gannaleegte Gannavlakte Ganse Kraal Ganse Kraalrivier Gansvlei Gansvleirivier Ganzvlei Gap Gaqa Garden Court Garden Court Kings Beach Garden Court King's Beach Garden Court Kings Beach Port Elizabeth Garden Court Mthatha Garden of Eden Garden Route Garland Garner’s Drift Garnet Garrick Garryowen Garslands Garslandskloof Garstland Kloof Garstlands Gasela Gassrivier Gately Gateshead Gats Gatsrivier Gaviota Gciala Gcibala Gcuwa Geduld Geduldrivier Geel se Kop Geelboslaagte Geelhoek Geelhout Geelhout Boom Geelhout Bosch Ruggens Geelhoutboom Geelhoutboomrivier Geelhoutbos Geelhoutboskloof Geelhoutbosrivier Geelhoutbosriviermond Geelhoute Boom Geelhouteboom Geelkrans Geelplaat Geelrant Geelwal Geers Kraal Outspan Gegun Geinisa Geju Gelegen Fontein Geluk Geluksvlei Gelvandale Gelwekrans Genasfontein Geneva Gengqe George George Kop George’s Bay Georgida Gerluk Gert Piets Kraal Gert Sass se Berg Gert Smitskloof Gertfontein Gertplaas Gerts Laaghte Gertskraal Gesini Geurnakop Geut se Kloof Gevelgrans Gewelkrans Gezhiret Gheisrivier Ghusha Poort Ghwanogat Ghwanopad Ghwarriekoppe Ghwarriepoort Ghwerna se Berg Gibralter Giddys Farm Gideons Hook Gilandoda Gilead Gingqi Ginsberg Glacis Gladdekrans Gladstone Glamorgan Glandale Glassridge Glebe Land Glen Adelaide Glen Alfa Glen Ambrose Glen Avon Glen Avon Falls Glen Avon Heads Glen Boyd Glen Burnie Glen Cliff Glen Craig Glen Eden Glen Erin Glen Ewan Glen Garry Glen Gowan Glen Gregor Glen Grey Glen Grey Falls Glen Grey Hospital Glen Haig Glen Harry Glen Ivan Glen Kei Glen Kobus Glen Leigh Moreson Glen Lynden Glen Muir Glen Ovis Glen Owen Glen Rock Glen Roy Glen Seaman Glen Stewart Glen Stock Glen Stuart Glen Thorn Glen Torret Glen Wallace Glen Yair Glenara Glencairn Glencoe Glenconnor Glendenning Glendinningvale Glendour Glendower Glendower Beacon Glendower Peak Glendye Glenfiellds Glenfillan Glenfillan Park Glengariff Glengariff Bay Glengarry Glengotha Glengraig Glenholme Glenhope Glenhurd Glenlea Glenmidford Glenmoore Glenmore Glenois Meyle Glenorgal Glenretha Glenrock Glenshaw Glenside Glenstone Glenthorn Glenview Glenwarren Gletwyn Gnabie River Goba River Goba’s Wagon Drift Gobe Gobodwana Goboti Goda River Godidi Goditi Goeagenoeg Goed Geloof Goede Hoop Goedehoop Goedemoedsfontein Goedertrou Goedgedacht Goedverwacht Goeie Hoop Goeimanskop Goesabos Goewermentsberg Goewermentskop Goewermentsvlei Goewerneurskop Gola Hashe’s Location Golandoda Gold Dust Golden Grove Golden Valley Goldridge Golf Lodges On Sparrebosch Golf Goliads Kloof Goliadsfonteyn Goliatskraal Goliatskraal se Hoogte Goliatskraalkop Golomi Gompakloof Gompo Gonakraal Gonjan Gonna Kraal Gonna-Gonnakop Gonnakop Gonpha en Numah Gonubie Gonubie Manor Gonubie Park Gonubie Point Gonubie Vale Gonzana Good Hope Good Hope Outspan Good Luck Good View Goodhope Goodi Goodi Location Goodview Goodwill Goodwoods Goosha Gorah Gorah Elephant Camp Gordon’s Kop Gorge Gorgida Gorgida Laagte Gorie Koppen Gorie Kraal Gorie Laaghte Gorriekoppen Gorrielaagte Gosara Gosforth Goshen Goshen Mission Goso Gotyibene Gotyibeni Goudberg Goudgate Goudveldbos Goukamma Goukamma Nature Reserve Gouna Gounabos Gounarivier Gous se Berg Gouskraal Gouverneurs Kop Governors Kop Governors Kop Tower Gowana Gqabati Gqaga Gqebenya Gqiba Gqobonco Gqogpora Gqogqora Gqola Gqolonci Gqora Gqubeni Gqubonco Gqumrana Gqunce Gqunge Gqunqe Gqunube Gqutyini Gqutywa Graaff Reinet Graaff-Reinet Graaff-Reinet Aevodrome Graatjiesberg Grafdamrivier Grafton Grahamstown Graiggie Burn Grandon Grange Grant Stande Grant’s Valley Granta Grantham Gras Berg Gras Fonteyn Grasberg Grasboom Grasfontein Graskloof Graskop Graskop I Graslaagte Grasleegte Grasmere Grasnekkop Grasrand Grasrug Grass Flat Grass Flats Grass Neck Grass Ridge I Grass Ridge III Grass Rug Grassdale Grasshill Grasslands Grassridge Grassridge Dam Grassymede Grastland Kloof Grasvlakte Grasvlei se Loop Grasvlei se Spruit Grasvleipoort Gravelridge Grawater Graydon Grays Graywood Knysna Hotel Great Fish Great Fish Point Great Fish Point Lighthouse Great Fish River Great Fish River Settlement Great Kei Great Knoffel Fonteyn Great Riet Fonteyn Greatholm Green Acres Green Hills Green Point Green River Green Tree Green Vale Green Valley Greenbushes Greencliff Greenfields Greenfountain Greenhills Estate Greenlands Greenshields Park Greenspoint Greenvalley Greenvalley Dam Greenvalley Pumping Station Greenwood Greig Farm Greilingskraal Grenadier’s Cap Grey Cliff Grey Craig Grey’s Gift Greyling Greylingskraal Greys Gift Greystone Greystone Ridge Greytown Grobbelaars Grobbelaars Kraal Grobbelaarskraal Grobelaars Grave Groen Drie Groen Kloof Groenberg Groendal Staatsbos Groendaldam Groene Fontain A Groene Fontein Groene Kop Groene Leegte Groene Vallei Groeneberg Groenedal Groenekloof Groenfontein Groenheuwels Groenhoek Groenkloof Groenkop Groenlaagte Groenleegte Groenplaat Groenpoort Groenpunt Groenvalleispruit Groenvlei Groepskloof Groot Berg Groot Draai Groot Fontein Groot Haasfontein Groot Hoek Groot Keirivierpas Groot Kloof Groot Kom Groot Losberg Groot Massersdrift Groot Plaat Groot Poort Groot Rivier Poort Groot Riviers Poort Groot Schuur Groot Tavel Kop Groot Uye Groot Vlakte Groot Vlei Groot Vley Groot-Abrahamsrivier Grootbaai Grootbakoond Grootbank Groot-Blyderivier Grootboom Groot-Brakrivier Groot-Bruintjieshoogte Grootdam Groot-Dassiefontein Groot-Doringkloof Groot-Draai Groote Dam Groote Draay Groote Fontein Groote Hoek Groote Kom Groote Riet Valley Groote Vallei Groote Valley Groote Vlakte Groote Vley Groote Zeekoe Gat Grooteiland Grooteilandrivier Groot-Elandsfonteinrivier Grootfontein Groot-Graslaagte Groot-Grysbos Groot-Heuningbos Groothoek Groothoekberge Grootkaree Groot-Karookloof Grootklip Grootkloof Grootkloofbos Grootkom Groot-Kommandokloof Grootkop Grootkrans Grootkruis Grootleegte Groot-Nagoenakloof Groot-Oshoek Grootpan Grootplaat Grootplaats Grootpoort Grootpoort se Rant Grootpunt Grootrant Groot-Rietvleispruit Grootrivier Grootrivier Poort Grootrivierberge Grootrivierdrif Grootrivierhoogte Grootrivierpas Grootrivierpoort Groot-Rooielskloof Groot-Samenkomst Grootschuur Groot-Slangkop Groot-Spitskop Groot-Suurkop Groot-Uierivier Grootvlak Grootvlei Groot-Vleirivier Grootvleispruit Groot-Waterloop Groot-Winterhoekberge Groot-Winterverg Groterug Groxozayo Gruisbult Grysbos Grysdraaikloof Guanga Guba Guba Park Gubahoek Gubeni Gubenxa Gubu Gubu Dam Guduse Guerna Gugura Guildford Guildford Hill Guilford Gulandoda Gulu Gulu Mouth Gum Hill Gumdale Gume Gungumini Hill Gunsteling Gunstelingstroom Guquka Guse Gusha Mouth Gusha Mouth Estate Gusi Gutyeni Pass Guxuxu Guzi Gwaas Gwaba Gwabo Gwadana Gwadana Forest Reserve Gwadu Gwahoo Gwali Gwatyu Gwegwe Gwili Gwili Gwili Gwili Mountain Gwiligwili Gwudu Gxaha Gxara Gxara Falls Gxetu Gxobo Gxulu Gxwaleni Gykorie H.G. Fourcade's Witte Els Bosch homestead Haane Kuil Haarhof Haarhoffs Kraal Haarlem Haarlempiek Haas Haas Fontein Mond Haas Poort Haasfontein Haasfonteindorings Haasfonteinloop Haashoek Haaspoort Haaspoortnek Haaspoortspruit Hackney Hackney and Cibini Haddon Hadley Hafton Haga-Haga Haga-Haga River Hagas Hagaskloof Hagga’s Haining Hales Owen Hales Vlakte Halesowen Haleston Halfpadkloof Hali No 1 Hallack Rock Halse Halseton Hamburg Hamburg North Hamelberg Hamilton Hammerhead Hammonds Hampton Handley Hange Hangklip Hankey Hanleys Hoek Hannatjieskraal Hannetjieskraalrivier Hannskop Hanover Hans Donsies Kraal Hans Meirivier Hans se Rant Happy Home Happy Valley Harden Hardepeerbos Hardeveld Hardinge Hardwood Hare Flats Harefield Harkerville Harkerville Coast Hiking Trail Harkerville Forest Harkerville Viewpoint Harland Harmonie Harmony Harper Harrington Harris Krans Forest Harrison Harrow Hartbeeskop Hartbeeskuil Hartbeeskuilrivier Hartbeesleegte Hartbeesrivier Hartebeesfontein Hartebeesnek (1) Hartebeesnek (2) Hartebeest Hartebeest Fontein Hartebeest Kuil Hartebeest Laagte Hartebeest Leegte Hartebeest Pad Hartebeest Poort Hartebeeste Fontein Hartebeeste Hoek Hartebeeste Laagte Hartebeestefonteins Hoek Hartebeestfontein Hartebeesthoek Hartebeestkuil Hartfield Hartlands Hartmens Kraal Harvest Vale Haslope Hills Hastings Hatchleydene Hattings Kraal Hawdew Hawerleegte Hawkhurst Hayes Hayfield Hayslope Hayter Haywards Hope Annex Hazeldean Hazeldene Hazelmere Healdton Fingo Healdtown Heather Glen Heatherbrae Forest Reserve Heatheron Heathfield Heaton Hebehebe Hebe-Hebe Hebron Heckel Hegu Heidelberg Heights Heilbron Heilgeets Kloof Hekel Helderberg Helderberg Kamp Hell’s Gate Kloof Helmekaar Helmet Hill Helpmekaar Helpmekaarsmond Helspoort Helspoortpas Helushe Hely Grove Hemesklip Hemha Hemingways Hotel Henderson Henderson Heights Hendersons Berg Hendersonvale Redcone Heneyclough Heights Hengelaarskroonstrand Herberg Herbert’s Hope Herbou Herbouw Hercules Hermanus Kraal Hermanuskop Hermiston Hermitage Heroncliff Herrie se Kloof Herselmanskloof Herselsrust Hertzog Hesselsmanskop Het Fortuin Het Rif Heughes Plain Heuningklip Heuningkliprivier Heuningkloof Heuningkop Heuningkrans Heuningneskloof Heuningneskop Heuningnespoort Heuningnesspruit Heuvel Kraal Hex Plantation Hex Rivier Hexrivier Heynsrus Hickman’s River Hide Away Guest House High Camp High Hill High Meadow High Rocks High Run Highbank Highbickington Highbury Highclere Highdowns Highgate Highland Home Highlands Highlands Mountain Hightor Highview Highway Hildasia Hilderfontein Hill and Dale Hillandale Hillary Hillcrest Hillpath Hills Drift Hills Nek Hillsdale Hillside Hilltop Hillview Hillwacht Hilton Hinchinbrook Hinton Park Hitgeheim Hlabatshane Hlabeni Hlangani Hlege Hill Hlobo Hlobo Forest Hlopekazi Hlozi Hobbs Hill Hobeni Hobson’s Dale Hodana Hoe Hoek Hoëberg Hoek Plaats Hoek Van Africa Hoekdoorns Hoekfontein Hoekoe Hoëkop Hoekplaats Hoekrivier Hoeks Kuil Hoeksfontein Hoekskraal Hoeksplaas Hoekvlei Hoër van Stadensdam Hoërant Hoeree Hoffmans Kloof Hoffmansbos Hoffmanskloof Hog Hollow Lodge Hogg’s Kloof Hoggs Kloof Hoggsback Hogsback Hohita Hol Rivier Holbach Holbakrivier Holdrifrivier Holdrift Hole in the Wall Holela Holgat Holgatkloof Holkloof Holland Park Hollingrove Hollowdale Hollowmeade Hollywood Holme Park Holrivier Holsloot Holstein Holtzhause Baken Holtzhuisbakenspruit Home Home Park Homehill Homtini Homtini Pass Homtinirivier Honde Nek Honden Nek Honey Grove Honeyville Honigklip Honing Klip Honing Krantz Honingkrantz Honingnest Krantz Hood Point Hood Point Lighthouse Hooge Kraal Hoogekraal Hoogmoed Hoogstede (1) Hoogstede (2) Hoogte Hoop van Afrika Hoopsberg Hooroosh Craig Hope Hope Farm Hope Field Hopedale Hopefield Hopefountain Hopeleigh Hopevale Hopewell Hopewell Number Two Hops Rivier Hopsrivier Hopwood Hornets Nest Hornlee Horsefell Horseshoe Horton Hospital Grant Hot River Hot Springs Hota-Mbeule Hotfire Hotnotskloof Hotnotskop Hottentots Kop Hottentots River Hottentotsfontein Hottentotskop Hottentotspoort Hottentotsrivier Hotweg Kloof Houd Constant Hounslow Housemartin Lodge Hout Bosch Hout Kloof Houtkapplek Houtkloof Houtkloofrivier Houtrivier Hove Howard Shaw Bridge Howieson’s Poort Howieson’s Poort Reservoir Howison’s Poort Howse’s Post Farm Hoyana Hughenden Huis Rivier Huis se Berg Huis se Rant Huisklip Local Authority Nature Reserve Huisleegte Huisrivier Hukuwa Hull Street Human’s Rock Humandorp Humansdorp Humefield Humefield Hills Humewood Humewood Beach Humewood Road Hummanby Hunlets Hunt’s Drift Hunter S Country House Hunter’s Lodge Hunters Hill Hunters Home Hunter's Retreat Huntingdon Hunts Drift Outspan Hunts Hoek Hunts Hoek Outspan Hurst Hurterskraal Huxley Hyde’s Hill Ibika Ibika Forest Reserve Idutywa Idutywa River Igoda Mouth Igojini Igudu Ihlobo Ijster Kop Ikwezi Ilinge Ilkley Imbaba Imphi Imtwendwe River Imvani Imwani Incarha River Indlunkulu Industry Indwana Indwe Indwe Colliery Indwe Drift Indwe Settlement Indwepoort iNgcagaga Ingleside Inkberry Inkerman Inkwenkwezi Private Game Reserve Inner Bar Inner Obelisk Point Inspiration Intaba Etsolo Intoonsi Intsika Yethu Inver Thomas Inverbolo Invergwali Inverket Invermema Inverquanti Inversome Inverthorn Invidia Inxuba Yethemba Inyarha Inyoka Iquaberg Iqulu Irene Irisdale Iron Gate Ironstone Isadale Isak se Bank Iseleni River Isidenge Bosboustasie Isidonge Forest Reserve Isityam Island Bush Island Rock Isola Bella Guest House Itala Italy Ivonia Ixworth Izaksrivier Izele Convent Izeleni Jabberside Jabula Jack’s Point Jackall Fontein Jackals Bosch Jackals Kraal Jackhals Laaghte Jackson Jacobs Kop Jacobsdal Jacobskop Jafta se Loop Jafta’s Jagazi Jagers Fontein Jagersbos Jagersfontein Jagersrivier Jaggakammarivier Jagpoort Jagt Poort Jahleel Island Jaho Jahos Glen Jaji Jakkalshoek Jakkalskloof Jakkalskop Jakkalskraal se Berg Jakkalsvlakte Jakobskraal Jalamba Jalouses Kraal Jameson Dam Jammers Fontein Jan Rolmsrivier Janjieskraal Jansen Fontein Jansen’s Rock Jansenville Jarman Tsp Jaskraal Jedwood Jeffreys Bay Jeffrey's Bay Jeffreys Bay Lifestyle Estate Jeffrey's Bay Railway Station Jekeni Jekezi Jenkins Spruit Jergins Jericho Jersey Vale Jessica Jessie Jessisblaar Vlei Jinginja Jixini Jochimsrivier Joesfolly Joewyns Park Johnstone’s Forest Jojweni Jokwenus Location Jongmansloop Jonkersberg Jonkersbergeiland Jonkershoogte Jonkerskloof Joosthoek Jordaans Kraal Jordaansrivier Jordeans Kraal Joseph Ngxales Joseph Williams Jossieville Jouberiskraalrivier Joubertina Jouberts Kop Jouberts Kraal Joubertsberge Joubertskloofspruit Joubertskop Joubertskraal Joubertspruit Juanasberg Jubilee Park Juju Point Jujura Julieskloof Julukugu Julys Kloof Junction Junction Drift Junction Farm Juriesfontein se Leegte Kaaisfontein Kaal Hoek Kaal Kraal Kaalhoek Kaalhoekrivier Kaalkop Kaalleegte Kaalplaas Kaalplaats Kaan Kaapsedrif Kaapsedrifrivier Kaapsepad se Loop Kaapsepoortjie Kaarlskroon Kaatjie se Loop Kaba Kaba Kloof Kabakazi Kabega Kabeljous Kabeljousrivier Kabeljousriviermond Kabooka Kabougarivier Kabougaspoort Kabousie Drift Kafferkop Kafferkopbos Kafferkraalrivier Kaffers Kraal Kaffersberg Kaffershoekkop Kafferskop Kafferskop Bosreservaat Kafferskraalrivier Kaffersleegte (1) Kaffersleegte (2) Kafferspoort Kafferspoortjie Kaffir Drift Kaffirs Berg Kaffirs Hoek Kaffirs Kop Kaffirs Kraal Kafirs Leegte Kaga Kagaberg Kagiesberg Kaka Kuylen Kaka’s Mouth Kakebeensbos Kakie se Kop Kakskraal Kaktus Proefplaas Kalalo Kalana Kalana Location Kalandernesbos Kalk Gat Kalk Heuvel Kalk Vley Kalkdam Kalkfontein Kalkgat Kalkgatheuwel Kalkgatrivier Kalkkoppie Kalkoen Krantz Kalkwalrivier Kallabassefontein Kalmoes Fontein Kalwerfontein se Kloof Kalwerkop Kama’s Kamas Kraal Kamas Location Kamastone Kamberg Kamdeboo Kamdeboo Poort Kamdebooberge Kamdeboorivier Kameelvlei Kamegaspruit Kamesh Kamferkloof Kamferspoort Kamkame Kammanassieberg Kammanassieberge Kammassieberg Kammassiekloof Kammiebos Kampplek Kamtra Drift Kanariesfonteinspruit Kandos Kangkara Kanonkoeëlsgat Kanonkop Guest House Kansia Kansies Kant Kraal Kantienkop Kantiensrivier Kanye Kap River Farm Kaprand Kaprivier Kaprivierberge Kaptein Kapteinskop Kapteinskraal Karatara Karatara Settlement Karatararivier Karberg Karee Dam Karee Kloof Karee Laagte Karee Leegte Karee Poort Karee Poortje Karee Rivier Kareeboom Kareebos Kareebosch Fontein Kareebosch Outspan Kareebosrivier Kareedam Kareedouw Kareedouwberg Kareedouwberge Kareedouwpas Kareedowberge Kareefontein Kareekloof Kareekop Kareekuilspruit Kareelaagte Kareeleegte Kareepoortrivier Kareerand Kareerivier Kareewater Karel se Kloof Kariega Kariega Game Reserve Kariega Game Reserve - River Lodge Kariega Game Reserve - Ukhozi Lodge Kariega Game Reserve Main Lodg Kariega Game Reserve-Settlers Drift Kariega Game Reserve-The Homestead Kariegarivier Kariegastontein Karies Karnek Karnemelks Kuil Karnemelkskuil Karoo Karoo Vlakte Karooberg Karoomo Karooside Karot Kraal Karre River Karree Bosch Karree Kuil Karree Stomp Outspan Karreekuil Karreeleegte Karreepoort Karreestomp Karrooside Karroo-Vlakte Kasa Kaschula Kasey Kasouga Kasouga Road Kasougarivier Kasrant Kat Doorn Kuil Kat Kop Kat River Mouth Katberg Katberge Katbergpas Katdoornkuil Katinyanga Katjie se Kop Katkop Katlaagte Katrivier Katrivierdam Katryntjiespruit Kaulela Kaulela Location Kausenkei Kauserkei Kayna Kayser’s Beach Road Keerkloof Keerom Keerrivier Kefani Kei and Bulhoek Kei Bend Kei Bridge Kei Bridgefarm Kei Farm Kei Flat Kei Lands Kei Mouth Kei Mouth Forest Station Kei Road Kei Slopes Keibolo Keigate Keightley’s Kop Keikop Keilands Keipoort Keiskama Hoek Keiskamma Barracks Keiskamma Point Keiskammahoek Keiskammarivier Kelbrick Kelderkop Kelswood Kelway Kemba Kempserf Dam Kempserf pumping station Kempskloof Kempt Kendousberg Kendouslaagte Kendouspoort Kendrew Kendrew Besproeiings Nedersetting Kendrew Settlement Kenilworth Kenrick Kensington Kentani Kentani Hill Forest Reserve Kentbury Kenton Kenton on Sea Kentucky Kerkdrif Kerkhof Kerkplaas Kerkplaats Kerstandjieskraal Keti Ketters Hoek Kettershoek (1) Kettingkraal Keuna Keur Kloof Keur Rivier Keurbooms Keurbooms River Keurboomsrivier Keurboomsrivier Bosreservaat Keurboomsrivier Natuurreservaat Keurboomsriviermond Keurboomstrand Keurbos Keurfontein Keurfonteinrant Keurkloof Keurkop Keurrivier Keurrug Keylock Keys Poort Keysers Keytersnek Khiwane Khwetshe Kianghas Drift Kianghas Mond Kichaka Lodge Kichaka Luxury Game Lodge Kidd’s Beach Kiepersol Kiesen Doorns Kiewietskuil Kildare Killaloe Killarney Kilmo Kilsythe Kilwarden Kinahan Kinderton King Neptune King Sabata Dalindyebo King William’s Town King Williams Town King William's Town King’s Cross Kingfisher Creek Kinglee Kingo Hill King's Beach Kings Heights Kings Lynn Kingscofe Kingsmead Kini Bay Kinkelbos Kinnaird Kinnersley Kinross Kirby Kirbydale Kirbywood Kirkwall Kirkwood Kiwane Klaar Stream Klaarstroom Klaas Smithsrivier Klaas Smitsrivier Klam Fontein Klapperkop Kleigat se Kop Klein Beeste Kraal Klein Bosch Duive Rivier Klein Buffelshoek Klein Bul Hoek Klein Camp Klein Dirkskraal Klein Doringberg Klein Fontein Klein Gras Rug Klein Haas Fontein Klein Hoek Klein Homtini Klein Hopsrivier Klein Jas Kraal Klein Lang Kloof Klein Leeuw Fontein Klein Loerie Fontein Klein Massers Drift Klein Morden River Klein Palmiet Rivier Klein Riet Fontein Klein Riet Gat Klein River Klein Rivier Klein Sleutelfontein Klein Tavel Kop Klein Vley Klein Winterberge Klein Wolwefontein Kleinbakoond Kleinbegin Kleinberg Kleinbergie Klein-Bloupuntrivier Klein-Blydeberg Klein-Blyderivier Kleinbos Kleinbosmond Kleinbosnek Kleinbosrivier Klein-Brak Klein-Brakrivier Klein-Bruintjieshoogte Kleinbulhoek Klein-Doringberg Klein-Doringkloof Kleine Fontein Kleine Fonteyn Kleine Fontyn Kleine Grobbe Kleine Lieuw Fonteyn Kleinefontein Kleineiland Kleineilandrivier Klein-Elandsfonteinrivier Kleinemonde Kleinfontein Kleinfontein Berg Kleinfonteinsberg Kleinganskraal Klein-Gounabos Klein-Graslaagte Klein-Grysbos Kleinhoek Klein-Karookloof Kleinkloof Klein-Kommandokloof Kleinkruis Klein-Langkloof Klein-Langkloofberge Klein-Losberg Kleinmonde Klein-Nagoenakloof Klein-Palmietrivier Klein-Palmietrivier Staatsbos Klein-Perdekloof Klein-Perdekop Klein-Perdepoort Kleinplaas Kleinplaasrivier Kleinplaat Kleinplaatjie Kleinpoort Klein-Poortrivier Klein-Reierkop Klein-Rietrivier Kleinrivier Kleinrivier Berg Kleinrivierberg Klein-Sandrivier Kleinskool Klein-Spitskop Klein-Uierivier Klein-Visrivier Klein-Visspruit Kleinvlak Kleinvleispruit Klein-Waterloop Klein-Wildebeesspruit Klein-Winterberg Klein-Winterhoekberge Klein-Witelskloof Klein-Witrivier Klesbos Klip Drift Klip Fontein Klip Fonteyn Klip Hoek Klip Kop Klip Kraal Klip Kuil Klip Nek Klip Rug Klip Stavels Klipdaggapoort Klipdrif Klipdrifrivier Klipdrift Klipdrift Annex Klipfontein Klipfontein, Patryshoogte Klipfonteinberg Klipfonteinrivier Klipga se Loop Klipgat Klipgatrivier Klipheuvel Klipheuvels Klipheuwel Kliphuis se Loop Klipkop Klipkopkloof Klipkoppies Klipkraal Klipkraal (2) Klipkraalrivier Klipkrans Klipkuil Klippe Drift Klippe Fontein Klippedrift Klippefontein Annex Klippefontyn Klippekraal Klippen Point Klipplaat Klipplaat Consolidated Klipplaatrivier Klipplaats Drift Klipplaats Kloof Klipplaatsdrif Klipplaatskloof Klipplatt Drift Klipplatts Drift Klipplatts Fountain Klippoort Kliprivier Klipriviermond Kliprivierspruit Klipvlei Kloppers Fontein Kloppers Kloof Kloutjieskloof Klu Klu Klu Klu Mouth Kluesrivier Knapps Hope Knapsakkraalrivier Knoetze Knoffelrivier Knolls Knowsley Knutsford Knutsford Canal Knysna Knysna 5 Knysna Country House Knysna Golf Club Knysna Harbour Knysna Hollow Country Estate Knysna Hollow Hotel Knysna Lagoon Knysna Log-Inn Knysna N.W. Knysnarivier Koba Kobas Mouth Kobodi Kobole Kobonqaba Kobonqaba Mouth Kobonqaba Point Kodoo Kloof Kodoos Kloof Koedoekop Koedoes Kop Koedoeskloof Koedoeskop Koedoespoort Koedoesvlei Koeëlboudskop Koegarivier Koegoeskop Koekemoersdrif Koene Kraal Koene Laaghte Koene Laagte Koenieleegte Koentekraal Koerasiekop Koesters Drift Koevoel Koffee Fontein Koffielaagte Koffylaagte Koffylaagte Outspan Koga River Koge Kogelbouts Kop Koggelmanderbult Kohlo Kokskraal Koksley Kolberg Kolegat Kolgat se Kop Kologha Kologha Forest Kologha Range Koloniesplaas Kolsrand Kom Fontein Kom Kom Kom Nader Kom se Bos Komanas Komdo Komdos Ruggens Komfontein Komga Komga Mediumwave Transmitter Komgarivier Komgas Mouth Komgha Komhlulu Komkhulu Komkromma Point Komkulu Kommadagga Kommadaggakop Kommadaggaspruit Kommandodriftdam Kommandokloof Kommandokraal Kommandokraalrivier Kommassiekloof Kommessiekloof Kommessierivier Kommetjes Hoek Kommetjes Kraal Kommetjeshoek Kommetjieberge Kommetjiesvlakte Kommissiekloof Kompanjiesdrif Koms Kloof Komsfontein Komskop Kona Kongeni Koningskraal Konkelrug Konki Kooifontein Kookooboo Koonap Koonap Heights Koonaprivier Koos se Bank Kop Leegte Kope Koperfontein Kopje Alleen Kopjes Kraal Kopkes Store Kopperfontein Koppie Aleen Koppie Alleen Koppies Kraal Koppieskraal Korana Plantation Korenkraal Korhaansdrif Korhaanspoort Korhaanvlakte Koringdal Koringkraal se Loop Koroomos Mond Korsten Kort Draai Kortdraai Kortkloof Kotana Kotishini Kotyana Koud Nek Koud Nek’s Rante Koueheuwel Kouekop Kouenek Kouga Kouga Bronnen Kouga Poort Kouga Range Kougaberge Kougadam Kougakop Kougarivier Kouka Kou-Kamma Koukarivier Koups Leegte Koupsleegte Koutjie Kouwen Berg Kowana Kowie Forest Kowie Local Authority Nature Reserve Kowie Point Kowie River Kowte Forest Reserve Kraai Kraai Rivier Kraaibek Kraairivier Kraal Kraalhoekrivier Kraan Vogel Kuil Kraanvogel Kuil Kraay Rivier Outspan Krakeelrivier Krans Drift Krans Kop Kransberg Kransbos Kransbos Bosreservaat Kransdrift Kransfontein Kranshoek Cliff Kranshoek Forest Kranshoek Griekwa Nedersetting Kranshoekriver Kranshoekrivier Kranskloof Kranskloofleegte Kranskop Kranskraal Kranspoort Kransput Krantz Fern Krantzhoek Krantzkloof Krantzplaats Kranz Kloof Krapgate Krauses Beach Kriegars Hoek Kriegers Kraal Kriekuil Krigedam Krisjan se Nek Kritplaas Krom Krom Hoek Krom Spruit Krombaai Kromdale Kromkloof Kromme Kloof Kromme Krans Kromme Rivier Kromme Riviers Poort Krompoort Krompoortrivier Kromriver Kromrivier Kromrivier Staatsbos Kromrivierhoogte Kromriviermond Kronkels Pruit Kroome Krans Kroome Rivier Kroomie Kroomieberg Kroomierivier Kroon Hoek Kroonvale Krugers Kraal Krugers Post Kruid Fontein Kruidfontein Kruidfonteinhoogte Kruidfonteinspruit Kruis Kruis Fontein Kruis Rivier Kruisfontein Kruisfonteinbos Kruisrivier Kruisrivierkop Kruisvallei Kruitfontein Kruithoring Kruizementfontein Kruizemuntfontein Kruizemuntvlei Kruydtfontein Kry Kry Rivier Ku Banzi Ku Kbhaxa Ku Ndabakazi Ku Zunga KuAmanzimnyama KuBangqo Kubeka KuBeke KuBeyele KuBhakana KuBilatye KuBlikana KuBojane KuBom KuBomvana KuBoniswa KuBotane Ku-Buka Kubusi Kubusi Forest Kubusie Kubusie Woolwash Kubust KuCaba Ku-Canti KuCocoyi Ku-Cocoyi KuDidi KuDidwayo KuDlakavu KuDubeni KuDudumashe Ku-Duka Kudus Kloof Ku-Dyobhudaka KuFani KuFundakubi KuGambushe Ku-Gengqe KuGetyesa Ku-Gilandoda KuGilanqodo KuGqangushe KuGqebenya Ku-Gqebenya KuGqoloma KuGroxo KuGunjana KuGxara KuGxwalibomvu KuHlaba Ku-Hlaba Ku-Hlope KuHota Kuikendieffontein KuJaho KuKamma KuKavara KuKeti KuKolanga Ku-Kombe KuKose KuKowa KuLanganci KuLeleyo Kuliles Ku-Liweni KuLofumbata KuLogongoto KuLogqogqa KuLohopana KuLojingqi KuLombete KuLombombo Kulo-Ngqa KuLoqolo KuLotshazi KuLovulandi Ku-Lozulu KuLubele KuLudondolo Ku-Ludondolo Kulufini KuLuxomo Ku-Luxomo KuMabangula Ku-Mabululu KuMadikane Ku-Magubu KuMagwala KuMahasana KuMahlungulu Ku-Malongwe Ku-Manina Ku-Mankazana KuManyisani KuManyube KuManzamnyama KuManzana KuManzimahle Ku-Manzimdaka Ku-Mapahla KuMapasa KuMapiko KuMaqanda KuMaqashu KuMatuntuta KuMaya KuMayibe KuMbaxa KuMbonda KuMbozwana KuMbulumbulu KuMembesi KuMgawuli Ku-Mhlabubomvu KuMkulu KuMpame Forest KuMshotana Ku-Msikiti KuMtala KuMtukuma KuMtyamde Ku-Mtyamde Ku-Mvezo Kunap Post KuNcalolo Ku-Ncengana KuNcityana KuNcwana Ku-Ndaca Ku-Ndlunkulu KuNdonga Kundulu KuNgcaca KuNgcuka KuNgolokota KuNgqovu KuNgqungqumbe KuNgqutu KuNgqwaru Ku-ngubebhadi KuNgxeke KuNjemane Ku-Njombela KuNkalane KuNkazana KuNkolonga KuNkumba KuNobhokwe Ku-Nobuso Ku-Nocingcolo Ku-Nokana KuNomadamba Ku-Nomadambe Ku-Nonyentu KuNqumakala KuNqwati Ku-Nqwati KuNtabablantye KuNtabankulu Ku-Ntekashe Ku-Ntlangaza KuNtlonze KuNtseshe KuNtsimba Ku-Ntunja Ku-Nyokinala KuNyongwane KuOengqeleka KuPhahla KuQambani KuQengqeleka KuQoba Ku-Qwebeqwebe KuQwempe Ku-Qwempe Ku-Raxa Kurland Kurland Hotel KuSauti Ku-Sigiba KuSikobobo KuSikulume Ku-Sinxuzula KuSunduza Kuswag KuTsembeyi KuTshatshu KuTsobo KuTsolokazi Ku-Tsolokazi KuTyawana KuVulindawo KuWohlo KuXama Ku-Xawuka KuXenge Kuyne KuZangqokwe Kuze Ku-Zilitole KuZingqutu KuZitungu Ku-Zitungu Kuzuko Lodge Kwa Darala Kwa Gajaza Kwa Lubilo Kwa Luxomo Kwa Mgcawezulu Kwa Mjuza Kwa Nkwcbu Kwa Ntsele Kwa Shushu Kwa Tshikitshiki Kwaai Rivier Kwaaihoek Kwaaiman Kwaaimanspas Kwaairivier Kwa-Altile Kwaay Plaats KwaBanqo KwaBawu Kwa-Bhabha KwaBinca KwaBitsha KwaBoto KwaBovu KwaBukwana KwaCawu KwaCentane KwaCingane KwaCwebhe Kwa-Dabula KwaDebese KwaDesi KwaDilatashe KwaDlomo KwaDudumashe Kwa-Dukatole KwaFanana KwaFane KwaFeni KwaGambu KwaGcina Kwa-Gcina Kwaggabank Kwaggapoel Kwaggasdrift Kwaggashoek Kwaggaskop Kwaggavlakte KwaGingqi KwaGomatana Kwa-Gomatana Kwa-Goniwe Tyaliti KwaGoqo KwaGubevu Kwaguela KwaGwalani KwaGxubana KwaHadi KwaHala Kwa-Herman Kwa-Hoyi Kwa-Hoza KwaJaji Kwa-Kahla Kwa-Kayaletu KwaKotilitye KwaKwayo KwaKwebulana KwaLibalele KwaLunda Kwa-Lutiko KwaLutuli KwaLutuncha KwaLuvundu KwaMabuya KwaMacibe KwaMacibini KwaMagxaki KwaMahomba KwaMajija KwaMakawula KwaMakazana KwaMamata KwaManzikraka Kwa-Maqosha Kwa-Maradede KwaMasingatha KwaMatiwane KwaMaya KwaMayijl KwaMazamisa Kwa-Mbanyaru KwaMbekeni KwaMbhali KwaMbombela KwaMbongendlu KwaMcatuve Kwa-Mcwabeni Waterfalls KwaMdange KwaMdingi KwaMehlwenyoka KwaMganu KwaMgcodo KwaMgudlwa KwaMhaga KwaMhlekwa KwaMiya KwaMjo Kwa-Mkontwana Kwa-Mlawu KwaMlondleni Kwa-Mnqanqeni KwaMoaxa KwaMpeko KwaMpotulo KwaMtebele KwaMtintsilana KwaMtonjana Kwa-Mtyatyamba KwaMvemve KwaMyataza KwaMzaza KwaNaxalawe KwaNcani KwaNcwane Kwa-Ndaba KwaNdesane KwaNdibaniso KwaNdima Kwa-Ndinja KwaNditya Kwa-Ndlankomo KwaNdluyake KwaNduku Kwandwe Private Game Reserve KwaNgali Kwa-Ngcamama KwaNgezana KwaNgqukambane KwaNgquwa KwaNgudle KwaNgxuthu Kwa-Ninwayo KwaNjana KwaNobhokwe KwaNobuhle KwaNofodasi KwaNokatana KwaNokepeyi Kwanokuthula Kwa-Nomadola KwaNongxeke KwaNontsinga KwaNqwelo Kwa-Ntabezulu KwaNtloko Kwantsa Kwa-Ntshoma Kwantu Game Reserve Kwantu Game Reserve Lodge Kwanyana KwaNzolo Kwa-Nzolo Kwa-Pahla KwaPewuta Kwa-Pikoli KwaPita Kwa-Pita KwaPosi Kwa-Qamnyama KwaQamnyana KwaQiya KwaQoba KwaRasi Kwarne Laagte KwaRuka KwaSaba KwaSandile KwaShwini KwaSidumo KwaSilatsha KwaSogula KwaSongwevu Kwa-Sulinyembezi KwaTanda KwaTshatshu Kwa-Tshezi KwaTuba KwaTwalo KwaVelelo KwaWezo Kwa-Xego KwaXokoshe Kwa-Xoxo KwaXusha KwaYimani KwaZakhele KwaZangwa KwaZibunu KwaZulu Kwa-Zulu KwaZundi KwaZunga Kwa-Zwelinzima Kweek Kraal Kwelera Kwelera Point Kwelerana Kwelesha KweNduli Kwe-Nduli-Epakapi Kwenkwezi Mountain Kwenxura Kweta Kwetyna Kwezana Kwilini Kyber Kykoe Kykoerierivier La Boheme B&B Hotel La Boheme Bed And Breakfast La Cachette Laaitjieslaagte Labanzi Labuschagnes Kraal Lady Frere Lady Frere-Cumakala Lady Grey Lady’s Slipper Laer Streepbos Laër Van Stadens Dam Laer-Langkloof Lagg Lahlangubo Laing Dam Lairds Lodge Lake Arthur Lake Eric Lake Mentz Farm Lake Pleasant Living Lakeside Lalibela Game Reserve - Lentaba Lodge Lalibela Game Reserve - Mark'S Camp Lalini Lammerkraal Lammermoor Lamplough Lancelot Lancewood Land se Kloof Landlana Landmanskop Landmanskraal Lands End Landsdown Landshoogte Lang Gat Lang Kloof Langanci Langanci Plantation Langbakenkop Langberg Langbos Langbosch Rivier Langbosrivier Langdon Lange Berg Lange Draai Lange Fontein Lange Hoek Lange Hoop Lange Kloof Lange Riet Fontein Lange Rif Lange Rug Lange Vlakte Lange Vlei en Vette Vlei Lange Water Yoor Langefontein Langeni Langfield Langfontein Langford Langgat se Rant Langhoek Langhoekspruit Langholm Langholm Estates Langkloof Langkloof Mountains Langkloofberge Langkop Langkuil Langleegterivier Langley Park Langpoort Langrand Langrug Langrug Noord Langrugskloof Langside Langverwagt Lanpeter Lante Lanternkop Lanti Lanti Weir Lapesini Larnaca Larochelle Latham Laton Farm Laudina Laughing Waters Laughing Waters Dam Lauries Bay Lausanne Lauter Waters Rivier Lavinia Lawn Wood Lawnwood Forest Lawnwood River Lawsuit Lawudini Le Blue Guesthouse Le Grange Le Grange Estate Le Roux Leach Bay Leach’s Bay Lebanon Lebelen Leckie Ledekanthoogte Ledge Leentjie se Hang Leermansdrifrivier Leeu Leeubos Leeubosrivier Leeukliprivier Leeukloof Leeukloofberg Leeukop Leeukraal Leeukuilspruit Leeurivier Leeuw Fontein Leeuw Fonteyn Leeuw Kloof Leeuw Kuil Leeuw Poort Leeuw Rivier Leeuwbome Leeuwbosch Leeuwe Bank Leeuwen Blad Leeuwenbosch Leeuwfontein Leeuw-Fontein Leeuwkop Leeuwkraal Leeuwrivier Leevdrift Lehman’s Drift Lehmansdrif Leinster Leisure Island Leisure Isle Lekfontein Lekker Water Lekkerwater Leliefontein Leliekloof Lemoen Kraal Lemoenfontein Lemoenkloof Lendlovu Lensklip Lentenyeka Lenye Leo Kop Leonard’s Bay Leopards Kop Leskuif Lessendrum Lesseyton Lesseyton River Lets Kraal Letskraal Leuwe Drift Leuwis Drift Lewis Lewuswood Lexden Springs Libertas Libode Lichfield Lichtenstein Liefeldt Liekloof Lielievleibos Lily Fontein Lily Fountain Lily Park Lily Springs Lily Vale Lily Valley Lily Ville Lily Vlei Lilyvale Lilyvale Creek Lime Hills Limebank Limebank Kop Limoen Fontein Limoen Kloof Lincoln Lindale Lindesdal Lindini Lindisfarn Lindores Lindsay Line Drift Lingelihle Linkerhand se Kloof Linksplaat Linksplate Linton Lions View Villa Kwantu Game Reserve Lismore Little Cowie River Little Fish Little Fish Point Little Kowie River Little Kubusi Little Sundays River Little Thomas River Little Winterberg Littlego Lituli Liwalimoaka Lixeni Llangollen Lochdale Lochinga Locke Moore Lockharts Bush Forest Reserve Locksley Loer Poort Loerie Loerie Bosreservaat Loerie Forestry Station Loerie Rivier Loeriesfontein Loeriesfonteinrivier Loeriespruit Loganbraes Lokasie Lokasiekop Lokishini Lomar Lombaards Post Lombards Post Lombardy Londano Lone Hill Lone Tree Lonely Valley Lonetree Long Hill Long Hope Long Ridge Long Tree Hill Longfield Longford Longford-Grange Longlands Longlee Longmore Longmore Forestry Station Longmore Park Longmore State Forest Longridge Longslope Longtongue Longvale Longwood Lookout Lookout Beach Lookout Rocks Loopfontein Looprivier Lootcliff Loots Loots Kloof Loots Kraal Lootsberg Lootsbergpas Lootskloof Lootskloofrivier Lootz Fontein Lopenderivier Lora Loredo Lorraine Los Boome Losberg Losklippe Loskloof Loskop Losseberg Lota Lothians Lottering Lottering se Mond Lotteringbosreservaat Lotteringpieke Lotteringrivier Lottrings Uitvlugt Lotzplaats Louden Farm Louisan Lourie Dam Local Authority Nature Reserve Louterwater Louterwaterrivier Louwaterberg Louwkloof Louwkop Louws Kloof Louws Kraal Louwskraal Louwwatersberg Lovedale Lovedene Lovemore Heights Lovemore Hill Lovemore Park Lovers Walk Loverstwist Lower Beacon Park Lower Blinkwater Lower Blinkwater Forest Lower Bolo Lower Bush Dove River Lower Cala Lower Centuli Lower Didimana Lower Flucwecwe Lower Gqobonco Lower Gretna Lower Hegu Lower Hendam Lower Hottentots River Lower Huis River Lower Jongetjes Leegte Lower Keiviets Kuil Lower Macibini Lower Mcambalala Lower Mnyolo Lower Mpako Lower Mtingwevu Lower Ncora Lower Ndakana Lower Nenga Lower Ngancule Lower Ngoloza Lower Qora Lower Rabula Lower Sabelele Lower Schoonberg Lower Sevenloof Lower Wolf River Lower Xume Lower-Ngqwara Lowesoffe Lowestof Lowlands Lubalekweni Lubisi Lubisi Dam Lubiza Lubomnini Lubomvini Lucerna Lucerne Lucernrand Lucwecwe Ludaka Ludiza Luembo Lufukufuku Lufuta Lugilo Lugolwenie Lugxogxa Luhewini Luhlalwini Luipaard Kop Luiperdskop Lujiza Lujizweni Lukanji Lukolweni Lukozana Lukwetu Lulwalweni Lulworth Lumku Lunda Lundie Luns Klip Lunsklipsrivier Lupapasi Lupapsi Lupindweni Lupondweni Luqolweni Lusasa Lusernteegte Lushington Lushington River Lusikisiki Lusizi Lusizini Lustfontein Lusthof Lutubeni Mission Lutuli Lututu Lutwayizo Luvundu Luxeni Luxhomo Lwandlana Lyall Lyndhurst Lyndoch Lynedoch Lyngdal Lynton Lynwood Lynx Drift Ma-Africa Maanhaarkop Maanugo Kop Maastricht Maastrom Mabandla’s Mabandla’s Location Mabehana Mabelentombi Mabheleni Mabofolweni Mabongo Mabongo Location Mabus Mac Macazana Macibe Macibini Macireni Macleantown Macomos Kraal Macosa Macs Halt Macubeni Madagascar Reef Madeira Madela Maden Dam Madi Madi Karoo Safari Lodge Madibas Tide River Manor Madladleni Madlotsheni MAdontsi Madwaleni Maerman Maermansberg Maermanskraalrivier Maestricht Mafusini Magashu Magazana Magjuan Magontsini Magqabi Magqazeni Magubeni Magwala Magwateni Mahasana Mahlatini Mahlenhlanzi Mahliwane Mahlubeni Mahlubini Mahlungulu Maidenhead Main Main Forest Mainfor Maipase Maise Maitland Maitland Hill Maitland River Maitland River Mouth Majamanini Majoorskraal Majuba Makaka Makana Makanna’s Kop Makasi Makaties Kop Makiki Makoukuil Makwababa Malabar Malan Malangazana Malangs Kraal Malindini Malloch Park Malmaison Malo Malulwane Malvarug Mama Mamata Mamba Mamfeneni Mamfengwini Mampingeni Mampondweni Manangeni Mancam Mancis Mancotsheni Mandalay Mandela Park Mandileni Mandjes Fontein Mandlaneni Mandlovini Mandluntsha Mandundu Manelsdam (1) Manelspoort Manganwela Mangati Mangati Forest Reserve Mangca Mangea Mangola Mangqabasheni Mangquta Mangqutu Mangweni Mangxongweni Manhinuskloof Manils Dam Mankazana Manley Flats Mannetjie Mannetjiesberg Mannetjiesberg High Site Mannetjieskop Mannorhouse Manqondo Manquata Mansfield Mantanieni Mantetyeni Mantjes Fonteyn Mantlaneni Mantshilibeni Mantyantya Manu Manubi Forest Manubie River Manuneni Manxiwa Manyana Manyano Manyosini Manyube Hill Manzana Manzi Manzikahyi Manzikanyi Manzimahle Manzimdaka Manzimdakakop Manzotweni Mapassa Kraal Mapassa’s Leven Mapiew Maputi Maqadini Maqanyeni Maqhinebeni Maqomeni Maqonqweni Maqwambini Maqwateni Maqwathini Maqwatini Marais Marais Hoop Maraishope Maraiskloof Maraiskop Maranugeni Marevlakte Margo Marias Dal Mariasbos Mariba Marienburg Marienthal Marina Glades Marinas Walk Marion Baree Marionhof Marlborough Marlow Marnewieksrivier Marsden Flats Marshgrove Marshstrand Martendale Martha Marthinusberg Martindale Martinshof Martinus Martyrford Martyrsford Mary Mary and Martha Mary Hill Maryland Marys Help Convent Masakane Masana Masangweni Masazane Masbiekerrand Masela Masele Masincedane Masusa Matanzima Matatiela Mateko Matentente Maties Farm Matjes Fontein Matjes Kraal Matjesfontein Matjesgoed Poort Matjespoort Matjies Matjiesdrif Matjiesfontein Matjiesrivier Matjiesvlei Matjiesvleirivier Matola Matolanyile Matollokop Matolweni Matomelas Matomelas Location Matonana Matshaba Matumbu Matunzini Matyatywa Matyeni Matyspos Mauarweve Maurice Hill Mavundleni Mavuso Mawusheni Mawushweni Maxalanga Maxambeni Maxwele Mayabana Mayfair Mayfield Mayford Mayireni Mazeppa Bay Mazeppa Point Mazeppa Sand Patch Mazizini Mbamba Mbanga Mbangcolo Mbanyana Mbanyaru Mbashe Mbashe Point Mbaulene Mbazisa Mbeleni Mbem’s Mbenge Mbewana Mbewula Mbewuteni Mbexa Mbhashe Mbilini Mbimzana Mbinene Mbinza Mbinzaan Poort Mbinzana Mbityana Mbiza Mbizana Mbodlana Mboketwana Mbokotwana Mboleni Mbolompo Mbolompo Point Mbongo Mboxo School Mboya Mbozi Mbozisa Mbule Paterson Mbulu Mbulukweza Mcambalala Mcambaldla Mcamemfene Mcantsi Mcata Mcelwana Mcelwane Mcetshe Mceula Mcewula Mcewuli Mcfarlane’s Island Mcinga McKay’s Nek McLeanville Mcotsho Mcubakazi Mcucu Mculu Mcwangele Mdala Mdantsane Mdantsane N Mdantsane Unit 5 Mdantsane Unit 6 Mdantsane-M Mdeni Mdikana Mdiliweni Mdizeni Mdolomba Mdwaka Mdzonga Meadow Sweet Mearmans Kraal Medbury Meerlus Noord Meerlus Suid Meerlust Meidebank Meidenek Meidepoort Meiringspoort Meisjes Kraal Melani Melitafa Melk Melkhoutboom Melkhoutbosch Melkhoutkraal Melkrivier Melks Rivier Melks Rivier Outspan Mellow Park Melon Melrose Melton Melville Park Mendu Mendu Head Mendu Point Mendwana Mentjesvler Mentzdam Menziesberg Menziwa Menziwe Location Merelisa Merino Merino Rust Merino Vale Merino Walk Merinowelk Merrydale Merville Meulekloof Meulrivier Meulrivierberg Meulskop Mevana Mewstone Rock Meyers Hope Meyers Kraal Meyershoek Meyershof Meyerskraal Mfeku Mfezane Mfiki Mfula Mfulamde Mfuleni Mgagasi Mgangweni Mgatana Mgazana Mgekezweni Mgobhozi Mgojo Mgojweni Mgomanzi Mgomanzi Plantation Mgongwana Hill Mgotwane Mgqakwebe Mgqanga Mgqukwebe Mgquma Mgqungqu Mgudu Mgunduza Plantation Mgwalana Mgwalana Mouth Mgwali Mgwangqa Mgweni Mgxobozweni Mgxumza Mhlahlane Mhlanganisweni Mhlangura Mhlobo Mhlonyaneni Mhlopekazi Michaelsberg Michau Michausberg Mid Klipfontein Middel Drift Middel Ent Middel Erf Middel Kraal Middel Plaats Middel Water Middelberg Middelburg Middelfontein Middelkop Middelkraal Middel-Langkloof Middelplaas Middelplaat Middelrug Middelwater Middle Plaats Middledrift Middlemead Middleton Middleton Canal Middlewater Midfor Midlands Mieliekop Mieliemeel Mielierug Mienieskraalspruit Miere Kraal Migana Mike Milan Mile End Milkwood Manor Mill River Mill Wood Forest Millard Grange Millbank Miller Miller se Kraal Millerton Millfarm Millfield Millness Millwood Creek Milton Milverton Milwa Mimosa Mimosa Park Mimosadale Miners Spruit Minnaarsberg Minnehaha Minnieskraal Misgund Misgund West Misgund-Oos Misguns Misgunst Mishini Miskraal se Kop Mission Mission Forest Reserve Missionvale Mist Kraal Mistkraal Mistkraal se Plaat Mistley Mitchell’s Pass Mitchell's Brewery Mitford Mitford Park Mjamkhulu Mjamkhulu Forest Mjanyana Mjikweni Mjula Mkangiso Mkanzi Mkapusi Mkatazo Mkonjana Mkonjane Mkosi Mkrazina Mkuhlu Mkunjana Mkwinti Mlati Mlele Mlimane Mlokwane Mmangweni Mmelwane Mnandi Mncotsho Mncwasa Mncwasa East Mndundu Mndwaka Mnenemba Mnenga Mngeangatelo Mnggesha Mngoesha Mngqalasini Mngqesha Mngqula Mnqaba Mnqaba Kulile Mnqanda Mnquma Mntintloni Mntla Mntlabathi Mntwini Mnxe Mnyama Mnyameni Mnyibashe Mnyolo Mockesrant Mocking Hill Modder Fontein Modderbult Modderdrift Modderfontein Moddergat Modder-Gat Modderkraal Modderlaagte Modderpoort Modderpoortrivier Moed Moedershuis Moederzoon Kraal Moederzoonskraal Moeitevernietrivier Moerasfontein Mofu Moldam Molen River Molenrivier Molteno Mon Desir Mon Repos Monarch Mondplaas Monkey Point Montague Farm Montebello Montem Video Montrose Monttau Monzi Park Mooiberg Mooifontein Mooihoek Mooimeisiesfontein Mooiplaas Mooiplaats Mooirivier Mooistroom Moolmans Kloof Moonlight Moonstone Moordenaars Moordenaarskloof Moordenaarskop Moordenaarsnek Moordenaarsrivier Moordinaar Mooredale Moorsfield Mooskraal Morar Koppie Mordenaarsberg Morelig Moreson Môrestêr Morgan Bay Morgan’s Bay Morganville Morgenson Morgenzon Morning Sun Mortimer Mosekraal Moskouvlei Moskuilen Mossendale Mossgrove Mostert se Krans Mosterts Kraal Mostertsbos Moteri Motherwell Motherwell 4 Mound Point Mount Arthur Mount Arthur Range Mount Ayliff Mount Blazes Mount Coke Mount Coke Forest Reserve Mount Frederick Mount Frere Mount Hopley Mount Kempt Mount Leisure Mount Liddle Mount McDonald Mount Mitchell Mount Pellier Mount Pleasant Mount Prospect Mount Road Mount Ross Mount Ruth Mount Shepstone Mount Snell Mount Somerset Mount Steep Mount Stewart Mount Thomas Mount Thomas Forest Mount Vale Mount View Mount Wodehouse Mount Wright Mountain Home Mountain Range Mountain Top Mountain Valley Mountain View Mountain Zebra National Park Mountainview Mountford Mount-Tylden Mountview Mouritzkraal Mousa Mouth of Kleine Leeuw Fonteyn Mouth of Lieuw Fonteyn Mowbray Park Moyeni Mozana Mozes Mpafane Mpafeni Mpahlanas Mpahleni Mpako Mpali Mpambu Mpame Mpame Beach Mpame Bos Mpame Point Mpandela Mpanze Mpapela Mpeko Mpeko Forest Mpekweni Mpenduza Mpentse Mpenzu Mpeshewa Mpetu Mpindweni Mpoleni Hill Mpolweni Mpongo Private Game Reserve Mpotula Mpotulo Mpozolo Mpukane Mpukane Mission Mpuku Mpuluse Mpume Mpunga Mpungutyana Mpunzana Mputi Mqabo Mqambeli Mqanduli Mqekezweni Mqele Mqemeni Mqinda Mqokrweni Mqolo Mqonci Mquabu Mqukwane Mqwashu Mrwaga Msele Msenge Msengeni Mshumane Msideni Msikaba Msintsana Msintsini Msukeni Msulugwa Msutu Mt. Prospect Mtaleni Mtana Mtata Mtati Mtebe Mtebele Mtendwe Mtentu Mthatha Mthonjeni Mtingwevu Mtini Mtintloni Mtintsilana Mtogazi Mtokwane Mtombe Mtombe Location Mtonga Mtonjane Mtonjeni Mtseko Mtshabe Mtshanganeni Mtshanyana Mtshanyane Mtshayeleni Mtshekelweni Mtsheko Mtsotso Mtuba Mtunzi Mtuvi Mtwaku Mtwal Mtyintyin Mtyintyini Mtyolo Muil se Baai Muilkop Muirside Muis Kraal Muishond se Loop Muiskraal Muiskraalrivier Mulderskraal Mullers Kraal Mullersberg Munjana Munnikspas Munqayi Munster Munyu Munyu Hill Murasie Murasies Mure se Rivier Murray Murray’s Krans Murrayfield Murrel Fountain Mushroom Rocks Musulungwa Muthill Muur se Kloof Mvane Imvani Mvasini Mvezo Mvubukazi Stream Mvuka Mvumvu Mxambule Mxatule Mxelo Mxobo Mxumbu Myeki Mymer Myrtledale Mywashu Location Mzantsi Mzazi Mzi Mzinya Mziphewi Mzwini N Lodge Port Elizabeth N’Dimba Naaldkop Naauw Poort Naauwkloof Nabileyo Nadouw Nadouw West Nagbaai Nahoogte Nahoon Nahoon Point Nahoon River Nahoon River Dam Nakazana Nakop Nanaga Hoogte Nankoos Nankooskop Nankoosstroom Nantsana Napoleon Naras Nek Nardousberg Naroegas Naroegas Poort Naroegaspoort Naroes Narra Narrasnek Narraway Narrow Point Narrow Poorte Narrowvale Nartjieskloofberg Nassau Nature’s Valley Naudes Fontein Naudesbergpas Naudesfontein Naudeshoekspruit Naudesrivier Naval Valley Nayisifili Ncabasa Ncalukeni Ncambele Ncanaha Ncanaseni Ncata Ncataru Ncaywana Ncedana Ncembezana Ncengu Ncenjane Ncera Ncera Pezula Ncerana Nciba Ncihana Ncihana East Ncise Ncisininde Ncizela Ncizele Ncoha Flats Nconcolora Ncora Ncora Dam Ncqamakwe Ncumbe Ncuncuzo Ncwazi Ndabakazi Ndakana Ndakazi Ndatala Ndebe Ndenxe Ndesi Ndibela Ndindi Ndlambe Ndlamza Ndlovana Ndlovini Ndlunkulu Ndokwane Ndonga Ndotshanga Nduka Ndukazi Hill Nduku Ndulini Ndumangeni Ndundumeni Nduveni Ndwana Ndyebo Neave Neazala Needles Point Needs Camp Forest Reserve Nellanah Nelland Nellasrant Nelloo Nels Hoop Nels Kraal Nels Rust Nelsberg Nelsig Nelskom Nelskop Nelskraal Nelson Nelson Mandela Bay Nelson Mandela Bay Metropolitan Municipality Nelson Mandela Bay Stadium Nelson Mandela Metropolitan University Nelson’s Bay Nelspoort Nelsrivier Nenta Nerine Kloof Nesvley Nettle Grove Neusgate Never Thought Of Neverset New Bethesda Allotment Area New Bradford New Brighton New Cemetery New Driefontein New Farm New Glenholm New Haven New Hope New Horizons New Imema New Keerom New Land New Mountain Glen New Nek New Pevensey New Rathwick New Signal Kop New Years Dam New Years Drift New Years River Newark Newcastle Newfondale Commonage Newhawstead Newklip Newlandale Newlands Newstead Newton Newton Hill Newton Park Newtondale Ngabara Ngadla Ngai Ngai School Nganakwe Ngapezulu Ngaphantsi Ngaphezulu Ngcabasa Ngcacu Ngcatembeni Ngcenduna Ngcilibanzi Ngcinase Ngcingwana Ngcingwane Ngcizela Ngcizele Ngcobo Ngcolowa Ngcongcobisa Ngcongcolora Ngcongconi Ngcuka Ngculu Ngculura Ngcwanguba Ngcwele Ngcweni Ngebetyana Ngede Ngenu Ngewevana Nggoko Ngingqini Ngoatyana Ngobe Ngobe Location Ngobozana Ngobozi Ngoele Ngogwane Ngoingane Ngojini Ngojn Ngoma Ngonyama Ngozana Ngqaba Ngqageni Ngqakayi Ngqakwebe Ngqamakwe Ngqanda Ngqangas Ngqangqaka Ngqantsingana Ngqaqini School Ngqatyana Ngqeqe Ngqinisa Ngqoko Ngqokoto Ngqokweni Ngqolowa Ngqowa Ngqumane Ngqunga Ngqungf Ngqungu Ngquqa Ngquru Ngqushwa Ngqusi Ngqutura Ngqwahu Ngqwara Ngqware Ngqwaru Hills Ngubebhadi Ngumngum Ngundusa Ngunduza Ngunge Nguni River Lodge Ngunza Ngwabeni Ngwane Ngwangwane Ngwangweni Ngwara Ngwebelele Ngwekazi Ngwenkala Ngwenya Ngwevana Ngxabangu Ngxalathi Ngxangxasi Ngxeko Ngxingwa Ngxingwem Ngxingweni Ngxingxolo Ngxogi Ngxotwana Ngxutyana Ngxwabangu Ngxwalane Ngxwashu Nh Plettenberg Bay Nicholsfield Nicolaas Fontein Nie Te Ver Niekerks Hope Niekerksberg Niekerksbergspruit Niekerkspas Niet te Na Nietgegund Nietgegund Annex Nietgegund Annex Number Two Nieu Pads Nek Nieu Pads Nek Annex Nieu-Bethesda Nieuw Jaars Fontein Nieuw Jaars Kop Nieuw Jaars Kraal Nieuwe Grond Nieuwe Grond A Nieuwe Kloof Nieuwe Post Nieuwe Rust Nieuwefontein Nieuwelings Nikwalini Njakazi Njara Njekeni Njeni Njingini Njombo Njwaxa Nkalana Nkalanga Nkalweni Nkanga Nkantini Nkanya Nkawukazi Nkconkcoyini Nkelekete Nkobongo Nkobongo Plantation Nkolonga Nkolongo Nkomfeni Nkondla Nkondlo Nkonjane Nkonkobe Nkonkoto Nkonkwana Nkukhwana Nkwalini Nkwenkwana Nkwenkwazi Nkwenkwezi Nkxini Nmark No 5 Boutique Art Hotel No5 Boutique Art Hotel Noaga Noaga’s Berg Noagas Hoogte Noagashoogte Nobanda Nobokwe Nobumba Nocton Farm Nocwane Noedoekloof Noemakloof Noetsie Noetsierivier Noetzie Noeza Noholoza Noizela Nokomis Noll Nols se Kop Nomadamba Nomaheya Nomcama Nomcetevana Nonesi’s Nek Nontloko Nonyembesi Nonyembezi Noodshoop Noodsloot Noodulp Noodzakelyk Nooitgedacht Nooitgedagt Noordelike Haasfontein Noordhoek Noordhoekberge Noorsdoornkraal Noorsdoringkop Noorsdoringkoprivier Noorsekloof Noorshoek Noorskloof Noorskloofpunt Noorskop Noorslaagte Noorsleegte Noorspoort Noorsrand Norde’s Hoek Normans Kop Normanskop Norsdoringplaas North End North End Lake North Hill North Jetty (historical) North of Boschfontein North Patch Northcliff Northdowns Northern Forest Range Northfield Northslope Norwood Notcliffe Park Nottingham Nougarivier Noukloof Nounek Nousi Nozala Nqabane Nqabara Nqabara Plantation Nqabara Point Nqabarana Nqadu Nqakanqa Nqaku Nqamakwe Nqamaqe Nqancule Nqanda Nqantosi Nqaqini Nqati Nqcabasa Nqcekuma Nqencu Nqinayo Nqise Nqolo Nqolo Nqolosa Nquaze Nqumakala Nqumeya Nqunduza Nqunouza Nquntsi Nqunu Nququ Nqusi Nqutuha Nqutwaneni Nqwebebeni Nqwenerana Nqxakaxa Nsimbakazi Ntaba Lubisi Ntabakulu Ntabalongo Ntabamakwenkwe Ntabambandezi Ntabambinzana Ntabamtonjeni Ntabankulu Ntabatsolo Ntabeduli Ntabeliza Ntabeni Ntabomvu Ntakwendlcla Ntengisani Nthlabane Nthlonyana Ntibane Ntilini Ntisana Ntlabane Ntlabathini Ntlaboya Ntlahlana Ntlakwedlela Ntlambonkulu Ntlangano Ntlanjeni Ntlantsana Ntlanzini Ntlekiseni Ntloko Ntlonyana Ntlonyane Ntlonzona Ntlukuhla Ntonga Ntsanye Ntseleni Ntseshe Ntshangase Ntshatshongo Ntshingeni Ntshinindeni Ntshintshi Ntshonkolo Ntshula Ntsikizi Ntsikizini Ntsimba Ntsimbakazi Ntsimbini Ntsinga Ntsito Ntsitshana Ntsuba Ntubeni Ntungwana Ntwanambi Tonis Ntwashini Ntwashwini Nubble Numati Kloof Nundulana Nunu Nurney Hill Nuwedam Nuwedrif Nuwejaarskuil Nuwekloof Nuweland Nuweplaas Nuweposkop Nvulula Nxalawe Nxamagele Nxanxashe Nxaxo Nxaxo Mouth Nxaxoa Nxelesa Nxomfu Nxuba Nxwashu Nyakuzila Nyalasa Nyana Nyanisos Nyara Nyara Forest Reserve Nyatyom Nyatyora Nyatyora Location Nyculu Nyibibeni Nyidlana Nyindlana Nyoka Nyokana Nyulula Nyulutsi Nyumaga Nyutura Nywara Nzimankulu Nzulwini Oak Valley Oakancu Oakdene Oakhill Oakland Oaklands Oaklea Oakmore Oakwood Oamata Oaraza Hill Oasis Oatbrey Oathay Oatlands Ocean View Oceana Beach & Wildlife Reserve Oceanic Ochter Muthil Ockerseplaas Oesterbank Ohlsenville Ojigoko Old Drift Old Fort Old Green River Old Idutywa Old Morley Old Woman’s River Olienboomkop Olienhoutskloof Olieve Boom Olievenfontein Oliewenboskloof Olifant Olifants Bosch Olifants Kloof Olifants Kop Olifantskloof Olifantskop Olifantspoort Oliphants Been Oliphants Plaat Oliphantsbean Olive Cliff Olive Fonteyn Olive Grove Olive Kloof Oliveburn Olynhoutskloof Olyvenfontein Om die Hoek Omdraai Omeara Omquana Onder Palmiet Rivier Onder Traka Ondermeyerskraal Onderplaas Onder-slot Onder-Smoordrif Onder-Traka One Oak Ongelegen Ongeluksrivier Ongelukte Krans Onrust Onverwagslaagte Onverwagt Oorlogs Kloof Oorlogs Poort Oorlogskloof Oorlogspoort Oosehoek Oos-Kleinemonderivier Oosthuislaagte Oosthuizens Leegte Openside Opgedroogte Opgedroogte Fontein Opkoms Oplands Opreisfontein Opreisfonteinkop Oran Orange Grove Orange Vale Oranje Ordonnansiekop Ordonnantie Orel Oribe Oribi Oribi-Fountains Orient Beach Ornithorhynchus Paradoxus Nova Os Kom Os Laagte Osbankkraal Osberg Osbosch Osfontein Osfontein se Nek Oshoek Oshoekkloof Oshoeksloot Oskloof Oskom Oskop Oskraal Oskraalrivier Oslaagte Osnek Osplaat Osrand Oss Plaat Osse Kraal Osseberg Ossekop Ossen Hoek Ossen Kraal Ostrich Spring Osvlakte Otterbaai Otterburn Otterford Otterford Forestry Station Otterford State Forest Ou Panne Ou Wapadsbergpas Ouberg Ouberge Oubos Ouboskloof Ouboskop Oubosrand Oubosrivier Oubosstrand Oubrand Oude Bosch Kloof Oude Drift Oude Drift A Oude Kraal Oude Muragie Oude Wolwekraal Oudeberg Oudebergpas Oudebosch Ruggen Oudekraal Oudelkraal Oudewerf Ougqwala Ouhoogte se Spruit Oukop Oukraalleegte Oumure Ounek Ou-Nekskop Ouplaas Ouplaasrivier Ouplass Ouposberg Outeniekwaberge Outer Bar Outer Obelisk Point Outspan Outspan Annex Outspan Niekerksberg Outspanning Outubeni Outvlugt Outyd Ouwerf se Rant Oven Ovendale Overmeer Guest House Overschot Overton Owengcwe Ox Kraal Oxkraal Oxton Oyster Bay Oyster Bay Lodge Oyster Rock Paal se Kop Paapkuilsfontein Paardberg North Paarde Fontein Paarde Fontyn Paarde Kloof Paarde Kom Paarde Kop Paarde Kraal Paarde Kraal Annex Paardeberg Paardefontein Paardehoek Paardekloof Paardekraal Paardekraalspruit Paarden Paarden Berg Paarden Laaghte Paddafontein Pairlie Pakati Paling Kloof Palingrivier Palingspoort Palm Beach Guest House Palm Valley Palmerston Palmervale Palmiet Palmiet Fontein Palmiet Fonteyn Palmiet Fontyn Palmiet Rivier Palmietfontein Palmietfonteinspruit Palmietheuwel Palmietrivier Palmtree Pama Pampoen Draai Pampoen Kraal Pampoensland Rivier Panorama Lodge Papasini Papenkuilsfontein Papkuilsfontein Papkuilsfonteinloop Papkuilsrivier Paradise Paradise Beach Paradise River Paradoxus Park Farm Park Ridge Parkside Parliament Parsons Hill Patankala Patchwood Patensie Paterson Patience Pato Bush Pato’s Kop Pato’s Kop Location Patos Kop Patrooskop Patrys Hoogte Patrysfontein Patryshoogte Patulweni’s Paul Sauerdam Paulsrivier Pavet Paynes Hill Peach Forest Pear Tree Pearston Pecha Umtata Peddie Peelton Pefferskop Pellsrus Pembrooke Penderry Penheale Penhoek Peninsula Penkoppie Penrose Pera II Percival Percy’s Plot Perdeberg Perdedam se Loop Perdedum Perdefontein Perdehoek Perdekloof Perdekop Perdekraalkloofspruit Perdepoort Perdevlei Perhamdown Perridgevale Perrieshoogte Perseken Plaats Perserance Perserverence Perseverance Petersburg Petits Hill Petrea Petrus Brandeiland Petrus Brandrivier Petrusdal Petrusville Peuleni Pevensey Pewuleni Pewuleni Mission Peynes Kraal Pezula Championship Golf Phangindela Phantom Acres Phantom Pass Pheuleni Phillip Tunnel Phillipsdale Piano Rocks Pienaars Pienaars Berg Pienaarsberg Pienaarskloof Pienaarspoort Pienaarspoortrivier Pienaarsrivier Piesangrivier Piet Kuil Piet Retief se Huis Piet se Baai Piet se Bank Pieters River Pietersen’s Kraal Pieterskraal Pietersrivier Piets Laagte Pietskop Pietslaagte Pietslaagterivier Piffway Pigot Park Pigott’s Bridge Pilgrems Rust Pillion Ridge Pine Grove Pine Tops Pinegrove Pink Valley Pirie Pirie Hain Forest Pirie Main Forest Reserve Pisgoed Vlakte Plaat Leegte Plaatbos Forest Plaatjiesdrif Plaatkraal Plaatrivier Plankfontein Plankfonteinsloot Plat Fontein Plat Huis Plat Rivier Plat Rug Platbank Platberg Platbos Platboshoogte Platboskop Platbosrivier Platdrift Platfontein Platjesfontein Platkop Platkuilspruit Platrant Platrivier Platrug Platteberg Platyi Pleasant Prospect Pleasant View Plesis Plessisrivier Plettenberg Bay Plettenberg Bay Airport Plettenberg Park Plettenberg Park Hotel & Spa Plettenbergbaai Plum Hill Plumbago Plumstock Pluto’s Vale Pofadderkop Poffertjes Leegte Poffertjiesleegte Point Pokies Fontein Police Fontein Police Kop Pollards Inn Hotel Kwantu Game Reserve Pollockshaws Pollok Beach Poortberg Poortje Poortjie Poortjies Poortjiesleegte Poortrivier Poplar Grove Populierplaas Porcupine Kop Poro Port Alfred Port Alfred Airport Port Alfred Police Station Port Alfred Railway Station Port Elizabeth Port Elizabeth Airport Port Elizabeth Front Beacon Port Elizabeth Lighthouse Port Natal Leegte Port of Ngqura Portefontiyn Portland Portland Height Portlock Portsmouth Pos Fontein Pos Retief Posini Poskarant Posseidon Distribution Centre Post Chalmers Post Retief Potgieter’s Kraal Potgieters Kraal Potjesfontein Potjieskloof Potjiesrivier Potjiesrivierhoogte Potlepel Kraal Potsdam Potsdam Cemetery Potter’s Pass Poukop Poukop se Leegte Prairie Premier East London International Convention Cente Premier Elicc Premier Hotel El Icc Premier King David Premier Knysna The Moorings Premier Regent Prentice Kraal Present Preston Park Pretoria Pretoriakloof Pretorius Kloof Pretorius Kuil Pretoriuskloof Pretoriuskop Pretoriuskop se Laagte Pretoriuskraalstroom Pretty View Prices Date Prim Gradia Primeston Primgradia Prince Alfred’s Pass Pringle’s Kop Prinsfontein Prinsloo Proceshoek Proctors Fontein Progress Prospect Prospect Vale Protea Hotel - Knysna Quays Protea Hotel Grahamstown Protea Hotel Keurbooms River Protea Knysa Quays Protea Marine Hotel Protea Tsitsikamma Village Providence Provincial Nature Reserve Prudhoe Pruim Plaas Pruimkop Pruimpoort Prutkraal Pulangweni Pumba Private Game Reserve Pumba Reserve Puntjies Punzana Punzana Location Purdonton Putfontein Puts Putters Kraal Putterskraal Puttersloot Putuma Puzana Qacu Forest Reserve Qaga Qakancu Qakazana Qalweni Qamata Qamata Poort Qamdobowa Qamnyana Qamtara Qanda Qaqane Qatani Qatywa Qaukeni Qawukeni Qazini Qebe Qege Qelana Qengqa Qeto Qibiha Qibira Qibiri Qina Qina Forest Qineni Qingqolo Qinira Qinqana North Qinqana South Qinqoto Qitsi Qitsi-Ndlunkulu Qiya Qoboqobo Qoha Qokama Qokolwana Qokolweni Qologa Qolora Qolora F Qolora Mouth Qolorad Qolweni Qombe Qombolo Qombolo A Qombolo B Qoppas Qoqodala Qora Qora Mouth Qorana Forest Qota Qotoshe Nek Qozeleni Quacha Quacha’s Vlakte Quachasfontein Quacu Quacu Heights Quagas Kuyl Quagga Quagga’s Kirk Quaggafontein Quaggas Berg Quaggas Fontein Quaggas Hoek Quaggas Muts Quaggas Valley Quakeni Location Quanti Valley Quar Forest Quarnekraal Quarrelbrook Quarries Quarry Kraal Qubeni Queens Court Queens Park Queensberry Bay Queensdale Queenstown Queenstown Airport Quensby Holme Queque Quetta Qugqwala Qugqwaru Quigney Quintona Heights Quko Quko Valley Quluqu Quma’s Qumanco Qumbu Qumra Qunu Qunu Plantation Quoin Quru Qutsa Qutubeni Qutyini Qwaninga Qwanti Qwebe Qwebe Qwebeqwebe Qwelana Qwili Qwili Raas Fontein Rabrags Kloof Rabula Rachelsrivier Radiance Radies Vley Radisson Blu Hotel Port Elizabeth Raffirs Kloof Raglan Ramra Rant se Leegte Rapness Rasfonteinpoort Ratelbos Ratelhoek Ratelkop Ratelsfontein Rathwick Rautenbach Rautenbach’s Rust Ravelskloof Raven’s Wood Ravenscliff Ravenshaw Ravensworth Ravinia Rayner’s Kop Readsdale Readsdaterivier Rebelkrans Rebels’ Kloof Rebelsrus Private Nature Reserve Reboksfontein Recife Hillock Red Hill Red Hill Pass Red Hills Red Ridge Redbourne Country Lodge Redburn Redcliff Redcliffe Redclyffe Redford Redhouse Redlands Redrift Redsdale River Reebokkop Reebokrand Reed Valley Reef Point Reenen Studam Reeston Regent Hotel Suites And Confer Regtefontein Regu Reierkop Reigate Reinbron Relegwini Reletya Remhoogte Remhoogtesloot Remkloof Renan Rennie Vale Rennie’s Kop Renosterberg Renosterfontein Renosterkop Rensburg’s Kuil Rensburgskuil se Loop Request Request Kop Resbosrant Resolution Retiefville Retreat Review Revue Rexfield Reyers Vlei Rheboks Berg Rheebok Fontein Rheeboks Fontyn Rheeboksfontein Rheeder se Knol Rheenendal Rhemhoogte Rhenoster Hoek Rhenoster Kop Rhenosterfontein Rhenosterhoek Rhenosterhoek (1) Rhenosterkop Rhihoster Rhihoster Hoek Rhini Rhodes University Rhodesdale Ribbokkop Ribbokshoek Ribbokskop Richmond Richmond Hill Richmond Hills Ridgeway Ridgeways Riebeek-Oos Riesfontein Riet Riet Bron Riet Fontein Riet Fonteyn Riet Gat Riet Kloof Riet Kuil Riet Kuyl Riet Poort Riet Rivier Riet Vallei Riet Valley Riet Vally Riet Vlei Riet Vley Rietberg Rietbron Rietfontein Rietfontein North Rietfontein se Loop Rietfonteinspruit Rietfonteinvlakte Rietfonteyn Rietgat Riethoogte Rietjiesmond Rietkloof Rietkloofleegte Rietkuil Rietmond Rietnek Rietnekkop Rietpoort Rietpoortslaagte Rietpunt Rietrivier Rietrivierkop Rietvalle Rietvalley Rietviey Rietvlei Ringstone Rini Rinkhals Rocks Ripon Ripplemead Risinghame River Bend Country Lodge River Glen River Ryno River View Riverbend Riverdale Riverina Riverlands Rivermarch Rivermarsh Rivermead Riversdale Riversea Riverside Riverview Riverwe Rivier View Riy Bank Roadview Robberg Roberts Kraal Robertsdale Robhoek Robhoek Point Robok Robsloep Rock Hill Rockcliff Rockclyffe-on-Sea Rockdale Rockdell Rockford Rockford Park Rockland Rocklands Rockleigh Rockvalley Rockville Rockwell Rockwood Rocky Face Rocky Fountain Rocky Nock Rocky Park Rocky Point Rocky Ridge Rocky Valley Rockyhill Roda Rodana Rode Rodenia Rohland Rokeby Park Roland Roma Romance Romangat Romans Fontein Romans Laagte Romanslaagte Rondabel Rondable Rondavel Rondawelkop Rondawelkoppe Rondawelrivier Ronde Gat Rondebosberg Rondebosch Rondebosrivier Rondeklippe Rondekop Roode Bloem Roode Draai Roode Drift Roode Heuvel Roode Hooghte Roode Klip Roode Kloof Roode Kraal Roode Krantz Roode Kranz Roode Muur Roode Nek Roode Plaat Roode Rand Roode Taaybosch Roode Wal Roodeberg Roodebloem Roodedraai Roodeheuvel Roodekop Roodekrans Roode-Krantz Roodepoort Roode-Rif Roodewal Rooi Dam Rooi Draai Rooi Kraal Rooi Krantz Rooi Laagte Rooi Nek Rooi Plaats Rooi Poort Rooi Rand Rooibank Rooiberg Rooiberge Rooiblom Rooidam Rooidam se Leegte Rooidorp Rooidraai Rooielsbos Rooi-elsbosrivier Rooielskloof Rooielskop Rooielsrivier Rooifontein Rooihansloop Rooihoogte Rooikliprivier Rooikloof Rooikop Rooikoppe Rooikoppies Rooikraal Rooikrans Rooikrans Fontein Rooikransdam Rooikranskloof Rooikuil Rooilaagte Rooiloop Rooimierskloof Rooinek Rooipas Rooiplaats Rooipoort Rooipoortjie Rooirand Rooirant Rooirante Rooirivier Rooirug Rooisloot Rooivlakte Rooivlei Rooivleikop Rooiwal Rooken Rooklyn Rookwood Roose Kuil Rootpunt Rooy Draai Rooy Kuil Rosa Rosebank Rosedale Rosehill Mall Roslin Ross Ross Mission Rossel Rosselerf Rossouwspoort Rothmere Rottanglaagte Round Hill Round the Bend Roundhill Rowallan Park Rowwehoek Roxeni Royal Alfred Acre Golf and Lifestyle Resort Royal Legend Safari Lodge Royal Port Alfred Golfcourse Roydon Roza Rozel Farm Rube Rubidge Kloof Rubidge Sloot Rudvale Rufane River Rufane’s Beach Ruigte Fontein Ruigte Vlei Ruigtefontein Ruigtefonteinsloot Ruigtekloofspruit Ruigtevlei Ruiteberg Ruiterskloof Rune Runlets Runny Mede Runrig Rura Rus en Vrede Rusgevonden Rush Fountain Rushkar Ruskop Rusoord Russell Park Russouws Poort Rust Rust en Vrede Rustenberg Rustenburg Ruygtevalley Rwani Rwantsa Rwantsana Rwantsini Rwegweni Ryedale Rylstone Rynheath Ryskuil Ryst Kuil Ryton Saagkuilerivier Saagkuilskloof Saagmeule Saalberg Sabalele Sabau Sabelele Sada Saddle Peak Saint Alban’s Mission Saint Albans Saint Anthony Saint Augustine Saint Croix Island Saint Cyprians Saint Elmo Saint Francis Saint Francis Bay Saint George’s Strand Saint George's Strand Saint Josephs Saint Keyne Saint Laurence Saint Luke’s Saint Lukes Mission Land Saint Mark’s Saint Matthew’s Saint Matthews Saint Michaels Saint Michaels Mission Saint Olives Saint Patrick’s Saint Peters Salem Salford Salieboomlaagte Salielaagte Saliepunt Salisbury Salisbury Plain Salpeterkop Salsoneville Salt Pan’s Nek Salt Pans Neck Saltaire Saltsprings Salway Sambokdoorns Samekoms Sampsons Kraal Samsons Kloof Sand Sand Flats Sand Kop Sand kraalspoort Sand River Heights Sand Rivier Sandals Guest House Sandals Guesthouse Sandbaai Sandbult Sanddamme se Loop Sanddrif Sanddriffie Sanddrifmond Sanddrifrivier Sanddrift Sandflat Sandhoek Sandhoekberg Sandholme Sandhurst Sandile Sandile’s Cave Sandiles Kop Sandileskop Sandilli Sandkloof Sandkop Sandkraal Sandkraalkloof Sandkraalspoort Sandland Sandleegtespruit Sandpoort Sandpoortrivier Sandport West Sandrivier Sandrivierdam Sandstone Sandvlakte Sandvlaktekloof Sandy Point Sangoni Sans Souci Santareme Bay Santerbaai Sapkamma Sapkammasberg Sapper’s Hill Sapto Kloof Saptoukloof Saptoukop Sarah Baartman District Municipality Sardinia Bay Sarel Sarelbloem Sarelskraal Satansnek Saunders Nek Saweto-on-Sea Sawutiya Saxfold Park Saxon Holm Saxony Scanlen Schaap Kraal Schaap Plaats Schaapkraal Schaffhausen Schapers Kraal Schauder Schauderville Scheepers Vlakte Scheepersgaterivier Scheit Nek Schelm Drift Schelm Hoek Schelm Kloof Scherprand Scheteme Drift Schiet Fontein Schiet Hoogte Schiet Kop Schiet Rug Schietkuil Schilder Krantz Schildpadkop Schilpad Laagte Schilpadberg Schilpadsfontein Schoemans Vlaakte Schoemans Vlakte Schoemanskraal Schoemanskroon Scholtz Scholtzberg School Fontein School View Schoonberg Schooneberg Schoongezicht Schoongezigt Schoongozicht Schoorsteenberg Schornville Schrikkerivier Schuil Hoek Schuilpad Vlakte Schuilpatdop Schurfte Berg Schurftekop Schwulsts Store Scotswood Scottsbottom Scrapfield Sea View Sea Vista Seafield Seagulls Seal Bay Seal Island Seal Point Seaview Seaview Water Park Sebaba Sebastopol Sebeni Sebeni Forest Sebenza Sections Pineries Sedgefield Seekoegat Seekoeikloofrivier Seekoeinek Seekoeipunt Seekoeirivier Seekoeiriviermond Seekoerivier Seku Selborne Sentse Sentubi Seplan Sepree Rivier Setebe Settler’s Dam Settlers Milestone Settlers Monument Setunzis Sevefontein Seven Fontein Seven Fountains Seven Oaks Sevenfontein Sewedraai Sewefontein Seymour Shack Shad Shakerley Shamrock Shamwari Game Reserve Shamwari Game Reserve Long Lee Manor Shamwari Reserve Shanklin Shark Rock Sharks Bay Sharon Sharp Peak Shatis Shawdene Shed Sheepwalk Sheldon Shelley Bay Shelly Bay Shelly Beach Shenfield Shenstone Shentke Shepherds Bush Shepherds Rest Sherwood Sherwood Forest Sheshego Fingo Sheshegu Shilabeni Shilbottle Shiloh Shinara Ship Rock Shirland Shixini Shixini Point Sholora Shoreham Shrikwaters Poort Shukenxa Shwele-Shwele Siaskop Sibuya Game Reserve & Lodge Sidakeni Sidbury Sidbury Hill Sidbury Park Sidenge Sidespur Sidubi Poort Sidubu Sidutyent Sidutyini Sidwadwa Sidwadweni Sidwell Siesta Sigangeni Sigingini Sigitini Signal Hill Signal Kop Sigubudweni Sigubudwini Sihlabeni Sihom Sihota Sikoba Sikobeni Sikolipati Sikolokoto Sikolweni Sikungwini Silevini Silo Silver Valley Silverstream Silvervale Simola Golf and Country Estate Singangala Singeni Sinkkraal Sinqumeni Sipoonkop Sipreskloof Sipreskloop Sipresrivier Sipton Manor Siqikini Siqitini Siquangu Sirosheni Sitatwini Sitebe Sitishini Sitkop Sitkop se Rante Sitkoppie Sitoleni Sitoza Sitrant Sittingbourne Sitting-Burne Siwanis Sixanti Sixonkxweni Sixotyeni Sixuzulu Sizini Skaapberg Skaapkop Skaapkraalpoort Skeimkloof Skelmdrif Skelmkloof Skelmsford Skemrant Skeptonteinkloof Skerpkop Skerprant Skibbereen Skietfontein Skietgate Skietkloof Skietkraal Skietkranskop Skietkuil Skietlaagte Skietpoort Skietrug Skikplaas Skilderkrans Skilpadbeen se Kloof Skilpadberg Skilpaddop Skilpadkop Skilpadkoprivier Skimmelberg Skimmelkop Skoenmakerskop Skoenmakersrivier Skoolkop Skoolkraalrivier Skoonberg Skoongezig Skoorsteenberg Skribena Skrikrivier Skrikrivierberg Skuinsbaai Skuinsbank Skuinsbos Skuinsklip Skuinspad Skuinspadkloof Skuinsrivier Skuitbaai Skulderkrans Skurftebergkop Skurftekop Skurweberg Skurwebergkloofspruit Skurweklip Skurwekloof Skurwekop Skurwekop se Leegte Skurwekoppe Skurwenek Skurwenekrivier Skurwerant Slaapkop Slaaps Bosch Slabbert se Berg Slabberts Poort Slabberts Poort Estate Slabbertspoort Slabbertspoortrivier Slag Boom Slagboom Slagboomdam Slagboomkop Slagter Nek Slagters Drift Slagters Kuil Slagterskuil Slagtersnek Slangbaai Slange Fontein Slangfontein Slangkop Slangkoppie Slangkoppies Slangrivier Slate Sledmere Sleepadskloof Sleeping Beauty Ridge Sleeping Giant Sleepkloof Sleutelfonteinrivier Slimmer’s Kloof Sloot Fontyn Slot Slot van Candibo Slypsteen Slypsteenberg Slypsteenkop Smal Deel Smaldeel Smalfontein-Karaal Smalkloof Smalvlei Smidtsbos Smiling Valley Smit’s Kraal Smith’s Kop Smith’s Kraal Smithfield Smithskraal Smithsriviere Smits Kraal Smitskraal Smitsrivier Smoerfontein Smoor Drift Smutsberg Smutsdale Snag Rocks Sneeuberge Sneeuberghoogte Sneuwbergs Kloof Snow Hill Snowdale Snyberg Snykloof Snykop Snymanskop Snymansleegte Snymansrivier Soet Vlei Soetbaai Soetdorings Soetendalspoort Soetendalsvlei Soetendalsvleirivier Soetfontein Soetkloof Soetkop Soetmelksvlei Soga Soldaatkop Solferino Solitree Solitude Solomon’s Temple Solomons Kraal Somers Hoek Somerset East Somersetkloof Sondags Sondagsnek Sondagsrivier Sondagsriviernedersetting Sondagsrivierpoort Sonkana Sonop Sons Kraal Sonskyn Soso River Soto Sour Plats Forest Sout Soutbosleegte Soutfontein Soutfontein se Rivier South Doornberg South East Rocks South End South Jetty (historical) South of Boschfontein South of Slagboom South of Waai Kraal South Ongelegen South Passage Southdown Southern Sun Hemingways Southernhay Southernwood Southeys Hoek Southeyville Southgate Southwell Soutkloof Soutkloofrivier Soutkoppie Soutlooprivier Soutmanskop Soutpan Soutpoort Soutpoortjie Soutputs se Loop Soutrivier Soutriviermond Soutvlei Soutvleibaai Soutvleipunt Soutwater Spaarwater Spadona Spalding Spandau Spandaukop Spanover Spansriet Gat Sparkington Sparkling Hills Sparks Place Speckboomberg Speedwell Speelmanskop Speelmanskopspruit Speelmanskraal Spekboomberg Spekboomkop Spekboomrand Spelonke Spes Bona Spes Bond Sphinx Peak Spiden Kop Spidenkop Spieelkraal Spieëlkraalpoort Spieëlkraalrant Spijoen Kop Spioenkop Spiral Spits Kop Spitsfontein Spitskloof Spitskop Spitskop Annex Spitskoprivier Spitskopskloof Spitskopspruit Spitz Kop Spitze Kop Spitzkop Spitzkopvlei Sportsvale Spreeufontein Spreeufontein Poort Spreeuw Fontein Spring Spring Grove Spring Hill Spring Vale Spring Valley Spring’s Springbok Vlackte Springbok Vlakte Springbok Vlei Springbokflats Springbokfontein Springbokvlakte Springbokvlaktes Springfield Springmount Springs Springvale Spruitvangats Falls Spyk Houd Fontein Spyt Fontein St Francis Bay Staalklip Staalkliprivier Staankop Staatsplaas Stafelbergs Vley Stag Bay Stag Island Stainlands Stalwart Point Stampfontein Standen Stanford Park Stanhope Stanley Stanmore Stanway Stapelbergskraal Starwater Station Hill Steenbok Vlakte Steenbokhoek Steenbokkoppie Steenboks Hoek Steenbokvlakte Steenbrasrivier Steenkampsberg Steenoondrug Steilfontein Steil-Fontein Steilkop Steilkrans Steinsrivier Sterkfontein Sterkfontein (1) Sterkfontein (2) Sterksloep Sterkstroom Sterling Park Stevens Bank Steytlerville Stil Genoeg Stilbaai Stilgenoeg Stilwaterstrand Stink Fontein Stinkfontyn Stinkhout Berg Stinkhoutberg Stinkhoutkloof Stirling Stock Drift Stockdale Stockenstrom’s Sloot Stockton Stoepjes Stoeptjes Stofdamrivier Stoffelskloof Stoffelskop Stofkraal Stofkraal se Koppe Stofpad Stokwes Basin Stoltz Kloof Stoltzkloof Stompberg Stompdrifdam Stompdrifrivier Stompdrift Stompstaart Fontein Stompstaartsfontein Stone Hills Stonefell Stoneham Stonehaven Stonehenge Stoneridge Stones Beacon Stones Hill Stoney Croft Stoney Drift Stony Point Stony Vale Stonydrift Stonyfields Storm Point Stormberg Storms River Stormsriver Hiking Trail Stormsrivier Stormsrivier-Bosreservaat Stormsriviermond Stormsrivierpas Stormsrivierpiek Stormsrivierstrand Stourport Straaddrift Stradbrook Stradclyde Strandfontein Stratheric Stratheyre Strathfield Strathmore Strathsomers Strathsomers Estate Straust Stroh’s Fontein Stromness Strongfontein Struishoek Struisvogel Stry Poort Strydems Berg Strydfontein Strydoms Kloof Strydoms Kraal Strydomsberg Strydomskloof Strydomskop Strydomslaagte Strydomsvlei Stubbs Hill Studtis Stutterheim Stuttgart Stuuman’s Kop Stuurmanskop Stuurmanskraal Styl Kopsfontein Stylvoetpad Stytfontein Success Sugarloaf Hill Suidoosbank Suid-Waaikraal Suikerboslaagte Summer Hill Kop Summer Pride Summerhill Park Farm Summerstrand Summerstrand Hotel Summerville Summit Sundays River Sundays River Valley Sundays-Fish Tunnel Sunduza Sundwane Sunland Sunlands Sunny Brae Sunny Camp Sunny Heights Sunny Ridge Sunny Slope Sunnybank Sunnydale Sunnyridge Sunnyside Sunnyvale Sunray Sunridge Park Sunrise Sunrise Valley Sunrise-on-Sea Sunset Sunset Valley Sunshine Surbiton Surrey Sutcliffe Vale Suuranysberge Suurberg Suurberg se Loop Suurberge Suurbergpas Suurfontein Suurkloof Suurkloofberge Suurkop Suurvlaktespruit Swaarshock Swaershoek Swaershoekpas Swafield Swanepoels Kraal Swanepoels Poort Swanepoelshoek Swanepoelskraal Swanepoelspoort Swart Rivier Swartbakensrivier Swartberg Swartbos Swarteiland Swartfontein Swartgrond Swarthoek Swart-Keirivier Swartkloof Swartkop Swartkops Swartkop-Soutpan Swartkopsrivier Swartleegte Swartrant Swartrante Swartrivier Swartrug Swartskraal Swartwater Swartwatersberg Swartwaterspoort Swartwatersrivier Swaylln Sweet Home Sweet Kloof Sweet Kloof Annex Sweetland Sweetlands Sweetlayini Swellendam Point Swinburne Swindon Swiss Valley Sydenham Sydney’s Hope Sylvetta Synmans Kraal Syphonia Sypsteen Syverfontein T’Gunaqua Taai Fontein Taaibos Taba Ka Ndoda Tabase Tabase Nek Tabata Tabazini Taber’s Hill Table Farm Table Hill Table Hill Farm Tabotjane Tafalehashi Tafani Tafel Berg Tafel Kop Annex Tafelberg Tafelbergkloof Tafelkop Tafeni Tafile Tainton Village Tait’s Bank Taitsberg Taitsikama Forests Taitskop Takata Takazi Takazidrif Tala Tala Forest Talemofu Taleni Taleni School Tamaha Tamaha East Tamara Tambekeni Tamboekiesfontein Tambook Vlei Tanderagee Tandjiesberg Tanga Tankatara Tannies Tarka Bothapas Tarka Bridge Tarkaberg Tarkabrug Tarkapas Tarkarivier Tarkastad Tarsus Tatsi Taverwater Tavistock Tay River Taynult Tchado Tchandokloof Tchanoo Tchnuganoo Kloof Teafontein Teba Teeken Fontein Teeswaters Teko Teko Springs Telegap Tembeni Tembuland Tempe Ten Stop Hill Tentenek Tentergate Tenza Terry Fitzgerald Private Nature Reserve Tevrede Thafa-Lofefe Thala Thaleni Tharfield The Boardwalk The Burns The Bushes The Camp The Castle The Claims The Collywobbles The Crags The Cross The Dales The Deeps The Dell The Downs The Drostdy Hotel The Dunes The Erf The Gap The Ghio The Glen The Gorah The Grant The Guarri Hills The Happy Valley The Hatchery The Haven The Heads The Heath The Hills The Hoek The Hogsback The Island Forest Reserve The Kelway The Knolls The Meadows The Mere The Mill The Nook The Old Toll The Orchard The Orchards The Outspan The Paxton Hotel The Peninsula The Plains The Plateau The Plettenberg The Point The Ranges The Request The Rest The Retreat The Rex Hotel The Ridges The Sands St Francis The Shadows The Shiloh Mission Station The Springs The Star The Steytlerville Flats The Strath The Summit The Thorns The Tower The Turbine Boutique Hotel And Spa The Twin The Valley The Vic Hotel The Wattles The Willows The Wreck Theeberg Mountains Theescombe Theodorusrand Theopolis Thesen's Island Thibet Park Thomas Fontein Thomas Gamble Thomas River Thomson Thorn Dale Thorn Drift Thorn Flat Thorn Grove Thorn Hill Thorn Kloof Thorn Meadows Thorn Park Thorn Ridge Thorn River Thorn Valley Thornbush Thorncliff Thorndale Thorneycroft Thornfield Thornfields Thorngrove Thornham Thornhill Thornkloof Thornlands Thornwood Thorny Hoek Thornycroft Thornylei Three Crowns Three Silos Three Sisters Threive Farm Thrift Thumb Peak Thunderbolt Reef Thuply Thwalikhulu Thysbaai Thyskop Thyspunt Tidbury’s Toll Tierberg Tierfontein Tierhoek Tierhoek se Loop Tierhoekberg Tierkloof Tierkloof se Berg Tierkloofleegte Tierkop Tierlaagte Tierpoort Tierputs Tierputskuil Tiertoring Tiger Klip Tiger Kloof Timane Timani Timms Tinislokasie Tiptree Tities Fontein Tjandokloof Tjart van de Walts Grave Tjoksville Toboni Skool Tobotshana Toboyi Toekoms Toekomst Togo Toise Toise River Toleni Toleni Head Tolkop Tomani Hills Tongwana Tonteldoek se Kop Tonteldoekrant Toorbaai Toorberg Toorfontein Toorfonteinpoort Toorkop Toornitskraal Toornitz Kuil Toorwater Toorwaterpoort Tootabi Tootabi Forest Reserve Top of Daggaboer Topberg Topvale Tora Toringkop Tornlands Tornynbank Torr Torstone Torwood Toulani Tower Tower Hill Towerhill Towerklip Town Lodge Port Elizabeth Traders Drift Traka Trakarivier Trakas Kuilen Trappe’s Valley Travelers Rest Tree Vleys Tregaron Trek Kloof Trennerys Trentham Park Tretyre Triggards Kop Trix Tromp Fontein Trompettersberg Trompettersdrif Trompetterspoort Tromps Kraal Truidies Kloof Trumpeters Try Again Tsakana Tsala Treetop Lodge Tsalaaba Tsalaba Tsawulayo Tsazo Tsembeyi Tsengiwe Tshabo Tshamazimba Tshapeli Tshatshu Tshazibane Tsholora Tshoxa Tshoyi Tshukuzela Tsitsikama Tsitsikamma Tsitsikamma Nasionale Park Tsitsikamma Point Tsitsikamma Village Inn Tsitsikammaberge Tsitsikammabos en Seekus Nasionale Park Tsitsikammarivier Tsojana Tsojana Plantation Tsolo Tsolokazi Tsolwana Tsomo Tsomo Bridge Tubeni Tuft Hill Tuger Poort Tuina Tuinhoek Tuinplaas Tuins Kloof Tuinskloofrivier Tuinties Kraal Tuintjes Tuku Tulpleegte Tungwana Tungwane Tunxe Tunzini Turks Vyg Rivier Turksfyg Laagte Turksvykloof Turksvykop Turksvylaagte Turksvyrivier Turnstream Turveys Post Tusschen Bij Tutura Tuwa Twane Twecu Twee Fontein Twee Fonteinen Twee Koppies Twee Rivier Twee Riviere Twee Rivieren Twee Waters Tweedale Tweedam Tweedamspruit Tweedekrans Tweedrag Tweefontein Tweespruit Twine Two Streams Two Waters Twyini Tyaba Tyalara Tyara Tyata Tyatyora Tyefus Tyelebane Tyelekebende Tyeni Tyger Kop Tyger Laagte Tyger Poort Tygerfontein Tygerhoek Tygerhoek Berg Tygerkloof Tygerkrans Tyinira Tyityaba Tyiw Tylden Tylden Annex Tylden Dale Tyndall Tyolo Tyolomnqa Tyolweni Tyumbu Tyume Tyume Post Tyumie Tyumie Peak Tyusha Tyutyuza Tywaka Tzatzatla Mountain Uarkens Ugie Uil se Kloof Uilkop Uintjes Vlakte Uit Nood Uitenhage Uitgeleide Zeekoegat Uitkeer Uitkijk Uitkoms Uitkomst Uitkyk Uitleg Uitnood Uitsig Uitvlug Uitvlug Cemetery Uitvlug Dam Uitvlug Dam 2 Uitvlug School Uitvlug Sekelgat Uitvlug Sheep Shed Uitvlugt Uitzigt Ulster Umdala Umengi Umgomanzi Umgwali Reserve uMhlanga Umsigazi School Umtata Airport Umtati Umto Umtwakazi uMzantsi Umzimkulu Umzoniana Reservoir Underchurch Undula Union Union Hill Union Valley Uniondale Uniondale Poort Unitas University of Fort Hare Upington Road Farm Upland Uplands Upper Agnes Upper Blinkwater Upper Blinkwater Forest Upper Bolotwa Upper Bush Dove River Upper Cala Upper Cassilis Upper Ciko Upper Clifton Upper Didimana Upper Diep Kloof Upper Dubugaler Upper Gegeuwana Upper Gletwyn Upper Grootvlei Upper Gwadu Upper Hendham Upper Hottentots River Upper Humefield Upper Jongetjes Leegte Upper Keiviets Kuil Upper Kouga Upper Lufuta Upper Macibini Upper Mcambalala Upper Mncwasa Upper Mnyolo Upper Molen River Upper Ndonga Upper Ndwana Upper Ngolosa Upper Ngqwara Upper Ntlonyana Upper Nywara Upper Rabula Upper Spreeuw Kloof Upper Stockton Upper Tabase Upper Thorn Park Upper Tsojana Upper Tyolo Upper Tyume Upper Waterkloof Upper Xolobe Upper Xongora Upsal Upsher Upton Urban Hip Hotels - The Vic Urban Hip Hotels- Kings Hotel Uxbridge Uyl Hoek Vaal Krans Vaal Krans Heuvel Vaal Krantz Vaal Kranz Vaal Kuil Vaalbank Mountains Vaalberg Vaalblok Vaalboskloof Vaaldam Vaaldraai Vaale Draai Vaale Fontein Vaale Krans Vaalfontein Vaalklip Vaalkol Vaalkom Vaalkop Vaalkoppie Vaalkrans Vaalkrans Suid Vaalkrantz Vaalnek Vaalpads Kloof Vaalplaas Vaalpods Kloof Vaalvlei Vaalwater Vaderlandsch Wilgenboom Vaku Val Heuvel Vale Valelo’s Rest Valencia Valle Bank Vallei Kuil Vallei van Verlatenheid Valleikuil Valley Valpre Valray Valsch Fontein Valse Fontein Valsloop Van Aardsfontein Van Aardts Kraal Van de Venters Kraal Van der Bergskuil Van Der Kemp Van der Lindes Baken Van der Lindes Kraal Van Der Merwes Kraal Van der Walts Hoek Van der Walts Kloof Van der Waltshoek Van der Westhuysenkraal Van Ecks Kraal Van Jaarsfeids Aanleg Van Riebeekhoogte Van Rooyens Kraal Van Rooyensfontein Van Rooyenskraal Van Stadens Van Stadenspas Van Stadensriviermond Van Vuurens Vlei Van Wyks Kraal Vanderrystrivier Vanheerdenskop Vanrooyenskloof Vanrooyenskraal Vanryneveldspasdam Vanstadensberg Vanstadensrivier Varinghoek Varkens Kuil Varkenskop Varkenskraal Varkieskloof Varkiesrivier Varkjes Kloof Varkkloof Varkrivier Varschfontein Varsfontein Varsfontein se Kop Veeplaas Veere Kuil Veeren Kraal Vegterskop Veldmanspad Velebi Vengrove Venn Grove Venster Klip Venters Kloof Venters Kraal Ventershoekspruit Venterskloof Venterspos Ventersposspruit Ventersrust Ventnor Ventor Verbrandekop Verdien Vereeniging Verekraal Verfkop Vergaderingskraal Vergenoeg Vergenoegd Vergulde Vlies Verkeerde Water Verkeerdedraai Verkeerderrivier Verlaten Verloren Rivier Verlorerivier Verlos Vermaak se Krans Vermaaks Kop Vermaakskop Vermaaksrivier Vermaars Rivier Vermont Vernon Hall Verraaikop Versamelberge Verse Kraal Verspoelkraal Verstoken Fontein Verstokfontein Vervolg Verwagting Verweyskloof Verwildsfontein Verzuipgat Vet Kuil Vetkuilspruit Vette Weiden Vetvlei Victoria Post Viedgesville View Field View Hill Viljoenskop Vincent Vinkrivier Vis Kop Visch Fontein Visch Rivier Vischgat Visgat Visrivier Visrivierplaas Vista Viviandale Vlak Krans Vlak Leegte Vlak Nek Vlak Plaas Vlak Plaats Vlakfontein Vlakkies Vlakplaats Vlakte Vlakteplaas Vledermuis Poort Vlei Plaas Vlei se Kop Vlei se Loop Vleikloof Vleikop Vleikraal Vleikuil Vleiland Vleiplaas Vleitjes Vleitjies se Berg Vlekpoortrivier Vlermuisgat Vlermuispoort Vley Kloof Vley Plaats Vlieëkraal Vlieëkraalrivier Vliegekraal Vlug se Berg Voëlfontein Voëlkraal Voëlkrans Voëlrivier Voëlrivierspoort Voetjieskloof Voetpadskloof Vogel Fontain Vogel Fontein Vogel Fonteyn Vogel Fountain Vogel Rivier Poort Vogelfontein Vogelgezang Vogelrivier Vogelstruis Fontein Vogelstruis Leegte Vogelstruislaagte Volharding Volkers Rivier Volkersrivier Volstruis Kraal Volstruisleegte Volstruisnek Vondeling Vontein Voogt se Rivier Vool Voor die Poort Voorkloof Voorse Kraal Voor-Sneeuberg Voorstebergie Voorstraat Voorzorg Vosey Vosloosrust Vrades Rust Vrede Vredenburg Vredepoort Vrederus Vredo Vreedehoek Vrijnsfontein Vrischgewaagd Vrisgewaagd Vrolikheid Vrolykheid Vrye Staat Vryfontein Vryheid Vuilkop Vulcanvale Vuso Vuursteenkop Vyands Kraal Vye Korries Vyekraal Vyge Boom Wa Makers Hoogte Waai Kraal Waai Nek Waai Plaats Waai Poort Waaifontein Waaiheuvel Waaihoek Waaikraal Waainek Waaipoort Waay Kraal Waay Plaats Waay Poort Waaypoort Waboomsberg Waboomshoek Waboomsrivier Waggin Wagon Drift Wagon Pads Nek Waku Wal Kraal Walker Point Walker’s Bay Walkersvale Walkraal Wall Point Wallace Date A Walmer Walmer Heights Walsingham Waltham Walton Park Walville Wana Wanhoop Wansley Wanstead Wapadsberg Wapadsbergpas Wapadskloof Wapadsleegte Wapadsnek Wapadspoort Waqu Warmkroos Warmwater Warringham Wartberg Falls Wartburg Wartburg Reserve Wasgatkloof Water Gaten Water Kloof Water March Waterbank Proper Waterdale Waterdell Waterdown Waterdown Dam Waterfall Waterfall Forest Waterfall Valley Waterfalls Waterford Waterhoek Waterkloof Waterkloofrivier Waterkloofspruit Waterlily Waterloo Waterloo Bay Waterpark Waters Meeting Nature Reserve Watershed Waterskloof Waterval Waterval se Kloof Watervale Watervalkloof Watervloed Watford Watson’s Hill Watsonia Wattle Grove Wauldby Wavecrest Waverley Waverly Wawana Waylands Wayside Webster Webworth Wedelust Wedgeley Wedmore Weduweekloof Weestevreede Weidemanskop Weikloof Weinans Kraal Weitzkraal Weklyn Welbe Kent Welbedacht Welbedacht Rivier Welbedachtsfontein Welbedagrivier Welbedagt Welbevonde Welcome Welcome Home Welcome Rock Welcome Valley Welcome Wood Welcontent Weldon Welgedacht Welgedagt Welgeleë Welgelegen Welgemoed Welgerus Welgevonde Welgevonden Welkom Wellfound Wellington Wellington Grove Wellshot Wellwood Welskutberg Welsvilla Weltevrade Weltevrede Weltevreden Weltevreeden Weltondale Welverdien Welverdiend Wembly Wen Fontein Wendover Wenzel Koes Wepensvlakte Wes-Kleinemonderivier Wesley Wesley Wood Wessels Kraal Wesselskop West Bank West Beach West Burn West Cottage West End West Hill West of Veeren Kraal West Peak Pirie West Rock West View Westbank Westbury Heights Westerham Westering Western Breakwater Western Head Westford Westford Bridge Weston Westondale Weston-Grange Westpile Westview Heights Wettevrede Wexford Weza Whale Rock Whalesong Coastal Lodge Whalesong Hotel & Hydro Wharncliff Wheatlands Wheatlands South Whelpton Whickham Whiskey Creek Whiskey Nek Whitcher’s Cave White Point White Ruggens Whitebank Whitmore Whitney Whittlesea Who-Can-Tell Widcombe Wiegnaarspoort Wienandsnek Wiesbaden Wild Coast Wild Lubanzi Lodge Wildbeest Poorje Wilde Honde Kloof Wilde Paarde Kom Wilde Paarden Pad Wildebeeskop Wildebeest Kuil Wildebeestekuil Noord Wildebeestepoortjie Wildehoenderhoek Wildehondefontein Wildehondekop Wildehonden Wildehonden Kloof Wildehondenek Wildene Wildepaarde Fontein Wildepaarde Nek Wildepaardehoek Wildepaardfontein Wildeperdehoek Wildeperdekom Wildfonteinrivier Wildschutsberg Wildskutsberg Wilem Burgersrivier Wilfreds Hope Wilgamond Wilge Bosch Wilge Bosch Dam Wilge Bosch Rivier Wilge Fontein Wilge Kloof Wilge Rivier Annex Wilgeboomkloof Wilgeboomsrivier Wilgebosch Wilgebosrivier Wilgefontein Wilgehoute Rivier Wilgekloof Wilgem Bush Wilgenfontein Wilger Rivier Wilgerbosch Wilgerboschdam (1) Wilgerfontein Wilgerivier Wilgerkloof Wili Wili River Wilkerskop Wilkom Wilkop Willem Burgers Rivier William’s Kop Willige Rivier Willmerton Willow Bank Willow Grove Willow Park Willow Slopes Willow Spring Willow Walk Willowbrook Willowdale Willowford Willowmore Willowmore N E Willowmore N W Willowmore North Willows Willowvale Willowvale Plantation Wilo Wilsonia Wilton Winchester Wind Heuwel Windbreak Winderich Windheuwel Windheuwelpoort Windmeulrivier Windmill Farm Windpump Windsor Windvoëlberg Windvoëlskuilrivier Windvogel Windvogels Kraal Windvogels Kuil Windwaai se Kloof Windy Ridge Wineanton Wingledew Winkel Winklehurst Winnow Dale Winston Winter Hoek Winterberg Spruit Winterberge Winterfontein Winterhoek Winterhoekberge Winterhoekkloofspruit Wintersfontein Winterskloof Winterstrand Wipoort Wirrasthrew Wit Poort Wit Poortje Witbaken se Plaat Witbakensberg Witberg Witbooisrivier Witch Krantz Witeisrivier Witelsbos Witelsbos Staatsbos Witelshoek se See Witelskop Witelsrivier Witfontein Witfontein se Kloof Witgat Witgatboom Withoogte Withuis Wit-keirivier Witkleibos Witkleirug Witklip Witkloof Witkop Witkoppie Witkoppies se Loop Witkopskuil Witkrans Witkransnek Witmos Witmosspruit Witnekpas Witpadsrivier Witperde se Drif Witplaas Witpoort Witpoortkop Witpoortskraal Witpuntrivier Witrant Witrivier Witrugberg Witrugberge Witruggens Witsand Witspruit Witte Berg East Witte Berg West Witte Klip Witte Koppies Kuil Witte Poort Wittedrif Witteklip Wittekliprivier Wittelklipbos Woburn Woetjeskloof Woetjeskloof North Woetjeskloof South Wolf Ridge Wolf River Wolf’s Crag Wolfe Fontyn Wolfefontyn Wolfhuis Wolfhuiskloof Wolfridge Forest Station Wolfs Crag Wolseley Wolseley Estate Woltemade Wolve Fontein Wolve Kloof Wolve Kraal Wolve Nest Wolvekloof Wolwas Wolwe Nest Wolweberg Wolweboslaagte Wolwefontein Wolwefonteinberg Wolwefonteinspoort Wolwegat Wolwekloof Wolwekop Wolwekraal Wolwerant Wolwevlei Wonder Heuvel Wonderfontein Wonderkop Wood Land Wood lands Woodburn Woodbury Woodcliffe Woodford Woodhouselea Woodlands Woodridge Woodridge School Woodroad Kloof Woodside Woodstock Woodvale Woodville Woody Cape Wooldridge Number One Wortel Drift Wortel Kuil Wortelkuilrivier Worthing Wreck Point Wriggleswade Wycombe Vale Wyenek se Kloof Wynandskraal se Berg Wynberg A Wynberge Wyndomaine Wynlaagte Xama Xamini Xanxo Xawuka Xengxe Xentu Xera Xesana Xhobane Xibeni Xilinxa Xinira Xobo Xobojiyne Xoki Xokonxa Xolo Xolobe Xolora Xoloso Xolweni Xongora Xonxa Xonxa Dam Xonya Xonye Xonyeni Xopogazi Xora Xora Mouth Xorana Xugxwala Xuka Xuka Drift Xukwane Xuma Xumabokwe Xume Xuxuwa Xuzeles Xwili Yangapi Hill Yantola’s Yardley Chase Yarrow Yellow Wood Trees Yellow Woods Yellowwood Yellowwoods Yellowwoods River Yorevale Ysrivier Ystervarkkloof Ystervarkkop Zaaimansdal Zaaimanskloof Zabara Zabasa Zadungahi Zadungeni Zak Fontyn Zalagha Zalara Zalis Zanci Zand Kraal Zand Rivier Zandfontein Zangqokwe Zangwa Zanyokwe Zazulwana Zazulwane Zeekde Rivier Zeekoe Zeekoe Kloof Zeekoegat Zeekoegat D Zeeliesrug Zele Zetland Zeven Fonteinen Zeven Fonteynen Zhikova Zibi’s Zibodla Zibula Zibunu Zidindi Zietsman Zigadini Zigodlo Zigudu Zigzag Zihlahleni Zimbane Zingadini Zingcuka Zingqutu Zingqwene Zingxala Zinia Zinkawu Zintukwini Zipunzana Ziqhorana Zisovini Zitenji Zitenjini Zithulele Zitrug Ziwundwane Zixekeni Zoet Kloof Zoetendals Vlei Zoetkraal Zolo Zondaghsberg Zondags Rivier Zour Kraal Zout Poort Zout Poortjie Zout River Zoutekloof Zoutpans Drift Zuivervontein Zula Zulumema Zuney Zungan Zure Kop Zuur Bron Zuur Fontein Zuur Hoek Zuur Kloof Zuur Kop Zuur Vlakte Zuuranys Zuurberg Mountain Inn Zuurberg Mountain Village Zuurbrons Kloof Zuure Anys Zuureberg Zuurfontein Zuurhoek Vlakte Zuurkop Zwaluw Krantz Zwart Rivier Zwart Riviers Drift Zwart Waters Poort Zwartberg Zwartbosch Plaat Zwarte Fontein Zwartebosch Zwartjes Zwartrug Zwartskraal Zwelidumile Zwelitsha Zwide Zwide 4 Zyfer Fonteyn Akasia Alberton Alberton North Alexandra Allen's Nek Alrode Aston Manor Atteridgeville Auckland Park Bardene Bartlett Bedford Gardens Bedfordview Bedworth Park Benoni Benrose Bergbron Birchleigh Blackheath Blairgowrie Bloubosrand Blue Valley Golf Estate Boksburg Boksburg North Bonaero Park Bosmont Brackendowns Brakpan Bramley Brenthurst Brentwood Park Broadacres Bromhof Bronkhorstspruit Brooklyn Bryanston Capital Park Carletonville Centurion Chartwell Clayville Clubview West Constantia Kloof Craighall Craighall Park Cresta Cullinan Dainfern Dalpark Darrenwood Daveyton De Deur Devland Devon Diepkloof Zone 5 Diepsloot Dinwiddie Discovery Dobsonville Doornkop Doornpoort Douglasdale Duduza Duncanville Dunkeld West Eden Glen Edendale Edenvale Eersterus Eikenhof Ekangala Ekurhuleni Elandsfontein Elarduspark Eldoradopark Eldoraigne Elsburg Emdeni Emmarentia Equestria Erasmia Etwatwa Evaton Faerie Glen Fairland Farrarmere Ferndale Florauna Florida Glen Fontainebleau Fourways Garsfontein Germiston Gezina Glenanda Glenharvie Glenhazel Glenvista Greenstone Hill Halfway House Hatfield Heidelberg Hekpoort Helderkruin Henley on Klip Hercules Heriotdale Highveld Honeydew Horizon View Houghton Estate Hyde Park Irene Isando Jet Park Johannesburg Kagiso Katlehong Kelvin Kempton Park Kenilworth Kensington Kibler Park Kliprivier Kloofendal Krugersdorp Krugersdorp North Kwamhlanga KwaThema Kyalami Park Lambton Lanseria Laudium Lenasia Linden Little Falls Lombardy East Lyndhurst Lynnwood Lyttelton Mabopane Magaliesburg Malvern Mamelodi Maraisburg Marshalltown Meadowdale Meadowlands Melville Menlo Park Meyerspark Meyerton Mid-Ennerdale Midrand Midstream Modderfontein Mogale City Monavoni Mondeor Monument Park Moreleta Park Morningside Manor Mulbarton Muldersdrift Newlands Nigel Noordwyk Norkem Park Northcliff Oberholzer Olifantsfontein Olivedale Ophirton Orange Farm Orange Grove Orlando East Parkhurst Parkmore Parktown North Parkview Paulshof Pierre van Ryneveld Pretoria Primrose Protea Quellerina Rabie Ridge Randburg Randfontein Randvaal Rayton Reiger Park Rensburgdorp Rhodesfield Richmond Ridgeway Rietfontein Rietvalleirand Rivonia Robertsham Robindale Roodekrans Roodepoort Rooihuiskraal Rosettenville Roshnee Rosslyn Ruimsig Sandown Sandton Saxonwold Sebokeng Sharpeville Silverton Sinoville Soshanguve South Crest South Hills Soweto Spartan Springs Strydompark Sundowner Sunninghill Sunnyside Sunward Park Tembisa The Reeds Theresapark Three Rivers Tierpoort Tokoza Tsakane Vaal Marina Valhalla Vanderbijlpark Vereeniging Vorna Valley Vosloorus Wadeville Walkerville Wapadrand Waverley Weltevreedenpark Westdene Westonaria Wierdapark Wilgeheuwel Winchester Hills Witfield Woodmead Wychwood Wynberg Amanzimtoti aMatikulu Anerley Assagay Balgowan Ballitoville Berea Bergville Bluff Bothas Hill Bulwer Camperdown Cato Ridge Chatsworth Cowies Hill Creighton Dalton Dannhauser Doonside Dundee Durban Elysium eManzimtoti eMdloti eMkhomazi Empangeni eMthenteni eMuziwezinto Escombe Eshowe eSikhaleni eSikhawini Estcourt Ezakheni Franklin Gillitts Glencoe Glenwood Greytown Hammarsdale Harding Hattingspruit Hayfields Hibberdene Hillcrest Hilton Himeville Hlabisa Hluhluwe Holy Cross Howick Impendle Isipingo Isipingo Beach Ixopo Jozini Kingsborough Kloof Kokstad KwaDukuza KwaGingindlovu KwaMashu KwaMbonambi KwaNdlovu KwaNgendezi La Lucia Ladysmith Lions River Lotus Park Maidstone Malvern Mandeni Manguzi Marburg Margate Matatiele Mayville Mbazwana Melmoth Merebank Merrivale Mkuze Monteseel Mooi River Morningside Mount Edgecombe Mtubatuba Mtunzini Munster Musgrave New Germany New Hanover Newcastle Newlands West Nkandla Nongoma Nottingham Road Nqutu oThongathi Ottawa Overport Paddock Park Rynie Paulpietersburg Pelham Pennington Phoenix Pietermaritzburg Pinetown Pongola Port Edward Port Shepstone Queensburgh Ramsgate Richards Bay Richmond Rossburgh Saint Lucia Salt Rock Scottburgh Scottburgh South Shakaville Sheffield Beach Shelly Beach Sherwood Southbroom Tongaat Tugela Ferry Ulundi Umbilo Umbogintwini Umhlali Umhlanga Umlazi Umzinto Underberg Utrecht Uvongo Beach Verulam Vryheid Warner Beach Wartburg Waterfall Westville Winklespruit Winston Park Winterton Zimbali Acornhoek Amandelbult Bela-Bela Duiwelskloof Dwaalboom Dwarsrivier Dzarani Ga-Kgapane Giyani Gravelotte Haenertsburg Hoedspruit Lebowakgomo Leeupoort Lephalale Letaba Letsitele Levubu Louis Trichardt Makhado Malamulele Modimolle Mokopane Mookgophong Musina Northam Ofcolaco Onverwacht Phalaborwa Polokwane Seshego Settlers Shayandima Sibasa Soekmekaar Swartklip Thabazimbi Thohoyandou Trichardtsdal Tshipise Tzaneen Vaalwater Vivo Warmbaths Windhoek Amersfoort Amsterdam Balfour Barberton Belfast Bethal Bosbokrand Botshabelo Breyten Burgersfort Carolina Delmas Dennilton Dullstroom eMbalenhle eMpumalanga Ermelo Evander Graskop Groblersdal Grootvlei Hazyview Hectorspruit Hendrina Kamaqhekeza Kinross Komatipoort Kriel Leandra Leslie London Lydenburg Machadodorp Malelane Marble Hall Matsulu Mhluzi Middelburg Nelspruit Ogies Piet Retief Rietkuil Roodekrans Sabie Secunda Siyabuswa Skilpadfontein Skukuza Standerton Steelpoort Trichardt Volksrust Wakkerstroom Waterval Boven White River Witbank Biesiesvlei Bloemhof Botshabelo Brits Broederstroom Christiana Coligny De Wildt Delareyville Derby Fochville Ga-Rankuwa Gerdau Hammanskraal Hartbeespoort Jan Kempdorp Khuma Klerksdorp Kosmos Koster Kroondal Leeudoringstad Lichtenburg Mafikeng Magogong Makwassie Marikana Mathibestad Medunsa Melodie Mmabatho Mogwase Nietverdiend Orkney Ottosdal Phokeng Potchefstroom Rustenburg Sannieshof Schweizer-Reneke Stella Stilfontein Swartruggens Temba Tshaneng Ventersdorp Vryburg Winterveld Wolmaransstad Zeerust Aggeneys Askham Augrabies Barkly West Britstown Calvinia Carnarvon Colesberg Danielskuil De Aar Douglas Fraserburg Groblershoop Hartswater Hopetown Hotazel Kakamas Kanoneiland Kathu Keimoes Kimberley Kleinzee Kuruman Lime Acres Louisvale Marchand Nieuwoudtville Okiep Orania Port Nolloth Postmasburg Prieska Richmond Springbok Steinkopf Sutherland Upington Vanderkloof Victoria West Warrenton Williston Bethlehem Bethulie Bloemfontein Bothaville Botshabelo Brandfort Bultfontein Clarens Clocolan Deneysville Dewetsdorp Ficksburg Fouriesburg Frankfort Harrismith Heilbron Hennenman Hertzogville Hoopstad Jacobsdal Jagersfontein Kestell Koffiefontein Koppies Kroonstad Ladybrand Lindley Marquard Memel Odendaalsrus Oranjeville Parys Paul Roux Petrus Steyn Petrusburg Philippolis Phuthaditjhaba Reddersburg Reitz Rouxville Sasolburg Senekal Smithfield Thaba Nchu Theunissen Trompsburg Tweeling Vaal Vaalpark Vierfontein Viljoenskroon Villiers Virginia Vrede Vredefort Welkom Wepener Wesselsbron Willows Witsieshoek Zastron Bloemhof Brits Christiana Delareyville Fochville Ga-Rankuwa Hammanskraal Hartbeespoort Ifafi Khuma Klerksdorp Kosmos Kroondal Lichtenburg Mafikeng Makwassie Medunsa Mmabatho Orkney Potchefstroom Rustenburg Schweizer-Reneke Stilfontein Swartruggens Vryburg Wolmaransstad Zeerust Albertina Ashton Athlone Atlantis Aurora Baardskeerdersbos Bakoven Barrydale Beaufort West Belhar Bellville Bergvliet Betty's Bay Blue Downs Bonnievale Bothasig Botrivier Brackenfell Bredasdorp Brooklyn Caledon Calitzdorp Camps Bay Cape Gate Cape Town Century City Ceres Citrusdal Clanwilliam Claremont Cloetesville Constantia Darling De Doorns De Kelders Diep River Doringbaai Durbanville Durbanville Hills Eendekuil Eersterivier Elandsbaai Elgin Eversdal Fish Hoek Franschhoek Gansbaai Gardens George Glentana Goodwood Gordons Bay Gordon's Bay Graafwater Grabouw Grassy Park Greyton Groot-Brakrivier Guguletu Hartenbos Hawston Heidelberg Heiderand Helderberg Hermanus Herold Hexrivier Hoekwil Hopefield Hout Bay Jamestown Jongensfontein Kalbaskraal Kenridge Khayelitsha Klaarstroom Klapmuts Klawer Klein-Brakrivier Kleinmond Klipdale Klipheuwel Knysna Koringberg Kraaifontein Kuils River Kwanonqaba Ladismith Laingsburg Lakeside Lamberts Bay Langebaan Langebaanweg Lansdowne Loevenstein Lutzville Macassar Maitland Malmesbury Mamre Matroosfontein Mbekweni Melkbosstrand Milnerton Mitchells Plain Montagu Montana Monte Vista Moorreesburg Mossel Bay Mowbray Muizenberg Murraysburg Napier Newlands Noordhoek Nyanga Observatory Onrus Oudtshoorn Paarden Eiland Paarl Parow Philadelphia Philippi Piketberg Pinelands Plattekloof Plettenberg Bay Plumstead Porterville Prince Albert Prince Alfred Hamlet Pringle Bay Ravensmead Rawsonville Redelinghuys Rheenendal Riebeek West Riebeek-Kasteel Riversdale Riviersonderend Robertson Roggebaai Rondebosch Rosebank Rosendal Saint Helena Bay Saldanha Salt River Sandbaai Saron Sea Point Sedgefield Simondium Simon's Town Somerset West Stanford Stellenbosch Still Bay Stompneusbaai Strand Strandfontein Struisbaai Sun Valley Sunset Beach Swellendam Table View Test Tokai Touwsrivier Tulbagh Tyger Valley Uniondale Van Riebeeckstrand Van Wyksdorp Vanrhynsdorp Vasco Velddrif Villiersdorp Vredehoek Vredekloof Vredenburg Vredendal Vyeboom Welgemoed Wellington West Beach Wilderness Windmeul Wolseley Woodstock Worcester Wynberg Yzerfontein
</h1></marquee></div></div>
</div>
<div class="region region-content"><section id="block-system-main" class="block block-system clearfix">
<div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_2 view-dom-id-630920e34e6d383e331254b7ab16081a">
<div class="view-content"><div class="item-list"><ul><li class=""><div class="title_n_body">
<div id="weather"></div><a href="https://www.meteoblue.com/" rel="nofollow" title="Meteoblue.com"><span style="color:#F2f2f2;">* Data provided by Meteoblue.com</span></a>
| <span style="color:#F2f2f2; font-size:calc(0.6rem + 0.6vw)">↗ Open in a new window</span> |
<a href="https://whatweather.today/weather/embed.html" title="Weather Widget"><span style="color:#F2f2f2; font-size:calc(0.6rem + 0.6vw)"> Weather Widget </span></a>
</div></div></div></div>
</footer>
<!-- endbody-->
<!-- back -->
<!-- Go to www.addthis.com/dashboard to customize your tools -->
<script async data-domain="whatweather.today" src="https://whatweather.today/tabs.js" ></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/4.0.0-beta.2/jquery.slim.min.js"></script>
<script async src="https://whatweather.today/css/full3.js" ></script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4185741460540603"
crossorigin="anonymous"></script>
<style>#chatGPTLink,.close-btn{cursor:pointer}.modal{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.7);z-index:1000;justify-content:center;align-items:center}.modal-content{background:#fff;width:100%;max-width:900px;height:85%;border-radius:8px;overflow:hidden}.close-btn{position:absolute;top:5px;right:20px;color:#fff;font-size:30px}</style>
<!-- Clickable "Chat GPT" text -->
<!-- Popup Modal -->
<div id="phindModal" class="modal">
<span class="close-btn">×</span>
<div class="modal-content">
<iframe class="lazyload" loading="lazy" src="https://tinyurl.com/bd25h6wh" rel="nofollow" width="100%" height="100%" scrolling="yes" frameborder="0" marginheight="0px" marginwidth="0px" title="weather"></iframe></div></div>
<script>const chatGPTLink=document.getElementById("chatGPTLink"),modal=document.getElementById("phindModal"),closeBtn=document.querySelector(".close-btn");chatGPTLink.addEventListener("click",()=>{modal.style.display="flex"}),closeBtn.addEventListener("click",()=>{modal.style.display="none"}),window.addEventListener("click",e=>{e.target===modal&&(modal.style.display="none")});</script>
</body>
</html>