We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In tmap v4 is not possible to reproduce these plots with robinson projections
# working in tmap V3 library(tmap) data(World) tm_shape(World, projection = "+proj=robin") + tm_polygons("HPI") + tm_style("natural", earth.boundary = c(-180, -87, 180, 87)) + tm_format("World", inner.margins = 0.02, frame = FALSE) # tmap v4 not drawing earth boundaries library(tmap) data(World) tm_shape(World, crs = "+proj=robin") + tm_polygons("HPI") + tm_style("natural", earth.boundary = c(-180, -87, 180, 87)) + tm_format("World", inner.margins = 0.02, frame = FALSE)
The text was updated successfully, but these errors were encountered:
See: #929
Sorry, something went wrong.
It's working now, but don't forget to set frame = TRUE.
frame = TRUE
No branches or pull requests
In tmap v4 is not possible to reproduce these plots with robinson projections
The text was updated successfully, but these errors were encountered: