Oil Pipeline Accidents, 2010-Present
Causes, injuries/fatalities, and costs of pipeline leaks and spills
@kaggle.usdot_pipeline_accidents
Causes, injuries/fatalities, and costs of pipeline leaks and spills
@kaggle.usdot_pipeline_accidents
CREATE TABLE database (
"report_number" BIGINT,
"supplemental_number" BIGINT,
"accident_year" BIGINT,
"accident_date_time" VARCHAR,
"operator_id" BIGINT,
"operator_name" VARCHAR,
"pipeline_facility_name" VARCHAR,
"pipeline_location" VARCHAR,
"pipeline_type" VARCHAR,
"liquid_type" VARCHAR,
"liquid_subtype" VARCHAR,
"liquid_name" VARCHAR,
"accident_city" VARCHAR,
"accident_county" VARCHAR,
"accident_state" VARCHAR,
"accident_latitude" DOUBLE,
"accident_longitude" DOUBLE,
"cause_category" VARCHAR,
"cause_subcategory" VARCHAR,
"unintentional_release_barrels" DOUBLE,
"intentional_release_barrels" DOUBLE,
"liquid_recovery_barrels" DOUBLE,
"net_loss_barrels" DOUBLE,
"liquid_ignition" VARCHAR,
"liquid_explosion" VARCHAR,
"pipeline_shutdown" VARCHAR,
"shutdown_date_time" TIMESTAMP,
"restart_date_time" TIMESTAMP,
"public_evacuations" DOUBLE,
"operator_employee_injuries" DOUBLE,
"operator_contractor_injuries" DOUBLE,
"emergency_responder_injuries" DOUBLE,
"other_injuries" DOUBLE,
"public_injuries" DOUBLE,
"all_injuries" DOUBLE,
"operator_employee_fatalities" DOUBLE,
"operator_contractor_fatalities" DOUBLE,
"emergency_responder_fatalities" DOUBLE,
"other_fatalities" DOUBLE,
"public_fatalities" DOUBLE,
"all_fatalities" DOUBLE,
"property_damage_costs" DOUBLE,
"lost_commodity_costs" DOUBLE,
"public_private_property_damage_costs" DOUBLE,
"emergency_response_costs" DOUBLE,
"environmental_remediation_costs" DOUBLE,
"other_costs" DOUBLE,
"all_costs" BIGINT
);
Anyone who has the link will be able to view this.