我在 Google-Earth-Engine 中有一个基于 fusiontable 的功能集合,其中包括一个日期列。我想将 FC 转换为空图像并以渐变颜色显示以增加日期 - 以便在使用 Inspector 时显示人类可读的日期。
var empty64 = ee.Image().toInt64();
var outlines = empty64.paint({
featureCollection: SomeFeatureCollection,
color: 'StartDate',
});
如果我将其作为图层添加到地图中,我会以 13 位格式的日期获得我无法读取的日期。我怎样才能改变这个?谢谢!