使用 raster getData 函数下载 worldclim 数据时出错

问题描述 投票:0回答:2

有谁知道worldclim 网站有什么变化吗 我正在尝试使用 worldclim 下载天气数据

getData
包中的
raster
函数,但遇到以下错误:

library(raster)

clim=getData('worldclim', var='bio', res=2.5) 

trying URL 'https://biogeo.ucdavis.edu/data/climate/worldclim/1_4/grid/cur/bio_2-5m_bil.zip'
  Error in utils::download.file(url = aurl, destfile = fn, method = "auto",  : 
    cannot open URL 'https://biogeo.ucdavis.edu/data/climate/worldclim/1_4/grid/cur/bio_2-5m_bil.zip'
  In addition: Warning message:
  In utils::download.file(url = aurl, destfile = fn, method = "auto",  :
    InternetOpenUrl failed: 'A connection with the server could not be established'

我的 R 会话是

R version 4.1.0 (2021-05-18)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 10 x64 (build 18363)

Matrix products: default
r r-raster
2个回答
1
投票

服务已恢复。请注意,

raster::getData
将来将会停用,因为数据也可以通过
geodata
包获得。


0
投票

我正在使用“geodata”包并且它有效,但是今天我有一堆 NA 和负值。 这是我的代码:

图书馆(地理数据) 路径 <- "C:/Users/..." climate <- worldclim_global(var="bio", res=2.5, path=path)

有人知道是否有问题吗? 2024 年 9 月 6 日

© www.soinside.com 2019 - 2024. All rights reserved.