GEE 错误:Can‘t transform (11121.0,18905.0),Can‘t transform (-1.0,-1.0)
目录
错误
原始代码链接
原始代码
解决方案
函数
SampleRegions(collection, properties, scale, projection, tileScale, geometries)
Arguments:
Returns: FeatureCollection
修改后的代码
结果
错误
我正在尝试从乌干达 888 户家庭的 VNP21A1 每日温度数据集中提取时间序列。我已将坐标作为资产上传。当我运行代码时,出现此错误:
看起来像是一个重新投影错误,虽然我不确定它可能来自哪里,因为导入的 excel 具有纬度(0.68;2.19)和经度(32.25;33.56),对于研究区域而言具有合理的值。
原始代码链接
代码链接https://code.earthengine.google.com/1718d08a9b27c800cb3c2d6b0d4bc2d7
原始代码
var points = ee.FeatureCollection("projects/ee-emanueleclemente91/assets/hh_coordinates");
//Load data for area, period of interest
var vnpn = ee.ImageCollection("NASA/VIIRS/002/VNP21A1N").filterBounds(points).filterDate('2012-01-19', '2024-10-02')
print('Size of VNP21A1N collection', vnpn.size());
//Select TEMPERATURE band
var triplets = vnpn.map(function(image) {return image.select('LST_1KM').reduceRegions({collection: p