From aeb0de76cacf08f316abfc8e287289559bd12e6e Mon Sep 17 00:00:00 2001 From: "saket.agrahari" <saket.agrahari@geant.org> Date: Thu, 8 Feb 2024 15:29:33 +0000 Subject: [PATCH] [COMP-288] : further name correction --- compendium_v2/routes/data_download.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/compendium_v2/routes/data_download.py b/compendium_v2/routes/data_download.py index 2fd9b0a3..4945cdb5 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) -- GitLab