--- title: "Species, geography, and weather conditions predict offshore migration in songbirds" date: last-modified code-repo: "Data and code to reproduce this study are available at " author: - name: Georg Rüppel email: georg.rueppel@uol.de orcid: 0000-0001-5459-6717 corresponding: true affiliations: - ref: ibu - name: Vera Brust email: vera.brust@nabu.de orcid: 0000-0003-4128-4495 affiliation: - ref: ifv - ref: moin - name: Wieland Heim email: wieland.heim@uol.de orcid: 0000-0002-3262-2491 affiliations: - ref: ibu - name: Thiemo Karwinkel email: thiemo.karwinkel@uol.de orcid: 0000-0001-6433-3013 affiliations: - ref: ibu - name: Heiko Schmaljohann email: heiko.schmaljohann@uol.de orcid: 0000-0002-0886-4319 affiliations: - ref: ibu affiliations: - id: ibu name: Carl von Ossietzky University Oldenburg department: Institute for Biology and Environmental Science city: Oldenburg country: Germany - id: ifv name: Institute of Avian Research 'Vogelwarte Helgoland' city: Wilhelmshaven country: Germany - id: moin name: Michael-Otto-Institut im NABU city: Bergenhusen country: Germany abstract: | The increasing development of offshore wind farms raises concerns about potential effects on migratory songbirds. Current wind farm monitoring techniques, such as radar, infrared cameras and motion detectors, capture this risk in general, but cannot reliably identify individuals to species level and thus fail to detect species-specific exposure to these structures. Due to their spatial focus on the wind farms, we lack information on where, when and how regional weather conditions affect a bird's decision to fly offshore instead of along the coastline. To fill parts of these critical knowledge gaps, we radio-tracked eleven common migratory songbird species in the German Bight, i.e. the south-eastern North Sea, to quantify three key components of migratory decisions in songbirds: the species-specificity, geographical, and weather drivers of offshore flights. We also quantify the distances flown over open water. Our findings reveal that offshore flight behaviour is highly species-specific, with notable variation in both the probability of flying offshore and the distances travelled offshore. While we observed the highest probability of offshore flights among thrushes, especially Song Thrushes *Turdus philomelos* with almost 50% offshore flights during autumn migration, Sedge Warblers *Acrocephalus schoenobaenus* avoided sea-crossings entirely. Among all species, offshore flight probability increased with increasing wind speed towards the sea and decreased with increasing distance to the coastline at the point of departure. Our results underscore that species identity, departure geography, and weather conditions are essential factors in offshore wind farm risk assessments for migratory songbirds; neglecting these context dependencies would compromise the accuracy of assessments and the effectiveness of mitigation strategies. keywords: - bird migration - departure decision - routing - radio-telemetry - multi-state model - renewable energy - offshore wind energy bibliography: references.bib license: CC BY 4.0 --- ```{r setup, include=FALSE} library(dplyr) library(knitr) # R version R <- "4.5.2" # data files <- list.files(pattern = "data_flights", recursive = TRUE) flights <- do.call(rbind, lapply(files, read.csv)) tag <- read.csv("data/tagDeps.csv") %>% rename(speciesEN = motusEnglishName) species <- c( "Prunella modularis", "Turdus merula", "Sylvia atricapilla", "Acrocephalus scirpaceus", "Alauda arvensis", "Sylvia borin", "Curruca communis", "Turdus iliacus", "Acrocephalus schoenobaenus", "Turdus philomelos", "Phylloscopus trochilus" ) # results ms <- read.csv("results/multi-state.csv") mx <- read.csv("results/mixture.csv") # functions hdi <- function(x, .width = 0.9) { x <- sort(x) n <- length(x) gap <- max(1, min(n - 1, round(n * .width))) int <- 1:(n - gap) int_widths <- x[int + gap] - x[int] min_idx <- which.min(int_widths) out <- c(x[min_idx], x[min_idx + gap]) names(out) <- c("lower", "upper") attr(out, "Width") <- gap / n out } hpdi <- function(x, unit = "%", digits = 0, ...) { int <- hdi(x, ...) scale_factor <- if (unit == "%") 100 else 1 mean_val <- round(mean(x) * scale_factor, digits) int <- round(int * scale_factor, digits) label <- paste0(if (unit %in% c("%", "")) unit else paste0(" ", unit)) paste0(mean_val, label, " (", int[1], "--", int[2], label, ")") } ``` # Introduction As global demand for renewable energy continues to rise, offshore wind farms have emerged as a central component of sustainable energy strategies [@Esteban_2011:wowe]. Their rapid expansion has prompted growing concern about potential ecological impacts, particularly for wildlife that intersects with offshore infrastructure. In addition to marine animals, migratory songbirds also face potential risks when crossing the sea during migration. First, they may suffer direct mortality from collisions with offshore structures---a hazard that has been documented for songbirds [e.g. @Hüppop_2016:bcaao]. Second, avoidance of wind farms could increase the energetic cost of migration and delay arrival at the migratory destination. Both effects are poorly understood [@Hüppop_2006:bmsap]. To gain a comprehensive understanding of these direct interactions with wind farms and potential risks to populations, we need to understand what proportion of migratory birds actually choose the route across the sea. Addressing these knowledge gaps requires individual tracking on an regional scale. For larger species that can be tracked using GPS devices, evidence shows that birds fly at altitudes associated with collision risk and exhibit avoidance behaviour in response to offshore wind farms. Birds may detour horizontally around wind farms or increase their flight altitude to avoid them [@Schwemmer_2023:brtow], and they might even return to their initial location [@Lai_2024:ebsam]. Conversely, attraction to offshore wind farms has also been observed at different spatial scales, indicating complex and species-specific responses to offshore infrastructure [@Johnston_2022:iaaar]. Most migratory birds belong to the songbird suborder Passeri, a group that is both taxonomically diverse and numerically dominant. Many species migrate nocturnally [@Dorka_1966:djutz] and undertake long-distance flights over open water [@DeLuca_2015:tmba1; @Bairlein_2012:cmoa2], yet their offshore movements remain largely undocumented at the species level. Conventional monitoring approaches used around wind farms, such as radar and infrared cameras, provide valuable general information but cannot identify birds to species---a critical limitation when assessing population-level vulnerability. While acoustic monitoring can identify species through their calls, many species do not vocalise during flight, making it impossible to quantify the proportion of individuals using offshore routes [@Beasse_2025:qnbmu]. Previous tracking studies in the North Sea region have shown that up to 25% of songbird individuals migrate offshore [@Brust_2021:usoso], and that environmental conditions---particularly weather---strongly influence migratory decisions over open water [@Brust_2019:tcont; @Rüppel_2023:drald]. Offshore wind in particular is a key driver increasing offshore flight probability [@Deppe_2015:fwada; @Dossman_2015:teowa; @Rüppel_2023:tutbe]. Although general patterns of migration phenology [e.g. @Tottrup_2011:tacoa; @Lemke_2013:acams] and flight altitude [e.g. @Bruderer_2018:vdobm; @Liechti_2018:mmlpn; @Sjöberg_2018:blrnd] are well documented, critical species-specific behaviours remain largely unresolved. Consequently, substantial gaps persist in our understanding of how individuals and species with different migration strategies interact with offshore wind farms during migration, and how these differences translate into collision risk. Due to their small body size, monitoring songbirds in offshore environments requires lightweight radio transmitters and automated telemetry networks capable of detecting and recording individual movements [@Taylor_2017:tmwts; @Mitchell_2025:cmoam]. Radio-telemetry data, while powerful, present inherent methodological challenges, including imperfect detection and limited spatial coverage [@Crewe_2019:drosu]. To address these limitations, we apply a novel method to reconstruct flight paths by inferring birds' movements from raw detection data [@Rüppel_2026:marpt] and explicitly accounting for detection uncertainty. In this study, we quantify two key dimensions of potential exposure to offshore wind farms for songbirds facing the North Sea during autumn migration: (i) the offshore flight probability, i.e. the probability to cross the North Sea, and (ii) the distance travelled over water. These metrics can reveal inter-specific variation in offshore flight probability, identify which species combine a high offshore flight probability with long-distance offshore flights (the combination that yields the greatest potential exposure), and how departure geography---specifically the distance of an individual's initial location from the coastline---modulates offshore flight probability and thus overall exposure risk. Together, these insights provide empirical behavioural data needed to parameterise collision risk models and to guide conservation planning decisions for offshore wind farm development in the North Sea. # Methods ## Radio-tracking During the autumn migration periods (August to October) from 2017 to 2025, we tracked a total of `r length(tag$speciesEN)` songbirds from `r length(unique(tag$speciesEN))` common species across Schleswig-Holstein, northern Germany (@tbl-data). The tracked species are expected to follow a south-western migration direction based on ring recoveries [@Bairlein_2014:advrd], and would therefore have to cross or circumvent the North Sea. All birds were captured using mist nets at various locations within the region (@fig-map_cat) during species-specific peak migration times; this fieldwork was conducted annually throughout the study period (except for 2022). We tagged both adults and juveniles in proportion to their natural abundances, thereby ensuring that our sample accurately reflects the species' overall age structure. Each bird was equipped with a uniquely signalling radio transmitter using flexible leg-loop harnesses adjusted to the bird's body size [@Naef-Daenzer_2007:aaftf]. Transmitters were manufactured by Lotek Wireless Inc. and had similar transmitting properties at burst intervals below 10 s. Most individuals were fitted with NTQB2-1 tags, while Willow Warblers *Phylloscopus trochilus* received lighter NTP-1-M tags to account for their smaller body mass. For larger species such as Song Thrush *Turdus philomelos* and Eurasian Skylark *Alauda arvensis* we partially used NTQB2-4-2 tags. Radio transmitters including harness did not exceed 4% of the lowest birds' body mass recorded in this study. After tagging, birds were released immediately at the capture site. Individual movements were monitored using an automated radio-telemetry receiver network (@fig-map_cat). The network comprises >200 receiver stations that extend across the German Bight's coastline and islands, enabling regional-scale tracking of tagged individuals during migration. Each directional antenna reliably detects tags out to roughly 10 km along its main beam, with peak performance extending as far as 50 km under optimal conditions. All receiver stations are part of the global collaborative Motus Wildlife Tracking System [@Taylor_2017:tmwts]; for more information, see . ## Data processing All analyses were conducted in R `r R` [@R4.5.2]. Detection data was retrieved from Motus using the `motus` R package [@motusR_2024]. To ensure data reliability, we used run length---the number of consecutive detections of a uniquely coded signal burst---to filter out likely false positives, as very short bursts are more likely to represent noise. Only detections with run lengths of more than three consecutive bursts were included in the analysis. A few biologically implausible detections located far outside the study region were also removed using a geographic filter. We identified individual flights, defining a 'flight' as a sequence of detections within a single day (from noon to noon, as we expected that the tracked species migrate primarily during night or the early morning hours) that: (i) originated east of 8°E and north of 54°N, and (ii) spanned a minimum of 50 km between the first and last receiver of that day. The 50 km threshold was chosen to filter out local movements---such as short relocations to nearby suitable habitat---or spurious detections caused by a bird being picked up by adjacent receiver stations without any real displacement and therefore is based on the typical distance between receiver stations. Because diurnal departures (such as those occasionally recorded for Eurasian Skylarks) generally fail to meet these criteria, they are implicitly excluded by this method, ensuring that behaviours are directly comparable across species. Coarse flight paths were modelled using the `movetrack` R package [@Rüppel_2026:marpt] and intersected with the coastline using `sf` [@Pebesma_2023:sdswa], allowing us to quantify the flight distance over water for each flight (@fig-lengthW). Because detection probabilities are imperfect, we sometimes recorded a departure even though the bird was not detected again later that night. In those cases we defined a 'departure' as any instance in which a bird was observed at a site at least 50 km from its previous location within the following 24 h. For these individuals we know only the date of departure---the exact route is unknown---but, based on this information, we can account for differing detection probabilities across behavioural states. To support a multi-state model accounting for differing detection probabilities, routing behaviour was discretised by classifying flights as 'offshore' if at least one location estimate within the flight path was situated more than 10 km from the nearest landmass, and 'onshore' otherwise. Although the 10 km threshold is somewhat arbitrary, it offers a practical and biologically informed criterion that improves upon previous approaches, which relied solely on the start and end points of a flight [@Brust_2019:tcont; @Rüppel_2023:tutbe, Supplement S1]. ```{r, echo=FALSE} #| label: tbl-data #| tbl-cap: Number of tagged birds, detected flights, and departures without flight data per species. fl <- data.frame(unclass(table(flights$speciesEN, is.na(flights$flightID)))) fl$speciesEN <- row.names(fl) output <- tag |> summarise(n = n(), .by = speciesEN) |> merge(fl, by = "speciesEN") |> rename(Species = speciesEN, Tagged = n) |> mutate(Species = paste(Species, paste0("*", species, "*"))) totals <- output |> select(-Species) |> summarise(across(everything(), sum)) |> mutate(Species = "Total") bind_rows(output, totals) |> kable(col.names = c("Species", "Tagged", "Flights", "Departures")) ``` ![Tagging sites (diamonds) and radio-telemetry receiver locations (dots) together with the modelled flight path for each individual flight (all species combined, n = 376 flights). Colours indicate flight classification as offshore and onshore.](figures/map_cat){#fig-map_cat width="80%"} ![Modelled flight paths per species indicating flight distance over water. The easternmost flight of an Greater Whitethroat *Curruca communis* (grey line) is the only one that did not cross any water.](figures/lengthW){#fig-lengthW width="100%"} Hourly wind data with a spatial resolution of 0.25° $\times$ 0.25° was sourced from the ERA5 reanalysis dataset provided by the Copernicus Climate Change Service [@Hersbach_2023:ehdos_2025]. This included westerly and southerly wind components at 10 m above ground, representing the near-surface wind conditions birds encounter prior to departure. Moreover, songbird migration in coastal central Europe is concentrated at low elevations, typically between 0 and 1500 m above sea level [@Bruderer_2018:vdobm; @Hüppop_2006:bmsap]. For each flight, wind conditions at the initial location were extracted for every sunset between tagging and departure, using the nearest ERA5 grid cell at sunset, rounded to the nearest hour. ## Analysis ### Offshore flight probability To assess species-specificity in migratory departure behaviour, we applied a multi-state modelling framework adapted from @Rüppel_2023:tutbe. In this four-state model, all individuals began in the 'stopover' state at the time of tag deployment. When a flight was detected, the individual transitioned to either the 'onshore' or 'offshore' state---depending on the classification described in the data processing section---and subsequently to the final 'departed' state. In an 'departure' event, when a bird left the stopover site but no flight path could be estimated, the model inferred the departure route by estimating continuous-state probabilities from the joint posterior distribution of all observations. Transitions were assumed to be unbiased, with separate detection probabilities for onshore and offshore flights. Two birds exhibiting a prolonged stopover of at least two months were excluded from this analysis. The resulting encounter history matrix contained 409 individuals observed over a period of up to 38 days. For 34 of these individuals only the departure time was known, but no flight path was recorded. Species-specific intercepts were included for both departure and offshore flight probabilities, while assuming that behavioural responses to wind conditions were comparable across species. To share information across species, we therefore defined joint populations of species-specific varying slopes for both components of the model and modelled their covariance using a multivariate normal distribution. Daily departure probability was modelled using quadratic effects of both wind components (westerly and southerly) to allow for reduced likelihood of departure under strong wind conditions. Offshore flight probability was modelled as a linear function of wind speed, based on the assumption that birds select for favourable conditions before departing [e.g. @Brust_2019:tcont; @Deppe_2015:fwada; @Dossman_2015:teowa]. Initial location---represented by the interaction between longitude and latitude---was included as a covariate in the offshore flight model, accounting for potential spatial influences on route selection. ### Flight distance over water ````{=html} ```` ![Directed acyclic graph (DAG) demonstrating the state-based model. $z$ indicates the hidden migratory state, $G$ is the total flight distance, and $D$ (the estimand) and $D^\star$ denote the true and the observed flight distance over water, respectively.](figures/DAG){#fig-DAG width="50%"} We propose a causal framework to investigate the drivers of individual flight distance over water, as depicted in the directed acyclic graph (DAG) in @fig-DAG. In this framework, we assume that the observed flight distance over water for birds departing from a stopover site in the study area during autumn arises from one of two distinct migratory states: (i) flight distances over water shaped by wind and initial location, or (ii) stochastic flight distances over water, with little influence from wind or spatial factors, such as the crossing of large rivers or minor inaccuracies in the modelled flight path. To estimate the causal effects of wind and initial location on the individual flight distance over water, we therefore used a state-based mixture model. This approach assumes two possible states ($z_i$) for each bird. The probability of a bird being in state $z_i = 1$ (wind- and location-dependent flight) was modelled as a linear function of wind parameters at sunset prior to departure ($W_i$) and initial location ($X_i$, including the interaction between latitude and longitude): \begin{align*} z_i &\sim \text{Bernoulli}(p_i) \\ \text{logit}(p_i) &= \psi_{sp[i]} + \delta_{sp[i]} W_i + \theta_p X_i \end{align*} Flight distance over water ($D_i$) was modelled as a mixture of two Log-Normal distributions, corresponding to the two migratory states: \begin{align*} D_i &\sim \begin{cases} \text{Log-Normal}(\log(G_i) \mu_i, \sigma_1), & \text{ if } z_i = 1 \\ \text{Log-Normal}(\log(G_i) \gamma_{sp[i]}, \sigma_0), & \text{ if } z_i = 0 \end{cases} \\ \text{logit}(\mu_i) &= \alpha_{sp[i]} + \beta_{sp[i]} \mathcal{W}_i + \theta X_i \end{align*} In both cases, $D_i$ is defined as a proportion of the total flight length $G_i$ (with $G_i >D_i$). For $z_i = 1$, the proportion is a linear function of wind parameters $\mathcal{W}_i$ and initial location $X_i$, while we capture small, random overflights of coastal waters ($z_i = 0$) with a species-specific intercept. Since we do not know the exact flight distances, but can only model coarse flight paths to calculate the observed flight distances over water $D_i^\star$, we include a Log-Normal measurement error model (see Supplement S2 for simulation): $$ D_i^\star \sim \text{Log-Normal}(\log(D_i), 0.1) $$ Individuals that departed without a detected flight, but with a known departure date, were also included in the analysis. For those birds, we imputed flight distances over water assuming the minimum total flight length to be at least the distance between the receiver station of the first and last detection: $$ G_i \sim \text{Log-Normal}(\log(\eta_{sp[i]}), \sigma), $$ where $\eta_{sp}$ is the mean total flight length per species. We defined regularising priors with minimal influence on the results: \begin{align*} D &\sim \text{Log-Normal}(\log(250), 0.5) \\ \text{logit}^{-1}(\psi_{sp}) &\sim \text{Beta}(5, 5) \\ \text{logit}^{-1}(\alpha_{sp}) &\sim \text{Beta}(5, 2) \\ \text{logit}^{-1}(\gamma_{sp}) &\sim \text{Beta}(1, 5), \text{ for } \gamma < \alpha \\ \theta &\sim \text{Normal}(0, 0.5) \\ \sigma &\sim \text{Exponential}(1) \end{align*} For the slope parameters $\delta_{sp}$ and $\beta_{sp}$, we pooled information across species by defining the joint normal distribution prior $$ \beta_{sp} \sim \text{MVNormal}(\beta, \Sigma) $$ with hyper-priors \begin{align*} \Sigma &= \texttt{diag}\mathtt{\_}\texttt{matrix}(\tau) \times \Omega \times \texttt{diag}\mathtt{\_}\texttt{matrix}(\tau) \\ \Omega &\sim \text{LKJcorr}(4) \\ \tau &\sim \text{Exponential}(3) \end{align*} using non-centred parameterisation. The same structure with its own set of hyper-priors was used for $\delta_{sp}$. The model was fitted using the Hamiltonian Monte Carlo engine Stan [@Stan2.36] through `CmdStanR` [@cmdstanr0.9.0]. We validated the model with simulated data to ensure that it could recover the simulated parameter values and performed posterior predictive checks to assess the fit of the model to the data. Visual inspection of the trace plots indicated model convergence and inferences are based on over 1000 effective samples from the posterior distribution. We report posterior distribution means and 90% highest posterior density intervals (HPDI). # Results We tracked 376 individual 'flights' and 35 'departures' of 828 individuals of 11 songbird species facing the North Sea (@tbl-data). 22 birds left the stopover site during the night following tagging. The mean daily departure probability was estimated at `r hpdi(ms$psi)`, corresponding to a median minimum stopover duration of 9 days and a maximum of 78 days. Departure probability was highest under easterly (offshore) winds and tended to increase with northerly winds (i.e. tailwind for southbound migration, see Supplement S3). ## Offshore flight probability The mean offshore flight probability was estimated at `r hpdi(ms$chi)`, varying from as low as `r hpdi(ms |> filter(species == "Sedge Warbler") |> pull(chi))` in the Sedge Warbler *Acrocephalus schoenobaenus* to as high as `r hpdi(ms |> filter(species == "Song Thrush") |> pull(chi))` in the Song Thrush (@fig-ms_chi). While not all birds in the sample encountered offshore winds, the probability of offshore flight increased with easterly (i.e. offshore) wind, a trend that was relatively consistent across species (@fig-ms_chi_wind). Offshore flight probability also showed geographic patterns: it decreased with increasing longitude (i.e. farther inland) and increased with latitude. At our north-western coastal tagging sites, the probability was around 50%, compared to approximately 20% at the south-western coastal site. Beyond roughly 50 km from the coast, offshore flight probability dropped to essentially zero (@fig-ms_chi_lon). ![Posterior distributions of mean offshore flight probability per species. For sample size see @tbl-data.](figures/ms_chi){#fig-ms_chi width="65%"} ![Effect of westerly (top panels) and southerly (bottom panels) wind on offshore flight probability, as predicted by the multi-state model with all other variables held at their mean values. The left panels show posterior mean predictions for each species, while the right panels present the overall posterior means, 100 lines sampled from the posterior, and the raw data distributions for flights classified as offshore (top) and onshore (bottom).](figures/ms_chi_wind){#fig-ms_chi_wind width="90%"} ![Effect of initial longitude (i.e. distance from the coast) on offshore flight probability, shown as 500 lines sampled from the posterior. Lightblue curves correspond to 54.9°N, darkblue curves to 54.3°N. The marginal plots on the left give the posterior distributions of offshore flight probability for the north-western and south-western coastal site, respectively. The horizontal extent of the figure spans ~50 km, with the right edge situated about 50 km inland.](figures/ms_chi_lon){#fig-ms_chi_lon width="65%"} Detection probability was estimated at 97% (93--100%) for offshore flights and 89% (87--92%) for onshore flights. ## Flight distance over water The mean probability that flight distance over water was influenced by wind and initial location ($z = 1$) was estimated at `r hpdi(mx$p)`. However, this effect declined significantly with increasing longitude (i.e. further inland). At the coast, approximately 70--80% of flights were affected by wind and initial location, while around 50 km inland, this proportion decreased to 10--30%. Strong westerly and easterly winds had the greatest influence on state probability, with higher wind speeds associated with a greater likelihood of being in state $z = 1$ (see Supplement S3). Flight distances over water increased substantially with easterly (i.e. offshore) winds (@fig-D_u10). ![Effect of westerly wind on flight distance over water, as predicted by the state-based mixture model for 200 km flights, with all other variables held at their mean values. The left panel shows posterior mean predictions for each species, while the right panel presents the overall posterior mean along with 100 lines sampled from the posterior. Observed flight distances over water $D^\star$ (circles), scaled to a total flight distance of 200 km, and the corresponding model predictions $D$ (dots) based on the measurement model are shown. Colours indicate the predicted value of $p$, i.e. the probability of being wind- and location dependent, for each flight.](figures/D_u10){#fig-D_u10 width="85%"} # Discussion ## Offshore flight probability Our findings demonstrate substantial interspecific variation in the offshore flight probability during autumn migration among songbird species. Even within genera, we observed a high variation---for example, between Song Thrush and Eurasian Blackbird *Turdus merula*, as well as between Eurasian Reed Warbler *Acrocephalus scirpaceus* and Sedge Warbler. Notably, no Sedge Warblers were observed crossing the sea, likely because their migration is oriented slightly more toward the south [@Bairlein_2014:advrd]. In contrast, larger species such as Song Thrush and Eurasian Skylark showed a greater tendency for offshore flights. These contrasting behaviours may be related to species-specific energetics. Larger birds can store a greater relative fuel load because metabolic costs scale less steeply than body mass, yielding a more favourable energy-to-weight ratio [@Hedenström_2010:eemwi]. This advantage enables longer non-stop flight ranges and higher cruise speeds, which potentially raises the probability that birds will cross barriers rather than detour around unsuitable habitat. A higher offshore flight probability not only increases theoretical exposure to risks associated with offshore structures, potentially leading to increased mortality. @Hüppop_2016:bcaao empirically showed that the majority of carcasses found on an offshore platform within our study area were thrushes, whereas many smaller, abundant species were under-represented. Given these pattern, we argue that assessments of exposure to offshore wind farms---and the associated risk of collision---are best conducted at the species level [@Hüppop_2006:bmsap]. Offshore flight probability may also vary among biogeographical populations. However, the inability to reliably distinguish these populations in the field renders such population-level inferences speculative. Consequently, our findings should be interpreted at the species level, applying to individuals that transit the study area during peak autumn migration. Our results support a two-step, wind-mediated migration process. First, songbirds appear to select departure nights based on favourable wind conditions---typically light tailwinds. At a broader scale, these wind patterns shape seasonal variations in migration intensity across taxa [@Bradaric_2020:wadss; @Erni_2002:wargt]. In Europe, autumn migration is often concentrated during just a few nights due to the predominance of westerly (head) winds. Second, once in flight, birds' routing decisions are strongly influenced by wind direction. The probability of offshore flight increased significantly under easterly (offshore) winds---an effect consistent across most species and robust across studies [@Brust_2019:tcont; @Rüppel_2023:drald; @Rüppel_2023:tutbe]. Since we lack departures under easterly winds of some species, interspecific differences in wind response may partly reflect unequal wind exposure rather than genuine behavioural divergence. While wind drift can lead to substantial displacements in migratory birds [@Liechti_2006:bbbtw], we consider this explanation unlikely in our study. Only 24 individuals (6% of the sample) migrated when wind speeds exceeding 8 ms^-1^ (> Beaufort 4). Moreover, Sedge Warblers stayed near the coast regardless of wind direction, and birds detected at the same time sometimes made opposite routing decisions [@Rüppel_2023:drald]. Several birds also crossed the German Bight despite headwinds, indicating notable behavioural flexibility. Taken together, these findings indicate that active navigation is involved in the birds' movements. We also detected clear spatial gradients in offshore flight probability, with values decreasing from west to east and from north to south across the study area. As offshore flight probability decreases further inland, this suggests that birds staging closer to the coast---particularly in the northern part of our study area---are more likely to cross the sea. It is important to note, however, that absolute estimates of offshore flight probability are influenced by how 'offshore' flights are defined. Consequently, while our results are consistent with previous work, they cannot be compared numerically with studies that use different offshore criteria [e.g. @Brust_2019:tcont; @Rüppel_2023:tutbe]. Detection probabilities differed from those reported in @Rüppel_2023:tutbe analysing spring migration. Offshore detection probability was higher in our study, likely due to more extensive receiver coverage along the southward (autumn) migration route. In contrast, onshore detection was lower, as the receiver network is restricted to the immediate coastline, while some individuals might have chosen a southward route further inland. These differences underscore the importance of accounting for detection bias when interpreting raw telemetry data. ## Flight distance over water Despite interspecific differences in offshore flight probability, the distance travelled over water was relatively similar across species. This pattern is likely driven by the triangular geometry of the coastline, which constrains flight distance over water. Nonetheless, most flights had a wind- and initial location-dependent flight distance over water, again highlighting the strong effects of wind on songbird migration patterns [@Liechti_2006:bbbtw]. Easterly (offshore) winds prolonged these flights, particularly affecting departures close to the coast. This could potentially be time saving by crossing the North Sea within the presumed south-westward migration direction [@Alerstam_2001:dibm], but could also involve wind drift [@Liechti_2006:bbbtw]. Extended flight distances over water increase the likelihood that birds will encounter offshore wind farms, because the majority of existing farms are situated far from the coast. Consequently, birds experience greater cumulative exposure to turbines---a pattern that will accelerate as offshore wind capacity expands, since future developments are being concentrated in these offshore zones. In addition, they face a heightened risk of encountering deteriorating weather, a particularly serious threat given the lack of suitable landing options for songbirds at sea [@Hüppop_2006:bmsap; @Hüppop_2019:mbab]. Exposure to offshore wind farms, and thus collision risk, is altitude-dependent [@Johnston_2013:mfhom]. In our study we used VHF tags, which only transmit radio-signals, so altitudinal information could not be derived. However, most songbird migration occurs at relatively low altitudes [<2000 m, @Bruderer_2018:vdobm] and altitude is strongly influenced by wind and weather conditions [@Liechti_2006:bbbtw; @Shamoun-Baranes_2017:accfd]. Under poor visibility birds tend to descent while searching for landing sites and may be attracted to artificial lighting, potentially increasing collision risk [@Walsh_2025:malan]. Incorporating complementary radar surveys into future study designs would allow for more detailed, altitude-specific collision risk assessments. # Conclusion In this study we use individual-level behavioural data to quantify the potential exposure of migratory songbirds to offshore wind farms, uncovering species-specific differences in offshore flight behaviour during autumn migration. These insights provide empirical data needed to parameterise collision risk models and to guide spatial planning decisions for offshore wind farm development. Although the flight distance over water was similar across species, thrushes showed the highest offshore flight probabilities, rendering them especially vulnerable---a pattern that matches the elevated fatality rates reported for this group [@Hüppop_2016:bcaao]. These findings underscore the importance of conducting risk assessments at the species level when developing conservation plans, The behavioural parameters we provide, constitute essential inputs for comprehensive collision risk models for migratory songbirds. However, accurate assessments of collision risk require not only data on exposure but also on avoidance behaviour [@Skov_2025:hmtrl]. Such information exists for larger taxa like seabirds and waders [e.g. @Schwemmer_2023:brtow], but is currently unavailable for offshore migrating songbirds and for other migratory groups such as bats [@Hüppop_2019:mbab; @Solick_2021:orona]. Future research should fill this gap for songbirds, particularly through improved tracking technologies enabling behavioural observations. Minimising attraction through lighting design and implementing temporary turbine shutdowns during peak migration nights may also substantially reduce risk [@Hüppop_2006:bmsap]. Effective mitigation measures should prioritise siting and design decisions that reduce exposure in high-risk areas, such as avoiding turbine placement in zones with concentrated migration, e.g. near coastal bottlenecks and coastal areas in general. # Acknowledgements We honour the memory of Ommo Hüppop, who recently passed away, and acknowledge his invaluable contributions. We also thank Mario de Neidels, Thomas Mertens, and Heinz-Hinrich Blikslager for their decisive technical support. Funding was granted from the German Federal Agency for Nature Conservation with funds from the Federal Ministry for the Environment, Nature Conservation and Nuclear Safety and Consumer Protection, grants numbers 3151986140 and 3515822100 to Ommo Hüppop employing VB, GR, and TK, and 352315100B to HS employing TK and GR. Funding was also provided in part by German Research Foundation SFB 1372 'Magnetoreception and navigation in vertebrates' (project number 395940726) to HS and by the German Research Foundation under Germany's Excellence Strategy---EXC 3051/1 'NaviSense'---project number 533653176. As Motus is a collaborative effort, we would like to thank Birds Canada, Sander Lagerveld, and Morten Elmeros on behalf of everyone involved. We are also grateful to our field team Annika Feldmann, Samuel Knoblauch, Florian Packmor, Jan Ulber, and Jonas Wobker. # Ethical statement Experimental procedures were approved by the Ministry for Energy Transition, Climate Protection, Environment and Nature Schleswig–Holstein, Germany, under licence numbers V244-69134/2016(92-8/16) and IX554-109163/2023(36-7/23). # Conflict of interest The authors declare no conflicts of interest. # Data availability statement Data and code to reproduce this study are available from the Codeberg Git repository or through the accompanying Dataverse at . # References