Sentinel-5P Cloud Base Pressure
//VERSION=3
const band = "CLOUD_BASE_PRESSURE";
var minVal = 10000.0;
var maxVal = 110000.0;
function setup() {
return {
input: [band, "dataMask"],
output: {
bands: 4,
},
};
}
var viz = ColorRampVisualizer.createBlueRed(minVal, maxVal);
function evaluatePixel(samples) {
let ret = viz.process(samples[band]);
ret.push(samples.dataMask);
return ret;
}
Evaluate and Visualize
Description
This script visualizes Sentinel 5P base pressure product (air pressure measured at the base of a cloud in Pascal (Pa)).
Description of representative images
Cloud top pressure of the Pacific Ocean hurricane, 2020-01-15.