CRAN Package Check Results for Package leafpop

Last updated on 2024-12-26 07:51:09 CET.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 0.1.0 4.28 39.84 44.12 ERROR
r-devel-linux-x86_64-debian-gcc 0.1.0 3.51 32.52 36.03 OK
r-devel-linux-x86_64-fedora-clang 0.1.0 71.27 OK
r-devel-linux-x86_64-fedora-gcc 0.1.0 69.32 OK
r-devel-windows-x86_64 0.1.0 7.00 59.00 66.00 OK
r-patched-linux-x86_64 0.1.0 5.20 38.26 43.46 OK
r-release-linux-x86_64 0.1.0 3.98 39.06 43.04 OK
r-release-macos-arm64 0.1.0 23.00 OK
r-release-macos-x86_64 0.1.0 35.00 OK
r-release-windows-x86_64 0.1.0 7.00 57.00 64.00 OK
r-oldrel-macos-arm64 0.1.0 29.00 OK
r-oldrel-macos-x86_64 0.1.0 42.00 OK
r-oldrel-windows-x86_64 0.1.0 8.00 64.00 72.00 OK

Check Details

Version: 0.1.0
Check: examples
Result: ERROR Running examples in ‘leafpop-Ex.R’ failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: popupGraph > ### Title: Create HTML strings for popups > ### Aliases: popupGraph popupImage popupTable > > ### ** Examples > > if (interactive()) { + ### example: svg ----- + + library(sp) + library(lattice) + + data(meuse) + coordinates(meuse) = ~ x + y + proj4string(meuse) = CRS("+init=epsg:28992") + meuse = spTransform(meuse, CRS("+init=epsg:4326")) + + ## create plots with points colored according to feature id + library(lattice) + p = xyplot(copper ~ cadmium, data = meuse@data, col = "grey") + p = mget(rep("p", length(meuse))) + + clr = rep("grey", length(meuse)) + p = lapply(1:length(p), function(i) { + clr[i] = "red" + update(p[[i]], col = clr) + }) + + leaflet() %>% + addTiles() %>% + addCircleMarkers(data = meuse, popup = popupGraph(p, type = "svg")) + + ### example: png ----- + pt = data.frame(x = 174.764474, y = -36.877245) + + coordinates(pt) = ~ x + y + proj4string(pt) = "+init=epsg:4326" + + p2 = levelplot(t(volcano), col.regions = terrain.colors(100)) + + leaflet() %>% + addTiles() %>% + addCircleMarkers(data = pt, popup = popupGraph(p2, width = 300, height = 400)) + + ### example: html ----- + leaflet() %>% + addTiles() %>% + addCircleMarkers( + data = breweries91[1, ], + popup = popupGraph( + leaflet() %>% + addProviderTiles("Esri.WorldImagery") %>% + addMarkers(data = breweries91[1, ], + popup = popupTable(breweries91[1, ])), + type = "html" + ) + ) + + } > > if (interactive()) { + ## remote images ----- + ### one image + library(sf) + + pnt = st_as_sf(data.frame(x = 174.764474, y = -36.877245), + coords = c("x", "y"), + crs = 4326) + + img = "http://bit.ly/1TVwRiR" + + leaflet() %>% + addTiles() %>% + addCircleMarkers(data = pnt, popup = popupImage(img, src = "remote")) + + ### multiple file (types) + library(sp) + images = c(img, + "https://upload.wikimedia.org/wikipedia/commons/9/91/Octicons-mark-github.svg", + "https://www.r-project.org/logo/Rlogo.png", + "https://upload.wikimedia.org/wikipedia/commons/d/d6/MeanMonthlyP.gif") + + pt4 = data.frame(x = jitter(rep(174.764474, 4), factor = 0.01), + y = jitter(rep(-36.877245, 4), factor = 0.01)) + coordinates(pt4) = ~ x + y + proj4string(pt4) = "+init=epsg:4326" + + leaflet() %>% + addTiles() %>% + addMarkers(data = pt4, popup = popupImage(images)) # NOTE the gif animation + + ## local images ----- + pnt = st_as_sf(data.frame(x = 174.764474, y = -36.877245), + coords = c("x", "y"), crs = 4326) + img = system.file("img","Rlogo.png",package="png") + leaflet() %>% + addTiles() %>% + addCircleMarkers(data = pnt, popup = popupImage(img)) + } > > library(leaflet) Error in library(leaflet) : there is no package called ‘leaflet’ Execution halted Flavor: r-devel-linux-x86_64-debian-clang