Home > Net >  Create a map of spain with lakes
Create a map of spain with lakes

Time:08-21

I have a shapefile of water from Spain and boundaries shapefile of Spain.

boundaries shapefile called boundaries and water shapfile is called water

boundaries <- st_read("boundaries_spain.shp")
water <- st_read("water_spain.shp")

I changed the names of the shapefile. boundaries are the administrative areas and water is the inland water

Both shapefiles can be found here enter image description here

  • Related