NewGraphEnvironment / fish_passage_bulkley_2020_reporting

https://newgraphenvironment.github.io/fish_passage_bulkley_2020_reporting/
Apache License 2.0
1 stars 2 forks source link

correct cost estimate for Appendix - 197640 - Tributary to Buck Creek #36

Closed NewGraphEnvironment closed 6 days ago

lucy-schick commented 2 weeks ago
lucy-schick commented 1 week ago

Issue was that recommended_diameter_or_span_meters was NA in pscis_phase1.xls, which meant that cost_est_1000s was NA due to https://github.com/NewGraphEnvironment/fish_passage_bulkley_2020_reporting/blob/master/R/0330-tables-phase1-cost-estimate.R#L27C5-L27C92.

Manually fixed in pscis_phase1.xls and also had to manually fix in pscis_rd object then reburn to pscis_rd.csv because pscis_rd is built using outdated tables and db connections (https://github.com/NewGraphEnvironment/fish_passage_bulkley_2020_reporting/blob/master/R/0260-extract-rd-cost-mult.R#L87C1-L98C19). When report builds it just reads in pscis_rd.csv.

fixed with the following code:

pscis_rd_test <- pscis_rd |> 
  mutate(recommended_diameter_or_span_meters = if_else(pscis_crossing_id == 197640, 10, recommended_diameter_or_span_meters))

readr::write_csv(pscis_rd_test, file = paste0(getwd(), '/data/extracted_inputs/pscis_rd.csv'))