Eu escrevi abaixo o código para um vídeo de mudanças de aerossol, usando produtos Sentinel-5. Quando vou salvar o vídeo no Google Drive este erro ocorreu:
Detalhes da tarefa: meuvídeo
Estado: falhou
Iniciado há 17s (08/08/2019 27 20:18:34 +0430)
Tempo de execução: 9s
Id: ZTMTUZWKR2TUL3TXP0E57VBZ
Script de origem
Erro: ImageCollection deve ter 3 ou 4 bandas
link do código: https://code.earthengine.google.com/9127141eaed10f0c40b485f488c202e9
var dust = ee.ImageCollection("COPERNICUS/S5P/NRTI/L3_AER_AI") .filterBounds(table) .filterDate("2018-01-01","2020-01-01") .select("absorbing_aerosol_index"); var dust_test = dust.map(function(img){ return img.clip(table); }); var coll4Video = dust_test .map(function(image) { return image.uint8(); // need to make it 8-bit }); Export.video.toDrive({ collection: coll4Video, description: "myvideo" , scale: 1000, framesPerSecond: 2, region: table });
Resposta
Como diz o erro, exportação de vídeo requer que suas imagens tenham 3 bandas (r, g, b) ou 4 bandas (r, g, b, alpha). Sua imagem possui apenas 1 banda. Você pode chamar visualize()
nele para aplicar uma visualização e convertê-la em uma imagem de 3 bandas apropriada para exportação.
var dust = ee.ImageCollection("COPERNICUS/S5P/NRTI/L3_AER_AI") .filterBounds(table) .filterDate("2018-01-01","2020-01-01") .select("absorbing_aerosol_index"); var dust_test = dust.map(function(img){ return img.clip(table); }); var val_max = 2.0; var val_min = -1; var band_viz = { min: val_min, max: val_max, opacity: 1.0, palette: ["black", "blue", "purple", "cyan", "green", "yellow", "red"] }; var coll4Video = dust_test .map(function(image) { return image.visualize(band_viz); }); Map.addLayer(coll4Video) Export.video.toDrive({ collection: coll4Video, description: "myvideo" , scale: 1000, framesPerSecond: 2, region: table });
Link de código https://code.earthengine.google.com/7366d0ea6c24f3bcf3f3c0bf4eb623e9
Comentários
- Obrigado. Suas dicas funcionam bem.