Hi Oliver,
It’s definitely possible, but I would recommend using another of our tools
You can use the Sentinel Hub Requests Builder tool to easily do this:
There is an example of the request for Sentinel 2 L2A that you are asking for in the documentation too:
If this still isn’t clear, then let me know
Will
Hi Will,
Thanks for your help, I’ve just been using the EO Browser App until this point. Where would I type the code line, is there an online console on Sen Hub for requests, or is this via python?
Apologies for the complete lack of knowledge, im quite fresh to EO!
Of course you can download it using EO Browser as well, you just have to construct an appropriate script. I did it here:
sentinelshare.page.link
Sentinel-2 L2A imagery taken on May 23, 2021
Using script:
//VERSION=3
function setup() {
return {
input: ["B01","B02","B03","B04","B05","B06","B07","B08","B8A","B09","B11","B12"],
output: { bands: 12 }
};
}
function evaluatePixel(sample) {
return Object.values(sample);
}
Now simply go to image download, and download a TIFF (without clipping extra bands option). It should contain all 12 bands.
Perfect have done it now, thanks both!