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
library(sf) #> Linking to GEOS 3.5.0, GDAL 2.1.2, proj.4 4.9.3 library(maps) world1 <- sf::st_as_sf(map('world', plot = FALSE, fill = TRUE)) world2 <- st_transform(world1, "+proj=laea +y_0=0 +lon_0=155 +lat_0=-90 +ellps=WGS84 +no_defs") plot(world2, graticule = st_crs(4326), axes = TRUE) #> Warning in min(lat): no non-missing arguments to min; returning Inf #> Warning in max(lat): no non-missing arguments to max; returning -Inf #> Error in seq.default(bb[2], bb[4], length.out = ndiscr): 'from' cannot be NA, NaN or infinite
The text was updated successfully, but these errors were encountered:
address #198
ce09808
This now works; leave out the axes=TRUE part, as long/lat axes don't make sense here.
axes=TRUE
Sorry, something went wrong.
(but note the missing meridian!)
add missing meridian back, see #198
bf63b2c
No branches or pull requests
The text was updated successfully, but these errors were encountered: