I am trying to merge different raster files into one using GEE. Since the data source of some of them is int, i am first transforming the rasters to float and then i am trying to merge them. However, the the output is missing some of the cells that i am trying to merge. The code I am using is:
var cell10 = cell_10.float()
var cell21 = cell_21.float()
var cell11 = cell_21.float()
var cell22 = cell_22.float()
var cell23 = cell_23.float()
var cell35 = cell_35.float()
var cell37 = cell_37.float()
var cell38 = cell_38.float()
var cell39 = cell_39.float()
var cell47 = cell_47.float()
var cell50 = cell_50.float()
var cell51 = cell_51.float()
var cell60 = cell_60.float()
var cell61 = cell_61.float()
var cell62 = cell_62.float()
var cell73 = cell_73.float()
var cell74 = cell_74.float()
var cell7 = cell_7.float()
var cell8 = cell_8.float()
var cell9 = cell_9.float()
var merged = ee.ImageCollection([cell10, cell21,cell11, cell22, cell23, cell35, cell37,
cell38, cell39, cell47, cell50, cell51, cell60, cell61, cell62, cell73, cell74, cell7, cell8, cell9,
worldcover]).mosaic()
I already tried to inspect each of the cells one by one by adding them to the map and printing them, and they all the same bands/ properties. What am I doing wrong?
Thanks!