GEE: Linear interpolation method to fill cloud voids——Taking MCD43A4 and NDVI time series as examples

Author: CSDN @ _Yakult_

This article will introduce how to use the data set "MODIS/006/MCD43A4" on the Google Earth Engine (GEE) platform to calculate the NDVI time series according to its visible light band, and use linear interpolation to fill the holes generated after cloud removal to obtain finer spatial resolution and continuous time series data.



1. Detailed code explanation

This code is the code for remote sensing image processing and spatial interpolation using the Google Earth Engine (GEE) platform. Here is an explanation of each part of the code:

  1. Define a region of interest (ROI) and center it on the map:
var roi = table;
Map.centerObject(roi

Guess you like

Origin blog.csdn.net/qq_35591253/article/details/131841280