-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Vectorized version of osm_delete_gpx()
- Loading branch information
Showing
3 changed files
with
26 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Vectorized version of .osm_delete_gpx() | ||
|
||
#' Delete GPS traces | ||
#' | ||
#' Use this to delete GPX files. Only usable by the owner account. Requires authentication. | ||
#' | ||
#' @param gpx_id The track ids represented by a numeric or a character vector. | ||
#' | ||
#' @return Returns `NULL` invisibly. | ||
#' @family edit GPS traces' functions | ||
#' @export | ||
#' | ||
#' @examples | ||
#' vignette("how_to_edit_gps_traces", package = "osmapiR") | ||
osm_delete_gpx <- function(gpx_id) { | ||
lapply(gpx_id, .osm_delete_gpx) | ||
|
||
invisible() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.