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
2 changes: 0 additions & 2 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,8 @@ importFrom(httr,warn_for_status)
importFrom(jpeg,readJPEG)
importFrom(magrittr,"%>%")
importFrom(plyr,.)
importFrom(plyr,arrange)
importFrom(plyr,compact)
importFrom(plyr,ddply)
importFrom(plyr,desc)
importFrom(plyr,dlply)
importFrom(plyr,is.discrete)
importFrom(plyr,is.formula)
Expand Down
2 changes: 1 addition & 1 deletion R/get_stadiamap.R
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ stitch <- function(tiles){
)

# determine positions of tile in slate (aggregate)
order <- as.numeric( arrange(bbs, desc(ll.lat), ll.lon)$.id )
order <- as.numeric( bbs$.id[order(-bbs$ll.lat, bbs$ll.lon)] )
tiles <- tiles[order]
tiles <- lapply(tiles, as.matrix) # essential for cbind/rbind to work properly!

Expand Down
2 changes: 1 addition & 1 deletion R/ggmap-package.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#' @name ggmap
#' @importFrom png readPNG
#' @importFrom jpeg readJPEG
#' @importFrom plyr arrange compact ddply desc dlply is.discrete is.formula join
#' @importFrom plyr compact ddply dlply is.discrete is.formula join
#' ldply llply .
#' @importFrom bitops bitOr bitShiftL bitShiftR bitAnd
#' @importFrom grDevices as.raster extendrange gray rgb
Expand Down