|
|
|
@ -181,10 +181,10 @@ function transportation_report(solution)::DataFrame
|
|
|
|
|
round(dst_location_dict["Longitude (deg)"], digits=6),
|
|
|
|
|
dst_location_dict["Input product"],
|
|
|
|
|
year,
|
|
|
|
|
round(src_location_dict["Distance (km)"][year], digits=2),
|
|
|
|
|
round(src_location_dict["Distance (km)"], digits=2),
|
|
|
|
|
round(src_location_dict["Amount (tonne)"][year], digits=2),
|
|
|
|
|
round(src_location_dict["Amount (tonne)"][year] *
|
|
|
|
|
src_location_dict["Distance (km)"][year],
|
|
|
|
|
src_location_dict["Distance (km)"],
|
|
|
|
|
digits=2),
|
|
|
|
|
round(src_location_dict["Transportation cost (\$)"][year], digits=2),
|
|
|
|
|
round(src_location_dict["Transportation energy (J)"][year] / 1e9, digits=2),
|
|
|
|
@ -234,10 +234,10 @@ 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)"][year], digits=2),
|
|
|
|
|
round(src_location_dict["Distance (km)"], digits=2),
|
|
|
|
|
round(src_location_dict["Amount (tonne)"][year], digits=2),
|
|
|
|
|
round(src_location_dict["Amount (tonne)"][year] *
|
|
|
|
|
src_location_dict["Distance (km)"][year],
|
|
|
|
|
src_location_dict["Distance (km)"],
|
|
|
|
|
digits=2),
|
|
|
|
|
emission_name,
|
|
|
|
|
round(emission_amount[year], digits=2),
|
|
|
|
|