Skip to content

Commit

Permalink
bugfix introduced at last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stineb committed May 15, 2024
1 parent 4bebf0b commit e74fddd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/ingest_globalfields.R
Original file line number Diff line number Diff line change
Expand Up @@ -1173,8 +1173,8 @@ extract_pointdata_allsites_shp <- function( dir, df_lonlat, layer ){
df <- sf::st_intersection(pts, shp) |>
as_tibble() |>
bind_cols(df_clean, .) |>
right_join(df_lonlat, by = c("lon", "lat"))
# dplyr::select(-lon, -lat)
right_join(df_lonlat, by = c("lon", "lat")) |>
dplyr::select(-lon, -lat)

return(df)
}
Expand Down

0 comments on commit e74fddd

Please sign in to comment.