2
Rでラスターをクリップする
米国北東部の地図を作成しています。地図の背景は、高度地図または平均年間気温地図である必要があります。Worldclim.orgからこれらの変数を提供する2つのラスターがありますが、関心のある州の範囲でそれらをクリップする必要があります。これを行う方法に関する提案。これは私がこれまでに持っているものです: #load libraries library (sp) library (rgdal) library (raster) library (maps) library (mapproj) #load data state<- data (stateMapEnv) elevation<-raster("alt.bil") meantemp<-raster ("bio_1.asc") #build the raw map nestates<- c("maine", "vermont", "massachusetts", "new hampshire" ,"connecticut", "rhode island","new york","pennsylvania", "new jersey", "maryland", "delaware", "virginia", "west virginia") map(database="state", regions = nestates, interior=T, lwd=2) map.axes() #add …