Last updated on 2024-12-23 12:49:54 CET.
Package | ERROR | NOTE | OK |
---|---|---|---|
cubeview | 1 | 10 | 2 |
leafem | 1 | 2 | 10 |
leafgl | 1 | 12 | |
leafpop | 1 | 12 | |
leafsync | 1 | 10 | 2 |
mapedit | 1 | 12 | |
mapview | 1 | 2 | 10 |
plainview | 1 | 2 | 10 |
remote | 1 | 6 | 6 |
slideview | 1 | 2 | 10 |
Current CRAN status: ERROR: 1, NOTE: 10, OK: 2
Version: 0.2.0
Check: Rd cross-references
Result: NOTE
Found the following Rd file(s) with Rd \link{} targets missing package
anchors:
cubeViewOutput.Rd: shinyWidgetOutput
cubeview.Rd: levelplot
Please provide package anchors for all Rd \link{} targets not in the
package itself and the base packages.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-windows-x86_64
Version: 0.2.0
Check: package dependencies
Result: ERROR
Package required but not available: ‘raster’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.2.0
Check: LazyData
Result: NOTE
'LazyData' is specified without a 'data' directory
Flavors: r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64
Current CRAN status: ERROR: 1, NOTE: 2, OK: 10
Version: 0.2.3
Check: Rd cross-references
Result: NOTE
Found the following Rd file(s) with Rd \link{} targets missing package
anchors:
addFeatures.Rd: addCircleMarkers, addPolylines, addPolygons
addRasterRGB.Rd: plotRGB, addRasterImage
addStarsImage.Rd: addRasterImage
garnishMap.Rd: addLayersControl
Please provide package anchors for all Rd \link{} targets not in the
package itself and the base packages.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-windows-x86_64
Version: 0.2.3
Check: package dependencies
Result: ERROR
Packages required but not available: 'leaflet', 'raster'
Packages suggested but not available for checking: 'leafgl', 'plainview'
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
Flavor: r-devel-linux-x86_64-debian-gcc
Current CRAN status: ERROR: 1, OK: 12
Version: 0.2.2
Check: package dependencies
Result: ERROR
Package required but not available: ‘leaflet’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
Flavor: r-devel-linux-x86_64-debian-gcc
Current CRAN status: ERROR: 1, OK: 12
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-gcc
Current CRAN status: ERROR: 1, NOTE: 10, OK: 2
Version: 0.1.0
Check: package dependencies
Result: ERROR
Package required but not available: ‘leaflet’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.1.0
Check: dependencies in R code
Result: NOTE
Namespace in Imports field not imported from: ‘leaflet’
All declared Imports should be used.
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc
Version: 0.1.0
Check: LazyData
Result: NOTE
'LazyData' is specified without a 'data' directory
Flavors: r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64
Current CRAN status: ERROR: 1, NOTE: 12
Version: 0.6.0
Check: package subdirectories
Result: NOTE
Problems with news in ‘NEWS.md’:
Cannot extract version info from the following section titles:
Bug Fixes
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64
Version: 0.6.0
Check: Rd cross-references
Result: NOTE
Found the following Rd file(s) with Rd \link{} targets missing package
anchors:
selectFeatures.Rd: geos_binary_pred
Please provide package anchors for all Rd \link{} targets not in the
package itself and the base packages.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-windows-x86_64
Version: 0.6.0
Check: package dependencies
Result: ERROR
Packages required but not available:
'leafem', 'leaflet', 'leaflet.extras', 'leafpm', 'mapview', 'raster'
Package which this enhances but not available for checking: ‘geojsonio’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.6.0
Check: LazyData
Result: NOTE
'LazyData' is specified without a 'data' directory
Flavors: r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64
Current CRAN status: ERROR: 1, NOTE: 2, OK: 10
Version: 2.11.2
Check: Rd cross-references
Result: NOTE
Found the following Rd file(s) with Rd \link{} targets missing package
anchors:
mapView.Rd: levelplot, addControl, addLegend, addRasterImage,
addCircles, addPolygons, addPolylines, addMapPane,
highlightOptions, st_sf, brick, satellite, st_sfc, st_bbox,
SpatialPixelsDataFrame, SpatialGridDataFrame,
SpatialPointsDataFrame, SpatialPoints, SpatialPolygonsDataFrame,
SpatialPolygons, SpatialLinesDataFrame, SpatialLines
mapviewColors.Rd: level.colors
mapviewOptions.Rd: addRasterImage, addLegend, addMapPane,
rasterOptions
mapviewOutput.Rd: shinyWidgetOutput
viewExtent.Rd: popupTable, addControl, addRectangles
viewRGB.Rd: plotRGB
Please provide package anchors for all Rd \link{} targets not in the
package itself and the base packages.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-windows-x86_64
Version: 2.11.2
Check: package dependencies
Result: ERROR
Packages required but not available:
'leafem', 'leaflet', 'raster', 'satellite'
Packages suggested but not available for checking:
'leaflet.extras2', 'leafsync', 'plainview'
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
Flavor: r-devel-linux-x86_64-debian-gcc
Current CRAN status: ERROR: 1, NOTE: 2, OK: 10
Version: 0.2.1
Check: Rd cross-references
Result: NOTE
Found the following Rd file(s) with Rd \link{} targets missing package
anchors:
plainView.Rd: raster, levelplot, brick
plainViewOutput.Rd: shinyWidgetOutput
Please provide package anchors for all Rd \link{} targets not in the
package itself and the base packages.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-windows-x86_64
Version: 0.2.1
Check: package dependencies
Result: ERROR
Package required but not available: ‘raster’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
Flavor: r-devel-linux-x86_64-debian-gcc
Current CRAN status: ERROR: 1, NOTE: 6, OK: 6
Version: 1.2.1
Check: Rd cross-references
Result: NOTE
Found the following Rd file(s) with Rd \link{} targets missing package
anchors:
anomalize.Rd: calc, writeRaster
covWeight.Rd: getValues
deseason.Rd: writeRaster
predict.Rd: calc
remote-package.Rd: raster-package
writeEot.Rd: writeRaster
Please provide package anchors for all Rd \link{} targets not in the
package itself and the base packages.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-windows-x86_64
Version: 1.2.1
Check: for non-standard things in the check directory
Result: NOTE
Found the following files/directories:
‘vdendool_mode_01_int_predictor.grd’
‘vdendool_mode_01_int_predictor.gri’
‘vdendool_mode_01_int_response.grd’
‘vdendool_mode_01_int_response.gri’
‘vdendool_mode_01_p_predictor.grd’ ‘vdendool_mode_01_p_predictor.gri’
‘vdendool_mode_01_p_response.grd’ ‘vdendool_mode_01_p_response.gri’
‘vdendool_mode_01_r_predictor.grd’ ‘vdendool_mode_01_r_predictor.gri’
‘vdendool_mode_01_r_response.grd’ ‘vdendool_mode_01_r_response.gri’
‘vdendool_mode_01_resid_predictor.grd’
‘vdendool_mode_01_resid_predictor.gri’
‘vdendool_mode_01_resid_response.grd’
‘vdendool_mode_01_resid_response.gri’
‘vdendool_mode_01_rsq_predictor.grd’
‘vdendool_mode_01_rsq_predictor.gri’
‘vdendool_mode_01_rsq_response.grd’
‘vdendool_mode_01_rsq_response.gri’
‘vdendool_mode_01_rsq_sums_predictor.grd’
‘vdendool_mode_01_rsq_sums_predictor.gri’
‘vdendool_mode_01_slp_predictor.grd’
‘vdendool_mode_01_slp_predictor.gri’
‘vdendool_mode_01_slp_response.grd’
‘vdendool_mode_01_slp_response.gri’
‘vdendool_mode_02_int_predictor.grd’
‘vdendool_mode_02_int_predictor.gri’
‘vdendool_mode_02_int_response.grd’
‘vdendool_mode_02_int_response.gri’
‘vdendool_mode_02_p_predictor.grd’ ‘vdendool_mode_02_p_predictor.gri’
‘vdendool_mode_02_p_response.grd’ ‘vdendool_mode_02_p_response.gri’
‘vdendool_mode_02_r_predictor.grd’ ‘vdendool_mode_02_r_predictor.gri’
‘vdendool_mode_02_r_response.grd’ ‘vdendool_mode_02_r_response.gri’
‘vdendool_mode_02_resid_predictor.grd’
‘vdendool_mode_02_resid_predictor.gri’
‘vdendool_mode_02_resid_response.grd’
‘vdendool_mode_02_resid_response.gri’
‘vdendool_mode_02_rsq_predictor.grd’
‘vdendool_mode_02_rsq_predictor.gri’
‘vdendool_mode_02_rsq_response.grd’
‘vdendool_mode_02_rsq_response.gri’
‘vdendool_mode_02_rsq_sums_predictor.grd’
‘vdendool_mode_02_rsq_sums_predictor.gri’
‘vdendool_mode_02_slp_predictor.grd’
‘vdendool_mode_02_slp_predictor.gri’
‘vdendool_mode_02_slp_response.grd’
‘vdendool_mode_02_slp_response.gri’
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-patched-linux-x86_64, r-release-linux-x86_64
Version: 1.2.1
Check: package dependencies
Result: ERROR
Package required but not available: ‘raster’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 1.2.1
Check: compiled code
Result: NOTE
File ‘remote/libs/remote.so’:
Found no calls to: ‘R_registerRoutines’, ‘R_useDynamicSymbols’
It is good practice to register native routines and to disable symbol
search.
See ‘Writing portable packages’ in the ‘Writing R Extensions’ manual.
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc
Current CRAN status: ERROR: 1, NOTE: 2, OK: 10
Version: 0.2.0
Check: Rd cross-references
Result: NOTE
Found the following Rd file(s) with Rd \link{} targets missing package
anchors:
slideView.Rd: levelplot
Please provide package anchors for all Rd \link{} targets not in the
package itself and the base packages.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-windows-x86_64
Version: 0.2.0
Check: package dependencies
Result: ERROR
Package required but not available: ‘raster’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
Flavor: r-devel-linux-x86_64-debian-gcc