Fix issue with collection disposal; increase precision in CSV reports

This commit is contained in:
2023-03-10 14:20:21 -06:00
parent 8432c49050
commit 7d4a763910
7 changed files with 29 additions and 29 deletions

View File

@@ -44,18 +44,18 @@ function transportation_emissions_report(solution)::DataFrame
round(dst_location_dict["Longitude (deg)"], digits = 6),
dst_location_dict["Input product"],
year,
round(src_location_dict["Distance (km)"], digits = 2),
round(src_location_dict["Distance (km)"], digits = 6),
round(
src_location_dict["Amount (tonne)"][year],
digits = 2,
digits = 6,
),
round(
src_location_dict["Amount (tonne)"][year] *
src_location_dict["Distance (km)"],
digits = 2,
digits = 6,
),
emission_name,
round(emission_amount[year], digits = 2),
round(emission_amount[year], digits = 6),
],
)
end