Border Crossing Dataset
Border activity between the United States and neighboring countries
@kaggle.sahirmaharajj_border_crossing_dataset
Border activity between the United States and neighboring countries
@kaggle.sahirmaharajj_border_crossing_dataset
The Bureau of Transportation Statistics (BTS) Border Crossing Data provide summary statistics for inbound crossings at the U.S.-Canada and the U.S.-Mexico border at the port level. Data are available for trucks, trains, containers, buses, personal vehicles, passengers, and pedestrians. Border crossing data are collected at ports of entry by U.S. Customs and Border Protection (CBP). The data reflect the number of vehicles, containers, passengers or pedestrians entering the United States.
This dataset provides a rich source of structured information that can be analyzed to uncover patterns, trends, and correlations in border crossing activities. The geographic coordinates allow for spatial analysis, such as mapping the distribution of crossings or integrating with other geographical datasets to study regional economic impacts, environmental effects, or the efficiency of border infrastructure.
From a data science perspective, several analyses could be performed with this dataset:
CREATE TABLE border_crossing_entry_data (
"port_name" VARCHAR,
"state" VARCHAR,
"port_code" BIGINT,
"border" VARCHAR,
"date" VARCHAR,
"measure" VARCHAR,
"value" BIGINT,
"latitude" DOUBLE,
"longitude" DOUBLE,
"point" VARCHAR
);Anyone who has the link will be able to view this.