Created
May 29, 2020 11:05
-
-
Save AlexandraKapp/e23e0d4d2d635f950d0cbff4248caf32 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(sf) | |
xmin <- -2.3743 | |
xmax <- 0.5589 | |
ymin <- 37.3397 | |
ymax <- 40.8679 | |
st_polygon(list(rbind( | |
c(xmin, ymin), | |
c(xmin, ymax), | |
c(xmax, ymax), | |
c(xmax, ymin), | |
c(xmin, ymin) | |
))) %>% | |
st_sfc(crs = 4326) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment