Skip to content

Commit

Permalink
Update wsinfer/cli/convert_csv_to_geojson.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kaczmarj authored Aug 7, 2023
1 parent e43d0be commit 44c6d9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wsinfer/cli/convert_csv_to_geojson.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def _row_to_geojson(row: pd.Series, prob_cols: list[str]) -> dict:

measurements = {}
for k,v in prob_dict.items():
measurements[f"{k}"] = v
measurements[k] = v

return {
"type": "Feature",
Expand Down

0 comments on commit 44c6d9b

Please sign in to comment.