Skip to content

Commit

Permalink
Merge pull request #1341 from cityofaustin/14980_update_comp_costs
Browse files Browse the repository at this point in the history
Update comprehensive costs for 2024 ( to account for inflation )
  • Loading branch information
roseeichelmann authored Jan 26, 2024
2 parents 96c7dd2 + a8176eb commit efa5f31
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
UPDATE public.atd_txdot__est_comp_cost_crash_based
SET est_comp_cost_amount = 3000000
WHERE est_comp_cost_desc = 'Killed (K)';

UPDATE public.atd_txdot__est_comp_cost_crash_based
SET est_comp_cost_amount = 2500000
WHERE est_comp_cost_desc = 'Suspected Serious Injury (A)';

UPDATE public.atd_txdot__est_comp_cost_crash_based
SET est_comp_cost_amount = 270000
WHERE est_comp_cost_desc = 'Non-incapacitating Injury (B)';

UPDATE public.atd_txdot__est_comp_cost_crash_based
SET est_comp_cost_amount = 220000
WHERE est_comp_cost_desc = 'Possible Injury (C)';

UPDATE public.atd_txdot__est_comp_cost_crash_based
SET est_comp_cost_amount = 50000
WHERE est_comp_cost_desc = 'Not Injured';

UPDATE public.atd_txdot__est_comp_cost_crash_based
SET est_comp_cost_amount = 50000
WHERE est_comp_cost_desc = 'Unknown Injury (0)';

UPDATE public.atd_txdot__est_comp_cost_crash_based
SET est_comp_cost_amount = 10000
WHERE est_comp_cost_desc = 'Non-CR3';
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
-- Updating crash based comp costs to reflect new 2024 values
-- as provided by VZ team

UPDATE public.atd_txdot__est_comp_cost_crash_based
SET est_comp_cost_amount = 3500000
WHERE est_comp_cost_desc = 'Killed (K)';

UPDATE public.atd_txdot__est_comp_cost_crash_based
SET est_comp_cost_amount = 3000000
WHERE est_comp_cost_desc = 'Suspected Serious Injury (A)';

UPDATE public.atd_txdot__est_comp_cost_crash_based
SET est_comp_cost_amount = 250000
WHERE est_comp_cost_desc = 'Non-incapacitating Injury (B)';

UPDATE public.atd_txdot__est_comp_cost_crash_based
SET est_comp_cost_amount = 200000
WHERE est_comp_cost_desc = 'Possible Injury (C)';

UPDATE public.atd_txdot__est_comp_cost_crash_based
SET est_comp_cost_amount = 20000
WHERE est_comp_cost_desc = 'Not Injured';

UPDATE public.atd_txdot__est_comp_cost_crash_based
SET est_comp_cost_amount = 20000
WHERE est_comp_cost_desc = 'Unknown Injury (0)';

UPDATE public.atd_txdot__est_comp_cost_crash_based
SET est_comp_cost_amount = 10000
WHERE est_comp_cost_desc = 'Non-CR3';
4 changes: 2 additions & 2 deletions atd-vze/src/views/VZDashboard/VZDashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ function VZDashboard() {
<Row>
<Col xs="12" sm="12" md="12">
<VZNoticeWidget
header={`July 2021: Comprehensive Cost Schedule Updates`}
mainText={`Vision Zero has implemented a revised comprehensive cost scale for crashes in the VZE crash database and various mapping tools. The revised scale inflates comprehensive costs to 2021 dollars, deemphasizes the relative value of non-injury/property damage only crashes (i.e. non-CR-3 crashes) and now applies cost values based on the highest injury severity of each crash, rather than the sum of all injuries per crash. Questions regarding the revised comprehensive cost scale can be directed to lewis.leff@austintexas.gov.`}
header={`Feb 2024: Comprehensive Cost Schedule Updates`}
mainText={`Vision Zero has implemented a revised comprehensive cost scale for crashes in the VZE crash database and various mapping tools. The revised scale updates comprehensive costs to 2023 dollars. Questions regarding the revised comprehensive cost scale can be directed to joel.meyer@austintexas.gov.`}
icon="fa fa-exclamation-triangle"
color="warning"
/>
Expand Down

0 comments on commit efa5f31

Please sign in to comment.