I'm trying to download an image from Google Earth Engine sentinel data, but I was only able to get the images at a low resolution. I used the following code to achieve this:
geemap.ee_export_image(image, './download/image.tif', scale=25, region=roi, file_per_band=True)
# Where
# image = image from sentinel colection
The scale reduces the image resolution, but if I set it to 1 google prevents me from downloading the image data because its to big.
There is any way to get this imagery data with high resolution? I used the copernicus hub to download with GUI but I have to create a script using google engine now and I didn't find any way to do that.
Thanks!