我正在使用包RGEE ( Google引擎Python的R包装器)。函数ee_print()似乎很适合一个变量的ImageCollection,但是对于需要选择感兴趣变量的不同变量的ImageCollection,似乎失败了。对于如何用后一类数据来处理这个问题,有什么想法吗?
下面是一个示例代码:
GRIDMET = ee$ImageCollection("IDAHO_EPSCOR/GRIDMET")
ee_print(GRIDMET)作为回报,我得到了以下错误消息:
字符串拆分中的
错误(代码,":"):非字符参数
发布于 2022-08-15 06:53:54
你考虑过以下方法吗?
GRIDMET = ee$ImageCollection("IDAHO_EPSCOR/GRIDMET")
print(GRIDMET, type = getOption("rgee.print.option"))并播放所有元数据属性的列表。
GRIDMET$propertyNames()$getInfo()# Get a list of all metadata properties
(GRIDMET$get("product_tags")$getInfo()) # you can choose to show a characteristic like "product_tags"https://stackoverflow.com/questions/71139458
复制相似问题