Analyzing the change of NDVI
Install necessary packages
pip install rasterio numpy matplotlib
Script to analyze
import rasterio
import numpy as np
import matplotlib.pyplot as plt
import os
# NDVI file paths
script_dir = os.path.dirname(os.path.abspath(__file__))
ndvi_2020_...
orbtrace.hashnode.dev2 min read