Skip to content

Commit

Permalink
Add percentage to raw stats
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitijrajsharma committed Feb 1, 2024
1 parent ca01d16 commit cab9da4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1147,10 +1147,16 @@ def get_summary_stats(self):
"lastEditTime": combined_data["lastEditTime"].strftime(
"%Y-%m-%d %H:%M:%S"
),
"osmBuildingCompletenessPercentage": combined_data[
"osm_building_completeness_percentage"
],
"osmRoadsCompletenessPercentage": combined_data[
"osm_roads_completeness_percentage"
],
"osmBuildingsCount": combined_data["osmBuildingsCount"],
"osmHighwayLengthKm": combined_data["highway_length"],
"osmUsersCount": combined_data["osmUsersCount"],
"aiBuildingsCountEstimationKm": combined_data[
"aiBuildingsCountEstimation": combined_data[
"aiBuildingsCountEstimation"
],
"aiRoadCountEstimationKm": combined_data["aiRoadCountEstimation"],
Expand Down

0 comments on commit cab9da4

Please sign in to comment.