Skip to content

Commit

Permalink
Add dplyr::
Browse files Browse the repository at this point in the history
  • Loading branch information
damianooldoni committed Jul 17, 2024
1 parent 8b11b05 commit 15d86c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dwc_mapping.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ dwc_event_sql <- glue::glue_sql(
)
dwc_event <-
DBI::dbGetQuery(con, dwc_event_sql) %>%
arrange(as.double(gsub("VIS_", "", eventID)))
dplyr::arrange(as.double(gsub("VIS_", "", eventID)))
```

Create [Occurrence](https://rs.gbif.org/core/dwc_occurrence_2022-02-02.xml) extension:
Expand All @@ -104,7 +104,7 @@ dwc_occurrence_sql <- glue::glue_sql(
)
dwc_occurrence <-
DBI::dbGetQuery(con, dwc_occurrence_sql) %>%
arrange(as.double(gsub("VIS_", "", occurrenceID)))
dplyr::arrange(as.double(gsub("VIS_", "", occurrenceID)))
message("DONE")
```

Expand Down

0 comments on commit 15d86c3

Please sign in to comment.