MODIS 8-days composition geolocation #299
-
|
Hi, I'm trying to create a mosaic using MODIS 8-days composition images. However, the final mosaic is presenting a geolocation error related to the orthorectification. Do you guys know if there is a problem with the collection or maybe some tip related to the CRS. Thanks in advance! This is my script: ` items = search.get_all_items() stack = stackstac.stack(items, epsg = 4674, bounds_latlon=bbox, resampling=rasterio.enums.Resampling.bilinear, nir, swir = stack.sel(band = "sur_refl_b02"), stack.sel(band="sur_refl_b05") |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
I haven't had a chance to check, but I know that |
Beta Was this translation helpful? Give feedback.


I haven't had a chance to check, but I know that
stackstac.stackhas anxy_coords="center"/"topleft"parameter. Would setting that tocenterwill do the right thing? I'm not sure whether things are off more more than a pixel or not.