Skip to main content Link Menu Expand (external link) Document Search Copy Copied

False color infrared product, PlanetScope

//VERSION=3
//False Color

function setup() {
  return {
    input: ["nir", "green", "blue"],
    output: { bands: 3 }
  };
}

function evaluatePixel(sample) {
  return [sample.nir / 3000, sample.green / 3000, sample.blue / 3000];
}

Evaluate and visualize

As PlanetScope is commercial data, brought into Sentinel Hub as Bring Your Own Data, direct EO Browser links are not possible due to the personalized data credentials.

General description

The False color infrared composite maps near-infrared spectral band nir with red and green bands to sRGB components directly. It is most commonly used to assess plant density and healht, as plants reflect near infrared and green light, while absorbing red. Since they reflect more near infrared than green, plant-covered land appears deep red. Denser plant growth is darker red. Cities and exposed ground are gray or tan, and water appears blue or black.

Description of representative images

False color composite of Rome.

False color composite of Rome

References

  • [1] Wikipedia, False color. Accessed October 10th 2017.
  • [2] Wikipedia, sRGB. Accessed October 10th 2017.