When I export a raster file to my drive, it gets split into 4 parts. Why is this happening?
It might be related to the dimensions
attribute, which I don't use. But a default value is not given.
I used this command:
Export.image.toDrive({
image: exportImg,
description: 'description',
region: roi,
scale: 10,
crs: 'EPSG:25832',
maxPixels: 1e13
})
And the result is 4 rasters with name
'description-0000000000-0000000000',
'description-0000018944-0000000000',
'description-0000000000-0000018944',
'description-0000018944-0000018944'
Which obviously refers to the width and height.