Sentinel-5P Cloud Top Pressure
Download Script
//VERSION=3
var minVal = 10000.0;
var maxVal = 110000.0;
var diff = maxVal - minVal;
const map = [
[minVal, 0x00007f],
[minVal + 0.125 * diff, 0x0000ff],
[minVal + 0.375 * diff, 0x00ffff],
[minVal + 0.625 * diff, 0xffff00],
[minVal + 0.875 * diff, 0xff0000],
[maxVal, 0x7f0000]
];
const visualizer = new ColorRampVisualizer(map)
function setup() {
return {
input: ["CLOUD_TOP_PRESSURE","dataMask"],
output: { bands: 4 }
};
}
function evaluatePixel(samples) {
const [r, g, b] = visualizer.process(samples.CLOUD_TOP_PRESSURE);
return [r, g, b, samples.dataMask];
}
Evaluate and visualize
Description
This script visualizes Sentinel 5P top pressure product (air pressure measured at the top of a cloud in Pascal (Pa)).
Description of representative images
Cloud top pressure of the Pacific Ocean hurricane, 2020-01-15. 