「Landsat.rar」ファイル(6つのLandsatバンドを含む)をダウンロードしようとしていますが、rで直接解凍していますが、 。ご協力ありがとうございました!特にgithubからrで直接ラスター圧縮ファイルをダウンロードして解凍する方法
library(raster)
ls_url<-"https://github.com/tuyenhavan/Landsat-Data/blob/LS7/Landsat.rar"
temp<-tempfile()
download.file(ls_url,temp)
unzip(temp,"tif$")
myls<-stack("tif$")
[githubから直接ラスタデータ(Landsat)をダウンロードして解凍する方法](https://stackoverflow.com/questions/44926076/how-download-and-unzip-raster-data-landsat-in) -r-from-github) – G5W