Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
adfarth committed Aug 24, 2023
1 parent ef64817 commit 955c0de
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/core/financial.jl
Original file line number Diff line number Diff line change
Expand Up @@ -249,9 +249,6 @@ function easiur_costs(latitude::Real, longitude::Real, grid_or_onsite::String)
EASIUR_data = nothing
try
EASIUR_data = get_EASIUR2005(type, pop_year=2020, income_year=2020, dollar_year=2010)
if type == "p150"
print("\nEASIUR_data['NOX_Annual']: ", EASIUR_data["NOX_Annual"][10,10], "\n")
end
catch e
@warn "Could not look up EASIUR health costs from point ($latitude,$longitude). {$e}"
return nothing
Expand Down Expand Up @@ -508,6 +505,4 @@ function easiur_data(; latitude::Real, longitude::Real, inflation::Real)
response_dict[ekey*"_cost_escalation_rate_fraction"] = escalation[ekey]
end
return response_dict
end

print("\nTEST!!!: ", easiur_data(;latitude=30.2672,longitude=-97.7431,inflation=0.025)["NOx_grid_cost_per_tonne"])
end

0 comments on commit 955c0de

Please sign in to comment.