光栅包错误

时间:2017-02-19 19:39:35

标签: r raster

我正在使用包raster,但在尝试使用函数getData()时出现参数错误。我直接从文档中使用示例。例如:

require(raster)
getData("GADM", country = 'FRA', level =1)
Error in getData("GADM", country = "FRA", level = 1) : 
  unused arguments (country = "FRA", level = 1)
getData('ISO3')
Error in UseMethod("getData") : 
  no applicable method for 'getData' applied to an object of class "character"

有没有人遇到过这个问题?

1 个答案:

答案 0 :(得分:1)

GetData包中还有一个名为nlme的函数。如果您使用该版本的GetData,您将收到此错误消息。相反,请尝试

raster::getData('GADM', country='FRA', level=1)