Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ importFrom(plyr,dlply)
importFrom(plyr,is.discrete)
importFrom(plyr,is.formula)
importFrom(plyr,join)
importFrom(plyr,ldply)
importFrom(plyr,llply)
importFrom(png,readPNG)
importFrom(purrr,cross_df)
Expand Down
4 changes: 2 additions & 2 deletions R/get_cloudmademap.R
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ get_cloudmademap <- function(
top = lonlat_upperleft$lat
)
}
tileBboxes <- ldply(split(tilesNeeded,1:nrow(tilesNeeded)),
function(df) bboxOfTile(as.numeric(df)))
tileBboxes <- bind_rows(lapply(split(tilesNeeded,1:nrow(tilesNeeded)),
function(df) bboxOfTile(as.numeric(df))))
mbbox <- c(
left = min(tileBboxes$left),
bottom = min(tileBboxes$bottom),
Expand Down
2 changes: 1 addition & 1 deletion R/get_stamenmap.R
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ retry_stamen_map_download <- function() {
# ll.lon <- NULL; rm(ll.lon);
#
# # determine bounding box
# bbs <- ldply(tiles, function(x) attr(x, "bb"))
# bbs <- bind_rows(lapply(tiles, function(x) attr(x, "bb")))
#
# bigbb <- data.frame(
# ll.lat = min(bbs$ll.lat),
Expand Down
2 changes: 1 addition & 1 deletion R/ggmap-package.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#' @importFrom png readPNG
#' @importFrom jpeg readJPEG
#' @importFrom plyr arrange compact ddply desc dlply is.discrete is.formula join
#' ldply llply .
#' llply .
#' @importFrom bitops bitOr bitShiftL bitShiftR bitAnd
#' @importFrom grDevices as.raster extendrange gray rgb
#' @importFrom stats time asOneSidedFormula
Expand Down