diff --git a/frontend/.gitignore b/frontend/.gitignore index 880c44b..9088be3 100644 --- a/frontend/.gitignore +++ b/frontend/.gitignore @@ -3,3 +3,4 @@ __pycache__/ *.pyc .DS_Store .env +.venv-test/ diff --git a/frontend/Makefile b/frontend/Makefile new file mode 100644 index 0000000..c3d882a --- /dev/null +++ b/frontend/Makefile @@ -0,0 +1,26 @@ +# thermograph-frontend — local dev/test targets. +.PHONY: help test test-unit test-integration backend-up backend-down capture-fixtures clean-venv + +help: ## List targets + @grep -hE '^[a-z][a-zA-Z0-9_-]*:.*## ' $(MAKEFILE_LIST) | awk -F':.*## ' '{printf " %-18s %s\n", $$1, $$2}' + +test: ## Run the whole suite (unit hermetic + integration against a real backend) + ./scripts/test.sh $(ARGS) + +test-unit: ## Hermetic unit tier — SSR rendering fed committed fixtures, no Docker + ./scripts/test.sh tests/unit $(ARGS) + +test-integration: ## Integration tier — pulls + runs the real backend image, tests the live contract + ./scripts/test.sh tests/integration $(ARGS) + +backend-up: ## Pull + run the backend container for local dev (prints its base URL) + ./scripts/backend-for-tests.sh up + +backend-down: ## Stop the local backend container + ./scripts/backend-for-tests.sh down + +capture-fixtures: ## Refresh tests/fixtures/*.json from a live backend + ./scripts/capture-fixtures.sh + +clean-venv: ## Remove the test venv + rm -rf .venv-test diff --git a/frontend/docker-compose.test.yml b/frontend/docker-compose.test.yml new file mode 100644 index 0000000..83b5d33 --- /dev/null +++ b/frontend/docker-compose.test.yml @@ -0,0 +1,40 @@ +# Test harness: pull the published BACKEND image and run it (+ a throwaway TimescaleDB) +# so the frontend's integration tests exercise the real HTTP contract instead of +# importing backend source. Used by scripts/backend-for-tests.sh; not a deploy file. +# The frontend itself is NOT a service here — the tests run the SSR app in-process +# (TestClient) with api_client pointed at this backend. DB data is tmpfs (ephemeral). +services: + db: + image: timescale/timescaledb:${TIMESCALEDB_TAG:-latest-pg18} + environment: + POSTGRES_USER: thermograph + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-testing} + POSTGRES_DB: thermograph + tmpfs: + # pg18 places PGDATA in a version subdir under the mount — mount at /var/lib/postgresql. + - /var/lib/postgresql + healthcheck: + test: ["CMD-SHELL", "pg_isready -U thermograph -d thermograph"] + interval: 3s + timeout: 5s + retries: 20 + + backend: + # The published backend image is pulled (no local build). Default a published tag; + # override THERMOGRAPH_BACKEND_TEST_TAG to pin a specific backend build (e.g. a sha). + image: ${REGISTRY_HOST:-git.thermograph.org}/${BACKEND_IMAGE_PATH:-emi/thermograph-backend/app}:${THERMOGRAPH_BACKEND_TEST_TAG:-v0.0.2-split-ci} + depends_on: + db: + condition: service_healthy + environment: + THERMOGRAPH_DATABASE_URL: postgresql+asyncpg://thermograph:${POSTGRES_PASSWORD:-testing}@db:5432/thermograph + # Required at import; the frontend tests never drive the backend's reverse proxy, + # so an unreachable placeholder is fine. + THERMOGRAPH_FRONTEND_BASE_INTERNAL: http://127.0.0.1:1 + THERMOGRAPH_BASE: "/" + THERMOGRAPH_ENABLE_NOTIFIER: "0" + PORT: "8137" + WORKERS: "1" + ports: + # Host port defaults to 18137 to avoid a dev server on 8137. + - "127.0.0.1:${BACKEND_TEST_HOST_PORT:-18137}:8137" diff --git a/frontend/requirements-dev.txt b/frontend/requirements-dev.txt new file mode 100644 index 0000000..df60fe9 --- /dev/null +++ b/frontend/requirements-dev.txt @@ -0,0 +1,2 @@ +-r requirements.txt +pytest==8.4.1 diff --git a/frontend/scripts/backend-for-tests.sh b/frontend/scripts/backend-for-tests.sh new file mode 100755 index 0000000..0770a96 --- /dev/null +++ b/frontend/scripts/backend-for-tests.sh @@ -0,0 +1,44 @@ +#!/usr/bin/env bash +# Pull the published backend image and run it (+ a throwaway DB) for the frontend's +# integration tests, or for local dev. The frontend's api_client then makes real HTTP +# to it instead of importing backend source. +# +# scripts/backend-for-tests.sh up # pull + start, wait until healthy, print base URL +# scripts/backend-for-tests.sh down # stop + remove (incl. the throwaway db volume) +# scripts/backend-for-tests.sh url # print the base URL (no lifecycle change) +# +# Which backend build: THERMOGRAPH_BACKEND_TEST_TAG (default a published tag; set a +# sha-<12hex> to pin one). Host port: BACKEND_TEST_HOST_PORT (default 18137). +set -euo pipefail +cd "$(dirname "$0")/.." + +export POSTGRES_PASSWORD="${POSTGRES_PASSWORD:-testing}" +export BACKEND_TEST_HOST_PORT="${BACKEND_TEST_HOST_PORT:-18137}" +BASE_URL="http://127.0.0.1:${BACKEND_TEST_HOST_PORT}" +COMPOSE=(docker compose -f docker-compose.test.yml) + +case "${1:-up}" in + up) + echo "==> pulling backend image (${THERMOGRAPH_BACKEND_TEST_TAG:-v0.0.2-split-ci})" >&2 + "${COMPOSE[@]}" pull backend >&2 + echo "==> starting backend + db" >&2 + "${COMPOSE[@]}" up -d >&2 + echo "==> waiting for backend /healthz (up to 90s)" >&2 + for _ in $(seq 1 45); do + curl -fsS -o /dev/null "$BASE_URL/healthz" 2>/dev/null && { echo "$BASE_URL"; exit 0; } + sleep 2 + done + echo "!! backend never became healthy" >&2 + "${COMPOSE[@]}" logs --tail=40 backend >&2 + exit 1 + ;; + down) + "${COMPOSE[@]}" down -v --remove-orphans >/dev/null 2>&1 || true + echo "==> backend stopped" >&2 + ;; + url) + echo "$BASE_URL" + ;; + *) + echo "usage: $0 {up|down|url}" >&2; exit 2 ;; +esac diff --git a/frontend/scripts/capture-fixtures.sh b/frontend/scripts/capture-fixtures.sh new file mode 100755 index 0000000..de7578b --- /dev/null +++ b/frontend/scripts/capture-fixtures.sh @@ -0,0 +1,31 @@ +#!/usr/bin/env bash +# Refresh the committed unit-test fixtures (tests/fixtures/*.json) by capturing the +# real payloads a live backend returns for a known city. Run when the backend's content +# contract changes. Brings the backend harness up, saves each api_client endpoint's +# response, and tears it down. Requires jq for pretty output. +# +# scripts/capture-fixtures.sh +set -euo pipefail +cd "$(dirname "$0")/.." + +SLUG="${FIXTURE_CITY:-london-england-gb}" # GB city -> Celsius rendering +MONTH="${FIXTURE_MONTH:-july}" +OUT=tests/fixtures +mkdir -p "$OUT" + +BASE=$(scripts/backend-for-tests.sh up) +trap 'scripts/backend-for-tests.sh down >/dev/null 2>&1 || true' EXIT + +fetch() { # + echo "==> $2.json <- $1" + curl -fsS "$BASE/$1" --max-time 40 | { command -v jq >/dev/null && jq . || cat; } > "$OUT/$2.json" +} + +fetch "api/v2/content/home" home +fetch "api/v2/content/sitemap" sitemap +fetch "api/v2/content/hub" hub +fetch "api/v2/content/city/$SLUG" city +fetch "api/v2/content/city/$SLUG/month/$MONTH" month +fetch "api/v2/content/city/$SLUG/records" records + +echo "==> captured $(ls "$OUT"/*.json | wc -l) fixtures for $SLUG into $OUT/" diff --git a/frontend/scripts/test.sh b/frontend/scripts/test.sh new file mode 100755 index 0000000..1e2e856 --- /dev/null +++ b/frontend/scripts/test.sh @@ -0,0 +1,26 @@ +#!/usr/bin/env bash +# Build a Python 3.12 dev venv and run pytest. Pass pytest args through: +# ./scripts/test.sh tests/unit # hermetic unit tier (no Docker) +# ./scripts/test.sh tests/integration # integration tier (pulls + runs the backend) +# ./scripts/test.sh # everything +# 3.12 explicitly because a common box python (pyenv 3.10) lacks _sqlite3 and the pinned +# deps target 3.12. +set -euo pipefail +cd "$(dirname "$0")/.." + +VENV="${VENV:-.venv-test}" +if [ ! -x "$VENV/bin/pytest" ]; then + echo "==> Building dev venv ($VENV) on Python 3.12" + if command -v uv >/dev/null 2>&1; then + uv venv --python 3.12 "$VENV" + VIRTUAL_ENV="$VENV" uv pip install -q -r requirements-dev.txt + else + PY="$(command -v python3.12 || echo "$HOME/.local/bin/python3.12")" + "$PY" -m venv "$VENV" + "$VENV/bin/pip" install -q --upgrade pip + "$VENV/bin/pip" install -q -r requirements-dev.txt + fi +fi + +echo "==> pytest ($("$VENV/bin/python" --version))" +exec "$VENV/bin/python" -m pytest "$@" diff --git a/frontend/tests/conftest.py b/frontend/tests/conftest.py index fed601e..1f3e7ec 100644 --- a/frontend/tests/conftest.py +++ b/frontend/tests/conftest.py @@ -1,108 +1,45 @@ -"""Shared test setup for the SSR service. +"""Shared SSR test setup — self-contained, NO backend checkout. -KNOWN GAP (repo-split Stage 7b): this suite does NOT run standalone in this -repo. It still assumes the layout from before the split -- a sibling -`backend/` checkout with its own `tests/conftest.py` (`make_history`/ -`make_recent`) and `api.content_payloads` module, which this repo no longer -has. Extracted verbatim as reference material for the real fix (a genuine -cross-repo contract-test job, or a self-contained set of fixtures owned -here), not yet built -- see this repo's `.forgejo/workflows/build.yml` for -the same gap on the boot-check side. Do not assume `pytest tests` passes -here until that follow-up lands. - -Original docstring, still accurate for what the suite is trying to prove: -this package used to live in the same repo as the backend, so a `client` -fixture could fake api_client by calling the REAL backend payload builders -(api.content_payloads) against the same synthetic history/recent fixtures -backend/tests/conftest.py uses, instead of hand-maintaining a parallel set of -literal JSON fixtures -- so a shape drift between content_payloads.py and how -content.py consumes it failed here too, not just in the backend's own suite. +Replaces the old sibling-`backend/` coupling. Two tiers: + * unit (tests/unit/) — hermetic. The `client` fixture serves the SSR app with + `api_client` monkeypatched to return committed fixtures (tests/fixtures/, refreshed + by scripts/capture-fixtures.sh). No backend, no Docker. + * integration (tests/integration/) — the `live_client` fixture serves the SSR app with + `api_client` pointed at a REAL backend container (scripts/backend-for-tests.sh pulls + + runs it). Skips automatically when Docker/the image isn't available. """ -import importlib.util +import json import os +import subprocess import sys import httpx import pytest _HERE = os.path.dirname(os.path.abspath(__file__)) -FRONTEND_SSR = os.path.dirname(_HERE) -REPO_ROOT = os.path.dirname(FRONTEND_SSR) -BACKEND = os.path.join(REPO_ROOT, "backend") - -# BACKEND first: content_payloads.py's own dependency chain (data/cities.py, -# data/store.py, ...) does a bare `import paths` that must resolve to -# backend/paths.py while THAT chain loads below. -sys.path.insert(0, BACKEND) +REPO = os.path.dirname(_HERE) +if REPO not in sys.path: + sys.path.insert(0, REPO) # SSR modules (content.py, app.py, api_client.py) live at repo root +# api_client raises at import if this is unset. Unit tests monkeypatch api_client so it is +# never used; the integration fixture overrides it to the live backend. os.environ.setdefault("THERMOGRAPH_API_BASE_INTERNAL", "http://backend.invalid") os.environ.setdefault("THERMOGRAPH_BASE", "/thermograph") +import content # noqa: E402 — imports api_client under the env set above -def _load_module(name: str, path: str): - """importlib rather than a bare `import conftest` -- pytest registers - THIS file's own module under the plain name "conftest" too, so a bare - import here could self-collide instead of resolving to backend's file.""" - spec = importlib.util.spec_from_file_location(name, path) - mod = importlib.util.module_from_spec(spec) - spec.loader.exec_module(mod) - return mod - - -# Reuse the exact synthetic weather fixtures backend/tests/conftest.py -# defines (its module-level code also sandboxes data/store/audit paths into a -# tmp dir), so a page rendered here and the same page rendered by the -# backend's own test_content.py agree on every number. -_backend_conftest = _load_module("_backend_test_conftest", os.path.join(BACKEND, "tests", "conftest.py")) -make_history = _backend_conftest.make_history -make_recent = _backend_conftest.make_recent - -from api import content_payloads # noqa: E402 -from api import sitemap as sitemap_mod # noqa: E402 -from data import cities # noqa: E402 - -# frontend_ssr/ has its OWN paths.py and app.py -- genuinely different modules -# that happen to share backend's bare top-level names. data/cities.py etc. -# above already bound their own `paths` name to backend's module object -# (permanent, unaffected by anything below); swap sys.modules["paths"] to -# frontend_ssr's version just for the span of importing content.py (which -# cascades into content_loader.py, the other consumer), then restore it so any -# LATER lazy backend import (api.homepage's own `import paths`, first -# triggered whenever a test actually calls content_payloads.home_payload()) -# still sees backend's version, not frontend's. -_backend_paths_module = sys.modules.get("paths") -_frontend_paths_spec = importlib.util.spec_from_file_location("paths", os.path.join(FRONTEND_SSR, "paths.py")) -_frontend_paths_module = importlib.util.module_from_spec(_frontend_paths_spec) -sys.modules["paths"] = _frontend_paths_module -_frontend_paths_spec.loader.exec_module(_frontend_paths_module) - -# Reprioritize sys.path so "app" -- imported lazily, per-test, by the `client` -# fixture below -- resolves to frontend_ssr/app.py rather than backend's -# app.py (the `app:app` launch shim). Nothing triggers a bare `import app` -# before that point, so ordering (not a swap) is enough for this one name. -sys.path.insert(0, FRONTEND_SSR) - -import api_client # noqa: E402 -import content # noqa: E402 - -if _backend_paths_module is not None: - sys.modules["paths"] = _backend_paths_module -else: - del sys.modules["paths"] - -B = content.BASE -SLUG = "london-england-gb" # present in cities.json; GB -> renders in Celsius +B = content.BASE # "/thermograph" +SLUG = "london-england-gb" # captured into tests/fixtures/ (GB -> Celsius) +MONTH = "july" FAKE_INDEXNOW_KEY = "test0000indexnow0000key000000000" +_FIXTURE_NAMES = ("home", "sitemap", "hub", "city", "month", "records") + +_HARNESS = os.path.join(REPO, "scripts", "backend-for-tests.sh") -@pytest.fixture(scope="session") -def history(): - return make_history() - - -@pytest.fixture(scope="session") -def recent(history): - return make_recent(history) +def load_fixture(name: str): + with open(os.path.join(_HERE, "fixtures", f"{name}.json"), encoding="utf-8") as fh: + return json.load(fh) def _not_found(detail: str) -> httpx.HTTPStatusError: @@ -111,47 +48,75 @@ def _not_found(detail: str) -> httpx.HTTPStatusError: return httpx.HTTPStatusError(detail, request=req, response=resp) +# --- unit tier --------------------------------------------------------------- @pytest.fixture -def client(monkeypatch, history, recent): - """A TestClient over the SSR app, with api_client's HTTP calls replaced by - direct calls into the real backend payload builders -- see module - docstring. Origin defaults to the TestClient's own base URL, matching what - a real request through content.py's _origin(request) would forward.""" +def client(monkeypatch): + """TestClient over the SSR app with api_client replaced by the committed fixtures. + Exercises the rendering layer (content.py + format.py) with zero backend.""" + from fastapi.testclient import TestClient + import api_client + import app as ssr_app + + fx = {n: load_fixture(n) for n in _FIXTURE_NAMES} + monkeypatch.setattr(api_client, "home", lambda: fx["home"]) + monkeypatch.setattr(api_client, "sitemap", lambda: fx["sitemap"]) + monkeypatch.setattr(api_client, "hub", lambda: fx["hub"]) + monkeypatch.setattr(api_client, "indexnow_key", lambda: FAKE_INDEXNOW_KEY) + def _city(slug, *, origin=None): - c = cities.get(slug) - if c is None: + if slug != SLUG: raise _not_found("Unknown city.") - return content_payloads.city_payload(origin or "http://testserver", B, c, history, recent) + return fx["city"] - def _city_month(slug, month): - c = cities.get(slug) - if c is None: - raise _not_found("Unknown city.") - if month not in content_payloads.MONTH_INDEX: + def _month(slug, month): + if slug != SLUG or month != MONTH: raise _not_found("Unknown month.") - return content_payloads.month_payload(B, c, history, content_payloads.MONTH_INDEX[month]) + return fx["month"] - def _city_records(slug, *, origin=None): - c = cities.get(slug) - if c is None: + def _records(slug, *, origin=None): + if slug != SLUG: raise _not_found("Unknown city.") - return content_payloads.records_payload(origin or "http://testserver", B, c, history) - - def _sitemap(): - return [{"path": p, "changefreq": cf, "priority": pr} for p, cf, pr in sitemap_mod.sitemap_entries()] + return fx["records"] monkeypatch.setattr(api_client, "city", _city) - monkeypatch.setattr(api_client, "city_month", _city_month) - monkeypatch.setattr(api_client, "city_records", _city_records) - monkeypatch.setattr(api_client, "hub", content_payloads.hub_payload) - monkeypatch.setattr(api_client, "home", content_payloads.home_payload) - monkeypatch.setattr(api_client, "sitemap", _sitemap) - monkeypatch.setattr(api_client, "indexnow_key", lambda: FAKE_INDEXNOW_KEY) - # api_client's TTL cache is keyed by path/origin, not by test -- stale - # entries from an earlier test would otherwise leak real-looking but - # wrong data into this one. - api_client._cache.clear() + monkeypatch.setattr(api_client, "city_month", _month) + monkeypatch.setattr(api_client, "city_records", _records) + return TestClient(ssr_app.app) - import app as appmod + +# --- integration tier -------------------------------------------------------- +def _docker_ok() -> bool: + try: + return subprocess.run(["docker", "info"], capture_output=True, timeout=15).returncode == 0 + except Exception: + return False + + +@pytest.fixture(scope="session") +def backend_service(): + """Pull + run a real backend container; yield its base URL. Skips if Docker isn't + available or the image can't be pulled/started, so the unit tier still runs anywhere.""" + if not _docker_ok(): + pytest.skip("Docker not available — skipping integration tier") + try: + url = subprocess.run([_HARNESS, "up"], capture_output=True, text=True, timeout=300, check=True).stdout.strip() + except subprocess.CalledProcessError as e: + pytest.skip(f"backend harness failed to start (image unavailable?): {e.stderr[-300:]}") + try: + yield url + finally: + subprocess.run([_HARNESS, "down"], capture_output=True, timeout=60) + + +@pytest.fixture +def live_client(backend_service, monkeypatch): + """TestClient over the SSR app with api_client making REAL HTTP to the live backend + (which runs THERMOGRAPH_BASE=/, so the API is at /api/v{N}, no prefix).""" from fastapi.testclient import TestClient - return TestClient(appmod.app) + import api_client + import app as ssr_app + + monkeypatch.setattr(api_client, "API_BASE", backend_service) + monkeypatch.setattr(api_client, "_BASE_PREFIX", "") + api_client._cache.clear() + return TestClient(ssr_app.app) diff --git a/frontend/tests/fixtures/city.json b/frontend/tests/fixtures/city.json new file mode 100644 index 0000000..173f503 --- /dev/null +++ b/frontend/tests/fixtures/city.json @@ -0,0 +1,328 @@ +{ + "city": { + "slug": "london-england-gb", + "name": "London", + "admin1": "England", + "country": "United Kingdom", + "country_code": "GB", + "lat": 51.50853, + "lon": -0.12574, + "population": 8961989 + }, + "display": "London, England, United Kingdom", + "title": "London, GB", + "year_range": [ + 1980, + 2026 + ], + "n_years": 46, + "months": [ + { + "name": "January", + "slug": "january", + "high_f": 44.5, + "low_f": 35.3, + "range_lo_f": 27.2, + "range_hi_f": 51.9, + "precip_f": 0.1 + }, + { + "name": "February", + "slug": "february", + "high_f": 45.6, + "low_f": 35.1, + "range_lo_f": 26.9, + "range_hi_f": 52.8, + "precip_f": 0.1 + }, + { + "name": "March", + "slug": "march", + "high_f": 50.7, + "low_f": 38.3, + "range_lo_f": 30.9, + "range_hi_f": 57.1, + "precip_f": 0.1 + }, + { + "name": "April", + "slug": "april", + "high_f": 55.5, + "low_f": 40.1, + "range_lo_f": 33.4, + "range_hi_f": 63.4, + "precip_f": 0.1 + }, + { + "name": "May", + "slug": "may", + "high_f": 61.5, + "low_f": 46.5, + "range_lo_f": 40.3, + "range_hi_f": 69.9, + "precip_f": 0.1 + }, + { + "name": "June", + "slug": "june", + "high_f": 67.0, + "low_f": 52.2, + "range_lo_f": 46.5, + "range_hi_f": 75.3, + "precip_f": 0.1 + }, + { + "name": "July", + "slug": "july", + "high_f": 71.1, + "low_f": 56.2, + "range_lo_f": 51.3, + "range_hi_f": 79.8, + "precip_f": 0.1 + }, + { + "name": "August", + "slug": "august", + "high_f": 71.0, + "low_f": 56.5, + "range_lo_f": 51.2, + "range_hi_f": 78.9, + "precip_f": 0.1 + }, + { + "name": "September", + "slug": "september", + "high_f": 65.6, + "low_f": 52.4, + "range_lo_f": 46.7, + "range_hi_f": 72.1, + "precip_f": 0.1 + }, + { + "name": "October", + "slug": "october", + "high_f": 58.4, + "low_f": 47.2, + "range_lo_f": 39.6, + "range_hi_f": 64.2, + "precip_f": 0.1 + }, + { + "name": "November", + "slug": "november", + "high_f": 50.5, + "low_f": 41.0, + "range_lo_f": 32.1, + "range_hi_f": 57.3, + "precip_f": 0.1 + }, + { + "name": "December", + "slug": "december", + "high_f": 45.7, + "low_f": 36.9, + "range_lo_f": 27.5, + "range_hi_f": 53.5, + "precip_f": 0.1 + } + ], + "warmest_month_slug": "july", + "coldest_month_slug": "february", + "wettest_month_slug": "january", + "all_time_records": { + "tmax": { + "max": 97.5, + "max_date": "2022-07-19", + "min": 20.3, + "min_date": "1987-01-12" + }, + "tmin": { + "max": 71.8, + "max_date": "2022-07-19", + "min": 3.3, + "min_date": "1981-12-13" + }, + "feels": { + "max": 100.6, + "max_date": "2019-07-25", + "min": -5.3, + "min_date": "1986-02-10" + }, + "fmax": { + "max": 100.6, + "max_date": "2019-07-25", + "min": 11.8, + "min_date": "1987-01-12" + }, + "fmin": { + "max": 73.2, + "max_date": "2026-06-26", + "min": -5.3, + "min_date": "1986-02-10" + }, + "humid": { + "max": 17.4, + "max_date": "2026-06-24", + "min": 1.9, + "min_date": "1987-01-12" + }, + "wind": { + "max": 41.5, + "max_date": "1987-10-16", + "min": 2.3, + "min_date": "2024-12-27" + }, + "gust": { + "max": 81.7, + "max_date": "2000-10-30", + "min": 5.8, + "min_date": "2024-12-27" + }, + "precip": { + "max": 1.23, + "max_date": "2021-06-18", + "min": 0.0, + "min_date": "1980-01-01" + } + }, + "today_vs_normal": { + "date": "2026-07-22", + "cards": [ + { + "label": "High", + "metric": "tmax", + "value_f": 79.4, + "percentile": 89.1, + "grade": "High", + "cls": "hot" + }, + { + "label": "Low", + "metric": "tmin", + "value_f": 62.8, + "percentile": 94.3, + "grade": "Very High", + "cls": "very-hot" + }, + { + "label": "Feels-like", + "metric": "feels", + "value_f": 78.0, + "percentile": 82.5, + "grade": "High", + "cls": "hot" + }, + { + "label": "Humidity", + "metric": "humid", + "value_f": 10.9, + "percentile": 46.4, + "grade": "Normal", + "cls": "normal" + }, + { + "label": "Wind", + "metric": "wind", + "value_f": 9.6, + "percentile": 36.8, + "grade": "Below Normal", + "cls": "cool" + }, + { + "label": "Gust", + "metric": "gust", + "value_f": 21.5, + "percentile": 41.3, + "grade": "Normal", + "cls": "normal" + }, + { + "label": "Precip", + "metric": "precip", + "value_f": 0.0, + "percentile": null, + "grade": "Dry", + "cls": "dry" + } + ] + }, + "flavor": { + "extract": "London is the capital and largest city of England and the United Kingdom, with a population of 9.1 million people in 2024. Its wider metropolitan area is the largest in Western Europe, with a population of 15.4 million.", + "title": "London", + "url": "https://en.wikipedia.org/wiki/London" + }, + "event": { + "text": "The Great Smog of December 1952 blanketed London in toxic coal fog for days, killing thousands and prompting the UK's landmark Clean Air Act.", + "url": "https://en.wikipedia.org/wiki/Great_Smog_of_London" + }, + "default_unit": "C", + "breadcrumb": [ + { + "name": "Home", + "href": "/" + }, + { + "name": "Climate", + "href": "/climate" + }, + { + "name": "United Kingdom", + "href": null + }, + { + "name": "London", + "href": null + } + ], + "canonical_path": "/climate/london-england-gb", + "page_title": "London, GB climate: daily normals, records & how unusual it is now", + "page_description": "London, GB averages highs of 22°C in July and lows of 2°C in February. Every day graded against 46 years of local history.", + "jsonld": { + "@context": "https://schema.org", + "@graph": [ + { + "@type": "Dataset", + "name": "London, England, United Kingdom climate normals and records", + "description": "Average temperatures, precipitation and record highs and lows for London, England, United Kingdom, from ~46 years of daily climate history.", + "url": "http://127.0.0.1:18137/climate/london-england-gb", + "temporalCoverage": "1980/2026", + "spatialCoverage": { + "@type": "Place", + "name": "London, England, United Kingdom", + "geo": { + "@type": "GeoCoordinates", + "latitude": 51.50853, + "longitude": -0.12574 + } + }, + "creator": { + "@type": "Organization", + "name": "Thermograph" + }, + "isBasedOn": "https://open-meteo.com/ (ERA5 reanalysis)" + }, + { + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 1, + "name": "Home", + "item": "http://127.0.0.1:18137/" + }, + { + "@type": "ListItem", + "position": 2, + "name": "Climate", + "item": "http://127.0.0.1:18137/climate" + }, + { + "@type": "ListItem", + "position": 3, + "name": "London" + } + ] + } + ] + } +} diff --git a/frontend/tests/fixtures/home.json b/frontend/tests/fixtures/home.json new file mode 100644 index 0000000..ad04c38 --- /dev/null +++ b/frontend/tests/fixtures/home.json @@ -0,0 +1,55 @@ +{ + "unusual": null, + "stale": false, + "ranked": [], + "cities": [ + { + "slug": "new-york-city-new-york-us", + "name": "New York City" + }, + { + "slug": "london-england-gb", + "name": "London" + }, + { + "slug": "tokyo-jp", + "name": "Tokyo" + }, + { + "slug": "sydney-new-south-wales-au", + "name": "Sydney" + }, + { + "slug": "sao-paulo-br", + "name": "São Paulo" + }, + { + "slug": "lagos-ng", + "name": "Lagos" + }, + { + "slug": "mumbai-maharashtra-in", + "name": "Mumbai" + }, + { + "slug": "mexico-city-mx", + "name": "Mexico City" + }, + { + "slug": "cairo-eg", + "name": "Cairo" + }, + { + "slug": "toronto-ontario-ca", + "name": "Toronto" + }, + { + "slug": "berlin-state-of-berlin-de", + "name": "Berlin" + }, + { + "slug": "seattle-washington-us", + "name": "Seattle" + } + ] +} diff --git a/frontend/tests/fixtures/hub.json b/frontend/tests/fixtures/hub.json new file mode 100644 index 0000000..e4c4e37 --- /dev/null +++ b/frontend/tests/fixtures/hub.json @@ -0,0 +1,5626 @@ +{ + "n_cities": 1000, + "n_countries": 124, + "countries": [ + { + "country": "Afghanistan", + "cities": [ + { + "slug": "kabul-af", + "name": "Kabul", + "display": "Kabul, Afghanistan" + } + ] + }, + { + "country": "Angola", + "cities": [ + { + "slug": "calumbo-bengo-ao", + "name": "Calumbo", + "display": "Calumbo, Bengo, Angola" + }, + { + "slug": "camama-luanda-ao", + "name": "Camama", + "display": "Camama, Luanda, Angola" + }, + { + "slug": "golfe-luanda-ao", + "name": "Golfe", + "display": "Golfe, Luanda, Angola" + }, + { + "slug": "kikolo-luanda-ao", + "name": "Kikolo", + "display": "Kikolo, Luanda, Angola" + }, + { + "slug": "luanda-ao", + "name": "Luanda", + "display": "Luanda, Angola" + }, + { + "slug": "maianga-luanda-ao", + "name": "Maianga", + "display": "Maianga, Luanda, Angola" + }, + { + "slug": "mulenvos-luanda-ao", + "name": "Mulenvos", + "display": "Mulenvos, Luanda, Angola" + }, + { + "slug": "viana-luanda-ao", + "name": "Viana", + "display": "Viana, Luanda, Angola" + } + ] + }, + { + "country": "Argentina", + "cities": [ + { + "slug": "buenos-aires-buenos-aires-f-d-ar", + "name": "Buenos Aires", + "display": "Buenos Aires, Buenos Aires F.D., Argentina" + }, + { + "slug": "cordoba-ar", + "name": "Córdoba", + "display": "Córdoba, Cordoba, Argentina" + }, + { + "slug": "rosario-santa-fe-ar", + "name": "Rosario", + "display": "Rosario, Santa Fe, Argentina" + } + ] + }, + { + "country": "Armenia", + "cities": [ + { + "slug": "yerevan-am", + "name": "Yerevan", + "display": "Yerevan, Armenia" + } + ] + }, + { + "country": "Australia", + "cities": [ + { + "slug": "adelaide-south-australia-au", + "name": "Adelaide", + "display": "Adelaide, South Australia, Australia" + }, + { + "slug": "brisbane-queensland-au", + "name": "Brisbane", + "display": "Brisbane, Queensland, Australia" + }, + { + "slug": "canberra-australian-capital-territory-au", + "name": "Canberra", + "display": "Canberra, Australian Capital Territory, Australia" + }, + { + "slug": "central-coast-new-south-wales-au", + "name": "Central Coast", + "display": "Central Coast, New South Wales, Australia" + }, + { + "slug": "geelong-victoria-au", + "name": "Geelong", + "display": "Geelong, Victoria, Australia" + }, + { + "slug": "gold-coast-queensland-au", + "name": "Gold Coast", + "display": "Gold Coast, Queensland, Australia" + }, + { + "slug": "hobart-tasmania-au", + "name": "Hobart", + "display": "Hobart, Tasmania, Australia" + }, + { + "slug": "logan-city-queensland-au", + "name": "Logan City", + "display": "Logan City, Queensland, Australia" + }, + { + "slug": "melbourne-victoria-au", + "name": "Melbourne", + "display": "Melbourne, Victoria, Australia" + }, + { + "slug": "newcastle-new-south-wales-au", + "name": "Newcastle", + "display": "Newcastle, New South Wales, Australia" + }, + { + "slug": "perth-western-australia-au", + "name": "Perth", + "display": "Perth, Western Australia, Australia" + }, + { + "slug": "sunshine-coast-queensland-au", + "name": "Sunshine Coast", + "display": "Sunshine Coast, Queensland, Australia" + }, + { + "slug": "sydney-new-south-wales-au", + "name": "Sydney", + "display": "Sydney, New South Wales, Australia" + }, + { + "slug": "townsville-queensland-au", + "name": "Townsville", + "display": "Townsville, Queensland, Australia" + }, + { + "slug": "wollongong-new-south-wales-au", + "name": "Wollongong", + "display": "Wollongong, New South Wales, Australia" + } + ] + }, + { + "country": "Austria", + "cities": [ + { + "slug": "graz-styria-at", + "name": "Graz", + "display": "Graz, Styria, Austria" + }, + { + "slug": "vienna-state-of-vienna-at", + "name": "Vienna", + "display": "Vienna, State of Vienna, Austria" + } + ] + }, + { + "country": "Azerbaijan", + "cities": [ + { + "slug": "baku-baki-az", + "name": "Baku", + "display": "Baku, Baki, Azerbaijan" + } + ] + }, + { + "country": "Bangladesh", + "cities": [ + { + "slug": "dhaka-dhaka-division-bd", + "name": "Dhaka", + "display": "Dhaka, Dhaka Division, Bangladesh" + } + ] + }, + { + "country": "Belarus", + "cities": [ + { + "slug": "minsk-minsk-city-by", + "name": "Minsk", + "display": "Minsk, Minsk City, Belarus" + } + ] + }, + { + "country": "Belgium", + "cities": [ + { + "slug": "antwerp-flanders-be", + "name": "Antwerp", + "display": "Antwerp, Flanders, Belgium" + }, + { + "slug": "brussels-brussels-capital-be", + "name": "Brussels", + "display": "Brussels, Brussels Capital, Belgium" + }, + { + "slug": "gent-flanders-be", + "name": "Gent", + "display": "Gent, Flanders, Belgium" + } + ] + }, + { + "country": "Benin", + "cities": [ + { + "slug": "cotonou-littoral-bj", + "name": "Cotonou", + "display": "Cotonou, Littoral, Benin" + } + ] + }, + { + "country": "Bolivia", + "cities": [ + { + "slug": "cochabamba-bo", + "name": "Cochabamba", + "display": "Cochabamba, Bolivia" + }, + { + "slug": "la-paz-la-paz-department-bo", + "name": "La Paz", + "display": "La Paz, La Paz Department, Bolivia" + }, + { + "slug": "santa-cruz-de-la-sierra-santa-cruz-department-bo", + "name": "Santa Cruz de la Sierra", + "display": "Santa Cruz de la Sierra, Santa Cruz Department, Bolivia" + } + ] + }, + { + "country": "Bosnia and Herzegovina", + "cities": [ + { + "slug": "sarajevo-federation-of-b-h-ba", + "name": "Sarajevo", + "display": "Sarajevo, Federation of B&H, Bosnia and Herzegovina" + } + ] + }, + { + "country": "Brazil", + "cities": [ + { + "slug": "aracaju-sergipe-br", + "name": "Aracaju", + "display": "Aracaju, Sergipe, Brazil" + }, + { + "slug": "belo-horizonte-minas-gerais-br", + "name": "Belo Horizonte", + "display": "Belo Horizonte, Minas Gerais, Brazil" + }, + { + "slug": "belem-para-br", + "name": "Belém", + "display": "Belém, Pará, Brazil" + }, + { + "slug": "brasilia-federal-district-br", + "name": "Brasília", + "display": "Brasília, Federal District, Brazil" + }, + { + "slug": "campinas-sao-paulo-br", + "name": "Campinas", + "display": "Campinas, São Paulo, Brazil" + }, + { + "slug": "campo-grande-mato-grosso-do-sul-br", + "name": "Campo Grande", + "display": "Campo Grande, Mato Grosso do Sul, Brazil" + }, + { + "slug": "curitiba-parana-br", + "name": "Curitiba", + "display": "Curitiba, Paraná, Brazil" + }, + { + "slug": "duque-de-caxias-rio-de-janeiro-br", + "name": "Duque de Caxias", + "display": "Duque de Caxias, Rio de Janeiro, Brazil" + }, + { + "slug": "fortaleza-ceara-br", + "name": "Fortaleza", + "display": "Fortaleza, Ceará, Brazil" + }, + { + "slug": "goiania-goias-br", + "name": "Goiânia", + "display": "Goiânia, Goiás, Brazil" + }, + { + "slug": "guarulhos-sao-paulo-br", + "name": "Guarulhos", + "display": "Guarulhos, São Paulo, Brazil" + }, + { + "slug": "joinville-santa-catarina-br", + "name": "Joinville", + "display": "Joinville, Santa Catarina, Brazil" + }, + { + "slug": "joao-pessoa-paraiba-br", + "name": "João Pessoa", + "display": "João Pessoa, Paraíba, Brazil" + }, + { + "slug": "maceio-alagoas-br", + "name": "Maceió", + "display": "Maceió, Alagoas, Brazil" + }, + { + "slug": "manaus-amazonas-br", + "name": "Manaus", + "display": "Manaus, Amazonas, Brazil" + }, + { + "slug": "natal-rio-grande-do-norte-br", + "name": "Natal", + "display": "Natal, Rio Grande do Norte, Brazil" + }, + { + "slug": "nova-iguacu-rio-de-janeiro-br", + "name": "Nova Iguaçu", + "display": "Nova Iguaçu, Rio de Janeiro, Brazil" + }, + { + "slug": "osasco-sao-paulo-br", + "name": "Osasco", + "display": "Osasco, São Paulo, Brazil" + }, + { + "slug": "porto-alegre-rio-grande-do-sul-br", + "name": "Porto Alegre", + "display": "Porto Alegre, Rio Grande do Sul, Brazil" + }, + { + "slug": "recife-pernambuco-br", + "name": "Recife", + "display": "Recife, Pernambuco, Brazil" + }, + { + "slug": "ribeirao-preto-sao-paulo-br", + "name": "Ribeirão Preto", + "display": "Ribeirão Preto, São Paulo, Brazil" + }, + { + "slug": "rio-de-janeiro-br", + "name": "Rio de Janeiro", + "display": "Rio de Janeiro, Brazil" + }, + { + "slug": "salvador-bahia-br", + "name": "Salvador", + "display": "Salvador, Bahia, Brazil" + }, + { + "slug": "santo-andre-sao-paulo-br", + "name": "Santo André", + "display": "Santo André, São Paulo, Brazil" + }, + { + "slug": "sorocaba-sao-paulo-br", + "name": "Sorocaba", + "display": "Sorocaba, São Paulo, Brazil" + }, + { + "slug": "sao-bernardo-do-campo-sao-paulo-br", + "name": "São Bernardo do Campo", + "display": "São Bernardo do Campo, São Paulo, Brazil" + }, + { + "slug": "sao-jose-dos-campos-sao-paulo-br", + "name": "São José dos Campos", + "display": "São José dos Campos, São Paulo, Brazil" + }, + { + "slug": "sao-luis-maranhao-br", + "name": "São Luís", + "display": "São Luís, Maranhão, Brazil" + }, + { + "slug": "sao-paulo-br", + "name": "São Paulo", + "display": "São Paulo, Brazil" + }, + { + "slug": "teresina-piaui-br", + "name": "Teresina", + "display": "Teresina, Piauí, Brazil" + }, + { + "slug": "uberlandia-minas-gerais-br", + "name": "Uberlândia", + "display": "Uberlândia, Minas Gerais, Brazil" + } + ] + }, + { + "country": "Bulgaria", + "cities": [ + { + "slug": "sofia-sofia-capital-bg", + "name": "Sofia", + "display": "Sofia, Sofia-Capital, Bulgaria" + } + ] + }, + { + "country": "Burkina Faso", + "cities": [ + { + "slug": "bobo-dioulasso-hauts-bassins-bf", + "name": "Bobo-Dioulasso", + "display": "Bobo-Dioulasso, Hauts-Bassins, Burkina Faso" + }, + { + "slug": "ouagadougou-centre-bf", + "name": "Ouagadougou", + "display": "Ouagadougou, Centre, Burkina Faso" + } + ] + }, + { + "country": "Burundi", + "cities": [ + { + "slug": "bujumbura-bujumbura-mairie-bi", + "name": "Bujumbura", + "display": "Bujumbura, Bujumbura Mairie, Burundi" + } + ] + }, + { + "country": "Cambodia", + "cities": [ + { + "slug": "phnom-penh-kh", + "name": "Phnom Penh", + "display": "Phnom Penh, Cambodia" + }, + { + "slug": "takeo-kh", + "name": "Takeo", + "display": "Takeo, Cambodia" + } + ] + }, + { + "country": "Canada", + "cities": [ + { + "slug": "brampton-ontario-ca", + "name": "Brampton", + "display": "Brampton, Ontario, Canada" + }, + { + "slug": "burlington-ontario-ca", + "name": "Burlington", + "display": "Burlington, Ontario, Canada" + }, + { + "slug": "burnaby-british-columbia-ca", + "name": "Burnaby", + "display": "Burnaby, British Columbia, Canada" + }, + { + "slug": "calgary-alberta-ca", + "name": "Calgary", + "display": "Calgary, Alberta, Canada" + }, + { + "slug": "edmonton-alberta-ca", + "name": "Edmonton", + "display": "Edmonton, Alberta, Canada" + }, + { + "slug": "etobicoke-ontario-ca", + "name": "Etobicoke", + "display": "Etobicoke, Ontario, Canada" + }, + { + "slug": "gatineau-quebec-ca", + "name": "Gatineau", + "display": "Gatineau, Quebec, Canada" + }, + { + "slug": "halifax-nova-scotia-ca", + "name": "Halifax", + "display": "Halifax, Nova Scotia, Canada" + }, + { + "slug": "hamilton-ontario-ca", + "name": "Hamilton", + "display": "Hamilton, Ontario, Canada" + }, + { + "slug": "kitchener-ontario-ca", + "name": "Kitchener", + "display": "Kitchener, Ontario, Canada" + }, + { + "slug": "laval-quebec-ca", + "name": "Laval", + "display": "Laval, Quebec, Canada" + }, + { + "slug": "london-ontario-ca", + "name": "London", + "display": "London, Ontario, Canada" + }, + { + "slug": "longueuil-quebec-ca", + "name": "Longueuil", + "display": "Longueuil, Quebec, Canada" + }, + { + "slug": "markham-ontario-ca", + "name": "Markham", + "display": "Markham, Ontario, Canada" + }, + { + "slug": "mississauga-ontario-ca", + "name": "Mississauga", + "display": "Mississauga, Ontario, Canada" + }, + { + "slug": "montreal-quebec-ca", + "name": "Montréal", + "display": "Montréal, Quebec, Canada" + }, + { + "slug": "nepean-ontario-ca", + "name": "Nepean", + "display": "Nepean, Ontario, Canada" + }, + { + "slug": "oakville-ontario-ca", + "name": "Oakville", + "display": "Oakville, Ontario, Canada" + }, + { + "slug": "ottawa-ontario-ca", + "name": "Ottawa", + "display": "Ottawa, Ontario, Canada" + }, + { + "slug": "quebec-ca", + "name": "Québec", + "display": "Québec, Quebec, Canada" + }, + { + "slug": "regina-saskatchewan-ca", + "name": "Regina", + "display": "Regina, Saskatchewan, Canada" + }, + { + "slug": "richmond-british-columbia-ca", + "name": "Richmond", + "display": "Richmond, British Columbia, Canada" + }, + { + "slug": "richmond-hill-ontario-ca", + "name": "Richmond Hill", + "display": "Richmond Hill, Ontario, Canada" + }, + { + "slug": "saskatoon-saskatchewan-ca", + "name": "Saskatoon", + "display": "Saskatoon, Saskatchewan, Canada" + }, + { + "slug": "surrey-british-columbia-ca", + "name": "Surrey", + "display": "Surrey, British Columbia, Canada" + }, + { + "slug": "toronto-ontario-ca", + "name": "Toronto", + "display": "Toronto, Ontario, Canada" + }, + { + "slug": "vancouver-british-columbia-ca", + "name": "Vancouver", + "display": "Vancouver, British Columbia, Canada" + }, + { + "slug": "vaughan-ontario-ca", + "name": "Vaughan", + "display": "Vaughan, Ontario, Canada" + }, + { + "slug": "victoria-british-columbia-ca", + "name": "Victoria", + "display": "Victoria, British Columbia, Canada" + }, + { + "slug": "windsor-ontario-ca", + "name": "Windsor", + "display": "Windsor, Ontario, Canada" + }, + { + "slug": "winnipeg-manitoba-ca", + "name": "Winnipeg", + "display": "Winnipeg, Manitoba, Canada" + } + ] + }, + { + "country": "Central African Republic", + "cities": [ + { + "slug": "bangui-cf", + "name": "Bangui", + "display": "Bangui, Central African Republic" + } + ] + }, + { + "country": "Chad", + "cities": [ + { + "slug": "n-djamena-ndjamena-td", + "name": "N'Djamena", + "display": "N'Djamena, N’Djaména, Chad" + } + ] + }, + { + "country": "Chile", + "cities": [ + { + "slug": "santiago-santiago-metropolitan-cl", + "name": "Santiago", + "display": "Santiago, Santiago Metropolitan, Chile" + } + ] + }, + { + "country": "China", + "cities": [ + { + "slug": "beijing-cn", + "name": "Beijing", + "display": "Beijing, China" + }, + { + "slug": "chengdu-sichuan-cn", + "name": "Chengdu", + "display": "Chengdu, Sichuan, China" + }, + { + "slug": "guangzhou-guangdong-cn", + "name": "Guangzhou", + "display": "Guangzhou, Guangdong, China" + }, + { + "slug": "shanghai-cn", + "name": "Shanghai", + "display": "Shanghai, China" + }, + { + "slug": "shenzhen-guangdong-cn", + "name": "Shenzhen", + "display": "Shenzhen, Guangdong, China" + } + ] + }, + { + "country": "Colombia", + "cities": [ + { + "slug": "barranquilla-atlantico-co", + "name": "Barranquilla", + "display": "Barranquilla, Atlántico, Colombia" + }, + { + "slug": "bogota-bogota-d-c-co", + "name": "Bogotá", + "display": "Bogotá, Bogota D.C., Colombia" + }, + { + "slug": "cali-valle-del-cauca-department-co", + "name": "Cali", + "display": "Cali, Valle del Cauca Department, Colombia" + }, + { + "slug": "cartagena-bolivar-co", + "name": "Cartagena", + "display": "Cartagena, Bolívar, Colombia" + }, + { + "slug": "cucuta-norte-de-santander-department-co", + "name": "Cúcuta", + "display": "Cúcuta, Norte de Santander Department, Colombia" + }, + { + "slug": "kennedy-bogota-d-c-co", + "name": "Kennedy", + "display": "Kennedy, Bogota D.C., Colombia" + }, + { + "slug": "medellin-antioquia-co", + "name": "Medellín", + "display": "Medellín, Antioquia, Colombia" + }, + { + "slug": "soacha-cundinamarca-co", + "name": "Soacha", + "display": "Soacha, Cundinamarca, Colombia" + } + ] + }, + { + "country": "Croatia", + "cities": [ + { + "slug": "zagreb-hr", + "name": "Zagreb", + "display": "Zagreb, Croatia" + } + ] + }, + { + "country": "Cuba", + "cities": [ + { + "slug": "havana-cu", + "name": "Havana", + "display": "Havana, Cuba" + } + ] + }, + { + "country": "Czechia", + "cities": [ + { + "slug": "prague-cz", + "name": "Prague", + "display": "Prague, Czechia" + } + ] + }, + { + "country": "Democratic Republic of the Congo", + "cities": [ + { + "slug": "bukavu-south-kivu-cd", + "name": "Bukavu", + "display": "Bukavu, South Kivu, Democratic Republic of the Congo" + }, + { + "slug": "kananga-kasai-central-cd", + "name": "Kananga", + "display": "Kananga, Kasai-Central, Democratic Republic of the Congo" + }, + { + "slug": "kinshasa-cd", + "name": "Kinshasa", + "display": "Kinshasa, Democratic Republic of the Congo" + }, + { + "slug": "kisangani-tshopo-cd", + "name": "Kisangani", + "display": "Kisangani, Tshopo, Democratic Republic of the Congo" + }, + { + "slug": "kolwezi-lualaba-cd", + "name": "Kolwezi", + "display": "Kolwezi, Lualaba, Democratic Republic of the Congo" + }, + { + "slug": "lubumbashi-haut-katanga-cd", + "name": "Lubumbashi", + "display": "Lubumbashi, Haut-Katanga, Democratic Republic of the Congo" + }, + { + "slug": "mbuji-mayi-east-kasai-cd", + "name": "Mbuji-Mayi", + "display": "Mbuji-Mayi, East Kasai, Democratic Republic of the Congo" + } + ] + }, + { + "country": "Denmark", + "cities": [ + { + "slug": "copenhagen-capital-region-dk", + "name": "Copenhagen", + "display": "Copenhagen, Capital Region, Denmark" + }, + { + "slug": "arhus-central-jutland-dk", + "name": "Århus", + "display": "Århus, Central Jutland, Denmark" + } + ] + }, + { + "country": "Dominican Republic", + "cities": [ + { + "slug": "santiago-de-los-caballeros-santiago-province-do", + "name": "Santiago de los Caballeros", + "display": "Santiago de los Caballeros, Santiago Province, Dominican Republic" + }, + { + "slug": "santo-domingo-nacional-do", + "name": "Santo Domingo", + "display": "Santo Domingo, Nacional, Dominican Republic" + }, + { + "slug": "santo-domingo-este-santo-domingo-province-do", + "name": "Santo Domingo Este", + "display": "Santo Domingo Este, Santo Domingo Province, Dominican Republic" + }, + { + "slug": "santo-domingo-oeste-santo-domingo-province-do", + "name": "Santo Domingo Oeste", + "display": "Santo Domingo Oeste, Santo Domingo Province, Dominican Republic" + } + ] + }, + { + "country": "Ecuador", + "cities": [ + { + "slug": "guayaquil-guayas-ec", + "name": "Guayaquil", + "display": "Guayaquil, Guayas, Ecuador" + }, + { + "slug": "quito-pichincha-ec", + "name": "Quito", + "display": "Quito, Pichincha, Ecuador" + } + ] + }, + { + "country": "Egypt", + "cities": [ + { + "slug": "alexandria-eg", + "name": "Alexandria", + "display": "Alexandria, Egypt" + }, + { + "slug": "cairo-eg", + "name": "Cairo", + "display": "Cairo, Egypt" + }, + { + "slug": "giza-eg", + "name": "Giza", + "display": "Giza, Egypt" + } + ] + }, + { + "country": "Estonia", + "cities": [ + { + "slug": "tallinn-harjumaa-ee", + "name": "Tallinn", + "display": "Tallinn, Harjumaa, Estonia" + } + ] + }, + { + "country": "Ethiopia", + "cities": [ + { + "slug": "addis-ababa-et", + "name": "Addis Ababa", + "display": "Addis Ababa, Ethiopia" + } + ] + }, + { + "country": "Finland", + "cities": [ + { + "slug": "espoo-uusimaa-fi", + "name": "Espoo", + "display": "Espoo, Uusimaa, Finland" + }, + { + "slug": "helsinki-uusimaa-fi", + "name": "Helsinki", + "display": "Helsinki, Uusimaa, Finland" + }, + { + "slug": "tampere-pirkanmaa-fi", + "name": "Tampere", + "display": "Tampere, Pirkanmaa, Finland" + }, + { + "slug": "vantaa-uusimaa-fi", + "name": "Vantaa", + "display": "Vantaa, Uusimaa, Finland" + } + ] + }, + { + "country": "France", + "cities": [ + { + "slug": "bordeaux-new-aquitaine-fr", + "name": "Bordeaux", + "display": "Bordeaux, New Aquitaine, France" + }, + { + "slug": "lyon-rhone-alpes-fr", + "name": "Lyon", + "display": "Lyon, Rhône-Alpes, France" + }, + { + "slug": "marne-la-vallee-ile-de-france-fr", + "name": "Marne La Vallée", + "display": "Marne La Vallée, Île-de-France, France" + }, + { + "slug": "marseille-provence-alpes-cote-d-azur-fr", + "name": "Marseille", + "display": "Marseille, Provence-Alpes-Côte d'Azur, France" + }, + { + "slug": "nantes-pays-de-la-loire-fr", + "name": "Nantes", + "display": "Nantes, Pays de la Loire, France" + }, + { + "slug": "nice-provence-alpes-cote-d-azur-fr", + "name": "Nice", + "display": "Nice, Provence-Alpes-Côte d'Azur, France" + }, + { + "slug": "paris-ile-de-france-fr", + "name": "Paris", + "display": "Paris, Île-de-France, France" + }, + { + "slug": "strasbourg-grand-est-fr", + "name": "Strasbourg", + "display": "Strasbourg, Grand Est, France" + }, + { + "slug": "toulouse-occitanie-fr", + "name": "Toulouse", + "display": "Toulouse, Occitanie, France" + } + ] + }, + { + "country": "Gabon", + "cities": [ + { + "slug": "libreville-estuaire-ga", + "name": "Libreville", + "display": "Libreville, Estuaire, Gabon" + } + ] + }, + { + "country": "Georgia", + "cities": [ + { + "slug": "tbilisi-ge", + "name": "Tbilisi", + "display": "Tbilisi, Georgia" + } + ] + }, + { + "country": "Germany", + "cities": [ + { + "slug": "aachen-north-rhine-westphalia-de", + "name": "Aachen", + "display": "Aachen, North Rhine-Westphalia, Germany" + }, + { + "slug": "augsburg-bavaria-de", + "name": "Augsburg", + "display": "Augsburg, Bavaria, Germany" + }, + { + "slug": "berlin-state-of-berlin-de", + "name": "Berlin", + "display": "Berlin, State of Berlin, Germany" + }, + { + "slug": "bielefeld-north-rhine-westphalia-de", + "name": "Bielefeld", + "display": "Bielefeld, North Rhine-Westphalia, Germany" + }, + { + "slug": "bochum-north-rhine-westphalia-de", + "name": "Bochum", + "display": "Bochum, North Rhine-Westphalia, Germany" + }, + { + "slug": "bonn-north-rhine-westphalia-de", + "name": "Bonn", + "display": "Bonn, North Rhine-Westphalia, Germany" + }, + { + "slug": "bremen-de", + "name": "Bremen", + "display": "Bremen, Germany" + }, + { + "slug": "dortmund-north-rhine-westphalia-de", + "name": "Dortmund", + "display": "Dortmund, North Rhine-Westphalia, Germany" + }, + { + "slug": "dresden-saxony-de", + "name": "Dresden", + "display": "Dresden, Saxony, Germany" + }, + { + "slug": "duisburg-north-rhine-westphalia-de", + "name": "Duisburg", + "display": "Duisburg, North Rhine-Westphalia, Germany" + }, + { + "slug": "dusseldorf-north-rhine-westphalia-de", + "name": "Düsseldorf", + "display": "Düsseldorf, North Rhine-Westphalia, Germany" + }, + { + "slug": "eimsbuttel-hamburg-de", + "name": "Eimsbüttel", + "display": "Eimsbüttel, Hamburg, Germany" + }, + { + "slug": "essen-north-rhine-westphalia-de", + "name": "Essen", + "display": "Essen, North Rhine-Westphalia, Germany" + }, + { + "slug": "frankfurt-am-main-hesse-de", + "name": "Frankfurt am Main", + "display": "Frankfurt am Main, Hesse, Germany" + }, + { + "slug": "gelsenkirchen-north-rhine-westphalia-de", + "name": "Gelsenkirchen", + "display": "Gelsenkirchen, North Rhine-Westphalia, Germany" + }, + { + "slug": "hamburg-de", + "name": "Hamburg", + "display": "Hamburg, Germany" + }, + { + "slug": "hamburg-mitte-hamburg-de", + "name": "Hamburg-Mitte", + "display": "Hamburg-Mitte, Hamburg, Germany" + }, + { + "slug": "hamburg-nord-hamburg-de", + "name": "Hamburg-Nord", + "display": "Hamburg-Nord, Hamburg, Germany" + }, + { + "slug": "hannover-lower-saxony-de", + "name": "Hannover", + "display": "Hannover, Lower Saxony, Germany" + }, + { + "slug": "karlsruhe-baden-wurttemberg-de", + "name": "Karlsruhe", + "display": "Karlsruhe, Baden-Wurttemberg, Germany" + }, + { + "slug": "kiel-schleswig-holstein-de", + "name": "Kiel", + "display": "Kiel, Schleswig-Holstein, Germany" + }, + { + "slug": "koln-north-rhine-westphalia-de", + "name": "Köln", + "display": "Köln, North Rhine-Westphalia, Germany" + }, + { + "slug": "leipzig-saxony-de", + "name": "Leipzig", + "display": "Leipzig, Saxony, Germany" + }, + { + "slug": "mannheim-baden-wurttemberg-de", + "name": "Mannheim", + "display": "Mannheim, Baden-Wurttemberg, Germany" + }, + { + "slug": "marienthal-hamburg-de", + "name": "Marienthal", + "display": "Marienthal, Hamburg, Germany" + }, + { + "slug": "munich-bavaria-de", + "name": "Munich", + "display": "Munich, Bavaria, Germany" + }, + { + "slug": "monchengladbach-north-rhine-westphalia-de", + "name": "Mönchengladbach", + "display": "Mönchengladbach, North Rhine-Westphalia, Germany" + }, + { + "slug": "munster-north-rhine-westphalia-de", + "name": "Münster", + "display": "Münster, North Rhine-Westphalia, Germany" + }, + { + "slug": "nuremberg-bavaria-de", + "name": "Nuremberg", + "display": "Nuremberg, Bavaria, Germany" + }, + { + "slug": "stuttgart-baden-wurttemberg-de", + "name": "Stuttgart", + "display": "Stuttgart, Baden-Wurttemberg, Germany" + }, + { + "slug": "wandsbek-hamburg-de", + "name": "Wandsbek", + "display": "Wandsbek, Hamburg, Germany" + }, + { + "slug": "wiesbaden-hesse-de", + "name": "Wiesbaden", + "display": "Wiesbaden, Hesse, Germany" + }, + { + "slug": "wuppertal-north-rhine-westphalia-de", + "name": "Wuppertal", + "display": "Wuppertal, North Rhine-Westphalia, Germany" + } + ] + }, + { + "country": "Ghana", + "cities": [ + { + "slug": "accra-greater-accra-gh", + "name": "Accra", + "display": "Accra, Greater Accra, Ghana" + }, + { + "slug": "kumasi-ashanti-gh", + "name": "Kumasi", + "display": "Kumasi, Ashanti, Ghana" + } + ] + }, + { + "country": "Greece", + "cities": [ + { + "slug": "athens-attica-gr", + "name": "Athens", + "display": "Athens, Attica, Greece" + }, + { + "slug": "thessaloniki-central-macedonia-gr", + "name": "Thessaloníki", + "display": "Thessaloníki, Central Macedonia, Greece" + } + ] + }, + { + "country": "Guatemala", + "cities": [ + { + "slug": "guatemala-city-guatemala-gt", + "name": "Guatemala City", + "display": "Guatemala City, Guatemala, Guatemala" + } + ] + }, + { + "country": "Guinea", + "cities": [ + { + "slug": "camayenne-conakry-gn", + "name": "Camayenne", + "display": "Camayenne, Conakry, Guinea" + }, + { + "slug": "conakry-gn", + "name": "Conakry", + "display": "Conakry, Guinea" + } + ] + }, + { + "country": "Haiti", + "cities": [ + { + "slug": "port-au-prince-ouest-ht", + "name": "Port-au-Prince", + "display": "Port-au-Prince, Ouest, Haiti" + } + ] + }, + { + "country": "Honduras", + "cities": [ + { + "slug": "san-pedro-sula-cortes-department-hn", + "name": "San Pedro Sula", + "display": "San Pedro Sula, Cortés Department, Honduras" + }, + { + "slug": "tegucigalpa-francisco-morazan-department-hn", + "name": "Tegucigalpa", + "display": "Tegucigalpa, Francisco Morazán Department, Honduras" + } + ] + }, + { + "country": "Hong Kong", + "cities": [ + { + "slug": "fanling-north-district-hk", + "name": "Fanling", + "display": "Fanling, North District, Hong Kong" + }, + { + "slug": "hong-kong-hk", + "name": "Hong Kong", + "display": "Hong Kong, Hong Kong" + }, + { + "slug": "hong-kong-island-hk", + "name": "Hong Kong Island", + "display": "Hong Kong Island, Hong Kong" + }, + { + "slug": "kowloon-hk", + "name": "Kowloon", + "display": "Kowloon, Hong Kong" + }, + { + "slug": "kowloon-city-hk", + "name": "Kowloon City", + "display": "Kowloon City, Hong Kong" + }, + { + "slug": "kwai-chung-kwai-tsing-district-hk", + "name": "Kwai Chung", + "display": "Kwai Chung, Kwai Tsing District, Hong Kong" + }, + { + "slug": "new-territories-hk", + "name": "New Territories", + "display": "New Territories, Hong Kong" + }, + { + "slug": "sha-tin-hk", + "name": "Sha Tin", + "display": "Sha Tin, Hong Kong" + }, + { + "slug": "sham-shui-po-sham-shui-po-district-hk", + "name": "Sham Shui Po", + "display": "Sham Shui Po, Sham Shui Po District, Hong Kong" + }, + { + "slug": "tai-po-hk", + "name": "Tai Po", + "display": "Tai Po, Hong Kong" + }, + { + "slug": "tin-shui-wai-yuen-long-hk", + "name": "Tin Shui Wai", + "display": "Tin Shui Wai, Yuen Long, Hong Kong" + }, + { + "slug": "tseung-kwan-o-sai-kung-district-hk", + "name": "Tseung Kwan O", + "display": "Tseung Kwan O, Sai Kung District, Hong Kong" + }, + { + "slug": "tsuen-wan-hk", + "name": "Tsuen Wan", + "display": "Tsuen Wan, Hong Kong" + }, + { + "slug": "tuen-mun-hk", + "name": "Tuen Mun", + "display": "Tuen Mun, Hong Kong" + }, + { + "slug": "victoria-central-and-western-hk", + "name": "Victoria", + "display": "Victoria, Central and Western, Hong Kong" + }, + { + "slug": "wong-tai-sin-wong-tai-sin-district-hk", + "name": "Wong Tai Sin", + "display": "Wong Tai Sin, Wong Tai Sin District, Hong Kong" + } + ] + }, + { + "country": "Hungary", + "cities": [ + { + "slug": "budapest-hu", + "name": "Budapest", + "display": "Budapest, Hungary" + }, + { + "slug": "pest-budapest-hu", + "name": "Pest", + "display": "Pest, Budapest, Hungary" + } + ] + }, + { + "country": "India", + "cities": [ + { + "slug": "agartala-tripura-in", + "name": "Agartala", + "display": "Agartala, Tripura, India" + }, + { + "slug": "agra-uttar-pradesh-in", + "name": "Agra", + "display": "Agra, Uttar Pradesh, India" + }, + { + "slug": "ahilyanagar-maharashtra-in", + "name": "Ahilyanagar", + "display": "Ahilyanagar, Maharashtra, India" + }, + { + "slug": "ahmedabad-gujarat-in", + "name": "Ahmedabad", + "display": "Ahmedabad, Gujarat, India" + }, + { + "slug": "aizawl-mizoram-in", + "name": "Aizawl", + "display": "Aizawl, Mizoram, India" + }, + { + "slug": "ajmer-rajasthan-in", + "name": "Ajmer", + "display": "Ajmer, Rajasthan, India" + }, + { + "slug": "akola-maharashtra-in", + "name": "Akola", + "display": "Akola, Maharashtra, India" + }, + { + "slug": "alwar-rajasthan-in", + "name": "Alwar", + "display": "Alwar, Rajasthan, India" + }, + { + "slug": "aligarh-uttar-pradesh-in", + "name": "Alīgarh", + "display": "Alīgarh, Uttar Pradesh, India" + }, + { + "slug": "ambarnath-maharashtra-in", + "name": "Ambarnath", + "display": "Ambarnath, Maharashtra, India" + }, + { + "slug": "ambattur-tamil-nadu-in", + "name": "Ambattur", + "display": "Ambattur, Tamil Nadu, India" + }, + { + "slug": "amravati-maharashtra-in", + "name": "Amravati", + "display": "Amravati, Maharashtra, India" + }, + { + "slug": "amritsar-punjab-in", + "name": "Amritsar", + "display": "Amritsar, Punjab, India" + }, + { + "slug": "anantapur-andhra-pradesh-in", + "name": "Anantapur", + "display": "Anantapur, Andhra Pradesh, India" + }, + { + "slug": "arrah-bihar-in", + "name": "Arrah", + "display": "Arrah, Bihar, India" + }, + { + "slug": "aurangabad-maharashtra-in", + "name": "Aurangabad", + "display": "Aurangabad, Maharashtra, India" + }, + { + "slug": "avadi-tamil-nadu-in", + "name": "Avadi", + "display": "Avadi, Tamil Nadu, India" + }, + { + "slug": "ballari-karnataka-in", + "name": "Ballari", + "display": "Ballari, Karnataka, India" + }, + { + "slug": "baranagar-west-bengal-in", + "name": "Baranagar", + "display": "Baranagar, West Bengal, India" + }, + { + "slug": "barddhaman-west-bengal-in", + "name": "Barddhamān", + "display": "Barddhamān, West Bengal, India" + }, + { + "slug": "bareilly-uttar-pradesh-in", + "name": "Bareilly", + "display": "Bareilly, Uttar Pradesh, India" + }, + { + "slug": "bathinda-punjab-in", + "name": "Bathinda", + "display": "Bathinda, Punjab, India" + }, + { + "slug": "belagavi-karnataka-in", + "name": "Belagavi", + "display": "Belagavi, Karnataka, India" + }, + { + "slug": "bengaluru-karnataka-in", + "name": "Bengaluru", + "display": "Bengaluru, Karnataka, India" + }, + { + "slug": "bharatpur-rajasthan-in", + "name": "Bharatpur", + "display": "Bharatpur, Rajasthan, India" + }, + { + "slug": "bhavnagar-gujarat-in", + "name": "Bhavnagar", + "display": "Bhavnagar, Gujarat, India" + }, + { + "slug": "bhayandar-maharashtra-in", + "name": "Bhayandar", + "display": "Bhayandar, Maharashtra, India" + }, + { + "slug": "bhilai-chhattisgarh-in", + "name": "Bhilai", + "display": "Bhilai, Chhattisgarh, India" + }, + { + "slug": "bhilwara-rajasthan-in", + "name": "Bhilwara", + "display": "Bhilwara, Rajasthan, India" + }, + { + "slug": "bhiwandi-maharashtra-in", + "name": "Bhiwandi", + "display": "Bhiwandi, Maharashtra, India" + }, + { + "slug": "bhopal-madhya-pradesh-in", + "name": "Bhopal", + "display": "Bhopal, Madhya Pradesh, India" + }, + { + "slug": "bhubaneswar-odisha-in", + "name": "Bhubaneswar", + "display": "Bhubaneswar, Odisha, India" + }, + { + "slug": "bhagalpur-bihar-in", + "name": "Bhāgalpur", + "display": "Bhāgalpur, Bihar, India" + }, + { + "slug": "bhatpara-west-bengal-in", + "name": "Bhātpāra", + "display": "Bhātpāra, West Bengal, India" + }, + { + "slug": "bihar-sharif-bihar-in", + "name": "Bihār Sharīf", + "display": "Bihār Sharīf, Bihar, India" + }, + { + "slug": "bikaner-rajasthan-in", + "name": "Bikaner", + "display": "Bikaner, Rajasthan, India" + }, + { + "slug": "bilimora-gujarat-in", + "name": "Bilimora", + "display": "Bilimora, Gujarat, India" + }, + { + "slug": "bilaspur-chhattisgarh-in", + "name": "Bilāspur", + "display": "Bilāspur, Chhattisgarh, India" + }, + { + "slug": "bokaro-jharkhand-in", + "name": "Bokāro", + "display": "Bokāro, Jharkhand, India" + }, + { + "slug": "borivli-maharashtra-in", + "name": "Borivli", + "display": "Borivli, Maharashtra, India" + }, + { + "slug": "brahmapur-odisha-in", + "name": "Brahmapur", + "display": "Brahmapur, Odisha, India" + }, + { + "slug": "bali-west-bengal-in", + "name": "Bāli", + "display": "Bāli, West Bengal, India" + }, + { + "slug": "barasat-west-bengal-in", + "name": "Bārāsat", + "display": "Bārāsat, West Bengal, India" + }, + { + "slug": "chandigarh-in", + "name": "Chandigarh", + "display": "Chandigarh, India" + }, + { + "slug": "chennai-tamil-nadu-in", + "name": "Chennai", + "display": "Chennai, Tamil Nadu, India" + }, + { + "slug": "chanda-maharashtra-in", + "name": "Chānda", + "display": "Chānda, Maharashtra, India" + }, + { + "slug": "coimbatore-tamil-nadu-in", + "name": "Coimbatore", + "display": "Coimbatore, Tamil Nadu, India" + }, + { + "slug": "cuttack-odisha-in", + "name": "Cuttack", + "display": "Cuttack, Odisha, India" + }, + { + "slug": "darbhanga-bihar-in", + "name": "Darbhanga", + "display": "Darbhanga, Bihar, India" + }, + { + "slug": "davangere-karnataka-in", + "name": "Davangere", + "display": "Davangere, Karnataka, India" + }, + { + "slug": "dehradun-uttarakhand-in", + "name": "Dehradun", + "display": "Dehradun, Uttarakhand, India" + }, + { + "slug": "delhi-in", + "name": "Delhi", + "display": "Delhi, India" + }, + { + "slug": "dewas-madhya-pradesh-in", + "name": "Dewas", + "display": "Dewas, Madhya Pradesh, India" + }, + { + "slug": "dhanbad-jharkhand-in", + "name": "Dhanbad", + "display": "Dhanbad, Jharkhand, India" + }, + { + "slug": "dhule-maharashtra-in", + "name": "Dhule", + "display": "Dhule, Maharashtra, India" + }, + { + "slug": "dharavi-maharashtra-in", + "name": "Dhārāvi", + "display": "Dhārāvi, Maharashtra, India" + }, + { + "slug": "dindigul-tamil-nadu-in", + "name": "Dindigul", + "display": "Dindigul, Tamil Nadu, India" + }, + { + "slug": "dombivali-maharashtra-in", + "name": "Dombivali", + "display": "Dombivali, Maharashtra, India" + }, + { + "slug": "durg-chhattisgarh-in", + "name": "Durg", + "display": "Durg, Chhattisgarh, India" + }, + { + "slug": "durgapur-west-bengal-in", + "name": "Durgapur", + "display": "Durgapur, West Bengal, India" + }, + { + "slug": "erode-tamil-nadu-in", + "name": "Erode", + "display": "Erode, Tamil Nadu, India" + }, + { + "slug": "etawah-uttar-pradesh-in", + "name": "Etāwah", + "display": "Etāwah, Uttar Pradesh, India" + }, + { + "slug": "faridabad-haryana-in", + "name": "Faridabad", + "display": "Faridabad, Haryana, India" + }, + { + "slug": "firozabad-uttar-pradesh-in", + "name": "Fīrozābād", + "display": "Fīrozābād, Uttar Pradesh, India" + }, + { + "slug": "gajuwaka-andhra-pradesh-in", + "name": "Gajuwaka", + "display": "Gajuwaka, Andhra Pradesh, India" + }, + { + "slug": "gandhinagar-gujarat-in", + "name": "Gandhinagar", + "display": "Gandhinagar, Gujarat, India" + }, + { + "slug": "gaya-bihar-in", + "name": "Gaya", + "display": "Gaya, Bihar, India" + }, + { + "slug": "ghaziabad-uttar-pradesh-in", + "name": "Ghāziābād", + "display": "Ghāziābād, Uttar Pradesh, India" + }, + { + "slug": "gorakhpur-haryana-in", + "name": "Gorakhpur", + "display": "Gorakhpur, Haryana, India" + }, + { + "slug": "gorakhpur-uttar-pradesh-in", + "name": "Gorakhpur", + "display": "Gorakhpur, Uttar Pradesh, India" + }, + { + "slug": "greater-noida-uttar-pradesh-in", + "name": "Greater Noida", + "display": "Greater Noida, Uttar Pradesh, India" + }, + { + "slug": "gundupalaiyam-puducherry-in", + "name": "Gundupālaiyam", + "display": "Gundupālaiyam, Puducherry, India" + }, + { + "slug": "guntur-andhra-pradesh-in", + "name": "Guntur", + "display": "Guntur, Andhra Pradesh, India" + }, + { + "slug": "gurugram-haryana-in", + "name": "Gurugram", + "display": "Gurugram, Haryana, India" + }, + { + "slug": "guwahati-assam-in", + "name": "Guwahati", + "display": "Guwahati, Assam, India" + }, + { + "slug": "gwalior-madhya-pradesh-in", + "name": "Gwalior", + "display": "Gwalior, Madhya Pradesh, India" + }, + { + "slug": "hisar-haryana-in", + "name": "Hisar", + "display": "Hisar, Haryana, India" + }, + { + "slug": "howrah-west-bengal-in", + "name": "Howrah", + "display": "Howrah, West Bengal, India" + }, + { + "slug": "hubballi-karnataka-in", + "name": "Hubballi", + "display": "Hubballi, Karnataka, India" + }, + { + "slug": "hyderabad-telangana-in", + "name": "Hyderabad", + "display": "Hyderabad, Telangana, India" + }, + { + "slug": "ichalkaranji-maharashtra-in", + "name": "Ichalkaranji", + "display": "Ichalkaranji, Maharashtra, India" + }, + { + "slug": "imphal-manipur-in", + "name": "Imphal", + "display": "Imphal, Manipur, India" + }, + { + "slug": "indore-madhya-pradesh-in", + "name": "Indore", + "display": "Indore, Madhya Pradesh, India" + }, + { + "slug": "jabalpur-madhya-pradesh-in", + "name": "Jabalpur", + "display": "Jabalpur, Madhya Pradesh, India" + }, + { + "slug": "jaipur-rajasthan-in", + "name": "Jaipur", + "display": "Jaipur, Rajasthan, India" + }, + { + "slug": "jalandhar-punjab-in", + "name": "Jalandhar", + "display": "Jalandhar, Punjab, India" + }, + { + "slug": "jalgaon-maharashtra-in", + "name": "Jalgaon", + "display": "Jalgaon, Maharashtra, India" + }, + { + "slug": "jammu-jammu-and-kashmir-in", + "name": "Jammu", + "display": "Jammu, Jammu and Kashmir, India" + }, + { + "slug": "jamnagar-gujarat-in", + "name": "Jamnagar", + "display": "Jamnagar, Gujarat, India" + }, + { + "slug": "jamshedpur-jharkhand-in", + "name": "Jamshedpur", + "display": "Jamshedpur, Jharkhand, India" + }, + { + "slug": "jhansi-uttar-pradesh-in", + "name": "Jhānsi", + "display": "Jhānsi, Uttar Pradesh, India" + }, + { + "slug": "jodhpur-rajasthan-in", + "name": "Jodhpur", + "display": "Jodhpur, Rajasthan, India" + }, + { + "slug": "jajmau-uttar-pradesh-in", + "name": "Jājmau", + "display": "Jājmau, Uttar Pradesh, India" + }, + { + "slug": "jalna-maharashtra-in", + "name": "Jālna", + "display": "Jālna, Maharashtra, India" + }, + { + "slug": "junagadh-gujarat-in", + "name": "Jūnāgadh", + "display": "Jūnāgadh, Gujarat, India" + }, + { + "slug": "kadapa-andhra-pradesh-in", + "name": "Kadapa", + "display": "Kadapa, Andhra Pradesh, India" + }, + { + "slug": "kalaburagi-karnataka-in", + "name": "Kalaburagi", + "display": "Kalaburagi, Karnataka, India" + }, + { + "slug": "kallakurichi-tamil-nadu-in", + "name": "Kallakurichi", + "display": "Kallakurichi, Tamil Nadu, India" + }, + { + "slug": "kalyan-maharashtra-in", + "name": "Kalyān", + "display": "Kalyān, Maharashtra, India" + }, + { + "slug": "kanayannur-kerala-in", + "name": "Kanayannur", + "display": "Kanayannur, Kerala, India" + }, + { + "slug": "kanpur-uttar-pradesh-in", + "name": "Kanpur", + "display": "Kanpur, Uttar Pradesh, India" + }, + { + "slug": "karnal-haryana-in", + "name": "Karnāl", + "display": "Karnāl, Haryana, India" + }, + { + "slug": "karol-bagh-delhi-in", + "name": "Karol Bāgh", + "display": "Karol Bāgh, Delhi, India" + }, + { + "slug": "karimnagar-telangana-in", + "name": "Karīmnagar", + "display": "Karīmnagar, Telangana, India" + }, + { + "slug": "kirari-sulemannagar-delhi-in", + "name": "Kirāri Sulemānnagar", + "display": "Kirāri Sulemānnagar, Delhi, India" + }, + { + "slug": "kochi-kerala-in", + "name": "Kochi", + "display": "Kochi, Kerala, India" + }, + { + "slug": "kolhapur-maharashtra-in", + "name": "Kolhāpur", + "display": "Kolhāpur, Maharashtra, India" + }, + { + "slug": "kolkata-west-bengal-in", + "name": "Kolkata", + "display": "Kolkata, West Bengal, India" + }, + { + "slug": "kollam-kerala-in", + "name": "Kollam", + "display": "Kollam, Kerala, India" + }, + { + "slug": "korba-chhattisgarh-in", + "name": "Korba", + "display": "Korba, Chhattisgarh, India" + }, + { + "slug": "kota-rajasthan-in", + "name": "Kota", + "display": "Kota, Rajasthan, India" + }, + { + "slug": "kozhikode-kerala-in", + "name": "Kozhikode", + "display": "Kozhikode, Kerala, India" + }, + { + "slug": "kukatpally-telangana-in", + "name": "Kukatpally", + "display": "Kukatpally, Telangana, India" + }, + { + "slug": "kulti-west-bengal-in", + "name": "Kulti", + "display": "Kulti, West Bengal, India" + }, + { + "slug": "kurnool-andhra-pradesh-in", + "name": "Kurnool", + "display": "Kurnool, Andhra Pradesh, India" + }, + { + "slug": "kushinagar-uttar-pradesh-in", + "name": "Kushinagar", + "display": "Kushinagar, Uttar Pradesh, India" + }, + { + "slug": "kakinada-andhra-pradesh-in", + "name": "Kākināda", + "display": "Kākināda, Andhra Pradesh, India" + }, + { + "slug": "kamarhati-west-bengal-in", + "name": "Kāmārhāti", + "display": "Kāmārhāti, West Bengal, India" + }, + { + "slug": "lal-bahadur-nagar-telangana-in", + "name": "Lal Bahadur Nagar", + "display": "Lal Bahadur Nagar, Telangana, India" + }, + { + "slug": "latur-maharashtra-in", + "name": "Latur", + "display": "Latur, Maharashtra, India" + }, + { + "slug": "loni-uttar-pradesh-in", + "name": "Loni", + "display": "Loni, Uttar Pradesh, India" + }, + { + "slug": "lucknow-uttar-pradesh-in", + "name": "Lucknow", + "display": "Lucknow, Uttar Pradesh, India" + }, + { + "slug": "ludhiana-punjab-in", + "name": "Ludhiana", + "display": "Ludhiana, Punjab, India" + }, + { + "slug": "madurai-tamil-nadu-in", + "name": "Madurai", + "display": "Madurai, Tamil Nadu, India" + }, + { + "slug": "maheshtala-west-bengal-in", + "name": "Maheshtala", + "display": "Maheshtala, West Bengal, India" + }, + { + "slug": "malegaon-maharashtra-in", + "name": "Malegaon", + "display": "Malegaon, Maharashtra, India" + }, + { + "slug": "mangaluru-karnataka-in", + "name": "Mangaluru", + "display": "Mangaluru, Karnataka, India" + }, + { + "slug": "mathura-uttar-pradesh-in", + "name": "Mathura", + "display": "Mathura, Uttar Pradesh, India" + }, + { + "slug": "meerut-uttar-pradesh-in", + "name": "Meerut", + "display": "Meerut, Uttar Pradesh, India" + }, + { + "slug": "moradabad-uttar-pradesh-in", + "name": "Morādābād", + "display": "Morādābād, Uttar Pradesh, India" + }, + { + "slug": "mulugu-telangana-in", + "name": "Mulugu", + "display": "Mulugu, Telangana, India" + }, + { + "slug": "mumbai-maharashtra-in", + "name": "Mumbai", + "display": "Mumbai, Maharashtra, India" + }, + { + "slug": "muzaffarnagar-uttar-pradesh-in", + "name": "Muzaffarnagar", + "display": "Muzaffarnagar, Uttar Pradesh, India" + }, + { + "slug": "muzaffarpur-bihar-in", + "name": "Muzaffarpur", + "display": "Muzaffarpur, Bihar, India" + }, + { + "slug": "mysuru-karnataka-in", + "name": "Mysuru", + "display": "Mysuru, Karnataka, India" + }, + { + "slug": "nagpur-maharashtra-in", + "name": "Nagpur", + "display": "Nagpur, Maharashtra, India" + }, + { + "slug": "naihati-west-bengal-in", + "name": "Naihāti", + "display": "Naihāti, West Bengal, India" + }, + { + "slug": "najafgarh-delhi-in", + "name": "Najafgarh", + "display": "Najafgarh, Delhi, India" + }, + { + "slug": "nanded-maharashtra-in", + "name": "Nanded", + "display": "Nanded, Maharashtra, India" + }, + { + "slug": "narela-delhi-in", + "name": "Narela", + "display": "Narela, Delhi, India" + }, + { + "slug": "nashik-maharashtra-in", + "name": "Nashik", + "display": "Nashik, Maharashtra, India" + }, + { + "slug": "navi-mumbai-maharashtra-in", + "name": "Navi Mumbai", + "display": "Navi Mumbai, Maharashtra, India" + }, + { + "slug": "nellore-andhra-pradesh-in", + "name": "Nellore", + "display": "Nellore, Andhra Pradesh, India" + }, + { + "slug": "new-delhi-delhi-in", + "name": "New Delhi", + "display": "New Delhi, Delhi, India" + }, + { + "slug": "nizamabad-telangana-in", + "name": "Nizāmābād", + "display": "Nizāmābād, Telangana, India" + }, + { + "slug": "noida-uttar-pradesh-in", + "name": "Noida", + "display": "Noida, Uttar Pradesh, India" + }, + { + "slug": "nowrangapur-odisha-in", + "name": "Nowrangapur", + "display": "Nowrangapur, Odisha, India" + }, + { + "slug": "panipat-haryana-in", + "name": "Panipat", + "display": "Panipat, Haryana, India" + }, + { + "slug": "parbhani-maharashtra-in", + "name": "Parbhani", + "display": "Parbhani, Maharashtra, India" + }, + { + "slug": "patiala-punjab-in", + "name": "Patiāla", + "display": "Patiāla, Punjab, India" + }, + { + "slug": "patna-bihar-in", + "name": "Patna", + "display": "Patna, Bihar, India" + }, + { + "slug": "pimpri-maharashtra-in", + "name": "Pimpri", + "display": "Pimpri, Maharashtra, India" + }, + { + "slug": "pimpri-chinchwad-maharashtra-in", + "name": "Pimpri-Chinchwad", + "display": "Pimpri-Chinchwad, Maharashtra, India" + }, + { + "slug": "prayagraj-uttar-pradesh-in", + "name": "Prayagraj", + "display": "Prayagraj, Uttar Pradesh, India" + }, + { + "slug": "puducherry-in", + "name": "Puducherry", + "display": "Puducherry, India" + }, + { + "slug": "pune-maharashtra-in", + "name": "Pune", + "display": "Pune, Maharashtra, India" + }, + { + "slug": "punasa-madhya-pradesh-in", + "name": "Punāsa", + "display": "Punāsa, Madhya Pradesh, India" + }, + { + "slug": "purnia-bihar-in", + "name": "Purnia", + "display": "Purnia, Bihar, India" + }, + { + "slug": "panihati-west-bengal-in", + "name": "Pānihāti", + "display": "Pānihāti, West Bengal, India" + }, + { + "slug": "raipur-chhattisgarh-in", + "name": "Raipur", + "display": "Raipur, Chhattisgarh, India" + }, + { + "slug": "rajamahendravaram-andhra-pradesh-in", + "name": "Rajamahendravaram", + "display": "Rajamahendravaram, Andhra Pradesh, India" + }, + { + "slug": "rajpur-sonarpur-west-bengal-in", + "name": "Rajpur Sonarpur", + "display": "Rajpur Sonarpur, West Bengal, India" + }, + { + "slug": "ranchi-jharkhand-in", + "name": "Ranchi", + "display": "Ranchi, Jharkhand, India" + }, + { + "slug": "rasapudipalem-andhra-pradesh-in", + "name": "Rasapūdipalem", + "display": "Rasapūdipalem, Andhra Pradesh, India" + }, + { + "slug": "ratlam-madhya-pradesh-in", + "name": "Ratlām", + "display": "Ratlām, Madhya Pradesh, India" + }, + { + "slug": "rohini-delhi-in", + "name": "Rohini", + "display": "Rohini, Delhi, India" + }, + { + "slug": "rohtak-haryana-in", + "name": "Rohtak", + "display": "Rohtak, Haryana, India" + }, + { + "slug": "rourkela-odisha-in", + "name": "Rourkela", + "display": "Rourkela, Odisha, India" + }, + { + "slug": "rajkot-gujarat-in", + "name": "Rājkot", + "display": "Rājkot, Gujarat, India" + }, + { + "slug": "ramgundam-telangana-in", + "name": "Rāmgundam", + "display": "Rāmgundam, Telangana, India" + }, + { + "slug": "rampur-uttar-pradesh-in", + "name": "Rāmpur", + "display": "Rāmpur, Uttar Pradesh, India" + }, + { + "slug": "ranipet-tamil-nadu-in", + "name": "Rānipet", + "display": "Rānipet, Tamil Nadu, India" + }, + { + "slug": "saharanpur-uttar-pradesh-in", + "name": "Sahāranpur", + "display": "Sahāranpur, Uttar Pradesh, India" + }, + { + "slug": "salem-tamil-nadu-in", + "name": "Salem", + "display": "Salem, Tamil Nadu, India" + }, + { + "slug": "satna-madhya-pradesh-in", + "name": "Satna", + "display": "Satna, Madhya Pradesh, India" + }, + { + "slug": "saugor-madhya-pradesh-in", + "name": "Saugor", + "display": "Saugor, Madhya Pradesh, India" + }, + { + "slug": "shivaji-nagar-maharashtra-in", + "name": "Shivaji Nagar", + "display": "Shivaji Nagar, Maharashtra, India" + }, + { + "slug": "shivamogga-karnataka-in", + "name": "Shivamogga", + "display": "Shivamogga, Karnataka, India" + }, + { + "slug": "sholapur-maharashtra-in", + "name": "Sholapur", + "display": "Sholapur, Maharashtra, India" + }, + { + "slug": "shyamnagar-west-bengal-in", + "name": "Shyamnagar", + "display": "Shyamnagar, West Bengal, India" + }, + { + "slug": "shahjanpur-uttar-pradesh-in", + "name": "Shāhjānpur", + "display": "Shāhjānpur, Uttar Pradesh, India" + }, + { + "slug": "siliguri-west-bengal-in", + "name": "Siliguri", + "display": "Siliguri, West Bengal, India" + }, + { + "slug": "sonipat-haryana-in", + "name": "Sonīpat", + "display": "Sonīpat, Haryana, India" + }, + { + "slug": "srinagar-jammu-and-kashmir-in", + "name": "Srinagar", + "display": "Srinagar, Jammu and Kashmir, India" + }, + { + "slug": "surat-gujarat-in", + "name": "Surat", + "display": "Surat, Gujarat, India" + }, + { + "slug": "sangli-maharashtra-in", + "name": "Sāngli", + "display": "Sāngli, Maharashtra, India" + }, + { + "slug": "teni-tamil-nadu-in", + "name": "Teni", + "display": "Teni, Tamil Nadu, India" + }, + { + "slug": "thanjavur-tamil-nadu-in", + "name": "Thanjavur", + "display": "Thanjavur, Tamil Nadu, India" + }, + { + "slug": "thiruvananthapuram-kerala-in", + "name": "Thiruvananthapuram", + "display": "Thiruvananthapuram, Kerala, India" + }, + { + "slug": "thoothukudi-tamil-nadu-in", + "name": "Thoothukudi", + "display": "Thoothukudi, Tamil Nadu, India" + }, + { + "slug": "thrissur-kerala-in", + "name": "Thrissur", + "display": "Thrissur, Kerala, India" + }, + { + "slug": "thane-maharashtra-in", + "name": "Thāne", + "display": "Thāne, Maharashtra, India" + }, + { + "slug": "tiruchirappalli-tamil-nadu-in", + "name": "Tiruchirappalli", + "display": "Tiruchirappalli, Tamil Nadu, India" + }, + { + "slug": "tirunelveli-tamil-nadu-in", + "name": "Tirunelveli", + "display": "Tirunelveli, Tamil Nadu, India" + }, + { + "slug": "tirupati-andhra-pradesh-in", + "name": "Tirupati", + "display": "Tirupati, Andhra Pradesh, India" + }, + { + "slug": "tiruppur-tamil-nadu-in", + "name": "Tiruppur", + "display": "Tiruppur, Tamil Nadu, India" + }, + { + "slug": "tumkur-karnataka-in", + "name": "Tumkūr", + "display": "Tumkūr, Karnataka, India" + }, + { + "slug": "udaipur-rajasthan-in", + "name": "Udaipur", + "display": "Udaipur, Rajasthan, India" + }, + { + "slug": "ujjain-madhya-pradesh-in", + "name": "Ujjain", + "display": "Ujjain, Madhya Pradesh, India" + }, + { + "slug": "ulhasnagar-maharashtra-in", + "name": "Ulhasnagar", + "display": "Ulhasnagar, Maharashtra, India" + }, + { + "slug": "vadodara-gujarat-in", + "name": "Vadodara", + "display": "Vadodara, Gujarat, India" + }, + { + "slug": "varanasi-uttar-pradesh-in", + "name": "Varanasi", + "display": "Varanasi, Uttar Pradesh, India" + }, + { + "slug": "vellore-tamil-nadu-in", + "name": "Vellore", + "display": "Vellore, Tamil Nadu, India" + }, + { + "slug": "vijayapura-karnataka-in", + "name": "Vijayapura", + "display": "Vijayapura, Karnataka, India" + }, + { + "slug": "vijayawada-andhra-pradesh-in", + "name": "Vijayawada", + "display": "Vijayawada, Andhra Pradesh, India" + }, + { + "slug": "virar-maharashtra-in", + "name": "Virār", + "display": "Virār, Maharashtra, India" + }, + { + "slug": "visakhapatnam-andhra-pradesh-in", + "name": "Visakhapatnam", + "display": "Visakhapatnam, Andhra Pradesh, India" + }, + { + "slug": "warangal-telangana-in", + "name": "Warangal", + "display": "Warangal, Telangana, India" + }, + { + "slug": "asansol-west-bengal-in", + "name": "Āsansol", + "display": "Āsansol, West Bengal, India" + } + ] + }, + { + "country": "Indonesia", + "cities": [ + { + "slug": "bekasi-west-java-id", + "name": "Bekasi", + "display": "Bekasi, West Java, Indonesia" + }, + { + "slug": "jakarta-id", + "name": "Jakarta", + "display": "Jakarta, Indonesia" + }, + { + "slug": "surabaya-east-java-id", + "name": "Surabaya", + "display": "Surabaya, East Java, Indonesia" + } + ] + }, + { + "country": "Iran", + "cities": [ + { + "slug": "tehran-ir", + "name": "Tehran", + "display": "Tehran, Iran" + } + ] + }, + { + "country": "Iraq", + "cities": [ + { + "slug": "baghdad-iq", + "name": "Baghdad", + "display": "Baghdad, Iraq" + } + ] + }, + { + "country": "Ireland", + "cities": [ + { + "slug": "cork-munster-ie", + "name": "Cork", + "display": "Cork, Munster, Ireland" + }, + { + "slug": "dublin-leinster-ie", + "name": "Dublin", + "display": "Dublin, Leinster, Ireland" + }, + { + "slug": "south-dublin-leinster-ie", + "name": "South Dublin", + "display": "South Dublin, Leinster, Ireland" + } + ] + }, + { + "country": "Israel", + "cities": [ + { + "slug": "haifa-il", + "name": "Haifa", + "display": "Haifa, Israel" + }, + { + "slug": "jerusalem-il", + "name": "Jerusalem", + "display": "Jerusalem, Israel" + }, + { + "slug": "petah-tiqva-central-district-il", + "name": "Petaẖ Tiqva", + "display": "Petaẖ Tiqva, Central District, Israel" + }, + { + "slug": "rishon-letsiyyon-central-district-il", + "name": "Rishon LeTsiyyon", + "display": "Rishon LeTsiyyon, Central District, Israel" + }, + { + "slug": "tel-aviv-il", + "name": "Tel Aviv", + "display": "Tel Aviv, Israel" + }, + { + "slug": "west-jerusalem-jerusalem-il", + "name": "West Jerusalem", + "display": "West Jerusalem, Jerusalem, Israel" + } + ] + }, + { + "country": "Italy", + "cities": [ + { + "slug": "milan-lombardy-it", + "name": "Milan", + "display": "Milan, Lombardy, Italy" + }, + { + "slug": "naples-campania-it", + "name": "Naples", + "display": "Naples, Campania, Italy" + }, + { + "slug": "rome-lazio-it", + "name": "Rome", + "display": "Rome, Lazio, Italy" + }, + { + "slug": "turin-piedmont-it", + "name": "Turin", + "display": "Turin, Piedmont, Italy" + } + ] + }, + { + "country": "Ivory Coast", + "cities": [ + { + "slug": "abidjan-abidjan-autonomous-district-ci", + "name": "Abidjan", + "display": "Abidjan, Abidjan Autonomous District, Ivory Coast" + }, + { + "slug": "abobo-abidjan-autonomous-district-ci", + "name": "Abobo", + "display": "Abobo, Abidjan Autonomous District, Ivory Coast" + }, + { + "slug": "bouake-vallee-du-bandama-district-ci", + "name": "Bouaké", + "display": "Bouaké, Vallée du Bandama District, Ivory Coast" + } + ] + }, + { + "country": "Jamaica", + "cities": [ + { + "slug": "kingston-jm", + "name": "Kingston", + "display": "Kingston, Jamaica" + } + ] + }, + { + "country": "Japan", + "cities": [ + { + "slug": "adachi-tokyo-jp", + "name": "Adachi", + "display": "Adachi, Tokyo, Japan" + }, + { + "slug": "aihara-kanagawa-jp", + "name": "Aihara", + "display": "Aihara, Kanagawa, Japan" + }, + { + "slug": "chiba-jp", + "name": "Chiba", + "display": "Chiba, Japan" + }, + { + "slug": "edogawe-tokyo-jp", + "name": "Edogawe", + "display": "Edogawe, Tokyo, Japan" + }, + { + "slug": "fukuoka-jp", + "name": "Fukuoka", + "display": "Fukuoka, Japan" + }, + { + "slug": "hamamatsu-shizuoka-jp", + "name": "Hamamatsu", + "display": "Hamamatsu, Shizuoka, Japan" + }, + { + "slug": "hiroshima-jp", + "name": "Hiroshima", + "display": "Hiroshima, Japan" + }, + { + "slug": "kawasaki-kanagawa-jp", + "name": "Kawasaki", + "display": "Kawasaki, Kanagawa, Japan" + }, + { + "slug": "kitakyushu-fukuoka-jp", + "name": "Kitakyushu", + "display": "Kitakyushu, Fukuoka, Japan" + }, + { + "slug": "kobe-hyogo-jp", + "name": "Kobe", + "display": "Kobe, Hyōgo, Japan" + }, + { + "slug": "kumamoto-jp", + "name": "Kumamoto", + "display": "Kumamoto, Japan" + }, + { + "slug": "kyoto-jp", + "name": "Kyoto", + "display": "Kyoto, Japan" + }, + { + "slug": "nagoya-aichi-jp", + "name": "Nagoya", + "display": "Nagoya, Aichi, Japan" + }, + { + "slug": "niigata-jp", + "name": "Niigata", + "display": "Niigata, Japan" + }, + { + "slug": "okayama-jp", + "name": "Okayama", + "display": "Okayama, Japan" + }, + { + "slug": "osaka-jp", + "name": "Osaka", + "display": "Osaka, Japan" + }, + { + "slug": "sagamihara-kanagawa-jp", + "name": "Sagamihara", + "display": "Sagamihara, Kanagawa, Japan" + }, + { + "slug": "saitama-jp", + "name": "Saitama", + "display": "Saitama, Japan" + }, + { + "slug": "sakai-osaka-jp", + "name": "Sakai", + "display": "Sakai, Osaka, Japan" + }, + { + "slug": "sapporo-hokkaido-jp", + "name": "Sapporo", + "display": "Sapporo, Hokkaido, Japan" + }, + { + "slug": "sendai-miyagi-jp", + "name": "Sendai", + "display": "Sendai, Miyagi, Japan" + }, + { + "slug": "setagaya-tokyo-jp", + "name": "Setagaya", + "display": "Setagaya, Tokyo, Japan" + }, + { + "slug": "shizuoka-jp", + "name": "Shizuoka", + "display": "Shizuoka, Japan" + }, + { + "slug": "tokyo-jp", + "name": "Tokyo", + "display": "Tokyo, Japan" + }, + { + "slug": "yokohama-kanagawa-jp", + "name": "Yokohama", + "display": "Yokohama, Kanagawa, Japan" + }, + { + "slug": "ota-tokyo-jp", + "name": "Ōta", + "display": "Ōta, Tokyo, Japan" + } + ] + }, + { + "country": "Jordan", + "cities": [ + { + "slug": "amman-jo", + "name": "Amman", + "display": "Amman, Jordan" + }, + { + "slug": "zarqa-jo", + "name": "Zarqa", + "display": "Zarqa, Jordan" + } + ] + }, + { + "country": "Kazakhstan", + "cities": [ + { + "slug": "almaty-kz", + "name": "Almaty", + "display": "Almaty, Kazakhstan" + }, + { + "slug": "astana-kz", + "name": "Astana", + "display": "Astana, Kazakhstan" + }, + { + "slug": "shymkent-kz", + "name": "Shymkent", + "display": "Shymkent, Kazakhstan" + } + ] + }, + { + "country": "Kenya", + "cities": [ + { + "slug": "mombasa-mombasa-county-ke", + "name": "Mombasa", + "display": "Mombasa, Mombasa County, Kenya" + }, + { + "slug": "nairobi-nairobi-county-ke", + "name": "Nairobi", + "display": "Nairobi, Nairobi County, Kenya" + } + ] + }, + { + "country": "Kyrgyzstan", + "cities": [ + { + "slug": "bishkek-kg", + "name": "Bishkek", + "display": "Bishkek, Kyrgyzstan" + } + ] + }, + { + "country": "Laos", + "cities": [ + { + "slug": "vientiane-vientiane-prefecture-la", + "name": "Vientiane", + "display": "Vientiane, Vientiane Prefecture, Laos" + } + ] + }, + { + "country": "Latvia", + "cities": [ + { + "slug": "riga-lv", + "name": "Riga", + "display": "Riga, Latvia" + } + ] + }, + { + "country": "Lebanon", + "cities": [ + { + "slug": "beirut-lb", + "name": "Beirut", + "display": "Beirut, Lebanon" + }, + { + "slug": "ras-bayrut-beirut-lb", + "name": "Ra’s Bayrūt", + "display": "Ra’s Bayrūt, Beirut, Lebanon" + } + ] + }, + { + "country": "Lesotho", + "cities": [ + { + "slug": "maseru-maseru-district-ls", + "name": "Maseru", + "display": "Maseru, Maseru District, Lesotho" + } + ] + }, + { + "country": "Lithuania", + "cities": [ + { + "slug": "kaunas-lt", + "name": "Kaunas", + "display": "Kaunas, Lithuania" + }, + { + "slug": "vilnius-lt", + "name": "Vilnius", + "display": "Vilnius, Lithuania" + } + ] + }, + { + "country": "Madagascar", + "cities": [ + { + "slug": "antananarivo-analamanga-mg", + "name": "Antananarivo", + "display": "Antananarivo, Analamanga, Madagascar" + } + ] + }, + { + "country": "Malaysia", + "cities": [ + { + "slug": "kota-kinabalu-sabah-my", + "name": "Kota Kinabalu", + "display": "Kota Kinabalu, Sabah, Malaysia" + }, + { + "slug": "kuala-lumpur-my", + "name": "Kuala Lumpur", + "display": "Kuala Lumpur, Malaysia" + }, + { + "slug": "kuching-sarawak-my", + "name": "Kuching", + "display": "Kuching, Sarawak, Malaysia" + }, + { + "slug": "malacca-melaka-my", + "name": "Malacca", + "display": "Malacca, Melaka, Malaysia" + } + ] + }, + { + "country": "Mali", + "cities": [ + { + "slug": "bamako-ml", + "name": "Bamako", + "display": "Bamako, Mali" + } + ] + }, + { + "country": "Mexico", + "cities": [ + { + "slug": "acapulco-de-juarez-guerrero-mx", + "name": "Acapulco de Juárez", + "display": "Acapulco de Juárez, Guerrero, Mexico" + }, + { + "slug": "aguascalientes-mx", + "name": "Aguascalientes", + "display": "Aguascalientes, Mexico" + }, + { + "slug": "cancun-quintana-roo-mx", + "name": "Cancún", + "display": "Cancún, Quintana Roo, Mexico" + }, + { + "slug": "chihuahua-mx", + "name": "Chihuahua", + "display": "Chihuahua, Mexico" + }, + { + "slug": "ciudad-juarez-chihuahua-mx", + "name": "Ciudad Juárez", + "display": "Ciudad Juárez, Chihuahua, Mexico" + }, + { + "slug": "ciudad-nezahualcoyotl-mexico-mx", + "name": "Ciudad Nezahualcoyotl", + "display": "Ciudad Nezahualcoyotl, México, Mexico" + }, + { + "slug": "culiacan-sinaloa-mx", + "name": "Culiacán", + "display": "Culiacán, Sinaloa, Mexico" + }, + { + "slug": "ecatepec-de-morelos-mexico-mx", + "name": "Ecatepec de Morelos", + "display": "Ecatepec de Morelos, México, Mexico" + }, + { + "slug": "guadalajara-jalisco-mx", + "name": "Guadalajara", + "display": "Guadalajara, Jalisco, Mexico" + }, + { + "slug": "guadalupe-nuevo-leon-mx", + "name": "Guadalupe", + "display": "Guadalupe, Nuevo León, Mexico" + }, + { + "slug": "gustavo-adolfo-madero-mexico-city-mx", + "name": "Gustavo Adolfo Madero", + "display": "Gustavo Adolfo Madero, Mexico City, Mexico" + }, + { + "slug": "hermosillo-sonora-mx", + "name": "Hermosillo", + "display": "Hermosillo, Sonora, Mexico" + }, + { + "slug": "iztapalapa-mexico-city-mx", + "name": "Iztapalapa", + "display": "Iztapalapa, Mexico City, Mexico" + }, + { + "slug": "leon-de-los-aldama-guanajuato-mx", + "name": "León de los Aldama", + "display": "León de los Aldama, Guanajuato, Mexico" + }, + { + "slug": "mexicali-baja-california-mx", + "name": "Mexicali", + "display": "Mexicali, Baja California, Mexico" + }, + { + "slug": "mexico-city-mx", + "name": "Mexico City", + "display": "Mexico City, Mexico" + }, + { + "slug": "monterrey-nuevo-leon-mx", + "name": "Monterrey", + "display": "Monterrey, Nuevo León, Mexico" + }, + { + "slug": "morelia-michoacan-mx", + "name": "Morelia", + "display": "Morelia, Michoacán, Mexico" + }, + { + "slug": "merida-yucatan-mx", + "name": "Mérida", + "display": "Mérida, Yucatán, Mexico" + }, + { + "slug": "naucalpan-de-juarez-mexico-mx", + "name": "Naucalpan de Juárez", + "display": "Naucalpan de Juárez, México, Mexico" + }, + { + "slug": "puebla-mx", + "name": "Puebla", + "display": "Puebla, Mexico" + }, + { + "slug": "saltillo-coahuila-mx", + "name": "Saltillo", + "display": "Saltillo, Coahuila, Mexico" + }, + { + "slug": "san-luis-potosi-mx", + "name": "San Luis Potosí", + "display": "San Luis Potosí, Mexico" + }, + { + "slug": "santiago-de-queretaro-queretaro-mx", + "name": "Santiago de Querétaro", + "display": "Santiago de Querétaro, Querétaro, Mexico" + }, + { + "slug": "tijuana-baja-california-mx", + "name": "Tijuana", + "display": "Tijuana, Baja California, Mexico" + }, + { + "slug": "tlalnepantla-mexico-mx", + "name": "Tlalnepantla", + "display": "Tlalnepantla, México, Mexico" + }, + { + "slug": "torreon-coahuila-mx", + "name": "Torreón", + "display": "Torreón, Coahuila, Mexico" + }, + { + "slug": "zapopan-jalisco-mx", + "name": "Zapopan", + "display": "Zapopan, Jalisco, Mexico" + }, + { + "slug": "alvaro-obregon-mexico-city-mx", + "name": "Álvaro Obregón", + "display": "Álvaro Obregón, Mexico City, Mexico" + } + ] + }, + { + "country": "Mongolia", + "cities": [ + { + "slug": "ulan-bator-ulaanbaatar-mn", + "name": "Ulan Bator", + "display": "Ulan Bator, Ulaanbaatar, Mongolia" + } + ] + }, + { + "country": "Morocco", + "cities": [ + { + "slug": "casablanca-casablanca-settat-ma", + "name": "Casablanca", + "display": "Casablanca, Casablanca-Settat, Morocco" + }, + { + "slug": "fes-fes-meknes-ma", + "name": "Fes", + "display": "Fes, Fes-Meknes, Morocco" + }, + { + "slug": "rabat-rabat-sale-kenitra-ma", + "name": "Rabat", + "display": "Rabat, Rabat-Salé-Kénitra, Morocco" + } + ] + }, + { + "country": "Mozambique", + "cities": [ + { + "slug": "beira-sofala-mz", + "name": "Beira", + "display": "Beira, Sofala, Mozambique" + }, + { + "slug": "maputo-maputo-city-mz", + "name": "Maputo", + "display": "Maputo, Maputo City, Mozambique" + }, + { + "slug": "matola-maputo-province-mz", + "name": "Matola", + "display": "Matola, Maputo Province, Mozambique" + }, + { + "slug": "nampula-mz", + "name": "Nampula", + "display": "Nampula, Mozambique" + } + ] + }, + { + "country": "Myanmar", + "cities": [ + { + "slug": "yangon-mm", + "name": "Yangon", + "display": "Yangon, Myanmar" + } + ] + }, + { + "country": "Namibia", + "cities": [ + { + "slug": "windhoek-khomas-region-na", + "name": "Windhoek", + "display": "Windhoek, Khomas Region, Namibia" + } + ] + }, + { + "country": "Nepal", + "cities": [ + { + "slug": "kathmandu-bagmati-province-np", + "name": "Kathmandu", + "display": "Kathmandu, Bagmati Province, Nepal" + } + ] + }, + { + "country": "New Zealand", + "cities": [ + { + "slug": "auckland-nz", + "name": "Auckland", + "display": "Auckland, New Zealand" + }, + { + "slug": "christchurch-canterbury-nz", + "name": "Christchurch", + "display": "Christchurch, Canterbury, New Zealand" + }, + { + "slug": "hamilton-waikato-region-nz", + "name": "Hamilton", + "display": "Hamilton, Waikato Region, New Zealand" + }, + { + "slug": "manukau-city-auckland-nz", + "name": "Manukau City", + "display": "Manukau City, Auckland, New Zealand" + }, + { + "slug": "north-shore-auckland-nz", + "name": "North Shore", + "display": "North Shore, Auckland, New Zealand" + }, + { + "slug": "wellington-wellington-region-nz", + "name": "Wellington", + "display": "Wellington, Wellington Region, New Zealand" + } + ] + }, + { + "country": "Nicaragua", + "cities": [ + { + "slug": "managua-managua-department-ni", + "name": "Managua", + "display": "Managua, Managua Department, Nicaragua" + } + ] + }, + { + "country": "Niger", + "cities": [ + { + "slug": "niamey-ne", + "name": "Niamey", + "display": "Niamey, Niger" + } + ] + }, + { + "country": "Nigeria", + "cities": [ + { + "slug": "abuja-fct-ng", + "name": "Abuja", + "display": "Abuja, FCT, Nigeria" + }, + { + "slug": "lagos-ng", + "name": "Lagos", + "display": "Lagos, Nigeria" + } + ] + }, + { + "country": "North Korea", + "cities": [ + { + "slug": "pyongyang-kp", + "name": "Pyongyang", + "display": "Pyongyang, North Korea" + } + ] + }, + { + "country": "Norway", + "cities": [ + { + "slug": "bergen-vestland-no", + "name": "Bergen", + "display": "Bergen, Vestland, Norway" + }, + { + "slug": "oslo-no", + "name": "Oslo", + "display": "Oslo, Norway" + } + ] + }, + { + "country": "Pakistan", + "cities": [ + { + "slug": "faisalabad-punjab-pk", + "name": "Faisalabad", + "display": "Faisalabad, Punjab, Pakistan" + }, + { + "slug": "hyderabad-sindh-pk", + "name": "Hyderabad", + "display": "Hyderabad, Sindh, Pakistan" + }, + { + "slug": "islamabad-pk", + "name": "Islamabad", + "display": "Islamabad, Pakistan" + }, + { + "slug": "karachi-sindh-pk", + "name": "Karachi", + "display": "Karachi, Sindh, Pakistan" + }, + { + "slug": "lahore-punjab-pk", + "name": "Lahore", + "display": "Lahore, Punjab, Pakistan" + }, + { + "slug": "multan-punjab-pk", + "name": "Multan", + "display": "Multan, Punjab, Pakistan" + }, + { + "slug": "rawalpindi-punjab-pk", + "name": "Rawalpindi", + "display": "Rawalpindi, Punjab, Pakistan" + } + ] + }, + { + "country": "Papua New Guinea", + "cities": [ + { + "slug": "port-moresby-national-capital-pg", + "name": "Port Moresby", + "display": "Port Moresby, National Capital, Papua New Guinea" + } + ] + }, + { + "country": "Paraguay", + "cities": [ + { + "slug": "asuncion-py", + "name": "Asunción", + "display": "Asunción, Asuncion, Paraguay" + } + ] + }, + { + "country": "Peru", + "cities": [ + { + "slug": "arequipa-pe", + "name": "Arequipa", + "display": "Arequipa, Peru" + }, + { + "slug": "callao-pe", + "name": "Callao", + "display": "Callao, Peru" + }, + { + "slug": "lima-lima-province-pe", + "name": "Lima", + "display": "Lima, Lima Province, Peru" + }, + { + "slug": "trujillo-la-libertad-pe", + "name": "Trujillo", + "display": "Trujillo, La Libertad, Peru" + } + ] + }, + { + "country": "Philippines", + "cities": [ + { + "slug": "angeles-city-central-luzon-ph", + "name": "Angeles City", + "display": "Angeles City, Central Luzon, Philippines" + }, + { + "slug": "antipolo-calabarzon-ph", + "name": "Antipolo", + "display": "Antipolo, Calabarzon, Philippines" + }, + { + "slug": "bacolod-city-western-visayas-ph", + "name": "Bacolod City", + "display": "Bacolod City, Western Visayas, Philippines" + }, + { + "slug": "bacoor-calabarzon-ph", + "name": "Bacoor", + "display": "Bacoor, Calabarzon, Philippines" + }, + { + "slug": "bagong-silang-national-capital-region-ph", + "name": "Bagong Silang", + "display": "Bagong Silang, National Capital Region, Philippines" + }, + { + "slug": "baguio-cordillera-ph", + "name": "Baguio", + "display": "Baguio, Cordillera, Philippines" + }, + { + "slug": "binan-calabarzon-ph", + "name": "Biñan", + "display": "Biñan, Calabarzon, Philippines" + }, + { + "slug": "budta-autonomous-region-in-muslim-mindanao-ph", + "name": "Budta", + "display": "Budta, Autonomous Region in Muslim Mindanao, Philippines" + }, + { + "slug": "butuan-caraga-ph", + "name": "Butuan", + "display": "Butuan, Caraga, Philippines" + }, + { + "slug": "cabanatuan-city-central-luzon-ph", + "name": "Cabanatuan City", + "display": "Cabanatuan City, Central Luzon, Philippines" + }, + { + "slug": "cabuyao-calabarzon-ph", + "name": "Cabuyao", + "display": "Cabuyao, Calabarzon, Philippines" + }, + { + "slug": "cagayan-de-oro-northern-mindanao-ph", + "name": "Cagayan de Oro", + "display": "Cagayan de Oro, Northern Mindanao, Philippines" + }, + { + "slug": "cainta-calabarzon-ph", + "name": "Cainta", + "display": "Cainta, Calabarzon, Philippines" + }, + { + "slug": "calamba-calabarzon-ph", + "name": "Calamba", + "display": "Calamba, Calabarzon, Philippines" + }, + { + "slug": "caloocan-national-capital-region-ph", + "name": "Caloocan", + "display": "Caloocan, National Capital Region, Philippines" + }, + { + "slug": "cebu-city-central-visayas-ph", + "name": "Cebu City", + "display": "Cebu City, Central Visayas, Philippines" + }, + { + "slug": "cotabato-autonomous-region-in-muslim-mindanao-ph", + "name": "Cotabato", + "display": "Cotabato, Autonomous Region in Muslim Mindanao, Philippines" + }, + { + "slug": "dasmarinas-calabarzon-ph", + "name": "Dasmariñas", + "display": "Dasmariñas, Calabarzon, Philippines" + }, + { + "slug": "davao-davao-region-ph", + "name": "Davao", + "display": "Davao, Davao Region, Philippines" + }, + { + "slug": "general-santos-soccsksargen-ph", + "name": "General Santos", + "display": "General Santos, Soccsksargen, Philippines" + }, + { + "slug": "iligan-northern-mindanao-ph", + "name": "Iligan", + "display": "Iligan, Northern Mindanao, Philippines" + }, + { + "slug": "iligan-city-soccsksargen-ph", + "name": "Iligan City", + "display": "Iligan City, Soccsksargen, Philippines" + }, + { + "slug": "iloilo-western-visayas-ph", + "name": "Iloilo", + "display": "Iloilo, Western Visayas, Philippines" + }, + { + "slug": "imus-calabarzon-ph", + "name": "Imus", + "display": "Imus, Calabarzon, Philippines" + }, + { + "slug": "lapu-lapu-city-central-visayas-ph", + "name": "Lapu-Lapu City", + "display": "Lapu-Lapu City, Central Visayas, Philippines" + }, + { + "slug": "las-pinas-national-capital-region-ph", + "name": "Las Piñas", + "display": "Las Piñas, National Capital Region, Philippines" + }, + { + "slug": "makati-city-national-capital-region-ph", + "name": "Makati City", + "display": "Makati City, National Capital Region, Philippines" + }, + { + "slug": "malabon-national-capital-region-ph", + "name": "Malabon", + "display": "Malabon, National Capital Region, Philippines" + }, + { + "slug": "malingao-soccsksargen-ph", + "name": "Malingao", + "display": "Malingao, Soccsksargen, Philippines" + }, + { + "slug": "malolos-central-luzon-ph", + "name": "Malolos", + "display": "Malolos, Central Luzon, Philippines" + }, + { + "slug": "mandaluyong-national-capital-region-ph", + "name": "Mandaluyong", + "display": "Mandaluyong, National Capital Region, Philippines" + }, + { + "slug": "mandaluyong-city-national-capital-region-ph", + "name": "Mandaluyong City", + "display": "Mandaluyong City, National Capital Region, Philippines" + }, + { + "slug": "mandaue-city-central-visayas-ph", + "name": "Mandaue City", + "display": "Mandaue City, Central Visayas, Philippines" + }, + { + "slug": "manila-national-capital-region-ph", + "name": "Manila", + "display": "Manila, National Capital Region, Philippines" + }, + { + "slug": "mansilingan-western-visayas-ph", + "name": "Mansilingan", + "display": "Mansilingan, Western Visayas, Philippines" + }, + { + "slug": "mantampay-northern-mindanao-ph", + "name": "Mantampay", + "display": "Mantampay, Northern Mindanao, Philippines" + }, + { + "slug": "marawi-city-autonomous-region-in-muslim-mindanao-ph", + "name": "Marawi City", + "display": "Marawi City, Autonomous Region in Muslim Mindanao, Philippines" + }, + { + "slug": "marikina-city-national-capital-region-ph", + "name": "Marikina City", + "display": "Marikina City, National Capital Region, Philippines" + }, + { + "slug": "muntinlupa-calabarzon-ph", + "name": "Muntinlupa", + "display": "Muntinlupa, Calabarzon, Philippines" + }, + { + "slug": "paranaque-city-national-capital-region-ph", + "name": "Paranaque City", + "display": "Paranaque City, National Capital Region, Philippines" + }, + { + "slug": "pasay-national-capital-region-ph", + "name": "Pasay", + "display": "Pasay, National Capital Region, Philippines" + }, + { + "slug": "pasig-city-national-capital-region-ph", + "name": "Pasig City", + "display": "Pasig City, National Capital Region, Philippines" + }, + { + "slug": "quezon-city-national-capital-region-ph", + "name": "Quezon City", + "display": "Quezon City, National Capital Region, Philippines" + }, + { + "slug": "san-jose-del-monte-central-luzon-ph", + "name": "San Jose del Monte", + "display": "San Jose del Monte, Central Luzon, Philippines" + }, + { + "slug": "san-pablo-calabarzon-ph", + "name": "San Pablo", + "display": "San Pablo, Calabarzon, Philippines" + }, + { + "slug": "san-pedro-calabarzon-ph", + "name": "San Pedro", + "display": "San Pedro, Calabarzon, Philippines" + }, + { + "slug": "santol-central-luzon-ph", + "name": "Santol", + "display": "Santol, Central Luzon, Philippines" + }, + { + "slug": "tacloban-eastern-visayas-ph", + "name": "Tacloban", + "display": "Tacloban, Eastern Visayas, Philippines" + }, + { + "slug": "taguig-national-capital-region-ph", + "name": "Taguig", + "display": "Taguig, National Capital Region, Philippines" + }, + { + "slug": "tarlac-city-central-luzon-ph", + "name": "Tarlac City", + "display": "Tarlac City, Central Luzon, Philippines" + }, + { + "slug": "valenzuela-national-capital-region-ph", + "name": "Valenzuela", + "display": "Valenzuela, National Capital Region, Philippines" + }, + { + "slug": "zamboanga-zamboanga-peninsula-ph", + "name": "Zamboanga", + "display": "Zamboanga, Zamboanga Peninsula, Philippines" + } + ] + }, + { + "country": "Poland", + "cities": [ + { + "slug": "krakow-lesser-poland-pl", + "name": "Kraków", + "display": "Kraków, Lesser Poland, Poland" + }, + { + "slug": "warsaw-mazovia-pl", + "name": "Warsaw", + "display": "Warsaw, Mazovia, Poland" + }, + { + "slug": "wrocaw-lower-silesia-pl", + "name": "Wrocław", + "display": "Wrocław, Lower Silesia, Poland" + } + ] + }, + { + "country": "Republic of the Congo", + "cities": [ + { + "slug": "brazzaville-cg", + "name": "Brazzaville", + "display": "Brazzaville, Republic of the Congo" + }, + { + "slug": "pointe-noire-cg", + "name": "Pointe-Noire", + "display": "Pointe-Noire, Republic of the Congo" + } + ] + }, + { + "country": "Romania", + "cities": [ + { + "slug": "bucharest-ro", + "name": "Bucharest", + "display": "Bucharest, Romania" + } + ] + }, + { + "country": "Russia", + "cities": [ + { + "slug": "chelyabinsk-ru", + "name": "Chelyabinsk", + "display": "Chelyabinsk, Russia" + }, + { + "slug": "kazan-tatarstan-republic-ru", + "name": "Kazan", + "display": "Kazan, Tatarstan Republic, Russia" + }, + { + "slug": "krasnodar-krasnodar-krai-ru", + "name": "Krasnodar", + "display": "Krasnodar, Krasnodar Krai, Russia" + }, + { + "slug": "krasnoyarsk-krasnoyarsk-krai-ru", + "name": "Krasnoyarsk", + "display": "Krasnoyarsk, Krasnoyarsk Krai, Russia" + }, + { + "slug": "moscow-ru", + "name": "Moscow", + "display": "Moscow, Russia" + }, + { + "slug": "nizhniy-novgorod-nizhny-novgorod-oblast-ru", + "name": "Nizhniy Novgorod", + "display": "Nizhniy Novgorod, Nizhny Novgorod Oblast, Russia" + }, + { + "slug": "novosibirsk-novosibirsk-oblast-ru", + "name": "Novosibirsk", + "display": "Novosibirsk, Novosibirsk Oblast, Russia" + }, + { + "slug": "omsk-omsk-oblast-ru", + "name": "Omsk", + "display": "Omsk, Omsk Oblast, Russia" + }, + { + "slug": "perm-perm-krai-ru", + "name": "Perm", + "display": "Perm, Perm Krai, Russia" + }, + { + "slug": "rostov-on-don-rostov-ru", + "name": "Rostov-on-Don", + "display": "Rostov-on-Don, Rostov, Russia" + }, + { + "slug": "saint-petersburg-st-petersburg-ru", + "name": "Saint Petersburg", + "display": "Saint Petersburg, St.-Petersburg, Russia" + }, + { + "slug": "samara-samara-oblast-ru", + "name": "Samara", + "display": "Samara, Samara Oblast, Russia" + }, + { + "slug": "saratov-saratov-oblast-ru", + "name": "Saratov", + "display": "Saratov, Saratov Oblast, Russia" + }, + { + "slug": "tolyatti-samara-oblast-ru", + "name": "Tolyatti", + "display": "Tolyatti, Samara Oblast, Russia" + }, + { + "slug": "tyumen-tyumen-oblast-ru", + "name": "Tyumen", + "display": "Tyumen, Tyumen Oblast, Russia" + }, + { + "slug": "ufa-bashkortostan-republic-ru", + "name": "Ufa", + "display": "Ufa, Bashkortostan Republic, Russia" + }, + { + "slug": "volgograd-volgograd-oblast-ru", + "name": "Volgograd", + "display": "Volgograd, Volgograd Oblast, Russia" + }, + { + "slug": "voronezh-voronezh-oblast-ru", + "name": "Voronezh", + "display": "Voronezh, Voronezh Oblast, Russia" + }, + { + "slug": "yekaterinburg-sverdlovsk-oblast-ru", + "name": "Yekaterinburg", + "display": "Yekaterinburg, Sverdlovsk Oblast, Russia" + } + ] + }, + { + "country": "Rwanda", + "cities": [ + { + "slug": "kigali-rw", + "name": "Kigali", + "display": "Kigali, Rwanda" + } + ] + }, + { + "country": "Saudi Arabia", + "cities": [ + { + "slug": "jeddah-mecca-region-sa", + "name": "Jeddah", + "display": "Jeddah, Mecca Region, Saudi Arabia" + } + ] + }, + { + "country": "Senegal", + "cities": [ + { + "slug": "dakar-sn", + "name": "Dakar", + "display": "Dakar, Senegal" + } + ] + }, + { + "country": "Serbia", + "cities": [ + { + "slug": "belgrade-central-serbia-rs", + "name": "Belgrade", + "display": "Belgrade, Central Serbia, Serbia" + } + ] + }, + { + "country": "Singapore", + "cities": [ + { + "slug": "bedok-new-town-sg", + "name": "Bedok New Town", + "display": "Bedok New Town, Singapore" + }, + { + "slug": "jurong-town-sg", + "name": "Jurong Town", + "display": "Jurong Town, Singapore" + }, + { + "slug": "jurong-west-sg", + "name": "Jurong West", + "display": "Jurong West, Singapore" + }, + { + "slug": "sengkang-new-town-sg", + "name": "Sengkang New Town", + "display": "Sengkang New Town, Singapore" + }, + { + "slug": "singapore-sg", + "name": "Singapore", + "display": "Singapore, Singapore" + }, + { + "slug": "tampines-estate-sg", + "name": "Tampines Estate", + "display": "Tampines Estate, Singapore" + }, + { + "slug": "tampines-new-town-sg", + "name": "Tampines New Town", + "display": "Tampines New Town, Singapore" + }, + { + "slug": "ulu-bedok-sg", + "name": "Ulu Bedok", + "display": "Ulu Bedok, Singapore" + }, + { + "slug": "woodlands-sg", + "name": "Woodlands", + "display": "Woodlands, Singapore" + } + ] + }, + { + "country": "Slovenia", + "cities": [ + { + "slug": "ljubljana-si", + "name": "Ljubljana", + "display": "Ljubljana, Slovenia" + } + ] + }, + { + "country": "Somalia", + "cities": [ + { + "slug": "mogadishu-banaadir-so", + "name": "Mogadishu", + "display": "Mogadishu, Banaadir, Somalia" + } + ] + }, + { + "country": "South Africa", + "cities": [ + { + "slug": "alexandra-gauteng-za", + "name": "Alexandra", + "display": "Alexandra, Gauteng, South Africa" + }, + { + "slug": "athlone-western-cape-za", + "name": "Athlone", + "display": "Athlone, Western Cape, South Africa" + }, + { + "slug": "benoni-gauteng-za", + "name": "Benoni", + "display": "Benoni, Gauteng, South Africa" + }, + { + "slug": "bloemfontein-free-state-za", + "name": "Bloemfontein", + "display": "Bloemfontein, Free State, South Africa" + }, + { + "slug": "boksburg-gauteng-za", + "name": "Boksburg", + "display": "Boksburg, Gauteng, South Africa" + }, + { + "slug": "botshabelo-free-state-za", + "name": "Botshabelo", + "display": "Botshabelo, Free State, South Africa" + }, + { + "slug": "brakpan-gauteng-za", + "name": "Brakpan", + "display": "Brakpan, Gauteng, South Africa" + }, + { + "slug": "cape-town-western-cape-za", + "name": "Cape Town", + "display": "Cape Town, Western Cape, South Africa" + }, + { + "slug": "carletonville-gauteng-za", + "name": "Carletonville", + "display": "Carletonville, Gauteng, South Africa" + }, + { + "slug": "centurion-gauteng-za", + "name": "Centurion", + "display": "Centurion, Gauteng, South Africa" + }, + { + "slug": "diepsloot-gauteng-za", + "name": "Diepsloot", + "display": "Diepsloot, Gauteng, South Africa" + }, + { + "slug": "durban-kwazulu-natal-za", + "name": "Durban", + "display": "Durban, KwaZulu-Natal, South Africa" + }, + { + "slug": "east-london-eastern-cape-za", + "name": "East London", + "display": "East London, Eastern Cape, South Africa" + }, + { + "slug": "emalahleni-mpumalanga-za", + "name": "Emalahleni", + "display": "Emalahleni, Mpumalanga, South Africa" + }, + { + "slug": "evaton-gauteng-za", + "name": "Evaton", + "display": "Evaton, Gauteng, South Africa" + }, + { + "slug": "george-western-cape-za", + "name": "George", + "display": "George, Western Cape, South Africa" + }, + { + "slug": "germiston-gauteng-za", + "name": "Germiston", + "display": "Germiston, Gauteng, South Africa" + }, + { + "slug": "gqeberha-eastern-cape-za", + "name": "Gqeberha", + "display": "Gqeberha, Eastern Cape, South Africa" + }, + { + "slug": "ivory-park-gauteng-za", + "name": "Ivory Park", + "display": "Ivory Park, Gauteng, South Africa" + }, + { + "slug": "johannesburg-gauteng-za", + "name": "Johannesburg", + "display": "Johannesburg, Gauteng, South Africa" + }, + { + "slug": "kariega-eastern-cape-za", + "name": "Kariega", + "display": "Kariega, Eastern Cape, South Africa" + }, + { + "slug": "klerksdorp-north-west-za", + "name": "Klerksdorp", + "display": "Klerksdorp, North West, South Africa" + }, + { + "slug": "krugersdorp-gauteng-za", + "name": "Krugersdorp", + "display": "Krugersdorp, Gauteng, South Africa" + }, + { + "slug": "mdantsane-eastern-cape-za", + "name": "Mdantsane", + "display": "Mdantsane, Eastern Cape, South Africa" + }, + { + "slug": "middelburg-mpumalanga-za", + "name": "Middelburg", + "display": "Middelburg, Mpumalanga, South Africa" + }, + { + "slug": "newcastle-kwazulu-natal-za", + "name": "Newcastle", + "display": "Newcastle, KwaZulu-Natal, South Africa" + }, + { + "slug": "paarl-western-cape-za", + "name": "Paarl", + "display": "Paarl, Western Cape, South Africa" + }, + { + "slug": "pietermaritzburg-kwazulu-natal-za", + "name": "Pietermaritzburg", + "display": "Pietermaritzburg, KwaZulu-Natal, South Africa" + }, + { + "slug": "polokwane-limpopo-za", + "name": "Polokwane", + "display": "Polokwane, Limpopo, South Africa" + }, + { + "slug": "potchefstroom-north-west-za", + "name": "Potchefstroom", + "display": "Potchefstroom, North West, South Africa" + }, + { + "slug": "pretoria-gauteng-za", + "name": "Pretoria", + "display": "Pretoria, Gauteng, South Africa" + }, + { + "slug": "randburg-gauteng-za", + "name": "Randburg", + "display": "Randburg, Gauteng, South Africa" + }, + { + "slug": "richards-bay-kwazulu-natal-za", + "name": "Richards Bay", + "display": "Richards Bay, KwaZulu-Natal, South Africa" + }, + { + "slug": "roodepoort-gauteng-za", + "name": "Roodepoort", + "display": "Roodepoort, Gauteng, South Africa" + }, + { + "slug": "rustenburg-north-west-za", + "name": "Rustenburg", + "display": "Rustenburg, North West, South Africa" + }, + { + "slug": "somerset-west-western-cape-za", + "name": "Somerset West", + "display": "Somerset West, Western Cape, South Africa" + }, + { + "slug": "soshanguve-gauteng-za", + "name": "Soshanguve", + "display": "Soshanguve, Gauteng, South Africa" + }, + { + "slug": "soweto-gauteng-za", + "name": "Soweto", + "display": "Soweto, Gauteng, South Africa" + }, + { + "slug": "springs-gauteng-za", + "name": "Springs", + "display": "Springs, Gauteng, South Africa" + }, + { + "slug": "thembisa-gauteng-za", + "name": "Thembisa", + "display": "Thembisa, Gauteng, South Africa" + }, + { + "slug": "vanderbijlpark-gauteng-za", + "name": "Vanderbijlpark", + "display": "Vanderbijlpark, Gauteng, South Africa" + }, + { + "slug": "vereeniging-gauteng-za", + "name": "Vereeniging", + "display": "Vereeniging, Gauteng, South Africa" + }, + { + "slug": "welkom-free-state-za", + "name": "Welkom", + "display": "Welkom, Free State, South Africa" + } + ] + }, + { + "country": "South Korea", + "cities": [ + { + "slug": "bucheon-si-gyeonggi-do-kr", + "name": "Bucheon-si", + "display": "Bucheon-si, Gyeonggi-do, South Korea" + }, + { + "slug": "busan-kr", + "name": "Busan", + "display": "Busan, South Korea" + }, + { + "slug": "changwon-gyeongsangnam-do-kr", + "name": "Changwon", + "display": "Changwon, Gyeongsangnam-do, South Korea" + }, + { + "slug": "cheonan-chungcheongnam-do-kr", + "name": "Cheonan", + "display": "Cheonan, Chungcheongnam-do, South Korea" + }, + { + "slug": "cheongju-si-north-chungcheong-kr", + "name": "Cheongju-si", + "display": "Cheongju-si, North Chungcheong, South Korea" + }, + { + "slug": "daegu-kr", + "name": "Daegu", + "display": "Daegu, South Korea" + }, + { + "slug": "daejeon-kr", + "name": "Daejeon", + "display": "Daejeon, South Korea" + }, + { + "slug": "goyang-si-gyeonggi-do-kr", + "name": "Goyang-si", + "display": "Goyang-si, Gyeonggi-do, South Korea" + }, + { + "slug": "gwangju-kr", + "name": "Gwangju", + "display": "Gwangju, South Korea" + }, + { + "slug": "incheon-kr", + "name": "Incheon", + "display": "Incheon, South Korea" + }, + { + "slug": "seongnam-si-gyeonggi-do-kr", + "name": "Seongnam-si", + "display": "Seongnam-si, Gyeonggi-do, South Korea" + }, + { + "slug": "seoul-kr", + "name": "Seoul", + "display": "Seoul, South Korea" + }, + { + "slug": "suwon-gyeonggi-do-kr", + "name": "Suwon", + "display": "Suwon, Gyeonggi-do, South Korea" + }, + { + "slug": "ulsan-kr", + "name": "Ulsan", + "display": "Ulsan, South Korea" + } + ] + }, + { + "country": "Spain", + "cities": [ + { + "slug": "barcelona-catalonia-es", + "name": "Barcelona", + "display": "Barcelona, Catalonia, Spain" + }, + { + "slug": "madrid-es", + "name": "Madrid", + "display": "Madrid, Spain" + }, + { + "slug": "sevilla-andalusia-es", + "name": "Sevilla", + "display": "Sevilla, Andalusia, Spain" + }, + { + "slug": "valencia-es", + "name": "Valencia", + "display": "Valencia, Spain" + }, + { + "slug": "zaragoza-aragon-es", + "name": "Zaragoza", + "display": "Zaragoza, Aragon, Spain" + } + ] + }, + { + "country": "Sri Lanka", + "cities": [ + { + "slug": "colombo-western-province-lk", + "name": "Colombo", + "display": "Colombo, Western Province, Sri Lanka" + } + ] + }, + { + "country": "Sweden", + "cities": [ + { + "slug": "gothenburg-vastra-gotaland-se", + "name": "Gothenburg", + "display": "Gothenburg, Västra Götaland, Sweden" + }, + { + "slug": "malmo-skane-se", + "name": "Malmö", + "display": "Malmö, Skåne, Sweden" + }, + { + "slug": "stockholm-se", + "name": "Stockholm", + "display": "Stockholm, Sweden" + } + ] + }, + { + "country": "Switzerland", + "cities": [ + { + "slug": "zurich-ch", + "name": "Zürich", + "display": "Zürich, Zurich, Switzerland" + } + ] + }, + { + "country": "Taiwan", + "cities": [ + { + "slug": "kaohsiung-takao-tw", + "name": "Kaohsiung", + "display": "Kaohsiung, Takao, Taiwan" + }, + { + "slug": "new-taipei-city-taipei-tw", + "name": "New Taipei City", + "display": "New Taipei City, Taipei, Taiwan" + }, + { + "slug": "taichung-taiwan-tw", + "name": "Taichung", + "display": "Taichung, Taiwan, Taiwan" + }, + { + "slug": "tainan-taiwan-tw", + "name": "Tainan", + "display": "Tainan, Taiwan, Taiwan" + }, + { + "slug": "taipei-taiwan-tw", + "name": "Taipei", + "display": "Taipei, Taiwan, Taiwan" + } + ] + }, + { + "country": "Tajikistan", + "cities": [ + { + "slug": "dushanbe-tj", + "name": "Dushanbe", + "display": "Dushanbe, Tajikistan" + } + ] + }, + { + "country": "Tanzania", + "cities": [ + { + "slug": "arusha-tz", + "name": "Arusha", + "display": "Arusha, Tanzania" + }, + { + "slug": "dar-es-salaam-dar-es-salaam-region-tz", + "name": "Dar es Salaam", + "display": "Dar es Salaam, Dar es Salaam Region, Tanzania" + }, + { + "slug": "zanzibar-zanzibar-urban-west-tz", + "name": "Zanzibar", + "display": "Zanzibar, Zanzibar Urban/West, Tanzania" + } + ] + }, + { + "country": "Thailand", + "cities": [ + { + "slug": "bangkok-th", + "name": "Bangkok", + "display": "Bangkok, Thailand" + } + ] + }, + { + "country": "The Netherlands", + "cities": [ + { + "slug": "amsterdam-north-holland-nl", + "name": "Amsterdam", + "display": "Amsterdam, North Holland, The Netherlands" + }, + { + "slug": "rotterdam-south-holland-nl", + "name": "Rotterdam", + "display": "Rotterdam, South Holland, The Netherlands" + }, + { + "slug": "the-hague-south-holland-nl", + "name": "The Hague", + "display": "The Hague, South Holland, The Netherlands" + }, + { + "slug": "utrecht-nl", + "name": "Utrecht", + "display": "Utrecht, The Netherlands" + } + ] + }, + { + "country": "Togo", + "cities": [ + { + "slug": "lome-maritime-tg", + "name": "Lomé", + "display": "Lomé, Maritime, Togo" + } + ] + }, + { + "country": "Tunisia", + "cities": [ + { + "slug": "tunis-tunis-governorate-tn", + "name": "Tunis", + "display": "Tunis, Tunis Governorate, Tunisia" + } + ] + }, + { + "country": "Turkey", + "cities": [ + { + "slug": "adana-tr", + "name": "Adana", + "display": "Adana, Turkey" + }, + { + "slug": "ankara-tr", + "name": "Ankara", + "display": "Ankara, Turkey" + }, + { + "slug": "antalya-tr", + "name": "Antalya", + "display": "Antalya, Turkey" + }, + { + "slug": "bagclar-istanbul-tr", + "name": "Bağcılar", + "display": "Bağcılar, Istanbul, Turkey" + }, + { + "slug": "bursa-bursa-province-tr", + "name": "Bursa", + "display": "Bursa, Bursa Province, Turkey" + }, + { + "slug": "diyarbakr-diyarbakr-province-tr", + "name": "Diyarbakır", + "display": "Diyarbakır, Diyarbakır Province, Turkey" + }, + { + "slug": "erzurum-tr", + "name": "Erzurum", + "display": "Erzurum, Turkey" + }, + { + "slug": "esenyurt-istanbul-tr", + "name": "Esenyurt", + "display": "Esenyurt, Istanbul, Turkey" + }, + { + "slug": "eskisehir-tr", + "name": "Eskişehir", + "display": "Eskişehir, Turkey" + }, + { + "slug": "gaziantep-tr", + "name": "Gaziantep", + "display": "Gaziantep, Turkey" + }, + { + "slug": "istanbul-tr", + "name": "Istanbul", + "display": "Istanbul, Turkey" + }, + { + "slug": "izmir-izmir-province-tr", + "name": "İzmir", + "display": "İzmir, İzmir Province, Turkey" + }, + { + "slug": "kayseri-tr", + "name": "Kayseri", + "display": "Kayseri, Turkey" + }, + { + "slug": "konya-tr", + "name": "Konya", + "display": "Konya, Turkey" + }, + { + "slug": "kucukcekmece-istanbul-tr", + "name": "Küçükçekmece", + "display": "Küçükçekmece, Istanbul, Turkey" + }, + { + "slug": "malatya-tr", + "name": "Malatya", + "display": "Malatya, Turkey" + }, + { + "slug": "cankaya-ankara-tr", + "name": "Çankaya", + "display": "Çankaya, Ankara, Turkey" + } + ] + }, + { + "country": "Turkmenistan", + "cities": [ + { + "slug": "ashgabat-tm", + "name": "Ashgabat", + "display": "Ashgabat, Turkmenistan" + } + ] + }, + { + "country": "Uganda", + "cities": [ + { + "slug": "kampala-central-region-ug", + "name": "Kampala", + "display": "Kampala, Central Region, Uganda" + } + ] + }, + { + "country": "Ukraine", + "cities": [ + { + "slug": "dnipro-dnipropetrovsk-ua", + "name": "Dnipro", + "display": "Dnipro, Dnipropetrovsk, Ukraine" + }, + { + "slug": "donetsk-ua", + "name": "Donetsk", + "display": "Donetsk, Ukraine" + }, + { + "slug": "kharkiv-ua", + "name": "Kharkiv", + "display": "Kharkiv, Ukraine" + }, + { + "slug": "kyiv-kyiv-city-ua", + "name": "Kyiv", + "display": "Kyiv, Kyiv City, Ukraine" + }, + { + "slug": "lviv-ua", + "name": "Lviv", + "display": "Lviv, Ukraine" + }, + { + "slug": "odesa-ua", + "name": "Odesa", + "display": "Odesa, Ukraine" + }, + { + "slug": "zaporizhzhya-zaporizhzhia-ua", + "name": "Zaporizhzhya", + "display": "Zaporizhzhya, Zaporizhzhia, Ukraine" + } + ] + }, + { + "country": "United Arab Emirates", + "cities": [ + { + "slug": "abu-dhabi-ae", + "name": "Abu Dhabi", + "display": "Abu Dhabi, United Arab Emirates" + }, + { + "slug": "dubai-ae", + "name": "Dubai", + "display": "Dubai, United Arab Emirates" + } + ] + }, + { + "country": "United Kingdom", + "cities": [ + { + "slug": "aberdeen-scotland-gb", + "name": "Aberdeen", + "display": "Aberdeen, Scotland, United Kingdom" + }, + { + "slug": "archway-england-gb", + "name": "Archway", + "display": "Archway, England, United Kingdom" + }, + { + "slug": "barking-england-gb", + "name": "Barking", + "display": "Barking, England, United Kingdom" + }, + { + "slug": "belfast-northern-ireland-gb", + "name": "Belfast", + "display": "Belfast, Northern Ireland, United Kingdom" + }, + { + "slug": "bexley-england-gb", + "name": "Bexley", + "display": "Bexley, England, United Kingdom" + }, + { + "slug": "birkenhead-england-gb", + "name": "Birkenhead", + "display": "Birkenhead, England, United Kingdom" + }, + { + "slug": "birmingham-england-gb", + "name": "Birmingham", + "display": "Birmingham, England, United Kingdom" + }, + { + "slug": "bradford-england-gb", + "name": "Bradford", + "display": "Bradford, England, United Kingdom" + }, + { + "slug": "brent-england-gb", + "name": "Brent", + "display": "Brent, England, United Kingdom" + }, + { + "slug": "brighton-england-gb", + "name": "Brighton", + "display": "Brighton, England, United Kingdom" + }, + { + "slug": "bristol-england-gb", + "name": "Bristol", + "display": "Bristol, England, United Kingdom" + }, + { + "slug": "cardiff-wales-gb", + "name": "Cardiff", + "display": "Cardiff, Wales, United Kingdom" + }, + { + "slug": "city-of-westminster-england-gb", + "name": "City of Westminster", + "display": "City of Westminster, England, United Kingdom" + }, + { + "slug": "coventry-england-gb", + "name": "Coventry", + "display": "Coventry, England, United Kingdom" + }, + { + "slug": "derby-england-gb", + "name": "Derby", + "display": "Derby, England, United Kingdom" + }, + { + "slug": "dudley-england-gb", + "name": "Dudley", + "display": "Dudley, England, United Kingdom" + }, + { + "slug": "edinburgh-scotland-gb", + "name": "Edinburgh", + "display": "Edinburgh, Scotland, United Kingdom" + }, + { + "slug": "glasgow-scotland-gb", + "name": "Glasgow", + "display": "Glasgow, Scotland, United Kingdom" + }, + { + "slug": "ipswich-england-gb", + "name": "Ipswich", + "display": "Ipswich, England, United Kingdom" + }, + { + "slug": "islington-england-gb", + "name": "Islington", + "display": "Islington, England, United Kingdom" + }, + { + "slug": "kingston-upon-hull-england-gb", + "name": "Kingston upon Hull", + "display": "Kingston upon Hull, England, United Kingdom" + }, + { + "slug": "leeds-england-gb", + "name": "Leeds", + "display": "Leeds, England, United Kingdom" + }, + { + "slug": "leicester-england-gb", + "name": "Leicester", + "display": "Leicester, England, United Kingdom" + }, + { + "slug": "liverpool-england-gb", + "name": "Liverpool", + "display": "Liverpool, England, United Kingdom" + }, + { + "slug": "london-england-gb", + "name": "London", + "display": "London, England, United Kingdom" + }, + { + "slug": "luton-england-gb", + "name": "Luton", + "display": "Luton, England, United Kingdom" + }, + { + "slug": "manchester-england-gb", + "name": "Manchester", + "display": "Manchester, England, United Kingdom" + }, + { + "slug": "milton-keynes-england-gb", + "name": "Milton Keynes", + "display": "Milton Keynes, England, United Kingdom" + }, + { + "slug": "newcastle-upon-tyne-england-gb", + "name": "Newcastle upon Tyne", + "display": "Newcastle upon Tyne, England, United Kingdom" + }, + { + "slug": "northampton-england-gb", + "name": "Northampton", + "display": "Northampton, England, United Kingdom" + }, + { + "slug": "nottingham-england-gb", + "name": "Nottingham", + "display": "Nottingham, England, United Kingdom" + }, + { + "slug": "oldham-england-gb", + "name": "Oldham", + "display": "Oldham, England, United Kingdom" + }, + { + "slug": "plymouth-england-gb", + "name": "Plymouth", + "display": "Plymouth, England, United Kingdom" + }, + { + "slug": "portsmouth-england-gb", + "name": "Portsmouth", + "display": "Portsmouth, England, United Kingdom" + }, + { + "slug": "preston-england-gb", + "name": "Preston", + "display": "Preston, England, United Kingdom" + }, + { + "slug": "reading-england-gb", + "name": "Reading", + "display": "Reading, England, United Kingdom" + }, + { + "slug": "sheffield-england-gb", + "name": "Sheffield", + "display": "Sheffield, England, United Kingdom" + }, + { + "slug": "southampton-england-gb", + "name": "Southampton", + "display": "Southampton, England, United Kingdom" + }, + { + "slug": "southend-on-sea-england-gb", + "name": "Southend-on-Sea", + "display": "Southend-on-Sea, England, United Kingdom" + }, + { + "slug": "st-helens-england-gb", + "name": "St Helens", + "display": "St Helens, England, United Kingdom" + }, + { + "slug": "stoke-on-trent-england-gb", + "name": "Stoke-on-Trent", + "display": "Stoke-on-Trent, England, United Kingdom" + }, + { + "slug": "sutton-england-gb", + "name": "Sutton", + "display": "Sutton, England, United Kingdom" + }, + { + "slug": "swansea-wales-gb", + "name": "Swansea", + "display": "Swansea, Wales, United Kingdom" + }, + { + "slug": "swindon-england-gb", + "name": "Swindon", + "display": "Swindon, England, United Kingdom" + }, + { + "slug": "wigan-england-gb", + "name": "Wigan", + "display": "Wigan, England, United Kingdom" + }, + { + "slug": "wolverhampton-england-gb", + "name": "Wolverhampton", + "display": "Wolverhampton, England, United Kingdom" + } + ] + }, + { + "country": "United States", + "cities": [ + { + "slug": "akron-ohio-us", + "name": "Akron", + "display": "Akron, Ohio, United States" + }, + { + "slug": "albuquerque-new-mexico-us", + "name": "Albuquerque", + "display": "Albuquerque, New Mexico, United States" + }, + { + "slug": "amarillo-texas-us", + "name": "Amarillo", + "display": "Amarillo, Texas, United States" + }, + { + "slug": "anaheim-california-us", + "name": "Anaheim", + "display": "Anaheim, California, United States" + }, + { + "slug": "anchorage-alaska-us", + "name": "Anchorage", + "display": "Anchorage, Alaska, United States" + }, + { + "slug": "arlington-texas-us", + "name": "Arlington", + "display": "Arlington, Texas, United States" + }, + { + "slug": "arlington-virginia-us", + "name": "Arlington", + "display": "Arlington, Virginia, United States" + }, + { + "slug": "atlanta-georgia-us", + "name": "Atlanta", + "display": "Atlanta, Georgia, United States" + }, + { + "slug": "aurora-colorado-us", + "name": "Aurora", + "display": "Aurora, Colorado, United States" + }, + { + "slug": "aurora-illinois-us", + "name": "Aurora", + "display": "Aurora, Illinois, United States" + }, + { + "slug": "austin-texas-us", + "name": "Austin", + "display": "Austin, Texas, United States" + }, + { + "slug": "bakersfield-california-us", + "name": "Bakersfield", + "display": "Bakersfield, California, United States" + }, + { + "slug": "baltimore-maryland-us", + "name": "Baltimore", + "display": "Baltimore, Maryland, United States" + }, + { + "slug": "baton-rouge-louisiana-us", + "name": "Baton Rouge", + "display": "Baton Rouge, Louisiana, United States" + }, + { + "slug": "birmingham-alabama-us", + "name": "Birmingham", + "display": "Birmingham, Alabama, United States" + }, + { + "slug": "boise-idaho-us", + "name": "Boise", + "display": "Boise, Idaho, United States" + }, + { + "slug": "boston-massachusetts-us", + "name": "Boston", + "display": "Boston, Massachusetts, United States" + }, + { + "slug": "brooklyn-new-york-us", + "name": "Brooklyn", + "display": "Brooklyn, New York, United States" + }, + { + "slug": "brownsville-texas-us", + "name": "Brownsville", + "display": "Brownsville, Texas, United States" + }, + { + "slug": "buffalo-new-york-us", + "name": "Buffalo", + "display": "Buffalo, New York, United States" + }, + { + "slug": "chandler-arizona-us", + "name": "Chandler", + "display": "Chandler, Arizona, United States" + }, + { + "slug": "charlotte-north-carolina-us", + "name": "Charlotte", + "display": "Charlotte, North Carolina, United States" + }, + { + "slug": "chattanooga-tennessee-us", + "name": "Chattanooga", + "display": "Chattanooga, Tennessee, United States" + }, + { + "slug": "chesapeake-virginia-us", + "name": "Chesapeake", + "display": "Chesapeake, Virginia, United States" + }, + { + "slug": "chicago-illinois-us", + "name": "Chicago", + "display": "Chicago, Illinois, United States" + }, + { + "slug": "chula-vista-california-us", + "name": "Chula Vista", + "display": "Chula Vista, California, United States" + }, + { + "slug": "cincinnati-ohio-us", + "name": "Cincinnati", + "display": "Cincinnati, Ohio, United States" + }, + { + "slug": "cleveland-ohio-us", + "name": "Cleveland", + "display": "Cleveland, Ohio, United States" + }, + { + "slug": "colorado-springs-colorado-us", + "name": "Colorado Springs", + "display": "Colorado Springs, Colorado, United States" + }, + { + "slug": "columbus-ohio-us", + "name": "Columbus", + "display": "Columbus, Ohio, United States" + }, + { + "slug": "columbus-georgia-us", + "name": "Columbus", + "display": "Columbus, Georgia, United States" + }, + { + "slug": "corpus-christi-texas-us", + "name": "Corpus Christi", + "display": "Corpus Christi, Texas, United States" + }, + { + "slug": "cypress-texas-us", + "name": "Cypress", + "display": "Cypress, Texas, United States" + }, + { + "slug": "dallas-texas-us", + "name": "Dallas", + "display": "Dallas, Texas, United States" + }, + { + "slug": "denver-colorado-us", + "name": "Denver", + "display": "Denver, Colorado, United States" + }, + { + "slug": "des-moines-iowa-us", + "name": "Des Moines", + "display": "Des Moines, Iowa, United States" + }, + { + "slug": "detroit-michigan-us", + "name": "Detroit", + "display": "Detroit, Michigan, United States" + }, + { + "slug": "durham-north-carolina-us", + "name": "Durham", + "display": "Durham, North Carolina, United States" + }, + { + "slug": "east-flatbush-new-york-us", + "name": "East Flatbush", + "display": "East Flatbush, New York, United States" + }, + { + "slug": "el-paso-texas-us", + "name": "El Paso", + "display": "El Paso, Texas, United States" + }, + { + "slug": "eugene-oregon-us", + "name": "Eugene", + "display": "Eugene, Oregon, United States" + }, + { + "slug": "fayetteville-north-carolina-us", + "name": "Fayetteville", + "display": "Fayetteville, North Carolina, United States" + }, + { + "slug": "fontana-california-us", + "name": "Fontana", + "display": "Fontana, California, United States" + }, + { + "slug": "fort-lauderdale-florida-us", + "name": "Fort Lauderdale", + "display": "Fort Lauderdale, Florida, United States" + }, + { + "slug": "fort-wayne-indiana-us", + "name": "Fort Wayne", + "display": "Fort Wayne, Indiana, United States" + }, + { + "slug": "fort-worth-texas-us", + "name": "Fort Worth", + "display": "Fort Worth, Texas, United States" + }, + { + "slug": "fremont-california-us", + "name": "Fremont", + "display": "Fremont, California, United States" + }, + { + "slug": "fresno-california-us", + "name": "Fresno", + "display": "Fresno, California, United States" + }, + { + "slug": "garland-texas-us", + "name": "Garland", + "display": "Garland, Texas, United States" + }, + { + "slug": "gilbert-arizona-us", + "name": "Gilbert", + "display": "Gilbert, Arizona, United States" + }, + { + "slug": "glendale-arizona-us", + "name": "Glendale", + "display": "Glendale, Arizona, United States" + }, + { + "slug": "glendale-california-us", + "name": "Glendale", + "display": "Glendale, California, United States" + }, + { + "slug": "grand-prairie-texas-us", + "name": "Grand Prairie", + "display": "Grand Prairie, Texas, United States" + }, + { + "slug": "grand-rapids-michigan-us", + "name": "Grand Rapids", + "display": "Grand Rapids, Michigan, United States" + }, + { + "slug": "greensboro-north-carolina-us", + "name": "Greensboro", + "display": "Greensboro, North Carolina, United States" + }, + { + "slug": "henderson-nevada-us", + "name": "Henderson", + "display": "Henderson, Nevada, United States" + }, + { + "slug": "hialeah-florida-us", + "name": "Hialeah", + "display": "Hialeah, Florida, United States" + }, + { + "slug": "honolulu-hawaii-us", + "name": "Honolulu", + "display": "Honolulu, Hawaii, United States" + }, + { + "slug": "houston-texas-us", + "name": "Houston", + "display": "Houston, Texas, United States" + }, + { + "slug": "huntington-beach-california-us", + "name": "Huntington Beach", + "display": "Huntington Beach, California, United States" + }, + { + "slug": "huntsville-alabama-us", + "name": "Huntsville", + "display": "Huntsville, Alabama, United States" + }, + { + "slug": "indianapolis-indiana-us", + "name": "Indianapolis", + "display": "Indianapolis, Indiana, United States" + }, + { + "slug": "irvine-california-us", + "name": "Irvine", + "display": "Irvine, California, United States" + }, + { + "slug": "irving-texas-us", + "name": "Irving", + "display": "Irving, Texas, United States" + }, + { + "slug": "jacksonville-florida-us", + "name": "Jacksonville", + "display": "Jacksonville, Florida, United States" + }, + { + "slug": "jamaica-new-york-us", + "name": "Jamaica", + "display": "Jamaica, New York, United States" + }, + { + "slug": "jersey-city-new-jersey-us", + "name": "Jersey City", + "display": "Jersey City, New Jersey, United States" + }, + { + "slug": "kansas-city-missouri-us", + "name": "Kansas City", + "display": "Kansas City, Missouri, United States" + }, + { + "slug": "knoxville-tennessee-us", + "name": "Knoxville", + "display": "Knoxville, Tennessee, United States" + }, + { + "slug": "laredo-texas-us", + "name": "Laredo", + "display": "Laredo, Texas, United States" + }, + { + "slug": "las-vegas-nevada-us", + "name": "Las Vegas", + "display": "Las Vegas, Nevada, United States" + }, + { + "slug": "lexington-kentucky-us", + "name": "Lexington", + "display": "Lexington, Kentucky, United States" + }, + { + "slug": "lexington-fayette-kentucky-us", + "name": "Lexington-Fayette", + "display": "Lexington-Fayette, Kentucky, United States" + }, + { + "slug": "lincoln-nebraska-us", + "name": "Lincoln", + "display": "Lincoln, Nebraska, United States" + }, + { + "slug": "little-rock-arkansas-us", + "name": "Little Rock", + "display": "Little Rock, Arkansas, United States" + }, + { + "slug": "long-beach-california-us", + "name": "Long Beach", + "display": "Long Beach, California, United States" + }, + { + "slug": "los-angeles-california-us", + "name": "Los Angeles", + "display": "Los Angeles, California, United States" + }, + { + "slug": "louisville-kentucky-us", + "name": "Louisville", + "display": "Louisville, Kentucky, United States" + }, + { + "slug": "lubbock-texas-us", + "name": "Lubbock", + "display": "Lubbock, Texas, United States" + }, + { + "slug": "madison-wisconsin-us", + "name": "Madison", + "display": "Madison, Wisconsin, United States" + }, + { + "slug": "manhattan-new-york-us", + "name": "Manhattan", + "display": "Manhattan, New York, United States" + }, + { + "slug": "maryvale-arizona-us", + "name": "Maryvale", + "display": "Maryvale, Arizona, United States" + }, + { + "slug": "meads-kentucky-us", + "name": "Meads", + "display": "Meads, Kentucky, United States" + }, + { + "slug": "memphis-tennessee-us", + "name": "Memphis", + "display": "Memphis, Tennessee, United States" + }, + { + "slug": "mesa-arizona-us", + "name": "Mesa", + "display": "Mesa, Arizona, United States" + }, + { + "slug": "miami-florida-us", + "name": "Miami", + "display": "Miami, Florida, United States" + }, + { + "slug": "milwaukee-wisconsin-us", + "name": "Milwaukee", + "display": "Milwaukee, Wisconsin, United States" + }, + { + "slug": "minneapolis-minnesota-us", + "name": "Minneapolis", + "display": "Minneapolis, Minnesota, United States" + }, + { + "slug": "mobile-alabama-us", + "name": "Mobile", + "display": "Mobile, Alabama, United States" + }, + { + "slug": "modesto-california-us", + "name": "Modesto", + "display": "Modesto, California, United States" + }, + { + "slug": "montgomery-alabama-us", + "name": "Montgomery", + "display": "Montgomery, Alabama, United States" + }, + { + "slug": "moreno-valley-california-us", + "name": "Moreno Valley", + "display": "Moreno Valley, California, United States" + }, + { + "slug": "nashville-tennessee-us", + "name": "Nashville", + "display": "Nashville, Tennessee, United States" + }, + { + "slug": "new-orleans-louisiana-us", + "name": "New Orleans", + "display": "New Orleans, Louisiana, United States" + }, + { + "slug": "new-south-memphis-tennessee-us", + "name": "New South Memphis", + "display": "New South Memphis, Tennessee, United States" + }, + { + "slug": "new-york-city-new-york-us", + "name": "New York City", + "display": "New York City, New York, United States" + }, + { + "slug": "newark-new-jersey-us", + "name": "Newark", + "display": "Newark, New Jersey, United States" + }, + { + "slug": "newport-news-virginia-us", + "name": "Newport News", + "display": "Newport News, Virginia, United States" + }, + { + "slug": "norfolk-virginia-us", + "name": "Norfolk", + "display": "Norfolk, Virginia, United States" + }, + { + "slug": "north-las-vegas-nevada-us", + "name": "North Las Vegas", + "display": "North Las Vegas, Nevada, United States" + }, + { + "slug": "oakland-california-us", + "name": "Oakland", + "display": "Oakland, California, United States" + }, + { + "slug": "oceanside-california-us", + "name": "Oceanside", + "display": "Oceanside, California, United States" + }, + { + "slug": "oklahoma-city-oklahoma-us", + "name": "Oklahoma City", + "display": "Oklahoma City, Oklahoma, United States" + }, + { + "slug": "omaha-nebraska-us", + "name": "Omaha", + "display": "Omaha, Nebraska, United States" + }, + { + "slug": "orlando-florida-us", + "name": "Orlando", + "display": "Orlando, Florida, United States" + }, + { + "slug": "overland-park-kansas-us", + "name": "Overland Park", + "display": "Overland Park, Kansas, United States" + }, + { + "slug": "oxnard-california-us", + "name": "Oxnard", + "display": "Oxnard, California, United States" + }, + { + "slug": "paradise-nevada-us", + "name": "Paradise", + "display": "Paradise, Nevada, United States" + }, + { + "slug": "peoria-arizona-us", + "name": "Peoria", + "display": "Peoria, Arizona, United States" + }, + { + "slug": "philadelphia-pennsylvania-us", + "name": "Philadelphia", + "display": "Philadelphia, Pennsylvania, United States" + }, + { + "slug": "phoenix-arizona-us", + "name": "Phoenix", + "display": "Phoenix, Arizona, United States" + }, + { + "slug": "pittsburgh-pennsylvania-us", + "name": "Pittsburgh", + "display": "Pittsburgh, Pennsylvania, United States" + }, + { + "slug": "plano-texas-us", + "name": "Plano", + "display": "Plano, Texas, United States" + }, + { + "slug": "portland-oregon-us", + "name": "Portland", + "display": "Portland, Oregon, United States" + }, + { + "slug": "providence-rhode-island-us", + "name": "Providence", + "display": "Providence, Rhode Island, United States" + }, + { + "slug": "queens-new-york-us", + "name": "Queens", + "display": "Queens, New York, United States" + }, + { + "slug": "raleigh-north-carolina-us", + "name": "Raleigh", + "display": "Raleigh, North Carolina, United States" + }, + { + "slug": "reno-nevada-us", + "name": "Reno", + "display": "Reno, Nevada, United States" + }, + { + "slug": "richmond-virginia-us", + "name": "Richmond", + "display": "Richmond, Virginia, United States" + }, + { + "slug": "riverside-california-us", + "name": "Riverside", + "display": "Riverside, California, United States" + }, + { + "slug": "rochester-new-york-us", + "name": "Rochester", + "display": "Rochester, New York, United States" + }, + { + "slug": "sacramento-california-us", + "name": "Sacramento", + "display": "Sacramento, California, United States" + }, + { + "slug": "saint-paul-minnesota-us", + "name": "Saint Paul", + "display": "Saint Paul, Minnesota, United States" + }, + { + "slug": "salem-oregon-us", + "name": "Salem", + "display": "Salem, Oregon, United States" + }, + { + "slug": "salt-lake-city-utah-us", + "name": "Salt Lake City", + "display": "Salt Lake City, Utah, United States" + }, + { + "slug": "san-antonio-texas-us", + "name": "San Antonio", + "display": "San Antonio, Texas, United States" + }, + { + "slug": "san-bernardino-california-us", + "name": "San Bernardino", + "display": "San Bernardino, California, United States" + }, + { + "slug": "san-diego-california-us", + "name": "San Diego", + "display": "San Diego, California, United States" + }, + { + "slug": "san-francisco-california-us", + "name": "San Francisco", + "display": "San Francisco, California, United States" + }, + { + "slug": "san-jose-california-us", + "name": "San Jose", + "display": "San Jose, California, United States" + }, + { + "slug": "santa-ana-california-us", + "name": "Santa Ana", + "display": "Santa Ana, California, United States" + }, + { + "slug": "santa-clarita-california-us", + "name": "Santa Clarita", + "display": "Santa Clarita, California, United States" + }, + { + "slug": "santa-rosa-california-us", + "name": "Santa Rosa", + "display": "Santa Rosa, California, United States" + }, + { + "slug": "scottsdale-arizona-us", + "name": "Scottsdale", + "display": "Scottsdale, Arizona, United States" + }, + { + "slug": "seattle-washington-us", + "name": "Seattle", + "display": "Seattle, Washington, United States" + }, + { + "slug": "shreveport-louisiana-us", + "name": "Shreveport", + "display": "Shreveport, Louisiana, United States" + }, + { + "slug": "south-boston-massachusetts-us", + "name": "South Boston", + "display": "South Boston, Massachusetts, United States" + }, + { + "slug": "spokane-washington-us", + "name": "Spokane", + "display": "Spokane, Washington, United States" + }, + { + "slug": "spring-valley-nevada-us", + "name": "Spring Valley", + "display": "Spring Valley, Nevada, United States" + }, + { + "slug": "st-louis-missouri-us", + "name": "St. Louis", + "display": "St. Louis, Missouri, United States" + }, + { + "slug": "st-petersburg-florida-us", + "name": "St. Petersburg", + "display": "St. Petersburg, Florida, United States" + }, + { + "slug": "staten-island-new-york-us", + "name": "Staten Island", + "display": "Staten Island, New York, United States" + }, + { + "slug": "stockton-california-us", + "name": "Stockton", + "display": "Stockton, California, United States" + }, + { + "slug": "sunrise-manor-nevada-us", + "name": "Sunrise Manor", + "display": "Sunrise Manor, Nevada, United States" + }, + { + "slug": "tacoma-washington-us", + "name": "Tacoma", + "display": "Tacoma, Washington, United States" + }, + { + "slug": "tallahassee-florida-us", + "name": "Tallahassee", + "display": "Tallahassee, Florida, United States" + }, + { + "slug": "tampa-florida-us", + "name": "Tampa", + "display": "Tampa, Florida, United States" + }, + { + "slug": "tempe-arizona-us", + "name": "Tempe", + "display": "Tempe, Arizona, United States" + }, + { + "slug": "the-bronx-new-york-us", + "name": "The Bronx", + "display": "The Bronx, New York, United States" + }, + { + "slug": "toledo-ohio-us", + "name": "Toledo", + "display": "Toledo, Ohio, United States" + }, + { + "slug": "tri-cities-washington-us", + "name": "Tri-Cities", + "display": "Tri-Cities, Washington, United States" + }, + { + "slug": "tucson-arizona-us", + "name": "Tucson", + "display": "Tucson, Arizona, United States" + }, + { + "slug": "tulsa-oklahoma-us", + "name": "Tulsa", + "display": "Tulsa, Oklahoma, United States" + }, + { + "slug": "upper-west-side-new-york-us", + "name": "Upper West Side", + "display": "Upper West Side, New York, United States" + }, + { + "slug": "vancouver-washington-us", + "name": "Vancouver", + "display": "Vancouver, Washington, United States" + }, + { + "slug": "virginia-beach-virginia-us", + "name": "Virginia Beach", + "display": "Virginia Beach, Virginia, United States" + }, + { + "slug": "washington-district-of-columbia-us", + "name": "Washington", + "display": "Washington, District of Columbia, United States" + }, + { + "slug": "west-raleigh-north-carolina-us", + "name": "West Raleigh", + "display": "West Raleigh, North Carolina, United States" + }, + { + "slug": "wichita-kansas-us", + "name": "Wichita", + "display": "Wichita, Kansas, United States" + }, + { + "slug": "winston-salem-north-carolina-us", + "name": "Winston-Salem", + "display": "Winston-Salem, North Carolina, United States" + }, + { + "slug": "worcester-massachusetts-us", + "name": "Worcester", + "display": "Worcester, Massachusetts, United States" + }, + { + "slug": "yonkers-new-york-us", + "name": "Yonkers", + "display": "Yonkers, New York, United States" + } + ] + }, + { + "country": "Uruguay", + "cities": [ + { + "slug": "montevideo-montevideo-department-uy", + "name": "Montevideo", + "display": "Montevideo, Montevideo Department, Uruguay" + } + ] + }, + { + "country": "Uzbekistan", + "cities": [ + { + "slug": "andijon-andijan-region-uz", + "name": "Andijon", + "display": "Andijon, Andijan Region, Uzbekistan" + }, + { + "slug": "namangan-uz", + "name": "Namangan", + "display": "Namangan, Uzbekistan" + }, + { + "slug": "tashkent-uz", + "name": "Tashkent", + "display": "Tashkent, Uzbekistan" + } + ] + }, + { + "country": "Venezuela", + "cities": [ + { + "slug": "barcelona-anzoategui-ve", + "name": "Barcelona", + "display": "Barcelona, Anzoátegui, Venezuela" + }, + { + "slug": "barquisimeto-lara-ve", + "name": "Barquisimeto", + "display": "Barquisimeto, Lara, Venezuela" + }, + { + "slug": "caracas-distrito-federal-ve", + "name": "Caracas", + "display": "Caracas, Distrito Federal, Venezuela" + }, + { + "slug": "ciudad-guayana-bolivar-ve", + "name": "Ciudad Guayana", + "display": "Ciudad Guayana, Bolívar, Venezuela" + }, + { + "slug": "maracaibo-zulia-ve", + "name": "Maracaibo", + "display": "Maracaibo, Zulia, Venezuela" + }, + { + "slug": "valencia-carabobo-ve", + "name": "Valencia", + "display": "Valencia, Carabobo, Venezuela" + } + ] + }, + { + "country": "Vietnam", + "cities": [ + { + "slug": "bien-hoa-dong-nai-vn", + "name": "Biên Hòa", + "display": "Biên Hòa, Dong Nai, Vietnam" + }, + { + "slug": "can-tho-can-tho-city-vn", + "name": "Cần Thơ", + "display": "Cần Thơ, Can Tho City, Vietnam" + }, + { + "slug": "da-nang-da-nang-city-vn", + "name": "Da Nang", + "display": "Da Nang, Da Nang City, Vietnam" + }, + { + "slug": "haiphong-hai-phong-vn", + "name": "Haiphong", + "display": "Haiphong, Hai Phong, Vietnam" + }, + { + "slug": "hanoi-vn", + "name": "Hanoi", + "display": "Hanoi, Vietnam" + }, + { + "slug": "ho-chi-minh-city-ho-chi-minh-city-hcmc-vn", + "name": "Ho Chi Minh City", + "display": "Ho Chi Minh City, Ho Chi Minh City (HCMC), Vietnam" + }, + { + "slug": "hue-thua-thien-hue-province-vn", + "name": "Huế", + "display": "Huế, Thừa Thiên Huế Province, Vietnam" + }, + { + "slug": "thanh-hoa-thanh-hoa-province-vn", + "name": "Thanh Hóa", + "display": "Thanh Hóa, Thanh Hóa Province, Vietnam" + }, + { + "slug": "vinh-nghe-an-province-vn", + "name": "Vinh", + "display": "Vinh, Nghệ An Province, Vietnam" + } + ] + }, + { + "country": "Zambia", + "cities": [ + { + "slug": "lusaka-lusaka-province-zm", + "name": "Lusaka", + "display": "Lusaka, Lusaka Province, Zambia" + } + ] + }, + { + "country": "Zimbabwe", + "cities": [ + { + "slug": "harare-zw", + "name": "Harare", + "display": "Harare, Zimbabwe" + } + ] + } + ] +} diff --git a/frontend/tests/fixtures/month.json b/frontend/tests/fixtures/month.json new file mode 100644 index 0000000..858a60a --- /dev/null +++ b/frontend/tests/fixtures/month.json @@ -0,0 +1,114 @@ +{ + "month_name": "July", + "month_slug": "july", + "year_range": [ + 1980, + 2026 + ], + "n_years": 46, + "avg_high_f": 71.1, + "avg_low_f": 56.2, + "typical_high_range_f": [ + 64.3, + 79.8 + ], + "typical_low_range_f": [ + 51.3, + 61.1 + ], + "avg_precip_f": 0.1, + "records": [ + { + "label": "High", + "high_f": 97.5, + "high_date": "2022-07-19", + "high_tag": "Highest", + "low_f": 57.1, + "low_date": "1980-07-01", + "low_tag": "Lowest" + }, + { + "label": "Low", + "high_f": 71.8, + "high_date": "2022-07-19", + "high_tag": "Highest", + "low_f": 45.9, + "low_date": "1984-07-03", + "low_tag": "Lowest" + }, + { + "label": "Feels-like", + "high_f": 100.6, + "high_date": "2019-07-25", + "high_tag": "Highest", + "low_f": 40.3, + "low_date": "1980-07-01", + "low_tag": "Lowest" + }, + { + "label": "Humidity", + "high_f": 16.0, + "high_date": "1994-07-31", + "high_tag": "Highest", + "low_f": 6.7, + "low_date": "2000-07-11", + "low_tag": "Lowest" + }, + { + "label": "Wind", + "high_f": 24.7, + "high_date": "1985-07-22", + "high_tag": "Highest", + "low_f": 3.0, + "low_date": "1992-07-08", + "low_tag": "Lowest" + }, + { + "label": "Gust", + "high_f": 54.1, + "high_date": "2023-07-15", + "high_tag": "Highest", + "low_f": 7.4, + "low_date": "1992-07-08", + "low_tag": "Lowest" + }, + { + "label": "Precip", + "high_f": 4.224, + "high_date": "2012", + "high_tag": "Wettest", + "low_f": 0.607, + "low_date": "2022", + "low_tag": "Driest" + } + ], + "prev": { + "name": "June", + "slug": "june" + }, + "next": { + "name": "August", + "slug": "august" + }, + "breadcrumb": [ + { + "name": "Home", + "href": "/" + }, + { + "name": "Climate", + "href": "/climate" + }, + { + "name": "London", + "href": "/climate/london-england-gb" + }, + { + "name": "July", + "href": null + } + ], + "canonical_path": "/climate/london-england-gb/july", + "page_title": "London, GB in July: normal weather & records · Thermograph", + "page_description": "London, GB averages 22°C highs and 13°C lows in July. Every day graded against 46 years of local history." +} diff --git a/frontend/tests/fixtures/records.json b/frontend/tests/fixtures/records.json new file mode 100644 index 0000000..a515bce --- /dev/null +++ b/frontend/tests/fixtures/records.json @@ -0,0 +1,585 @@ +{ + "year_range": [ + 1980, + 2026 + ], + "n_years": 46, + "rows": [ + { + "label": "High", + "high_f": 97.5, + "high_date": "2022-07-19", + "low_f": 20.3, + "low_date": "1987-01-12", + "dry_streak_days": null + }, + { + "label": "Low", + "high_f": 71.8, + "high_date": "2022-07-19", + "low_f": 3.3, + "low_date": "1981-12-13", + "dry_streak_days": null + }, + { + "label": "Feels-like", + "high_f": 100.6, + "high_date": "2019-07-25", + "low_f": -5.3, + "low_date": "1986-02-10", + "dry_streak_days": null + }, + { + "label": "Humidity", + "high_f": 17.4, + "high_date": "2026-06-24", + "low_f": 1.9, + "low_date": "1987-01-12", + "dry_streak_days": null + }, + { + "label": "Wind", + "high_f": 41.5, + "high_date": "1987-10-16", + "low_f": 2.3, + "low_date": "2024-12-27", + "dry_streak_days": null + }, + { + "label": "Gust", + "high_f": 81.7, + "high_date": "2000-10-30", + "low_f": 5.8, + "low_date": "2024-12-27", + "dry_streak_days": null + }, + { + "label": "Precip", + "high_f": 1.23, + "high_date": "2021-06-18", + "low_f": null, + "low_date": "1995-07-31", + "dry_streak_days": 33 + } + ], + "all_time_records": { + "tmax": { + "max": 97.5, + "max_date": "2022-07-19", + "min": 20.3, + "min_date": "1987-01-12" + }, + "tmin": { + "max": 71.8, + "max_date": "2022-07-19", + "min": 3.3, + "min_date": "1981-12-13" + }, + "feels": { + "max": 100.6, + "max_date": "2019-07-25", + "min": -5.3, + "min_date": "1986-02-10" + }, + "fmax": { + "max": 100.6, + "max_date": "2019-07-25", + "min": 11.8, + "min_date": "1987-01-12" + }, + "fmin": { + "max": 73.2, + "max_date": "2026-06-26", + "min": -5.3, + "min_date": "1986-02-10" + }, + "humid": { + "max": 17.4, + "max_date": "2026-06-24", + "min": 1.9, + "min_date": "1987-01-12" + }, + "wind": { + "max": 41.5, + "max_date": "1987-10-16", + "min": 2.3, + "min_date": "2024-12-27" + }, + "gust": { + "max": 81.7, + "max_date": "2000-10-30", + "min": 5.8, + "min_date": "2024-12-27" + }, + "precip": { + "max": 1.23, + "max_date": "2021-06-18", + "min": 0.0, + "min_date": "1980-01-01" + } + }, + "monthly": [ + { + "name": "January", + "slug": "january", + "high": { + "warm": { + "value_f": 57.9, + "date": "2022-01-01" + }, + "cold": { + "value_f": 20.3, + "date": "1987-01-12" + } + }, + "low": { + "warm": { + "value_f": 54.4, + "date": "2008-01-19" + }, + "cold": { + "value_f": 11.4, + "date": "1982-01-14" + } + } + }, + { + "name": "February", + "slug": "february", + "high": { + "warm": { + "value_f": 61.0, + "date": "1990-02-23" + }, + "cold": { + "value_f": 25.5, + "date": "1991-02-07" + } + }, + "low": { + "warm": { + "value_f": 53.8, + "date": "2004-02-04" + }, + "cold": { + "value_f": 3.3, + "date": "1986-02-10" + } + } + }, + { + "name": "March", + "slug": "march", + "high": { + "warm": { + "value_f": 70.1, + "date": "2021-03-31" + }, + "cold": { + "value_f": 31.1, + "date": "1986-03-01" + } + }, + "low": { + "warm": { + "value_f": 51.8, + "date": "2006-03-26" + }, + "cold": { + "value_f": 17.7, + "date": "1986-03-03" + } + } + }, + { + "name": "April", + "slug": "april", + "high": { + "warm": { + "value_f": 76.7, + "date": "2011-04-23" + }, + "cold": { + "value_f": 38.6, + "date": "2013-04-04" + } + }, + "low": { + "warm": { + "value_f": 56.0, + "date": "2024-04-06" + }, + "cold": { + "value_f": 25.0, + "date": "1996-04-02" + } + } + }, + { + "name": "May", + "slug": "may", + "high": { + "warm": { + "value_f": 88.7, + "date": "2026-05-26" + }, + "cold": { + "value_f": 46.1, + "date": "1996-05-18" + } + }, + "low": { + "warm": { + "value_f": 61.3, + "date": "2018-05-27" + }, + "cold": { + "value_f": 31.1, + "date": "1981-05-05" + } + } + }, + { + "name": "June", + "slug": "june", + "high": { + "warm": { + "value_f": 90.4, + "date": "2026-06-26" + }, + "cold": { + "value_f": 53.0, + "date": "1991-06-01" + } + }, + "low": { + "warm": { + "value_f": 71.5, + "date": "2026-06-26" + }, + "cold": { + "value_f": 38.0, + "date": "1989-06-05" + } + } + }, + { + "name": "July", + "slug": "july", + "high": { + "warm": { + "value_f": 97.5, + "date": "2022-07-19" + }, + "cold": { + "value_f": 57.1, + "date": "1980-07-01" + } + }, + "low": { + "warm": { + "value_f": 71.8, + "date": "2022-07-19" + }, + "cold": { + "value_f": 45.9, + "date": "1984-07-03" + } + } + }, + { + "name": "August", + "slug": "august", + "high": { + "warm": { + "value_f": 94.4, + "date": "2003-08-10" + }, + "cold": { + "value_f": 57.7, + "date": "1987-08-25" + } + }, + "low": { + "warm": { + "value_f": 67.9, + "date": "2020-08-12" + }, + "cold": { + "value_f": 44.0, + "date": "1993-08-25" + } + } + }, + { + "name": "September", + "slug": "september", + "high": { + "warm": { + "value_f": 86.2, + "date": "2023-09-09" + }, + "cold": { + "value_f": 49.1, + "date": "1993-09-27" + } + }, + "low": { + "warm": { + "value_f": 65.1, + "date": "2016-09-06" + }, + "cold": { + "value_f": 38.9, + "date": "1986-09-20" + } + } + }, + { + "name": "October", + "slug": "october", + "high": { + "warm": { + "value_f": 79.4, + "date": "2011-10-01" + }, + "cold": { + "value_f": 43.6, + "date": "2008-10-29" + } + }, + "low": { + "warm": { + "value_f": 66.2, + "date": "2018-10-13" + }, + "cold": { + "value_f": 28.8, + "date": "1983-10-30" + } + } + }, + { + "name": "November", + "slug": "november", + "high": { + "warm": { + "value_f": 63.3, + "date": "2005-11-02" + }, + "cold": { + "value_f": 33.2, + "date": "2010-11-28" + } + }, + "low": { + "warm": { + "value_f": 57.0, + "date": "2010-11-04" + }, + "cold": { + "value_f": 22.8, + "date": "2010-11-28" + } + } + }, + { + "name": "December", + "slug": "december", + "high": { + "warm": { + "value_f": 58.4, + "date": "1993-12-19" + }, + "cold": { + "value_f": 24.3, + "date": "2010-12-03" + } + }, + "low": { + "warm": { + "value_f": 54.9, + "date": "2021-12-30" + }, + "cold": { + "value_f": 3.3, + "date": "1981-12-13" + } + } + } + ], + "seasonal": [ + { + "name": "Winter", + "span": "Dec–Feb", + "high": { + "warm": { + "value_f": 61.0, + "date": "1990-02-23" + }, + "cold": { + "value_f": 20.3, + "date": "1987-01-12" + } + }, + "low": { + "warm": { + "value_f": 54.9, + "date": "2021-12-30" + }, + "cold": { + "value_f": 3.3, + "date": "1981-12-13" + } + } + }, + { + "name": "Spring", + "span": "Mar–May", + "high": { + "warm": { + "value_f": 88.7, + "date": "2026-05-26" + }, + "cold": { + "value_f": 31.1, + "date": "1986-03-01" + } + }, + "low": { + "warm": { + "value_f": 61.3, + "date": "2018-05-27" + }, + "cold": { + "value_f": 17.7, + "date": "1986-03-03" + } + } + }, + { + "name": "Summer", + "span": "Jun–Aug", + "high": { + "warm": { + "value_f": 97.5, + "date": "2022-07-19" + }, + "cold": { + "value_f": 53.0, + "date": "1991-06-01" + } + }, + "low": { + "warm": { + "value_f": 71.8, + "date": "2022-07-19" + }, + "cold": { + "value_f": 38.0, + "date": "1989-06-05" + } + } + }, + { + "name": "Autumn", + "span": "Sep–Nov", + "high": { + "warm": { + "value_f": 86.2, + "date": "2023-09-09" + }, + "cold": { + "value_f": 33.2, + "date": "2010-11-28" + } + }, + "low": { + "warm": { + "value_f": 66.2, + "date": "2018-10-13" + }, + "cold": { + "value_f": 22.8, + "date": "2010-11-28" + } + } + } + ], + "hemisphere": "Northern", + "breadcrumb": [ + { + "name": "Home", + "href": "/" + }, + { + "name": "Climate", + "href": "/climate" + }, + { + "name": "London", + "href": "/climate/london-england-gb" + }, + { + "name": "Records", + "href": null + } + ], + "canonical_path": "/climate/london-england-gb/records", + "page_title": "London, GB weather records: hottest & coldest days since 1980", + "page_description": "London, GB's hottest day hit 36°C (Jul 2022); its coldest fell to -16°C (Dec 1981). Every day graded against 46 years of local history.", + "jsonld": { + "@context": "https://schema.org", + "@graph": [ + { + "@type": "Dataset", + "name": "London, England, United Kingdom monthly and seasonal weather records", + "description": "Record high and low temperatures for London, England, United Kingdom by month and by meteorological season, with the dates they occurred, from ~46 years of daily climate history.", + "url": "http://127.0.0.1:18137/climate/london-england-gb/records", + "temporalCoverage": "1980/2026", + "spatialCoverage": { + "@type": "Place", + "name": "London, England, United Kingdom", + "geo": { + "@type": "GeoCoordinates", + "latitude": 51.50853, + "longitude": -0.12574 + } + }, + "creator": { + "@type": "Organization", + "name": "Thermograph" + }, + "isBasedOn": "https://open-meteo.com/ (ERA5 reanalysis)" + }, + { + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 1, + "name": "Home", + "item": "http://127.0.0.1:18137/" + }, + { + "@type": "ListItem", + "position": 2, + "name": "Climate", + "item": "http://127.0.0.1:18137/climate" + }, + { + "@type": "ListItem", + "position": 3, + "name": "London", + "item": "http://127.0.0.1:18137/climate/london-england-gb" + }, + { + "@type": "ListItem", + "position": 4, + "name": "Records" + } + ] + } + ] + } +} diff --git a/frontend/tests/fixtures/sitemap.json b/frontend/tests/fixtures/sitemap.json new file mode 100644 index 0000000..1359bb1 --- /dev/null +++ b/frontend/tests/fixtures/sitemap.json @@ -0,0 +1,70037 @@ +[ + { + "path": "/", + "changefreq": "daily", + "priority": "1.0" + }, + { + "path": "/climate", + "changefreq": "weekly", + "priority": "0.6" + }, + { + "path": "/about", + "changefreq": "weekly", + "priority": "0.6" + }, + { + "path": "/glossary", + "changefreq": "weekly", + "priority": "0.6" + }, + { + "path": "/calendar", + "changefreq": "weekly", + "priority": "0.6" + }, + { + "path": "/compare", + "changefreq": "weekly", + "priority": "0.6" + }, + { + "path": "/legend", + "changefreq": "weekly", + "priority": "0.6" + }, + { + "path": "/climate/shanghai-cn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/shanghai-cn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shanghai-cn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shanghai-cn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shanghai-cn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shanghai-cn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shanghai-cn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shanghai-cn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shanghai-cn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shanghai-cn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shanghai-cn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shanghai-cn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shanghai-cn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shanghai-cn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beijing-cn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/beijing-cn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beijing-cn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beijing-cn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beijing-cn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beijing-cn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beijing-cn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beijing-cn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beijing-cn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beijing-cn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beijing-cn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beijing-cn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beijing-cn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beijing-cn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shenzhen-guangdong-cn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/shenzhen-guangdong-cn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shenzhen-guangdong-cn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shenzhen-guangdong-cn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shenzhen-guangdong-cn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shenzhen-guangdong-cn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shenzhen-guangdong-cn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shenzhen-guangdong-cn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shenzhen-guangdong-cn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shenzhen-guangdong-cn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shenzhen-guangdong-cn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shenzhen-guangdong-cn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shenzhen-guangdong-cn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shenzhen-guangdong-cn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guangzhou-guangdong-cn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/guangzhou-guangdong-cn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guangzhou-guangdong-cn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guangzhou-guangdong-cn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guangzhou-guangdong-cn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guangzhou-guangdong-cn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guangzhou-guangdong-cn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guangzhou-guangdong-cn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guangzhou-guangdong-cn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guangzhou-guangdong-cn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guangzhou-guangdong-cn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guangzhou-guangdong-cn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guangzhou-guangdong-cn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guangzhou-guangdong-cn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kinshasa-cd", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kinshasa-cd/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kinshasa-cd/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kinshasa-cd/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kinshasa-cd/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kinshasa-cd/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kinshasa-cd/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kinshasa-cd/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kinshasa-cd/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kinshasa-cd/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kinshasa-cd/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kinshasa-cd/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kinshasa-cd/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kinshasa-cd/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/istanbul-tr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/istanbul-tr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/istanbul-tr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/istanbul-tr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/istanbul-tr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/istanbul-tr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/istanbul-tr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/istanbul-tr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/istanbul-tr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/istanbul-tr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/istanbul-tr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/istanbul-tr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/istanbul-tr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/istanbul-tr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lagos-ng", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/lagos-ng/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lagos-ng/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lagos-ng/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lagos-ng/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lagos-ng/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lagos-ng/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lagos-ng/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lagos-ng/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lagos-ng/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lagos-ng/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lagos-ng/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lagos-ng/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lagos-ng/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ho-chi-minh-city-ho-chi-minh-city-hcmc-vn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ho-chi-minh-city-ho-chi-minh-city-hcmc-vn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ho-chi-minh-city-ho-chi-minh-city-hcmc-vn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ho-chi-minh-city-ho-chi-minh-city-hcmc-vn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ho-chi-minh-city-ho-chi-minh-city-hcmc-vn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ho-chi-minh-city-ho-chi-minh-city-hcmc-vn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ho-chi-minh-city-ho-chi-minh-city-hcmc-vn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ho-chi-minh-city-ho-chi-minh-city-hcmc-vn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ho-chi-minh-city-ho-chi-minh-city-hcmc-vn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ho-chi-minh-city-ho-chi-minh-city-hcmc-vn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ho-chi-minh-city-ho-chi-minh-city-hcmc-vn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ho-chi-minh-city-ho-chi-minh-city-hcmc-vn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ho-chi-minh-city-ho-chi-minh-city-hcmc-vn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ho-chi-minh-city-ho-chi-minh-city-hcmc-vn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chengdu-sichuan-cn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/chengdu-sichuan-cn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chengdu-sichuan-cn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chengdu-sichuan-cn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chengdu-sichuan-cn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chengdu-sichuan-cn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chengdu-sichuan-cn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chengdu-sichuan-cn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chengdu-sichuan-cn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chengdu-sichuan-cn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chengdu-sichuan-cn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chengdu-sichuan-cn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chengdu-sichuan-cn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chengdu-sichuan-cn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lahore-punjab-pk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/lahore-punjab-pk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lahore-punjab-pk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lahore-punjab-pk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lahore-punjab-pk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lahore-punjab-pk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lahore-punjab-pk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lahore-punjab-pk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lahore-punjab-pk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lahore-punjab-pk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lahore-punjab-pk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lahore-punjab-pk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lahore-punjab-pk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lahore-punjab-pk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mumbai-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mumbai-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mumbai-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mumbai-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mumbai-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mumbai-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mumbai-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mumbai-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mumbai-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mumbai-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mumbai-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mumbai-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mumbai-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mumbai-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-paulo-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sao-paulo-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-paulo-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-paulo-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-paulo-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-paulo-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-paulo-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-paulo-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-paulo-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-paulo-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-paulo-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-paulo-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-paulo-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-paulo-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexico-city-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mexico-city-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexico-city-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexico-city-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexico-city-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexico-city-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexico-city-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexico-city-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexico-city-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexico-city-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexico-city-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexico-city-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexico-city-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexico-city-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karachi-sindh-pk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/karachi-sindh-pk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karachi-sindh-pk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karachi-sindh-pk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karachi-sindh-pk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karachi-sindh-pk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karachi-sindh-pk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karachi-sindh-pk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karachi-sindh-pk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karachi-sindh-pk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karachi-sindh-pk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karachi-sindh-pk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karachi-sindh-pk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karachi-sindh-pk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/delhi-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/delhi-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/delhi-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/delhi-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/delhi-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/delhi-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/delhi-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/delhi-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/delhi-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/delhi-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/delhi-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/delhi-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/delhi-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/delhi-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moscow-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/moscow-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moscow-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moscow-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moscow-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moscow-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moscow-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moscow-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moscow-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moscow-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moscow-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moscow-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moscow-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moscow-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhaka-dhaka-division-bd", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dhaka-dhaka-division-bd/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhaka-dhaka-division-bd/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhaka-dhaka-division-bd/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhaka-dhaka-division-bd/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhaka-dhaka-division-bd/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhaka-dhaka-division-bd/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhaka-dhaka-division-bd/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhaka-dhaka-division-bd/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhaka-dhaka-division-bd/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhaka-dhaka-division-bd/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhaka-dhaka-division-bd/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhaka-dhaka-division-bd/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhaka-dhaka-division-bd/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seoul-kr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/seoul-kr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seoul-kr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seoul-kr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seoul-kr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seoul-kr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seoul-kr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seoul-kr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seoul-kr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seoul-kr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seoul-kr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seoul-kr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seoul-kr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seoul-kr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tokyo-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tokyo-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tokyo-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tokyo-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tokyo-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tokyo-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tokyo-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tokyo-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tokyo-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tokyo-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tokyo-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tokyo-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tokyo-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tokyo-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cairo-eg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cairo-eg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cairo-eg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cairo-eg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cairo-eg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cairo-eg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cairo-eg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cairo-eg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cairo-eg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cairo-eg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cairo-eg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cairo-eg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cairo-eg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cairo-eg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/johannesburg-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/johannesburg-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/johannesburg-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/johannesburg-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/johannesburg-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/johannesburg-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/johannesburg-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/johannesburg-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/johannesburg-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/johannesburg-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/johannesburg-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/johannesburg-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/johannesburg-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/johannesburg-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/london-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-york-city-new-york-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/new-york-city-new-york-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-york-city-new-york-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-york-city-new-york-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-york-city-new-york-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-york-city-new-york-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-york-city-new-york-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-york-city-new-york-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-york-city-new-york-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-york-city-new-york-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-york-city-new-york-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-york-city-new-york-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-york-city-new-york-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-york-city-new-york-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jakarta-id", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jakarta-id/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jakarta-id/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jakarta-id/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jakarta-id/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jakarta-id/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jakarta-id/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jakarta-id/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jakarta-id/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jakarta-id/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jakarta-id/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jakarta-id/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jakarta-id/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jakarta-id/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bengaluru-karnataka-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bengaluru-karnataka-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bengaluru-karnataka-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bengaluru-karnataka-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bengaluru-karnataka-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bengaluru-karnataka-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bengaluru-karnataka-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bengaluru-karnataka-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bengaluru-karnataka-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bengaluru-karnataka-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bengaluru-karnataka-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bengaluru-karnataka-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bengaluru-karnataka-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bengaluru-karnataka-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hanoi-vn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hanoi-vn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hanoi-vn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hanoi-vn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hanoi-vn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hanoi-vn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hanoi-vn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hanoi-vn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hanoi-vn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hanoi-vn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hanoi-vn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hanoi-vn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hanoi-vn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hanoi-vn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taipei-taiwan-tw", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/taipei-taiwan-tw/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taipei-taiwan-tw/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taipei-taiwan-tw/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taipei-taiwan-tw/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taipei-taiwan-tw/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taipei-taiwan-tw/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taipei-taiwan-tw/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taipei-taiwan-tw/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taipei-taiwan-tw/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taipei-taiwan-tw/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taipei-taiwan-tw/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taipei-taiwan-tw/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taipei-taiwan-tw/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lima-lima-province-pe", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/lima-lima-province-pe/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lima-lima-province-pe/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lima-lima-province-pe/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lima-lima-province-pe/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lima-lima-province-pe/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lima-lima-province-pe/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lima-lima-province-pe/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lima-lima-province-pe/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lima-lima-province-pe/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lima-lima-province-pe/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lima-lima-province-pe/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lima-lima-province-pe/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lima-lima-province-pe/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bogota-bogota-d-c-co", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bogota-bogota-d-c-co/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bogota-bogota-d-c-co/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bogota-bogota-d-c-co/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bogota-bogota-d-c-co/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bogota-bogota-d-c-co/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bogota-bogota-d-c-co/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bogota-bogota-d-c-co/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bogota-bogota-d-c-co/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bogota-bogota-d-c-co/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bogota-bogota-d-c-co/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bogota-bogota-d-c-co/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bogota-bogota-d-c-co/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bogota-bogota-d-c-co/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-hk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hong-kong-hk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-hk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-hk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-hk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-hk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-hk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-hk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-hk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-hk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-hk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-hk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-hk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-hk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baghdad-iq", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/baghdad-iq/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baghdad-iq/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baghdad-iq/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baghdad-iq/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baghdad-iq/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baghdad-iq/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baghdad-iq/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baghdad-iq/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baghdad-iq/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baghdad-iq/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baghdad-iq/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baghdad-iq/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baghdad-iq/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tehran-ir", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tehran-ir/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tehran-ir/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tehran-ir/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tehran-ir/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tehran-ir/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tehran-ir/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tehran-ir/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tehran-ir/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tehran-ir/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tehran-ir/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tehran-ir/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tehran-ir/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tehran-ir/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-telangana-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hyderabad-telangana-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-telangana-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-telangana-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-telangana-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-telangana-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-telangana-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-telangana-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-telangana-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-telangana-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-telangana-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-telangana-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-telangana-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-telangana-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rio-de-janeiro-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rio-de-janeiro-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rio-de-janeiro-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rio-de-janeiro-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rio-de-janeiro-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rio-de-janeiro-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rio-de-janeiro-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rio-de-janeiro-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rio-de-janeiro-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rio-de-janeiro-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rio-de-janeiro-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rio-de-janeiro-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rio-de-janeiro-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rio-de-janeiro-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahmedabad-gujarat-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ahmedabad-gujarat-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahmedabad-gujarat-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahmedabad-gujarat-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahmedabad-gujarat-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahmedabad-gujarat-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahmedabad-gujarat-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahmedabad-gujarat-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahmedabad-gujarat-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahmedabad-gujarat-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahmedabad-gujarat-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahmedabad-gujarat-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahmedabad-gujarat-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahmedabad-gujarat-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abidjan-abidjan-autonomous-district-ci", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/abidjan-abidjan-autonomous-district-ci/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abidjan-abidjan-autonomous-district-ci/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abidjan-abidjan-autonomous-district-ci/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abidjan-abidjan-autonomous-district-ci/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abidjan-abidjan-autonomous-district-ci/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abidjan-abidjan-autonomous-district-ci/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abidjan-abidjan-autonomous-district-ci/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abidjan-abidjan-autonomous-district-ci/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abidjan-abidjan-autonomous-district-ci/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abidjan-abidjan-autonomous-district-ci/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abidjan-abidjan-autonomous-district-ci/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abidjan-abidjan-autonomous-district-ci/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abidjan-abidjan-autonomous-district-ci/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sydney-new-south-wales-au", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sydney-new-south-wales-au/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sydney-new-south-wales-au/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sydney-new-south-wales-au/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sydney-new-south-wales-au/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sydney-new-south-wales-au/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sydney-new-south-wales-au/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sydney-new-south-wales-au/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sydney-new-south-wales-au/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sydney-new-south-wales-au/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sydney-new-south-wales-au/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sydney-new-south-wales-au/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sydney-new-south-wales-au/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sydney-new-south-wales-au/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/singapore-sg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/singapore-sg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/singapore-sg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/singapore-sg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/singapore-sg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/singapore-sg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/singapore-sg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/singapore-sg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/singapore-sg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/singapore-sg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/singapore-sg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/singapore-sg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/singapore-sg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/singapore-sg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/melbourne-victoria-au", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/melbourne-victoria-au/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/melbourne-victoria-au/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/melbourne-victoria-au/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/melbourne-victoria-au/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/melbourne-victoria-au/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/melbourne-victoria-au/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/melbourne-victoria-au/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/melbourne-victoria-au/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/melbourne-victoria-au/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/melbourne-victoria-au/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/melbourne-victoria-au/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/melbourne-victoria-au/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/melbourne-victoria-au/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dar-es-salaam-dar-es-salaam-region-tz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dar-es-salaam-dar-es-salaam-region-tz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dar-es-salaam-dar-es-salaam-region-tz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dar-es-salaam-dar-es-salaam-region-tz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dar-es-salaam-dar-es-salaam-region-tz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dar-es-salaam-dar-es-salaam-region-tz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dar-es-salaam-dar-es-salaam-region-tz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dar-es-salaam-dar-es-salaam-region-tz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dar-es-salaam-dar-es-salaam-region-tz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dar-es-salaam-dar-es-salaam-region-tz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dar-es-salaam-dar-es-salaam-region-tz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dar-es-salaam-dar-es-salaam-region-tz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dar-es-salaam-dar-es-salaam-region-tz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dar-es-salaam-dar-es-salaam-region-tz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-petersburg-st-petersburg-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/saint-petersburg-st-petersburg-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-petersburg-st-petersburg-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-petersburg-st-petersburg-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-petersburg-st-petersburg-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-petersburg-st-petersburg-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-petersburg-st-petersburg-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-petersburg-st-petersburg-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-petersburg-st-petersburg-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-petersburg-st-petersburg-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-petersburg-st-petersburg-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-petersburg-st-petersburg-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-petersburg-st-petersburg-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-petersburg-st-petersburg-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandria-eg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/alexandria-eg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandria-eg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandria-eg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandria-eg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandria-eg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandria-eg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandria-eg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandria-eg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandria-eg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandria-eg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandria-eg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandria-eg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandria-eg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangkok-th", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bangkok-th/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangkok-th/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangkok-th/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangkok-th/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangkok-th/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangkok-th/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangkok-th/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangkok-th/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangkok-th/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangkok-th/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangkok-th/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangkok-th/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangkok-th/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-santiago-metropolitan-cl", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/santiago-santiago-metropolitan-cl/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-santiago-metropolitan-cl/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-santiago-metropolitan-cl/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-santiago-metropolitan-cl/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-santiago-metropolitan-cl/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-santiago-metropolitan-cl/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-santiago-metropolitan-cl/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-santiago-metropolitan-cl/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-santiago-metropolitan-cl/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-santiago-metropolitan-cl/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-santiago-metropolitan-cl/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-santiago-metropolitan-cl/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-santiago-metropolitan-cl/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cape-town-western-cape-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cape-town-western-cape-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cape-town-western-cape-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cape-town-western-cape-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cape-town-western-cape-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cape-town-western-cape-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cape-town-western-cape-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cape-town-western-cape-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cape-town-western-cape-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cape-town-western-cape-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cape-town-western-cape-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cape-town-western-cape-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cape-town-western-cape-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cape-town-western-cape-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jeddah-mecca-region-sa", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jeddah-mecca-region-sa/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jeddah-mecca-region-sa/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jeddah-mecca-region-sa/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jeddah-mecca-region-sa/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jeddah-mecca-region-sa/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jeddah-mecca-region-sa/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jeddah-mecca-region-sa/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jeddah-mecca-region-sa/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jeddah-mecca-region-sa/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jeddah-mecca-region-sa/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jeddah-mecca-region-sa/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jeddah-mecca-region-sa/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jeddah-mecca-region-sa/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chennai-tamil-nadu-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/chennai-tamil-nadu-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chennai-tamil-nadu-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chennai-tamil-nadu-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chennai-tamil-nadu-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chennai-tamil-nadu-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chennai-tamil-nadu-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chennai-tamil-nadu-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chennai-tamil-nadu-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chennai-tamil-nadu-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chennai-tamil-nadu-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chennai-tamil-nadu-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chennai-tamil-nadu-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chennai-tamil-nadu-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolkata-west-bengal-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kolkata-west-bengal-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolkata-west-bengal-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolkata-west-bengal-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolkata-west-bengal-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolkata-west-bengal-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolkata-west-bengal-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolkata-west-bengal-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolkata-west-bengal-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolkata-west-bengal-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolkata-west-bengal-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolkata-west-bengal-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolkata-west-bengal-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolkata-west-bengal-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surat-gujarat-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/surat-gujarat-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surat-gujarat-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surat-gujarat-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surat-gujarat-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surat-gujarat-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surat-gujarat-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surat-gujarat-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surat-gujarat-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surat-gujarat-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surat-gujarat-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surat-gujarat-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surat-gujarat-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surat-gujarat-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yangon-mm", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/yangon-mm/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yangon-mm/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yangon-mm/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yangon-mm/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yangon-mm/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yangon-mm/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yangon-mm/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yangon-mm/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yangon-mm/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yangon-mm/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yangon-mm/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yangon-mm/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yangon-mm/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kabul-af", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kabul-af/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kabul-af/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kabul-af/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kabul-af/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kabul-af/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kabul-af/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kabul-af/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kabul-af/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kabul-af/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kabul-af/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kabul-af/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kabul-af/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kabul-af/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nairobi-nairobi-county-ke", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/nairobi-nairobi-county-ke/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nairobi-nairobi-county-ke/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nairobi-nairobi-county-ke/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nairobi-nairobi-county-ke/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nairobi-nairobi-county-ke/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nairobi-nairobi-county-ke/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nairobi-nairobi-county-ke/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nairobi-nairobi-county-ke/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nairobi-nairobi-county-ke/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nairobi-nairobi-county-ke/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nairobi-nairobi-county-ke/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nairobi-nairobi-county-ke/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nairobi-nairobi-county-ke/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/giza-eg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/giza-eg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/giza-eg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/giza-eg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/giza-eg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/giza-eg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/giza-eg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/giza-eg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/giza-eg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/giza-eg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/giza-eg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/giza-eg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/giza-eg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/giza-eg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bamako-ml", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bamako-ml/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bamako-ml/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bamako-ml/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bamako-ml/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bamako-ml/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bamako-ml/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bamako-ml/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bamako-ml/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bamako-ml/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bamako-ml/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bamako-ml/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bamako-ml/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bamako-ml/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-taipei-city-taipei-tw", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/new-taipei-city-taipei-tw/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-taipei-city-taipei-tw/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-taipei-city-taipei-tw/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-taipei-city-taipei-tw/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-taipei-city-taipei-tw/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-taipei-city-taipei-tw/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-taipei-city-taipei-tw/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-taipei-city-taipei-tw/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-taipei-city-taipei-tw/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-taipei-city-taipei-tw/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-taipei-city-taipei-tw/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-taipei-city-taipei-tw/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-taipei-city-taipei-tw/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-territories-hk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/new-territories-hk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-territories-hk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-territories-hk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-territories-hk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-territories-hk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-territories-hk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-territories-hk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-territories-hk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-territories-hk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-territories-hk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-territories-hk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-territories-hk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-territories-hk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/addis-ababa-et", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/addis-ababa-et/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/addis-ababa-et/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/addis-ababa-et/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/addis-ababa-et/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/addis-ababa-et/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/addis-ababa-et/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/addis-ababa-et/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/addis-ababa-et/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/addis-ababa-et/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/addis-ababa-et/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/addis-ababa-et/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/addis-ababa-et/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/addis-ababa-et/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/los-angeles-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/los-angeles-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/los-angeles-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/los-angeles-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/los-angeles-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/los-angeles-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/los-angeles-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/los-angeles-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/los-angeles-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/los-angeles-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/los-angeles-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/los-angeles-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/los-angeles-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/los-angeles-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faisalabad-punjab-pk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/faisalabad-punjab-pk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faisalabad-punjab-pk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faisalabad-punjab-pk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faisalabad-punjab-pk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faisalabad-punjab-pk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faisalabad-punjab-pk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faisalabad-punjab-pk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faisalabad-punjab-pk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faisalabad-punjab-pk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faisalabad-punjab-pk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faisalabad-punjab-pk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faisalabad-punjab-pk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faisalabad-punjab-pk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dubai-ae", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dubai-ae/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dubai-ae/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dubai-ae/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dubai-ae/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dubai-ae/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dubai-ae/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dubai-ae/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dubai-ae/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dubai-ae/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dubai-ae/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dubai-ae/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dubai-ae/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dubai-ae/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yokohama-kanagawa-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/yokohama-kanagawa-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yokohama-kanagawa-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yokohama-kanagawa-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yokohama-kanagawa-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yokohama-kanagawa-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yokohama-kanagawa-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yokohama-kanagawa-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yokohama-kanagawa-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yokohama-kanagawa-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yokohama-kanagawa-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yokohama-kanagawa-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yokohama-kanagawa-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yokohama-kanagawa-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/casablanca-casablanca-settat-ma", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/casablanca-casablanca-settat-ma/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/casablanca-casablanca-settat-ma/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/casablanca-casablanca-settat-ma/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/casablanca-casablanca-settat-ma/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/casablanca-casablanca-settat-ma/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/casablanca-casablanca-settat-ma/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/casablanca-casablanca-settat-ma/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/casablanca-casablanca-settat-ma/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/casablanca-casablanca-settat-ma/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/casablanca-casablanca-settat-ma/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/casablanca-casablanca-settat-ma/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/casablanca-casablanca-settat-ma/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/casablanca-casablanca-settat-ma/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ankara-tr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ankara-tr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ankara-tr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ankara-tr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ankara-tr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ankara-tr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ankara-tr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ankara-tr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ankara-tr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ankara-tr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ankara-tr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ankara-tr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ankara-tr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ankara-tr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/berlin-state-of-berlin-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/berlin-state-of-berlin-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/berlin-state-of-berlin-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/berlin-state-of-berlin-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/berlin-state-of-berlin-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/berlin-state-of-berlin-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/berlin-state-of-berlin-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/berlin-state-of-berlin-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/berlin-state-of-berlin-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/berlin-state-of-berlin-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/berlin-state-of-berlin-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/berlin-state-of-berlin-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/berlin-state-of-berlin-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/berlin-state-of-berlin-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rawalpindi-punjab-pk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rawalpindi-punjab-pk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rawalpindi-punjab-pk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rawalpindi-punjab-pk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rawalpindi-punjab-pk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rawalpindi-punjab-pk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rawalpindi-punjab-pk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rawalpindi-punjab-pk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rawalpindi-punjab-pk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rawalpindi-punjab-pk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rawalpindi-punjab-pk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rawalpindi-punjab-pk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rawalpindi-punjab-pk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rawalpindi-punjab-pk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durban-kwazulu-natal-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/durban-kwazulu-natal-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durban-kwazulu-natal-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durban-kwazulu-natal-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durban-kwazulu-natal-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durban-kwazulu-natal-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durban-kwazulu-natal-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durban-kwazulu-natal-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durban-kwazulu-natal-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durban-kwazulu-natal-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durban-kwazulu-natal-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durban-kwazulu-natal-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durban-kwazulu-natal-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durban-kwazulu-natal-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/busan-kr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/busan-kr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/busan-kr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/busan-kr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/busan-kr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/busan-kr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/busan-kr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/busan-kr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/busan-kr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/busan-kr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/busan-kr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/busan-kr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/busan-kr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/busan-kr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madrid-es", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/madrid-es/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madrid-es/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madrid-es/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madrid-es/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madrid-es/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madrid-es/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madrid-es/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madrid-es/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madrid-es/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madrid-es/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madrid-es/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madrid-es/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madrid-es/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pyongyang-kp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/pyongyang-kp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pyongyang-kp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pyongyang-kp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pyongyang-kp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pyongyang-kp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pyongyang-kp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pyongyang-kp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pyongyang-kp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pyongyang-kp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pyongyang-kp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pyongyang-kp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pyongyang-kp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pyongyang-kp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pune-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/pune-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pune-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pune-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pune-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pune-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pune-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pune-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pune-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pune-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pune-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pune-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pune-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pune-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bursa-bursa-province-tr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bursa-bursa-province-tr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bursa-bursa-province-tr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bursa-bursa-province-tr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bursa-bursa-province-tr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bursa-bursa-province-tr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bursa-bursa-province-tr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bursa-bursa-province-tr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bursa-bursa-province-tr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bursa-bursa-province-tr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bursa-bursa-province-tr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bursa-bursa-province-tr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bursa-bursa-province-tr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bursa-bursa-province-tr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quezon-city-national-capital-region-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/quezon-city-national-capital-region-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quezon-city-national-capital-region-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quezon-city-national-capital-region-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quezon-city-national-capital-region-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quezon-city-national-capital-region-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quezon-city-national-capital-region-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quezon-city-national-capital-region-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quezon-city-national-capital-region-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quezon-city-national-capital-region-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quezon-city-national-capital-region-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quezon-city-national-capital-region-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quezon-city-national-capital-region-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quezon-city-national-capital-region-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jaipur-rajasthan-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jaipur-rajasthan-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jaipur-rajasthan-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jaipur-rajasthan-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jaipur-rajasthan-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jaipur-rajasthan-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jaipur-rajasthan-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jaipur-rajasthan-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jaipur-rajasthan-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jaipur-rajasthan-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jaipur-rajasthan-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jaipur-rajasthan-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jaipur-rajasthan-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jaipur-rajasthan-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surabaya-east-java-id", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/surabaya-east-java-id/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surabaya-east-java-id/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surabaya-east-java-id/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surabaya-east-java-id/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surabaya-east-java-id/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surabaya-east-java-id/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surabaya-east-java-id/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surabaya-east-java-id/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surabaya-east-java-id/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surabaya-east-java-id/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surabaya-east-java-id/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surabaya-east-java-id/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surabaya-east-java-id/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/incheon-kr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/incheon-kr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/incheon-kr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/incheon-kr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/incheon-kr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/incheon-kr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/incheon-kr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/incheon-kr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/incheon-kr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/incheon-kr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/incheon-kr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/incheon-kr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/incheon-kr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/incheon-kr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caracas-distrito-federal-ve", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/caracas-distrito-federal-ve/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caracas-distrito-federal-ve/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caracas-distrito-federal-ve/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caracas-distrito-federal-ve/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caracas-distrito-federal-ve/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caracas-distrito-federal-ve/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caracas-distrito-federal-ve/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caracas-distrito-federal-ve/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caracas-distrito-federal-ve/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caracas-distrito-federal-ve/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caracas-distrito-federal-ve/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caracas-distrito-federal-ve/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caracas-distrito-federal-ve/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyiv-kyiv-city-ua", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kyiv-kyiv-city-ua/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyiv-kyiv-city-ua/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyiv-kyiv-city-ua/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyiv-kyiv-city-ua/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyiv-kyiv-city-ua/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyiv-kyiv-city-ua/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyiv-kyiv-city-ua/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyiv-kyiv-city-ua/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyiv-kyiv-city-ua/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyiv-kyiv-city-ua/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyiv-kyiv-city-ua/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyiv-kyiv-city-ua/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyiv-kyiv-city-ua/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/izmir-izmir-province-tr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/izmir-izmir-province-tr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/izmir-izmir-province-tr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/izmir-izmir-province-tr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/izmir-izmir-province-tr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/izmir-izmir-province-tr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/izmir-izmir-province-tr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/izmir-izmir-province-tr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/izmir-izmir-province-tr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/izmir-izmir-province-tr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/izmir-izmir-province-tr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/izmir-izmir-province-tr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/izmir-izmir-province-tr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/izmir-izmir-province-tr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buenos-aires-buenos-aires-f-d-ar", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/buenos-aires-buenos-aires-f-d-ar/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buenos-aires-buenos-aires-f-d-ar/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buenos-aires-buenos-aires-f-d-ar/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buenos-aires-buenos-aires-f-d-ar/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buenos-aires-buenos-aires-f-d-ar/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buenos-aires-buenos-aires-f-d-ar/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buenos-aires-buenos-aires-f-d-ar/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buenos-aires-buenos-aires-f-d-ar/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buenos-aires-buenos-aires-f-d-ar/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buenos-aires-buenos-aires-f-d-ar/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buenos-aires-buenos-aires-f-d-ar/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buenos-aires-buenos-aires-f-d-ar/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buenos-aires-buenos-aires-f-d-ar/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taichung-taiwan-tw", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/taichung-taiwan-tw/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taichung-taiwan-tw/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taichung-taiwan-tw/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taichung-taiwan-tw/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taichung-taiwan-tw/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taichung-taiwan-tw/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taichung-taiwan-tw/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taichung-taiwan-tw/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taichung-taiwan-tw/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taichung-taiwan-tw/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taichung-taiwan-tw/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taichung-taiwan-tw/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taichung-taiwan-tw/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanpur-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kanpur-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanpur-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanpur-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanpur-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanpur-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanpur-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanpur-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanpur-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanpur-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanpur-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanpur-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanpur-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanpur-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toronto-ontario-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/toronto-ontario-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toronto-ontario-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toronto-ontario-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toronto-ontario-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toronto-ontario-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toronto-ontario-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toronto-ontario-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toronto-ontario-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toronto-ontario-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toronto-ontario-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toronto-ontario-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toronto-ontario-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toronto-ontario-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quito-pichincha-ec", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/quito-pichincha-ec/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quito-pichincha-ec/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quito-pichincha-ec/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quito-pichincha-ec/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quito-pichincha-ec/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quito-pichincha-ec/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quito-pichincha-ec/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quito-pichincha-ec/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quito-pichincha-ec/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quito-pichincha-ec/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quito-pichincha-ec/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quito-pichincha-ec/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quito-pichincha-ec/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brisbane-queensland-au", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/brisbane-queensland-au/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brisbane-queensland-au/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brisbane-queensland-au/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brisbane-queensland-au/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brisbane-queensland-au/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brisbane-queensland-au/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brisbane-queensland-au/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brisbane-queensland-au/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brisbane-queensland-au/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brisbane-queensland-au/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brisbane-queensland-au/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brisbane-queensland-au/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brisbane-queensland-au/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luanda-ao", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/luanda-ao/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luanda-ao/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luanda-ao/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luanda-ao/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luanda-ao/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luanda-ao/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luanda-ao/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luanda-ao/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luanda-ao/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luanda-ao/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luanda-ao/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luanda-ao/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luanda-ao/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osaka-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/osaka-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osaka-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osaka-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osaka-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osaka-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osaka-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osaka-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osaka-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osaka-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osaka-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osaka-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osaka-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osaka-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaohsiung-takao-tw", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kaohsiung-takao-tw/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaohsiung-takao-tw/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaohsiung-takao-tw/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaohsiung-takao-tw/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaohsiung-takao-tw/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaohsiung-takao-tw/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaohsiung-takao-tw/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaohsiung-takao-tw/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaohsiung-takao-tw/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaohsiung-takao-tw/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaohsiung-takao-tw/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaohsiung-takao-tw/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaohsiung-takao-tw/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brooklyn-new-york-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/brooklyn-new-york-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brooklyn-new-york-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brooklyn-new-york-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brooklyn-new-york-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brooklyn-new-york-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brooklyn-new-york-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brooklyn-new-york-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brooklyn-new-york-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brooklyn-new-york-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brooklyn-new-york-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brooklyn-new-york-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brooklyn-new-york-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brooklyn-new-york-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guayaquil-guayas-ec", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/guayaquil-guayas-ec/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guayaquil-guayas-ec/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guayaquil-guayas-ec/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guayaquil-guayas-ec/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guayaquil-guayas-ec/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guayaquil-guayas-ec/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guayaquil-guayas-ec/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guayaquil-guayas-ec/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guayaquil-guayas-ec/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guayaquil-guayas-ec/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guayaquil-guayas-ec/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guayaquil-guayas-ec/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guayaquil-guayas-ec/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belo-horizonte-minas-gerais-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/belo-horizonte-minas-gerais-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belo-horizonte-minas-gerais-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belo-horizonte-minas-gerais-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belo-horizonte-minas-gerais-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belo-horizonte-minas-gerais-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belo-horizonte-minas-gerais-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belo-horizonte-minas-gerais-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belo-horizonte-minas-gerais-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belo-horizonte-minas-gerais-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belo-horizonte-minas-gerais-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belo-horizonte-minas-gerais-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belo-horizonte-minas-gerais-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belo-horizonte-minas-gerais-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salvador-bahia-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/salvador-bahia-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salvador-bahia-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salvador-bahia-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salvador-bahia-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salvador-bahia-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salvador-bahia-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salvador-bahia-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salvador-bahia-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salvador-bahia-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salvador-bahia-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salvador-bahia-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salvador-bahia-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salvador-bahia-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abuja-fct-ng", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/abuja-fct-ng/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abuja-fct-ng/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abuja-fct-ng/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abuja-fct-ng/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abuja-fct-ng/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abuja-fct-ng/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abuja-fct-ng/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abuja-fct-ng/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abuja-fct-ng/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abuja-fct-ng/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abuja-fct-ng/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abuja-fct-ng/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abuja-fct-ng/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chicago-illinois-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/chicago-illinois-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chicago-illinois-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chicago-illinois-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chicago-illinois-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chicago-illinois-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chicago-illinois-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chicago-illinois-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chicago-illinois-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chicago-illinois-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chicago-illinois-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chicago-illinois-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chicago-illinois-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chicago-illinois-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bekasi-west-java-id", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bekasi-west-java-id/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bekasi-west-java-id/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bekasi-west-java-id/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bekasi-west-java-id/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bekasi-west-java-id/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bekasi-west-java-id/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bekasi-west-java-id/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bekasi-west-java-id/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bekasi-west-java-id/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bekasi-west-java-id/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bekasi-west-java-id/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bekasi-west-java-id/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bekasi-west-java-id/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dakar-sn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dakar-sn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dakar-sn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dakar-sn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dakar-sn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dakar-sn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dakar-sn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dakar-sn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dakar-sn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dakar-sn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dakar-sn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dakar-sn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dakar-sn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dakar-sn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haiphong-hai-phong-vn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/haiphong-hai-phong-vn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haiphong-hai-phong-vn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haiphong-hai-phong-vn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haiphong-hai-phong-vn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haiphong-hai-phong-vn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haiphong-hai-phong-vn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haiphong-hai-phong-vn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haiphong-hai-phong-vn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haiphong-hai-phong-vn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haiphong-hai-phong-vn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haiphong-hai-phong-vn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haiphong-hai-phong-vn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haiphong-hai-phong-vn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/navi-mumbai-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/navi-mumbai-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/navi-mumbai-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/navi-mumbai-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/navi-mumbai-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/navi-mumbai-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/navi-mumbai-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/navi-mumbai-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/navi-mumbai-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/navi-mumbai-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/navi-mumbai-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/navi-mumbai-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/navi-mumbai-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/navi-mumbai-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mogadishu-banaadir-so", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mogadishu-banaadir-so/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mogadishu-banaadir-so/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mogadishu-banaadir-so/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mogadishu-banaadir-so/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mogadishu-banaadir-so/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mogadishu-banaadir-so/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mogadishu-banaadir-so/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mogadishu-banaadir-so/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mogadishu-banaadir-so/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mogadishu-banaadir-so/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mogadishu-banaadir-so/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mogadishu-banaadir-so/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mogadishu-banaadir-so/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumasi-ashanti-gh", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kumasi-ashanti-gh/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumasi-ashanti-gh/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumasi-ashanti-gh/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumasi-ashanti-gh/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumasi-ashanti-gh/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumasi-ashanti-gh/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumasi-ashanti-gh/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumasi-ashanti-gh/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumasi-ashanti-gh/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumasi-ashanti-gh/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumasi-ashanti-gh/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumasi-ashanti-gh/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumasi-ashanti-gh/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lucknow-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/lucknow-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lucknow-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lucknow-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lucknow-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lucknow-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lucknow-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lucknow-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lucknow-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lucknow-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lucknow-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lucknow-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lucknow-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lucknow-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ouagadougou-centre-bf", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ouagadougou-centre-bf/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ouagadougou-centre-bf/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ouagadougou-centre-bf/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ouagadougou-centre-bf/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ouagadougou-centre-bf/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ouagadougou-centre-bf/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ouagadougou-centre-bf/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ouagadougou-centre-bf/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ouagadougou-centre-bf/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ouagadougou-centre-bf/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ouagadougou-centre-bf/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ouagadougou-centre-bf/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ouagadougou-centre-bf/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagpur-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/nagpur-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagpur-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagpur-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagpur-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagpur-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagpur-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagpur-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagpur-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagpur-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagpur-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagpur-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagpur-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagpur-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fortaleza-ceara-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/fortaleza-ceara-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fortaleza-ceara-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fortaleza-ceara-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fortaleza-ceara-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fortaleza-ceara-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fortaleza-ceara-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fortaleza-ceara-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fortaleza-ceara-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fortaleza-ceara-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fortaleza-ceara-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fortaleza-ceara-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fortaleza-ceara-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fortaleza-ceara-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cali-valle-del-cauca-department-co", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cali-valle-del-cauca-department-co/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cali-valle-del-cauca-department-co/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cali-valle-del-cauca-department-co/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cali-valle-del-cauca-department-co/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cali-valle-del-cauca-department-co/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cali-valle-del-cauca-department-co/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cali-valle-del-cauca-department-co/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cali-valle-del-cauca-department-co/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cali-valle-del-cauca-department-co/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cali-valle-del-cauca-department-co/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cali-valle-del-cauca-department-co/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cali-valle-del-cauca-department-co/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cali-valle-del-cauca-department-co/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perth-western-australia-au", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/perth-western-australia-au/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perth-western-australia-au/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perth-western-australia-au/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perth-western-australia-au/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perth-western-australia-au/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perth-western-australia-au/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perth-western-australia-au/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perth-western-australia-au/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perth-western-australia-au/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perth-western-australia-au/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perth-western-australia-au/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perth-western-australia-au/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perth-western-australia-au/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daegu-kr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/daegu-kr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daegu-kr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daegu-kr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daegu-kr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daegu-kr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daegu-kr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daegu-kr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daegu-kr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daegu-kr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daegu-kr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daegu-kr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daegu-kr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daegu-kr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baku-baki-az", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/baku-baki-az/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baku-baki-az/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baku-baki-az/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baku-baki-az/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baku-baki-az/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baku-baki-az/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baku-baki-az/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baku-baki-az/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baku-baki-az/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baku-baki-az/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baku-baki-az/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baku-baki-az/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baku-baki-az/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagoya-aichi-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/nagoya-aichi-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagoya-aichi-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagoya-aichi-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagoya-aichi-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagoya-aichi-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagoya-aichi-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagoya-aichi-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagoya-aichi-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagoya-aichi-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagoya-aichi-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagoya-aichi-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagoya-aichi-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nagoya-aichi-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rome-lazio-it", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rome-lazio-it/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rome-lazio-it/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rome-lazio-it/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rome-lazio-it/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rome-lazio-it/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rome-lazio-it/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rome-lazio-it/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rome-lazio-it/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rome-lazio-it/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rome-lazio-it/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rome-lazio-it/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rome-lazio-it/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rome-lazio-it/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/queens-new-york-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/queens-new-york-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/queens-new-york-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/queens-new-york-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/queens-new-york-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/queens-new-york-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/queens-new-york-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/queens-new-york-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/queens-new-york-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/queens-new-york-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/queens-new-york-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/queens-new-york-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/queens-new-york-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/queens-new-york-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/houston-texas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/houston-texas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/houston-texas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/houston-texas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/houston-texas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/houston-texas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/houston-texas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/houston-texas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/houston-texas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/houston-texas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/houston-texas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/houston-texas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/houston-texas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/houston-texas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-hk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kowloon-hk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-hk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-hk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-hk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-hk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-hk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-hk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-hk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-hk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-hk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-hk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-hk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-hk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaziantep-tr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gaziantep-tr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaziantep-tr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaziantep-tr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaziantep-tr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaziantep-tr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaziantep-tr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaziantep-tr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaziantep-tr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaziantep-tr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaziantep-tr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaziantep-tr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaziantep-tr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaziantep-tr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubumbashi-haut-katanga-cd", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/lubumbashi-haut-katanga-cd/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubumbashi-haut-katanga-cd/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubumbashi-haut-katanga-cd/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubumbashi-haut-katanga-cd/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubumbashi-haut-katanga-cd/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubumbashi-haut-katanga-cd/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubumbashi-haut-katanga-cd/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubumbashi-haut-katanga-cd/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubumbashi-haut-katanga-cd/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubumbashi-haut-katanga-cd/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubumbashi-haut-katanga-cd/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubumbashi-haut-katanga-cd/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubumbashi-haut-katanga-cd/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manaus-amazonas-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/manaus-amazonas-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manaus-amazonas-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manaus-amazonas-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manaus-amazonas-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manaus-amazonas-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manaus-amazonas-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manaus-amazonas-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manaus-amazonas-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manaus-amazonas-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manaus-amazonas-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manaus-amazonas-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manaus-amazonas-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manaus-amazonas-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lusaka-lusaka-province-zm", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/lusaka-lusaka-province-zm/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lusaka-lusaka-province-zm/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lusaka-lusaka-province-zm/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lusaka-lusaka-province-zm/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lusaka-lusaka-province-zm/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lusaka-lusaka-province-zm/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lusaka-lusaka-province-zm/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lusaka-lusaka-province-zm/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lusaka-lusaka-province-zm/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lusaka-lusaka-province-zm/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lusaka-lusaka-province-zm/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lusaka-lusaka-province-zm/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lusaka-lusaka-province-zm/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brasilia-federal-district-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/brasilia-federal-district-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brasilia-federal-district-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brasilia-federal-district-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brasilia-federal-district-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brasilia-federal-district-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brasilia-federal-district-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brasilia-federal-district-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brasilia-federal-district-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brasilia-federal-district-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brasilia-federal-district-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brasilia-federal-district-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brasilia-federal-district-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brasilia-federal-district-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-nacional-do", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/santo-domingo-nacional-do/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-nacional-do/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-nacional-do/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-nacional-do/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-nacional-do/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-nacional-do/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-nacional-do/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-nacional-do/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-nacional-do/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-nacional-do/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-nacional-do/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-nacional-do/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-nacional-do/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lome-maritime-tg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/lome-maritime-tg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lome-maritime-tg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lome-maritime-tg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lome-maritime-tg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lome-maritime-tg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lome-maritime-tg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lome-maritime-tg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lome-maritime-tg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lome-maritime-tg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lome-maritime-tg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lome-maritime-tg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lome-maritime-tg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lome-maritime-tg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/multan-punjab-pk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/multan-punjab-pk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/multan-punjab-pk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/multan-punjab-pk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/multan-punjab-pk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/multan-punjab-pk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/multan-punjab-pk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/multan-punjab-pk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/multan-punjab-pk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/multan-punjab-pk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/multan-punjab-pk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/multan-punjab-pk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/multan-punjab-pk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/multan-punjab-pk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/havana-cu", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/havana-cu/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/havana-cu/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/havana-cu/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/havana-cu/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/havana-cu/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/havana-cu/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/havana-cu/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/havana-cu/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/havana-cu/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/havana-cu/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/havana-cu/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/havana-cu/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/havana-cu/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paris-ile-de-france-fr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/paris-ile-de-france-fr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paris-ile-de-france-fr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paris-ile-de-france-fr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paris-ile-de-france-fr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paris-ile-de-france-fr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paris-ile-de-france-fr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paris-ile-de-france-fr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paris-ile-de-france-fr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paris-ile-de-france-fr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paris-ile-de-france-fr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paris-ile-de-france-fr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paris-ile-de-france-fr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paris-ile-de-france-fr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coimbatore-tamil-nadu-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/coimbatore-tamil-nadu-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coimbatore-tamil-nadu-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coimbatore-tamil-nadu-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coimbatore-tamil-nadu-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coimbatore-tamil-nadu-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coimbatore-tamil-nadu-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coimbatore-tamil-nadu-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coimbatore-tamil-nadu-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coimbatore-tamil-nadu-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coimbatore-tamil-nadu-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coimbatore-tamil-nadu-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coimbatore-tamil-nadu-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coimbatore-tamil-nadu-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pretoria-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/pretoria-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pretoria-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pretoria-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pretoria-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pretoria-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pretoria-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pretoria-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pretoria-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pretoria-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pretoria-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pretoria-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pretoria-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pretoria-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cordoba-ar", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cordoba-ar/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cordoba-ar/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cordoba-ar/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cordoba-ar/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cordoba-ar/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cordoba-ar/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cordoba-ar/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cordoba-ar/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cordoba-ar/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cordoba-ar/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cordoba-ar/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cordoba-ar/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cordoba-ar/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mbuji-mayi-east-kasai-cd", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mbuji-mayi-east-kasai-cd/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mbuji-mayi-east-kasai-cd/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mbuji-mayi-east-kasai-cd/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mbuji-mayi-east-kasai-cd/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mbuji-mayi-east-kasai-cd/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mbuji-mayi-east-kasai-cd/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mbuji-mayi-east-kasai-cd/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mbuji-mayi-east-kasai-cd/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mbuji-mayi-east-kasai-cd/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mbuji-mayi-east-kasai-cd/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mbuji-mayi-east-kasai-cd/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mbuji-mayi-east-kasai-cd/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mbuji-mayi-east-kasai-cd/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/la-paz-la-paz-department-bo", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/la-paz-la-paz-department-bo/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/la-paz-la-paz-department-bo/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/la-paz-la-paz-department-bo/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/la-paz-la-paz-department-bo/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/la-paz-la-paz-department-bo/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/la-paz-la-paz-department-bo/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/la-paz-la-paz-department-bo/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/la-paz-la-paz-department-bo/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/la-paz-la-paz-department-bo/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/la-paz-la-paz-department-bo/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/la-paz-la-paz-department-bo/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/la-paz-la-paz-department-bo/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/la-paz-la-paz-department-bo/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/medellin-antioquia-co", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/medellin-antioquia-co/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/medellin-antioquia-co/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/medellin-antioquia-co/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/medellin-antioquia-co/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/medellin-antioquia-co/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/medellin-antioquia-co/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/medellin-antioquia-co/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/medellin-antioquia-co/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/medellin-antioquia-co/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/medellin-antioquia-co/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/medellin-antioquia-co/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/medellin-antioquia-co/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/medellin-antioquia-co/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indore-madhya-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/indore-madhya-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indore-madhya-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indore-madhya-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indore-madhya-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indore-madhya-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indore-madhya-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indore-madhya-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indore-madhya-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indore-madhya-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indore-madhya-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indore-madhya-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indore-madhya-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indore-madhya-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brazzaville-cg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/brazzaville-cg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brazzaville-cg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brazzaville-cg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brazzaville-cg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brazzaville-cg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brazzaville-cg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brazzaville-cg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brazzaville-cg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brazzaville-cg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brazzaville-cg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brazzaville-cg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brazzaville-cg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brazzaville-cg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tashkent-uz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tashkent-uz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tashkent-uz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tashkent-uz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tashkent-uz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tashkent-uz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tashkent-uz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tashkent-uz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tashkent-uz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tashkent-uz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tashkent-uz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tashkent-uz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tashkent-uz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tashkent-uz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/almaty-kz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/almaty-kz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/almaty-kz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/almaty-kz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/almaty-kz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/almaty-kz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/almaty-kz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/almaty-kz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/almaty-kz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/almaty-kz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/almaty-kz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/almaty-kz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/almaty-kz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/almaty-kz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hamburg-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sapporo-hokkaido-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sapporo-hokkaido-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sapporo-hokkaido-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sapporo-hokkaido-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sapporo-hokkaido-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sapporo-hokkaido-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sapporo-hokkaido-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sapporo-hokkaido-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sapporo-hokkaido-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sapporo-hokkaido-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sapporo-hokkaido-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sapporo-hokkaido-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sapporo-hokkaido-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sapporo-hokkaido-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/accra-greater-accra-gh", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/accra-greater-accra-gh/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/accra-greater-accra-gh/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/accra-greater-accra-gh/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/accra-greater-accra-gh/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/accra-greater-accra-gh/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/accra-greater-accra-gh/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/accra-greater-accra-gh/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/accra-greater-accra-gh/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/accra-greater-accra-gh/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/accra-greater-accra-gh/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/accra-greater-accra-gh/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/accra-greater-accra-gh/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/accra-greater-accra-gh/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/curitiba-parana-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/curitiba-parana-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/curitiba-parana-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/curitiba-parana-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/curitiba-parana-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/curitiba-parana-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/curitiba-parana-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/curitiba-parana-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/curitiba-parana-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/curitiba-parana-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/curitiba-parana-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/curitiba-parana-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/curitiba-parana-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/curitiba-parana-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/conakry-gn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/conakry-gn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/conakry-gn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/conakry-gn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/conakry-gn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/conakry-gn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/conakry-gn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/conakry-gn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/conakry-gn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/conakry-gn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/conakry-gn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/conakry-gn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/conakry-gn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/conakry-gn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tijuana-baja-california-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tijuana-baja-california-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tijuana-baja-california-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tijuana-baja-california-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tijuana-baja-california-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tijuana-baja-california-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tijuana-baja-california-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tijuana-baja-california-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tijuana-baja-california-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tijuana-baja-california-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tijuana-baja-california-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tijuana-baja-california-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tijuana-baja-california-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tijuana-baja-california-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-sindh-pk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hyderabad-sindh-pk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-sindh-pk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-sindh-pk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-sindh-pk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-sindh-pk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-sindh-pk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-sindh-pk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-sindh-pk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-sindh-pk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-sindh-pk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-sindh-pk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-sindh-pk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hyderabad-sindh-pk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beirut-lb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/beirut-lb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beirut-lb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beirut-lb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beirut-lb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beirut-lb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beirut-lb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beirut-lb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beirut-lb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beirut-lb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beirut-lb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beirut-lb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beirut-lb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beirut-lb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucharest-ro", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bucharest-ro/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucharest-ro/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucharest-ro/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucharest-ro/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucharest-ro/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucharest-ro/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucharest-ro/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucharest-ro/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucharest-ro/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucharest-ro/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucharest-ro/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucharest-ro/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucharest-ro/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camayenne-conakry-gn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/camayenne-conakry-gn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camayenne-conakry-gn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camayenne-conakry-gn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camayenne-conakry-gn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camayenne-conakry-gn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camayenne-conakry-gn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camayenne-conakry-gn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camayenne-conakry-gn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camayenne-conakry-gn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camayenne-conakry-gn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camayenne-conakry-gn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camayenne-conakry-gn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camayenne-conakry-gn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tainan-taiwan-tw", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tainan-taiwan-tw/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tainan-taiwan-tw/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tainan-taiwan-tw/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tainan-taiwan-tw/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tainan-taiwan-tw/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tainan-taiwan-tw/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tainan-taiwan-tw/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tainan-taiwan-tw/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tainan-taiwan-tw/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tainan-taiwan-tw/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tainan-taiwan-tw/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tainan-taiwan-tw/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tainan-taiwan-tw/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davao-davao-region-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/davao-davao-region-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davao-davao-region-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davao-davao-region-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davao-davao-region-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davao-davao-region-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davao-davao-region-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davao-davao-region-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davao-davao-region-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davao-davao-region-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davao-davao-region-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davao-davao-region-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davao-davao-region-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davao-davao-region-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thane-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/thane-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thane-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thane-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thane-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thane-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thane-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thane-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thane-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thane-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thane-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thane-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thane-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thane-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iztapalapa-mexico-city-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/iztapalapa-mexico-city-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iztapalapa-mexico-city-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iztapalapa-mexico-city-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iztapalapa-mexico-city-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iztapalapa-mexico-city-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iztapalapa-mexico-city-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iztapalapa-mexico-city-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iztapalapa-mexico-city-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iztapalapa-mexico-city-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iztapalapa-mexico-city-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iztapalapa-mexico-city-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iztapalapa-mexico-city-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iztapalapa-mexico-city-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diyarbakr-diyarbakr-province-tr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/diyarbakr-diyarbakr-province-tr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diyarbakr-diyarbakr-province-tr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diyarbakr-diyarbakr-province-tr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diyarbakr-diyarbakr-province-tr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diyarbakr-diyarbakr-province-tr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diyarbakr-diyarbakr-province-tr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diyarbakr-diyarbakr-province-tr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diyarbakr-diyarbakr-province-tr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diyarbakr-diyarbakr-province-tr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diyarbakr-diyarbakr-province-tr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diyarbakr-diyarbakr-province-tr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diyarbakr-diyarbakr-province-tr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diyarbakr-diyarbakr-province-tr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-cruz-de-la-sierra-santa-cruz-department-bo", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/santa-cruz-de-la-sierra-santa-cruz-department-bo/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-cruz-de-la-sierra-santa-cruz-department-bo/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-cruz-de-la-sierra-santa-cruz-department-bo/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-cruz-de-la-sierra-santa-cruz-department-bo/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-cruz-de-la-sierra-santa-cruz-department-bo/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-cruz-de-la-sierra-santa-cruz-department-bo/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-cruz-de-la-sierra-santa-cruz-department-bo/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-cruz-de-la-sierra-santa-cruz-department-bo/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-cruz-de-la-sierra-santa-cruz-department-bo/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-cruz-de-la-sierra-santa-cruz-department-bo/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-cruz-de-la-sierra-santa-cruz-department-bo/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-cruz-de-la-sierra-santa-cruz-department-bo/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-cruz-de-la-sierra-santa-cruz-department-bo/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vadodara-gujarat-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/vadodara-gujarat-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vadodara-gujarat-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vadodara-gujarat-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vadodara-gujarat-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vadodara-gujarat-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vadodara-gujarat-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vadodara-gujarat-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vadodara-gujarat-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vadodara-gujarat-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vadodara-gujarat-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vadodara-gujarat-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vadodara-gujarat-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vadodara-gujarat-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adana-tr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/adana-tr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adana-tr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adana-tr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adana-tr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adana-tr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adana-tr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adana-tr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adana-tr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adana-tr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adana-tr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adana-tr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adana-tr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adana-tr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abu-dhabi-ae", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/abu-dhabi-ae/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abu-dhabi-ae/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abu-dhabi-ae/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abu-dhabi-ae/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abu-dhabi-ae/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abu-dhabi-ae/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abu-dhabi-ae/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abu-dhabi-ae/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abu-dhabi-ae/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abu-dhabi-ae/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abu-dhabi-ae/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abu-dhabi-ae/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abu-dhabi-ae/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhopal-madhya-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bhopal-madhya-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhopal-madhya-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhopal-madhya-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhopal-madhya-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhopal-madhya-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhopal-madhya-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhopal-madhya-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhopal-madhya-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhopal-madhya-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhopal-madhya-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhopal-madhya-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhopal-madhya-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhopal-madhya-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montreal-quebec-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/montreal-quebec-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montreal-quebec-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montreal-quebec-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montreal-quebec-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montreal-quebec-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montreal-quebec-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montreal-quebec-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montreal-quebec-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montreal-quebec-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montreal-quebec-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montreal-quebec-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montreal-quebec-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montreal-quebec-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maracaibo-zulia-ve", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/maracaibo-zulia-ve/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maracaibo-zulia-ve/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maracaibo-zulia-ve/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maracaibo-zulia-ve/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maracaibo-zulia-ve/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maracaibo-zulia-ve/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maracaibo-zulia-ve/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maracaibo-zulia-ve/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maracaibo-zulia-ve/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maracaibo-zulia-ve/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maracaibo-zulia-ve/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maracaibo-zulia-ve/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maracaibo-zulia-ve/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minsk-minsk-city-by", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/minsk-minsk-city-by/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minsk-minsk-city-by/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minsk-minsk-city-by/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minsk-minsk-city-by/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minsk-minsk-city-by/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minsk-minsk-city-by/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minsk-minsk-city-by/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minsk-minsk-city-by/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minsk-minsk-city-by/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minsk-minsk-city-by/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minsk-minsk-city-by/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minsk-minsk-city-by/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minsk-minsk-city-by/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budapest-hu", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/budapest-hu/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budapest-hu/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budapest-hu/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budapest-hu/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budapest-hu/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budapest-hu/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budapest-hu/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budapest-hu/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budapest-hu/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budapest-hu/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budapest-hu/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budapest-hu/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budapest-hu/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rasapudipalem-andhra-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rasapudipalem-andhra-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rasapudipalem-andhra-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rasapudipalem-andhra-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rasapudipalem-andhra-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rasapudipalem-andhra-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rasapudipalem-andhra-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rasapudipalem-andhra-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rasapudipalem-andhra-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rasapudipalem-andhra-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rasapudipalem-andhra-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rasapudipalem-andhra-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rasapudipalem-andhra-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rasapudipalem-andhra-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-chinchwad-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/pimpri-chinchwad-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-chinchwad-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-chinchwad-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-chinchwad-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-chinchwad-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-chinchwad-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-chinchwad-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-chinchwad-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-chinchwad-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-chinchwad-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-chinchwad-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-chinchwad-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-chinchwad-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caloocan-national-capital-region-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/caloocan-national-capital-region-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caloocan-national-capital-region-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caloocan-national-capital-region-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caloocan-national-capital-region-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caloocan-national-capital-region-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caloocan-national-capital-region-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caloocan-national-capital-region-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caloocan-national-capital-region-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caloocan-national-capital-region-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caloocan-national-capital-region-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caloocan-national-capital-region-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caloocan-national-capital-region-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/caloocan-national-capital-region-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warsaw-mazovia-pl", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/warsaw-mazovia-pl/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warsaw-mazovia-pl/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warsaw-mazovia-pl/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warsaw-mazovia-pl/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warsaw-mazovia-pl/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warsaw-mazovia-pl/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warsaw-mazovia-pl/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warsaw-mazovia-pl/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warsaw-mazovia-pl/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warsaw-mazovia-pl/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warsaw-mazovia-pl/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warsaw-mazovia-pl/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warsaw-mazovia-pl/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soweto-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/soweto-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soweto-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soweto-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soweto-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soweto-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soweto-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soweto-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soweto-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soweto-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soweto-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soweto-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soweto-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soweto-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puebla-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/puebla-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puebla-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puebla-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puebla-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puebla-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puebla-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puebla-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puebla-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puebla-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puebla-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puebla-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puebla-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puebla-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vienna-state-of-vienna-at", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/vienna-state-of-vienna-at/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vienna-state-of-vienna-at/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vienna-state-of-vienna-at/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vienna-state-of-vienna-at/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vienna-state-of-vienna-at/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vienna-state-of-vienna-at/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vienna-state-of-vienna-at/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vienna-state-of-vienna-at/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vienna-state-of-vienna-at/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vienna-state-of-vienna-at/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vienna-state-of-vienna-at/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vienna-state-of-vienna-at/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vienna-state-of-vienna-at/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-catalonia-es", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/barcelona-catalonia-es/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-catalonia-es/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-catalonia-es/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-catalonia-es/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-catalonia-es/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-catalonia-es/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-catalonia-es/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-catalonia-es/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-catalonia-es/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-catalonia-es/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-catalonia-es/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-catalonia-es/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-catalonia-es/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patna-bihar-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/patna-bihar-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patna-bihar-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patna-bihar-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patna-bihar-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patna-bihar-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patna-bihar-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patna-bihar-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patna-bihar-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patna-bihar-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patna-bihar-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patna-bihar-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patna-bihar-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patna-bihar-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kallakurichi-tamil-nadu-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kallakurichi-tamil-nadu-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kallakurichi-tamil-nadu-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kallakurichi-tamil-nadu-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kallakurichi-tamil-nadu-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kallakurichi-tamil-nadu-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kallakurichi-tamil-nadu-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kallakurichi-tamil-nadu-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kallakurichi-tamil-nadu-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kallakurichi-tamil-nadu-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kallakurichi-tamil-nadu-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kallakurichi-tamil-nadu-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kallakurichi-tamil-nadu-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kallakurichi-tamil-nadu-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kampala-central-region-ug", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kampala-central-region-ug/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kampala-central-region-ug/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kampala-central-region-ug/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kampala-central-region-ug/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kampala-central-region-ug/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kampala-central-region-ug/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kampala-central-region-ug/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kampala-central-region-ug/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kampala-central-region-ug/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kampala-central-region-ug/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kampala-central-region-ug/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kampala-central-region-ug/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kampala-central-region-ug/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rabat-rabat-sale-kenitra-ma", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rabat-rabat-sale-kenitra-ma/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rabat-rabat-sale-kenitra-ma/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rabat-rabat-sale-kenitra-ma/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rabat-rabat-sale-kenitra-ma/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rabat-rabat-sale-kenitra-ma/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rabat-rabat-sale-kenitra-ma/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rabat-rabat-sale-kenitra-ma/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rabat-rabat-sale-kenitra-ma/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rabat-rabat-sale-kenitra-ma/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rabat-rabat-sale-kenitra-ma/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rabat-rabat-sale-kenitra-ma/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rabat-rabat-sale-kenitra-ma/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rabat-rabat-sale-kenitra-ma/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/recife-pernambuco-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/recife-pernambuco-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/recife-pernambuco-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/recife-pernambuco-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/recife-pernambuco-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/recife-pernambuco-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/recife-pernambuco-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/recife-pernambuco-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/recife-pernambuco-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/recife-pernambuco-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/recife-pernambuco-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/recife-pernambuco-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/recife-pernambuco-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/recife-pernambuco-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phoenix-arizona-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/phoenix-arizona-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phoenix-arizona-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phoenix-arizona-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phoenix-arizona-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phoenix-arizona-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phoenix-arizona-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phoenix-arizona-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phoenix-arizona-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phoenix-arizona-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phoenix-arizona-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phoenix-arizona-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phoenix-arizona-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phoenix-arizona-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ecatepec-de-morelos-mexico-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ecatepec-de-morelos-mexico-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ecatepec-de-morelos-mexico-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ecatepec-de-morelos-mexico-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ecatepec-de-morelos-mexico-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ecatepec-de-morelos-mexico-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ecatepec-de-morelos-mexico-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ecatepec-de-morelos-mexico-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ecatepec-de-morelos-mexico-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ecatepec-de-morelos-mexico-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ecatepec-de-morelos-mexico-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ecatepec-de-morelos-mexico-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ecatepec-de-morelos-mexico-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ecatepec-de-morelos-mexico-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-carabobo-ve", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/valencia-carabobo-ve/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-carabobo-ve/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-carabobo-ve/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-carabobo-ve/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-carabobo-ve/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-carabobo-ve/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-carabobo-ve/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-carabobo-ve/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-carabobo-ve/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-carabobo-ve/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-carabobo-ve/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-carabobo-ve/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-carabobo-ve/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ludhiana-punjab-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ludhiana-punjab-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ludhiana-punjab-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ludhiana-punjab-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ludhiana-punjab-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ludhiana-punjab-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ludhiana-punjab-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ludhiana-punjab-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ludhiana-punjab-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ludhiana-punjab-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ludhiana-punjab-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ludhiana-punjab-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ludhiana-punjab-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ludhiana-punjab-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/novosibirsk-novosibirsk-oblast-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/novosibirsk-novosibirsk-oblast-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/novosibirsk-novosibirsk-oblast-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/novosibirsk-novosibirsk-oblast-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/novosibirsk-novosibirsk-oblast-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/novosibirsk-novosibirsk-oblast-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/novosibirsk-novosibirsk-oblast-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/novosibirsk-novosibirsk-oblast-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/novosibirsk-novosibirsk-oblast-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/novosibirsk-novosibirsk-oblast-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/novosibirsk-novosibirsk-oblast-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/novosibirsk-novosibirsk-oblast-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/novosibirsk-novosibirsk-oblast-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/novosibirsk-novosibirsk-oblast-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fukuoka-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/fukuoka-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fukuoka-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fukuoka-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fukuoka-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fukuoka-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fukuoka-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fukuoka-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fukuoka-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fukuoka-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fukuoka-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fukuoka-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fukuoka-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fukuoka-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manila-national-capital-region-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/manila-national-capital-region-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manila-national-capital-region-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manila-national-capital-region-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manila-national-capital-region-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manila-national-capital-region-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manila-national-capital-region-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manila-national-capital-region-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manila-national-capital-region-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manila-national-capital-region-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manila-national-capital-region-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manila-national-capital-region-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manila-national-capital-region-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manila-national-capital-region-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-queretaro-queretaro-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/santiago-de-queretaro-queretaro-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-queretaro-queretaro-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-queretaro-queretaro-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-queretaro-queretaro-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-queretaro-queretaro-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-queretaro-queretaro-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-queretaro-queretaro-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-queretaro-queretaro-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-queretaro-queretaro-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-queretaro-queretaro-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-queretaro-queretaro-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-queretaro-queretaro-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-queretaro-queretaro-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leon-de-los-aldama-guanajuato-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/leon-de-los-aldama-guanajuato-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leon-de-los-aldama-guanajuato-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leon-de-los-aldama-guanajuato-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leon-de-los-aldama-guanajuato-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leon-de-los-aldama-guanajuato-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leon-de-los-aldama-guanajuato-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leon-de-los-aldama-guanajuato-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leon-de-los-aldama-guanajuato-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leon-de-los-aldama-guanajuato-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leon-de-los-aldama-guanajuato-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leon-de-los-aldama-guanajuato-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leon-de-los-aldama-guanajuato-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leon-de-los-aldama-guanajuato-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/philadelphia-pennsylvania-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/philadelphia-pennsylvania-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/philadelphia-pennsylvania-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/philadelphia-pennsylvania-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/philadelphia-pennsylvania-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/philadelphia-pennsylvania-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/philadelphia-pennsylvania-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/philadelphia-pennsylvania-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/philadelphia-pennsylvania-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/philadelphia-pennsylvania-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/philadelphia-pennsylvania-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/philadelphia-pennsylvania-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/philadelphia-pennsylvania-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/philadelphia-pennsylvania-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phnom-penh-kh", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/phnom-penh-kh/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phnom-penh-kh/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phnom-penh-kh/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phnom-penh-kh/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phnom-penh-kh/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phnom-penh-kh/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phnom-penh-kh/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phnom-penh-kh/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phnom-penh-kh/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phnom-penh-kh/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phnom-penh-kh/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phnom-penh-kh/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/phnom-penh-kh/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/auckland-nz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/auckland-nz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/auckland-nz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/auckland-nz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/auckland-nz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/auckland-nz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/auckland-nz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/auckland-nz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/auckland-nz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/auckland-nz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/auckland-nz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/auckland-nz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/auckland-nz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/auckland-nz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/astana-kz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/astana-kz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/astana-kz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/astana-kz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/astana-kz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/astana-kz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/astana-kz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/astana-kz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/astana-kz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/astana-kz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/astana-kz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/astana-kz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/astana-kz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/astana-kz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/harare-zw", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/harare-zw/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/harare-zw/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/harare-zw/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/harare-zw/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/harare-zw/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/harare-zw/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/harare-zw/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/harare-zw/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/harare-zw/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/harare-zw/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/harare-zw/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/harare-zw/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/harare-zw/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kawasaki-kanagawa-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kawasaki-kanagawa-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kawasaki-kanagawa-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kawasaki-kanagawa-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kawasaki-kanagawa-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kawasaki-kanagawa-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kawasaki-kanagawa-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kawasaki-kanagawa-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kawasaki-kanagawa-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kawasaki-kanagawa-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kawasaki-kanagawa-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kawasaki-kanagawa-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kawasaki-kanagawa-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kawasaki-kanagawa-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goiania-goias-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/goiania-goias-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goiania-goias-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goiania-goias-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goiania-goias-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goiania-goias-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goiania-goias-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goiania-goias-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goiania-goias-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goiania-goias-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goiania-goias-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goiania-goias-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goiania-goias-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goiania-goias-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-antonio-texas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/san-antonio-texas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-antonio-texas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-antonio-texas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-antonio-texas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-antonio-texas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-antonio-texas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-antonio-texas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-antonio-texas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-antonio-texas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-antonio-texas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-antonio-texas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-antonio-texas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-antonio-texas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kobe-hyogo-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kobe-hyogo-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kobe-hyogo-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kobe-hyogo-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kobe-hyogo-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kobe-hyogo-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kobe-hyogo-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kobe-hyogo-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kobe-hyogo-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kobe-hyogo-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kobe-hyogo-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kobe-hyogo-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kobe-hyogo-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kobe-hyogo-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockholm-se", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/stockholm-se/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockholm-se/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockholm-se/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockholm-se/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockholm-se/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockholm-se/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockholm-se/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockholm-se/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockholm-se/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockholm-se/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockholm-se/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockholm-se/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockholm-se/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-juarez-chihuahua-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ciudad-juarez-chihuahua-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-juarez-chihuahua-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-juarez-chihuahua-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-juarez-chihuahua-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-juarez-chihuahua-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-juarez-chihuahua-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-juarez-chihuahua-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-juarez-chihuahua-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-juarez-chihuahua-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-juarez-chihuahua-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-juarez-chihuahua-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-juarez-chihuahua-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-juarez-chihuahua-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/can-tho-can-tho-city-vn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/can-tho-can-tho-city-vn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/can-tho-can-tho-city-vn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/can-tho-can-tho-city-vn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/can-tho-can-tho-city-vn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/can-tho-can-tho-city-vn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/can-tho-can-tho-city-vn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/can-tho-can-tho-city-vn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/can-tho-can-tho-city-vn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/can-tho-can-tho-city-vn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/can-tho-can-tho-city-vn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/can-tho-can-tho-city-vn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/can-tho-can-tho-city-vn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/can-tho-can-tho-city-vn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munich-bavaria-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/munich-bavaria-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munich-bavaria-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munich-bavaria-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munich-bavaria-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munich-bavaria-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munich-bavaria-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munich-bavaria-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munich-bavaria-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munich-bavaria-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munich-bavaria-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munich-bavaria-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munich-bavaria-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munich-bavaria-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belem-para-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/belem-para-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belem-para-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belem-para-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belem-para-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belem-para-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belem-para-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belem-para-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belem-para-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belem-para-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belem-para-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belem-para-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belem-para-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belem-para-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yekaterinburg-sverdlovsk-oblast-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/yekaterinburg-sverdlovsk-oblast-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yekaterinburg-sverdlovsk-oblast-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yekaterinburg-sverdlovsk-oblast-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yekaterinburg-sverdlovsk-oblast-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yekaterinburg-sverdlovsk-oblast-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yekaterinburg-sverdlovsk-oblast-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yekaterinburg-sverdlovsk-oblast-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yekaterinburg-sverdlovsk-oblast-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yekaterinburg-sverdlovsk-oblast-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yekaterinburg-sverdlovsk-oblast-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yekaterinburg-sverdlovsk-oblast-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yekaterinburg-sverdlovsk-oblast-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yekaterinburg-sverdlovsk-oblast-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/porto-alegre-rio-grande-do-sul-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/porto-alegre-rio-grande-do-sul-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/porto-alegre-rio-grande-do-sul-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/porto-alegre-rio-grande-do-sul-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/porto-alegre-rio-grande-do-sul-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/porto-alegre-rio-grande-do-sul-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/porto-alegre-rio-grande-do-sul-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/porto-alegre-rio-grande-do-sul-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/porto-alegre-rio-grande-do-sul-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/porto-alegre-rio-grande-do-sul-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/porto-alegre-rio-grande-do-sul-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/porto-alegre-rio-grande-do-sul-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/porto-alegre-rio-grande-do-sul-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/porto-alegre-rio-grande-do-sul-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manhattan-new-york-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/manhattan-new-york-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manhattan-new-york-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manhattan-new-york-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manhattan-new-york-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manhattan-new-york-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manhattan-new-york-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manhattan-new-york-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manhattan-new-york-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manhattan-new-york-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manhattan-new-york-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manhattan-new-york-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manhattan-new-york-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manhattan-new-york-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashik-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/nashik-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashik-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashik-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashik-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashik-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashik-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashik-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashik-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashik-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashik-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashik-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashik-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashik-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asuncion-py", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/asuncion-py/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asuncion-py/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asuncion-py/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asuncion-py/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asuncion-py/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asuncion-py/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asuncion-py/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asuncion-py/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asuncion-py/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asuncion-py/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asuncion-py/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asuncion-py/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asuncion-py/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zapopan-jalisco-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/zapopan-jalisco-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zapopan-jalisco-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zapopan-jalisco-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zapopan-jalisco-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zapopan-jalisco-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zapopan-jalisco-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zapopan-jalisco-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zapopan-jalisco-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zapopan-jalisco-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zapopan-jalisco-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zapopan-jalisco-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zapopan-jalisco-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zapopan-jalisco-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adelaide-south-australia-au", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/adelaide-south-australia-au/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adelaide-south-australia-au/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adelaide-south-australia-au/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adelaide-south-australia-au/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adelaide-south-australia-au/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adelaide-south-australia-au/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adelaide-south-australia-au/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adelaide-south-australia-au/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adelaide-south-australia-au/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adelaide-south-australia-au/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adelaide-south-australia-au/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adelaide-south-australia-au/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adelaide-south-australia-au/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madurai-tamil-nadu-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/madurai-tamil-nadu-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madurai-tamil-nadu-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madurai-tamil-nadu-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madurai-tamil-nadu-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madurai-tamil-nadu-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madurai-tamil-nadu-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madurai-tamil-nadu-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madurai-tamil-nadu-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madurai-tamil-nadu-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madurai-tamil-nadu-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madurai-tamil-nadu-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madurai-tamil-nadu-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madurai-tamil-nadu-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyoto-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kyoto-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyoto-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyoto-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyoto-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyoto-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyoto-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyoto-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyoto-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyoto-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyoto-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyoto-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyoto-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kyoto-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuala-lumpur-my", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kuala-lumpur-my/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuala-lumpur-my/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuala-lumpur-my/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuala-lumpur-my/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuala-lumpur-my/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuala-lumpur-my/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuala-lumpur-my/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuala-lumpur-my/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuala-lumpur-my/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuala-lumpur-my/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuala-lumpur-my/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuala-lumpur-my/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuala-lumpur-my/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kayseri-tr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kayseri-tr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kayseri-tr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kayseri-tr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kayseri-tr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kayseri-tr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kayseri-tr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kayseri-tr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kayseri-tr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kayseri-tr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kayseri-tr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kayseri-tr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kayseri-tr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kayseri-tr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kathmandu-bagmati-province-np", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kathmandu-bagmati-province-np/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kathmandu-bagmati-province-np/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kathmandu-bagmati-province-np/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kathmandu-bagmati-province-np/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kathmandu-bagmati-province-np/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kathmandu-bagmati-province-np/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kathmandu-bagmati-province-np/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kathmandu-bagmati-province-np/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kathmandu-bagmati-province-np/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kathmandu-bagmati-province-np/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kathmandu-bagmati-province-np/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kathmandu-bagmati-province-np/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kathmandu-bagmati-province-np/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daejeon-kr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/daejeon-kr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daejeon-kr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daejeon-kr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daejeon-kr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daejeon-kr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daejeon-kr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daejeon-kr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daejeon-kr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daejeon-kr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daejeon-kr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daejeon-kr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daejeon-kr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/daejeon-kr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirunelveli-tamil-nadu-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tirunelveli-tamil-nadu-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirunelveli-tamil-nadu-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirunelveli-tamil-nadu-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirunelveli-tamil-nadu-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirunelveli-tamil-nadu-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirunelveli-tamil-nadu-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirunelveli-tamil-nadu-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirunelveli-tamil-nadu-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirunelveli-tamil-nadu-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirunelveli-tamil-nadu-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirunelveli-tamil-nadu-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirunelveli-tamil-nadu-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirunelveli-tamil-nadu-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/konya-tr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/konya-tr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/konya-tr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/konya-tr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/konya-tr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/konya-tr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/konya-tr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/konya-tr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/konya-tr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/konya-tr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/konya-tr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/konya-tr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/konya-tr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/konya-tr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agra-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/agra-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agra-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agra-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agra-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agra-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agra-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agra-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agra-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agra-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agra-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agra-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agra-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agra-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kharkiv-ua", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kharkiv-ua/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kharkiv-ua/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kharkiv-ua/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kharkiv-ua/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kharkiv-ua/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kharkiv-ua/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kharkiv-ua/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kharkiv-ua/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kharkiv-ua/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kharkiv-ua/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kharkiv-ua/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kharkiv-ua/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kharkiv-ua/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faridabad-haryana-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/faridabad-haryana-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faridabad-haryana-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faridabad-haryana-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faridabad-haryana-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faridabad-haryana-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faridabad-haryana-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faridabad-haryana-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faridabad-haryana-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faridabad-haryana-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faridabad-haryana-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faridabad-haryana-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faridabad-haryana-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/faridabad-haryana-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-diego-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/san-diego-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-diego-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-diego-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-diego-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-diego-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-diego-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-diego-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-diego-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-diego-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-diego-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-diego-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-diego-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-diego-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwangju-kr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gwangju-kr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwangju-kr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwangju-kr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwangju-kr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwangju-kr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwangju-kr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwangju-kr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwangju-kr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwangju-kr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwangju-kr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwangju-kr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwangju-kr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwangju-kr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajkot-gujarat-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rajkot-gujarat-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajkot-gujarat-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajkot-gujarat-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajkot-gujarat-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajkot-gujarat-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajkot-gujarat-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajkot-gujarat-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajkot-gujarat-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajkot-gujarat-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajkot-gujarat-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajkot-gujarat-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajkot-gujarat-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajkot-gujarat-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalajara-jalisco-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/guadalajara-jalisco-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalajara-jalisco-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalajara-jalisco-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalajara-jalisco-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalajara-jalisco-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalajara-jalisco-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalajara-jalisco-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalajara-jalisco-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalajara-jalisco-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalajara-jalisco-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalajara-jalisco-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalajara-jalisco-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalajara-jalisco-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-bronx-new-york-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/the-bronx-new-york-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-bronx-new-york-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-bronx-new-york-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-bronx-new-york-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-bronx-new-york-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-bronx-new-york-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-bronx-new-york-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-bronx-new-york-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-bronx-new-york-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-bronx-new-york-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-bronx-new-york-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-bronx-new-york-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-bronx-new-york-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hue-thua-thien-hue-province-vn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hue-thua-thien-hue-province-vn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hue-thua-thien-hue-province-vn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hue-thua-thien-hue-province-vn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hue-thua-thien-hue-province-vn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hue-thua-thien-hue-province-vn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hue-thua-thien-hue-province-vn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hue-thua-thien-hue-province-vn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hue-thua-thien-hue-province-vn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hue-thua-thien-hue-province-vn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hue-thua-thien-hue-province-vn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hue-thua-thien-hue-province-vn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hue-thua-thien-hue-province-vn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hue-thua-thien-hue-province-vn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milan-lombardy-it", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/milan-lombardy-it/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milan-lombardy-it/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milan-lombardy-it/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milan-lombardy-it/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milan-lombardy-it/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milan-lombardy-it/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milan-lombardy-it/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milan-lombardy-it/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milan-lombardy-it/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milan-lombardy-it/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milan-lombardy-it/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milan-lombardy-it/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milan-lombardy-it/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/najafgarh-delhi-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/najafgarh-delhi-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/najafgarh-delhi-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/najafgarh-delhi-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/najafgarh-delhi-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/najafgarh-delhi-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/najafgarh-delhi-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/najafgarh-delhi-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/najafgarh-delhi-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/najafgarh-delhi-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/najafgarh-delhi-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/najafgarh-delhi-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/najafgarh-delhi-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/najafgarh-delhi-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/n-djamena-ndjamena-td", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/n-djamena-ndjamena-td/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/n-djamena-ndjamena-td/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/n-djamena-ndjamena-td/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/n-djamena-ndjamena-td/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/n-djamena-ndjamena-td/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/n-djamena-ndjamena-td/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/n-djamena-ndjamena-td/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/n-djamena-ndjamena-td/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/n-djamena-ndjamena-td/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/n-djamena-ndjamena-td/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/n-djamena-ndjamena-td/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/n-djamena-ndjamena-td/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/n-djamena-ndjamena-td/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antananarivo-analamanga-mg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/antananarivo-analamanga-mg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antananarivo-analamanga-mg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antananarivo-analamanga-mg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antananarivo-analamanga-mg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antananarivo-analamanga-mg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antananarivo-analamanga-mg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antananarivo-analamanga-mg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antananarivo-analamanga-mg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antananarivo-analamanga-mg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antananarivo-analamanga-mg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antananarivo-analamanga-mg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antananarivo-analamanga-mg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antananarivo-analamanga-mg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guarulhos-sao-paulo-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/guarulhos-sao-paulo-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guarulhos-sao-paulo-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guarulhos-sao-paulo-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guarulhos-sao-paulo-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guarulhos-sao-paulo-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guarulhos-sao-paulo-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guarulhos-sao-paulo-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guarulhos-sao-paulo-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guarulhos-sao-paulo-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guarulhos-sao-paulo-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guarulhos-sao-paulo-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guarulhos-sao-paulo-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guarulhos-sao-paulo-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abobo-abidjan-autonomous-district-ci", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/abobo-abidjan-autonomous-district-ci/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abobo-abidjan-autonomous-district-ci/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abobo-abidjan-autonomous-district-ci/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abobo-abidjan-autonomous-district-ci/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abobo-abidjan-autonomous-district-ci/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abobo-abidjan-autonomous-district-ci/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abobo-abidjan-autonomous-district-ci/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abobo-abidjan-autonomous-district-ci/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abobo-abidjan-autonomous-district-ci/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abobo-abidjan-autonomous-district-ci/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abobo-abidjan-autonomous-district-ci/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abobo-abidjan-autonomous-district-ci/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/abobo-abidjan-autonomous-district-ci/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamshedpur-jharkhand-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jamshedpur-jharkhand-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamshedpur-jharkhand-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamshedpur-jharkhand-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamshedpur-jharkhand-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamshedpur-jharkhand-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamshedpur-jharkhand-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamshedpur-jharkhand-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamshedpur-jharkhand-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamshedpur-jharkhand-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamshedpur-jharkhand-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamshedpur-jharkhand-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamshedpur-jharkhand-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamshedpur-jharkhand-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antalya-tr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/antalya-tr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antalya-tr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antalya-tr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antalya-tr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antalya-tr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antalya-tr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antalya-tr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antalya-tr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antalya-tr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antalya-tr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antalya-tr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antalya-tr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antalya-tr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dallas-texas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dallas-texas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dallas-texas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dallas-texas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dallas-texas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dallas-texas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dallas-texas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dallas-texas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dallas-texas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dallas-texas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dallas-texas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dallas-texas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dallas-texas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dallas-texas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saitama-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/saitama-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saitama-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saitama-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saitama-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saitama-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saitama-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saitama-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saitama-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saitama-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saitama-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saitama-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saitama-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saitama-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-haryana-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gorakhpur-haryana-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-haryana-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-haryana-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-haryana-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-haryana-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-haryana-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-haryana-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-haryana-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-haryana-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-haryana-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-haryana-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-haryana-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-haryana-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niamey-ne", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/niamey-ne/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niamey-ne/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niamey-ne/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niamey-ne/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niamey-ne/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niamey-ne/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niamey-ne/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niamey-ne/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niamey-ne/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niamey-ne/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niamey-ne/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niamey-ne/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niamey-ne/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taguig-national-capital-region-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/taguig-national-capital-region-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taguig-national-capital-region-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taguig-national-capital-region-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taguig-national-capital-region-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taguig-national-capital-region-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taguig-national-capital-region-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taguig-national-capital-region-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taguig-national-capital-region-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taguig-national-capital-region-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taguig-national-capital-region-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taguig-national-capital-region-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taguig-national-capital-region-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/taguig-national-capital-region-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calgary-alberta-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/calgary-alberta-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calgary-alberta-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calgary-alberta-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calgary-alberta-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calgary-alberta-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calgary-alberta-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calgary-alberta-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calgary-alberta-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calgary-alberta-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calgary-alberta-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calgary-alberta-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calgary-alberta-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calgary-alberta-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/pimpri-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pimpri-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/da-nang-da-nang-city-vn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/da-nang-da-nang-city-vn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/da-nang-da-nang-city-vn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/da-nang-da-nang-city-vn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/da-nang-da-nang-city-vn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/da-nang-da-nang-city-vn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/da-nang-da-nang-city-vn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/da-nang-da-nang-city-vn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/da-nang-da-nang-city-vn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/da-nang-da-nang-city-vn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/da-nang-da-nang-city-vn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/da-nang-da-nang-city-vn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/da-nang-da-nang-city-vn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/da-nang-da-nang-city-vn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amman-jo", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/amman-jo/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amman-jo/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amman-jo/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amman-jo/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amman-jo/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amman-jo/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amman-jo/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amman-jo/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amman-jo/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amman-jo/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amman-jo/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amman-jo/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amman-jo/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budta-autonomous-region-in-muslim-mindanao-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/budta-autonomous-region-in-muslim-mindanao-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budta-autonomous-region-in-muslim-mindanao-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budta-autonomous-region-in-muslim-mindanao-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budta-autonomous-region-in-muslim-mindanao-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budta-autonomous-region-in-muslim-mindanao-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budta-autonomous-region-in-muslim-mindanao-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budta-autonomous-region-in-muslim-mindanao-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budta-autonomous-region-in-muslim-mindanao-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budta-autonomous-region-in-muslim-mindanao-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budta-autonomous-region-in-muslim-mindanao-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budta-autonomous-region-in-muslim-mindanao-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budta-autonomous-region-in-muslim-mindanao-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/budta-autonomous-region-in-muslim-mindanao-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belgrade-central-serbia-rs", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/belgrade-central-serbia-rs/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belgrade-central-serbia-rs/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belgrade-central-serbia-rs/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belgrade-central-serbia-rs/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belgrade-central-serbia-rs/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belgrade-central-serbia-rs/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belgrade-central-serbia-rs/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belgrade-central-serbia-rs/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belgrade-central-serbia-rs/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belgrade-central-serbia-rs/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belgrade-central-serbia-rs/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belgrade-central-serbia-rs/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belgrade-central-serbia-rs/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bien-hoa-dong-nai-vn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bien-hoa-dong-nai-vn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bien-hoa-dong-nai-vn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bien-hoa-dong-nai-vn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bien-hoa-dong-nai-vn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bien-hoa-dong-nai-vn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bien-hoa-dong-nai-vn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bien-hoa-dong-nai-vn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bien-hoa-dong-nai-vn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bien-hoa-dong-nai-vn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bien-hoa-dong-nai-vn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bien-hoa-dong-nai-vn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bien-hoa-dong-nai-vn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bien-hoa-dong-nai-vn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montevideo-montevideo-department-uy", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/montevideo-montevideo-department-uy/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montevideo-montevideo-department-uy/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montevideo-montevideo-department-uy/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montevideo-montevideo-department-uy/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montevideo-montevideo-department-uy/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montevideo-montevideo-department-uy/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montevideo-montevideo-department-uy/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montevideo-montevideo-department-uy/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montevideo-montevideo-department-uy/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montevideo-montevideo-department-uy/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montevideo-montevideo-department-uy/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montevideo-montevideo-department-uy/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montevideo-montevideo-department-uy/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalyan-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kalyan-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalyan-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalyan-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalyan-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalyan-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalyan-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalyan-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalyan-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalyan-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalyan-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalyan-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalyan-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalyan-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizhniy-novgorod-nizhny-novgorod-oblast-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/nizhniy-novgorod-nizhny-novgorod-oblast-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizhniy-novgorod-nizhny-novgorod-oblast-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizhniy-novgorod-nizhny-novgorod-oblast-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizhniy-novgorod-nizhny-novgorod-oblast-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizhniy-novgorod-nizhny-novgorod-oblast-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizhniy-novgorod-nizhny-novgorod-oblast-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizhniy-novgorod-nizhny-novgorod-oblast-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizhniy-novgorod-nizhny-novgorod-oblast-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizhniy-novgorod-nizhny-novgorod-oblast-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizhniy-novgorod-nizhny-novgorod-oblast-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizhniy-novgorod-nizhny-novgorod-oblast-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizhniy-novgorod-nizhny-novgorod-oblast-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizhniy-novgorod-nizhny-novgorod-oblast-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maputo-maputo-city-mz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/maputo-maputo-city-mz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maputo-maputo-city-mz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maputo-maputo-city-mz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maputo-maputo-city-mz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maputo-maputo-city-mz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maputo-maputo-city-mz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maputo-maputo-city-mz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maputo-maputo-city-mz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maputo-maputo-city-mz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maputo-maputo-city-mz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maputo-maputo-city-mz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maputo-maputo-city-mz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maputo-maputo-city-mz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ras-bayrut-beirut-lb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ras-bayrut-beirut-lb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ras-bayrut-beirut-lb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ras-bayrut-beirut-lb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ras-bayrut-beirut-lb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ras-bayrut-beirut-lb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ras-bayrut-beirut-lb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ras-bayrut-beirut-lb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ras-bayrut-beirut-lb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ras-bayrut-beirut-lb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ras-bayrut-beirut-lb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ras-bayrut-beirut-lb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ras-bayrut-beirut-lb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ras-bayrut-beirut-lb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dombivali-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dombivali-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dombivali-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dombivali-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dombivali-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dombivali-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dombivali-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dombivali-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dombivali-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dombivali-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dombivali-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dombivali-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dombivali-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dombivali-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kananga-kasai-central-cd", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kananga-kasai-central-cd/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kananga-kasai-central-cd/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kananga-kasai-central-cd/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kananga-kasai-central-cd/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kananga-kasai-central-cd/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kananga-kasai-central-cd/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kananga-kasai-central-cd/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kananga-kasai-central-cd/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kananga-kasai-central-cd/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kananga-kasai-central-cd/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kananga-kasai-central-cd/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kananga-kasai-central-cd/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kananga-kasai-central-cd/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kazan-tatarstan-republic-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kazan-tatarstan-republic-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kazan-tatarstan-republic-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kazan-tatarstan-republic-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kazan-tatarstan-republic-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kazan-tatarstan-republic-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kazan-tatarstan-republic-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kazan-tatarstan-republic-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kazan-tatarstan-republic-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kazan-tatarstan-republic-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kazan-tatarstan-republic-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kazan-tatarstan-republic-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kazan-tatarstan-republic-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kazan-tatarstan-republic-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barquisimeto-lara-ve", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/barquisimeto-lara-ve/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barquisimeto-lara-ve/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barquisimeto-lara-ve/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barquisimeto-lara-ve/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barquisimeto-lara-ve/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barquisimeto-lara-ve/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barquisimeto-lara-ve/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barquisimeto-lara-ve/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barquisimeto-lara-ve/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barquisimeto-lara-ve/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barquisimeto-lara-ve/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barquisimeto-lara-ve/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barquisimeto-lara-ve/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-au-prince-ouest-ht", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/port-au-prince-ouest-ht/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-au-prince-ouest-ht/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-au-prince-ouest-ht/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-au-prince-ouest-ht/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-au-prince-ouest-ht/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-au-prince-ouest-ht/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-au-prince-ouest-ht/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-au-prince-ouest-ht/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-au-prince-ouest-ht/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-au-prince-ouest-ht/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-au-prince-ouest-ht/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-au-prince-ouest-ht/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-au-prince-ouest-ht/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/suwon-gyeonggi-do-kr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/suwon-gyeonggi-do-kr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/suwon-gyeonggi-do-kr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/suwon-gyeonggi-do-kr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/suwon-gyeonggi-do-kr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/suwon-gyeonggi-do-kr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/suwon-gyeonggi-do-kr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/suwon-gyeonggi-do-kr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/suwon-gyeonggi-do-kr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/suwon-gyeonggi-do-kr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/suwon-gyeonggi-do-kr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/suwon-gyeonggi-do-kr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/suwon-gyeonggi-do-kr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/suwon-gyeonggi-do-kr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/callao-pe", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/callao-pe/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/callao-pe/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/callao-pe/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/callao-pe/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/callao-pe/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/callao-pe/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/callao-pe/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/callao-pe/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/callao-pe/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/callao-pe/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/callao-pe/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/callao-pe/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/callao-pe/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meerut-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/meerut-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meerut-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meerut-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meerut-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meerut-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meerut-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meerut-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meerut-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meerut-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meerut-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meerut-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meerut-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meerut-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virar-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/virar-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virar-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virar-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virar-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virar-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virar-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virar-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virar-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virar-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virar-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virar-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virar-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virar-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nowrangapur-odisha-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/nowrangapur-odisha-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nowrangapur-odisha-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nowrangapur-odisha-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nowrangapur-odisha-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nowrangapur-odisha-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nowrangapur-odisha-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nowrangapur-odisha-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nowrangapur-odisha-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nowrangapur-odisha-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nowrangapur-odisha-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nowrangapur-odisha-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nowrangapur-odisha-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nowrangapur-odisha-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mombasa-mombasa-county-ke", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mombasa-mombasa-county-ke/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mombasa-mombasa-county-ke/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mombasa-mombasa-county-ke/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mombasa-mombasa-county-ke/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mombasa-mombasa-county-ke/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mombasa-mombasa-county-ke/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mombasa-mombasa-county-ke/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mombasa-mombasa-county-ke/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mombasa-mombasa-county-ke/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mombasa-mombasa-county-ke/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mombasa-mombasa-county-ke/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mombasa-mombasa-county-ke/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mombasa-mombasa-county-ke/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/srinagar-jammu-and-kashmir-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/srinagar-jammu-and-kashmir-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/srinagar-jammu-and-kashmir-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/srinagar-jammu-and-kashmir-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/srinagar-jammu-and-kashmir-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/srinagar-jammu-and-kashmir-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/srinagar-jammu-and-kashmir-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/srinagar-jammu-and-kashmir-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/srinagar-jammu-and-kashmir-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/srinagar-jammu-and-kashmir-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/srinagar-jammu-and-kashmir-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/srinagar-jammu-and-kashmir-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/srinagar-jammu-and-kashmir-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/srinagar-jammu-and-kashmir-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barranquilla-atlantico-co", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/barranquilla-atlantico-co/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barranquilla-atlantico-co/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barranquilla-atlantico-co/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barranquilla-atlantico-co/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barranquilla-atlantico-co/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barranquilla-atlantico-co/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barranquilla-atlantico-co/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barranquilla-atlantico-co/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barranquilla-atlantico-co/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barranquilla-atlantico-co/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barranquilla-atlantico-co/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barranquilla-atlantico-co/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barranquilla-atlantico-co/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chelyabinsk-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/chelyabinsk-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chelyabinsk-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chelyabinsk-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chelyabinsk-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chelyabinsk-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chelyabinsk-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chelyabinsk-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chelyabinsk-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chelyabinsk-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chelyabinsk-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chelyabinsk-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chelyabinsk-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chelyabinsk-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/merida-yucatan-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/merida-yucatan-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/merida-yucatan-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/merida-yucatan-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/merida-yucatan-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/merida-yucatan-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/merida-yucatan-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/merida-yucatan-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/merida-yucatan-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/merida-yucatan-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/merida-yucatan-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/merida-yucatan-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/merida-yucatan-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/merida-yucatan-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hiroshima-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hiroshima-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hiroshima-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hiroshima-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hiroshima-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hiroshima-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hiroshima-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hiroshima-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hiroshima-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hiroshima-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hiroshima-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hiroshima-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hiroshima-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hiroshima-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-los-caballeros-santiago-province-do", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/santiago-de-los-caballeros-santiago-province-do/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-los-caballeros-santiago-province-do/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-los-caballeros-santiago-province-do/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-los-caballeros-santiago-province-do/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-los-caballeros-santiago-province-do/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-los-caballeros-santiago-province-do/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-los-caballeros-santiago-province-do/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-los-caballeros-santiago-province-do/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-los-caballeros-santiago-province-do/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-los-caballeros-santiago-province-do/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-los-caballeros-santiago-province-do/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-los-caballeros-santiago-province-do/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santiago-de-los-caballeros-santiago-province-do/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shymkent-kz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/shymkent-kz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shymkent-kz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shymkent-kz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shymkent-kz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shymkent-kz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shymkent-kz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shymkent-kz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shymkent-kz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shymkent-kz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shymkent-kz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shymkent-kz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shymkent-kz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shymkent-kz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ghaziabad-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ghaziabad-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ghaziabad-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ghaziabad-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ghaziabad-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ghaziabad-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ghaziabad-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ghaziabad-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ghaziabad-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ghaziabad-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ghaziabad-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ghaziabad-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ghaziabad-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ghaziabad-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/matola-maputo-province-mz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/matola-maputo-province-mz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/matola-maputo-province-mz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/matola-maputo-province-mz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/matola-maputo-province-mz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/matola-maputo-province-mz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/matola-maputo-province-mz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/matola-maputo-province-mz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/matola-maputo-province-mz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/matola-maputo-province-mz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/matola-maputo-province-mz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/matola-maputo-province-mz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/matola-maputo-province-mz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/matola-maputo-province-mz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhanbad-jharkhand-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dhanbad-jharkhand-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhanbad-jharkhand-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhanbad-jharkhand-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhanbad-jharkhand-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhanbad-jharkhand-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhanbad-jharkhand-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhanbad-jharkhand-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhanbad-jharkhand-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhanbad-jharkhand-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhanbad-jharkhand-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhanbad-jharkhand-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhanbad-jharkhand-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhanbad-jharkhand-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arequipa-pe", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/arequipa-pe/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arequipa-pe/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arequipa-pe/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arequipa-pe/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arequipa-pe/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arequipa-pe/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arequipa-pe/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arequipa-pe/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arequipa-pe/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arequipa-pe/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arequipa-pe/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arequipa-pe/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arequipa-pe/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-island-hk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hong-kong-island-hk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-island-hk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-island-hk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-island-hk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-island-hk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-island-hk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-island-hk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-island-hk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-island-hk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-island-hk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-island-hk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-island-hk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hong-kong-island-hk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fes-fes-meknes-ma", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/fes-fes-meknes-ma/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fes-fes-meknes-ma/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fes-fes-meknes-ma/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fes-fes-meknes-ma/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fes-fes-meknes-ma/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fes-fes-meknes-ma/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fes-fes-meknes-ma/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fes-fes-meknes-ma/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fes-fes-meknes-ma/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fes-fes-meknes-ma/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fes-fes-meknes-ma/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fes-fes-meknes-ma/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fes-fes-meknes-ma/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gustavo-adolfo-madero-mexico-city-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gustavo-adolfo-madero-mexico-city-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gustavo-adolfo-madero-mexico-city-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gustavo-adolfo-madero-mexico-city-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gustavo-adolfo-madero-mexico-city-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gustavo-adolfo-madero-mexico-city-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gustavo-adolfo-madero-mexico-city-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gustavo-adolfo-madero-mexico-city-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gustavo-adolfo-madero-mexico-city-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gustavo-adolfo-madero-mexico-city-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gustavo-adolfo-madero-mexico-city-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gustavo-adolfo-madero-mexico-city-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gustavo-adolfo-madero-mexico-city-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gustavo-adolfo-madero-mexico-city-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kisangani-tshopo-cd", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kisangani-tshopo-cd/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kisangani-tshopo-cd/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kisangani-tshopo-cd/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kisangani-tshopo-cd/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kisangani-tshopo-cd/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kisangani-tshopo-cd/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kisangani-tshopo-cd/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kisangani-tshopo-cd/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kisangani-tshopo-cd/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kisangani-tshopo-cd/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kisangani-tshopo-cd/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kisangani-tshopo-cd/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kisangani-tshopo-cd/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurangabad-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/aurangabad-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurangabad-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurangabad-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurangabad-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurangabad-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurangabad-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurangabad-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurangabad-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurangabad-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurangabad-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurangabad-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurangabad-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurangabad-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omsk-omsk-oblast-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/omsk-omsk-oblast-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omsk-omsk-oblast-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omsk-omsk-oblast-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omsk-omsk-oblast-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omsk-omsk-oblast-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omsk-omsk-oblast-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omsk-omsk-oblast-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omsk-omsk-oblast-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omsk-omsk-oblast-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omsk-omsk-oblast-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omsk-omsk-oblast-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omsk-omsk-oblast-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omsk-omsk-oblast-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prague-cz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/prague-cz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prague-cz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prague-cz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prague-cz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prague-cz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prague-cz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prague-cz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prague-cz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prague-cz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prague-cz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prague-cz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prague-cz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prague-cz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/varanasi-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/varanasi-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/varanasi-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/varanasi-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/varanasi-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/varanasi-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/varanasi-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/varanasi-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/varanasi-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/varanasi-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/varanasi-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/varanasi-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/varanasi-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/varanasi-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/samara-samara-oblast-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/samara-samara-oblast-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/samara-samara-oblast-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/samara-samara-oblast-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/samara-samara-oblast-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/samara-samara-oblast-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/samara-samara-oblast-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/samara-samara-oblast-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/samara-samara-oblast-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/samara-samara-oblast-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/samara-samara-oblast-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/samara-samara-oblast-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/samara-samara-oblast-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/samara-samara-oblast-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amritsar-punjab-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/amritsar-punjab-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amritsar-punjab-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amritsar-punjab-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amritsar-punjab-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amritsar-punjab-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amritsar-punjab-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amritsar-punjab-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amritsar-punjab-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amritsar-punjab-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amritsar-punjab-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amritsar-punjab-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amritsar-punjab-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amritsar-punjab-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/birmingham-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/copenhagen-capital-region-dk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/copenhagen-capital-region-dk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/copenhagen-capital-region-dk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/copenhagen-capital-region-dk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/copenhagen-capital-region-dk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/copenhagen-capital-region-dk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/copenhagen-capital-region-dk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/copenhagen-capital-region-dk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/copenhagen-capital-region-dk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/copenhagen-capital-region-dk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/copenhagen-capital-region-dk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/copenhagen-capital-region-dk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/copenhagen-capital-region-dk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/copenhagen-capital-region-dk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sofia-sofia-capital-bg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sofia-sofia-capital-bg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sofia-sofia-capital-bg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sofia-sofia-capital-bg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sofia-sofia-capital-bg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sofia-sofia-capital-bg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sofia-sofia-capital-bg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sofia-sofia-capital-bg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sofia-sofia-capital-bg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sofia-sofia-capital-bg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sofia-sofia-capital-bg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sofia-sofia-capital-bg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sofia-sofia-capital-bg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sofia-sofia-capital-bg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yerevan-am", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/yerevan-am/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yerevan-am/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yerevan-am/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yerevan-am/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yerevan-am/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yerevan-am/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yerevan-am/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yerevan-am/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yerevan-am/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yerevan-am/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yerevan-am/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yerevan-am/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yerevan-am/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayawada-andhra-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/vijayawada-andhra-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayawada-andhra-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayawada-andhra-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayawada-andhra-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayawada-andhra-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayawada-andhra-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayawada-andhra-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayawada-andhra-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayawada-andhra-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayawada-andhra-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayawada-andhra-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayawada-andhra-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayawada-andhra-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monterrey-nuevo-leon-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/monterrey-nuevo-leon-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monterrey-nuevo-leon-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monterrey-nuevo-leon-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monterrey-nuevo-leon-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monterrey-nuevo-leon-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monterrey-nuevo-leon-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monterrey-nuevo-leon-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monterrey-nuevo-leon-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monterrey-nuevo-leon-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monterrey-nuevo-leon-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monterrey-nuevo-leon-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monterrey-nuevo-leon-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monterrey-nuevo-leon-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kigali-rw", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kigali-rw/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kigali-rw/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kigali-rw/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kigali-rw/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kigali-rw/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kigali-rw/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kigali-rw/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kigali-rw/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kigali-rw/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kigali-rw/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kigali-rw/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kigali-rw/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kigali-rw/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rostov-on-don-rostov-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rostov-on-don-rostov-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rostov-on-don-rostov-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rostov-on-don-rostov-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rostov-on-don-rostov-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rostov-on-don-rostov-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rostov-on-don-rostov-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rostov-on-don-rostov-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rostov-on-don-rostov-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rostov-on-don-rostov-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rostov-on-don-rostov-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rostov-on-don-rostov-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rostov-on-don-rostov-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rostov-on-don-rostov-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malingao-soccsksargen-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/malingao-soccsksargen-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malingao-soccsksargen-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malingao-soccsksargen-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malingao-soccsksargen-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malingao-soccsksargen-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malingao-soccsksargen-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malingao-soccsksargen-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malingao-soccsksargen-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malingao-soccsksargen-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malingao-soccsksargen-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malingao-soccsksargen-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malingao-soccsksargen-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malingao-soccsksargen-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ufa-bashkortostan-republic-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ufa-bashkortostan-republic-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ufa-bashkortostan-republic-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ufa-bashkortostan-republic-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ufa-bashkortostan-republic-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ufa-bashkortostan-republic-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ufa-bashkortostan-republic-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ufa-bashkortostan-republic-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ufa-bashkortostan-republic-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ufa-bashkortostan-republic-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ufa-bashkortostan-republic-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ufa-bashkortostan-republic-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ufa-bashkortostan-republic-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ufa-bashkortostan-republic-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranchi-jharkhand-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ranchi-jharkhand-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranchi-jharkhand-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranchi-jharkhand-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranchi-jharkhand-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranchi-jharkhand-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranchi-jharkhand-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranchi-jharkhand-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranchi-jharkhand-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranchi-jharkhand-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranchi-jharkhand-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranchi-jharkhand-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranchi-jharkhand-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranchi-jharkhand-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulsan-kr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ulsan-kr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulsan-kr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulsan-kr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulsan-kr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulsan-kr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulsan-kr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulsan-kr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulsan-kr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulsan-kr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulsan-kr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulsan-kr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulsan-kr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulsan-kr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sendai-miyagi-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sendai-miyagi-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sendai-miyagi-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sendai-miyagi-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sendai-miyagi-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sendai-miyagi-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sendai-miyagi-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sendai-miyagi-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sendai-miyagi-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sendai-miyagi-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sendai-miyagi-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sendai-miyagi-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sendai-miyagi-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sendai-miyagi-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnoyarsk-krasnoyarsk-krai-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/krasnoyarsk-krasnoyarsk-krai-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnoyarsk-krasnoyarsk-krai-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnoyarsk-krasnoyarsk-krai-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnoyarsk-krasnoyarsk-krai-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnoyarsk-krasnoyarsk-krai-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnoyarsk-krasnoyarsk-krai-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnoyarsk-krasnoyarsk-krai-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnoyarsk-krasnoyarsk-krai-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnoyarsk-krasnoyarsk-krai-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnoyarsk-krasnoyarsk-krai-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnoyarsk-krasnoyarsk-krai-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnoyarsk-krasnoyarsk-krai-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnoyarsk-krasnoyarsk-krai-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oslo-no", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/oslo-no/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oslo-no/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oslo-no/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oslo-no/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oslo-no/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oslo-no/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oslo-no/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oslo-no/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oslo-no/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oslo-no/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oslo-no/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oslo-no/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oslo-no/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jabalpur-madhya-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jabalpur-madhya-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jabalpur-madhya-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jabalpur-madhya-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jabalpur-madhya-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jabalpur-madhya-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jabalpur-madhya-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jabalpur-madhya-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jabalpur-madhya-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jabalpur-madhya-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jabalpur-madhya-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jabalpur-madhya-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jabalpur-madhya-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jabalpur-madhya-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-nezahualcoyotl-mexico-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ciudad-nezahualcoyotl-mexico-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-nezahualcoyotl-mexico-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-nezahualcoyotl-mexico-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-nezahualcoyotl-mexico-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-nezahualcoyotl-mexico-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-nezahualcoyotl-mexico-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-nezahualcoyotl-mexico-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-nezahualcoyotl-mexico-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-nezahualcoyotl-mexico-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-nezahualcoyotl-mexico-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-nezahualcoyotl-mexico-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-nezahualcoyotl-mexico-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-nezahualcoyotl-mexico-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prayagraj-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/prayagraj-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prayagraj-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prayagraj-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prayagraj-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prayagraj-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prayagraj-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prayagraj-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prayagraj-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prayagraj-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prayagraj-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prayagraj-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prayagraj-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/prayagraj-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/trujillo-la-libertad-pe", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/trujillo-la-libertad-pe/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/trujillo-la-libertad-pe/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/trujillo-la-libertad-pe/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/trujillo-la-libertad-pe/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/trujillo-la-libertad-pe/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/trujillo-la-libertad-pe/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/trujillo-la-libertad-pe/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/trujillo-la-libertad-pe/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/trujillo-la-libertad-pe/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/trujillo-la-libertad-pe/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/trujillo-la-libertad-pe/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/trujillo-la-libertad-pe/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/trujillo-la-libertad-pe/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/visakhapatnam-andhra-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/visakhapatnam-andhra-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/visakhapatnam-andhra-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/visakhapatnam-andhra-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/visakhapatnam-andhra-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/visakhapatnam-andhra-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/visakhapatnam-andhra-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/visakhapatnam-andhra-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/visakhapatnam-andhra-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/visakhapatnam-andhra-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/visakhapatnam-andhra-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/visakhapatnam-andhra-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/visakhapatnam-andhra-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/visakhapatnam-andhra-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goyang-si-gyeonggi-do-kr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/goyang-si-gyeonggi-do-kr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goyang-si-gyeonggi-do-kr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goyang-si-gyeonggi-do-kr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goyang-si-gyeonggi-do-kr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goyang-si-gyeonggi-do-kr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goyang-si-gyeonggi-do-kr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goyang-si-gyeonggi-do-kr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goyang-si-gyeonggi-do-kr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goyang-si-gyeonggi-do-kr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goyang-si-gyeonggi-do-kr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goyang-si-gyeonggi-do-kr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goyang-si-gyeonggi-do-kr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/goyang-si-gyeonggi-do-kr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jodhpur-rajasthan-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jodhpur-rajasthan-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jodhpur-rajasthan-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jodhpur-rajasthan-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jodhpur-rajasthan-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jodhpur-rajasthan-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jodhpur-rajasthan-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jodhpur-rajasthan-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jodhpur-rajasthan-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jodhpur-rajasthan-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jodhpur-rajasthan-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jodhpur-rajasthan-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jodhpur-rajasthan-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jodhpur-rajasthan-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwalior-madhya-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gwalior-madhya-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwalior-madhya-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwalior-madhya-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwalior-madhya-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwalior-madhya-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwalior-madhya-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwalior-madhya-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwalior-madhya-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwalior-madhya-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwalior-madhya-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwalior-madhya-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwalior-madhya-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gwalior-madhya-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gqeberha-eastern-cape-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gqeberha-eastern-cape-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gqeberha-eastern-cape-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gqeberha-eastern-cape-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gqeberha-eastern-cape-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gqeberha-eastern-cape-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gqeberha-eastern-cape-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gqeberha-eastern-cape-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gqeberha-eastern-cape-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gqeberha-eastern-cape-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gqeberha-eastern-cape-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gqeberha-eastern-cape-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gqeberha-eastern-cape-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gqeberha-eastern-cape-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tbilisi-ge", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tbilisi-ge/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tbilisi-ge/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tbilisi-ge/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tbilisi-ge/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tbilisi-ge/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tbilisi-ge/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tbilisi-ge/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tbilisi-ge/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tbilisi-ge/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tbilisi-ge/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tbilisi-ge/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tbilisi-ge/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tbilisi-ge/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/voronezh-voronezh-oblast-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/voronezh-voronezh-oblast-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/voronezh-voronezh-oblast-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/voronezh-voronezh-oblast-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/voronezh-voronezh-oblast-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/voronezh-voronezh-oblast-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/voronezh-voronezh-oblast-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/voronezh-voronezh-oblast-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/voronezh-voronezh-oblast-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/voronezh-voronezh-oblast-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/voronezh-voronezh-oblast-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/voronezh-voronezh-oblast-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/voronezh-voronezh-oblast-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/voronezh-voronezh-oblast-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teni-tamil-nadu-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/teni-tamil-nadu-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teni-tamil-nadu-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teni-tamil-nadu-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teni-tamil-nadu-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teni-tamil-nadu-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teni-tamil-nadu-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teni-tamil-nadu-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teni-tamil-nadu-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teni-tamil-nadu-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teni-tamil-nadu-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teni-tamil-nadu-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teni-tamil-nadu-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teni-tamil-nadu-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexicali-baja-california-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mexicali-baja-california-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexicali-baja-california-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexicali-baja-california-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexicali-baja-california-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexicali-baja-california-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexicali-baja-california-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexicali-baja-california-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexicali-baja-california-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexicali-baja-california-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexicali-baja-california-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexicali-baja-california-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexicali-baja-california-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mexicali-baja-california-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pointe-noire-cg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/pointe-noire-cg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pointe-noire-cg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pointe-noire-cg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pointe-noire-cg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pointe-noire-cg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pointe-noire-cg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pointe-noire-cg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pointe-noire-cg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pointe-noire-cg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pointe-noire-cg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pointe-noire-cg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pointe-noire-cg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pointe-noire-cg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maceio-alagoas-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/maceio-alagoas-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maceio-alagoas-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maceio-alagoas-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maceio-alagoas-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maceio-alagoas-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maceio-alagoas-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maceio-alagoas-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maceio-alagoas-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maceio-alagoas-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maceio-alagoas-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maceio-alagoas-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maceio-alagoas-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maceio-alagoas-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campinas-sao-paulo-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/campinas-sao-paulo-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campinas-sao-paulo-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campinas-sao-paulo-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campinas-sao-paulo-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campinas-sao-paulo-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campinas-sao-paulo-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campinas-sao-paulo-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campinas-sao-paulo-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campinas-sao-paulo-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campinas-sao-paulo-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campinas-sao-paulo-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campinas-sao-paulo-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campinas-sao-paulo-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ashgabat-tm", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ashgabat-tm/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ashgabat-tm/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ashgabat-tm/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ashgabat-tm/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ashgabat-tm/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ashgabat-tm/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ashgabat-tm/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ashgabat-tm/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ashgabat-tm/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ashgabat-tm/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ashgabat-tm/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ashgabat-tm/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ashgabat-tm/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/howrah-west-bengal-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/howrah-west-bengal-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/howrah-west-bengal-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/howrah-west-bengal-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/howrah-west-bengal-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/howrah-west-bengal-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/howrah-west-bengal-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/howrah-west-bengal-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/howrah-west-bengal-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/howrah-west-bengal-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/howrah-west-bengal-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/howrah-west-bengal-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/howrah-west-bengal-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/howrah-west-bengal-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raipur-chhattisgarh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/raipur-chhattisgarh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raipur-chhattisgarh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raipur-chhattisgarh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raipur-chhattisgarh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raipur-chhattisgarh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raipur-chhattisgarh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raipur-chhattisgarh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raipur-chhattisgarh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raipur-chhattisgarh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raipur-chhattisgarh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raipur-chhattisgarh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raipur-chhattisgarh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raipur-chhattisgarh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/changwon-gyeongsangnam-do-kr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/changwon-gyeongsangnam-do-kr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/changwon-gyeongsangnam-do-kr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/changwon-gyeongsangnam-do-kr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/changwon-gyeongsangnam-do-kr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/changwon-gyeongsangnam-do-kr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/changwon-gyeongsangnam-do-kr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/changwon-gyeongsangnam-do-kr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/changwon-gyeongsangnam-do-kr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/changwon-gyeongsangnam-do-kr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/changwon-gyeongsangnam-do-kr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/changwon-gyeongsangnam-do-kr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/changwon-gyeongsangnam-do-kr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/changwon-gyeongsangnam-do-kr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/koln-north-rhine-westphalia-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/koln-north-rhine-westphalia-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/koln-north-rhine-westphalia-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/koln-north-rhine-westphalia-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/koln-north-rhine-westphalia-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/koln-north-rhine-westphalia-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/koln-north-rhine-westphalia-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/koln-north-rhine-westphalia-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/koln-north-rhine-westphalia-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/koln-north-rhine-westphalia-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/koln-north-rhine-westphalia-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/koln-north-rhine-westphalia-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/koln-north-rhine-westphalia-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/koln-north-rhine-westphalia-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dublin-leinster-ie", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dublin-leinster-ie/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dublin-leinster-ie/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dublin-leinster-ie/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dublin-leinster-ie/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dublin-leinster-ie/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dublin-leinster-ie/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dublin-leinster-ie/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dublin-leinster-ie/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dublin-leinster-ie/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dublin-leinster-ie/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dublin-leinster-ie/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dublin-leinster-ie/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dublin-leinster-ie/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruchirappalli-tamil-nadu-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tiruchirappalli-tamil-nadu-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruchirappalli-tamil-nadu-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruchirappalli-tamil-nadu-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruchirappalli-tamil-nadu-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruchirappalli-tamil-nadu-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruchirappalli-tamil-nadu-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruchirappalli-tamil-nadu-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruchirappalli-tamil-nadu-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruchirappalli-tamil-nadu-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruchirappalli-tamil-nadu-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruchirappalli-tamil-nadu-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruchirappalli-tamil-nadu-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruchirappalli-tamil-nadu-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brussels-brussels-capital-be", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/brussels-brussels-capital-be/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brussels-brussels-capital-be/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brussels-brussels-capital-be/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brussels-brussels-capital-be/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brussels-brussels-capital-be/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brussels-brussels-capital-be/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brussels-brussels-capital-be/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brussels-brussels-capital-be/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brussels-brussels-capital-be/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brussels-brussels-capital-be/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brussels-brussels-capital-be/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brussels-brussels-capital-be/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brussels-brussels-capital-be/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zamboanga-zamboanga-peninsula-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/zamboanga-zamboanga-peninsula-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zamboanga-zamboanga-peninsula-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zamboanga-zamboanga-peninsula-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zamboanga-zamboanga-peninsula-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zamboanga-zamboanga-peninsula-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zamboanga-zamboanga-peninsula-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zamboanga-zamboanga-peninsula-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zamboanga-zamboanga-peninsula-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zamboanga-zamboanga-peninsula-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zamboanga-zamboanga-peninsula-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zamboanga-zamboanga-peninsula-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zamboanga-zamboanga-peninsula-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zamboanga-zamboanga-peninsula-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ottawa-ontario-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ottawa-ontario-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ottawa-ontario-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ottawa-ontario-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ottawa-ontario-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ottawa-ontario-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ottawa-ontario-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ottawa-ontario-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ottawa-ontario-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ottawa-ontario-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ottawa-ontario-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ottawa-ontario-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ottawa-ontario-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ottawa-ontario-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/volgograd-volgograd-oblast-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/volgograd-volgograd-oblast-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/volgograd-volgograd-oblast-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/volgograd-volgograd-oblast-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/volgograd-volgograd-oblast-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/volgograd-volgograd-oblast-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/volgograd-volgograd-oblast-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/volgograd-volgograd-oblast-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/volgograd-volgograd-oblast-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/volgograd-volgograd-oblast-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/volgograd-volgograd-oblast-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/volgograd-volgograd-oblast-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/volgograd-volgograd-oblast-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/volgograd-volgograd-oblast-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edmonton-alberta-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/edmonton-alberta-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edmonton-alberta-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edmonton-alberta-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edmonton-alberta-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edmonton-alberta-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edmonton-alberta-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edmonton-alberta-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edmonton-alberta-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edmonton-alberta-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edmonton-alberta-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edmonton-alberta-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edmonton-alberta-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edmonton-alberta-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/odesa-ua", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/odesa-ua/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/odesa-ua/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/odesa-ua/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/odesa-ua/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/odesa-ua/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/odesa-ua/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/odesa-ua/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/odesa-ua/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/odesa-ua/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/odesa-ua/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/odesa-ua/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/odesa-ua/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/odesa-ua/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jacksonville-florida-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jacksonville-florida-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jacksonville-florida-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jacksonville-florida-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jacksonville-florida-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jacksonville-florida-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jacksonville-florida-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jacksonville-florida-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jacksonville-florida-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jacksonville-florida-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jacksonville-florida-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jacksonville-florida-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jacksonville-florida-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jacksonville-florida-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-worth-texas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/fort-worth-texas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-worth-texas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-worth-texas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-worth-texas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-worth-texas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-worth-texas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-worth-texas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-worth-texas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-worth-texas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-worth-texas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-worth-texas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-worth-texas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-worth-texas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pest-budapest-hu", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/pest-budapest-hu/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pest-budapest-hu/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pest-budapest-hu/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pest-budapest-hu/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pest-budapest-hu/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pest-budapest-hu/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pest-budapest-hu/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pest-budapest-hu/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pest-budapest-hu/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pest-budapest-hu/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pest-budapest-hu/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pest-budapest-hu/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pest-budapest-hu/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-rajasthan-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kota-rajasthan-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-rajasthan-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-rajasthan-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-rajasthan-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-rajasthan-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-rajasthan-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-rajasthan-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-rajasthan-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-rajasthan-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-rajasthan-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-rajasthan-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-rajasthan-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-rajasthan-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivaji-nagar-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/shivaji-nagar-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivaji-nagar-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivaji-nagar-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivaji-nagar-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivaji-nagar-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivaji-nagar-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivaji-nagar-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivaji-nagar-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivaji-nagar-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivaji-nagar-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivaji-nagar-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivaji-nagar-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivaji-nagar-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/san-jose-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sholapur-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sholapur-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sholapur-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sholapur-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sholapur-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sholapur-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sholapur-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sholapur-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sholapur-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sholapur-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sholapur-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sholapur-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sholapur-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sholapur-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guatemala-city-guatemala-gt", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/guatemala-city-guatemala-gt/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guatemala-city-guatemala-gt/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guatemala-city-guatemala-gt/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guatemala-city-guatemala-gt/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guatemala-city-guatemala-gt/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guatemala-city-guatemala-gt/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guatemala-city-guatemala-gt/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guatemala-city-guatemala-gt/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guatemala-city-guatemala-gt/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guatemala-city-guatemala-gt/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guatemala-city-guatemala-gt/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guatemala-city-guatemala-gt/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guatemala-city-guatemala-gt/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/esenyurt-istanbul-tr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/esenyurt-istanbul-tr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/esenyurt-istanbul-tr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/esenyurt-istanbul-tr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/esenyurt-istanbul-tr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/esenyurt-istanbul-tr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/esenyurt-istanbul-tr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/esenyurt-istanbul-tr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/esenyurt-istanbul-tr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/esenyurt-istanbul-tr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/esenyurt-istanbul-tr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/esenyurt-istanbul-tr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/esenyurt-istanbul-tr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/esenyurt-istanbul-tr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perm-perm-krai-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/perm-perm-krai-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perm-perm-krai-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perm-perm-krai-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perm-perm-krai-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perm-perm-krai-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perm-perm-krai-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perm-perm-krai-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perm-perm-krai-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perm-perm-krai-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perm-perm-krai-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perm-perm-krai-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perm-perm-krai-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/perm-perm-krai-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kennedy-bogota-d-c-co", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kennedy-bogota-d-c-co/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kennedy-bogota-d-c-co/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kennedy-bogota-d-c-co/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kennedy-bogota-d-c-co/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kennedy-bogota-d-c-co/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kennedy-bogota-d-c-co/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kennedy-bogota-d-c-co/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kennedy-bogota-d-c-co/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kennedy-bogota-d-c-co/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kennedy-bogota-d-c-co/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kennedy-bogota-d-c-co/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kennedy-bogota-d-c-co/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kennedy-bogota-d-c-co/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chiba-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/chiba-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chiba-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chiba-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chiba-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chiba-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chiba-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chiba-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chiba-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chiba-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chiba-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chiba-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chiba-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chiba-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-guayana-bolivar-ve", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ciudad-guayana-bolivar-ve/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-guayana-bolivar-ve/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-guayana-bolivar-ve/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-guayana-bolivar-ve/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-guayana-bolivar-ve/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-guayana-bolivar-ve/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-guayana-bolivar-ve/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-guayana-bolivar-ve/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-guayana-bolivar-ve/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-guayana-bolivar-ve/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-guayana-bolivar-ve/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-guayana-bolivar-ve/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ciudad-guayana-bolivar-ve/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/austin-texas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/austin-texas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/austin-texas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/austin-texas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/austin-texas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/austin-texas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/austin-texas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/austin-texas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/austin-texas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/austin-texas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/austin-texas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/austin-texas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/austin-texas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/austin-texas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/managua-managua-department-ni", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/managua-managua-department-ni/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/managua-managua-department-ni/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/managua-managua-department-ni/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/managua-managua-department-ni/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/managua-managua-department-ni/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/managua-managua-department-ni/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/managua-managua-department-ni/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/managua-managua-department-ni/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/managua-managua-department-ni/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/managua-managua-department-ni/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/managua-managua-department-ni/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/managua-managua-department-ni/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/managua-managua-department-ni/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jerusalem-il", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jerusalem-il/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jerusalem-il/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jerusalem-il/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jerusalem-il/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jerusalem-il/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jerusalem-il/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jerusalem-il/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jerusalem-il/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jerusalem-il/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jerusalem-il/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jerusalem-il/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jerusalem-il/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jerusalem-il/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandigarh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/chandigarh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandigarh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandigarh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandigarh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandigarh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandigarh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandigarh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandigarh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandigarh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandigarh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandigarh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandigarh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandigarh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dnipro-dnipropetrovsk-ua", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dnipro-dnipropetrovsk-ua/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dnipro-dnipropetrovsk-ua/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dnipro-dnipropetrovsk-ua/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dnipro-dnipropetrovsk-ua/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dnipro-dnipropetrovsk-ua/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dnipro-dnipropetrovsk-ua/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dnipro-dnipropetrovsk-ua/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dnipro-dnipropetrovsk-ua/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dnipro-dnipropetrovsk-ua/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dnipro-dnipropetrovsk-ua/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dnipro-dnipropetrovsk-ua/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dnipro-dnipropetrovsk-ua/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dnipro-dnipropetrovsk-ua/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cebu-city-central-visayas-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cebu-city-central-visayas-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cebu-city-central-visayas-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cebu-city-central-visayas-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cebu-city-central-visayas-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cebu-city-central-visayas-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cebu-city-central-visayas-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cebu-city-central-visayas-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cebu-city-central-visayas-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cebu-city-central-visayas-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cebu-city-central-visayas-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cebu-city-central-visayas-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cebu-city-central-visayas-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cebu-city-central-visayas-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruppur-tamil-nadu-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tiruppur-tamil-nadu-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruppur-tamil-nadu-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruppur-tamil-nadu-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruppur-tamil-nadu-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruppur-tamil-nadu-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruppur-tamil-nadu-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruppur-tamil-nadu-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruppur-tamil-nadu-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruppur-tamil-nadu-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruppur-tamil-nadu-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruppur-tamil-nadu-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruppur-tamil-nadu-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tiruppur-tamil-nadu-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guwahati-assam-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/guwahati-assam-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guwahati-assam-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guwahati-assam-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guwahati-assam-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guwahati-assam-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guwahati-assam-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guwahati-assam-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guwahati-assam-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guwahati-assam-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guwahati-assam-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guwahati-assam-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guwahati-assam-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guwahati-assam-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-central-and-western-hk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/victoria-central-and-western-hk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-central-and-western-hk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-central-and-western-hk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-central-and-western-hk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-central-and-western-hk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-central-and-western-hk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-central-and-western-hk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-central-and-western-hk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-central-and-western-hk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-central-and-western-hk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-central-and-western-hk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-central-and-western-hk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-central-and-western-hk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rosario-santa-fe-ar", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rosario-santa-fe-ar/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rosario-santa-fe-ar/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rosario-santa-fe-ar/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rosario-santa-fe-ar/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rosario-santa-fe-ar/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rosario-santa-fe-ar/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rosario-santa-fe-ar/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rosario-santa-fe-ar/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rosario-santa-fe-ar/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rosario-santa-fe-ar/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rosario-santa-fe-ar/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rosario-santa-fe-ar/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rosario-santa-fe-ar/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hubballi-karnataka-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hubballi-karnataka-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hubballi-karnataka-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hubballi-karnataka-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hubballi-karnataka-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hubballi-karnataka-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hubballi-karnataka-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hubballi-karnataka-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hubballi-karnataka-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hubballi-karnataka-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hubballi-karnataka-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hubballi-karnataka-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hubballi-karnataka-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hubballi-karnataka-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitakyushu-fukuoka-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kitakyushu-fukuoka-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitakyushu-fukuoka-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitakyushu-fukuoka-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitakyushu-fukuoka-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitakyushu-fukuoka-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitakyushu-fukuoka-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitakyushu-fukuoka-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitakyushu-fukuoka-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitakyushu-fukuoka-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitakyushu-fukuoka-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitakyushu-fukuoka-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitakyushu-fukuoka-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitakyushu-fukuoka-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/setagaya-tokyo-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/setagaya-tokyo-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/setagaya-tokyo-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/setagaya-tokyo-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/setagaya-tokyo-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/setagaya-tokyo-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/setagaya-tokyo-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/setagaya-tokyo-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/setagaya-tokyo-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/setagaya-tokyo-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/setagaya-tokyo-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/setagaya-tokyo-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/setagaya-tokyo-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/setagaya-tokyo-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-jm", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kingston-jm/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-jm/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-jm/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-jm/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-jm/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-jm/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-jm/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-jm/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-jm/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-jm/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-jm/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-jm/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-jm/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chihuahua-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/chihuahua-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chihuahua-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chihuahua-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chihuahua-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chihuahua-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chihuahua-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chihuahua-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chihuahua-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chihuahua-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chihuahua-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chihuahua-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chihuahua-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chihuahua-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eskisehir-tr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/eskisehir-tr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eskisehir-tr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eskisehir-tr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eskisehir-tr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eskisehir-tr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eskisehir-tr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eskisehir-tr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eskisehir-tr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eskisehir-tr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eskisehir-tr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eskisehir-tr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eskisehir-tr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eskisehir-tr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mysuru-karnataka-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mysuru-karnataka-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mysuru-karnataka-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mysuru-karnataka-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mysuru-karnataka-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mysuru-karnataka-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mysuru-karnataka-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mysuru-karnataka-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mysuru-karnataka-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mysuru-karnataka-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mysuru-karnataka-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mysuru-karnataka-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mysuru-karnataka-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mysuru-karnataka-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-tamil-nadu-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/salem-tamil-nadu-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-tamil-nadu-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-tamil-nadu-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-tamil-nadu-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-tamil-nadu-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-tamil-nadu-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-tamil-nadu-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-tamil-nadu-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-tamil-nadu-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-tamil-nadu-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-tamil-nadu-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-tamil-nadu-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-tamil-nadu-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-luis-maranhao-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sao-luis-maranhao-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-luis-maranhao-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-luis-maranhao-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-luis-maranhao-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-luis-maranhao-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-luis-maranhao-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-luis-maranhao-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-luis-maranhao-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-luis-maranhao-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-luis-maranhao-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-luis-maranhao-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-luis-maranhao-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-luis-maranhao-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seongnam-si-gyeonggi-do-kr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/seongnam-si-gyeonggi-do-kr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seongnam-si-gyeonggi-do-kr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seongnam-si-gyeonggi-do-kr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seongnam-si-gyeonggi-do-kr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seongnam-si-gyeonggi-do-kr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seongnam-si-gyeonggi-do-kr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seongnam-si-gyeonggi-do-kr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seongnam-si-gyeonggi-do-kr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seongnam-si-gyeonggi-do-kr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seongnam-si-gyeonggi-do-kr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seongnam-si-gyeonggi-do-kr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seongnam-si-gyeonggi-do-kr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seongnam-si-gyeonggi-do-kr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cartagena-bolivar-co", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cartagena-bolivar-co/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cartagena-bolivar-co/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cartagena-bolivar-co/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cartagena-bolivar-co/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cartagena-bolivar-co/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cartagena-bolivar-co/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cartagena-bolivar-co/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cartagena-bolivar-co/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cartagena-bolivar-co/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cartagena-bolivar-co/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cartagena-bolivar-co/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cartagena-bolivar-co/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cartagena-bolivar-co/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antipolo-calabarzon-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/antipolo-calabarzon-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antipolo-calabarzon-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antipolo-calabarzon-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antipolo-calabarzon-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antipolo-calabarzon-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antipolo-calabarzon-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antipolo-calabarzon-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antipolo-calabarzon-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antipolo-calabarzon-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antipolo-calabarzon-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antipolo-calabarzon-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antipolo-calabarzon-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antipolo-calabarzon-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-ohio-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/columbus-ohio-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-ohio-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-ohio-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-ohio-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-ohio-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-ohio-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-ohio-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-ohio-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-ohio-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-ohio-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-ohio-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-ohio-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-ohio-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/charlotte-north-carolina-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/charlotte-north-carolina-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/charlotte-north-carolina-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/charlotte-north-carolina-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/charlotte-north-carolina-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/charlotte-north-carolina-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/charlotte-north-carolina-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/charlotte-north-carolina-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/charlotte-north-carolina-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/charlotte-north-carolina-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/charlotte-north-carolina-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/charlotte-north-carolina-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/charlotte-north-carolina-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/charlotte-north-carolina-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naples-campania-it", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/naples-campania-it/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naples-campania-it/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naples-campania-it/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naples-campania-it/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naples-campania-it/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naples-campania-it/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naples-campania-it/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naples-campania-it/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naples-campania-it/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naples-campania-it/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naples-campania-it/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naples-campania-it/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naples-campania-it/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campo-grande-mato-grosso-do-sul-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/campo-grande-mato-grosso-do-sul-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campo-grande-mato-grosso-do-sul-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campo-grande-mato-grosso-do-sul-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campo-grande-mato-grosso-do-sul-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campo-grande-mato-grosso-do-sul-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campo-grande-mato-grosso-do-sul-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campo-grande-mato-grosso-do-sul-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campo-grande-mato-grosso-do-sul-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campo-grande-mato-grosso-do-sul-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campo-grande-mato-grosso-do-sul-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campo-grande-mato-grosso-do-sul-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campo-grande-mato-grosso-do-sul-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/campo-grande-mato-grosso-do-sul-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bobo-dioulasso-hauts-bassins-bf", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bobo-dioulasso-hauts-bassins-bf/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bobo-dioulasso-hauts-bassins-bf/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bobo-dioulasso-hauts-bassins-bf/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bobo-dioulasso-hauts-bassins-bf/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bobo-dioulasso-hauts-bassins-bf/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bobo-dioulasso-hauts-bassins-bf/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bobo-dioulasso-hauts-bassins-bf/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bobo-dioulasso-hauts-bassins-bf/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bobo-dioulasso-hauts-bassins-bf/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bobo-dioulasso-hauts-bassins-bf/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bobo-dioulasso-hauts-bassins-bf/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bobo-dioulasso-hauts-bassins-bf/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bobo-dioulasso-hauts-bassins-bf/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/donetsk-ua", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/donetsk-ua/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/donetsk-ua/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/donetsk-ua/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/donetsk-ua/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/donetsk-ua/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/donetsk-ua/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/donetsk-ua/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/donetsk-ua/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/donetsk-ua/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/donetsk-ua/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/donetsk-ua/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/donetsk-ua/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/donetsk-ua/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bishkek-kg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bishkek-kg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bishkek-kg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bishkek-kg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bishkek-kg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bishkek-kg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bishkek-kg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bishkek-kg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bishkek-kg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bishkek-kg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bishkek-kg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bishkek-kg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bishkek-kg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bishkek-kg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnodar-krasnodar-krai-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/krasnodar-krasnodar-krai-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnodar-krasnodar-krai-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnodar-krasnodar-krai-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnodar-krasnodar-krai-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnodar-krasnodar-krai-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnodar-krasnodar-krai-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnodar-krasnodar-krai-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnodar-krasnodar-krai-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnodar-krasnodar-krai-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnodar-krasnodar-krai-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnodar-krasnodar-krai-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnodar-krasnodar-krai-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krasnodar-krasnodar-krai-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/natal-rio-grande-do-norte-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/natal-rio-grande-do-norte-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/natal-rio-grande-do-norte-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/natal-rio-grande-do-norte-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/natal-rio-grande-do-norte-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/natal-rio-grande-do-norte-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/natal-rio-grande-do-norte-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/natal-rio-grande-do-norte-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/natal-rio-grande-do-norte-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/natal-rio-grande-do-norte-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/natal-rio-grande-do-norte-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/natal-rio-grande-do-norte-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/natal-rio-grande-do-norte-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/natal-rio-grande-do-norte-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cancun-quintana-roo-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cancun-quintana-roo-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cancun-quintana-roo-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cancun-quintana-roo-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cancun-quintana-roo-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cancun-quintana-roo-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cancun-quintana-roo-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cancun-quintana-roo-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cancun-quintana-roo-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cancun-quintana-roo-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cancun-quintana-roo-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cancun-quintana-roo-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cancun-quintana-roo-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cancun-quintana-roo-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indianapolis-indiana-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/indianapolis-indiana-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indianapolis-indiana-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indianapolis-indiana-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indianapolis-indiana-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indianapolis-indiana-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indianapolis-indiana-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indianapolis-indiana-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indianapolis-indiana-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indianapolis-indiana-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indianapolis-indiana-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indianapolis-indiana-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indianapolis-indiana-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/indianapolis-indiana-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gurugram-haryana-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gurugram-haryana-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gurugram-haryana-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gurugram-haryana-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gurugram-haryana-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gurugram-haryana-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gurugram-haryana-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gurugram-haryana-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gurugram-haryana-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gurugram-haryana-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gurugram-haryana-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gurugram-haryana-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gurugram-haryana-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gurugram-haryana-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhubaneswar-odisha-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bhubaneswar-odisha-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhubaneswar-odisha-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhubaneswar-odisha-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhubaneswar-odisha-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhubaneswar-odisha-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhubaneswar-odisha-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhubaneswar-odisha-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhubaneswar-odisha-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhubaneswar-odisha-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhubaneswar-odisha-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhubaneswar-odisha-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhubaneswar-odisha-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhubaneswar-odisha-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulenvos-luanda-ao", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mulenvos-luanda-ao/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulenvos-luanda-ao/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulenvos-luanda-ao/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulenvos-luanda-ao/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulenvos-luanda-ao/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulenvos-luanda-ao/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulenvos-luanda-ao/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulenvos-luanda-ao/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulenvos-luanda-ao/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulenvos-luanda-ao/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulenvos-luanda-ao/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulenvos-luanda-ao/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulenvos-luanda-ao/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marseille-provence-alpes-cote-d-azur-fr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/marseille-provence-alpes-cote-d-azur-fr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marseille-provence-alpes-cote-d-azur-fr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marseille-provence-alpes-cote-d-azur-fr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marseille-provence-alpes-cote-d-azur-fr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marseille-provence-alpes-cote-d-azur-fr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marseille-provence-alpes-cote-d-azur-fr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marseille-provence-alpes-cote-d-azur-fr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marseille-provence-alpes-cote-d-azur-fr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marseille-provence-alpes-cote-d-azur-fr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marseille-provence-alpes-cote-d-azur-fr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marseille-provence-alpes-cote-d-azur-fr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marseille-provence-alpes-cote-d-azur-fr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marseille-provence-alpes-cote-d-azur-fr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhiwandi-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bhiwandi-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhiwandi-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhiwandi-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhiwandi-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhiwandi-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhiwandi-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhiwandi-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhiwandi-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhiwandi-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhiwandi-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhiwandi-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhiwandi-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhiwandi-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soshanguve-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/soshanguve-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soshanguve-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soshanguve-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soshanguve-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soshanguve-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soshanguve-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soshanguve-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soshanguve-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soshanguve-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soshanguve-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soshanguve-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soshanguve-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soshanguve-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teresina-piaui-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/teresina-piaui-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teresina-piaui-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teresina-piaui-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teresina-piaui-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teresina-piaui-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teresina-piaui-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teresina-piaui-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teresina-piaui-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teresina-piaui-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teresina-piaui-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teresina-piaui-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teresina-piaui-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/teresina-piaui-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalandhar-punjab-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jalandhar-punjab-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalandhar-punjab-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalandhar-punjab-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalandhar-punjab-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalandhar-punjab-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalandhar-punjab-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalandhar-punjab-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalandhar-punjab-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalandhar-punjab-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalandhar-punjab-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalandhar-punjab-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalandhar-punjab-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalandhar-punjab-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rotterdam-south-holland-nl", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rotterdam-south-holland-nl/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rotterdam-south-holland-nl/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rotterdam-south-holland-nl/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rotterdam-south-holland-nl/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rotterdam-south-holland-nl/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rotterdam-south-holland-nl/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rotterdam-south-holland-nl/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rotterdam-south-holland-nl/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rotterdam-south-holland-nl/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rotterdam-south-holland-nl/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rotterdam-south-holland-nl/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rotterdam-south-holland-nl/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rotterdam-south-holland-nl/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duque-de-caxias-rio-de-janeiro-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/duque-de-caxias-rio-de-janeiro-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duque-de-caxias-rio-de-janeiro-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duque-de-caxias-rio-de-janeiro-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duque-de-caxias-rio-de-janeiro-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duque-de-caxias-rio-de-janeiro-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duque-de-caxias-rio-de-janeiro-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duque-de-caxias-rio-de-janeiro-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duque-de-caxias-rio-de-janeiro-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duque-de-caxias-rio-de-janeiro-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duque-de-caxias-rio-de-janeiro-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duque-de-caxias-rio-de-janeiro-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duque-de-caxias-rio-de-janeiro-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duque-de-caxias-rio-de-janeiro-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/viana-luanda-ao", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/viana-luanda-ao/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/viana-luanda-ao/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/viana-luanda-ao/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/viana-luanda-ao/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/viana-luanda-ao/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/viana-luanda-ao/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/viana-luanda-ao/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/viana-luanda-ao/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/viana-luanda-ao/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/viana-luanda-ao/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/viana-luanda-ao/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/viana-luanda-ao/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/viana-luanda-ao/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohini-delhi-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rohini-delhi-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohini-delhi-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohini-delhi-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohini-delhi-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohini-delhi-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohini-delhi-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohini-delhi-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohini-delhi-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohini-delhi-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohini-delhi-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohini-delhi-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohini-delhi-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohini-delhi-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasig-city-national-capital-region-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/pasig-city-national-capital-region-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasig-city-national-capital-region-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasig-city-national-capital-region-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasig-city-national-capital-region-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasig-city-national-capital-region-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasig-city-national-capital-region-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasig-city-national-capital-region-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasig-city-national-capital-region-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasig-city-national-capital-region-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasig-city-national-capital-region-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasig-city-national-capital-region-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasig-city-national-capital-region-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasig-city-national-capital-region-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheongju-si-north-chungcheong-kr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cheongju-si-north-chungcheong-kr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheongju-si-north-chungcheong-kr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheongju-si-north-chungcheong-kr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheongju-si-north-chungcheong-kr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheongju-si-north-chungcheong-kr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheongju-si-north-chungcheong-kr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheongju-si-north-chungcheong-kr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheongju-si-north-chungcheong-kr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheongju-si-north-chungcheong-kr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheongju-si-north-chungcheong-kr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheongju-si-north-chungcheong-kr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheongju-si-north-chungcheong-kr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheongju-si-north-chungcheong-kr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanayannur-kerala-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kanayannur-kerala-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanayannur-kerala-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanayannur-kerala-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanayannur-kerala-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanayannur-kerala-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanayannur-kerala-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanayannur-kerala-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanayannur-kerala-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanayannur-kerala-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanayannur-kerala-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanayannur-kerala-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanayannur-kerala-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kanayannur-kerala-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tegucigalpa-francisco-morazan-department-hn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tegucigalpa-francisco-morazan-department-hn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tegucigalpa-francisco-morazan-department-hn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tegucigalpa-francisco-morazan-department-hn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tegucigalpa-francisco-morazan-department-hn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tegucigalpa-francisco-morazan-department-hn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tegucigalpa-francisco-morazan-department-hn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tegucigalpa-francisco-morazan-department-hn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tegucigalpa-francisco-morazan-department-hn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tegucigalpa-francisco-morazan-department-hn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tegucigalpa-francisco-morazan-department-hn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tegucigalpa-francisco-morazan-department-hn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tegucigalpa-francisco-morazan-department-hn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tegucigalpa-francisco-morazan-department-hn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucheon-si-gyeonggi-do-kr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bucheon-si-gyeonggi-do-kr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucheon-si-gyeonggi-do-kr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucheon-si-gyeonggi-do-kr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucheon-si-gyeonggi-do-kr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucheon-si-gyeonggi-do-kr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucheon-si-gyeonggi-do-kr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucheon-si-gyeonggi-do-kr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucheon-si-gyeonggi-do-kr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucheon-si-gyeonggi-do-kr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucheon-si-gyeonggi-do-kr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucheon-si-gyeonggi-do-kr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucheon-si-gyeonggi-do-kr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bucheon-si-gyeonggi-do-kr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanh-hoa-thanh-hoa-province-vn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/thanh-hoa-thanh-hoa-province-vn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanh-hoa-thanh-hoa-province-vn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanh-hoa-thanh-hoa-province-vn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanh-hoa-thanh-hoa-province-vn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanh-hoa-thanh-hoa-province-vn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanh-hoa-thanh-hoa-province-vn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanh-hoa-thanh-hoa-province-vn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanh-hoa-thanh-hoa-province-vn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanh-hoa-thanh-hoa-province-vn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanh-hoa-thanh-hoa-province-vn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanh-hoa-thanh-hoa-province-vn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanh-hoa-thanh-hoa-province-vn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanh-hoa-thanh-hoa-province-vn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/turin-piedmont-it", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/turin-piedmont-it/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/turin-piedmont-it/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/turin-piedmont-it/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/turin-piedmont-it/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/turin-piedmont-it/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/turin-piedmont-it/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/turin-piedmont-it/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/turin-piedmont-it/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/turin-piedmont-it/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/turin-piedmont-it/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/turin-piedmont-it/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/turin-piedmont-it/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/turin-piedmont-it/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/libreville-estuaire-ga", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/libreville-estuaire-ga/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/libreville-estuaire-ga/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/libreville-estuaire-ga/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/libreville-estuaire-ga/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/libreville-estuaire-ga/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/libreville-estuaire-ga/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/libreville-estuaire-ga/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/libreville-estuaire-ga/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/libreville-estuaire-ga/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/libreville-estuaire-ga/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/libreville-estuaire-ga/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/libreville-estuaire-ga/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/libreville-estuaire-ga/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saratov-saratov-oblast-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/saratov-saratov-oblast-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saratov-saratov-oblast-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saratov-saratov-oblast-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saratov-saratov-oblast-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saratov-saratov-oblast-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saratov-saratov-oblast-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saratov-saratov-oblast-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saratov-saratov-oblast-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saratov-saratov-oblast-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saratov-saratov-oblast-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saratov-saratov-oblast-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saratov-saratov-oblast-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saratov-saratov-oblast-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulan-bator-ulaanbaatar-mn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ulan-bator-ulaanbaatar-mn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulan-bator-ulaanbaatar-mn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulan-bator-ulaanbaatar-mn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulan-bator-ulaanbaatar-mn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulan-bator-ulaanbaatar-mn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulan-bator-ulaanbaatar-mn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulan-bator-ulaanbaatar-mn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulan-bator-ulaanbaatar-mn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulan-bator-ulaanbaatar-mn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulan-bator-ulaanbaatar-mn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulan-bator-ulaanbaatar-mn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulan-bator-ulaanbaatar-mn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulan-bator-ulaanbaatar-mn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/takeo-kh", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/takeo-kh/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/takeo-kh/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/takeo-kh/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/takeo-kh/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/takeo-kh/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/takeo-kh/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/takeo-kh/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/takeo-kh/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/takeo-kh/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/takeo-kh/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/takeo-kh/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/takeo-kh/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/takeo-kh/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nova-iguacu-rio-de-janeiro-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/nova-iguacu-rio-de-janeiro-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nova-iguacu-rio-de-janeiro-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nova-iguacu-rio-de-janeiro-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nova-iguacu-rio-de-janeiro-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nova-iguacu-rio-de-janeiro-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nova-iguacu-rio-de-janeiro-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nova-iguacu-rio-de-janeiro-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nova-iguacu-rio-de-janeiro-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nova-iguacu-rio-de-janeiro-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nova-iguacu-rio-de-janeiro-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nova-iguacu-rio-de-janeiro-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nova-iguacu-rio-de-janeiro-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nova-iguacu-rio-de-janeiro-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cochabamba-bo", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cochabamba-bo/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cochabamba-bo/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cochabamba-bo/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cochabamba-bo/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cochabamba-bo/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cochabamba-bo/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cochabamba-bo/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cochabamba-bo/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cochabamba-bo/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cochabamba-bo/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cochabamba-bo/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cochabamba-bo/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cochabamba-bo/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vientiane-vientiane-prefecture-la", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/vientiane-vientiane-prefecture-la/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vientiane-vientiane-prefecture-la/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vientiane-vientiane-prefecture-la/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vientiane-vientiane-prefecture-la/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vientiane-vientiane-prefecture-la/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vientiane-vientiane-prefecture-la/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vientiane-vientiane-prefecture-la/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vientiane-vientiane-prefecture-la/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vientiane-vientiane-prefecture-la/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vientiane-vientiane-prefecture-la/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vientiane-vientiane-prefecture-la/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vientiane-vientiane-prefecture-la/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vientiane-vientiane-prefecture-la/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pietermaritzburg-kwazulu-natal-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/pietermaritzburg-kwazulu-natal-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pietermaritzburg-kwazulu-natal-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pietermaritzburg-kwazulu-natal-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pietermaritzburg-kwazulu-natal-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pietermaritzburg-kwazulu-natal-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pietermaritzburg-kwazulu-natal-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pietermaritzburg-kwazulu-natal-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pietermaritzburg-kwazulu-natal-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pietermaritzburg-kwazulu-natal-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pietermaritzburg-kwazulu-natal-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pietermaritzburg-kwazulu-natal-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pietermaritzburg-kwazulu-natal-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pietermaritzburg-kwazulu-natal-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naucalpan-de-juarez-mexico-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/naucalpan-de-juarez-mexico-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naucalpan-de-juarez-mexico-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naucalpan-de-juarez-mexico-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naucalpan-de-juarez-mexico-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naucalpan-de-juarez-mexico-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naucalpan-de-juarez-mexico-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naucalpan-de-juarez-mexico-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naucalpan-de-juarez-mexico-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naucalpan-de-juarez-mexico-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naucalpan-de-juarez-mexico-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naucalpan-de-juarez-mexico-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naucalpan-de-juarez-mexico-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naucalpan-de-juarez-mexico-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bouake-vallee-du-bandama-district-ci", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bouake-vallee-du-bandama-district-ci/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bouake-vallee-du-bandama-district-ci/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bouake-vallee-du-bandama-district-ci/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bouake-vallee-du-bandama-district-ci/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bouake-vallee-du-bandama-district-ci/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bouake-vallee-du-bandama-district-ci/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bouake-vallee-du-bandama-district-ci/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bouake-vallee-du-bandama-district-ci/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bouake-vallee-du-bandama-district-ci/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bouake-vallee-du-bandama-district-ci/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bouake-vallee-du-bandama-district-ci/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bouake-vallee-du-bandama-district-ci/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bouake-vallee-du-bandama-district-ci/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-francisco-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/san-francisco-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-francisco-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-francisco-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-francisco-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-francisco-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-francisco-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-francisco-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-francisco-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-francisco-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-francisco-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-francisco-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-francisco-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-francisco-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sakai-osaka-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sakai-osaka-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sakai-osaka-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sakai-osaka-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sakai-osaka-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sakai-osaka-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sakai-osaka-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sakai-osaka-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sakai-osaka-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sakai-osaka-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sakai-osaka-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sakai-osaka-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sakai-osaka-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sakai-osaka-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-es", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/valencia-es/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-es/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-es/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-es/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-es/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-es/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-es/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-es/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-es/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-es/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-es/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-es/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valencia-es/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joao-pessoa-paraiba-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/joao-pessoa-paraiba-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joao-pessoa-paraiba-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joao-pessoa-paraiba-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joao-pessoa-paraiba-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joao-pessoa-paraiba-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joao-pessoa-paraiba-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joao-pessoa-paraiba-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joao-pessoa-paraiba-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joao-pessoa-paraiba-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joao-pessoa-paraiba-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joao-pessoa-paraiba-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joao-pessoa-paraiba-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joao-pessoa-paraiba-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bukavu-south-kivu-cd", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bukavu-south-kivu-cd/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bukavu-south-kivu-cd/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bukavu-south-kivu-cd/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bukavu-south-kivu-cd/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bukavu-south-kivu-cd/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bukavu-south-kivu-cd/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bukavu-south-kivu-cd/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bukavu-south-kivu-cd/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bukavu-south-kivu-cd/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bukavu-south-kivu-cd/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bukavu-south-kivu-cd/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bukavu-south-kivu-cd/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bukavu-south-kivu-cd/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krakow-lesser-poland-pl", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/krakow-lesser-poland-pl/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krakow-lesser-poland-pl/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krakow-lesser-poland-pl/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krakow-lesser-poland-pl/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krakow-lesser-poland-pl/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krakow-lesser-poland-pl/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krakow-lesser-poland-pl/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krakow-lesser-poland-pl/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krakow-lesser-poland-pl/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krakow-lesser-poland-pl/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krakow-lesser-poland-pl/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krakow-lesser-poland-pl/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krakow-lesser-poland-pl/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-anzoategui-ve", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/barcelona-anzoategui-ve/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-anzoategui-ve/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-anzoategui-ve/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-anzoategui-ve/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-anzoategui-ve/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-anzoategui-ve/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-anzoategui-ve/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-anzoategui-ve/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-anzoategui-ve/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-anzoategui-ve/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-anzoategui-ve/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-anzoategui-ve/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barcelona-anzoategui-ve/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangui-cf", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bangui-cf/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangui-cf/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangui-cf/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangui-cf/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangui-cf/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangui-cf/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangui-cf/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangui-cf/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangui-cf/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangui-cf/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangui-cf/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangui-cf/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bangui-cf/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hermosillo-sonora-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hermosillo-sonora-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hermosillo-sonora-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hermosillo-sonora-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hermosillo-sonora-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hermosillo-sonora-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hermosillo-sonora-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hermosillo-sonora-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hermosillo-sonora-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hermosillo-sonora-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hermosillo-sonora-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hermosillo-sonora-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hermosillo-sonora-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hermosillo-sonora-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhayandar-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bhayandar-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhayandar-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhayandar-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhayandar-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhayandar-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhayandar-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhayandar-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhayandar-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhayandar-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhayandar-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhayandar-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhayandar-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhayandar-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/culiacan-sinaloa-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/culiacan-sinaloa-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/culiacan-sinaloa-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/culiacan-sinaloa-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/culiacan-sinaloa-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/culiacan-sinaloa-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/culiacan-sinaloa-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/culiacan-sinaloa-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/culiacan-sinaloa-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/culiacan-sinaloa-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/culiacan-sinaloa-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/culiacan-sinaloa-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/culiacan-sinaloa-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/culiacan-sinaloa-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-sula-cortes-department-hn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/san-pedro-sula-cortes-department-hn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-sula-cortes-department-hn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-sula-cortes-department-hn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-sula-cortes-department-hn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-sula-cortes-department-hn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-sula-cortes-department-hn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-sula-cortes-department-hn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-sula-cortes-department-hn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-sula-cortes-department-hn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-sula-cortes-department-hn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-sula-cortes-department-hn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-sula-cortes-department-hn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-sula-cortes-department-hn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/narela-delhi-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/narela-delhi-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/narela-delhi-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/narela-delhi-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/narela-delhi-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/narela-delhi-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/narela-delhi-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/narela-delhi-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/narela-delhi-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/narela-delhi-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/narela-delhi-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/narela-delhi-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/narela-delhi-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/narela-delhi-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niigata-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/niigata-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niigata-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niigata-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niigata-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niigata-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niigata-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niigata-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niigata-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niigata-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niigata-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niigata-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niigata-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/niigata-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zarqa-jo", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/zarqa-jo/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zarqa-jo/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zarqa-jo/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zarqa-jo/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zarqa-jo/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zarqa-jo/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zarqa-jo/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zarqa-jo/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zarqa-jo/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zarqa-jo/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zarqa-jo/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zarqa-jo/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zarqa-jo/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cankaya-ankara-tr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cankaya-ankara-tr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cankaya-ankara-tr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cankaya-ankara-tr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cankaya-ankara-tr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cankaya-ankara-tr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cankaya-ankara-tr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cankaya-ankara-tr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cankaya-ankara-tr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cankaya-ankara-tr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cankaya-ankara-tr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cankaya-ankara-tr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cankaya-ankara-tr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cankaya-ankara-tr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kucukcekmece-istanbul-tr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kucukcekmece-istanbul-tr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kucukcekmece-istanbul-tr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kucukcekmece-istanbul-tr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kucukcekmece-istanbul-tr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kucukcekmece-istanbul-tr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kucukcekmece-istanbul-tr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kucukcekmece-istanbul-tr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kucukcekmece-istanbul-tr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kucukcekmece-istanbul-tr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kucukcekmece-istanbul-tr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kucukcekmece-istanbul-tr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kucukcekmece-istanbul-tr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kucukcekmece-istanbul-tr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamamatsu-shizuoka-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hamamatsu-shizuoka-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamamatsu-shizuoka-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamamatsu-shizuoka-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamamatsu-shizuoka-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamamatsu-shizuoka-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamamatsu-shizuoka-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamamatsu-shizuoka-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamamatsu-shizuoka-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamamatsu-shizuoka-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamamatsu-shizuoka-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamamatsu-shizuoka-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamamatsu-shizuoka-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamamatsu-shizuoka-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolwezi-lualaba-cd", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kolwezi-lualaba-cd/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolwezi-lualaba-cd/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolwezi-lualaba-cd/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolwezi-lualaba-cd/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolwezi-lualaba-cd/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolwezi-lualaba-cd/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolwezi-lualaba-cd/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolwezi-lualaba-cd/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolwezi-lualaba-cd/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolwezi-lualaba-cd/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolwezi-lualaba-cd/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolwezi-lualaba-cd/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolwezi-lualaba-cd/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vinh-nghe-an-province-vn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/vinh-nghe-an-province-vn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vinh-nghe-an-province-vn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vinh-nghe-an-province-vn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vinh-nghe-an-province-vn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vinh-nghe-an-province-vn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vinh-nghe-an-province-vn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vinh-nghe-an-province-vn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vinh-nghe-an-province-vn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vinh-nghe-an-province-vn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vinh-nghe-an-province-vn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vinh-nghe-an-province-vn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vinh-nghe-an-province-vn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vinh-nghe-an-province-vn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thiruvananthapuram-kerala-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/thiruvananthapuram-kerala-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thiruvananthapuram-kerala-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thiruvananthapuram-kerala-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thiruvananthapuram-kerala-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thiruvananthapuram-kerala-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thiruvananthapuram-kerala-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thiruvananthapuram-kerala-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thiruvananthapuram-kerala-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thiruvananthapuram-kerala-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thiruvananthapuram-kerala-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thiruvananthapuram-kerala-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thiruvananthapuram-kerala-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thiruvananthapuram-kerala-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seattle-washington-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/seattle-washington-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seattle-washington-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seattle-washington-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seattle-washington-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seattle-washington-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seattle-washington-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seattle-washington-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seattle-washington-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seattle-washington-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seattle-washington-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seattle-washington-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seattle-washington-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/seattle-washington-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cucuta-norte-de-santander-department-co", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cucuta-norte-de-santander-department-co/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cucuta-norte-de-santander-department-co/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cucuta-norte-de-santander-department-co/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cucuta-norte-de-santander-department-co/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cucuta-norte-de-santander-department-co/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cucuta-norte-de-santander-department-co/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cucuta-norte-de-santander-department-co/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cucuta-norte-de-santander-department-co/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cucuta-norte-de-santander-department-co/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cucuta-norte-de-santander-department-co/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cucuta-norte-de-santander-department-co/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cucuta-norte-de-santander-department-co/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cucuta-norte-de-santander-department-co/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nampula-mz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/nampula-mz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nampula-mz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nampula-mz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nampula-mz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nampula-mz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nampula-mz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nampula-mz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nampula-mz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nampula-mz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nampula-mz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nampula-mz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nampula-mz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nampula-mz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bujumbura-bujumbura-mairie-bi", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bujumbura-bujumbura-mairie-bi/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bujumbura-bujumbura-mairie-bi/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bujumbura-bujumbura-mairie-bi/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bujumbura-bujumbura-mairie-bi/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bujumbura-bujumbura-mairie-bi/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bujumbura-bujumbura-mairie-bi/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bujumbura-bujumbura-mairie-bi/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bujumbura-bujumbura-mairie-bi/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bujumbura-bujumbura-mairie-bi/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bujumbura-bujumbura-mairie-bi/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bujumbura-bujumbura-mairie-bi/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bujumbura-bujumbura-mairie-bi/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bujumbura-bujumbura-mairie-bi/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tyumen-tyumen-oblast-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tyumen-tyumen-oblast-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tyumen-tyumen-oblast-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tyumen-tyumen-oblast-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tyumen-tyumen-oblast-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tyumen-tyumen-oblast-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tyumen-tyumen-oblast-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tyumen-tyumen-oblast-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tyumen-tyumen-oblast-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tyumen-tyumen-oblast-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tyumen-tyumen-oblast-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tyumen-tyumen-oblast-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tyumen-tyumen-oblast-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tyumen-tyumen-oblast-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erzurum-tr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/erzurum-tr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erzurum-tr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erzurum-tr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erzurum-tr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erzurum-tr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erzurum-tr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erzurum-tr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erzurum-tr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erzurum-tr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erzurum-tr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erzurum-tr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erzurum-tr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erzurum-tr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sorocaba-sao-paulo-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sorocaba-sao-paulo-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sorocaba-sao-paulo-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sorocaba-sao-paulo-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sorocaba-sao-paulo-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sorocaba-sao-paulo-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sorocaba-sao-paulo-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sorocaba-sao-paulo-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sorocaba-sao-paulo-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sorocaba-sao-paulo-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sorocaba-sao-paulo-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sorocaba-sao-paulo-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sorocaba-sao-paulo-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sorocaba-sao-paulo-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/uberlandia-minas-gerais-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/uberlandia-minas-gerais-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/uberlandia-minas-gerais-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/uberlandia-minas-gerais-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/uberlandia-minas-gerais-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/uberlandia-minas-gerais-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/uberlandia-minas-gerais-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/uberlandia-minas-gerais-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/uberlandia-minas-gerais-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/uberlandia-minas-gerais-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/uberlandia-minas-gerais-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/uberlandia-minas-gerais-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/uberlandia-minas-gerais-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/uberlandia-minas-gerais-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aligarh-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/aligarh-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aligarh-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aligarh-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aligarh-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aligarh-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aligarh-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aligarh-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aligarh-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aligarh-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aligarh-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aligarh-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aligarh-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aligarh-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malatya-tr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/malatya-tr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malatya-tr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malatya-tr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malatya-tr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malatya-tr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malatya-tr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malatya-tr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malatya-tr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malatya-tr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malatya-tr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malatya-tr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malatya-tr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malatya-tr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winnipeg-manitoba-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/winnipeg-manitoba-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winnipeg-manitoba-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winnipeg-manitoba-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winnipeg-manitoba-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winnipeg-manitoba-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winnipeg-manitoba-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winnipeg-manitoba-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winnipeg-manitoba-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winnipeg-manitoba-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winnipeg-manitoba-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winnipeg-manitoba-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winnipeg-manitoba-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winnipeg-manitoba-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ota-tokyo-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ota-tokyo-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ota-tokyo-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ota-tokyo-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ota-tokyo-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ota-tokyo-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ota-tokyo-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ota-tokyo-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ota-tokyo-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ota-tokyo-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ota-tokyo-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ota-tokyo-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ota-tokyo-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ota-tokyo-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/andijon-andijan-region-uz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/andijon-andijan-region-uz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/andijon-andijan-region-uz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/andijon-andijan-region-uz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/andijon-andijan-region-uz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/andijon-andijan-region-uz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/andijon-andijan-region-uz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/andijon-andijan-region-uz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/andijon-andijan-region-uz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/andijon-andijan-region-uz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/andijon-andijan-region-uz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/andijon-andijan-region-uz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/andijon-andijan-region-uz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/andijon-andijan-region-uz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bareilly-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bareilly-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bareilly-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bareilly-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bareilly-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bareilly-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bareilly-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bareilly-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bareilly-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bareilly-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bareilly-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bareilly-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bareilly-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bareilly-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-bernardo-do-campo-sao-paulo-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sao-bernardo-do-campo-sao-paulo-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-bernardo-do-campo-sao-paulo-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-bernardo-do-campo-sao-paulo-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-bernardo-do-campo-sao-paulo-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-bernardo-do-campo-sao-paulo-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-bernardo-do-campo-sao-paulo-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-bernardo-do-campo-sao-paulo-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-bernardo-do-campo-sao-paulo-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-bernardo-do-campo-sao-paulo-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-bernardo-do-campo-sao-paulo-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-bernardo-do-campo-sao-paulo-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-bernardo-do-campo-sao-paulo-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-bernardo-do-campo-sao-paulo-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/morelia-michoacan-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/morelia-michoacan-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/morelia-michoacan-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/morelia-michoacan-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/morelia-michoacan-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/morelia-michoacan-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/morelia-michoacan-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/morelia-michoacan-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/morelia-michoacan-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/morelia-michoacan-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/morelia-michoacan-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/morelia-michoacan-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/morelia-michoacan-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/morelia-michoacan-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riga-lv", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/riga-lv/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riga-lv/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riga-lv/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riga-lv/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riga-lv/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riga-lv/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riga-lv/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riga-lv/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riga-lv/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riga-lv/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riga-lv/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riga-lv/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riga-lv/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amsterdam-north-holland-nl", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/amsterdam-north-holland-nl/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amsterdam-north-holland-nl/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amsterdam-north-holland-nl/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amsterdam-north-holland-nl/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amsterdam-north-holland-nl/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amsterdam-north-holland-nl/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amsterdam-north-holland-nl/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amsterdam-north-holland-nl/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amsterdam-north-holland-nl/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amsterdam-north-holland-nl/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amsterdam-north-holland-nl/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amsterdam-north-holland-nl/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amsterdam-north-holland-nl/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cagayan-de-oro-northern-mindanao-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cagayan-de-oro-northern-mindanao-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cagayan-de-oro-northern-mindanao-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cagayan-de-oro-northern-mindanao-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cagayan-de-oro-northern-mindanao-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cagayan-de-oro-northern-mindanao-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cagayan-de-oro-northern-mindanao-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cagayan-de-oro-northern-mindanao-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cagayan-de-oro-northern-mindanao-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cagayan-de-oro-northern-mindanao-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cagayan-de-oro-northern-mindanao-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cagayan-de-oro-northern-mindanao-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cagayan-de-oro-northern-mindanao-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cagayan-de-oro-northern-mindanao-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagclar-istanbul-tr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bagclar-istanbul-tr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagclar-istanbul-tr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagclar-istanbul-tr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagclar-istanbul-tr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagclar-istanbul-tr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagclar-istanbul-tr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagclar-istanbul-tr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagclar-istanbul-tr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagclar-istanbul-tr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagclar-istanbul-tr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagclar-istanbul-tr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagclar-istanbul-tr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagclar-istanbul-tr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumamoto-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kumamoto-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumamoto-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumamoto-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumamoto-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumamoto-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumamoto-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumamoto-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumamoto-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumamoto-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumamoto-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumamoto-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumamoto-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kumamoto-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/torreon-coahuila-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/torreon-coahuila-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/torreon-coahuila-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/torreon-coahuila-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/torreon-coahuila-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/torreon-coahuila-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/torreon-coahuila-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/torreon-coahuila-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/torreon-coahuila-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/torreon-coahuila-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/torreon-coahuila-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/torreon-coahuila-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/torreon-coahuila-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/torreon-coahuila-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/denver-colorado-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/denver-colorado-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/denver-colorado-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/denver-colorado-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/denver-colorado-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/denver-colorado-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/denver-colorado-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/denver-colorado-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/denver-colorado-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/denver-colorado-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/denver-colorado-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/denver-colorado-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/denver-colorado-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/denver-colorado-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osasco-sao-paulo-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/osasco-sao-paulo-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osasco-sao-paulo-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osasco-sao-paulo-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osasco-sao-paulo-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osasco-sao-paulo-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osasco-sao-paulo-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osasco-sao-paulo-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osasco-sao-paulo-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osasco-sao-paulo-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osasco-sao-paulo-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osasco-sao-paulo-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osasco-sao-paulo-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/osasco-sao-paulo-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kikolo-luanda-ao", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kikolo-luanda-ao/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kikolo-luanda-ao/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kikolo-luanda-ao/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kikolo-luanda-ao/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kikolo-luanda-ao/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kikolo-luanda-ao/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kikolo-luanda-ao/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kikolo-luanda-ao/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kikolo-luanda-ao/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kikolo-luanda-ao/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kikolo-luanda-ao/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kikolo-luanda-ao/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kikolo-luanda-ao/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maianga-luanda-ao", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/maianga-luanda-ao/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maianga-luanda-ao/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maianga-luanda-ao/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maianga-luanda-ao/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maianga-luanda-ao/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maianga-luanda-ao/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maianga-luanda-ao/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maianga-luanda-ao/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maianga-luanda-ao/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maianga-luanda-ao/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maianga-luanda-ao/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maianga-luanda-ao/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maianga-luanda-ao/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-jose-dos-campos-sao-paulo-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sao-jose-dos-campos-sao-paulo-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-jose-dos-campos-sao-paulo-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-jose-dos-campos-sao-paulo-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-jose-dos-campos-sao-paulo-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-jose-dos-campos-sao-paulo-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-jose-dos-campos-sao-paulo-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-jose-dos-campos-sao-paulo-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-jose-dos-campos-sao-paulo-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-jose-dos-campos-sao-paulo-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-jose-dos-campos-sao-paulo-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-jose-dos-campos-sao-paulo-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-jose-dos-campos-sao-paulo-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sao-jose-dos-campos-sao-paulo-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alvaro-obregon-mexico-city-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/alvaro-obregon-mexico-city-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alvaro-obregon-mexico-city-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alvaro-obregon-mexico-city-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alvaro-obregon-mexico-city-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alvaro-obregon-mexico-city-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alvaro-obregon-mexico-city-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alvaro-obregon-mexico-city-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alvaro-obregon-mexico-city-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alvaro-obregon-mexico-city-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alvaro-obregon-mexico-city-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alvaro-obregon-mexico-city-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alvaro-obregon-mexico-city-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alvaro-obregon-mexico-city-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aihara-kanagawa-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/aihara-kanagawa-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aihara-kanagawa-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aihara-kanagawa-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aihara-kanagawa-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aihara-kanagawa-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aihara-kanagawa-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aihara-kanagawa-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aihara-kanagawa-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aihara-kanagawa-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aihara-kanagawa-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aihara-kanagawa-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aihara-kanagawa-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aihara-kanagawa-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/evaton-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/evaton-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/evaton-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/evaton-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/evaton-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/evaton-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/evaton-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/evaton-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/evaton-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/evaton-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/evaton-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/evaton-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/evaton-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/evaton-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valenzuela-national-capital-region-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/valenzuela-national-capital-region-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valenzuela-national-capital-region-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valenzuela-national-capital-region-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valenzuela-national-capital-region-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valenzuela-national-capital-region-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valenzuela-national-capital-region-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valenzuela-national-capital-region-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valenzuela-national-capital-region-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valenzuela-national-capital-region-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valenzuela-national-capital-region-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valenzuela-national-capital-region-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valenzuela-national-capital-region-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/valenzuela-national-capital-region-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/okayama-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/okayama-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/okayama-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/okayama-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/okayama-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/okayama-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/okayama-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/okayama-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/okayama-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/okayama-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/okayama-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/okayama-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/okayama-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/okayama-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-luis-potosi-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/san-luis-potosi-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-luis-potosi-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-luis-potosi-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-luis-potosi-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-luis-potosi-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-luis-potosi-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-luis-potosi-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-luis-potosi-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-luis-potosi-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-luis-potosi-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-luis-potosi-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-luis-potosi-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-luis-potosi-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aguascalientes-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/aguascalientes-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aguascalientes-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aguascalientes-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aguascalientes-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aguascalientes-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aguascalientes-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aguascalientes-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aguascalientes-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aguascalientes-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aguascalientes-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aguascalientes-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aguascalientes-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aguascalientes-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/general-santos-soccsksargen-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/general-santos-soccsksargen-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/general-santos-soccsksargen-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/general-santos-soccsksargen-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/general-santos-soccsksargen-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/general-santos-soccsksargen-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/general-santos-soccsksargen-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/general-santos-soccsksargen-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/general-santos-soccsksargen-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/general-santos-soccsksargen-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/general-santos-soccsksargen-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/general-santos-soccsksargen-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/general-santos-soccsksargen-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/general-santos-soccsksargen-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moradabad-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/moradabad-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moradabad-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moradabad-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moradabad-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moradabad-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moradabad-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moradabad-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moradabad-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moradabad-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moradabad-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moradabad-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moradabad-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moradabad-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sagamihara-kanagawa-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sagamihara-kanagawa-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sagamihara-kanagawa-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sagamihara-kanagawa-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sagamihara-kanagawa-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sagamihara-kanagawa-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sagamihara-kanagawa-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sagamihara-kanagawa-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sagamihara-kanagawa-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sagamihara-kanagawa-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sagamihara-kanagawa-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sagamihara-kanagawa-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sagamihara-kanagawa-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sagamihara-kanagawa-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mississauga-ontario-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mississauga-ontario-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mississauga-ontario-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mississauga-ontario-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mississauga-ontario-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mississauga-ontario-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mississauga-ontario-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mississauga-ontario-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mississauga-ontario-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mississauga-ontario-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mississauga-ontario-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mississauga-ontario-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mississauga-ontario-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mississauga-ontario-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lviv-ua", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/lviv-ua/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lviv-ua/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lviv-ua/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lviv-ua/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lviv-ua/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lviv-ua/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lviv-ua/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lviv-ua/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lviv-ua/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lviv-ua/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lviv-ua/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lviv-ua/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lviv-ua/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/namangan-uz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/namangan-uz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/namangan-uz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/namangan-uz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/namangan-uz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/namangan-uz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/namangan-uz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/namangan-uz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/namangan-uz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/namangan-uz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/namangan-uz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/namangan-uz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/namangan-uz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/namangan-uz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaporizhzhya-zaporizhzhia-ua", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/zaporizhzhya-zaporizhzhia-ua/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaporizhzhya-zaporizhzhia-ua/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaporizhzhya-zaporizhzhia-ua/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaporizhzhya-zaporizhzhia-ua/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaporizhzhya-zaporizhzhia-ua/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaporizhzhya-zaporizhzhia-ua/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaporizhzhya-zaporizhzhia-ua/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaporizhzhya-zaporizhzhia-ua/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaporizhzhya-zaporizhzhia-ua/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaporizhzhya-zaporizhzhia-ua/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaporizhzhya-zaporizhzhia-ua/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaporizhzhya-zaporizhzhia-ua/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaporizhzhya-zaporizhzhia-ua/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zanzibar-zanzibar-urban-west-tz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/zanzibar-zanzibar-urban-west-tz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zanzibar-zanzibar-urban-west-tz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zanzibar-zanzibar-urban-west-tz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zanzibar-zanzibar-urban-west-tz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zanzibar-zanzibar-urban-west-tz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zanzibar-zanzibar-urban-west-tz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zanzibar-zanzibar-urban-west-tz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zanzibar-zanzibar-urban-west-tz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zanzibar-zanzibar-urban-west-tz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zanzibar-zanzibar-urban-west-tz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zanzibar-zanzibar-urban-west-tz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zanzibar-zanzibar-urban-west-tz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zanzibar-zanzibar-urban-west-tz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saltillo-coahuila-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/saltillo-coahuila-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saltillo-coahuila-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saltillo-coahuila-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saltillo-coahuila-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saltillo-coahuila-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saltillo-coahuila-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saltillo-coahuila-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saltillo-coahuila-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saltillo-coahuila-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saltillo-coahuila-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saltillo-coahuila-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saltillo-coahuila-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saltillo-coahuila-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warangal-telangana-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/warangal-telangana-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warangal-telangana-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warangal-telangana-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warangal-telangana-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warangal-telangana-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warangal-telangana-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warangal-telangana-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warangal-telangana-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warangal-telangana-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warangal-telangana-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warangal-telangana-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warangal-telangana-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/warangal-telangana-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paranaque-city-national-capital-region-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/paranaque-city-national-capital-region-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paranaque-city-national-capital-region-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paranaque-city-national-capital-region-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paranaque-city-national-capital-region-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paranaque-city-national-capital-region-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paranaque-city-national-capital-region-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paranaque-city-national-capital-region-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paranaque-city-national-capital-region-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paranaque-city-national-capital-region-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paranaque-city-national-capital-region-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paranaque-city-national-capital-region-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paranaque-city-national-capital-region-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paranaque-city-national-capital-region-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tolyatti-samara-oblast-ru", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tolyatti-samara-oblast-ru/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tolyatti-samara-oblast-ru/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tolyatti-samara-oblast-ru/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tolyatti-samara-oblast-ru/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tolyatti-samara-oblast-ru/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tolyatti-samara-oblast-ru/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tolyatti-samara-oblast-ru/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tolyatti-samara-oblast-ru/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tolyatti-samara-oblast-ru/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tolyatti-samara-oblast-ru/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tolyatti-samara-oblast-ru/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tolyatti-samara-oblast-ru/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tolyatti-samara-oblast-ru/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-oeste-santo-domingo-province-do", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/santo-domingo-oeste-santo-domingo-province-do/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-oeste-santo-domingo-province-do/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-oeste-santo-domingo-province-do/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-oeste-santo-domingo-province-do/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-oeste-santo-domingo-province-do/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-oeste-santo-domingo-province-do/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-oeste-santo-domingo-province-do/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-oeste-santo-domingo-province-do/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-oeste-santo-domingo-province-do/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-oeste-santo-domingo-province-do/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-oeste-santo-domingo-province-do/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-oeste-santo-domingo-province-do/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-oeste-santo-domingo-province-do/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-este-santo-domingo-province-do", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/santo-domingo-este-santo-domingo-province-do/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-este-santo-domingo-province-do/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-este-santo-domingo-province-do/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-este-santo-domingo-province-do/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-este-santo-domingo-province-do/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-este-santo-domingo-province-do/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-este-santo-domingo-province-do/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-este-santo-domingo-province-do/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-este-santo-domingo-province-do/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-este-santo-domingo-province-do/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-este-santo-domingo-province-do/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-este-santo-domingo-province-do/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-domingo-este-santo-domingo-province-do/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dharavi-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dharavi-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dharavi-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dharavi-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dharavi-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dharavi-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dharavi-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dharavi-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dharavi-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dharavi-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dharavi-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dharavi-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dharavi-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dharavi-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ribeirao-preto-sao-paulo-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ribeirao-preto-sao-paulo-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ribeirao-preto-sao-paulo-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ribeirao-preto-sao-paulo-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ribeirao-preto-sao-paulo-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ribeirao-preto-sao-paulo-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ribeirao-preto-sao-paulo-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ribeirao-preto-sao-paulo-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ribeirao-preto-sao-paulo-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ribeirao-preto-sao-paulo-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ribeirao-preto-sao-paulo-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ribeirao-preto-sao-paulo-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ribeirao-preto-sao-paulo-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ribeirao-preto-sao-paulo-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edogawe-tokyo-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/edogawe-tokyo-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edogawe-tokyo-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edogawe-tokyo-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edogawe-tokyo-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edogawe-tokyo-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edogawe-tokyo-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edogawe-tokyo-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edogawe-tokyo-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edogawe-tokyo-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edogawe-tokyo-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edogawe-tokyo-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edogawe-tokyo-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edogawe-tokyo-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sarajevo-federation-of-b-h-ba", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sarajevo-federation-of-b-h-ba/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sarajevo-federation-of-b-h-ba/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sarajevo-federation-of-b-h-ba/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sarajevo-federation-of-b-h-ba/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sarajevo-federation-of-b-h-ba/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sarajevo-federation-of-b-h-ba/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sarajevo-federation-of-b-h-ba/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sarajevo-federation-of-b-h-ba/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sarajevo-federation-of-b-h-ba/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sarajevo-federation-of-b-h-ba/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sarajevo-federation-of-b-h-ba/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sarajevo-federation-of-b-h-ba/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sarajevo-federation-of-b-h-ba/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adachi-tokyo-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/adachi-tokyo-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adachi-tokyo-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adachi-tokyo-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adachi-tokyo-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adachi-tokyo-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adachi-tokyo-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adachi-tokyo-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adachi-tokyo-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adachi-tokyo-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adachi-tokyo-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adachi-tokyo-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adachi-tokyo-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/adachi-tokyo-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shizuoka-jp", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/shizuoka-jp/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shizuoka-jp/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shizuoka-jp/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shizuoka-jp/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shizuoka-jp/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shizuoka-jp/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shizuoka-jp/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shizuoka-jp/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shizuoka-jp/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shizuoka-jp/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shizuoka-jp/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shizuoka-jp/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shizuoka-jp/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tunis-tunis-governorate-tn", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tunis-tunis-governorate-tn/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tunis-tunis-governorate-tn/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tunis-tunis-governorate-tn/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tunis-tunis-governorate-tn/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tunis-tunis-governorate-tn/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tunis-tunis-governorate-tn/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tunis-tunis-governorate-tn/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tunis-tunis-governorate-tn/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tunis-tunis-governorate-tn/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tunis-tunis-governorate-tn/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tunis-tunis-governorate-tn/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tunis-tunis-governorate-tn/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tunis-tunis-governorate-tn/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/washington-district-of-columbia-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/washington-district-of-columbia-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/washington-district-of-columbia-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/washington-district-of-columbia-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/washington-district-of-columbia-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/washington-district-of-columbia-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/washington-district-of-columbia-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/washington-district-of-columbia-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/washington-district-of-columbia-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/washington-district-of-columbia-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/washington-district-of-columbia-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/washington-district-of-columbia-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/washington-district-of-columbia-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/washington-district-of-columbia-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashville-tennessee-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/nashville-tennessee-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashville-tennessee-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashville-tennessee-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashville-tennessee-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashville-tennessee-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashville-tennessee-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashville-tennessee-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashville-tennessee-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashville-tennessee-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashville-tennessee-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashville-tennessee-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashville-tennessee-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nashville-tennessee-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beira-sofala-mz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/beira-sofala-mz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beira-sofala-mz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beira-sofala-mz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beira-sofala-mz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beira-sofala-mz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beira-sofala-mz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beira-sofala-mz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beira-sofala-mz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beira-sofala-mz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beira-sofala-mz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beira-sofala-mz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beira-sofala-mz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/beira-sofala-mz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaragoza-aragon-es", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/zaragoza-aragon-es/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaragoza-aragon-es/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaragoza-aragon-es/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaragoza-aragon-es/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaragoza-aragon-es/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaragoza-aragon-es/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaragoza-aragon-es/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaragoza-aragon-es/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaragoza-aragon-es/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaragoza-aragon-es/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaragoza-aragon-es/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaragoza-aragon-es/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zaragoza-aragon-es/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sevilla-andalusia-es", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sevilla-andalusia-es/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sevilla-andalusia-es/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sevilla-andalusia-es/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sevilla-andalusia-es/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sevilla-andalusia-es/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sevilla-andalusia-es/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sevilla-andalusia-es/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sevilla-andalusia-es/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sevilla-andalusia-es/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sevilla-andalusia-es/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sevilla-andalusia-es/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sevilla-andalusia-es/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sevilla-andalusia-es/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oklahoma-city-oklahoma-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/oklahoma-city-oklahoma-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oklahoma-city-oklahoma-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oklahoma-city-oklahoma-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oklahoma-city-oklahoma-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oklahoma-city-oklahoma-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oklahoma-city-oklahoma-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oklahoma-city-oklahoma-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oklahoma-city-oklahoma-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oklahoma-city-oklahoma-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oklahoma-city-oklahoma-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oklahoma-city-oklahoma-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oklahoma-city-oklahoma-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oklahoma-city-oklahoma-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dushanbe-tj", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dushanbe-tj/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dushanbe-tj/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dushanbe-tj/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dushanbe-tj/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dushanbe-tj/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dushanbe-tj/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dushanbe-tj/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dushanbe-tj/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dushanbe-tj/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dushanbe-tj/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dushanbe-tj/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dushanbe-tj/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dushanbe-tj/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotonou-littoral-bj", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cotonou-littoral-bj/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotonou-littoral-bj/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotonou-littoral-bj/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotonou-littoral-bj/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotonou-littoral-bj/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotonou-littoral-bj/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotonou-littoral-bj/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotonou-littoral-bj/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotonou-littoral-bj/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotonou-littoral-bj/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotonou-littoral-bj/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotonou-littoral-bj/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotonou-littoral-bj/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/el-paso-texas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/el-paso-texas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/el-paso-texas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/el-paso-texas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/el-paso-texas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/el-paso-texas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/el-paso-texas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/el-paso-texas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/el-paso-texas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/el-paso-texas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/el-paso-texas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/el-paso-texas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/el-paso-texas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/el-paso-texas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gorakhpur-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gorakhpur-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalupe-nuevo-leon-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/guadalupe-nuevo-leon-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalupe-nuevo-leon-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalupe-nuevo-leon-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalupe-nuevo-leon-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalupe-nuevo-leon-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalupe-nuevo-leon-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalupe-nuevo-leon-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalupe-nuevo-leon-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalupe-nuevo-leon-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalupe-nuevo-leon-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalupe-nuevo-leon-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalupe-nuevo-leon-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guadalupe-nuevo-leon-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wrocaw-lower-silesia-pl", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/wrocaw-lower-silesia-pl/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wrocaw-lower-silesia-pl/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wrocaw-lower-silesia-pl/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wrocaw-lower-silesia-pl/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wrocaw-lower-silesia-pl/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wrocaw-lower-silesia-pl/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wrocaw-lower-silesia-pl/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wrocaw-lower-silesia-pl/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wrocaw-lower-silesia-pl/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wrocaw-lower-silesia-pl/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wrocaw-lower-silesia-pl/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wrocaw-lower-silesia-pl/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wrocaw-lower-silesia-pl/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guntur-andhra-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/guntur-andhra-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guntur-andhra-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guntur-andhra-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guntur-andhra-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guntur-andhra-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guntur-andhra-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guntur-andhra-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guntur-andhra-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guntur-andhra-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guntur-andhra-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guntur-andhra-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guntur-andhra-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/guntur-andhra-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camama-luanda-ao", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/camama-luanda-ao/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camama-luanda-ao/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camama-luanda-ao/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camama-luanda-ao/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camama-luanda-ao/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camama-luanda-ao/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camama-luanda-ao/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camama-luanda-ao/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camama-luanda-ao/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camama-luanda-ao/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camama-luanda-ao/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camama-luanda-ao/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/camama-luanda-ao/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aracaju-sergipe-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/aracaju-sergipe-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aracaju-sergipe-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aracaju-sergipe-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aracaju-sergipe-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aracaju-sergipe-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aracaju-sergipe-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aracaju-sergipe-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aracaju-sergipe-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aracaju-sergipe-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aracaju-sergipe-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aracaju-sergipe-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aracaju-sergipe-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aracaju-sergipe-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joinville-santa-catarina-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/joinville-santa-catarina-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joinville-santa-catarina-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joinville-santa-catarina-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joinville-santa-catarina-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joinville-santa-catarina-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joinville-santa-catarina-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joinville-santa-catarina-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joinville-santa-catarina-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joinville-santa-catarina-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joinville-santa-catarina-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joinville-santa-catarina-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joinville-santa-catarina-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/joinville-santa-catarina-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athens-attica-gr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/athens-attica-gr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athens-attica-gr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athens-attica-gr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athens-attica-gr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athens-attica-gr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athens-attica-gr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athens-attica-gr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athens-attica-gr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athens-attica-gr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athens-attica-gr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athens-attica-gr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athens-attica-gr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athens-attica-gr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zagreb-hr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/zagreb-hr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zagreb-hr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zagreb-hr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zagreb-hr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zagreb-hr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zagreb-hr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zagreb-hr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zagreb-hr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zagreb-hr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zagreb-hr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zagreb-hr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zagreb-hr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zagreb-hr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-andre-sao-paulo-br", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/santo-andre-sao-paulo-br/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-andre-sao-paulo-br/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-andre-sao-paulo-br/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-andre-sao-paulo-br/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-andre-sao-paulo-br/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-andre-sao-paulo-br/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-andre-sao-paulo-br/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-andre-sao-paulo-br/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-andre-sao-paulo-br/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-andre-sao-paulo-br/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-andre-sao-paulo-br/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-andre-sao-paulo-br/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santo-andre-sao-paulo-br/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-british-columbia-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/vancouver-british-columbia-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-british-columbia-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-british-columbia-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-british-columbia-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-british-columbia-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-british-columbia-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-british-columbia-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-british-columbia-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-british-columbia-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-british-columbia-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-british-columbia-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-british-columbia-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-british-columbia-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/helsinki-uusimaa-fi", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/helsinki-uusimaa-fi/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/helsinki-uusimaa-fi/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/helsinki-uusimaa-fi/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/helsinki-uusimaa-fi/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/helsinki-uusimaa-fi/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/helsinki-uusimaa-fi/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/helsinki-uusimaa-fi/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/helsinki-uusimaa-fi/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/helsinki-uusimaa-fi/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/helsinki-uusimaa-fi/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/helsinki-uusimaa-fi/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/helsinki-uusimaa-fi/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/helsinki-uusimaa-fi/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheonan-chungcheongnam-do-kr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cheonan-chungcheongnam-do-kr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheonan-chungcheongnam-do-kr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheonan-chungcheongnam-do-kr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheonan-chungcheongnam-do-kr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheonan-chungcheongnam-do-kr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheonan-chungcheongnam-do-kr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheonan-chungcheongnam-do-kr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheonan-chungcheongnam-do-kr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheonan-chungcheongnam-do-kr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheonan-chungcheongnam-do-kr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheonan-chungcheongnam-do-kr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheonan-chungcheongnam-do-kr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cheonan-chungcheongnam-do-kr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/acapulco-de-juarez-guerrero-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/acapulco-de-juarez-guerrero-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/acapulco-de-juarez-guerrero-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/acapulco-de-juarez-guerrero-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/acapulco-de-juarez-guerrero-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/acapulco-de-juarez-guerrero-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/acapulco-de-juarez-guerrero-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/acapulco-de-juarez-guerrero-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/acapulco-de-juarez-guerrero-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/acapulco-de-juarez-guerrero-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/acapulco-de-juarez-guerrero-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/acapulco-de-juarez-guerrero-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/acapulco-de-juarez-guerrero-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/acapulco-de-juarez-guerrero-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puducherry-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/puducherry-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puducherry-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puducherry-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puducherry-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puducherry-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puducherry-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puducherry-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puducherry-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puducherry-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puducherry-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puducherry-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puducherry-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/puducherry-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brampton-ontario-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/brampton-ontario-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brampton-ontario-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brampton-ontario-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brampton-ontario-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brampton-ontario-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brampton-ontario-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brampton-ontario-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brampton-ontario-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brampton-ontario-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brampton-ontario-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brampton-ontario-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brampton-ontario-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brampton-ontario-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/golfe-luanda-ao", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/golfe-luanda-ao/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/golfe-luanda-ao/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/golfe-luanda-ao/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/golfe-luanda-ao/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/golfe-luanda-ao/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/golfe-luanda-ao/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/golfe-luanda-ao/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/golfe-luanda-ao/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/golfe-luanda-ao/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/golfe-luanda-ao/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/golfe-luanda-ao/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/golfe-luanda-ao/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/golfe-luanda-ao/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soacha-cundinamarca-co", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/soacha-cundinamarca-co/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soacha-cundinamarca-co/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soacha-cundinamarca-co/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soacha-cundinamarca-co/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soacha-cundinamarca-co/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soacha-cundinamarca-co/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soacha-cundinamarca-co/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soacha-cundinamarca-co/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soacha-cundinamarca-co/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soacha-cundinamarca-co/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soacha-cundinamarca-co/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soacha-cundinamarca-co/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/soacha-cundinamarca-co/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boston-massachusetts-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/boston-massachusetts-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boston-massachusetts-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boston-massachusetts-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boston-massachusetts-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boston-massachusetts-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boston-massachusetts-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boston-massachusetts-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boston-massachusetts-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boston-massachusetts-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boston-massachusetts-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boston-massachusetts-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boston-massachusetts-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boston-massachusetts-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tlalnepantla-mexico-mx", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tlalnepantla-mexico-mx/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tlalnepantla-mexico-mx/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tlalnepantla-mexico-mx/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tlalnepantla-mexico-mx/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tlalnepantla-mexico-mx/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tlalnepantla-mexico-mx/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tlalnepantla-mexico-mx/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tlalnepantla-mexico-mx/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tlalnepantla-mexico-mx/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tlalnepantla-mexico-mx/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tlalnepantla-mexico-mx/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tlalnepantla-mexico-mx/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tlalnepantla-mexico-mx/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jajmau-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jajmau-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jajmau-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jajmau-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jajmau-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jajmau-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jajmau-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jajmau-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jajmau-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jajmau-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jajmau-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jajmau-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jajmau-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jajmau-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portland-oregon-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/portland-oregon-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portland-oregon-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portland-oregon-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portland-oregon-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portland-oregon-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portland-oregon-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portland-oregon-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portland-oregon-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portland-oregon-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portland-oregon-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portland-oregon-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portland-oregon-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portland-oregon-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calumbo-bengo-ao", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/calumbo-bengo-ao/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calumbo-bengo-ao/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calumbo-bengo-ao/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calumbo-bengo-ao/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calumbo-bengo-ao/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calumbo-bengo-ao/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calumbo-bengo-ao/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calumbo-bengo-ao/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calumbo-bengo-ao/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calumbo-bengo-ao/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calumbo-bengo-ao/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calumbo-bengo-ao/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calumbo-bengo-ao/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/detroit-michigan-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/detroit-michigan-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/detroit-michigan-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/detroit-michigan-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/detroit-michigan-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/detroit-michigan-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/detroit-michigan-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/detroit-michigan-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/detroit-michigan-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/detroit-michigan-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/detroit-michigan-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/detroit-michigan-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/detroit-michigan-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/detroit-michigan-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-vegas-nevada-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/las-vegas-nevada-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-vegas-nevada-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-vegas-nevada-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-vegas-nevada-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-vegas-nevada-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-vegas-nevada-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-vegas-nevada-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-vegas-nevada-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-vegas-nevada-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-vegas-nevada-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-vegas-nevada-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-vegas-nevada-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-vegas-nevada-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-south-memphis-tennessee-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/new-south-memphis-tennessee-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-south-memphis-tennessee-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-south-memphis-tennessee-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-south-memphis-tennessee-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-south-memphis-tennessee-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-south-memphis-tennessee-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-south-memphis-tennessee-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-south-memphis-tennessee-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-south-memphis-tennessee-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-south-memphis-tennessee-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-south-memphis-tennessee-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-south-memphis-tennessee-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-south-memphis-tennessee-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gold-coast-queensland-au", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gold-coast-queensland-au/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gold-coast-queensland-au/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gold-coast-queensland-au/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gold-coast-queensland-au/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gold-coast-queensland-au/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gold-coast-queensland-au/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gold-coast-queensland-au/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gold-coast-queensland-au/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gold-coast-queensland-au/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gold-coast-queensland-au/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gold-coast-queensland-au/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gold-coast-queensland-au/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gold-coast-queensland-au/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/memphis-tennessee-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/memphis-tennessee-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/memphis-tennessee-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/memphis-tennessee-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/memphis-tennessee-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/memphis-tennessee-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/memphis-tennessee-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/memphis-tennessee-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/memphis-tennessee-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/memphis-tennessee-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/memphis-tennessee-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/memphis-tennessee-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/memphis-tennessee-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/memphis-tennessee-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glasgow-scotland-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/glasgow-scotland-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glasgow-scotland-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glasgow-scotland-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glasgow-scotland-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glasgow-scotland-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glasgow-scotland-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glasgow-scotland-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glasgow-scotland-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glasgow-scotland-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glasgow-scotland-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glasgow-scotland-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glasgow-scotland-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glasgow-scotland-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/louisville-kentucky-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/louisville-kentucky-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/louisville-kentucky-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/louisville-kentucky-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/louisville-kentucky-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/louisville-kentucky-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/louisville-kentucky-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/louisville-kentucky-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/louisville-kentucky-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/louisville-kentucky-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/louisville-kentucky-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/louisville-kentucky-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/louisville-kentucky-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/louisville-kentucky-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/benoni-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/benoni-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/benoni-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/benoni-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/benoni-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/benoni-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/benoni-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/benoni-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/benoni-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/benoni-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/benoni-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/benoni-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/benoni-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/benoni-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baltimore-maryland-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/baltimore-maryland-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baltimore-maryland-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baltimore-maryland-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baltimore-maryland-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baltimore-maryland-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baltimore-maryland-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baltimore-maryland-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baltimore-maryland-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baltimore-maryland-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baltimore-maryland-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baltimore-maryland-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baltimore-maryland-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baltimore-maryland-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-boston-massachusetts-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/south-boston-massachusetts-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-boston-massachusetts-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-boston-massachusetts-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-boston-massachusetts-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-boston-massachusetts-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-boston-massachusetts-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-boston-massachusetts-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-boston-massachusetts-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-boston-massachusetts-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-boston-massachusetts-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-boston-massachusetts-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-boston-massachusetts-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-boston-massachusetts-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-ontario-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hamilton-ontario-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-ontario-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-ontario-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-ontario-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-ontario-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-ontario-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-ontario-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-ontario-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-ontario-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-ontario-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-ontario-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-ontario-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-ontario-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manchester-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/manchester-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manchester-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manchester-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manchester-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manchester-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manchester-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manchester-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manchester-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manchester-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manchester-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manchester-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manchester-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manchester-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surrey-british-columbia-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/surrey-british-columbia-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surrey-british-columbia-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surrey-british-columbia-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surrey-british-columbia-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surrey-british-columbia-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surrey-british-columbia-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surrey-british-columbia-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surrey-british-columbia-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surrey-british-columbia-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surrey-british-columbia-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surrey-british-columbia-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surrey-british-columbia-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/surrey-british-columbia-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/albuquerque-new-mexico-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/albuquerque-new-mexico-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/albuquerque-new-mexico-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/albuquerque-new-mexico-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/albuquerque-new-mexico-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/albuquerque-new-mexico-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/albuquerque-new-mexico-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/albuquerque-new-mexico-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/albuquerque-new-mexico-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/albuquerque-new-mexico-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/albuquerque-new-mexico-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/albuquerque-new-mexico-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/albuquerque-new-mexico-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/albuquerque-new-mexico-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milwaukee-wisconsin-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/milwaukee-wisconsin-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milwaukee-wisconsin-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milwaukee-wisconsin-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milwaukee-wisconsin-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milwaukee-wisconsin-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milwaukee-wisconsin-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milwaukee-wisconsin-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milwaukee-wisconsin-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milwaukee-wisconsin-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milwaukee-wisconsin-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milwaukee-wisconsin-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milwaukee-wisconsin-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milwaukee-wisconsin-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bloemfontein-free-state-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bloemfontein-free-state-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bloemfontein-free-state-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bloemfontein-free-state-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bloemfontein-free-state-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bloemfontein-free-state-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bloemfontein-free-state-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bloemfontein-free-state-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bloemfontein-free-state-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bloemfontein-free-state-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bloemfontein-free-state-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bloemfontein-free-state-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bloemfontein-free-state-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bloemfontein-free-state-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sheffield-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sheffield-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sheffield-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sheffield-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sheffield-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sheffield-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sheffield-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sheffield-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sheffield-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sheffield-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sheffield-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sheffield-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sheffield-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sheffield-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tucson-arizona-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tucson-arizona-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tucson-arizona-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tucson-arizona-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tucson-arizona-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tucson-arizona-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tucson-arizona-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tucson-arizona-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tucson-arizona-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tucson-arizona-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tucson-arizona-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tucson-arizona-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tucson-arizona-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tucson-arizona-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fresno-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/fresno-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fresno-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fresno-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fresno-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fresno-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fresno-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fresno-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fresno-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fresno-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fresno-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fresno-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fresno-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fresno-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leeds-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/leeds-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leeds-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leeds-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leeds-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leeds-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leeds-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leeds-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leeds-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leeds-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leeds-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leeds-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leeds-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leeds-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quebec-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/quebec-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quebec-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quebec-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quebec-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quebec-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quebec-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quebec-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quebec-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quebec-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quebec-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quebec-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quebec-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/quebec-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sacramento-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sacramento-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sacramento-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sacramento-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sacramento-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sacramento-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sacramento-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sacramento-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sacramento-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sacramento-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sacramento-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sacramento-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sacramento-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sacramento-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edinburgh-scotland-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/edinburgh-scotland-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edinburgh-scotland-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edinburgh-scotland-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edinburgh-scotland-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edinburgh-scotland-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edinburgh-scotland-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edinburgh-scotland-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edinburgh-scotland-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edinburgh-scotland-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edinburgh-scotland-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edinburgh-scotland-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edinburgh-scotland-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/edinburgh-scotland-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thembisa-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/thembisa-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thembisa-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thembisa-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thembisa-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thembisa-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thembisa-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thembisa-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thembisa-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thembisa-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thembisa-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thembisa-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thembisa-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thembisa-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/atlanta-georgia-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/atlanta-georgia-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/atlanta-georgia-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/atlanta-georgia-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/atlanta-georgia-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/atlanta-georgia-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/atlanta-georgia-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/atlanta-georgia-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/atlanta-georgia-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/atlanta-georgia-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/atlanta-georgia-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/atlanta-georgia-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/atlanta-georgia-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/atlanta-georgia-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-new-south-wales-au", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/newcastle-new-south-wales-au/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-new-south-wales-au/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-new-south-wales-au/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-new-south-wales-au/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-new-south-wales-au/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-new-south-wales-au/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-new-south-wales-au/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-new-south-wales-au/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-new-south-wales-au/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-new-south-wales-au/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-new-south-wales-au/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-new-south-wales-au/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-new-south-wales-au/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/liverpool-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/liverpool-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/liverpool-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/liverpool-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/liverpool-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/liverpool-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/liverpool-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/liverpool-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/liverpool-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/liverpool-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/liverpool-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/liverpool-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/liverpool-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/liverpool-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/miami-florida-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/miami-florida-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/miami-florida-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/miami-florida-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/miami-florida-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/miami-florida-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/miami-florida-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/miami-florida-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/miami-florida-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/miami-florida-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/miami-florida-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/miami-florida-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/miami-florida-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/miami-florida-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omaha-nebraska-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/omaha-nebraska-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omaha-nebraska-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omaha-nebraska-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omaha-nebraska-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omaha-nebraska-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omaha-nebraska-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omaha-nebraska-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omaha-nebraska-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omaha-nebraska-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omaha-nebraska-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omaha-nebraska-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omaha-nebraska-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/omaha-nebraska-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raleigh-north-carolina-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/raleigh-north-carolina-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raleigh-north-carolina-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raleigh-north-carolina-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raleigh-north-carolina-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raleigh-north-carolina-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raleigh-north-carolina-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raleigh-north-carolina-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raleigh-north-carolina-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raleigh-north-carolina-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raleigh-north-carolina-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raleigh-north-carolina-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raleigh-north-carolina-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/raleigh-north-carolina-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bristol-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bristol-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bristol-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bristol-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bristol-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bristol-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bristol-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bristol-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bristol-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bristol-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bristol-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bristol-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bristol-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bristol-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-london-eastern-cape-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/east-london-eastern-cape-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-london-eastern-cape-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-london-eastern-cape-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-london-eastern-cape-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-london-eastern-cape-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-london-eastern-cape-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-london-eastern-cape-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-london-eastern-cape-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-london-eastern-cape-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-london-eastern-cape-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-london-eastern-cape-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-london-eastern-cape-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-london-eastern-cape-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kansas-city-missouri-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kansas-city-missouri-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kansas-city-missouri-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kansas-city-missouri-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kansas-city-missouri-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kansas-city-missouri-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kansas-city-missouri-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kansas-city-missouri-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kansas-city-missouri-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kansas-city-missouri-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kansas-city-missouri-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kansas-city-missouri-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kansas-city-missouri-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kansas-city-missouri-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vereeniging-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/vereeniging-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vereeniging-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vereeniging-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vereeniging-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vereeniging-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vereeniging-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vereeniging-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vereeniging-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vereeniging-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vereeniging-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vereeniging-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vereeniging-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vereeniging-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/long-beach-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/long-beach-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/long-beach-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/long-beach-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/long-beach-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/long-beach-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/long-beach-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/long-beach-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/long-beach-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/long-beach-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/long-beach-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/long-beach-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/long-beach-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/long-beach-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mesa-arizona-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mesa-arizona-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mesa-arizona-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mesa-arizona-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mesa-arizona-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mesa-arizona-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mesa-arizona-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mesa-arizona-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mesa-arizona-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mesa-arizona-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mesa-arizona-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mesa-arizona-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mesa-arizona-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mesa-arizona-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/halifax-nova-scotia-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/halifax-nova-scotia-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/halifax-nova-scotia-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/halifax-nova-scotia-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/halifax-nova-scotia-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/halifax-nova-scotia-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/halifax-nova-scotia-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/halifax-nova-scotia-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/halifax-nova-scotia-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/halifax-nova-scotia-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/halifax-nova-scotia-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/halifax-nova-scotia-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/halifax-nova-scotia-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/halifax-nova-scotia-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/staten-island-new-york-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/staten-island-new-york-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/staten-island-new-york-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/staten-island-new-york-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/staten-island-new-york-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/staten-island-new-york-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/staten-island-new-york-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/staten-island-new-york-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/staten-island-new-york-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/staten-island-new-york-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/staten-island-new-york-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/staten-island-new-york-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/staten-island-new-york-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/staten-island-new-york-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colorado-springs-colorado-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/colorado-springs-colorado-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colorado-springs-colorado-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colorado-springs-colorado-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colorado-springs-colorado-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colorado-springs-colorado-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colorado-springs-colorado-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colorado-springs-colorado-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colorado-springs-colorado-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colorado-springs-colorado-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colorado-springs-colorado-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colorado-springs-colorado-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colorado-springs-colorado-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colorado-springs-colorado-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virginia-beach-virginia-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/virginia-beach-virginia-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virginia-beach-virginia-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virginia-beach-virginia-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virginia-beach-virginia-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virginia-beach-virginia-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virginia-beach-virginia-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virginia-beach-virginia-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virginia-beach-virginia-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virginia-beach-virginia-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virginia-beach-virginia-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virginia-beach-virginia-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virginia-beach-virginia-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/virginia-beach-virginia-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boksburg-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/boksburg-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boksburg-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boksburg-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boksburg-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boksburg-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boksburg-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boksburg-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boksburg-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boksburg-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boksburg-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boksburg-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boksburg-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boksburg-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laval-quebec-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/laval-quebec-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laval-quebec-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laval-quebec-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laval-quebec-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laval-quebec-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laval-quebec-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laval-quebec-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laval-quebec-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laval-quebec-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laval-quebec-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laval-quebec-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laval-quebec-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laval-quebec-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/welkom-free-state-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/welkom-free-state-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/welkom-free-state-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/welkom-free-state-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/welkom-free-state-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/welkom-free-state-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/welkom-free-state-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/welkom-free-state-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/welkom-free-state-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/welkom-free-state-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/welkom-free-state-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/welkom-free-state-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/welkom-free-state-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/welkom-free-state-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-ontario-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/london-ontario-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-ontario-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-ontario-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-ontario-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-ontario-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-ontario-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-ontario-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-ontario-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-ontario-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-ontario-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-ontario-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-ontario-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/london-ontario-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakland-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/oakland-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakland-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakland-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakland-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakland-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakland-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakland-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakland-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakland-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakland-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakland-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakland-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakland-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/christchurch-canterbury-nz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/christchurch-canterbury-nz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/christchurch-canterbury-nz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/christchurch-canterbury-nz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/christchurch-canterbury-nz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/christchurch-canterbury-nz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/christchurch-canterbury-nz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/christchurch-canterbury-nz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/christchurch-canterbury-nz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/christchurch-canterbury-nz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/christchurch-canterbury-nz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/christchurch-canterbury-nz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/christchurch-canterbury-nz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/christchurch-canterbury-nz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampa-florida-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tampa-florida-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampa-florida-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampa-florida-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampa-florida-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampa-florida-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampa-florida-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampa-florida-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampa-florida-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampa-florida-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampa-florida-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampa-florida-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampa-florida-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampa-florida-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tulsa-oklahoma-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tulsa-oklahoma-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tulsa-oklahoma-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tulsa-oklahoma-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tulsa-oklahoma-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tulsa-oklahoma-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tulsa-oklahoma-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tulsa-oklahoma-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tulsa-oklahoma-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tulsa-oklahoma-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tulsa-oklahoma-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tulsa-oklahoma-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tulsa-oklahoma-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tulsa-oklahoma-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minneapolis-minnesota-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/minneapolis-minnesota-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minneapolis-minnesota-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minneapolis-minnesota-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minneapolis-minnesota-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minneapolis-minnesota-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minneapolis-minnesota-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minneapolis-minnesota-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minneapolis-minnesota-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minneapolis-minnesota-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minneapolis-minnesota-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minneapolis-minnesota-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minneapolis-minnesota-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/minneapolis-minnesota-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-kwazulu-natal-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/newcastle-kwazulu-natal-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-kwazulu-natal-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-kwazulu-natal-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-kwazulu-natal-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-kwazulu-natal-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-kwazulu-natal-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-kwazulu-natal-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-kwazulu-natal-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-kwazulu-natal-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-kwazulu-natal-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-kwazulu-natal-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-kwazulu-natal-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-kwazulu-natal-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunshine-coast-queensland-au", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sunshine-coast-queensland-au/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunshine-coast-queensland-au/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunshine-coast-queensland-au/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunshine-coast-queensland-au/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunshine-coast-queensland-au/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunshine-coast-queensland-au/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunshine-coast-queensland-au/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunshine-coast-queensland-au/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunshine-coast-queensland-au/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunshine-coast-queensland-au/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunshine-coast-queensland-au/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunshine-coast-queensland-au/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunshine-coast-queensland-au/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wichita-kansas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/wichita-kansas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wichita-kansas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wichita-kansas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wichita-kansas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wichita-kansas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wichita-kansas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wichita-kansas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wichita-kansas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wichita-kansas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wichita-kansas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wichita-kansas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wichita-kansas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wichita-kansas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-texas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/arlington-texas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-texas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-texas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-texas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-texas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-texas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-texas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-texas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-texas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-texas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-texas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-texas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-texas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wellington-wellington-region-nz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/wellington-wellington-region-nz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wellington-wellington-region-nz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wellington-wellington-region-nz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wellington-wellington-region-nz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wellington-wellington-region-nz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wellington-wellington-region-nz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wellington-wellington-region-nz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wellington-wellington-region-nz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wellington-wellington-region-nz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wellington-wellington-region-nz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wellington-wellington-region-nz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wellington-wellington-region-nz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wellington-wellington-region-nz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krugersdorp-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/krugersdorp-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krugersdorp-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krugersdorp-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krugersdorp-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krugersdorp-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krugersdorp-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krugersdorp-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krugersdorp-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krugersdorp-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krugersdorp-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krugersdorp-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krugersdorp-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/krugersdorp-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rustenburg-north-west-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rustenburg-north-west-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rustenburg-north-west-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rustenburg-north-west-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rustenburg-north-west-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rustenburg-north-west-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rustenburg-north-west-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rustenburg-north-west-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rustenburg-north-west-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rustenburg-north-west-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rustenburg-north-west-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rustenburg-north-west-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rustenburg-north-west-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rustenburg-north-west-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bakersfield-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bakersfield-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bakersfield-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bakersfield-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bakersfield-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bakersfield-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bakersfield-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bakersfield-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bakersfield-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bakersfield-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bakersfield-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bakersfield-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bakersfield-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bakersfield-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/emalahleni-mpumalanga-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/emalahleni-mpumalanga-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/emalahleni-mpumalanga-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/emalahleni-mpumalanga-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/emalahleni-mpumalanga-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/emalahleni-mpumalanga-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/emalahleni-mpumalanga-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/emalahleni-mpumalanga-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/emalahleni-mpumalanga-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/emalahleni-mpumalanga-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/emalahleni-mpumalanga-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/emalahleni-mpumalanga-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/emalahleni-mpumalanga-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/emalahleni-mpumalanga-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cardiff-wales-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cardiff-wales-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cardiff-wales-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cardiff-wales-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cardiff-wales-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cardiff-wales-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cardiff-wales-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cardiff-wales-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cardiff-wales-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cardiff-wales-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cardiff-wales-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cardiff-wales-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cardiff-wales-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cardiff-wales-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leicester-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/leicester-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leicester-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leicester-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leicester-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leicester-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leicester-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leicester-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leicester-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leicester-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leicester-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leicester-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leicester-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leicester-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/canberra-australian-capital-territory-au", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/canberra-australian-capital-territory-au/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/canberra-australian-capital-territory-au/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/canberra-australian-capital-territory-au/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/canberra-australian-capital-territory-au/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/canberra-australian-capital-territory-au/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/canberra-australian-capital-territory-au/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/canberra-australian-capital-territory-au/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/canberra-australian-capital-territory-au/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/canberra-australian-capital-territory-au/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/canberra-australian-capital-territory-au/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/canberra-australian-capital-territory-au/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/canberra-australian-capital-territory-au/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/canberra-australian-capital-territory-au/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bradford-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bradford-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bradford-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bradford-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bradford-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bradford-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bradford-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bradford-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bradford-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bradford-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bradford-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bradford-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bradford-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bradford-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cleveland-ohio-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cleveland-ohio-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cleveland-ohio-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cleveland-ohio-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cleveland-ohio-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cleveland-ohio-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cleveland-ohio-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cleveland-ohio-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cleveland-ohio-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cleveland-ohio-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cleveland-ohio-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cleveland-ohio-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cleveland-ohio-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cleveland-ohio-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etobicoke-ontario-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/etobicoke-ontario-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etobicoke-ontario-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etobicoke-ontario-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etobicoke-ontario-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etobicoke-ontario-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etobicoke-ontario-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etobicoke-ontario-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etobicoke-ontario-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etobicoke-ontario-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etobicoke-ontario-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etobicoke-ontario-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etobicoke-ontario-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etobicoke-ontario-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-orleans-louisiana-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/new-orleans-louisiana-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-orleans-louisiana-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-orleans-louisiana-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-orleans-louisiana-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-orleans-louisiana-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-orleans-louisiana-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-orleans-louisiana-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-orleans-louisiana-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-orleans-louisiana-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-orleans-louisiana-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-orleans-louisiana-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-orleans-louisiana-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-orleans-louisiana-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manukau-city-auckland-nz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/manukau-city-auckland-nz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manukau-city-auckland-nz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manukau-city-auckland-nz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manukau-city-auckland-nz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manukau-city-auckland-nz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manukau-city-auckland-nz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manukau-city-auckland-nz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manukau-city-auckland-nz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manukau-city-auckland-nz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manukau-city-auckland-nz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manukau-city-auckland-nz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manukau-city-auckland-nz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/manukau-city-auckland-nz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-colorado-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/aurora-colorado-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-colorado-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-colorado-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-colorado-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-colorado-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-colorado-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-colorado-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-colorado-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-colorado-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-colorado-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-colorado-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-colorado-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-colorado-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/honolulu-hawaii-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/honolulu-hawaii-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/honolulu-hawaii-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/honolulu-hawaii-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/honolulu-hawaii-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/honolulu-hawaii-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/honolulu-hawaii-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/honolulu-hawaii-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/honolulu-hawaii-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/honolulu-hawaii-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/honolulu-hawaii-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/honolulu-hawaii-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/honolulu-hawaii-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/honolulu-hawaii-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anaheim-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/anaheim-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anaheim-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anaheim-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anaheim-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anaheim-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anaheim-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anaheim-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anaheim-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anaheim-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anaheim-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anaheim-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anaheim-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anaheim-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diepsloot-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/diepsloot-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diepsloot-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diepsloot-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diepsloot-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diepsloot-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diepsloot-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diepsloot-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diepsloot-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diepsloot-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diepsloot-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diepsloot-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diepsloot-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/diepsloot-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belfast-northern-ireland-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/belfast-northern-ireland-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belfast-northern-ireland-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belfast-northern-ireland-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belfast-northern-ireland-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belfast-northern-ireland-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belfast-northern-ireland-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belfast-northern-ireland-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belfast-northern-ireland-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belfast-northern-ireland-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belfast-northern-ireland-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belfast-northern-ireland-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belfast-northern-ireland-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belfast-northern-ireland-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/central-coast-new-south-wales-au", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/central-coast-new-south-wales-au/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/central-coast-new-south-wales-au/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/central-coast-new-south-wales-au/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/central-coast-new-south-wales-au/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/central-coast-new-south-wales-au/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/central-coast-new-south-wales-au/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/central-coast-new-south-wales-au/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/central-coast-new-south-wales-au/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/central-coast-new-south-wales-au/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/central-coast-new-south-wales-au/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/central-coast-new-south-wales-au/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/central-coast-new-south-wales-au/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/central-coast-new-south-wales-au/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coventry-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/coventry-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coventry-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coventry-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coventry-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coventry-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coventry-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coventry-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coventry-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coventry-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coventry-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coventry-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coventry-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/coventry-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/logan-city-queensland-au", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/logan-city-queensland-au/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/logan-city-queensland-au/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/logan-city-queensland-au/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/logan-city-queensland-au/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/logan-city-queensland-au/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/logan-city-queensland-au/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/logan-city-queensland-au/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/logan-city-queensland-au/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/logan-city-queensland-au/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/logan-city-queensland-au/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/logan-city-queensland-au/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/logan-city-queensland-au/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/logan-city-queensland-au/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-raleigh-north-carolina-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/west-raleigh-north-carolina-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-raleigh-north-carolina-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-raleigh-north-carolina-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-raleigh-north-carolina-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-raleigh-north-carolina-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-raleigh-north-carolina-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-raleigh-north-carolina-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-raleigh-north-carolina-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-raleigh-north-carolina-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-raleigh-north-carolina-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-raleigh-north-carolina-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-raleigh-north-carolina-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-raleigh-north-carolina-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/markham-ontario-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/markham-ontario-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/markham-ontario-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/markham-ontario-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/markham-ontario-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/markham-ontario-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/markham-ontario-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/markham-ontario-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/markham-ontario-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/markham-ontario-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/markham-ontario-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/markham-ontario-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/markham-ontario-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/markham-ontario-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/randburg-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/randburg-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/randburg-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/randburg-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/randburg-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/randburg-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/randburg-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/randburg-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/randburg-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/randburg-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/randburg-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/randburg-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/randburg-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/randburg-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/orlando-florida-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/orlando-florida-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/orlando-florida-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/orlando-florida-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/orlando-florida-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/orlando-florida-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/orlando-florida-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/orlando-florida-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/orlando-florida-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/orlando-florida-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/orlando-florida-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/orlando-florida-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/orlando-florida-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/orlando-florida-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brent-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/brent-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brent-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brent-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brent-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brent-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brent-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brent-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brent-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brent-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brent-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brent-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brent-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brent-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/roodepoort-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/roodepoort-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/roodepoort-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/roodepoort-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/roodepoort-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/roodepoort-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/roodepoort-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/roodepoort-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/roodepoort-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/roodepoort-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/roodepoort-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/roodepoort-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/roodepoort-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/roodepoort-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birkenhead-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/birkenhead-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birkenhead-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birkenhead-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birkenhead-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birkenhead-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birkenhead-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birkenhead-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birkenhead-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birkenhead-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birkenhead-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birkenhead-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birkenhead-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birkenhead-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nottingham-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/nottingham-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nottingham-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nottingham-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nottingham-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nottingham-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nottingham-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nottingham-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nottingham-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nottingham-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nottingham-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nottingham-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nottingham-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nottingham-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vaughan-ontario-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/vaughan-ontario-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vaughan-ontario-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vaughan-ontario-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vaughan-ontario-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vaughan-ontario-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vaughan-ontario-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vaughan-ontario-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vaughan-ontario-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vaughan-ontario-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vaughan-ontario-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vaughan-ontario-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vaughan-ontario-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vaughan-ontario-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-kentucky-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/lexington-kentucky-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-kentucky-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-kentucky-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-kentucky-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-kentucky-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-kentucky-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-kentucky-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-kentucky-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-kentucky-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-kentucky-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-kentucky-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-kentucky-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-kentucky-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islington-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/islington-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islington-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islington-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islington-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islington-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islington-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islington-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islington-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islington-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islington-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islington-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islington-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islington-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reading-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/reading-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reading-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reading-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reading-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reading-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reading-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reading-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reading-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reading-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reading-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reading-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reading-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reading-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riverside-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/riverside-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riverside-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riverside-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riverside-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riverside-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riverside-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riverside-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riverside-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riverside-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riverside-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riverside-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riverside-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/riverside-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/corpus-christi-texas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/corpus-christi-texas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/corpus-christi-texas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/corpus-christi-texas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/corpus-christi-texas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/corpus-christi-texas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/corpus-christi-texas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/corpus-christi-texas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/corpus-christi-texas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/corpus-christi-texas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/corpus-christi-texas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/corpus-christi-texas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/corpus-christi-texas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/corpus-christi-texas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-fayette-kentucky-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/lexington-fayette-kentucky-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-fayette-kentucky-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-fayette-kentucky-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-fayette-kentucky-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-fayette-kentucky-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-fayette-kentucky-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-fayette-kentucky-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-fayette-kentucky-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-fayette-kentucky-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-fayette-kentucky-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-fayette-kentucky-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-fayette-kentucky-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lexington-fayette-kentucky-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-upon-hull-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kingston-upon-hull-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-upon-hull-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-upon-hull-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-upon-hull-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-upon-hull-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-upon-hull-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-upon-hull-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-upon-hull-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-upon-hull-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-upon-hull-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-upon-hull-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-upon-hull-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kingston-upon-hull-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/preston-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/preston-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/preston-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/preston-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/preston-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/preston-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/preston-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/preston-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/preston-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/preston-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/preston-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/preston-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/preston-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/preston-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cincinnati-ohio-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cincinnati-ohio-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cincinnati-ohio-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cincinnati-ohio-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cincinnati-ohio-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cincinnati-ohio-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cincinnati-ohio-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cincinnati-ohio-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cincinnati-ohio-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cincinnati-ohio-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cincinnati-ohio-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cincinnati-ohio-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cincinnati-ohio-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cincinnati-ohio-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-ana-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/santa-ana-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-ana-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-ana-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-ana-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-ana-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-ana-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-ana-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-ana-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-ana-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-ana-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-ana-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-ana-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-ana-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/botshabelo-free-state-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/botshabelo-free-state-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/botshabelo-free-state-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/botshabelo-free-state-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/botshabelo-free-state-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/botshabelo-free-state-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/botshabelo-free-state-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/botshabelo-free-state-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/botshabelo-free-state-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/botshabelo-free-state-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/botshabelo-free-state-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/botshabelo-free-state-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/botshabelo-free-state-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/botshabelo-free-state-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brakpan-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/brakpan-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brakpan-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brakpan-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brakpan-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brakpan-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brakpan-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brakpan-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brakpan-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brakpan-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brakpan-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brakpan-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brakpan-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brakpan-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockton-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/stockton-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockton-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockton-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockton-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockton-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockton-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockton-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockton-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockton-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockton-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockton-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockton-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stockton-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pittsburgh-pennsylvania-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/pittsburgh-pennsylvania-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pittsburgh-pennsylvania-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pittsburgh-pennsylvania-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pittsburgh-pennsylvania-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pittsburgh-pennsylvania-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pittsburgh-pennsylvania-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pittsburgh-pennsylvania-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pittsburgh-pennsylvania-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pittsburgh-pennsylvania-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pittsburgh-pennsylvania-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pittsburgh-pennsylvania-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pittsburgh-pennsylvania-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pittsburgh-pennsylvania-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-paul-minnesota-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/saint-paul-minnesota-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-paul-minnesota-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-paul-minnesota-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-paul-minnesota-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-paul-minnesota-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-paul-minnesota-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-paul-minnesota-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-paul-minnesota-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-paul-minnesota-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-paul-minnesota-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-paul-minnesota-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-paul-minnesota-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saint-paul-minnesota-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-dublin-leinster-ie", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/south-dublin-leinster-ie/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-dublin-leinster-ie/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-dublin-leinster-ie/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-dublin-leinster-ie/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-dublin-leinster-ie/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-dublin-leinster-ie/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-dublin-leinster-ie/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-dublin-leinster-ie/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-dublin-leinster-ie/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-dublin-leinster-ie/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-dublin-leinster-ie/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-dublin-leinster-ie/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/south-dublin-leinster-ie/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swansea-wales-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/swansea-wales-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swansea-wales-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swansea-wales-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swansea-wales-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swansea-wales-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swansea-wales-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swansea-wales-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swansea-wales-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swansea-wales-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swansea-wales-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swansea-wales-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swansea-wales-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swansea-wales-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-upon-tyne-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/newcastle-upon-tyne-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-upon-tyne-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-upon-tyne-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-upon-tyne-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-upon-tyne-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-upon-tyne-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-upon-tyne-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-upon-tyne-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-upon-tyne-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-upon-tyne-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-upon-tyne-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-upon-tyne-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newcastle-upon-tyne-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gatineau-quebec-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gatineau-quebec-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gatineau-quebec-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gatineau-quebec-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gatineau-quebec-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gatineau-quebec-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gatineau-quebec-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gatineau-quebec-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gatineau-quebec-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gatineau-quebec-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gatineau-quebec-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gatineau-quebec-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gatineau-quebec-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gatineau-quebec-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southend-on-sea-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/southend-on-sea-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southend-on-sea-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southend-on-sea-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southend-on-sea-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southend-on-sea-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southend-on-sea-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southend-on-sea-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southend-on-sea-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southend-on-sea-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southend-on-sea-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southend-on-sea-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southend-on-sea-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southend-on-sea-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lincoln-nebraska-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/lincoln-nebraska-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lincoln-nebraska-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lincoln-nebraska-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lincoln-nebraska-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lincoln-nebraska-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lincoln-nebraska-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lincoln-nebraska-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lincoln-nebraska-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lincoln-nebraska-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lincoln-nebraska-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lincoln-nebraska-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lincoln-nebraska-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lincoln-nebraska-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kariega-eastern-cape-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kariega-eastern-cape-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kariega-eastern-cape-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kariega-eastern-cape-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kariega-eastern-cape-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kariega-eastern-cape-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kariega-eastern-cape-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kariega-eastern-cape-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kariega-eastern-cape-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kariega-eastern-cape-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kariega-eastern-cape-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kariega-eastern-cape-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kariega-eastern-cape-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kariega-eastern-cape-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-british-columbia-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/victoria-british-columbia-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-british-columbia-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-british-columbia-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-british-columbia-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-british-columbia-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-british-columbia-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-british-columbia-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-british-columbia-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-british-columbia-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-british-columbia-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-british-columbia-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-british-columbia-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/victoria-british-columbia-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anchorage-alaska-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/anchorage-alaska-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anchorage-alaska-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anchorage-alaska-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anchorage-alaska-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anchorage-alaska-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anchorage-alaska-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anchorage-alaska-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anchorage-alaska-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anchorage-alaska-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anchorage-alaska-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anchorage-alaska-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anchorage-alaska-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anchorage-alaska-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meads-kentucky-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/meads-kentucky-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meads-kentucky-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meads-kentucky-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meads-kentucky-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meads-kentucky-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meads-kentucky-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meads-kentucky-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meads-kentucky-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meads-kentucky-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meads-kentucky-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meads-kentucky-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meads-kentucky-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/meads-kentucky-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/henderson-nevada-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/henderson-nevada-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/henderson-nevada-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/henderson-nevada-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/henderson-nevada-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/henderson-nevada-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/henderson-nevada-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/henderson-nevada-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/henderson-nevada-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/henderson-nevada-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/henderson-nevada-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/henderson-nevada-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/henderson-nevada-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/henderson-nevada-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greensboro-north-carolina-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/greensboro-north-carolina-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greensboro-north-carolina-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greensboro-north-carolina-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greensboro-north-carolina-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greensboro-north-carolina-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greensboro-north-carolina-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greensboro-north-carolina-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greensboro-north-carolina-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greensboro-north-carolina-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greensboro-north-carolina-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greensboro-north-carolina-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greensboro-north-carolina-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greensboro-north-carolina-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brighton-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/brighton-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brighton-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brighton-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brighton-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brighton-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brighton-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brighton-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brighton-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brighton-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brighton-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brighton-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brighton-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brighton-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plano-texas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/plano-texas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plano-texas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plano-texas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plano-texas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plano-texas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plano-texas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plano-texas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plano-texas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plano-texas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plano-texas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plano-texas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plano-texas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plano-texas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/geelong-victoria-au", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/geelong-victoria-au/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/geelong-victoria-au/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/geelong-victoria-au/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/geelong-victoria-au/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/geelong-victoria-au/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/geelong-victoria-au/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/geelong-victoria-au/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/geelong-victoria-au/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/geelong-victoria-au/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/geelong-victoria-au/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/geelong-victoria-au/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/geelong-victoria-au/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/geelong-victoria-au/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newark-new-jersey-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/newark-new-jersey-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newark-new-jersey-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newark-new-jersey-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newark-new-jersey-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newark-new-jersey-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newark-new-jersey-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newark-new-jersey-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newark-new-jersey-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newark-new-jersey-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newark-new-jersey-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newark-new-jersey-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newark-new-jersey-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newark-new-jersey-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madison-wisconsin-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/madison-wisconsin-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madison-wisconsin-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madison-wisconsin-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madison-wisconsin-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madison-wisconsin-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madison-wisconsin-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madison-wisconsin-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madison-wisconsin-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madison-wisconsin-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madison-wisconsin-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madison-wisconsin-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madison-wisconsin-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/madison-wisconsin-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wollongong-new-south-wales-au", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/wollongong-new-south-wales-au/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wollongong-new-south-wales-au/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wollongong-new-south-wales-au/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wollongong-new-south-wales-au/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wollongong-new-south-wales-au/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wollongong-new-south-wales-au/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wollongong-new-south-wales-au/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wollongong-new-south-wales-au/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wollongong-new-south-wales-au/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wollongong-new-south-wales-au/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wollongong-new-south-wales-au/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wollongong-new-south-wales-au/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wollongong-new-south-wales-au/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-louis-missouri-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/st-louis-missouri-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-louis-missouri-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-louis-missouri-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-louis-missouri-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-louis-missouri-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-louis-missouri-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-louis-missouri-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-louis-missouri-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-louis-missouri-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-louis-missouri-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-louis-missouri-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-louis-missouri-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-louis-missouri-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/polokwane-limpopo-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/polokwane-limpopo-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/polokwane-limpopo-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/polokwane-limpopo-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/polokwane-limpopo-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/polokwane-limpopo-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/polokwane-limpopo-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/polokwane-limpopo-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/polokwane-limpopo-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/polokwane-limpopo-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/polokwane-limpopo-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/polokwane-limpopo-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/polokwane-limpopo-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/polokwane-limpopo-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/derby-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/derby-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/derby-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/derby-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/derby-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/derby-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/derby-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/derby-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/derby-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/derby-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/derby-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/derby-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/derby-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/derby-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southampton-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/southampton-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southampton-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southampton-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southampton-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southampton-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southampton-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southampton-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southampton-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southampton-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southampton-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southampton-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southampton-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/southampton-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saskatoon-saskatchewan-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/saskatoon-saskatchewan-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saskatoon-saskatchewan-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saskatoon-saskatchewan-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saskatoon-saskatchewan-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saskatoon-saskatchewan-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saskatoon-saskatchewan-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saskatoon-saskatchewan-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saskatoon-saskatchewan-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saskatoon-saskatchewan-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saskatoon-saskatchewan-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saskatoon-saskatchewan-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saskatoon-saskatchewan-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saskatoon-saskatchewan-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chula-vista-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/chula-vista-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chula-vista-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chula-vista-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chula-vista-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chula-vista-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chula-vista-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chula-vista-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chula-vista-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chula-vista-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chula-vista-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chula-vista-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chula-vista-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chula-vista-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toledo-ohio-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/toledo-ohio-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toledo-ohio-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toledo-ohio-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toledo-ohio-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toledo-ohio-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toledo-ohio-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toledo-ohio-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toledo-ohio-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toledo-ohio-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toledo-ohio-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toledo-ohio-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toledo-ohio-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toledo-ohio-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jersey-city-new-jersey-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jersey-city-new-jersey-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jersey-city-new-jersey-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jersey-city-new-jersey-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jersey-city-new-jersey-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jersey-city-new-jersey-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jersey-city-new-jersey-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jersey-city-new-jersey-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jersey-city-new-jersey-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jersey-city-new-jersey-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jersey-city-new-jersey-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jersey-city-new-jersey-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jersey-city-new-jersey-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jersey-city-new-jersey-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reno-nevada-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/reno-nevada-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reno-nevada-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reno-nevada-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reno-nevada-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reno-nevada-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reno-nevada-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reno-nevada-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reno-nevada-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reno-nevada-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reno-nevada-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reno-nevada-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reno-nevada-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/reno-nevada-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wolverhampton-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/wolverhampton-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wolverhampton-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wolverhampton-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wolverhampton-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wolverhampton-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wolverhampton-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wolverhampton-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wolverhampton-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wolverhampton-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wolverhampton-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wolverhampton-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wolverhampton-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wolverhampton-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandler-arizona-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/chandler-arizona-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandler-arizona-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandler-arizona-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandler-arizona-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandler-arizona-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandler-arizona-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandler-arizona-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandler-arizona-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandler-arizona-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandler-arizona-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandler-arizona-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandler-arizona-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chandler-arizona-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-wayne-indiana-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/fort-wayne-indiana-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-wayne-indiana-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-wayne-indiana-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-wayne-indiana-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-wayne-indiana-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-wayne-indiana-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-wayne-indiana-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-wayne-indiana-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-wayne-indiana-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-wayne-indiana-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-wayne-indiana-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-wayne-indiana-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-wayne-indiana-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plymouth-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/plymouth-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plymouth-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plymouth-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plymouth-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plymouth-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plymouth-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plymouth-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plymouth-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plymouth-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plymouth-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plymouth-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plymouth-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/plymouth-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-shore-auckland-nz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/north-shore-auckland-nz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-shore-auckland-nz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-shore-auckland-nz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-shore-auckland-nz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-shore-auckland-nz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-shore-auckland-nz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-shore-auckland-nz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-shore-auckland-nz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-shore-auckland-nz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-shore-auckland-nz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-shore-auckland-nz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-shore-auckland-nz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-shore-auckland-nz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stoke-on-trent-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/stoke-on-trent-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stoke-on-trent-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stoke-on-trent-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stoke-on-trent-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stoke-on-trent-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stoke-on-trent-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stoke-on-trent-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stoke-on-trent-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stoke-on-trent-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stoke-on-trent-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stoke-on-trent-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stoke-on-trent-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stoke-on-trent-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buffalo-new-york-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/buffalo-new-york-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buffalo-new-york-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buffalo-new-york-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buffalo-new-york-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buffalo-new-york-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buffalo-new-york-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buffalo-new-york-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buffalo-new-york-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buffalo-new-york-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buffalo-new-york-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buffalo-new-york-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buffalo-new-york-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/buffalo-new-york-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durham-north-carolina-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/durham-north-carolina-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durham-north-carolina-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durham-north-carolina-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durham-north-carolina-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durham-north-carolina-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durham-north-carolina-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durham-north-carolina-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durham-north-carolina-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durham-north-carolina-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durham-north-carolina-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durham-north-carolina-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durham-north-carolina-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durham-north-carolina-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-petersburg-florida-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/st-petersburg-florida-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-petersburg-florida-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-petersburg-florida-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-petersburg-florida-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-petersburg-florida-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-petersburg-florida-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-petersburg-florida-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-petersburg-florida-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-petersburg-florida-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-petersburg-florida-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-petersburg-florida-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-petersburg-florida-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-petersburg-florida-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irvine-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/irvine-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irvine-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irvine-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irvine-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irvine-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irvine-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irvine-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irvine-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irvine-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irvine-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irvine-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irvine-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irvine-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitchener-ontario-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kitchener-ontario-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitchener-ontario-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitchener-ontario-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitchener-ontario-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitchener-ontario-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitchener-ontario-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitchener-ontario-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitchener-ontario-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitchener-ontario-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitchener-ontario-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitchener-ontario-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitchener-ontario-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kitchener-ontario-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milton-keynes-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/milton-keynes-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milton-keynes-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milton-keynes-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milton-keynes-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milton-keynes-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milton-keynes-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milton-keynes-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milton-keynes-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milton-keynes-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milton-keynes-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milton-keynes-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milton-keynes-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/milton-keynes-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laredo-texas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/laredo-texas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laredo-texas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laredo-texas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laredo-texas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laredo-texas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laredo-texas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laredo-texas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laredo-texas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laredo-texas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laredo-texas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laredo-texas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laredo-texas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/laredo-texas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/germiston-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/germiston-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/germiston-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/germiston-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/germiston-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/germiston-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/germiston-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/germiston-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/germiston-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/germiston-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/germiston-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/germiston-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/germiston-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/germiston-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hobart-tasmania-au", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hobart-tasmania-au/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hobart-tasmania-au/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hobart-tasmania-au/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hobart-tasmania-au/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hobart-tasmania-au/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hobart-tasmania-au/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hobart-tasmania-au/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hobart-tasmania-au/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hobart-tasmania-au/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hobart-tasmania-au/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hobart-tasmania-au/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hobart-tasmania-au/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hobart-tasmania-au/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richards-bay-kwazulu-natal-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/richards-bay-kwazulu-natal-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richards-bay-kwazulu-natal-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richards-bay-kwazulu-natal-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richards-bay-kwazulu-natal-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richards-bay-kwazulu-natal-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richards-bay-kwazulu-natal-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richards-bay-kwazulu-natal-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richards-bay-kwazulu-natal-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richards-bay-kwazulu-natal-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richards-bay-kwazulu-natal-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richards-bay-kwazulu-natal-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richards-bay-kwazulu-natal-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richards-bay-kwazulu-natal-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burnaby-british-columbia-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/burnaby-british-columbia-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burnaby-british-columbia-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burnaby-british-columbia-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burnaby-british-columbia-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burnaby-british-columbia-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burnaby-british-columbia-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burnaby-british-columbia-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burnaby-british-columbia-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burnaby-british-columbia-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burnaby-british-columbia-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burnaby-british-columbia-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burnaby-british-columbia-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burnaby-british-columbia-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubbock-texas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/lubbock-texas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubbock-texas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubbock-texas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubbock-texas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubbock-texas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubbock-texas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubbock-texas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubbock-texas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubbock-texas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubbock-texas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubbock-texas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubbock-texas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lubbock-texas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/city-of-westminster-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/city-of-westminster-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/city-of-westminster-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/city-of-westminster-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/city-of-westminster-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/city-of-westminster-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/city-of-westminster-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/city-of-westminster-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/city-of-westminster-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/city-of-westminster-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/city-of-westminster-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/city-of-westminster-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/city-of-westminster-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/city-of-westminster-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gilbert-arizona-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gilbert-arizona-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gilbert-arizona-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gilbert-arizona-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gilbert-arizona-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gilbert-arizona-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gilbert-arizona-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gilbert-arizona-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gilbert-arizona-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gilbert-arizona-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gilbert-arizona-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gilbert-arizona-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gilbert-arizona-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gilbert-arizona-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vanderbijlpark-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/vanderbijlpark-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vanderbijlpark-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vanderbijlpark-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vanderbijlpark-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vanderbijlpark-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vanderbijlpark-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vanderbijlpark-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vanderbijlpark-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vanderbijlpark-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vanderbijlpark-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vanderbijlpark-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vanderbijlpark-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vanderbijlpark-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/northampton-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/northampton-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/northampton-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/northampton-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/northampton-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/northampton-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/northampton-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/northampton-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/northampton-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/northampton-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/northampton-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/northampton-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/northampton-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/northampton-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tri-cities-washington-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tri-cities-washington-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tri-cities-washington-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tri-cities-washington-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tri-cities-washington-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tri-cities-washington-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tri-cities-washington-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tri-cities-washington-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tri-cities-washington-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tri-cities-washington-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tri-cities-washington-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tri-cities-washington-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tri-cities-washington-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tri-cities-washington-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winston-salem-north-carolina-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/winston-salem-north-carolina-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winston-salem-north-carolina-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winston-salem-north-carolina-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winston-salem-north-carolina-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winston-salem-north-carolina-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winston-salem-north-carolina-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winston-salem-north-carolina-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winston-salem-north-carolina-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winston-salem-north-carolina-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winston-salem-north-carolina-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winston-salem-north-carolina-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winston-salem-north-carolina-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/winston-salem-north-carolina-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-arizona-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/glendale-arizona-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-arizona-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-arizona-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-arizona-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-arizona-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-arizona-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-arizona-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-arizona-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-arizona-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-arizona-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-arizona-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-arizona-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-arizona-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/norfolk-virginia-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/norfolk-virginia-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/norfolk-virginia-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/norfolk-virginia-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/norfolk-virginia-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/norfolk-virginia-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/norfolk-virginia-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/norfolk-virginia-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/norfolk-virginia-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/norfolk-virginia-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/norfolk-virginia-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/norfolk-virginia-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/norfolk-virginia-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/norfolk-virginia-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athlone-western-cape-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/athlone-western-cape-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athlone-western-cape-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athlone-western-cape-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athlone-western-cape-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athlone-western-cape-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athlone-western-cape-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athlone-western-cape-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athlone-western-cape-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athlone-western-cape-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athlone-western-cape-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athlone-western-cape-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athlone-western-cape-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/athlone-western-cape-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oldham-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/oldham-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oldham-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oldham-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oldham-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oldham-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oldham-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oldham-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oldham-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oldham-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oldham-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oldham-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oldham-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oldham-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hialeah-florida-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hialeah-florida-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hialeah-florida-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hialeah-florida-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hialeah-florida-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hialeah-florida-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hialeah-florida-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hialeah-florida-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hialeah-florida-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hialeah-florida-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hialeah-florida-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hialeah-florida-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hialeah-florida-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hialeah-florida-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paarl-western-cape-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/paarl-western-cape-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paarl-western-cape-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paarl-western-cape-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paarl-western-cape-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paarl-western-cape-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paarl-western-cape-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paarl-western-cape-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paarl-western-cape-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paarl-western-cape-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paarl-western-cape-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paarl-western-cape-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paarl-western-cape-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paarl-western-cape-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/garland-texas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/garland-texas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/garland-texas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/garland-texas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/garland-texas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/garland-texas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/garland-texas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/garland-texas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/garland-texas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/garland-texas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/garland-texas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/garland-texas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/garland-texas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/garland-texas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/scottsdale-arizona-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/scottsdale-arizona-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/scottsdale-arizona-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/scottsdale-arizona-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/scottsdale-arizona-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/scottsdale-arizona-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/scottsdale-arizona-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/scottsdale-arizona-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/scottsdale-arizona-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/scottsdale-arizona-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/scottsdale-arizona-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/scottsdale-arizona-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/scottsdale-arizona-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/scottsdale-arizona-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irving-texas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/irving-texas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irving-texas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irving-texas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irving-texas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irving-texas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irving-texas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irving-texas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irving-texas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irving-texas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irving-texas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irving-texas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irving-texas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/irving-texas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/centurion-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/centurion-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/centurion-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/centurion-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/centurion-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/centurion-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/centurion-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/centurion-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/centurion-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/centurion-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/centurion-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/centurion-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/centurion-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/centurion-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boise-idaho-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/boise-idaho-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boise-idaho-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boise-idaho-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boise-idaho-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boise-idaho-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boise-idaho-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boise-idaho-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boise-idaho-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boise-idaho-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boise-idaho-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boise-idaho-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boise-idaho-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/boise-idaho-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chesapeake-virginia-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/chesapeake-virginia-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chesapeake-virginia-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chesapeake-virginia-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chesapeake-virginia-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chesapeake-virginia-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chesapeake-virginia-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chesapeake-virginia-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chesapeake-virginia-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chesapeake-virginia-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chesapeake-virginia-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chesapeake-virginia-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chesapeake-virginia-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chesapeake-virginia-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-las-vegas-nevada-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/north-las-vegas-nevada-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-las-vegas-nevada-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-las-vegas-nevada-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-las-vegas-nevada-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-las-vegas-nevada-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-las-vegas-nevada-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-las-vegas-nevada-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-las-vegas-nevada-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-las-vegas-nevada-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-las-vegas-nevada-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-las-vegas-nevada-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-las-vegas-nevada-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/north-las-vegas-nevada-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fremont-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/fremont-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fremont-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fremont-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fremont-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fremont-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fremont-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fremont-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fremont-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fremont-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fremont-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fremont-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fremont-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fremont-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windsor-ontario-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/windsor-ontario-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windsor-ontario-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windsor-ontario-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windsor-ontario-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windsor-ontario-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windsor-ontario-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windsor-ontario-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windsor-ontario-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windsor-ontario-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windsor-ontario-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windsor-ontario-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windsor-ontario-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windsor-ontario-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spokane-washington-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/spokane-washington-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spokane-washington-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spokane-washington-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spokane-washington-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spokane-washington-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spokane-washington-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spokane-washington-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spokane-washington-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spokane-washington-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spokane-washington-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spokane-washington-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spokane-washington-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spokane-washington-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/longueuil-quebec-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/longueuil-quebec-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/longueuil-quebec-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/longueuil-quebec-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/longueuil-quebec-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/longueuil-quebec-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/longueuil-quebec-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/longueuil-quebec-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/longueuil-quebec-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/longueuil-quebec-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/longueuil-quebec-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/longueuil-quebec-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/longueuil-quebec-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/longueuil-quebec-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bexley-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bexley-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bexley-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bexley-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bexley-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bexley-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bexley-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bexley-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bexley-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bexley-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bexley-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bexley-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bexley-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bexley-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baton-rouge-louisiana-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/baton-rouge-louisiana-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baton-rouge-louisiana-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baton-rouge-louisiana-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baton-rouge-louisiana-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baton-rouge-louisiana-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baton-rouge-louisiana-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baton-rouge-louisiana-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baton-rouge-louisiana-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baton-rouge-louisiana-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baton-rouge-louisiana-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baton-rouge-louisiana-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baton-rouge-louisiana-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baton-rouge-louisiana-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/klerksdorp-north-west-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/klerksdorp-north-west-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/klerksdorp-north-west-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/klerksdorp-north-west-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/klerksdorp-north-west-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/klerksdorp-north-west-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/klerksdorp-north-west-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/klerksdorp-north-west-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/klerksdorp-north-west-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/klerksdorp-north-west-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/klerksdorp-north-west-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/klerksdorp-north-west-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/klerksdorp-north-west-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/klerksdorp-north-west-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/upper-west-side-new-york-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/upper-west-side-new-york-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/upper-west-side-new-york-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/upper-west-side-new-york-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/upper-west-side-new-york-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/upper-west-side-new-york-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/upper-west-side-new-york-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/upper-west-side-new-york-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/upper-west-side-new-york-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/upper-west-side-new-york-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/upper-west-side-new-york-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/upper-west-side-new-york-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/upper-west-side-new-york-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/upper-west-side-new-york-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-virginia-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/richmond-virginia-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-virginia-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-virginia-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-virginia-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-virginia-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-virginia-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-virginia-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-virginia-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-virginia-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-virginia-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-virginia-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-virginia-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-virginia-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/regina-saskatchewan-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/regina-saskatchewan-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/regina-saskatchewan-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/regina-saskatchewan-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/regina-saskatchewan-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/regina-saskatchewan-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/regina-saskatchewan-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/regina-saskatchewan-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/regina-saskatchewan-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/regina-saskatchewan-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/regina-saskatchewan-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/regina-saskatchewan-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/regina-saskatchewan-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/regina-saskatchewan-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/somerset-west-western-cape-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/somerset-west-western-cape-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/somerset-west-western-cape-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/somerset-west-western-cape-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/somerset-west-western-cape-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/somerset-west-western-cape-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/somerset-west-western-cape-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/somerset-west-western-cape-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/somerset-west-western-cape-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/somerset-west-western-cape-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/somerset-west-western-cape-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/somerset-west-western-cape-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/somerset-west-western-cape-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/somerset-west-western-cape-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luton-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/luton-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luton-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luton-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luton-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luton-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luton-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luton-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luton-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luton-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luton-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luton-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luton-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/luton-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cork-munster-ie", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cork-munster-ie/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cork-munster-ie/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cork-munster-ie/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cork-munster-ie/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cork-munster-ie/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cork-munster-ie/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cork-munster-ie/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cork-munster-ie/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cork-munster-ie/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cork-munster-ie/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cork-munster-ie/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cork-munster-ie/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cork-munster-ie/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paradise-nevada-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/paradise-nevada-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paradise-nevada-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paradise-nevada-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paradise-nevada-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paradise-nevada-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paradise-nevada-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paradise-nevada-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paradise-nevada-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paradise-nevada-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paradise-nevada-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paradise-nevada-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paradise-nevada-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/paradise-nevada-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacoma-washington-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tacoma-washington-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacoma-washington-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacoma-washington-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacoma-washington-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacoma-washington-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacoma-washington-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacoma-washington-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacoma-washington-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacoma-washington-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacoma-washington-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacoma-washington-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacoma-washington-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacoma-washington-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barking-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/barking-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barking-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barking-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barking-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barking-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barking-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barking-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barking-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barking-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barking-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barking-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barking-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barking-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamaica-new-york-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jamaica-new-york-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamaica-new-york-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamaica-new-york-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamaica-new-york-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamaica-new-york-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamaica-new-york-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamaica-new-york-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamaica-new-york-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamaica-new-york-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamaica-new-york-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamaica-new-york-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamaica-new-york-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamaica-new-york-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-bernardino-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/san-bernardino-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-bernardino-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-bernardino-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-bernardino-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-bernardino-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-bernardino-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-bernardino-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-bernardino-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-bernardino-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-bernardino-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-bernardino-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-bernardino-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-bernardino-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/archway-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/archway-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/archway-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/archway-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/archway-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/archway-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/archway-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/archway-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/archway-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/archway-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/archway-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/archway-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/archway-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/archway-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salt-lake-city-utah-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/salt-lake-city-utah-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salt-lake-city-utah-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salt-lake-city-utah-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salt-lake-city-utah-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salt-lake-city-utah-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salt-lake-city-utah-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salt-lake-city-utah-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salt-lake-city-utah-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salt-lake-city-utah-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salt-lake-city-utah-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salt-lake-city-utah-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salt-lake-city-utah-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salt-lake-city-utah-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntsville-alabama-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/huntsville-alabama-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntsville-alabama-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntsville-alabama-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntsville-alabama-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntsville-alabama-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntsville-alabama-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntsville-alabama-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntsville-alabama-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntsville-alabama-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntsville-alabama-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntsville-alabama-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntsville-alabama-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntsville-alabama-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/des-moines-iowa-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/des-moines-iowa-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/des-moines-iowa-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/des-moines-iowa-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/des-moines-iowa-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/des-moines-iowa-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/des-moines-iowa-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/des-moines-iowa-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/des-moines-iowa-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/des-moines-iowa-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/des-moines-iowa-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/des-moines-iowa-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/des-moines-iowa-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/des-moines-iowa-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakville-ontario-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/oakville-ontario-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakville-ontario-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakville-ontario-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakville-ontario-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakville-ontario-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakville-ontario-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakville-ontario-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakville-ontario-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakville-ontario-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakville-ontario-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakville-ontario-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakville-ontario-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oakville-ontario-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fontana-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/fontana-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fontana-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fontana-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fontana-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fontana-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fontana-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fontana-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fontana-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fontana-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fontana-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fontana-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fontana-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fontana-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/modesto-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/modesto-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/modesto-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/modesto-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/modesto-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/modesto-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/modesto-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/modesto-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/modesto-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/modesto-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/modesto-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/modesto-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/modesto-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/modesto-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-british-columbia-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/richmond-british-columbia-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-british-columbia-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-british-columbia-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-british-columbia-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-british-columbia-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-british-columbia-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-british-columbia-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-british-columbia-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-british-columbia-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-british-columbia-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-british-columbia-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-british-columbia-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-british-columbia-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rochester-new-york-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rochester-new-york-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rochester-new-york-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rochester-new-york-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rochester-new-york-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rochester-new-york-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rochester-new-york-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rochester-new-york-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rochester-new-york-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rochester-new-york-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rochester-new-york-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rochester-new-york-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rochester-new-york-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rochester-new-york-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maryvale-arizona-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/maryvale-arizona-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maryvale-arizona-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maryvale-arizona-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maryvale-arizona-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maryvale-arizona-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maryvale-arizona-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maryvale-arizona-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maryvale-arizona-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maryvale-arizona-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maryvale-arizona-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maryvale-arizona-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maryvale-arizona-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maryvale-arizona-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portsmouth-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/portsmouth-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portsmouth-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portsmouth-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portsmouth-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portsmouth-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portsmouth-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portsmouth-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portsmouth-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portsmouth-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portsmouth-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portsmouth-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portsmouth-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/portsmouth-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-virginia-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/arlington-virginia-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-virginia-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-virginia-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-virginia-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-virginia-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-virginia-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-virginia-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-virginia-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-virginia-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-virginia-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-virginia-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-virginia-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arlington-virginia-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oxnard-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/oxnard-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oxnard-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oxnard-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oxnard-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oxnard-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oxnard-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oxnard-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oxnard-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oxnard-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oxnard-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oxnard-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oxnard-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oxnard-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-georgia-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/columbus-georgia-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-georgia-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-georgia-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-georgia-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-georgia-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-georgia-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-georgia-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-georgia-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-georgia-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-georgia-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-georgia-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-georgia-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/columbus-georgia-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/worcester-massachusetts-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/worcester-massachusetts-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/worcester-massachusetts-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/worcester-massachusetts-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/worcester-massachusetts-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/worcester-massachusetts-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/worcester-massachusetts-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/worcester-massachusetts-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/worcester-massachusetts-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/worcester-massachusetts-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/worcester-massachusetts-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/worcester-massachusetts-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/worcester-massachusetts-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/worcester-massachusetts-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mdantsane-eastern-cape-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mdantsane-eastern-cape-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mdantsane-eastern-cape-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mdantsane-eastern-cape-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mdantsane-eastern-cape-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mdantsane-eastern-cape-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mdantsane-eastern-cape-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mdantsane-eastern-cape-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mdantsane-eastern-cape-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mdantsane-eastern-cape-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mdantsane-eastern-cape-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mdantsane-eastern-cape-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mdantsane-eastern-cape-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mdantsane-eastern-cape-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moreno-valley-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/moreno-valley-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moreno-valley-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moreno-valley-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moreno-valley-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moreno-valley-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moreno-valley-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moreno-valley-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moreno-valley-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moreno-valley-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moreno-valley-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moreno-valley-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moreno-valley-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/moreno-valley-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/little-rock-arkansas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/little-rock-arkansas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/little-rock-arkansas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/little-rock-arkansas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/little-rock-arkansas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/little-rock-arkansas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/little-rock-arkansas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/little-rock-arkansas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/little-rock-arkansas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/little-rock-arkansas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/little-rock-arkansas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/little-rock-arkansas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/little-rock-arkansas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/little-rock-arkansas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-hill-ontario-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/richmond-hill-ontario-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-hill-ontario-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-hill-ontario-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-hill-ontario-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-hill-ontario-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-hill-ontario-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-hill-ontario-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-hill-ontario-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-hill-ontario-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-hill-ontario-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-hill-ontario-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-hill-ontario-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/richmond-hill-ontario-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fayetteville-north-carolina-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/fayetteville-north-carolina-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fayetteville-north-carolina-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fayetteville-north-carolina-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fayetteville-north-carolina-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fayetteville-north-carolina-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fayetteville-north-carolina-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fayetteville-north-carolina-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fayetteville-north-carolina-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fayetteville-north-carolina-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fayetteville-north-carolina-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fayetteville-north-carolina-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fayetteville-north-carolina-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fayetteville-north-carolina-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntington-beach-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/huntington-beach-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntington-beach-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntington-beach-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntington-beach-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntington-beach-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntington-beach-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntington-beach-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntington-beach-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntington-beach-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntington-beach-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntington-beach-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntington-beach-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/huntington-beach-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallahassee-florida-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tallahassee-florida-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallahassee-florida-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallahassee-florida-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallahassee-florida-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallahassee-florida-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallahassee-florida-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallahassee-florida-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallahassee-florida-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallahassee-florida-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallahassee-florida-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallahassee-florida-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallahassee-florida-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallahassee-florida-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swindon-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/swindon-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swindon-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swindon-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swindon-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swindon-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swindon-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swindon-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swindon-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swindon-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swindon-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swindon-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swindon-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/swindon-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/townsville-queensland-au", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/townsville-queensland-au/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/townsville-queensland-au/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/townsville-queensland-au/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/townsville-queensland-au/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/townsville-queensland-au/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/townsville-queensland-au/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/townsville-queensland-au/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/townsville-queensland-au/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/townsville-queensland-au/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/townsville-queensland-au/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/townsville-queensland-au/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/townsville-queensland-au/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/townsville-queensland-au/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yonkers-new-york-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/yonkers-new-york-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yonkers-new-york-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yonkers-new-york-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yonkers-new-york-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yonkers-new-york-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yonkers-new-york-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yonkers-new-york-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yonkers-new-york-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yonkers-new-york-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yonkers-new-york-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yonkers-new-york-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yonkers-new-york-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/yonkers-new-york-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/glendale-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/glendale-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cypress-texas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cypress-texas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cypress-texas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cypress-texas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cypress-texas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cypress-texas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cypress-texas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cypress-texas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cypress-texas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cypress-texas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cypress-texas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cypress-texas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cypress-texas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cypress-texas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-illinois-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/aurora-illinois-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-illinois-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-illinois-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-illinois-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-illinois-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-illinois-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-illinois-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-illinois-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-illinois-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-illinois-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-illinois-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-illinois-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aurora-illinois-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dudley-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dudley-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dudley-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dudley-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dudley-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dudley-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dudley-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dudley-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dudley-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dudley-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dudley-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dudley-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dudley-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dudley-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amarillo-texas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/amarillo-texas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amarillo-texas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amarillo-texas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amarillo-texas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amarillo-texas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amarillo-texas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amarillo-texas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amarillo-texas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amarillo-texas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amarillo-texas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amarillo-texas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amarillo-texas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amarillo-texas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aberdeen-scotland-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/aberdeen-scotland-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aberdeen-scotland-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aberdeen-scotland-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aberdeen-scotland-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aberdeen-scotland-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aberdeen-scotland-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aberdeen-scotland-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aberdeen-scotland-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aberdeen-scotland-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aberdeen-scotland-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aberdeen-scotland-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aberdeen-scotland-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aberdeen-scotland-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akron-ohio-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/akron-ohio-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akron-ohio-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akron-ohio-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akron-ohio-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akron-ohio-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akron-ohio-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akron-ohio-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akron-ohio-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akron-ohio-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akron-ohio-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akron-ohio-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akron-ohio-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akron-ohio-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-washington-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/vancouver-washington-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-washington-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-washington-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-washington-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-washington-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-washington-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-washington-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-washington-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-washington-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-washington-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-washington-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-washington-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vancouver-washington-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-alabama-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/birmingham-alabama-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-alabama-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-alabama-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-alabama-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-alabama-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-alabama-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-alabama-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-alabama-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-alabama-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-alabama-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-alabama-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-alabama-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/birmingham-alabama-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/middelburg-mpumalanga-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/middelburg-mpumalanga-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/middelburg-mpumalanga-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/middelburg-mpumalanga-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/middelburg-mpumalanga-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/middelburg-mpumalanga-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/middelburg-mpumalanga-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/middelburg-mpumalanga-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/middelburg-mpumalanga-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/middelburg-mpumalanga-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/middelburg-mpumalanga-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/middelburg-mpumalanga-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/middelburg-mpumalanga-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/middelburg-mpumalanga-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montgomery-alabama-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/montgomery-alabama-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montgomery-alabama-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montgomery-alabama-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montgomery-alabama-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montgomery-alabama-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montgomery-alabama-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montgomery-alabama-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montgomery-alabama-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montgomery-alabama-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montgomery-alabama-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montgomery-alabama-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montgomery-alabama-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/montgomery-alabama-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-rapids-michigan-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/grand-rapids-michigan-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-rapids-michigan-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-rapids-michigan-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-rapids-michigan-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-rapids-michigan-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-rapids-michigan-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-rapids-michigan-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-rapids-michigan-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-rapids-michigan-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-rapids-michigan-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-rapids-michigan-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-rapids-michigan-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-rapids-michigan-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-waikato-region-nz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hamilton-waikato-region-nz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-waikato-region-nz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-waikato-region-nz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-waikato-region-nz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-waikato-region-nz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-waikato-region-nz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-waikato-region-nz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-waikato-region-nz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-waikato-region-nz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-waikato-region-nz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-waikato-region-nz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-waikato-region-nz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamilton-waikato-region-nz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/peoria-arizona-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/peoria-arizona-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/peoria-arizona-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/peoria-arizona-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/peoria-arizona-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/peoria-arizona-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/peoria-arizona-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/peoria-arizona-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/peoria-arizona-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/peoria-arizona-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/peoria-arizona-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/peoria-arizona-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/peoria-arizona-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/peoria-arizona-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/providence-rhode-island-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/providence-rhode-island-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/providence-rhode-island-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/providence-rhode-island-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/providence-rhode-island-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/providence-rhode-island-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/providence-rhode-island-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/providence-rhode-island-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/providence-rhode-island-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/providence-rhode-island-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/providence-rhode-island-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/providence-rhode-island-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/providence-rhode-island-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/providence-rhode-island-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/knoxville-tennessee-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/knoxville-tennessee-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/knoxville-tennessee-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/knoxville-tennessee-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/knoxville-tennessee-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/knoxville-tennessee-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/knoxville-tennessee-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/knoxville-tennessee-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/knoxville-tennessee-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/knoxville-tennessee-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/knoxville-tennessee-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/knoxville-tennessee-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/knoxville-tennessee-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/knoxville-tennessee-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunrise-manor-nevada-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sunrise-manor-nevada-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunrise-manor-nevada-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunrise-manor-nevada-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunrise-manor-nevada-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunrise-manor-nevada-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunrise-manor-nevada-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunrise-manor-nevada-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunrise-manor-nevada-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunrise-manor-nevada-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunrise-manor-nevada-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunrise-manor-nevada-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunrise-manor-nevada-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sunrise-manor-nevada-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/george-western-cape-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/george-western-cape-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/george-western-cape-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/george-western-cape-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/george-western-cape-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/george-western-cape-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/george-western-cape-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/george-western-cape-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/george-western-cape-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/george-western-cape-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/george-western-cape-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/george-western-cape-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/george-western-cape-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/george-western-cape-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-prairie-texas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/grand-prairie-texas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-prairie-texas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-prairie-texas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-prairie-texas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-prairie-texas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-prairie-texas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-prairie-texas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-prairie-texas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-prairie-texas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-prairie-texas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-prairie-texas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-prairie-texas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/grand-prairie-texas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sutton-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sutton-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sutton-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sutton-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sutton-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sutton-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sutton-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sutton-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sutton-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sutton-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sutton-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sutton-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sutton-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sutton-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shreveport-louisiana-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/shreveport-louisiana-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shreveport-louisiana-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shreveport-louisiana-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shreveport-louisiana-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shreveport-louisiana-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shreveport-louisiana-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shreveport-louisiana-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shreveport-louisiana-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shreveport-louisiana-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shreveport-louisiana-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shreveport-louisiana-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shreveport-louisiana-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shreveport-louisiana-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burlington-ontario-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/burlington-ontario-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burlington-ontario-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burlington-ontario-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burlington-ontario-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burlington-ontario-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burlington-ontario-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burlington-ontario-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burlington-ontario-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burlington-ontario-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burlington-ontario-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burlington-ontario-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burlington-ontario-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/burlington-ontario-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brownsville-texas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/brownsville-texas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brownsville-texas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brownsville-texas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brownsville-texas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brownsville-texas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brownsville-texas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brownsville-texas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brownsville-texas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brownsville-texas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brownsville-texas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brownsville-texas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brownsville-texas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brownsville-texas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/overland-park-kansas-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/overland-park-kansas-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/overland-park-kansas-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/overland-park-kansas-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/overland-park-kansas-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/overland-park-kansas-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/overland-park-kansas-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/overland-park-kansas-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/overland-park-kansas-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/overland-park-kansas-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/overland-park-kansas-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/overland-park-kansas-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/overland-park-kansas-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/overland-park-kansas-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/springs-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/springs-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/springs-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/springs-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/springs-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/springs-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/springs-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/springs-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/springs-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/springs-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/springs-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/springs-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/springs-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/springs-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newport-news-virginia-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/newport-news-virginia-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newport-news-virginia-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newport-news-virginia-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newport-news-virginia-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newport-news-virginia-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newport-news-virginia-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newport-news-virginia-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newport-news-virginia-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newport-news-virginia-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newport-news-virginia-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newport-news-virginia-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newport-news-virginia-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/newport-news-virginia-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ivory-park-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ivory-park-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ivory-park-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ivory-park-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ivory-park-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ivory-park-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ivory-park-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ivory-park-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ivory-park-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ivory-park-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ivory-park-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ivory-park-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ivory-park-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ivory-park-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mobile-alabama-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mobile-alabama-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mobile-alabama-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mobile-alabama-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mobile-alabama-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mobile-alabama-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mobile-alabama-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mobile-alabama-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mobile-alabama-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mobile-alabama-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mobile-alabama-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mobile-alabama-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mobile-alabama-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mobile-alabama-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-helens-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/st-helens-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-helens-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-helens-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-helens-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-helens-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-helens-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-helens-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-helens-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-helens-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-helens-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-helens-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-helens-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/st-helens-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-lauderdale-florida-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/fort-lauderdale-florida-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-lauderdale-florida-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-lauderdale-florida-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-lauderdale-florida-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-lauderdale-florida-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-lauderdale-florida-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-lauderdale-florida-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-lauderdale-florida-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-lauderdale-florida-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-lauderdale-florida-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-lauderdale-florida-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-lauderdale-florida-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fort-lauderdale-florida-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-clarita-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/santa-clarita-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-clarita-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-clarita-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-clarita-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-clarita-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-clarita-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-clarita-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-clarita-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-clarita-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-clarita-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-clarita-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-clarita-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-clarita-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/carletonville-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/carletonville-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/carletonville-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/carletonville-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/carletonville-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/carletonville-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/carletonville-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/carletonville-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/carletonville-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/carletonville-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/carletonville-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/carletonville-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/carletonville-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/carletonville-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chattanooga-tennessee-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/chattanooga-tennessee-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chattanooga-tennessee-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chattanooga-tennessee-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chattanooga-tennessee-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chattanooga-tennessee-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chattanooga-tennessee-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chattanooga-tennessee-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chattanooga-tennessee-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chattanooga-tennessee-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chattanooga-tennessee-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chattanooga-tennessee-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chattanooga-tennessee-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chattanooga-tennessee-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nepean-ontario-ca", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/nepean-ontario-ca/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nepean-ontario-ca/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nepean-ontario-ca/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nepean-ontario-ca/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nepean-ontario-ca/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nepean-ontario-ca/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nepean-ontario-ca/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nepean-ontario-ca/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nepean-ontario-ca/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nepean-ontario-ca/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nepean-ontario-ca/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nepean-ontario-ca/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nepean-ontario-ca/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandra-gauteng-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/alexandra-gauteng-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandra-gauteng-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandra-gauteng-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandra-gauteng-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandra-gauteng-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandra-gauteng-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandra-gauteng-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandra-gauteng-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandra-gauteng-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandra-gauteng-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandra-gauteng-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandra-gauteng-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alexandra-gauteng-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ipswich-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ipswich-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ipswich-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ipswich-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ipswich-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ipswich-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ipswich-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ipswich-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ipswich-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ipswich-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ipswich-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ipswich-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ipswich-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ipswich-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-flatbush-new-york-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/east-flatbush-new-york-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-flatbush-new-york-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-flatbush-new-york-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-flatbush-new-york-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-flatbush-new-york-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-flatbush-new-york-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-flatbush-new-york-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-flatbush-new-york-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-flatbush-new-york-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-flatbush-new-york-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-flatbush-new-york-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-flatbush-new-york-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/east-flatbush-new-york-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spring-valley-nevada-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/spring-valley-nevada-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spring-valley-nevada-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spring-valley-nevada-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spring-valley-nevada-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spring-valley-nevada-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spring-valley-nevada-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spring-valley-nevada-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spring-valley-nevada-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spring-valley-nevada-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spring-valley-nevada-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spring-valley-nevada-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spring-valley-nevada-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/spring-valley-nevada-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/potchefstroom-north-west-za", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/potchefstroom-north-west-za/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/potchefstroom-north-west-za/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/potchefstroom-north-west-za/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/potchefstroom-north-west-za/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/potchefstroom-north-west-za/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/potchefstroom-north-west-za/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/potchefstroom-north-west-za/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/potchefstroom-north-west-za/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/potchefstroom-north-west-za/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/potchefstroom-north-west-za/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/potchefstroom-north-west-za/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/potchefstroom-north-west-za/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/potchefstroom-north-west-za/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-rosa-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/santa-rosa-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-rosa-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-rosa-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-rosa-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-rosa-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-rosa-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-rosa-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-rosa-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-rosa-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-rosa-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-rosa-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-rosa-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santa-rosa-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eugene-oregon-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/eugene-oregon-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eugene-oregon-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eugene-oregon-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eugene-oregon-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eugene-oregon-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eugene-oregon-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eugene-oregon-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eugene-oregon-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eugene-oregon-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eugene-oregon-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eugene-oregon-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eugene-oregon-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eugene-oregon-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tempe-arizona-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tempe-arizona-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tempe-arizona-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tempe-arizona-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tempe-arizona-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tempe-arizona-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tempe-arizona-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tempe-arizona-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tempe-arizona-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tempe-arizona-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tempe-arizona-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tempe-arizona-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tempe-arizona-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tempe-arizona-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oceanside-california-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/oceanside-california-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oceanside-california-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oceanside-california-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oceanside-california-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oceanside-california-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oceanside-california-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oceanside-california-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oceanside-california-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oceanside-california-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oceanside-california-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oceanside-california-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oceanside-california-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/oceanside-california-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-oregon-us", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/salem-oregon-us/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-oregon-us/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-oregon-us/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-oregon-us/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-oregon-us/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-oregon-us/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-oregon-us/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-oregon-us/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-oregon-us/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-oregon-us/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-oregon-us/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-oregon-us/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/salem-oregon-us/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wigan-england-gb", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/wigan-england-gb/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wigan-england-gb/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wigan-england-gb/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wigan-england-gb/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wigan-england-gb/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wigan-england-gb/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wigan-england-gb/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wigan-england-gb/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wigan-england-gb/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wigan-england-gb/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wigan-england-gb/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wigan-england-gb/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wigan-england-gb/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/frankfurt-am-main-hesse-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/frankfurt-am-main-hesse-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/frankfurt-am-main-hesse-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/frankfurt-am-main-hesse-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/frankfurt-am-main-hesse-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/frankfurt-am-main-hesse-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/frankfurt-am-main-hesse-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/frankfurt-am-main-hesse-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/frankfurt-am-main-hesse-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/frankfurt-am-main-hesse-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/frankfurt-am-main-hesse-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/frankfurt-am-main-hesse-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/frankfurt-am-main-hesse-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/frankfurt-am-main-hesse-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colombo-western-province-lk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/colombo-western-province-lk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colombo-western-province-lk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colombo-western-province-lk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colombo-western-province-lk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colombo-western-province-lk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colombo-western-province-lk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colombo-western-province-lk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colombo-western-province-lk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colombo-western-province-lk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colombo-western-province-lk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colombo-western-province-lk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colombo-western-province-lk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/colombo-western-province-lk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amravati-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/amravati-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amravati-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amravati-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amravati-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amravati-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amravati-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amravati-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amravati-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amravati-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amravati-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amravati-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amravati-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/amravati-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bikaner-rajasthan-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bikaner-rajasthan-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bikaner-rajasthan-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bikaner-rajasthan-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bikaner-rajasthan-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bikaner-rajasthan-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bikaner-rajasthan-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bikaner-rajasthan-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bikaner-rajasthan-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bikaner-rajasthan-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bikaner-rajasthan-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bikaner-rajasthan-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bikaner-rajasthan-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bikaner-rajasthan-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kochi-kerala-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kochi-kerala-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kochi-kerala-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kochi-kerala-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kochi-kerala-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kochi-kerala-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kochi-kerala-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kochi-kerala-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kochi-kerala-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kochi-kerala-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kochi-kerala-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kochi-kerala-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kochi-kerala-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kochi-kerala-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilai-chhattisgarh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bhilai-chhattisgarh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilai-chhattisgarh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilai-chhattisgarh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilai-chhattisgarh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilai-chhattisgarh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilai-chhattisgarh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilai-chhattisgarh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilai-chhattisgarh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilai-chhattisgarh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilai-chhattisgarh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilai-chhattisgarh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilai-chhattisgarh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilai-chhattisgarh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dusseldorf-north-rhine-westphalia-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dusseldorf-north-rhine-westphalia-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dusseldorf-north-rhine-westphalia-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dusseldorf-north-rhine-westphalia-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dusseldorf-north-rhine-westphalia-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dusseldorf-north-rhine-westphalia-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dusseldorf-north-rhine-westphalia-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dusseldorf-north-rhine-westphalia-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dusseldorf-north-rhine-westphalia-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dusseldorf-north-rhine-westphalia-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dusseldorf-north-rhine-westphalia-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dusseldorf-north-rhine-westphalia-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dusseldorf-north-rhine-westphalia-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dusseldorf-north-rhine-westphalia-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arusha-tz", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/arusha-tz/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arusha-tz/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arusha-tz/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arusha-tz/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arusha-tz/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arusha-tz/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arusha-tz/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arusha-tz/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arusha-tz/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arusha-tz/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arusha-tz/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arusha-tz/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arusha-tz/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-pinas-national-capital-region-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/las-pinas-national-capital-region-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-pinas-national-capital-region-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-pinas-national-capital-region-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-pinas-national-capital-region-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-pinas-national-capital-region-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-pinas-national-capital-region-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-pinas-national-capital-region-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-pinas-national-capital-region-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-pinas-national-capital-region-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-pinas-national-capital-region-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-pinas-national-capital-region-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-pinas-national-capital-region-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/las-pinas-national-capital-region-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stuttgart-baden-wurttemberg-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/stuttgart-baden-wurttemberg-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stuttgart-baden-wurttemberg-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stuttgart-baden-wurttemberg-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stuttgart-baden-wurttemberg-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stuttgart-baden-wurttemberg-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stuttgart-baden-wurttemberg-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stuttgart-baden-wurttemberg-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stuttgart-baden-wurttemberg-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stuttgart-baden-wurttemberg-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stuttgart-baden-wurttemberg-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stuttgart-baden-wurttemberg-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stuttgart-baden-wurttemberg-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/stuttgart-baden-wurttemberg-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cuttack-odisha-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cuttack-odisha-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cuttack-odisha-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cuttack-odisha-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cuttack-odisha-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cuttack-odisha-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cuttack-odisha-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cuttack-odisha-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cuttack-odisha-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cuttack-odisha-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cuttack-odisha-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cuttack-odisha-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cuttack-odisha-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cuttack-odisha-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/borivli-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/borivli-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/borivli-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/borivli-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/borivli-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/borivli-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/borivli-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/borivli-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/borivli-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/borivli-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/borivli-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/borivli-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/borivli-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/borivli-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gothenburg-vastra-gotaland-se", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gothenburg-vastra-gotaland-se/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gothenburg-vastra-gotaland-se/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gothenburg-vastra-gotaland-se/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gothenburg-vastra-gotaland-se/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gothenburg-vastra-gotaland-se/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gothenburg-vastra-gotaland-se/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gothenburg-vastra-gotaland-se/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gothenburg-vastra-gotaland-se/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gothenburg-vastra-gotaland-se/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gothenburg-vastra-gotaland-se/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gothenburg-vastra-gotaland-se/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gothenburg-vastra-gotaland-se/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gothenburg-vastra-gotaland-se/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhavnagar-gujarat-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bhavnagar-gujarat-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhavnagar-gujarat-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhavnagar-gujarat-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhavnagar-gujarat-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhavnagar-gujarat-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhavnagar-gujarat-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhavnagar-gujarat-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhavnagar-gujarat-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhavnagar-gujarat-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhavnagar-gujarat-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhavnagar-gujarat-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhavnagar-gujarat-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhavnagar-gujarat-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islamabad-pk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/islamabad-pk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islamabad-pk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islamabad-pk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islamabad-pk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islamabad-pk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islamabad-pk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islamabad-pk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islamabad-pk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islamabad-pk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islamabad-pk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islamabad-pk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islamabad-pk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/islamabad-pk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sangli-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sangli-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sangli-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sangli-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sangli-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sangli-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sangli-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sangli-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sangli-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sangli-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sangli-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sangli-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sangli-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sangli-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamnagar-gujarat-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jamnagar-gujarat-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamnagar-gujarat-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamnagar-gujarat-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamnagar-gujarat-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamnagar-gujarat-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamnagar-gujarat-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamnagar-gujarat-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamnagar-gujarat-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamnagar-gujarat-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamnagar-gujarat-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamnagar-gujarat-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamnagar-gujarat-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jamnagar-gujarat-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/essen-north-rhine-westphalia-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/essen-north-rhine-westphalia-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/essen-north-rhine-westphalia-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/essen-north-rhine-westphalia-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/essen-north-rhine-westphalia-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/essen-north-rhine-westphalia-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/essen-north-rhine-westphalia-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/essen-north-rhine-westphalia-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/essen-north-rhine-westphalia-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/essen-north-rhine-westphalia-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/essen-north-rhine-westphalia-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/essen-north-rhine-westphalia-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/essen-north-rhine-westphalia-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/essen-north-rhine-westphalia-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dortmund-north-rhine-westphalia-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dortmund-north-rhine-westphalia-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dortmund-north-rhine-westphalia-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dortmund-north-rhine-westphalia-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dortmund-north-rhine-westphalia-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dortmund-north-rhine-westphalia-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dortmund-north-rhine-westphalia-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dortmund-north-rhine-westphalia-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dortmund-north-rhine-westphalia-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dortmund-north-rhine-westphalia-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dortmund-north-rhine-westphalia-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dortmund-north-rhine-westphalia-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dortmund-north-rhine-westphalia-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dortmund-north-rhine-westphalia-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malacca-melaka-my", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/malacca-melaka-my/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malacca-melaka-my/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malacca-melaka-my/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malacca-melaka-my/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malacca-melaka-my/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malacca-melaka-my/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malacca-melaka-my/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malacca-melaka-my/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malacca-melaka-my/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malacca-melaka-my/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malacca-melaka-my/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malacca-melaka-my/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malacca-melaka-my/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jammu-jammu-and-kashmir-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jammu-jammu-and-kashmir-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jammu-jammu-and-kashmir-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jammu-jammu-and-kashmir-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jammu-jammu-and-kashmir-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jammu-jammu-and-kashmir-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jammu-jammu-and-kashmir-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jammu-jammu-and-kashmir-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jammu-jammu-and-kashmir-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jammu-jammu-and-kashmir-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jammu-jammu-and-kashmir-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jammu-jammu-and-kashmir-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jammu-jammu-and-kashmir-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jammu-jammu-and-kashmir-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calamba-calabarzon-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/calamba-calabarzon-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calamba-calabarzon-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calamba-calabarzon-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calamba-calabarzon-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calamba-calabarzon-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calamba-calabarzon-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calamba-calabarzon-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calamba-calabarzon-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calamba-calabarzon-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calamba-calabarzon-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calamba-calabarzon-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calamba-calabarzon-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/calamba-calabarzon-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dresden-saxony-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dresden-saxony-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dresden-saxony-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dresden-saxony-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dresden-saxony-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dresden-saxony-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dresden-saxony-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dresden-saxony-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dresden-saxony-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dresden-saxony-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dresden-saxony-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dresden-saxony-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dresden-saxony-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dresden-saxony-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bokaro-jharkhand-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bokaro-jharkhand-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bokaro-jharkhand-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bokaro-jharkhand-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bokaro-jharkhand-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bokaro-jharkhand-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bokaro-jharkhand-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bokaro-jharkhand-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bokaro-jharkhand-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bokaro-jharkhand-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bokaro-jharkhand-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bokaro-jharkhand-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bokaro-jharkhand-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bokaro-jharkhand-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muntinlupa-calabarzon-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/muntinlupa-calabarzon-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muntinlupa-calabarzon-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muntinlupa-calabarzon-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muntinlupa-calabarzon-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muntinlupa-calabarzon-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muntinlupa-calabarzon-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muntinlupa-calabarzon-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muntinlupa-calabarzon-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muntinlupa-calabarzon-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muntinlupa-calabarzon-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muntinlupa-calabarzon-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muntinlupa-calabarzon-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muntinlupa-calabarzon-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nanded-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/nanded-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nanded-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nanded-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nanded-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nanded-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nanded-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nanded-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nanded-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nanded-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nanded-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nanded-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nanded-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nanded-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kozhikode-kerala-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kozhikode-kerala-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kozhikode-kerala-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kozhikode-kerala-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kozhikode-kerala-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kozhikode-kerala-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kozhikode-kerala-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kozhikode-kerala-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kozhikode-kerala-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kozhikode-kerala-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kozhikode-kerala-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kozhikode-kerala-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kozhikode-kerala-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kozhikode-kerala-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolhapur-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kolhapur-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolhapur-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolhapur-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolhapur-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolhapur-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolhapur-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolhapur-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolhapur-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolhapur-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolhapur-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolhapur-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolhapur-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kolhapur-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nellore-andhra-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/nellore-andhra-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nellore-andhra-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nellore-andhra-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nellore-andhra-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nellore-andhra-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nellore-andhra-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nellore-andhra-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nellore-andhra-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nellore-andhra-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nellore-andhra-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nellore-andhra-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nellore-andhra-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nellore-andhra-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bremen-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bremen-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bremen-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bremen-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bremen-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bremen-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bremen-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bremen-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bremen-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bremen-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bremen-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bremen-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bremen-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bremen-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalaburagi-karnataka-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kalaburagi-karnataka-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalaburagi-karnataka-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalaburagi-karnataka-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalaburagi-karnataka-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalaburagi-karnataka-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalaburagi-karnataka-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalaburagi-karnataka-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalaburagi-karnataka-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalaburagi-karnataka-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalaburagi-karnataka-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalaburagi-karnataka-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalaburagi-karnataka-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kalaburagi-karnataka-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vilnius-lt", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/vilnius-lt/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vilnius-lt/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vilnius-lt/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vilnius-lt/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vilnius-lt/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vilnius-lt/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vilnius-lt/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vilnius-lt/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vilnius-lt/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vilnius-lt/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vilnius-lt/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vilnius-lt/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vilnius-lt/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ajmer-rajasthan-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ajmer-rajasthan-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ajmer-rajasthan-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ajmer-rajasthan-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ajmer-rajasthan-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ajmer-rajasthan-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ajmer-rajasthan-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ajmer-rajasthan-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ajmer-rajasthan-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ajmer-rajasthan-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ajmer-rajasthan-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ajmer-rajasthan-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ajmer-rajasthan-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ajmer-rajasthan-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antwerp-flanders-be", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/antwerp-flanders-be/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antwerp-flanders-be/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antwerp-flanders-be/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antwerp-flanders-be/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antwerp-flanders-be/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antwerp-flanders-be/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antwerp-flanders-be/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antwerp-flanders-be/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antwerp-flanders-be/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antwerp-flanders-be/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antwerp-flanders-be/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antwerp-flanders-be/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/antwerp-flanders-be/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dehradun-uttarakhand-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dehradun-uttarakhand-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dehradun-uttarakhand-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dehradun-uttarakhand-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dehradun-uttarakhand-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dehradun-uttarakhand-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dehradun-uttarakhand-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dehradun-uttarakhand-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dehradun-uttarakhand-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dehradun-uttarakhand-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dehradun-uttarakhand-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dehradun-uttarakhand-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dehradun-uttarakhand-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dehradun-uttarakhand-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erode-tamil-nadu-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/erode-tamil-nadu-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erode-tamil-nadu-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erode-tamil-nadu-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erode-tamil-nadu-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erode-tamil-nadu-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erode-tamil-nadu-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erode-tamil-nadu-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erode-tamil-nadu-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erode-tamil-nadu-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erode-tamil-nadu-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erode-tamil-nadu-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erode-tamil-nadu-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/erode-tamil-nadu-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lyon-rhone-alpes-fr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/lyon-rhone-alpes-fr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lyon-rhone-alpes-fr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lyon-rhone-alpes-fr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lyon-rhone-alpes-fr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lyon-rhone-alpes-fr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lyon-rhone-alpes-fr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lyon-rhone-alpes-fr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lyon-rhone-alpes-fr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lyon-rhone-alpes-fr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lyon-rhone-alpes-fr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lyon-rhone-alpes-fr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lyon-rhone-alpes-fr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lyon-rhone-alpes-fr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durgapur-west-bengal-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/durgapur-west-bengal-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durgapur-west-bengal-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durgapur-west-bengal-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durgapur-west-bengal-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durgapur-west-bengal-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durgapur-west-bengal-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durgapur-west-bengal-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durgapur-west-bengal-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durgapur-west-bengal-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durgapur-west-bengal-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durgapur-west-bengal-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durgapur-west-bengal-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durgapur-west-bengal-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulhasnagar-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ulhasnagar-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulhasnagar-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulhasnagar-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulhasnagar-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulhasnagar-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulhasnagar-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulhasnagar-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulhasnagar-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulhasnagar-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulhasnagar-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulhasnagar-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulhasnagar-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulhasnagar-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/loni-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/loni-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/loni-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/loni-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/loni-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/loni-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/loni-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/loni-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/loni-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/loni-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/loni-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/loni-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/loni-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/loni-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/siliguri-west-bengal-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/siliguri-west-bengal-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/siliguri-west-bengal-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/siliguri-west-bengal-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/siliguri-west-bengal-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/siliguri-west-bengal-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/siliguri-west-bengal-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/siliguri-west-bengal-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/siliguri-west-bengal-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/siliguri-west-bengal-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/siliguri-west-bengal-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/siliguri-west-bengal-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/siliguri-west-bengal-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/siliguri-west-bengal-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nuremberg-bavaria-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/nuremberg-bavaria-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nuremberg-bavaria-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nuremberg-bavaria-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nuremberg-bavaria-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nuremberg-bavaria-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nuremberg-bavaria-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nuremberg-bavaria-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nuremberg-bavaria-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nuremberg-bavaria-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nuremberg-bavaria-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nuremberg-bavaria-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nuremberg-bavaria-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nuremberg-bavaria-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ujjain-madhya-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ujjain-madhya-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ujjain-madhya-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ujjain-madhya-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ujjain-madhya-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ujjain-madhya-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ujjain-madhya-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ujjain-madhya-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ujjain-madhya-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ujjain-madhya-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ujjain-madhya-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ujjain-madhya-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ujjain-madhya-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ujjain-madhya-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hannover-lower-saxony-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hannover-lower-saxony-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hannover-lower-saxony-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hannover-lower-saxony-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hannover-lower-saxony-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hannover-lower-saxony-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hannover-lower-saxony-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hannover-lower-saxony-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hannover-lower-saxony-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hannover-lower-saxony-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hannover-lower-saxony-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hannover-lower-saxony-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hannover-lower-saxony-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hannover-lower-saxony-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toulouse-occitanie-fr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/toulouse-occitanie-fr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toulouse-occitanie-fr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toulouse-occitanie-fr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toulouse-occitanie-fr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toulouse-occitanie-fr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toulouse-occitanie-fr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toulouse-occitanie-fr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toulouse-occitanie-fr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toulouse-occitanie-fr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toulouse-occitanie-fr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toulouse-occitanie-fr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toulouse-occitanie-fr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/toulouse-occitanie-fr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilimora-gujarat-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bilimora-gujarat-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilimora-gujarat-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilimora-gujarat-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilimora-gujarat-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilimora-gujarat-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilimora-gujarat-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilimora-gujarat-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilimora-gujarat-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilimora-gujarat-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilimora-gujarat-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilimora-gujarat-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilimora-gujarat-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilimora-gujarat-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/makati-city-national-capital-region-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/makati-city-national-capital-region-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/makati-city-national-capital-region-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/makati-city-national-capital-region-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/makati-city-national-capital-region-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/makati-city-national-capital-region-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/makati-city-national-capital-region-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/makati-city-national-capital-region-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/makati-city-national-capital-region-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/makati-city-national-capital-region-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/makati-city-national-capital-region-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/makati-city-national-capital-region-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/makati-city-national-capital-region-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/makati-city-national-capital-region-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tuen-mun-hk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tuen-mun-hk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tuen-mun-hk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tuen-mun-hk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tuen-mun-hk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tuen-mun-hk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tuen-mun-hk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tuen-mun-hk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tuen-mun-hk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tuen-mun-hk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tuen-mun-hk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tuen-mun-hk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tuen-mun-hk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tuen-mun-hk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karol-bagh-delhi-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/karol-bagh-delhi-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karol-bagh-delhi-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karol-bagh-delhi-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karol-bagh-delhi-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karol-bagh-delhi-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karol-bagh-delhi-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karol-bagh-delhi-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karol-bagh-delhi-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karol-bagh-delhi-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karol-bagh-delhi-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karol-bagh-delhi-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karol-bagh-delhi-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karol-bagh-delhi-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leipzig-saxony-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/leipzig-saxony-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leipzig-saxony-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leipzig-saxony-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leipzig-saxony-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leipzig-saxony-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leipzig-saxony-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leipzig-saxony-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leipzig-saxony-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leipzig-saxony-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leipzig-saxony-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leipzig-saxony-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leipzig-saxony-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/leipzig-saxony-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duisburg-north-rhine-westphalia-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/duisburg-north-rhine-westphalia-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duisburg-north-rhine-westphalia-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duisburg-north-rhine-westphalia-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duisburg-north-rhine-westphalia-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duisburg-north-rhine-westphalia-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duisburg-north-rhine-westphalia-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duisburg-north-rhine-westphalia-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duisburg-north-rhine-westphalia-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duisburg-north-rhine-westphalia-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duisburg-north-rhine-westphalia-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duisburg-north-rhine-westphalia-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duisburg-north-rhine-westphalia-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/duisburg-north-rhine-westphalia-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asansol-west-bengal-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/asansol-west-bengal-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asansol-west-bengal-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asansol-west-bengal-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asansol-west-bengal-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asansol-west-bengal-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asansol-west-bengal-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asansol-west-bengal-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asansol-west-bengal-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asansol-west-bengal-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asansol-west-bengal-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asansol-west-bengal-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asansol-west-bengal-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/asansol-west-bengal-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-kinabalu-sabah-my", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kota-kinabalu-sabah-my/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-kinabalu-sabah-my/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-kinabalu-sabah-my/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-kinabalu-sabah-my/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-kinabalu-sabah-my/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-kinabalu-sabah-my/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-kinabalu-sabah-my/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-kinabalu-sabah-my/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-kinabalu-sabah-my/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-kinabalu-sabah-my/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-kinabalu-sabah-my/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-kinabalu-sabah-my/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kota-kinabalu-sabah-my/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mangaluru-karnataka-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mangaluru-karnataka-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mangaluru-karnataka-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mangaluru-karnataka-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mangaluru-karnataka-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mangaluru-karnataka-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mangaluru-karnataka-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mangaluru-karnataka-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mangaluru-karnataka-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mangaluru-karnataka-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mangaluru-karnataka-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mangaluru-karnataka-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mangaluru-karnataka-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mangaluru-karnataka-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lapu-lapu-city-central-visayas-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/lapu-lapu-city-central-visayas-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lapu-lapu-city-central-visayas-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lapu-lapu-city-central-visayas-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lapu-lapu-city-central-visayas-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lapu-lapu-city-central-visayas-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lapu-lapu-city-central-visayas-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lapu-lapu-city-central-visayas-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lapu-lapu-city-central-visayas-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lapu-lapu-city-central-visayas-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lapu-lapu-city-central-visayas-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lapu-lapu-city-central-visayas-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lapu-lapu-city-central-visayas-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lapu-lapu-city-central-visayas-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sha-tin-hk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sha-tin-hk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sha-tin-hk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sha-tin-hk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sha-tin-hk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sha-tin-hk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sha-tin-hk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sha-tin-hk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sha-tin-hk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sha-tin-hk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sha-tin-hk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sha-tin-hk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sha-tin-hk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sha-tin-hk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belagavi-karnataka-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/belagavi-karnataka-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belagavi-karnataka-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belagavi-karnataka-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belagavi-karnataka-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belagavi-karnataka-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belagavi-karnataka-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belagavi-karnataka-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belagavi-karnataka-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belagavi-karnataka-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belagavi-karnataka-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belagavi-karnataka-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belagavi-karnataka-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/belagavi-karnataka-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saharanpur-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/saharanpur-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saharanpur-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saharanpur-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saharanpur-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saharanpur-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saharanpur-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saharanpur-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saharanpur-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saharanpur-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saharanpur-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saharanpur-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saharanpur-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saharanpur-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vellore-tamil-nadu-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/vellore-tamil-nadu-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vellore-tamil-nadu-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vellore-tamil-nadu-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vellore-tamil-nadu-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vellore-tamil-nadu-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vellore-tamil-nadu-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vellore-tamil-nadu-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vellore-tamil-nadu-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vellore-tamil-nadu-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vellore-tamil-nadu-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vellore-tamil-nadu-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vellore-tamil-nadu-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vellore-tamil-nadu-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/angeles-city-central-luzon-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/angeles-city-central-luzon-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/angeles-city-central-luzon-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/angeles-city-central-luzon-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/angeles-city-central-luzon-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/angeles-city-central-luzon-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/angeles-city-central-luzon-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/angeles-city-central-luzon-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/angeles-city-central-luzon-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/angeles-city-central-luzon-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/angeles-city-central-luzon-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/angeles-city-central-luzon-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/angeles-city-central-luzon-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/angeles-city-central-luzon-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhatpara-west-bengal-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bhatpara-west-bengal-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhatpara-west-bengal-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhatpara-west-bengal-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhatpara-west-bengal-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhatpara-west-bengal-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhatpara-west-bengal-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhatpara-west-bengal-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhatpara-west-bengal-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhatpara-west-bengal-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhatpara-west-bengal-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhatpara-west-bengal-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhatpara-west-bengal-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhatpara-west-bengal-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imus-calabarzon-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/imus-calabarzon-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imus-calabarzon-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imus-calabarzon-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imus-calabarzon-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imus-calabarzon-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imus-calabarzon-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imus-calabarzon-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imus-calabarzon-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imus-calabarzon-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imus-calabarzon-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imus-calabarzon-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imus-calabarzon-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imus-calabarzon-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malegaon-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/malegaon-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malegaon-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malegaon-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malegaon-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malegaon-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malegaon-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malegaon-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malegaon-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malegaon-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malegaon-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malegaon-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malegaon-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malegaon-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-hague-south-holland-nl", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/the-hague-south-holland-nl/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-hague-south-holland-nl/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-hague-south-holland-nl/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-hague-south-holland-nl/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-hague-south-holland-nl/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-hague-south-holland-nl/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-hague-south-holland-nl/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-hague-south-holland-nl/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-hague-south-holland-nl/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-hague-south-holland-nl/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-hague-south-holland-nl/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-hague-south-holland-nl/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/the-hague-south-holland-nl/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaya-bihar-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gaya-bihar-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaya-bihar-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaya-bihar-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaya-bihar-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaya-bihar-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaya-bihar-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaya-bihar-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaya-bihar-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaya-bihar-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaya-bihar-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaya-bihar-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaya-bihar-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gaya-bihar-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iloilo-western-visayas-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/iloilo-western-visayas-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iloilo-western-visayas-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iloilo-western-visayas-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iloilo-western-visayas-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iloilo-western-visayas-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iloilo-western-visayas-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iloilo-western-visayas-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iloilo-western-visayas-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iloilo-western-visayas-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iloilo-western-visayas-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iloilo-western-visayas-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iloilo-western-visayas-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iloilo-western-visayas-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marikina-city-national-capital-region-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/marikina-city-national-capital-region-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marikina-city-national-capital-region-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marikina-city-national-capital-region-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marikina-city-national-capital-region-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marikina-city-national-capital-region-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marikina-city-national-capital-region-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marikina-city-national-capital-region-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marikina-city-national-capital-region-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marikina-city-national-capital-region-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marikina-city-national-capital-region-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marikina-city-national-capital-region-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marikina-city-national-capital-region-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marikina-city-national-capital-region-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambattur-tamil-nadu-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ambattur-tamil-nadu-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambattur-tamil-nadu-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambattur-tamil-nadu-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambattur-tamil-nadu-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambattur-tamil-nadu-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambattur-tamil-nadu-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambattur-tamil-nadu-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambattur-tamil-nadu-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambattur-tamil-nadu-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambattur-tamil-nadu-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambattur-tamil-nadu-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambattur-tamil-nadu-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambattur-tamil-nadu-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-city-national-capital-region-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mandaluyong-city-national-capital-region-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-city-national-capital-region-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-city-national-capital-region-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-city-national-capital-region-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-city-national-capital-region-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-city-national-capital-region-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-city-national-capital-region-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-city-national-capital-region-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-city-national-capital-region-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-city-national-capital-region-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-city-national-capital-region-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-city-national-capital-region-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-city-national-capital-region-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalgaon-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jalgaon-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalgaon-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalgaon-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalgaon-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalgaon-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalgaon-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalgaon-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalgaon-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalgaon-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalgaon-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalgaon-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalgaon-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalgaon-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kurnool-andhra-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kurnool-andhra-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kurnool-andhra-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kurnool-andhra-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kurnool-andhra-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kurnool-andhra-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kurnool-andhra-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kurnool-andhra-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kurnool-andhra-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kurnool-andhra-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kurnool-andhra-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kurnool-andhra-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kurnool-andhra-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kurnool-andhra-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacolod-city-western-visayas-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bacolod-city-western-visayas-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacolod-city-western-visayas-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacolod-city-western-visayas-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacolod-city-western-visayas-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacolod-city-western-visayas-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacolod-city-western-visayas-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacolod-city-western-visayas-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacolod-city-western-visayas-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacolod-city-western-visayas-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacolod-city-western-visayas-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacolod-city-western-visayas-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacolod-city-western-visayas-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacolod-city-western-visayas-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mansilingan-western-visayas-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mansilingan-western-visayas-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mansilingan-western-visayas-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mansilingan-western-visayas-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mansilingan-western-visayas-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mansilingan-western-visayas-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mansilingan-western-visayas-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mansilingan-western-visayas-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mansilingan-western-visayas-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mansilingan-western-visayas-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mansilingan-western-visayas-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mansilingan-western-visayas-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mansilingan-western-visayas-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mansilingan-western-visayas-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ramgundam-telangana-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ramgundam-telangana-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ramgundam-telangana-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ramgundam-telangana-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ramgundam-telangana-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ramgundam-telangana-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ramgundam-telangana-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ramgundam-telangana-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ramgundam-telangana-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ramgundam-telangana-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ramgundam-telangana-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ramgundam-telangana-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ramgundam-telangana-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ramgundam-telangana-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/udaipur-rajasthan-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/udaipur-rajasthan-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/udaipur-rajasthan-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/udaipur-rajasthan-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/udaipur-rajasthan-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/udaipur-rajasthan-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/udaipur-rajasthan-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/udaipur-rajasthan-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/udaipur-rajasthan-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/udaipur-rajasthan-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/udaipur-rajasthan-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/udaipur-rajasthan-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/udaipur-rajasthan-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/udaipur-rajasthan-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maheshtala-west-bengal-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/maheshtala-west-bengal-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maheshtala-west-bengal-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maheshtala-west-bengal-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maheshtala-west-bengal-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maheshtala-west-bengal-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maheshtala-west-bengal-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maheshtala-west-bengal-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maheshtala-west-bengal-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maheshtala-west-bengal-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maheshtala-west-bengal-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maheshtala-west-bengal-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maheshtala-west-bengal-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maheshtala-west-bengal-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patiala-punjab-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/patiala-punjab-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patiala-punjab-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patiala-punjab-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patiala-punjab-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patiala-punjab-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patiala-punjab-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patiala-punjab-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patiala-punjab-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patiala-punjab-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patiala-punjab-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patiala-punjab-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patiala-punjab-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/patiala-punjab-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shyamnagar-west-bengal-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/shyamnagar-west-bengal-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shyamnagar-west-bengal-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shyamnagar-west-bengal-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shyamnagar-west-bengal-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shyamnagar-west-bengal-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shyamnagar-west-bengal-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shyamnagar-west-bengal-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shyamnagar-west-bengal-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shyamnagar-west-bengal-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shyamnagar-west-bengal-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shyamnagar-west-bengal-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shyamnagar-west-bengal-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shyamnagar-west-bengal-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dasmarinas-calabarzon-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dasmarinas-calabarzon-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dasmarinas-calabarzon-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dasmarinas-calabarzon-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dasmarinas-calabarzon-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dasmarinas-calabarzon-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dasmarinas-calabarzon-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dasmarinas-calabarzon-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dasmarinas-calabarzon-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dasmarinas-calabarzon-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dasmarinas-calabarzon-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dasmarinas-calabarzon-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dasmarinas-calabarzon-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dasmarinas-calabarzon-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davangere-karnataka-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/davangere-karnataka-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davangere-karnataka-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davangere-karnataka-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davangere-karnataka-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davangere-karnataka-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davangere-karnataka-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davangere-karnataka-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davangere-karnataka-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davangere-karnataka-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davangere-karnataka-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davangere-karnataka-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davangere-karnataka-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/davangere-karnataka-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tel-aviv-il", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tel-aviv-il/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tel-aviv-il/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tel-aviv-il/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tel-aviv-il/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tel-aviv-il/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tel-aviv-il/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tel-aviv-il/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tel-aviv-il/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tel-aviv-il/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tel-aviv-il/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tel-aviv-il/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tel-aviv-il/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tel-aviv-il/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sham-shui-po-sham-shui-po-district-hk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sham-shui-po-sham-shui-po-district-hk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sham-shui-po-sham-shui-po-district-hk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sham-shui-po-sham-shui-po-district-hk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sham-shui-po-sham-shui-po-district-hk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sham-shui-po-sham-shui-po-district-hk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sham-shui-po-sham-shui-po-district-hk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sham-shui-po-sham-shui-po-district-hk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sham-shui-po-sham-shui-po-district-hk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sham-shui-po-sham-shui-po-district-hk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sham-shui-po-sham-shui-po-district-hk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sham-shui-po-sham-shui-po-district-hk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sham-shui-po-sham-shui-po-district-hk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sham-shui-po-sham-shui-po-district-hk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akola-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/akola-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akola-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akola-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akola-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akola-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akola-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akola-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akola-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akola-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akola-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akola-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akola-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/akola-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wong-tai-sin-wong-tai-sin-district-hk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/wong-tai-sin-wong-tai-sin-district-hk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wong-tai-sin-wong-tai-sin-district-hk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wong-tai-sin-wong-tai-sin-district-hk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wong-tai-sin-wong-tai-sin-district-hk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wong-tai-sin-wong-tai-sin-district-hk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wong-tai-sin-wong-tai-sin-district-hk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wong-tai-sin-wong-tai-sin-district-hk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wong-tai-sin-wong-tai-sin-district-hk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wong-tai-sin-wong-tai-sin-district-hk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wong-tai-sin-wong-tai-sin-district-hk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wong-tai-sin-wong-tai-sin-district-hk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wong-tai-sin-wong-tai-sin-district-hk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wong-tai-sin-wong-tai-sin-district-hk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-national-capital-region-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mandaluyong-national-capital-region-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-national-capital-region-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-national-capital-region-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-national-capital-region-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-national-capital-region-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-national-capital-region-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-national-capital-region-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-national-capital-region-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-national-capital-region-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-national-capital-region-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-national-capital-region-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-national-capital-region-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaluyong-national-capital-region-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajpur-sonarpur-west-bengal-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rajpur-sonarpur-west-bengal-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajpur-sonarpur-west-bengal-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajpur-sonarpur-west-bengal-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajpur-sonarpur-west-bengal-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajpur-sonarpur-west-bengal-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajpur-sonarpur-west-bengal-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajpur-sonarpur-west-bengal-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajpur-sonarpur-west-bengal-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajpur-sonarpur-west-bengal-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajpur-sonarpur-west-bengal-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajpur-sonarpur-west-bengal-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajpur-sonarpur-west-bengal-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajpur-sonarpur-west-bengal-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/korba-chhattisgarh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/korba-chhattisgarh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/korba-chhattisgarh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/korba-chhattisgarh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/korba-chhattisgarh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/korba-chhattisgarh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/korba-chhattisgarh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/korba-chhattisgarh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/korba-chhattisgarh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/korba-chhattisgarh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/korba-chhattisgarh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/korba-chhattisgarh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/korba-chhattisgarh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/korba-chhattisgarh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-city-hk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kowloon-city-hk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-city-hk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-city-hk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-city-hk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-city-hk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-city-hk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-city-hk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-city-hk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-city-hk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-city-hk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-city-hk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-city-hk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kowloon-city-hk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasay-national-capital-region-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/pasay-national-capital-region-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasay-national-capital-region-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasay-national-capital-region-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasay-national-capital-region-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasay-national-capital-region-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasay-national-capital-region-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasay-national-capital-region-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasay-national-capital-region-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasay-national-capital-region-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasay-national-capital-region-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasay-national-capital-region-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasay-national-capital-region-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/pasay-national-capital-region-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zurich-ch", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/zurich-ch/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zurich-ch/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zurich-ch/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zurich-ch/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zurich-ch/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zurich-ch/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zurich-ch/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zurich-ch/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zurich-ch/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zurich-ch/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zurich-ch/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zurich-ch/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/zurich-ch/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jhansi-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jhansi-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jhansi-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jhansi-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jhansi-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jhansi-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jhansi-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jhansi-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jhansi-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jhansi-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jhansi-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jhansi-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jhansi-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jhansi-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tseung-kwan-o-sai-kung-district-hk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tseung-kwan-o-sai-kung-district-hk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tseung-kwan-o-sai-kung-district-hk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tseung-kwan-o-sai-kung-district-hk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tseung-kwan-o-sai-kung-district-hk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tseung-kwan-o-sai-kung-district-hk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tseung-kwan-o-sai-kung-district-hk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tseung-kwan-o-sai-kung-district-hk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tseung-kwan-o-sai-kung-district-hk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tseung-kwan-o-sai-kung-district-hk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tseung-kwan-o-sai-kung-district-hk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tseung-kwan-o-sai-kung-district-hk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tseung-kwan-o-sai-kung-district-hk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tseung-kwan-o-sai-kung-district-hk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wandsbek-hamburg-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/wandsbek-hamburg-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wandsbek-hamburg-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wandsbek-hamburg-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wandsbek-hamburg-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wandsbek-hamburg-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wandsbek-hamburg-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wandsbek-hamburg-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wandsbek-hamburg-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wandsbek-hamburg-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wandsbek-hamburg-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wandsbek-hamburg-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wandsbek-hamburg-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wandsbek-hamburg-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thoothukudi-tamil-nadu-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/thoothukudi-tamil-nadu-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thoothukudi-tamil-nadu-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thoothukudi-tamil-nadu-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thoothukudi-tamil-nadu-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thoothukudi-tamil-nadu-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thoothukudi-tamil-nadu-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thoothukudi-tamil-nadu-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thoothukudi-tamil-nadu-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thoothukudi-tamil-nadu-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thoothukudi-tamil-nadu-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thoothukudi-tamil-nadu-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thoothukudi-tamil-nadu-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thoothukudi-tamil-nadu-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ballari-karnataka-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ballari-karnataka-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ballari-karnataka-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ballari-karnataka-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ballari-karnataka-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ballari-karnataka-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ballari-karnataka-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ballari-karnataka-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ballari-karnataka-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ballari-karnataka-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ballari-karnataka-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ballari-karnataka-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ballari-karnataka-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ballari-karnataka-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuching-sarawak-my", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kuching-sarawak-my/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuching-sarawak-my/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuching-sarawak-my/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuching-sarawak-my/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuching-sarawak-my/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuching-sarawak-my/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuching-sarawak-my/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuching-sarawak-my/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuching-sarawak-my/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuching-sarawak-my/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuching-sarawak-my/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuching-sarawak-my/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kuching-sarawak-my/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tarlac-city-central-luzon-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tarlac-city-central-luzon-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tarlac-city-central-luzon-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tarlac-city-central-luzon-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tarlac-city-central-luzon-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tarlac-city-central-luzon-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tarlac-city-central-luzon-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tarlac-city-central-luzon-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tarlac-city-central-luzon-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tarlac-city-central-luzon-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tarlac-city-central-luzon-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tarlac-city-central-luzon-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tarlac-city-central-luzon-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tarlac-city-central-luzon-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhagalpur-bihar-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bhagalpur-bihar-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhagalpur-bihar-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhagalpur-bihar-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhagalpur-bihar-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhagalpur-bihar-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhagalpur-bihar-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhagalpur-bihar-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhagalpur-bihar-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhagalpur-bihar-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhagalpur-bihar-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhagalpur-bihar-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhagalpur-bihar-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhagalpur-bihar-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agartala-tripura-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/agartala-tripura-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agartala-tripura-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agartala-tripura-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agartala-tripura-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agartala-tripura-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agartala-tripura-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agartala-tripura-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agartala-tripura-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agartala-tripura-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agartala-tripura-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agartala-tripura-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agartala-tripura-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/agartala-tripura-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-jerusalem-jerusalem-il", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/west-jerusalem-jerusalem-il/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-jerusalem-jerusalem-il/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-jerusalem-jerusalem-il/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-jerusalem-jerusalem-il/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-jerusalem-jerusalem-il/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-jerusalem-jerusalem-il/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-jerusalem-jerusalem-il/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-jerusalem-jerusalem-il/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-jerusalem-jerusalem-il/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-jerusalem-jerusalem-il/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-jerusalem-jerusalem-il/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-jerusalem-jerusalem-il/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/west-jerusalem-jerusalem-il/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallinn-harjumaa-ee", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tallinn-harjumaa-ee/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallinn-harjumaa-ee/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallinn-harjumaa-ee/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallinn-harjumaa-ee/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallinn-harjumaa-ee/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallinn-harjumaa-ee/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallinn-harjumaa-ee/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallinn-harjumaa-ee/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallinn-harjumaa-ee/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallinn-harjumaa-ee/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallinn-harjumaa-ee/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallinn-harjumaa-ee/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tallinn-harjumaa-ee/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windhoek-khomas-region-na", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/windhoek-khomas-region-na/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windhoek-khomas-region-na/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windhoek-khomas-region-na/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windhoek-khomas-region-na/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windhoek-khomas-region-na/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windhoek-khomas-region-na/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windhoek-khomas-region-na/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windhoek-khomas-region-na/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windhoek-khomas-region-na/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windhoek-khomas-region-na/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windhoek-khomas-region-na/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windhoek-khomas-region-na/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/windhoek-khomas-region-na/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bochum-north-rhine-westphalia-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bochum-north-rhine-westphalia-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bochum-north-rhine-westphalia-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bochum-north-rhine-westphalia-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bochum-north-rhine-westphalia-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bochum-north-rhine-westphalia-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bochum-north-rhine-westphalia-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bochum-north-rhine-westphalia-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bochum-north-rhine-westphalia-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bochum-north-rhine-westphalia-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bochum-north-rhine-westphalia-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bochum-north-rhine-westphalia-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bochum-north-rhine-westphalia-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bochum-north-rhine-westphalia-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kakinada-andhra-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kakinada-andhra-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kakinada-andhra-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kakinada-andhra-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kakinada-andhra-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kakinada-andhra-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kakinada-andhra-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kakinada-andhra-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kakinada-andhra-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kakinada-andhra-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kakinada-andhra-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kakinada-andhra-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kakinada-andhra-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kakinada-andhra-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotabato-autonomous-region-in-muslim-mindanao-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cotabato-autonomous-region-in-muslim-mindanao-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotabato-autonomous-region-in-muslim-mindanao-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotabato-autonomous-region-in-muslim-mindanao-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotabato-autonomous-region-in-muslim-mindanao-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotabato-autonomous-region-in-muslim-mindanao-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotabato-autonomous-region-in-muslim-mindanao-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotabato-autonomous-region-in-muslim-mindanao-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotabato-autonomous-region-in-muslim-mindanao-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotabato-autonomous-region-in-muslim-mindanao-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotabato-autonomous-region-in-muslim-mindanao-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotabato-autonomous-region-in-muslim-mindanao-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotabato-autonomous-region-in-muslim-mindanao-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cotabato-autonomous-region-in-muslim-mindanao-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/latur-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/latur-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/latur-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/latur-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/latur-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/latur-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/latur-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/latur-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/latur-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/latur-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/latur-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/latur-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/latur-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/latur-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panihati-west-bengal-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/panihati-west-bengal-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panihati-west-bengal-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panihati-west-bengal-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panihati-west-bengal-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panihati-west-bengal-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panihati-west-bengal-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panihati-west-bengal-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panihati-west-bengal-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panihati-west-bengal-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panihati-west-bengal-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panihati-west-bengal-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panihati-west-bengal-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panihati-west-bengal-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/utrecht-nl", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/utrecht-nl/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/utrecht-nl/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/utrecht-nl/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/utrecht-nl/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/utrecht-nl/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/utrecht-nl/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/utrecht-nl/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/utrecht-nl/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/utrecht-nl/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/utrecht-nl/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/utrecht-nl/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/utrecht-nl/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/utrecht-nl/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajamahendravaram-andhra-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rajamahendravaram-andhra-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajamahendravaram-andhra-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajamahendravaram-andhra-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajamahendravaram-andhra-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajamahendravaram-andhra-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajamahendravaram-andhra-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajamahendravaram-andhra-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajamahendravaram-andhra-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajamahendravaram-andhra-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajamahendravaram-andhra-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajamahendravaram-andhra-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajamahendravaram-andhra-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rajamahendravaram-andhra-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhule-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dhule-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhule-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhule-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhule-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhule-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhule-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhule-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhule-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhule-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhule-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhule-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhule-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dhule-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohtak-haryana-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rohtak-haryana-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohtak-haryana-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohtak-haryana-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohtak-haryana-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohtak-haryana-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohtak-haryana-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohtak-haryana-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohtak-haryana-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohtak-haryana-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohtak-haryana-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohtak-haryana-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohtak-haryana-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rohtak-haryana-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahilyanagar-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ahilyanagar-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahilyanagar-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahilyanagar-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahilyanagar-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahilyanagar-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahilyanagar-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahilyanagar-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahilyanagar-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahilyanagar-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahilyanagar-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahilyanagar-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahilyanagar-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ahilyanagar-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kollam-kerala-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kollam-kerala-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kollam-kerala-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kollam-kerala-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kollam-kerala-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kollam-kerala-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kollam-kerala-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kollam-kerala-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kollam-kerala-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kollam-kerala-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kollam-kerala-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kollam-kerala-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kollam-kerala-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kollam-kerala-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilaspur-chhattisgarh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bilaspur-chhattisgarh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilaspur-chhattisgarh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilaspur-chhattisgarh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilaspur-chhattisgarh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilaspur-chhattisgarh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilaspur-chhattisgarh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilaspur-chhattisgarh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilaspur-chhattisgarh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilaspur-chhattisgarh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilaspur-chhattisgarh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilaspur-chhattisgarh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilaspur-chhattisgarh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bilaspur-chhattisgarh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malabon-national-capital-region-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/malabon-national-capital-region-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malabon-national-capital-region-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malabon-national-capital-region-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malabon-national-capital-region-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malabon-national-capital-region-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malabon-national-capital-region-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malabon-national-capital-region-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malabon-national-capital-region-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malabon-national-capital-region-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malabon-national-capital-region-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malabon-national-capital-region-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malabon-national-capital-region-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malabon-national-capital-region-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malmo-skane-se", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/malmo-skane-se/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malmo-skane-se/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malmo-skane-se/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malmo-skane-se/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malmo-skane-se/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malmo-skane-se/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malmo-skane-se/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malmo-skane-se/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malmo-skane-se/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malmo-skane-se/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malmo-skane-se/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malmo-skane-se/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malmo-skane-se/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wuppertal-north-rhine-westphalia-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/wuppertal-north-rhine-westphalia-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wuppertal-north-rhine-westphalia-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wuppertal-north-rhine-westphalia-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wuppertal-north-rhine-westphalia-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wuppertal-north-rhine-westphalia-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wuppertal-north-rhine-westphalia-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wuppertal-north-rhine-westphalia-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wuppertal-north-rhine-westphalia-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wuppertal-north-rhine-westphalia-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wuppertal-north-rhine-westphalia-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wuppertal-north-rhine-westphalia-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wuppertal-north-rhine-westphalia-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wuppertal-north-rhine-westphalia-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maseru-maseru-district-ls", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/maseru-maseru-district-ls/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maseru-maseru-district-ls/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maseru-maseru-district-ls/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maseru-maseru-district-ls/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maseru-maseru-district-ls/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maseru-maseru-district-ls/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maseru-maseru-district-ls/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maseru-maseru-district-ls/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maseru-maseru-district-ls/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maseru-maseru-district-ls/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maseru-maseru-district-ls/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maseru-maseru-district-ls/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/maseru-maseru-district-ls/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilwara-rajasthan-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bhilwara-rajasthan-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilwara-rajasthan-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilwara-rajasthan-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilwara-rajasthan-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilwara-rajasthan-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilwara-rajasthan-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilwara-rajasthan-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilwara-rajasthan-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilwara-rajasthan-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilwara-rajasthan-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilwara-rajasthan-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilwara-rajasthan-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bhilwara-rajasthan-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-del-monte-central-luzon-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/san-jose-del-monte-central-luzon-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-del-monte-central-luzon-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-del-monte-central-luzon-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-del-monte-central-luzon-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-del-monte-central-luzon-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-del-monte-central-luzon-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-del-monte-central-luzon-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-del-monte-central-luzon-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-del-monte-central-luzon-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-del-monte-central-luzon-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-del-monte-central-luzon-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-del-monte-central-luzon-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-jose-del-monte-central-luzon-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacoor-calabarzon-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bacoor-calabarzon-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacoor-calabarzon-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacoor-calabarzon-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacoor-calabarzon-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacoor-calabarzon-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacoor-calabarzon-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacoor-calabarzon-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacoor-calabarzon-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacoor-calabarzon-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacoor-calabarzon-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacoor-calabarzon-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacoor-calabarzon-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bacoor-calabarzon-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brahmapur-odisha-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/brahmapur-odisha-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brahmapur-odisha-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brahmapur-odisha-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brahmapur-odisha-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brahmapur-odisha-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brahmapur-odisha-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brahmapur-odisha-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brahmapur-odisha-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brahmapur-odisha-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brahmapur-odisha-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brahmapur-odisha-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brahmapur-odisha-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/brahmapur-odisha-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarpur-bihar-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/muzaffarpur-bihar-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarpur-bihar-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarpur-bihar-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarpur-bihar-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarpur-bihar-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarpur-bihar-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarpur-bihar-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarpur-bihar-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarpur-bihar-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarpur-bihar-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarpur-bihar-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarpur-bihar-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarpur-bihar-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/punasa-madhya-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/punasa-madhya-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/punasa-madhya-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/punasa-madhya-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/punasa-madhya-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/punasa-madhya-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/punasa-madhya-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/punasa-madhya-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/punasa-madhya-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/punasa-madhya-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/punasa-madhya-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/punasa-madhya-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/punasa-madhya-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/punasa-madhya-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarnagar-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/muzaffarnagar-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarnagar-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarnagar-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarnagar-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarnagar-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarnagar-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarnagar-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarnagar-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarnagar-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarnagar-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarnagar-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarnagar-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/muzaffarnagar-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-calabarzon-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/san-pedro-calabarzon-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-calabarzon-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-calabarzon-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-calabarzon-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-calabarzon-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-calabarzon-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-calabarzon-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-calabarzon-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-calabarzon-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-calabarzon-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-calabarzon-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-calabarzon-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pedro-calabarzon-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/avadi-tamil-nadu-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/avadi-tamil-nadu-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/avadi-tamil-nadu-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/avadi-tamil-nadu-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/avadi-tamil-nadu-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/avadi-tamil-nadu-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/avadi-tamil-nadu-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/avadi-tamil-nadu-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/avadi-tamil-nadu-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/avadi-tamil-nadu-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/avadi-tamil-nadu-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/avadi-tamil-nadu-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/avadi-tamil-nadu-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/avadi-tamil-nadu-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kadapa-andhra-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kadapa-andhra-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kadapa-andhra-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kadapa-andhra-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kadapa-andhra-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kadapa-andhra-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kadapa-andhra-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kadapa-andhra-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kadapa-andhra-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kadapa-andhra-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kadapa-andhra-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kadapa-andhra-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kadapa-andhra-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kadapa-andhra-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabanatuan-city-central-luzon-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cabanatuan-city-central-luzon-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabanatuan-city-central-luzon-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabanatuan-city-central-luzon-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabanatuan-city-central-luzon-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabanatuan-city-central-luzon-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabanatuan-city-central-luzon-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabanatuan-city-central-luzon-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabanatuan-city-central-luzon-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabanatuan-city-central-luzon-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabanatuan-city-central-luzon-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabanatuan-city-central-luzon-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabanatuan-city-central-luzon-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabanatuan-city-central-luzon-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nice-provence-alpes-cote-d-azur-fr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/nice-provence-alpes-cote-d-azur-fr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nice-provence-alpes-cote-d-azur-fr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nice-provence-alpes-cote-d-azur-fr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nice-provence-alpes-cote-d-azur-fr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nice-provence-alpes-cote-d-azur-fr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nice-provence-alpes-cote-d-azur-fr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nice-provence-alpes-cote-d-azur-fr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nice-provence-alpes-cote-d-azur-fr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nice-provence-alpes-cote-d-azur-fr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nice-provence-alpes-cote-d-azur-fr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nice-provence-alpes-cote-d-azur-fr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nice-provence-alpes-cote-d-azur-fr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nice-provence-alpes-cote-d-azur-fr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-northern-mindanao-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/iligan-northern-mindanao-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-northern-mindanao-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-northern-mindanao-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-northern-mindanao-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-northern-mindanao-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-northern-mindanao-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-northern-mindanao-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-northern-mindanao-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-northern-mindanao-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-northern-mindanao-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-northern-mindanao-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-northern-mindanao-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-northern-mindanao-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kukatpally-telangana-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kukatpally-telangana-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kukatpally-telangana-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kukatpally-telangana-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kukatpally-telangana-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kukatpally-telangana-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kukatpally-telangana-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kukatpally-telangana-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kukatpally-telangana-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kukatpally-telangana-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kukatpally-telangana-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kukatpally-telangana-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kukatpally-telangana-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kukatpally-telangana-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kamarhati-west-bengal-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kamarhati-west-bengal-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kamarhati-west-bengal-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kamarhati-west-bengal-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kamarhati-west-bengal-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kamarhati-west-bengal-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kamarhati-west-bengal-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kamarhati-west-bengal-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kamarhati-west-bengal-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kamarhati-west-bengal-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kamarhati-west-bengal-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kamarhati-west-bengal-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kamarhati-west-bengal-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kamarhati-west-bengal-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bielefeld-north-rhine-westphalia-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bielefeld-north-rhine-westphalia-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bielefeld-north-rhine-westphalia-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bielefeld-north-rhine-westphalia-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bielefeld-north-rhine-westphalia-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bielefeld-north-rhine-westphalia-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bielefeld-north-rhine-westphalia-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bielefeld-north-rhine-westphalia-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bielefeld-north-rhine-westphalia-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bielefeld-north-rhine-westphalia-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bielefeld-north-rhine-westphalia-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bielefeld-north-rhine-westphalia-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bielefeld-north-rhine-westphalia-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bielefeld-north-rhine-westphalia-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kwai-chung-kwai-tsing-district-hk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kwai-chung-kwai-tsing-district-hk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kwai-chung-kwai-tsing-district-hk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kwai-chung-kwai-tsing-district-hk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kwai-chung-kwai-tsing-district-hk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kwai-chung-kwai-tsing-district-hk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kwai-chung-kwai-tsing-district-hk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kwai-chung-kwai-tsing-district-hk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kwai-chung-kwai-tsing-district-hk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kwai-chung-kwai-tsing-district-hk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kwai-chung-kwai-tsing-district-hk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kwai-chung-kwai-tsing-district-hk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kwai-chung-kwai-tsing-district-hk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kwai-chung-kwai-tsing-district-hk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaue-city-central-visayas-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mandaue-city-central-visayas-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaue-city-central-visayas-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaue-city-central-visayas-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaue-city-central-visayas-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaue-city-central-visayas-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaue-city-central-visayas-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaue-city-central-visayas-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaue-city-central-visayas-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaue-city-central-visayas-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaue-city-central-visayas-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaue-city-central-visayas-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaue-city-central-visayas-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mandaue-city-central-visayas-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bonn-north-rhine-westphalia-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bonn-north-rhine-westphalia-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bonn-north-rhine-westphalia-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bonn-north-rhine-westphalia-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bonn-north-rhine-westphalia-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bonn-north-rhine-westphalia-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bonn-north-rhine-westphalia-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bonn-north-rhine-westphalia-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bonn-north-rhine-westphalia-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bonn-north-rhine-westphalia-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bonn-north-rhine-westphalia-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bonn-north-rhine-westphalia-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bonn-north-rhine-westphalia-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bonn-north-rhine-westphalia-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mathura-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mathura-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mathura-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mathura-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mathura-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mathura-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mathura-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mathura-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mathura-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mathura-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mathura-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mathura-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mathura-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mathura-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chanda-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/chanda-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chanda-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chanda-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chanda-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chanda-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chanda-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chanda-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chanda-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chanda-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chanda-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chanda-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chanda-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/chanda-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayapura-karnataka-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/vijayapura-karnataka-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayapura-karnataka-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayapura-karnataka-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayapura-karnataka-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayapura-karnataka-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayapura-karnataka-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayapura-karnataka-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayapura-karnataka-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayapura-karnataka-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayapura-karnataka-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayapura-karnataka-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayapura-karnataka-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vijayapura-karnataka-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nantes-pays-de-la-loire-fr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/nantes-pays-de-la-loire-fr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nantes-pays-de-la-loire-fr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nantes-pays-de-la-loire-fr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nantes-pays-de-la-loire-fr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nantes-pays-de-la-loire-fr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nantes-pays-de-la-loire-fr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nantes-pays-de-la-loire-fr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nantes-pays-de-la-loire-fr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nantes-pays-de-la-loire-fr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nantes-pays-de-la-loire-fr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nantes-pays-de-la-loire-fr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nantes-pays-de-la-loire-fr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nantes-pays-de-la-loire-fr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/espoo-uusimaa-fi", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/espoo-uusimaa-fi/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/espoo-uusimaa-fi/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/espoo-uusimaa-fi/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/espoo-uusimaa-fi/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/espoo-uusimaa-fi/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/espoo-uusimaa-fi/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/espoo-uusimaa-fi/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/espoo-uusimaa-fi/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/espoo-uusimaa-fi/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/espoo-uusimaa-fi/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/espoo-uusimaa-fi/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/espoo-uusimaa-fi/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/espoo-uusimaa-fi/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivamogga-karnataka-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/shivamogga-karnataka-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivamogga-karnataka-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivamogga-karnataka-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivamogga-karnataka-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivamogga-karnataka-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivamogga-karnataka-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivamogga-karnataka-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivamogga-karnataka-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivamogga-karnataka-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivamogga-karnataka-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivamogga-karnataka-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivamogga-karnataka-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shivamogga-karnataka-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alwar-rajasthan-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/alwar-rajasthan-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alwar-rajasthan-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alwar-rajasthan-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alwar-rajasthan-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alwar-rajasthan-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alwar-rajasthan-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alwar-rajasthan-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alwar-rajasthan-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alwar-rajasthan-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alwar-rajasthan-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alwar-rajasthan-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alwar-rajasthan-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/alwar-rajasthan-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shahjanpur-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/shahjanpur-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shahjanpur-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shahjanpur-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shahjanpur-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shahjanpur-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shahjanpur-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shahjanpur-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shahjanpur-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shahjanpur-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shahjanpur-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shahjanpur-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shahjanpur-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/shahjanpur-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/junagadh-gujarat-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/junagadh-gujarat-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/junagadh-gujarat-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/junagadh-gujarat-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/junagadh-gujarat-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/junagadh-gujarat-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/junagadh-gujarat-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/junagadh-gujarat-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/junagadh-gujarat-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/junagadh-gujarat-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/junagadh-gujarat-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/junagadh-gujarat-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/junagadh-gujarat-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/junagadh-gujarat-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tsuen-wan-hk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tsuen-wan-hk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tsuen-wan-hk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tsuen-wan-hk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tsuen-wan-hk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tsuen-wan-hk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tsuen-wan-hk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tsuen-wan-hk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tsuen-wan-hk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tsuen-wan-hk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tsuen-wan-hk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tsuen-wan-hk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tsuen-wan-hk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tsuen-wan-hk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marne-la-vallee-ile-de-france-fr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/marne-la-vallee-ile-de-france-fr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marne-la-vallee-ile-de-france-fr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marne-la-vallee-ile-de-france-fr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marne-la-vallee-ile-de-france-fr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marne-la-vallee-ile-de-france-fr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marne-la-vallee-ile-de-france-fr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marne-la-vallee-ile-de-france-fr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marne-la-vallee-ile-de-france-fr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marne-la-vallee-ile-de-france-fr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marne-la-vallee-ile-de-france-fr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marne-la-vallee-ile-de-france-fr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marne-la-vallee-ile-de-france-fr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marne-la-vallee-ile-de-france-fr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-delhi-delhi-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/new-delhi-delhi-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-delhi-delhi-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-delhi-delhi-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-delhi-delhi-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-delhi-delhi-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-delhi-delhi-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-delhi-delhi-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-delhi-delhi-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-delhi-delhi-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-delhi-delhi-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-delhi-delhi-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-delhi-delhi-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/new-delhi-delhi-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thessaloniki-central-macedonia-gr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/thessaloniki-central-macedonia-gr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thessaloniki-central-macedonia-gr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thessaloniki-central-macedonia-gr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thessaloniki-central-macedonia-gr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thessaloniki-central-macedonia-gr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thessaloniki-central-macedonia-gr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thessaloniki-central-macedonia-gr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thessaloniki-central-macedonia-gr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thessaloniki-central-macedonia-gr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thessaloniki-central-macedonia-gr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thessaloniki-central-macedonia-gr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thessaloniki-central-macedonia-gr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thessaloniki-central-macedonia-gr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thrissur-kerala-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/thrissur-kerala-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thrissur-kerala-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thrissur-kerala-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thrissur-kerala-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thrissur-kerala-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thrissur-kerala-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thrissur-kerala-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thrissur-kerala-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thrissur-kerala-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thrissur-kerala-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thrissur-kerala-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thrissur-kerala-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thrissur-kerala-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-nord-hamburg-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hamburg-nord-hamburg-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-nord-hamburg-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-nord-hamburg-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-nord-hamburg-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-nord-hamburg-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-nord-hamburg-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-nord-hamburg-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-nord-hamburg-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-nord-hamburg-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-nord-hamburg-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-nord-hamburg-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-nord-hamburg-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-nord-hamburg-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-city-soccsksargen-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/iligan-city-soccsksargen-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-city-soccsksargen-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-city-soccsksargen-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-city-soccsksargen-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-city-soccsksargen-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-city-soccsksargen-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-city-soccsksargen-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-city-soccsksargen-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-city-soccsksargen-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-city-soccsksargen-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-city-soccsksargen-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-city-soccsksargen-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/iligan-city-soccsksargen-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizamabad-telangana-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/nizamabad-telangana-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizamabad-telangana-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizamabad-telangana-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizamabad-telangana-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizamabad-telangana-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizamabad-telangana-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizamabad-telangana-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizamabad-telangana-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizamabad-telangana-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizamabad-telangana-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizamabad-telangana-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizamabad-telangana-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/nizamabad-telangana-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/butuan-caraga-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/butuan-caraga-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/butuan-caraga-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/butuan-caraga-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/butuan-caraga-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/butuan-caraga-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/butuan-caraga-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/butuan-caraga-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/butuan-caraga-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/butuan-caraga-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/butuan-caraga-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/butuan-caraga-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/butuan-caraga-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/butuan-caraga-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabuyao-calabarzon-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cabuyao-calabarzon-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabuyao-calabarzon-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabuyao-calabarzon-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabuyao-calabarzon-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabuyao-calabarzon-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabuyao-calabarzon-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabuyao-calabarzon-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabuyao-calabarzon-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabuyao-calabarzon-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabuyao-calabarzon-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabuyao-calabarzon-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabuyao-calabarzon-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cabuyao-calabarzon-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munster-north-rhine-westphalia-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/munster-north-rhine-westphalia-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munster-north-rhine-westphalia-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munster-north-rhine-westphalia-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munster-north-rhine-westphalia-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munster-north-rhine-westphalia-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munster-north-rhine-westphalia-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munster-north-rhine-westphalia-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munster-north-rhine-westphalia-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munster-north-rhine-westphalia-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munster-north-rhine-westphalia-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munster-north-rhine-westphalia-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munster-north-rhine-westphalia-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/munster-north-rhine-westphalia-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mannheim-baden-wurttemberg-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mannheim-baden-wurttemberg-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mannheim-baden-wurttemberg-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mannheim-baden-wurttemberg-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mannheim-baden-wurttemberg-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mannheim-baden-wurttemberg-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mannheim-baden-wurttemberg-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mannheim-baden-wurttemberg-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mannheim-baden-wurttemberg-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mannheim-baden-wurttemberg-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mannheim-baden-wurttemberg-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mannheim-baden-wurttemberg-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mannheim-baden-wurttemberg-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mannheim-baden-wurttemberg-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tumkur-karnataka-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tumkur-karnataka-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tumkur-karnataka-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tumkur-karnataka-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tumkur-karnataka-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tumkur-karnataka-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tumkur-karnataka-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tumkur-karnataka-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tumkur-karnataka-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tumkur-karnataka-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tumkur-karnataka-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tumkur-karnataka-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tumkur-karnataka-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tumkur-karnataka-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/parbhani-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/parbhani-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/parbhani-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/parbhani-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/parbhani-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/parbhani-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/parbhani-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/parbhani-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/parbhani-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/parbhani-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/parbhani-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/parbhani-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/parbhani-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/parbhani-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hisar-haryana-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hisar-haryana-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hisar-haryana-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hisar-haryana-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hisar-haryana-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hisar-haryana-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hisar-haryana-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hisar-haryana-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hisar-haryana-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hisar-haryana-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hisar-haryana-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hisar-haryana-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hisar-haryana-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hisar-haryana-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/firozabad-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/firozabad-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/firozabad-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/firozabad-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/firozabad-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/firozabad-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/firozabad-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/firozabad-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/firozabad-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/firozabad-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/firozabad-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/firozabad-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/firozabad-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/firozabad-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kulti-west-bengal-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kulti-west-bengal-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kulti-west-bengal-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kulti-west-bengal-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kulti-west-bengal-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kulti-west-bengal-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kulti-west-bengal-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kulti-west-bengal-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kulti-west-bengal-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kulti-west-bengal-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kulti-west-bengal-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kulti-west-bengal-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kulti-west-bengal-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kulti-west-bengal-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/graz-styria-at", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/graz-styria-at/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/graz-styria-at/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/graz-styria-at/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/graz-styria-at/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/graz-styria-at/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/graz-styria-at/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/graz-styria-at/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/graz-styria-at/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/graz-styria-at/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/graz-styria-at/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/graz-styria-at/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/graz-styria-at/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/graz-styria-at/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karnal-haryana-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/karnal-haryana-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karnal-haryana-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karnal-haryana-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karnal-haryana-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karnal-haryana-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karnal-haryana-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karnal-haryana-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karnal-haryana-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karnal-haryana-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karnal-haryana-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karnal-haryana-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karnal-haryana-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karnal-haryana-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barddhaman-west-bengal-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/barddhaman-west-bengal-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barddhaman-west-bengal-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barddhaman-west-bengal-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barddhaman-west-bengal-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barddhaman-west-bengal-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barddhaman-west-bengal-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barddhaman-west-bengal-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barddhaman-west-bengal-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barddhaman-west-bengal-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barddhaman-west-bengal-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barddhaman-west-bengal-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barddhaman-west-bengal-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barddhaman-west-bengal-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-mitte-hamburg-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/hamburg-mitte-hamburg-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-mitte-hamburg-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-mitte-hamburg-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-mitte-hamburg-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-mitte-hamburg-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-mitte-hamburg-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-mitte-hamburg-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-mitte-hamburg-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-mitte-hamburg-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-mitte-hamburg-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-mitte-hamburg-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-mitte-hamburg-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/hamburg-mitte-hamburg-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/augsburg-bavaria-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/augsburg-bavaria-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/augsburg-bavaria-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/augsburg-bavaria-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/augsburg-bavaria-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/augsburg-bavaria-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/augsburg-bavaria-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/augsburg-bavaria-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/augsburg-bavaria-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/augsburg-bavaria-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/augsburg-bavaria-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/augsburg-bavaria-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/augsburg-bavaria-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/augsburg-bavaria-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pablo-calabarzon-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/san-pablo-calabarzon-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pablo-calabarzon-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pablo-calabarzon-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pablo-calabarzon-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pablo-calabarzon-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pablo-calabarzon-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pablo-calabarzon-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pablo-calabarzon-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pablo-calabarzon-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pablo-calabarzon-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pablo-calabarzon-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pablo-calabarzon-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/san-pablo-calabarzon-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gundupalaiyam-puducherry-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gundupalaiyam-puducherry-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gundupalaiyam-puducherry-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gundupalaiyam-puducherry-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gundupalaiyam-puducherry-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gundupalaiyam-puducherry-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gundupalaiyam-puducherry-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gundupalaiyam-puducherry-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gundupalaiyam-puducherry-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gundupalaiyam-puducherry-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gundupalaiyam-puducherry-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gundupalaiyam-puducherry-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gundupalaiyam-puducherry-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gundupalaiyam-puducherry-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/binan-calabarzon-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/binan-calabarzon-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/binan-calabarzon-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/binan-calabarzon-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/binan-calabarzon-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/binan-calabarzon-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/binan-calabarzon-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/binan-calabarzon-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/binan-calabarzon-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/binan-calabarzon-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/binan-calabarzon-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/binan-calabarzon-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/binan-calabarzon-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/binan-calabarzon-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santol-central-luzon-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/santol-central-luzon-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santol-central-luzon-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santol-central-luzon-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santol-central-luzon-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santol-central-luzon-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santol-central-luzon-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santol-central-luzon-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santol-central-luzon-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santol-central-luzon-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santol-central-luzon-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santol-central-luzon-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santol-central-luzon-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/santol-central-luzon-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barasat-west-bengal-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/barasat-west-bengal-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barasat-west-bengal-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barasat-west-bengal-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barasat-west-bengal-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barasat-west-bengal-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barasat-west-bengal-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barasat-west-bengal-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barasat-west-bengal-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barasat-west-bengal-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barasat-west-bengal-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barasat-west-bengal-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barasat-west-bengal-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/barasat-west-bengal-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulugu-telangana-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mulugu-telangana-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulugu-telangana-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulugu-telangana-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulugu-telangana-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulugu-telangana-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulugu-telangana-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulugu-telangana-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulugu-telangana-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulugu-telangana-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulugu-telangana-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulugu-telangana-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulugu-telangana-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mulugu-telangana-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bihar-sharif-bihar-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bihar-sharif-bihar-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bihar-sharif-bihar-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bihar-sharif-bihar-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bihar-sharif-bihar-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bihar-sharif-bihar-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bihar-sharif-bihar-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bihar-sharif-bihar-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bihar-sharif-bihar-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bihar-sharif-bihar-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bihar-sharif-bihar-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bihar-sharif-bihar-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bihar-sharif-bihar-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bihar-sharif-bihar-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bali-west-bengal-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bali-west-bengal-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bali-west-bengal-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bali-west-bengal-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bali-west-bengal-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bali-west-bengal-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bali-west-bengal-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bali-west-bengal-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bali-west-bengal-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bali-west-bengal-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bali-west-bengal-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bali-west-bengal-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bali-west-bengal-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bali-west-bengal-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rampur-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rampur-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rampur-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rampur-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rampur-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rampur-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rampur-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rampur-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rampur-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rampur-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rampur-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rampur-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rampur-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rampur-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/darbhanga-bihar-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/darbhanga-bihar-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/darbhanga-bihar-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/darbhanga-bihar-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/darbhanga-bihar-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/darbhanga-bihar-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/darbhanga-bihar-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/darbhanga-bihar-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/darbhanga-bihar-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/darbhanga-bihar-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/darbhanga-bihar-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/darbhanga-bihar-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/darbhanga-bihar-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/darbhanga-bihar-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panipat-haryana-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/panipat-haryana-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panipat-haryana-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panipat-haryana-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panipat-haryana-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panipat-haryana-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panipat-haryana-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panipat-haryana-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panipat-haryana-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panipat-haryana-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panipat-haryana-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panipat-haryana-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panipat-haryana-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/panipat-haryana-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirupati-andhra-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tirupati-andhra-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirupati-andhra-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirupati-andhra-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirupati-andhra-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirupati-andhra-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirupati-andhra-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirupati-andhra-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirupati-andhra-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirupati-andhra-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirupati-andhra-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirupati-andhra-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirupati-andhra-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tirupati-andhra-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bergen-vestland-no", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bergen-vestland-no/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bergen-vestland-no/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bergen-vestland-no/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bergen-vestland-no/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bergen-vestland-no/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bergen-vestland-no/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bergen-vestland-no/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bergen-vestland-no/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bergen-vestland-no/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bergen-vestland-no/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bergen-vestland-no/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bergen-vestland-no/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bergen-vestland-no/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greater-noida-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/greater-noida-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greater-noida-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greater-noida-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greater-noida-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greater-noida-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greater-noida-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greater-noida-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greater-noida-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greater-noida-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greater-noida-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greater-noida-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greater-noida-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/greater-noida-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/noida-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/noida-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/noida-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/noida-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/noida-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/noida-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/noida-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/noida-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/noida-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/noida-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/noida-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/noida-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/noida-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/noida-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aizawl-mizoram-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/aizawl-mizoram-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aizawl-mizoram-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aizawl-mizoram-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aizawl-mizoram-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aizawl-mizoram-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aizawl-mizoram-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aizawl-mizoram-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aizawl-mizoram-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aizawl-mizoram-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aizawl-mizoram-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aizawl-mizoram-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aizawl-mizoram-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aizawl-mizoram-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gandhinagar-gujarat-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gandhinagar-gujarat-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gandhinagar-gujarat-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gandhinagar-gujarat-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gandhinagar-gujarat-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gandhinagar-gujarat-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gandhinagar-gujarat-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gandhinagar-gujarat-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gandhinagar-gujarat-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gandhinagar-gujarat-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gandhinagar-gujarat-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gandhinagar-gujarat-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gandhinagar-gujarat-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gandhinagar-gujarat-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dindigul-tamil-nadu-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dindigul-tamil-nadu-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dindigul-tamil-nadu-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dindigul-tamil-nadu-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dindigul-tamil-nadu-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dindigul-tamil-nadu-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dindigul-tamil-nadu-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dindigul-tamil-nadu-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dindigul-tamil-nadu-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dindigul-tamil-nadu-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dindigul-tamil-nadu-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dindigul-tamil-nadu-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dindigul-tamil-nadu-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dindigul-tamil-nadu-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanjavur-tamil-nadu-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/thanjavur-tamil-nadu-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanjavur-tamil-nadu-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanjavur-tamil-nadu-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanjavur-tamil-nadu-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanjavur-tamil-nadu-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanjavur-tamil-nadu-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanjavur-tamil-nadu-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanjavur-tamil-nadu-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanjavur-tamil-nadu-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanjavur-tamil-nadu-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanjavur-tamil-nadu-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanjavur-tamil-nadu-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/thanjavur-tamil-nadu-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karimnagar-telangana-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/karimnagar-telangana-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karimnagar-telangana-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karimnagar-telangana-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karimnagar-telangana-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karimnagar-telangana-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karimnagar-telangana-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karimnagar-telangana-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karimnagar-telangana-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karimnagar-telangana-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karimnagar-telangana-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karimnagar-telangana-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karimnagar-telangana-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karimnagar-telangana-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dewas-madhya-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/dewas-madhya-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dewas-madhya-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dewas-madhya-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dewas-madhya-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dewas-madhya-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dewas-madhya-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dewas-madhya-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dewas-madhya-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dewas-madhya-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dewas-madhya-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dewas-madhya-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dewas-madhya-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/dewas-madhya-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaunas-lt", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kaunas-lt/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaunas-lt/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaunas-lt/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaunas-lt/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaunas-lt/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaunas-lt/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaunas-lt/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaunas-lt/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaunas-lt/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaunas-lt/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaunas-lt/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaunas-lt/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kaunas-lt/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sonipat-haryana-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sonipat-haryana-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sonipat-haryana-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sonipat-haryana-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sonipat-haryana-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sonipat-haryana-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sonipat-haryana-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sonipat-haryana-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sonipat-haryana-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sonipat-haryana-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sonipat-haryana-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sonipat-haryana-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sonipat-haryana-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sonipat-haryana-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wiesbaden-hesse-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/wiesbaden-hesse-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wiesbaden-hesse-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wiesbaden-hesse-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wiesbaden-hesse-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wiesbaden-hesse-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wiesbaden-hesse-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wiesbaden-hesse-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wiesbaden-hesse-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wiesbaden-hesse-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wiesbaden-hesse-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wiesbaden-hesse-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wiesbaden-hesse-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/wiesbaden-hesse-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ichalkaranji-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ichalkaranji-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ichalkaranji-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ichalkaranji-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ichalkaranji-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ichalkaranji-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ichalkaranji-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ichalkaranji-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ichalkaranji-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ichalkaranji-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ichalkaranji-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ichalkaranji-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ichalkaranji-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ichalkaranji-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marienthal-hamburg-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/marienthal-hamburg-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marienthal-hamburg-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marienthal-hamburg-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marienthal-hamburg-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marienthal-hamburg-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marienthal-hamburg-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marienthal-hamburg-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marienthal-hamburg-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marienthal-hamburg-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marienthal-hamburg-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marienthal-hamburg-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marienthal-hamburg-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marienthal-hamburg-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tin-shui-wai-yuen-long-hk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tin-shui-wai-yuen-long-hk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tin-shui-wai-yuen-long-hk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tin-shui-wai-yuen-long-hk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tin-shui-wai-yuen-long-hk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tin-shui-wai-yuen-long-hk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tin-shui-wai-yuen-long-hk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tin-shui-wai-yuen-long-hk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tin-shui-wai-yuen-long-hk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tin-shui-wai-yuen-long-hk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tin-shui-wai-yuen-long-hk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tin-shui-wai-yuen-long-hk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tin-shui-wai-yuen-long-hk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tin-shui-wai-yuen-long-hk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bathinda-punjab-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bathinda-punjab-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bathinda-punjab-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bathinda-punjab-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bathinda-punjab-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bathinda-punjab-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bathinda-punjab-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bathinda-punjab-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bathinda-punjab-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bathinda-punjab-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bathinda-punjab-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bathinda-punjab-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bathinda-punjab-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bathinda-punjab-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalna-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jalna-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalna-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalna-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalna-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalna-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalna-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalna-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalna-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalna-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalna-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalna-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalna-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jalna-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haifa-il", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/haifa-il/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haifa-il/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haifa-il/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haifa-il/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haifa-il/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haifa-il/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haifa-il/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haifa-il/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haifa-il/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haifa-il/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haifa-il/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haifa-il/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/haifa-il/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arhus-central-jutland-dk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/arhus-central-jutland-dk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arhus-central-jutland-dk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arhus-central-jutland-dk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arhus-central-jutland-dk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arhus-central-jutland-dk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arhus-central-jutland-dk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arhus-central-jutland-dk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arhus-central-jutland-dk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arhus-central-jutland-dk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arhus-central-jutland-dk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arhus-central-jutland-dk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arhus-central-jutland-dk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arhus-central-jutland-dk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karlsruhe-baden-wurttemberg-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/karlsruhe-baden-wurttemberg-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karlsruhe-baden-wurttemberg-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karlsruhe-baden-wurttemberg-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karlsruhe-baden-wurttemberg-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karlsruhe-baden-wurttemberg-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karlsruhe-baden-wurttemberg-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karlsruhe-baden-wurttemberg-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karlsruhe-baden-wurttemberg-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karlsruhe-baden-wurttemberg-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karlsruhe-baden-wurttemberg-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karlsruhe-baden-wurttemberg-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karlsruhe-baden-wurttemberg-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/karlsruhe-baden-wurttemberg-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-moresby-national-capital-pg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/port-moresby-national-capital-pg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-moresby-national-capital-pg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-moresby-national-capital-pg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-moresby-national-capital-pg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-moresby-national-capital-pg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-moresby-national-capital-pg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-moresby-national-capital-pg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-moresby-national-capital-pg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-moresby-national-capital-pg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-moresby-national-capital-pg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-moresby-national-capital-pg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-moresby-national-capital-pg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/port-moresby-national-capital-pg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kirari-sulemannagar-delhi-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kirari-sulemannagar-delhi-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kirari-sulemannagar-delhi-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kirari-sulemannagar-delhi-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kirari-sulemannagar-delhi-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kirari-sulemannagar-delhi-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kirari-sulemannagar-delhi-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kirari-sulemannagar-delhi-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kirari-sulemannagar-delhi-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kirari-sulemannagar-delhi-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kirari-sulemannagar-delhi-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kirari-sulemannagar-delhi-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kirari-sulemannagar-delhi-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kirari-sulemannagar-delhi-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cainta-calabarzon-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/cainta-calabarzon-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cainta-calabarzon-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cainta-calabarzon-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cainta-calabarzon-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cainta-calabarzon-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cainta-calabarzon-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cainta-calabarzon-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cainta-calabarzon-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cainta-calabarzon-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cainta-calabarzon-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cainta-calabarzon-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cainta-calabarzon-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/cainta-calabarzon-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/satna-madhya-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/satna-madhya-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/satna-madhya-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/satna-madhya-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/satna-madhya-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/satna-madhya-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/satna-madhya-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/satna-madhya-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/satna-madhya-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/satna-madhya-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/satna-madhya-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/satna-madhya-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/satna-madhya-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/satna-madhya-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/purnia-bihar-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/purnia-bihar-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/purnia-bihar-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/purnia-bihar-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/purnia-bihar-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/purnia-bihar-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/purnia-bihar-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/purnia-bihar-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/purnia-bihar-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/purnia-bihar-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/purnia-bihar-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/purnia-bihar-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/purnia-bihar-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/purnia-bihar-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imphal-manipur-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/imphal-manipur-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imphal-manipur-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imphal-manipur-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imphal-manipur-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imphal-manipur-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imphal-manipur-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imphal-manipur-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imphal-manipur-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imphal-manipur-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imphal-manipur-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imphal-manipur-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imphal-manipur-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/imphal-manipur-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulu-bedok-sg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ulu-bedok-sg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulu-bedok-sg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulu-bedok-sg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulu-bedok-sg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulu-bedok-sg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulu-bedok-sg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulu-bedok-sg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulu-bedok-sg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulu-bedok-sg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulu-bedok-sg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulu-bedok-sg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulu-bedok-sg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ulu-bedok-sg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bedok-new-town-sg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bedok-new-town-sg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bedok-new-town-sg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bedok-new-town-sg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bedok-new-town-sg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bedok-new-town-sg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bedok-new-town-sg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bedok-new-town-sg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bedok-new-town-sg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bedok-new-town-sg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bedok-new-town-sg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bedok-new-town-sg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bedok-new-town-sg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bedok-new-town-sg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/strasbourg-grand-est-fr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/strasbourg-grand-est-fr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/strasbourg-grand-est-fr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/strasbourg-grand-est-fr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/strasbourg-grand-est-fr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/strasbourg-grand-est-fr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/strasbourg-grand-est-fr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/strasbourg-grand-est-fr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/strasbourg-grand-est-fr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/strasbourg-grand-est-fr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/strasbourg-grand-est-fr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/strasbourg-grand-est-fr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/strasbourg-grand-est-fr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/strasbourg-grand-est-fr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saugor-madhya-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/saugor-madhya-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saugor-madhya-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saugor-madhya-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saugor-madhya-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saugor-madhya-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saugor-madhya-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saugor-madhya-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saugor-madhya-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saugor-madhya-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saugor-madhya-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saugor-madhya-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saugor-madhya-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/saugor-madhya-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kushinagar-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kushinagar-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kushinagar-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kushinagar-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kushinagar-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kushinagar-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kushinagar-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kushinagar-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kushinagar-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kushinagar-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kushinagar-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kushinagar-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kushinagar-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kushinagar-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tai-po-hk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tai-po-hk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tai-po-hk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tai-po-hk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tai-po-hk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tai-po-hk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tai-po-hk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tai-po-hk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tai-po-hk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tai-po-hk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tai-po-hk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tai-po-hk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tai-po-hk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tai-po-hk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rourkela-odisha-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rourkela-odisha-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rourkela-odisha-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rourkela-odisha-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rourkela-odisha-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rourkela-odisha-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rourkela-odisha-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rourkela-odisha-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rourkela-odisha-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rourkela-odisha-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rourkela-odisha-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rourkela-odisha-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rourkela-odisha-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rourkela-odisha-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baguio-cordillera-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/baguio-cordillera-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baguio-cordillera-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baguio-cordillera-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baguio-cordillera-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baguio-cordillera-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baguio-cordillera-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baguio-cordillera-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baguio-cordillera-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baguio-cordillera-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baguio-cordillera-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baguio-cordillera-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baguio-cordillera-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baguio-cordillera-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ljubljana-si", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ljubljana-si/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ljubljana-si/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ljubljana-si/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ljubljana-si/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ljubljana-si/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ljubljana-si/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ljubljana-si/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ljubljana-si/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ljubljana-si/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ljubljana-si/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ljubljana-si/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ljubljana-si/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ljubljana-si/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gelsenkirchen-north-rhine-westphalia-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gelsenkirchen-north-rhine-westphalia-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gelsenkirchen-north-rhine-westphalia-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gelsenkirchen-north-rhine-westphalia-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gelsenkirchen-north-rhine-westphalia-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gelsenkirchen-north-rhine-westphalia-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gelsenkirchen-north-rhine-westphalia-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gelsenkirchen-north-rhine-westphalia-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gelsenkirchen-north-rhine-westphalia-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gelsenkirchen-north-rhine-westphalia-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gelsenkirchen-north-rhine-westphalia-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gelsenkirchen-north-rhine-westphalia-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gelsenkirchen-north-rhine-westphalia-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gelsenkirchen-north-rhine-westphalia-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malolos-central-luzon-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/malolos-central-luzon-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malolos-central-luzon-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malolos-central-luzon-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malolos-central-luzon-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malolos-central-luzon-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malolos-central-luzon-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malolos-central-luzon-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malolos-central-luzon-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malolos-central-luzon-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malolos-central-luzon-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malolos-central-luzon-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malolos-central-luzon-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/malolos-central-luzon-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eimsbuttel-hamburg-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/eimsbuttel-hamburg-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eimsbuttel-hamburg-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eimsbuttel-hamburg-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eimsbuttel-hamburg-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eimsbuttel-hamburg-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eimsbuttel-hamburg-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eimsbuttel-hamburg-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eimsbuttel-hamburg-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eimsbuttel-hamburg-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eimsbuttel-hamburg-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eimsbuttel-hamburg-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eimsbuttel-hamburg-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/eimsbuttel-hamburg-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durg-chhattisgarh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/durg-chhattisgarh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durg-chhattisgarh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durg-chhattisgarh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durg-chhattisgarh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durg-chhattisgarh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durg-chhattisgarh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durg-chhattisgarh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durg-chhattisgarh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durg-chhattisgarh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durg-chhattisgarh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durg-chhattisgarh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durg-chhattisgarh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/durg-chhattisgarh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sengkang-new-town-sg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/sengkang-new-town-sg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sengkang-new-town-sg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sengkang-new-town-sg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sengkang-new-town-sg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sengkang-new-town-sg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sengkang-new-town-sg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sengkang-new-town-sg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sengkang-new-town-sg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sengkang-new-town-sg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sengkang-new-town-sg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sengkang-new-town-sg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sengkang-new-town-sg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/sengkang-new-town-sg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anantapur-andhra-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/anantapur-andhra-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anantapur-andhra-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anantapur-andhra-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anantapur-andhra-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anantapur-andhra-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anantapur-andhra-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anantapur-andhra-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anantapur-andhra-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anantapur-andhra-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anantapur-andhra-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anantapur-andhra-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anantapur-andhra-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/anantapur-andhra-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-estate-sg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tampines-estate-sg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-estate-sg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-estate-sg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-estate-sg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-estate-sg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-estate-sg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-estate-sg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-estate-sg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-estate-sg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-estate-sg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-estate-sg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-estate-sg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-estate-sg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bordeaux-new-aquitaine-fr", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bordeaux-new-aquitaine-fr/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bordeaux-new-aquitaine-fr/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bordeaux-new-aquitaine-fr/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bordeaux-new-aquitaine-fr/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bordeaux-new-aquitaine-fr/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bordeaux-new-aquitaine-fr/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bordeaux-new-aquitaine-fr/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bordeaux-new-aquitaine-fr/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bordeaux-new-aquitaine-fr/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bordeaux-new-aquitaine-fr/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bordeaux-new-aquitaine-fr/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bordeaux-new-aquitaine-fr/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bordeaux-new-aquitaine-fr/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aachen-north-rhine-westphalia-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/aachen-north-rhine-westphalia-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aachen-north-rhine-westphalia-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aachen-north-rhine-westphalia-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aachen-north-rhine-westphalia-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aachen-north-rhine-westphalia-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aachen-north-rhine-westphalia-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aachen-north-rhine-westphalia-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aachen-north-rhine-westphalia-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aachen-north-rhine-westphalia-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aachen-north-rhine-westphalia-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aachen-north-rhine-westphalia-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aachen-north-rhine-westphalia-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/aachen-north-rhine-westphalia-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gent-flanders-be", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gent-flanders-be/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gent-flanders-be/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gent-flanders-be/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gent-flanders-be/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gent-flanders-be/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gent-flanders-be/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gent-flanders-be/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gent-flanders-be/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gent-flanders-be/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gent-flanders-be/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gent-flanders-be/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gent-flanders-be/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gent-flanders-be/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mantampay-northern-mindanao-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/mantampay-northern-mindanao-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mantampay-northern-mindanao-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mantampay-northern-mindanao-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mantampay-northern-mindanao-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mantampay-northern-mindanao-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mantampay-northern-mindanao-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mantampay-northern-mindanao-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mantampay-northern-mindanao-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mantampay-northern-mindanao-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mantampay-northern-mindanao-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mantampay-northern-mindanao-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mantampay-northern-mindanao-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/mantampay-northern-mindanao-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ratlam-madhya-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ratlam-madhya-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ratlam-madhya-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ratlam-madhya-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ratlam-madhya-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ratlam-madhya-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ratlam-madhya-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ratlam-madhya-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ratlam-madhya-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ratlam-madhya-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ratlam-madhya-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ratlam-madhya-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ratlam-madhya-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ratlam-madhya-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranipet-tamil-nadu-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ranipet-tamil-nadu-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranipet-tamil-nadu-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranipet-tamil-nadu-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranipet-tamil-nadu-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranipet-tamil-nadu-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranipet-tamil-nadu-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranipet-tamil-nadu-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranipet-tamil-nadu-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranipet-tamil-nadu-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranipet-tamil-nadu-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranipet-tamil-nadu-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranipet-tamil-nadu-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ranipet-tamil-nadu-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fanling-north-district-hk", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/fanling-north-district-hk/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fanling-north-district-hk/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fanling-north-district-hk/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fanling-north-district-hk/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fanling-north-district-hk/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fanling-north-district-hk/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fanling-north-district-hk/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fanling-north-district-hk/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fanling-north-district-hk/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fanling-north-district-hk/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fanling-north-district-hk/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fanling-north-district-hk/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/fanling-north-district-hk/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-town-sg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jurong-town-sg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-town-sg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-town-sg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-town-sg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-town-sg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-town-sg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-town-sg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-town-sg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-town-sg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-town-sg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-town-sg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-town-sg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-town-sg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lal-bahadur-nagar-telangana-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/lal-bahadur-nagar-telangana-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lal-bahadur-nagar-telangana-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lal-bahadur-nagar-telangana-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lal-bahadur-nagar-telangana-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lal-bahadur-nagar-telangana-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lal-bahadur-nagar-telangana-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lal-bahadur-nagar-telangana-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lal-bahadur-nagar-telangana-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lal-bahadur-nagar-telangana-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lal-bahadur-nagar-telangana-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lal-bahadur-nagar-telangana-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lal-bahadur-nagar-telangana-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/lal-bahadur-nagar-telangana-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monchengladbach-north-rhine-westphalia-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/monchengladbach-north-rhine-westphalia-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monchengladbach-north-rhine-westphalia-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monchengladbach-north-rhine-westphalia-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monchengladbach-north-rhine-westphalia-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monchengladbach-north-rhine-westphalia-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monchengladbach-north-rhine-westphalia-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monchengladbach-north-rhine-westphalia-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monchengladbach-north-rhine-westphalia-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monchengladbach-north-rhine-westphalia-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monchengladbach-north-rhine-westphalia-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monchengladbach-north-rhine-westphalia-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monchengladbach-north-rhine-westphalia-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/monchengladbach-north-rhine-westphalia-de/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagong-silang-national-capital-region-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bagong-silang-national-capital-region-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagong-silang-national-capital-region-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagong-silang-national-capital-region-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagong-silang-national-capital-region-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagong-silang-national-capital-region-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagong-silang-national-capital-region-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagong-silang-national-capital-region-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagong-silang-national-capital-region-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagong-silang-national-capital-region-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagong-silang-national-capital-region-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagong-silang-national-capital-region-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagong-silang-national-capital-region-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bagong-silang-national-capital-region-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arrah-bihar-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/arrah-bihar-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arrah-bihar-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arrah-bihar-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arrah-bihar-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arrah-bihar-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arrah-bihar-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arrah-bihar-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arrah-bihar-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arrah-bihar-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arrah-bihar-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arrah-bihar-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arrah-bihar-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/arrah-bihar-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampere-pirkanmaa-fi", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tampere-pirkanmaa-fi/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampere-pirkanmaa-fi/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampere-pirkanmaa-fi/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampere-pirkanmaa-fi/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampere-pirkanmaa-fi/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampere-pirkanmaa-fi/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampere-pirkanmaa-fi/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampere-pirkanmaa-fi/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampere-pirkanmaa-fi/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampere-pirkanmaa-fi/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampere-pirkanmaa-fi/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampere-pirkanmaa-fi/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampere-pirkanmaa-fi/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baranagar-west-bengal-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/baranagar-west-bengal-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baranagar-west-bengal-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baranagar-west-bengal-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baranagar-west-bengal-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baranagar-west-bengal-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baranagar-west-bengal-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baranagar-west-bengal-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baranagar-west-bengal-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baranagar-west-bengal-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baranagar-west-bengal-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baranagar-west-bengal-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baranagar-west-bengal-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/baranagar-west-bengal-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marawi-city-autonomous-region-in-muslim-mindanao-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/marawi-city-autonomous-region-in-muslim-mindanao-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marawi-city-autonomous-region-in-muslim-mindanao-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marawi-city-autonomous-region-in-muslim-mindanao-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marawi-city-autonomous-region-in-muslim-mindanao-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marawi-city-autonomous-region-in-muslim-mindanao-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marawi-city-autonomous-region-in-muslim-mindanao-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marawi-city-autonomous-region-in-muslim-mindanao-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marawi-city-autonomous-region-in-muslim-mindanao-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marawi-city-autonomous-region-in-muslim-mindanao-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marawi-city-autonomous-region-in-muslim-mindanao-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marawi-city-autonomous-region-in-muslim-mindanao-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marawi-city-autonomous-region-in-muslim-mindanao-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/marawi-city-autonomous-region-in-muslim-mindanao-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-new-town-sg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tampines-new-town-sg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-new-town-sg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-new-town-sg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-new-town-sg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-new-town-sg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-new-town-sg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-new-town-sg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-new-town-sg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-new-town-sg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-new-town-sg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-new-town-sg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-new-town-sg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tampines-new-town-sg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacloban-eastern-visayas-ph", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/tacloban-eastern-visayas-ph/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacloban-eastern-visayas-ph/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacloban-eastern-visayas-ph/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacloban-eastern-visayas-ph/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacloban-eastern-visayas-ph/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacloban-eastern-visayas-ph/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacloban-eastern-visayas-ph/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacloban-eastern-visayas-ph/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacloban-eastern-visayas-ph/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacloban-eastern-visayas-ph/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacloban-eastern-visayas-ph/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacloban-eastern-visayas-ph/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/tacloban-eastern-visayas-ph/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gajuwaka-andhra-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/gajuwaka-andhra-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gajuwaka-andhra-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gajuwaka-andhra-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gajuwaka-andhra-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gajuwaka-andhra-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gajuwaka-andhra-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gajuwaka-andhra-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gajuwaka-andhra-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gajuwaka-andhra-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gajuwaka-andhra-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gajuwaka-andhra-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gajuwaka-andhra-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/gajuwaka-andhra-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rishon-letsiyyon-central-district-il", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/rishon-letsiyyon-central-district-il/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rishon-letsiyyon-central-district-il/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rishon-letsiyyon-central-district-il/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rishon-letsiyyon-central-district-il/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rishon-letsiyyon-central-district-il/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rishon-letsiyyon-central-district-il/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rishon-letsiyyon-central-district-il/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rishon-letsiyyon-central-district-il/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rishon-letsiyyon-central-district-il/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rishon-letsiyyon-central-district-il/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rishon-letsiyyon-central-district-il/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rishon-letsiyyon-central-district-il/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/rishon-letsiyyon-central-district-il/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etawah-uttar-pradesh-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/etawah-uttar-pradesh-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etawah-uttar-pradesh-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etawah-uttar-pradesh-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etawah-uttar-pradesh-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etawah-uttar-pradesh-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etawah-uttar-pradesh-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etawah-uttar-pradesh-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etawah-uttar-pradesh-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etawah-uttar-pradesh-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etawah-uttar-pradesh-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etawah-uttar-pradesh-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etawah-uttar-pradesh-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/etawah-uttar-pradesh-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/woodlands-sg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/woodlands-sg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/woodlands-sg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/woodlands-sg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/woodlands-sg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/woodlands-sg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/woodlands-sg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/woodlands-sg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/woodlands-sg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/woodlands-sg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/woodlands-sg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/woodlands-sg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/woodlands-sg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/woodlands-sg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-west-sg", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/jurong-west-sg/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-west-sg/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-west-sg/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-west-sg/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-west-sg/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-west-sg/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-west-sg/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-west-sg/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-west-sg/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-west-sg/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-west-sg/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-west-sg/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/jurong-west-sg/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/petah-tiqva-central-district-il", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/petah-tiqva-central-district-il/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/petah-tiqva-central-district-il/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/petah-tiqva-central-district-il/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/petah-tiqva-central-district-il/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/petah-tiqva-central-district-il/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/petah-tiqva-central-district-il/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/petah-tiqva-central-district-il/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/petah-tiqva-central-district-il/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/petah-tiqva-central-district-il/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/petah-tiqva-central-district-il/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/petah-tiqva-central-district-il/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/petah-tiqva-central-district-il/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/petah-tiqva-central-district-il/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambarnath-maharashtra-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/ambarnath-maharashtra-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambarnath-maharashtra-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambarnath-maharashtra-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambarnath-maharashtra-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambarnath-maharashtra-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambarnath-maharashtra-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambarnath-maharashtra-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambarnath-maharashtra-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambarnath-maharashtra-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambarnath-maharashtra-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambarnath-maharashtra-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambarnath-maharashtra-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/ambarnath-maharashtra-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naihati-west-bengal-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/naihati-west-bengal-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naihati-west-bengal-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naihati-west-bengal-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naihati-west-bengal-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naihati-west-bengal-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naihati-west-bengal-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naihati-west-bengal-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naihati-west-bengal-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naihati-west-bengal-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naihati-west-bengal-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naihati-west-bengal-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naihati-west-bengal-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/naihati-west-bengal-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bharatpur-rajasthan-in", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/bharatpur-rajasthan-in/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bharatpur-rajasthan-in/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bharatpur-rajasthan-in/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bharatpur-rajasthan-in/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bharatpur-rajasthan-in/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bharatpur-rajasthan-in/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bharatpur-rajasthan-in/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bharatpur-rajasthan-in/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bharatpur-rajasthan-in/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bharatpur-rajasthan-in/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bharatpur-rajasthan-in/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bharatpur-rajasthan-in/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/bharatpur-rajasthan-in/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vantaa-uusimaa-fi", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/vantaa-uusimaa-fi/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vantaa-uusimaa-fi/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vantaa-uusimaa-fi/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vantaa-uusimaa-fi/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vantaa-uusimaa-fi/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vantaa-uusimaa-fi/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vantaa-uusimaa-fi/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vantaa-uusimaa-fi/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vantaa-uusimaa-fi/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vantaa-uusimaa-fi/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vantaa-uusimaa-fi/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vantaa-uusimaa-fi/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/vantaa-uusimaa-fi/december", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kiel-schleswig-holstein-de", + "changefreq": "daily", + "priority": "0.8" + }, + { + "path": "/climate/kiel-schleswig-holstein-de/records", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kiel-schleswig-holstein-de/january", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kiel-schleswig-holstein-de/february", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kiel-schleswig-holstein-de/march", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kiel-schleswig-holstein-de/april", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kiel-schleswig-holstein-de/may", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kiel-schleswig-holstein-de/june", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kiel-schleswig-holstein-de/july", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kiel-schleswig-holstein-de/august", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kiel-schleswig-holstein-de/september", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kiel-schleswig-holstein-de/october", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kiel-schleswig-holstein-de/november", + "changefreq": "monthly", + "priority": "0.5" + }, + { + "path": "/climate/kiel-schleswig-holstein-de/december", + "changefreq": "monthly", + "priority": "0.5" + } +] diff --git a/frontend/tests/integration/test_contract.py b/frontend/tests/integration/test_contract.py new file mode 100644 index 0000000..7f84065 --- /dev/null +++ b/frontend/tests/integration/test_contract.py @@ -0,0 +1,72 @@ +"""Integration tier: run the SSR app against a REAL backend container (pulled by +scripts/backend-for-tests.sh). Exercises the actual HTTP contract instead of backend +source — catches drift the unit fixtures can't. Asserts the contract (reachability, +version negotiation, payload shape, SSR renders 200), not exact climate numbers. +Skips automatically when Docker/the image isn't available (see tests/conftest.py). +""" +import json +import os + +import httpx +import pytest + +B = "/thermograph" +SLUG = "london-england-gb" +MONTH = "july" +API = "v2" # frontend api_client.API_VERSION +_FIXTURES = os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), "fixtures") + + +def _live(backend_service, path): + # The backend container runs THERMOGRAPH_BASE=/, so its API is at /api//... + return httpx.get(f"{backend_service}{path}", timeout=40.0) + + +def test_backend_version_is_compatible(backend_service): + """The live backend advertises a contract the frontend (API_VERSION=v2) can talk to.""" + v = _live(backend_service, "/api/version").json() + assert v["backend_version"] == "2", v # frontend targets /api/v2 + assert int(v["min_frontend"]) <= 2, v # backend still accepts this frontend + + +@pytest.mark.parametrize("ep", ["home", "sitemap", "hub", "city", "month", "records"]) +def test_fixture_shapes_match_live_backend(backend_service, ep): + """The committed unit fixtures still match the live payload shapes — proves the two + tiers can't silently diverge. Compares top-level structure, not values.""" + paths = { + "home": f"/api/{API}/content/home", + "sitemap": f"/api/{API}/content/sitemap", + "hub": f"/api/{API}/content/hub", + "city": f"/api/{API}/content/city/{SLUG}", + "month": f"/api/{API}/content/city/{SLUG}/month/{MONTH}", + "records": f"/api/{API}/content/city/{SLUG}/records", + } + live = _live(backend_service, paths[ep]) + assert live.status_code == 200, live.text[:200] + live_json = live.json() + with open(os.path.join(_FIXTURES, f"{ep}.json"), encoding="utf-8") as fh: + fixture = json.load(fh) + if isinstance(fixture, dict): + assert set(live_json.keys()) == set(fixture.keys()), ( + f"{ep}: live keys {sorted(live_json)} != fixture keys {sorted(fixture)} " + "— run scripts/capture-fixtures.sh") + else: + assert type(live_json) is type(fixture) + + +def test_unknown_city_404(backend_service): + assert _live(backend_service, f"/api/{API}/content/city/nope-not-a-city").status_code == 404 + + +@pytest.mark.parametrize("path", ["/", "/climate", f"/climate/{SLUG}", f"/climate/{SLUG}/{MONTH}", + f"/climate/{SLUG}/records", "/sitemap.xml", "/robots.txt"]) +def test_ssr_renders_against_live_backend(live_client, path): + """The SSR app rendering each page end-to-end against the live backend proves every + field content.py reads is actually present in the real payload.""" + r = live_client.get(f"{B}{path}") + assert r.status_code == 200, f"{path} -> {r.status_code}" + assert "__ORIGIN__" not in r.text + + +def test_ssr_unknown_city_404(live_client): + assert live_client.get(f"{B}/climate/nope-not-a-city").status_code == 404 diff --git a/frontend/tests/test_content.py b/frontend/tests/test_content.py deleted file mode 100644 index 2a0064a..0000000 --- a/frontend/tests/test_content.py +++ /dev/null @@ -1,442 +0,0 @@ -"""Tests for the SSR content pages, ported from backend/tests/web/test_content.py -(repo-split Stage 3). The `client` fixture (conftest.py) fakes api_client by -calling the real backend payload builders against the same synthetic history -fixture backend/tests uses, so assertions here and there agree on the same -numbers. Tests that exercise backend-only concerns (indexnow submission, the -/api/v2/content/* JSON endpoints themselves, data-layer helpers like -cities.title_name) stay in backend/tests -- this file covers only what the SSR -rendering layer (content.py + format.py) does with that data. -""" -import math -import os -import re - -import httpx -import pytest - -import api_client -import content -import format as fmt - -from conftest import B, SLUG - - -def test_robots_txt(client): - r = client.get(f"{B}/robots.txt") - assert r.status_code == 200 - assert "Sitemap:" in r.text and "/sitemap.xml" in r.text - assert "Disallow: /thermograph/api/" in r.text - - -def test_sitemap_lists_city_urls(client): - r = client.get(f"{B}/sitemap.xml") - assert r.status_code == 200 - assert "" in r.text - assert f"/climate/{SLUG}/july" in r.text - assert f"/climate/{SLUG}/records" in r.text - - -def test_city_page_renders_stats_in_html(client): - r = client.get(f"{B}/climate/{SLUG}") - assert r.status_code == 200 - b = r.text - assert "London" in b and "climate" in b.lower() - assert 'rel="canonical"' in b and f"/climate/{SLUG}" in b - assert '"@type":"Dataset"' in b - assert "average temperatures by month" in b.lower() - assert re.search(r"-?\d+°C", b) - - -def _jsonld_breadcrumbs(html: str) -> list[dict]: - import json - m = re.search(r'', html, re.S) - assert m, "no JSON-LD block on page" - graph = json.loads(m.group(1))["@graph"] - return [n for n in graph if n["@type"] == "BreadcrumbList"] - - -@pytest.mark.parametrize("path", [f"/climate/{SLUG}", f"/climate/{SLUG}/records"]) -def test_breadcrumb_jsonld_items_valid_for_google(client, path): - (bc,) = _jsonld_breadcrumbs(client.get(B + path).text) - els = bc["itemListElement"] - assert [e["position"] for e in els] == list(range(1, len(els) + 1)) - for e in els[:-1]: - assert e["item"].startswith("http"), f"crumb {e['name']!r} missing item" - - -def test_jsonld_url_uses_the_ssr_requests_own_origin(client): - # A regression guard for a real bug caught during the port: the jsonld - # "url" field must reflect the browser-facing request the SSR app - # received, not the internal backend-call's own origin. - for path in (f"/climate/{SLUG}", f"/climate/{SLUG}/records"): - html = client.get(B + path).text - m = re.search(r'"url":"(http://testserver[^"]*)"', html) - assert m, f"{path}: jsonld url missing or not on the request's own origin" - - -def test_city_404(client): - assert client.get(f"{B}/climate/nope-not-a-city").status_code == 404 - - -def _unreachable(*_a, **_k): - req = httpx.Request("GET", "http://backend.invalid/x") - raise httpx.ConnectError("connection refused", request=req) - - -@pytest.mark.parametrize("path, attr", [ - (f"/climate/{SLUG}", "city"), - (f"/climate/{SLUG}/july", "city_month"), - (f"/climate/{SLUG}/records", "city_records"), - ("/climate", "hub"), - ("/", "home"), - ("/sitemap.xml", "sitemap"), -]) -def test_backend_unreachable_maps_to_503(client, monkeypatch, path, attr): - """A backend that's down/timing out (httpx.ConnectError, TimeoutException, - ...) never raises httpx.HTTPStatusError -- it doesn't even get a response - -- so it must be caught separately from the 404/503 status-code passthrough - or it escapes as a raw framework 500 instead of a clean 503.""" - monkeypatch.setattr(api_client, attr, _unreachable) - assert client.get(f"{B}{path}").status_code == 503 - - -def test_curated_event_renders(client): - b = client.get(f"{B}/climate/new-orleans-louisiana-us").text - assert "Notable weather in New Orleans" in b - assert "Hurricane Katrina" in b - - -def test_uncurated_city_has_no_event_section(client): - b = client.get(f"{B}/climate/shanghai-cn").text - assert "city-event" not in b - - -def test_city_travel_cta_prefills_compare(client): - b = client.get(f"{B}/climate/{SLUG}").text - assert "Thinking of visiting" in b - assert "/compare#loc=" in b - - -def test_month_and_records(client): - assert client.get(f"{B}/climate/{SLUG}/july").status_code == 200 - assert client.get(f"{B}/climate/{SLUG}/records").status_code == 200 - assert client.get(f"{B}/climate/{SLUG}/notamonth").status_code == 404 - - -def test_month_records_cover_every_metric_high_and_low(client): - b = client.get(f"{B}/climate/{SLUG}/july").text - assert "July records" in b - for label in ("High", "Low", "Precip"): - assert f'class="rc-metric">{label}<' in b - n = b.count('rc-row rc-high') - assert n >= 3 and b.count('rc-row rc-low') == n - assert "Highest" in b and "Lowest" in b - assert "Wettest" in b and "Driest" in b - - -def test_records_page_has_monthly_and_seasonal(client): - b = client.get(f"{B}/climate/{SLUG}/records").text - assert "Records by month" in b - for month in ("January", "July", "December"): - assert month in b - assert f"/climate/{SLUG}/january" in b - assert "Records by season" in b - assert "Northern Hemisphere" in b - assert 'Winter (Dec–Feb)' in b - assert 'Summer (Jun–Aug)' in b - assert "All-time records" in b - assert '"@type":"Dataset"' in b - assert re.search(r"-?\d+°C", b) - assert "monthly" in b.lower() and "seasonal" in b.lower() - - -def test_records_seasons_flip_in_southern_hemisphere(client): - b = client.get(f"{B}/climate/sao-paulo-br/records").text - assert "Southern Hemisphere" in b - assert 'Summer (Dec–Feb)' in b - assert 'Winter (Jun–Aug)' in b - - -def test_climate_pages_are_colour_coded(client): - city = client.get(f"{B}/climate/{SLUG}").text - assert "t-cell t-" in city - assert "range-fill" in city and "--c1:var(--" in city - recs = client.get(f"{B}/climate/{SLUG}/records").text - assert "t-inline t-" in recs - month = client.get(f"{B}/climate/{SLUG}/july").text - assert "t-inline t-" in month - - -def test_records_show_both_extremes_per_metric(client): - b = client.get(f"{B}/climate/{SLUG}/records").text - assert "Daytime high" in b and "Overnight low" in b - assert "▲" in b and "▼" in b - assert b.count('class="rec-ext"') >= 48 - - -def test_hub_glossary_about(client): - assert client.get(f"{B}/climate").status_code == 200 - assert client.get(f"{B}/glossary").status_code == 200 - assert client.get(f"{B}/glossary/percentile").status_code == 200 - assert client.get(f"{B}/glossary/not-a-term").status_code == 404 - assert client.get(f"{B}/about").status_code == 200 - - -def test_static_page_titles_come_from_content_yaml(client): - from markupsafe import escape - for path, key in ((f"{B}/climate", "hub"), (f"{B}/glossary", "glossary_index"), - (f"{B}/about", "about"), (f"{B}/privacy", "privacy")): - html = client.get(path).text - assert f"{escape(content.PAGES[key]['title'])}" in html, path - - -def test_glossary_terms_come_from_content_yaml(client): - html = client.get(f"{B}/glossary").text - for entry in content.GLOSSARY.values(): - assert entry["term"] in html - term_html = client.get(f"{B}/glossary/percentile").text - assert content.GLOSSARY["percentile"]["short"] in term_html - - -def test_footer_has_no_leaked_jinja_comment(client): - for path in (f"{B}/about", f"{B}/climate/{SLUG}", f"{B}/climate/{SLUG}/records"): - b = client.get(path).text - footer = re.search(r"", b, re.S) - assert footer, f"no footer on {path}" - assert "#}" not in footer.group(0) and "{#" not in footer.group(0), path - - -def test_page_titles_lead_with_city_and_payload(client): - for path, must_start, payload in ( - (f"{B}/climate/{SLUG}", "London, GB climate", "how unusual it is now"), - (f"{B}/climate/{SLUG}/july", "London, GB in July", "normal weather"), - (f"{B}/climate/{SLUG}/records", "London, GB weather records", "hottest & coldest"), - ): - b = client.get(path).text - title = re.search(r"(.*?)", b, re.S).group(1) - title = title.replace("&", "&") - assert title.startswith(must_start), title - assert payload in title, title - assert "England, United Kingdom" not in title - assert len(must_start) <= 40 - og = re.search(r'(.*?)", b, re.S).group(1) - - -def test_meta_descriptions_lead_with_real_numbers(client): - for path in (f"{B}/climate/{SLUG}", f"{B}/climate/{SLUG}/july", - f"{B}/climate/{SLUG}/records"): - b = client.get(path).text - desc = re.search(r']*)>(-?\d+)°([CF]?)') - - -def _temp_spans(html): - return [(float(f), int(n), letter) for f, _attrs, n, letter in _TEMP_SPAN.findall(html)] - - -def test_climate_pages_carry_convertible_temps(client): - for path in (f"{B}/climate/{SLUG}", f"{B}/climate/{SLUG}/july", f"{B}/climate/{SLUG}/records"): - b = client.get(path).text - spans = _temp_spans(b) - assert spans, f"no temperature spans on {path}" - assert re.search(r"\d+°F \(-?\d+°C\)", b) is None - - -def test_units_default_to_the_citys_country(client): - gb = client.get(f"{B}/climate/{SLUG}").text - us = client.get(f"{B}/climate/seattle-washington-us").text - - gb_spans, us_spans = _temp_spans(gb), _temp_spans(us) - assert gb_spans and us_spans - assert {letter for _f, _n, letter in gb_spans if letter} == {"C"} - assert {letter for _f, _n, letter in us_spans if letter} == {"F"} - - assert any(math.floor(f + 0.5) != n for f, n, _l in gb_spans), "data-temp-f was converted" - assert all(math.floor(f + 0.5) == n for f, n, _l in us_spans) - - assert 'data-unit-default="C"' in gb - assert 'data-unit-default="F"' in us - - -_PRECIP_SPAN = re.compile(r'([\d.]+) (in|mm)') - - -def test_precip_and_wind_follow_the_citys_unit(client): - gb = client.get(f"{B}/climate/{SLUG}/records").text - us = client.get(f"{B}/climate/seattle-washington-us/records").text - - gb_p, us_p = _PRECIP_SPAN.findall(gb), _PRECIP_SPAN.findall(us) - assert gb_p and us_p - - assert {u for _raw, _shown, u in gb_p} == {"mm"} - assert {u for _raw, _shown, u in us_p} == {"in"} - - for raw, shown, _u in gb_p: - assert abs(float(shown) - float(raw) * 25.4) < 0.51, (raw, shown) - for raw, shown, _u in us_p: - assert abs(float(shown) - float(raw)) < 0.005, (raw, shown) - - -def test_wind_and_humidity_render_per_unit_system(): - # The synthetic history carries only tmax/tmin/precip, so wind and - # humidity never reach a rendered page in these tests -- exercise - # format.py's renderers directly, same as the backend's equivalent test. - with fmt.unit_scope("F"): - assert fmt.wind_text(10) == "10 mph" - assert '10 mph' == fmt.wind(10) - assert fmt.fmt("humid", 7.75) == "7.8 g/m³" - with fmt.unit_scope("C"): - assert fmt.wind_text(10) == "16 km/h" - assert 'data-wind-mph="10.0"' in fmt.wind(10) - assert fmt.fmt("humid", 7.75) == "7.8 g/m³" - - -def test_precip_precision_differs_by_unit(): - with fmt.unit_scope("F"): - assert fmt.precip_text(0.04) == "0.04 in" - with fmt.unit_scope("C"): - assert fmt.precip_text(0.04) == "1 mm" - assert fmt.precip_text(1.81) == "46 mm" - - -def test_measure_conversion_constants_match_the_frontend(): - units_js = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))), - "frontend", "units.js") - with open(units_js, encoding="utf-8") as f: - src = f.read() - mm = float(re.search(r"MM_PER_IN\s*=\s*([\d.]+)", src).group(1)) - kmh = float(re.search(r"KMH_PER_MPH\s*=\s*([\d.]+)", src).group(1)) - assert mm == fmt.MM_PER_IN - assert kmh == fmt.KMH_PER_MPH - - -def test_unit_default_absent_without_a_city(client): - for path in (f"{B}/", f"{B}/climate", f"{B}/about", f"{B}/glossary"): - assert "data-unit-default" not in client.get(path).text, path - - -def test_unit_does_not_leak_between_requests(client): - assert 'data-unit-default="C"' in client.get(f"{B}/climate/{SLUG}").text - about = client.get(f"{B}/about").text - assert "data-unit-default" not in about - assert {l for _f, _n, l in _temp_spans(about) if l} == {"F"} - - us = client.get(f"{B}/climate/seattle-washington-us").text - assert {l for _f, _n, l in _temp_spans(us) if l} == {"F"} - gb_again = client.get(f"{B}/climate/{SLUG}").text - assert {l for _f, _n, l in _temp_spans(gb_again) if l} == {"C"} - - -def test_f_country_list_matches_the_frontend(): - units_js = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))), - "frontend", "units.js") - with open(units_js, encoding="utf-8") as f: - src = f.read() - literal = re.search(r"F_REGIONS = new Set\(\[(.*?)\]\)", src, re.S).group(1) - assert set(re.findall(r'"([A-Z]{2})"', literal)) == set(fmt.F_COUNTRIES) - - -def test_celsius_rounding_matches_js(): - assert fmt._round_half_up(0.5) == 1 - assert fmt._round_half_up(1.5) == 2 - assert fmt._round_half_up(2.5) == 3 - assert fmt._round_half_up(-0.5) == 0 - assert fmt._c(31.1) == 0 - - -def test_pct_ordinal_matches_backend_grading(): - # format.pct_ordinal is a ported copy of backend/data/grading.py's - # pct_ordinal (the frontend can no longer import backend code) -- pin the - # two against the same cases so a future edit to either can't drift silently. - assert fmt.pct_ordinal(66.4) == "66th" - assert fmt.pct_ordinal(1.2) == "1st" - assert fmt.pct_ordinal(22) == "22nd" - assert fmt.pct_ordinal(3) == "3rd" - assert fmt.pct_ordinal(11) == "11th" - assert fmt.pct_ordinal(99.6) == "99th" - assert fmt.pct_ordinal(100) == "99th" - assert fmt.pct_ordinal(0) == "1st" - assert fmt.pct_ordinal(None) == "—" - - -def test_city_page_percentiles_are_real_ordinals(client): - html = client.get(f"{B}/climate/{SLUG}").text - assert "th pct" in html or "st pct" in html or "nd pct" in html or "rd pct" in html - for bad in re.findall(r"\d+\.\d+(?:st|nd|rd|th)|100th|\b0th|\b\d*[123]th", html): - raise AssertionError(f"malformed percentile ordinal: {bad!r}") - - -def test_city_page_etag_is_stable(client): - r1 = client.get(f"{B}/climate/{SLUG}") - r2 = client.get(f"{B}/climate/{SLUG}") - assert r1.headers["etag"] == r2.headers["etag"] - r3 = client.get(f"{B}/climate/{SLUG}", headers={"If-None-Match": r1.headers["etag"]}) - assert r3.status_code == 304 - - -def test_seo_pages_load_unit_and_account_scripts(client): - b = client.get(f"{B}/climate/{SLUG}").text - for src in (f"{B}/units.js", f"{B}/account.js", f"{B}/climate.js"): - assert f'src="{src}"' in b - - -def test_indexnow_key_file_served(client): - from conftest import FAKE_INDEXNOW_KEY - r = client.get(f"{B}/{FAKE_INDEXNOW_KEY}.txt") - assert r.status_code == 200 - assert r.text.strip() == FAKE_INDEXNOW_KEY - assert r.headers["content-type"].startswith("text/plain") - - -def test_sitemap_lastmod_is_stable(client): - import datetime - body = client.get(f"{B}/sitemap.xml").text - mods = set(re.findall(r"([^<]+)", body)) - assert len(mods) == 1 - datetime.date.fromisoformat(next(iter(mods))) - - -def test_search_verification_meta(client, monkeypatch): - monkeypatch.setenv("THERMOGRAPH_GOOGLE_VERIFY", "gtok123") - monkeypatch.setenv("THERMOGRAPH_BING_VERIFY", "btok456") - seo = client.get(f"{B}/climate/{SLUG}").text - home = client.get(f"{B}/").text - for b in (seo, home): - assert '' in b - assert '' in b - - -BRAND_PAGES = [B + p for p in ("/", "/climate", "/glossary", "/about", "/privacy")] - - -@pytest.mark.parametrize("path", BRAND_PAGES) -def test_brand_lockup_links_home(client, path): - html = client.get(path).text - brand = html.split('
', 1)[1].split("", 1)[0] - head = brand.split("")[0] if "")[0] - assert "