-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reverse dependencies: any issues? #908
Comments
Hi. For info I noticed::
Good luck with the final push |
Thx @jkennedyie see latest commit: I've enabled the passing by of |
Imho, it would be a good idea to have both syntaxes up- and running like this: if (packageVersion("tmap") > "3.99") {
# tmap4 code
tm_shape(World) +
tm_polygons("HPI",
fill.scale = tm_scale_intervals(breaks = seq(10, 45, by = 5), values = "brewer.rd_yl_bu"))
} else {
# tmap3 code
data(World)
tm_shape(World) +
tm_polygons("HPI", breaks = seq(10, 45, by = 5), palette = "RdYlBu") +
tm_layout(legend.outside = T)
} This would make the submission to CRAN easier for all of us. |
Changes in that latest commit working for me - v nice. I was wondering about best practice during the transition...yep makes sense to me until Suggests >= 4.0.0 will work. |
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
I ran the revdep check Only 3 packages erroring! https://github.com/r-tmap/tmap/actions/workflows/recheck.yaml Common errors # In mapping package
mappingEU(data = euNuts2, var = "total",
subset = ~I(nuts0_id == "ES"), facets = "nuts2")
#> Error in if (any(!dtl$sel__) || !q$drop.units) { :
#> missing value where TRUE/FALSE needed
# in MazamaSpatialPlots
#> Error in FUN(X[[i]], ...) : object 'projection' not found
#> Calls: <Anonymous> ... lapply -> FUN -> do.call -> <Anonymous> -> tmapShape.sf
Possibly a missing option here? # Error: processing vignette 'LabourMarketAreas.Rmd' failed with diagnostics:
# unused argument (view.legend.position = c("right", "bottom")) In rsat, partial matching. Seems pretty harmless genPlotGIS: warning in tm_facets(ncol = layout[2], nrow = layout[1]):
partial argument match of 'nrow' to 'nrows'
genPlotGIS: warning in tm_facets(ncol = layout[2], nrow = layout[1]):
partial argument match of 'ncol' to 'ncols' Here is the result
You can download the logs at the bottom of the page (https://github.com/r-tmap/tmap/actions/runs/11488046296) |
Thx @olivroy! Issues from your chunks 2 and 3 should be fixed now: the Only need to fix the |
Thanks @mtennekes -- I just looked at each use of Update: actually -- ncols was used once for an internal code. (geocompx/geocompr#1143) |
Cannot reproduce the |
@mtennekes In SDSR, for forthcoming tmap 4, |
@rsbivand If there are 4 facets, |
OK, noted. |
Looks like we were able to resolve all reverse dependencies issues. Thanks @mtennekes for sorting everything out! |
There are 52 reverse dependencies (all variants:
c("Depends", "Imports", "LinkingTo", "Suggests", "Enhances")
):I'll contact each maintainer with the request to check compatibility and to ask if there are any issues and/or questions.
Package maintainer: in case you have questions or found issues, please ask them here.
The text was updated successfully, but these errors were encountered: