From 8742feedf3255399d14dbb965800ebff8b34240e Mon Sep 17 00:00:00 2001 From: kshitijrajsharma Date: Thu, 1 Feb 2024 10:53:15 +0545 Subject: [PATCH] Update raw meta key information --- src/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app.py b/src/app.py index 2dbb24e8..427099db 100644 --- a/src/app.py +++ b/src/app.py @@ -1147,6 +1147,7 @@ def get_summary_stats(self): "lastEditTime": combined_data["lastEditTime"].strftime( "%Y-%m-%d %H:%M:%S" ), + "osmUsersCount": combined_data["osmUsersCount"], "osmBuildingCompletenessPercentage": combined_data[ "osm_building_completeness_percentage" ], @@ -1155,13 +1156,12 @@ def get_summary_stats(self): ], "osmBuildingsCount": combined_data["osmBuildingsCount"], "osmHighwayLengthKm": combined_data["highway_length"], - "osmUsersCount": combined_data["osmUsersCount"], "aiBuildingsCountEstimation": combined_data[ "aiBuildingsCountEstimation" ], "aiRoadCountEstimationKm": combined_data["aiRoadCountEstimation"], "buildingCount6Months": combined_data["building_count_6_months"], - "highwayLength6Months": combined_data["highway_length_6_months"], + "highwayLength6MonthsKm": combined_data["highway_length_6_months"], }, "meta": { "indicators": "https://github.com/hotosm/raw-data-api/tree/develop/docs/src/stats/indicators.md",