Skip to content

Commit

Permalink
read_watersurfaces_hab: replace deprecated .data in tidy-selection
Browse files Browse the repository at this point in the history
- replace the deprecated .data$xxx by "xxx" in all (rename, select, arrange,) relocate
  • Loading branch information
cecileherr committed Dec 23, 2024
1 parent 76da084 commit 434a904
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/read_habitatdata.R
Original file line number Diff line number Diff line change
Expand Up @@ -412,9 +412,9 @@ read_watersurfaces_hab <-
)
) %>%
relocate(
.data$polygon_id,
.data$type,
.data$certain
"polygon_id",
"type",
"certain"
)

if (version %in% c("watersurfaces_hab_v1", "watersurfaces_hab_v2")) {
Expand Down

0 comments on commit 434a904

Please sign in to comment.