• You're one step from joining GIS Mapping Forum – Remote Sensing, Surveying & Software Solutions.
    Create a free account to post, follow threads, and never miss an update.  Sign up free →

Export.image.toDrive() splitting output into two files any fix?

sensedfromabove761

New member
Joined
Jul 22, 2025
Messages
3
I'm having a bit of trouble with Export.image.toDrive() in Google Earth Engine. Rather than getting a single image file, it's actually dividing into two separate parts.

I'm not sure if it's due to a tiling problem, a projection mismatch, or something in my export settings. Has anyone else experienced this? I'd appreciate any advice on how to get a single, clean output file!

Thanks so much!
 
This is expected Earth Engine behavior for exports that are too large. You can often force a single file output by adding the `maxPixels` parameter to your export task. I usually set `maxPixels` to a very high number like `1e13` to get one image.
 
Okay, so it sounds like you're having the usual export problem. First, double-check your scale, region, and projection settings. If that doesn't fix it, try setting a larger maxPixels value. This might help you get everything into a single file.
 
Back
Top