True color product, SkySat
//VERSION=3
//True Color
function setup() {
return {
input: ["Blue", "Red", "Green", "dataMask"],
output: { bands: 4 },
};
}
var f = 2.5 / 10000;
function evaluatePixel(sample) {
return [sample.Red * f, sample.Green * f, sample.Blue * f, sample.dataMask];
}
Evaluate and Visualize
The example data is using Planet Sandox data. This data is restricted to Sentinel Hub users with active paid plans. If you are already a Planet Customer, see here on how to get access.
General description
The true color product combines Skysat band values red
, blue
, and green
to create a true color image.
Description of representative images
True color visualisation over Rome, Italy, acquired on 2018/08/28.
References
- Wikipedia, True color. Accessed October 10th 2017.