diff --git a/compendium_v2/routes/data_download.py b/compendium_v2/routes/data_download.py
index 2fd9b0a3b0c7fee21a30c9b334650ca829a675a5..4945cdb5e7c47ab00c9a6e25222df7a27c2ffec5 100644
--- a/compendium_v2/routes/data_download.py
+++ b/compendium_v2/routes/data_download.py
@@ -46,7 +46,7 @@ def fetch_and_combine_data() -> Sequence[Optional[Dict[str, Any]]]:
 
     # Fetch and extract data from the ConnectedProportion table and add it to the result set
     entries = fetch_data_from_table(ConnectedProportion, extract_model_data)
-    result_set.append({'name': 'Market share', 'data': entries})
+    result_set.append({'name': 'Market Share', 'data': entries})
 
     # Fetch and extract data from the ConnectivityLevel table and add it to the result set
     entries = fetch_data_from_table(ConnectivityLevel, extract_model_data)
@@ -62,7 +62,7 @@ def fetch_and_combine_data() -> Sequence[Optional[Dict[str, Any]]]:
 
     # Fetch and extract data from the ConnectivityGrowth table
     entries = fetch_data_from_table(ConnectivityGrowth, extract_model_data)
-    result_set.append({'name': 'Est traffic growth 3 years', 'data': entries})
+    result_set.append({'name': 'Est Traffic Growth 3 years', 'data': entries})
 
     # Fetch and extract data from the CommercialConnectivity table and add it to the result set
     entries = fetch_data_from_table(CommercialConnectivity, extract_model_data)
@@ -118,7 +118,7 @@ def fetch_and_combine_data() -> Sequence[Optional[Dict[str, Any]]]:
 
     # Fetch and extract data from the FibreLight table and add it to the result set
     entries = fetch_data_from_table(FibreLight, extract_model_data)
-    result_set.append({'name': 'Fibre operation model', 'data': entries})
+    result_set.append({'name': 'Fibre Operation Model', 'data': entries})
 
     # Fetch and extract data from the NetworkMapUrls table and add it to the result set
     entries = fetch_data_from_table(NetworkMapUrls, extract_model_data)
@@ -146,7 +146,7 @@ def fetch_and_combine_data() -> Sequence[Optional[Dict[str, Any]]]:
 
     # Fetch and extract data from the WeatherMap table and add it to the result set
     entries = fetch_data_from_table(WeatherMap, extract_model_data)
-    result_set.append({'name': 'Weather Map', 'data': entries})
+    result_set.append({'name': 'Weather Map Url', 'data': entries})
 
     # Fetch and extract data from the AlienWave table and add it to the result set
     entries = fetch_data_from_table(AlienWave, extract_model_data)
@@ -154,7 +154,7 @@ def fetch_and_combine_data() -> Sequence[Optional[Dict[str, Any]]]:
 
     # Fetch and extract data from the Capacity table and add it to the result set
     entries = fetch_data_from_table(Capacity, extract_model_data)
-    result_set.append({'name': 'Capacity', 'data': entries})
+    result_set.append({'name': 'Backbone Capacity', 'data': entries})
 
     # Fetch and extract data from the NonREPeers table and add it to the result set
     entries = fetch_data_from_table(NonREPeers, extract_model_data)