Google Earth Engine – How to Import Imagery from Google Cloud Buckets

google-cloudgoogle-earth-engine

I have several images stored in a Google Cloud bucket that I would like to import into Google Earth Engine. In the GEE documentation, I can see that Earth Engine can ingest single images from a Bucket using ee.Image.loadGeoTIFF() but I have too many images for this to be feasible.

Is there some way import all images in a Bucket as an imageCollection, or to loop through all possible names for images to and add them one-by-one to an imageCollection?

Would it be faster to just download from the bucket and separately upload to Earth Engine?

Best Answer

You can add them to a collection, but only by calling the createAsset endpoint yourself. https://developers.google.com/earth-engine/Earth_Engine_asset_from_cloud_geotiff

Related Question