diff --git a/atd-etl/cr3_extract_diagram/cr3_extract_diagram_ocr_narrative.py b/atd-etl/cr3_extract_diagram/cr3_extract_diagram_ocr_narrative.py index 3fe5db607..a9978aeb2 100644 --- a/atd-etl/cr3_extract_diagram/cr3_extract_diagram_ocr_narrative.py +++ b/atd-etl/cr3_extract_diagram/cr3_extract_diagram_ocr_narrative.py @@ -164,7 +164,7 @@ def update_crash_metadata(crash_id: int, metadata: dict) -> bool: atd_txdot_crashes(where: { cr3_ocr_extraction_date: {_is_null: true}, crash_id: {_gt: 10000} - crash_date: {_gte: "2015-01-01"} + crash_date: {_gte: "2020-01-01"} cr3_file_metadata:{_is_null: false} }, order_by: {crash_date: desc}, diff --git a/atd-vzv/src/views/map/InfoBox/MapInfoBox.js b/atd-vzv/src/views/map/InfoBox/MapInfoBox.js index 966d0b346..5e9ce1ea6 100644 --- a/atd-vzv/src/views/map/InfoBox/MapInfoBox.js +++ b/atd-vzv/src/views/map/InfoBox/MapInfoBox.js @@ -29,7 +29,7 @@ const MapInfoBox = React.memo( const buildSeriousInjuriesOrFatalitiesConfig = (info) => [ { title: "Date/Time", - content: format(new Date(info.crash_date), "MM/dd/yyyy H:m a"), + content: format(new Date(info.crash_date), "MM/dd/yyyy hh:mm a"), }, { title: "Fatalities", content: info.death_cnt }, { title: "Serious Injuries", content: info.sus_serious_injry_cnt },