Skip to content

Latest commit

 

History

History
79 lines (50 loc) · 1.32 KB

README.md

File metadata and controls

79 lines (50 loc) · 1.32 KB

bayareamapping

bayareamapping is a collection of commonly used vector and raster data germane to the San Franciso Bay Area.

Installation

You can install the released version of bayareamapping from GitHub:

remotes::install_github("ir-sfsu/bayareamapping")

Cities

library(bayareamapping)
library(mapview)
mapview(cities)

Counties

mapview(counties)

Highways

mapview(highways)

Streams

mapview(streams)

Water

mapview(water)

Watersheds

mapview(watersheds)

DEM

library(raster)
dem <- system.file("extdata/tif/dem90m.tif", package = "bayareamapping")
plot(raster(dem))