In 1887, steamship captain William “Billy” Moore and First Nation explorer “Skookum Jim” Mason hiked the White Pass route through what would become the Alaska-Canada border. Billy Moore liked what he saw and purchased the coastal land now home to the gold rush town of Skagway, Alaska. With its modest present-day population of around 1,200 permanent residents, modern Skagway hosts over one million annual tourists.
Although Billy Moore and Skookum Jim had to conquer forests, mountains, and wildlife to arrive at the remote land where Skagway now lies, modern tourists have much simpler transit options. American citizens can drive a few miles north of Juneau (Alaska’s capital) to arrive via the Klondike Highway. Canadian tourists have two additional options: take the bus or the train south, across the Canadian border, and directly into downtown Skagway.
Of the Canadian tourists visiting Skagway, the majority come via the bus route south from the Yukon Territory. Because of the massive flood of tourists visiting by bus, the Skagway port of entry into the US boasts a unique feature: it is the only land port of entry through which more people enter the US by bus than any other method.
Every American port of entry has a story. For Skagway, it’s explorers taming the wilderness to make room for a future bus route. Vanceboro, Maine, is one of only two majority-rail entrances. Only two ports (both along the southern border) are majority pedestrian. The rest, in true North American fashion, are dominated by privately-owned cars.
But more than tourists come through our borders. Illicit drugs, trafficked persons, and other illegal imports make it into the US through land ports of entry every day. In this report, we will investigate land traffic trends going back over two decades to see if we can uncover clues to what may be responsible for the increase in opioid deaths (specifically fentanyl) that America is currently combating.
The Data
The US Bureau of Transportation Statistics (BTS) is a statistical agency under the US Department of Transportation (DoT). The BTS publishes border crossing data through land ports of entry. Maritime and aircraft crossings are handled by other agencies and thus aren’t included in the data. The data includes the geographic position of the ports, the number of crossings in those ports, and the method of each crossing.
Before we look at the data, we need to define a crossing. The BTS defines a crossing as a single vehicle (or pedestrian) crossing into the US a single time. If, for example, a single truck goes between the US and Mexico multiple times to pick up and deliver goods, each entry into the US is a separate crossing. These crossings could be foreign tourists, immigrants, or American citizens returning home.
Additionally, we will bring in overdose data from the NIH. That data, published from 1999 to 2022 (so far), will help us build a more comprehensive picture of the modern opioid epidemic.
Now that we have our background and definitions, let’s get to know our borders.
Data Analysis
Today’s crossings
Before we explore our past, let’s get to know our present. In 2024, there were 366,523,458 border crossings across every American land port. Over 72% of the vehicles that crossed were personal vehicles, like your car or mine. Although there are 117 unique ports, not all entrances are created equal. Let’s look at a map to see where most of our inbound traffic comes from, and which types of traffic are most common there. Figure 1 is an interactive map showing the traffic coming through our land ports in 2024.
Tip
Feel free to click on any circle for additional data.
Click here for code
# custom color palette color_palette <-colorFactor(palette =c(BLUE, "yellow", RED, "black"),domain = crossings24$most_common)# custom CSS for styling the map titlemap_title <-paste("<div class='leaflet-control'","style='padding-top: 0px;","padding-bottom: 8px;","padding-left: 11px;","font-size: 22px;'>","<b>Inbound Border Crossings (2024)</b></div>")# build the mapleaflet(crossings24) |>addTiles() |>addCircleMarkers(lng =~longitude,lat =~latitude,# set a minimum circle size of 3 (helps with legibility)radius =~pmax(sqrt(crossings) /200, 3),fill =TRUE,stroke =FALSE,fillOpacity =0.7, popup =~paste0("<strong>Port: </strong>", port_name,"<br><strong>Most Common Method: </strong>", most_common,"<br><strong>Total Crossings: </strong>", # format X,XXX,XXX instead of XXXXXXX scales::comma(crossings) ),color =~color_palette(most_common) ) |>addLegend("bottomright",pal = color_palette,values =~most_common,title ="Most Common Method of Crossing" ) |># add custom title box to the mapaddControl(map_title, position ="topright")
Figure 1: Crossing locations
That sea of red you’re seeing shows how dominant personally owned vehicles are at nearly every land port. Of our two borders, there was significantly more traffic from the south; the only high-traffic entrances from the north are Buffalo, Detroit, and Blaine (outside of Vancouver). However, the San Ysidro port of entry in southern California outnumbered all crossings from those three ports combined. The majority of our land traffic very clearly comes from Mexico and from privately owned vehicles.
Total crossings
Traffic across our land borders has become a hot topic in our politics. President Trump has imposed tariffs on both Mexico and Canada in an attempt to reduce the flow of illicit drugs (specifically fentanyl) and trafficked people into the US. Because most fentanyl is smuggled into the US by American citizens, it is worth investigating total crossings instead of crossings made by immigrants. Figure 2 explores our total inbound crossings per year in all land ports in the US.
Click here for code
# build plotborder |>filter(year <2025) |>group_by(year) |>summarise(crossings =sum(value)) |>plot_ly() |>add_trace(x =~year, y =~crossings, type ="scatter", mode ="lines+markers",line =list(width =4, color = RED),marker =list(size =11, color = RED),hovertemplate ="<b>Crossings</b>: %{y:,.0f}",name ="" ) |>layout(title ="Border crossings into the US through land ports (1996-2024)",xaxis =list(title =""),yaxis =list(title ="Total Crossings"),dragmode =FALSE,hovermode ="x unified" ) |>config(displayModeBar =FALSE)
Figure 2: Total crossings
There are a few interesting notes from our border crossing history. First, we saw a rapid and steady decrease in border crossings after 2000. That could be related to decreased international travel by American citizens following the 9/11 attacks and increased security, but without data to back that hypothesis, we can only speculate.
After 2011, we see a slow increase in crossings until the pronounced drop during the COVID-19 pandemic. It’s more difficult to point to direct policy changes that explain that increase during both the Obama and Trump administrations, so I will reserve my speculation. Interestingly, we have effectively returned to pre-COVID levels.
Note
Observe the y-axis scale in Figure 2. Even during the drop in crossings during the pandemic, we saw over 200 million unique crossings. Although that’s much lower than is typical, it is still significant in absolute number.
Crossing distribution
Since effectively all fentanyl imports come through the southern border and via US citizens, it is worth exploring the distribution of crossings between Canada and Mexico. Figure 3 examines the evolution of that distribution since 1996.
Click here for code
# get proportion of overdoses done with opioidsod_prop <- od |>mutate(p_opioid = opioid_deaths / total_deaths)# note for Canadian border measures annotationcanada_note <-list(x =2021,y =0.47,text ="<b>Canadian COVID measures</b>",showarrow =FALSE,textangle =270,font =list(color ="rgba(0, 0, 0, 0.2)",size =14 ))# build the plotborder |>filter(year <2025) |>group_by(year, country) |>summarise(crossings =sum(value), .groups ="drop") |>pivot_wider(names_from = country, values_from = crossings) |>mutate(crossings = Canada + Mexico,p_canada = Canada / crossings,p_mex = Mexico / crossings ) |>left_join(od_prop) |># Mexico lineplot_ly(x =~year, y =~p_mex,type ="scatter",mode ="lines+markers",line =list(width =4, color = RED),marker =list(size =11, color = RED),hovertemplate ="%{y:.3f}",name ="<b>Mexico</b>" ) |># Canada lineadd_trace(y =~p_canada,line =list(width =4, color = BLUE),marker =list(size =11, color = BLUE,symbol ="square" ),hovertemplate ="%{y:.3f}",name ="<b>Canada</b>" ) |># opioid lineadd_trace(y =~p_opioid,line =list(width =4, color = YELLOW),marker =list(size =11, color = YELLOW,symbol ="diamond" ),hovertemplate ="%{y:.3f}",name ="<b>Opioid OD\nProportion</b>" ) |>layout(title ="Border crossing proportions and opioid deaths",xaxis =list(title =""),yaxis =list(title ="Proportion of Crossings"),dragmode =FALSE,# add mouse-over functionality across both lines at oncehovermode ="x unified",# Canadian border closure annotation barshapes =list(list(type ="rect", fillcolor ="gray", line =list(color ="gray"),opacity =0.2,y0 =0.05,y1 =0.95,x0 =2020,x1 =2022,layer ="below" )),annotations = canada_note ) |>config(displayModeBar =FALSE)
Figure 3: Crossing distribution
Even as Figure 2 shows us total crossings have fluctuated by the hundreds of millions since 1997, the proportion of those crossings coming from Canada and Mexico have been remarkably consistent. Besides the Canadian travel measures causing dwindling crossings during the pandemic, about three of every four crossings have come from Mexico every year since 1997.
While opioid deaths have been growing as a proportion of all overdose deaths since 1999, the proportion of crossings from each border remains consistent, and total land crossings have stagnated (save COVID-era declines). With total traffic not growing and the proportion of crossings coming from the south constant, factors outside of these datasets are likely responsible for the increase in opioid deaths. The per-dose lethality of fentanyl, industry-manufactured opioid addictions, and other socioeconomic issues are more likely culprits.
Conclusion
We have shown that, since at least 1995, southern border crossings have surpassed northern ones by approximately three-to-one. However, total traffic over land has dwindled or held constant in the same period, while the proportion of overdose deaths caused by opioids has increased.
Since almost all (89%) of illicit fentanyl comes from legal land ports of entry and (90%) from US citizens, analyzing otherwise legal border crossings is a worthwhile endeavor. This analysis shows that while opioid deaths spike, land traffic of the type that typically imports fentanyl (US citizens crossing through legal ports of entry to the south) has not. Non-border issues are likely to blame for the current crisis.
Combating the fentanyl crisis will require an ongoing, multi-faceted approach. While border security is essential, mainly due to the comparatively small amount of fentanyl that can kill large numbers of civilians, decreasing border traffic is unlikely to make a significant positive impact. The Centers for Disease Control (CDC) recommends using fentanyl test strips to prevent taking drugs laced with fentanyl and using naloxone (Narcan) to stop overdoses after they begin. Federal funds could easily subsidize free community access to these resources while increasing education on effectively using them.
I hope this analysis has been insightful for those interested in data analysis and visualization or the fentanyl crisis and border traffic. If you have any questions or comments, feel free to reach out to me on LinkedIn. I’m always open to connecting to my readers, be they like-minded or not. As always, thank you for reading.