I am trying to combine MODIS products; MOD09GA (bands 1-7) and MODOCGA (bands 8-16) in order to look at the spectral signature (bands 1-16) at different points in my study area (a large lake).
The first issue I am having is that MODOCGA will not allow me to .select
the bands I need. see below the MODO9 works fine, but the MODOC does not.
var MOD09 = ee.ImageCollection('MODIS/006/MOD09GA')
.filterDate('2016-08-20', '2016-09-30')
.select(["sur_refl_b0[1-7]"]);
var MODOC = ee.ImageCollection('MODIS/006/MODOCGA')
.filterDate('2016-08-20', '2016-09-30')
.select(["sur_refl_b[08-16]"]);
Once I have figured this out, I can try to combine the two collections so that I have a collection consisting of bands 1-16. If you have any ideas on that, they would also be very much appreciated!