Hi, I was writing this post to ask if when requesting images from the planet source, these images have a very different resolution for some reason, downloaded in the same way.
This is the script I use (It’s the same for the two images I attached)
//VERSION=3
function setup() {
return {
input: [{ "bands": ["B1", "B2", "B3", "dataMask"]}],
output: { bands: 4}
};
}
var f = 10000;
function evaluatePixel(sample) {
return [sample.B3/3000, sample.B2/3000, sample.B1/3000, sample.dataMask];
}
And I attach the resulting images.