var image = ee.Image('LANDSAT/LC08/C01/T1/LC08_044034_20140318').select('B4');
var printAtScale = function(scale) {
print('Pixel value at '+scale+' meters scale',
image.reduceRegion({
reducer: ee.Reducer.first(),
geometry: image.geometry().centroid(),
// The scale determines the pyramid level from which to pull the input
scale: scale
}).get('B4'));
};
をタイトルの通り変換したいのですが
変換してくれるサイトはないでしょうか?
もしくは変換のお手伝いをしてくださる方いましたらお願い致します…。
回答1件
あなたの回答
tips
プレビュー