Skip to content

Commit

Permalink
Merge pull request #911 from mapswipe/dev
Browse files Browse the repository at this point in the history
Release [Hotfix] Hot data calcualtion fix
  • Loading branch information
tnagorra authored Aug 31, 2023
2 parents 5a95c28 + a2eaa4b commit 8863219
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ def load_data(project_id: str, gzipped_csv_file: str) -> list:
"yes_count": int(column_index_map.get("1_count", 0)),
"maybe_count": int(column_index_map.get("2_count", 0)),
"bad_imagery_count": int(column_index_map.get("3_count", 0)),
"no_share": float(column_index_map.get("0_count", 0)),
"yes_share": float(column_index_map.get("1_count", 0)),
"maybe_share": float(column_index_map.get("2_count", 0)),
"bad_imagery_share": float(column_index_map.get("3_count", 0)),
"no_share": float(column_index_map.get("0_share", 0)),
"yes_share": float(column_index_map.get("1_share", 0)),
"maybe_share": float(column_index_map.get("2_share", 0)),
"bad_imagery_share": float(column_index_map.get("3_share", 0)),
"wkt": tile_functions.geometry_from_tile_coords(
task_x, task_y, task_z
),
Expand Down

0 comments on commit 8863219

Please sign in to comment.