如何在tfrecord中使用python API从Google Earth引擎下载哨兵图像

时间:2019-03-23 11:55:56

标签: python-3.x tiff tfrecord google-earth-engine sentinel2

在尝试下载特定位置的哨兵图像时,默认情况下会在驱动器中生成tif文件,但无法被openCV或PIL.Image()读取。以下是该代码。如果我使用文件格式作为tfrecord。驱动器中没有下载图像。

starting_time = '2018-12-15' 
delta = 15  
L = -96.98  
B = 28.78  
R = -97.02  
T = 28.74

cordinates = [L,B,R,T] 
my_scale = 30 
fname = 'sinton_texas_30'


llx = cordinates[0] 
lly = cordinates[1] 
urx = cordinates[2] 
ury = cordinates[3]

geometry = [[llx,lly], [llx,ury], [urx,ury], [urx,lly]]

tstart = datetime.datetime.strptime(starting_time, '%Y-%m-%d') tend =
tstart+datetime.timedelta(days=delta)
collSent = ee.ImageCollection('COPERNICUS/S2').filterDate(str(tstart).split('')[0], str(tend).split(' ')[0]).filter(ee.Filter.lt('CLOUDY_PIXEL_PERCENTAGE', 20)).map(mask2clouds)


medianSent = ee.Image(collSent.reduce(ee.Reducer.median())) cropLand = ee.ImageCollection('USDA/NASS/CDL').filterDate('2017-01-01','2017-12-31').first() 
task_config = {
 'scale': my_scale,
 'region': geometry,
 'fileFormat':'TFRecord'
   }

f1 = medianSent.select(['B1_median','B2_median','B3_median'])


taskSent = ee.batch.Export.image(f1,fname+"_Sent",task_config)
taskSent.start()

我希望输出在python中是可读的,所以我可以隐蔽到numpy中。如果文件格式为“ tfrecord”,则我希望文件可以下载到驱动器中。

1 个答案:

答案 0 :(得分:2)

我认为您应该考虑以下几点:

文件格式

如果要使用PIL或OpenCV打开文件,而要使用TensorFlow打开,则宁愿使用GeoTIFF。尝试使用这种格式,看看情况是否有所改善。

省钱开车

通常保存到您的云端硬盘是默认行为。但是,您可以尝试强制写入驱动器:

ee.batch.Export.image.toDrive(image=f1, ...)

您可以进一步尝试设置一个文件夹,将图像发送到该文件夹​​:

ee.batch.Export.image.toDrive(image=f1, folder='foo', ...)

此外,Export data help page和此tutorial是进一步研究的良好起点。