Skip to content

Commit

Permalink
Minor changes & version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jmaspons committed Dec 15, 2023
1 parent f3d5f45 commit 4eac5f0
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: osmapiR
Title: OpenStreetMap API
Version: 0.0.0.11
Version: 0.0.0.12
Authors@R:
person("Joan", "Maspons", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-2286-8727"))
Expand Down
2 changes: 1 addition & 1 deletion R/map_notes.R
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ osm_delete_note <- function(note_id) {
resp <- httr2::req_perform(req)
obj_xml <- httr2::resp_body_xml(resp)

# TODO: parse unknown xml response (only available for moderator)
# TODO: parse unknown xml response (only available for moderators)

return(obj_xml)
}
Expand Down
3 changes: 2 additions & 1 deletion R/osmchange.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
#'
#' Update tags, members and/or latitude and longitude.
#'
#' @param x A `data.frame` with the columns `type` and `id`.
#' @param x A `data.frame` with the columns `type` and `id` with unique combinations of values plus columns specifying
#' tags, members or latitude and longitude.
#' @param tag_keys A character vector with the keys of the tags that will be modified. If missing (default),
#' all tags will be updated, removed or created (doesn't work for `x` with tags in a wide format). If `FALSE`, don't
#' modify tags.
Expand Down
4 changes: 2 additions & 2 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ All API end points implemented. Requires testing and vignettes explaining the fl
You can install the development version of osmapiR from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("jmaspons/osmapiR")
# install.packages("remotes")
remotes::install_github("jmaspons/osmapiR")
```

## Examples
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ You can install the development version of osmapiR from
[GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("jmaspons/osmapiR")
# install.packages("remotes")
remotes::install_github("jmaspons/osmapiR")
```

## Examples
Expand Down
3 changes: 2 additions & 1 deletion man/osmchange_modify.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4eac5f0

Please sign in to comment.