使用 Javascript 更新 Google Earth Engine API 中资产的元数据
Update metadata of an asset in Google Earth Engine API with Javascript
我想更新资产的元数据属性,无论是图像还是 Table/Featured 集合。
我已经按照文档进行操作,但它没有更新或给我任何错误...
https://developers.google.com/earth-engine/apidocs/ee-featurecollection-set
let asset = await ee.FeatureCollection(assetId);
let response = await asset.set('property_name', 'property_value')
关于如何使用 Javascript NPM 库执行此操作的任何想法?谢谢。
它不在文档中,但在源代码中我发现了以下内容并且它有效:
ee.data.setAssetProperties(assetId, {
'property_name': "property_value"
}, (response) => {
console.log(response)
})
我想更新资产的元数据属性,无论是图像还是 Table/Featured 集合。
我已经按照文档进行操作,但它没有更新或给我任何错误... https://developers.google.com/earth-engine/apidocs/ee-featurecollection-set
let asset = await ee.FeatureCollection(assetId);
let response = await asset.set('property_name', 'property_value')
关于如何使用 Javascript NPM 库执行此操作的任何想法?谢谢。
它不在文档中,但在源代码中我发现了以下内容并且它有效:
ee.data.setAssetProperties(assetId, {
'property_name': "property_value"
}, (response) => {
console.log(response)
})