Remote Sensing
Satellite tasvir tahlili - bu masofadan turib Yerning yuzasini o'rganish.
Ommabop sun'iy yo'ldoshlar:
- Landsat - NASA, bepul
- Sentinel - ESA, bepul
- MODIS - NASA, bepul
- Planet - Kommertsial
NDVI hisoblash:
import rasterio
import numpy as np
with rasterio.open('sentinel.tif') as src:
red = src.read(3).astype('float64')
nir = src.read(4).astype('float64')
ndvi = (nir - red) / (nir + red)