A Simplified and Robust Surface Reflectance Estimation Method for Satellite Imagery
Project description
SREM estimates surface reflectance of satellite imagery without integrating information of aerosol particles and atmospheric gasses. Core algorithm is based on "A Simplified and Robust Surface Reflectance Estimation Method (SREM) for Use over DiverseLand Surfaces Using Multi-Sensor Data" [pdf].
Installation
This library supports Python >= 3.6
pip install srem
Usage
import numpy as np
from srem import srem
surface_reflectance = srem(
toa_reflectance, # np.ndarray with shape of (height, width)
wavelength, # float in micrometer
solar_azimuth_angle_deg, # float or np.ndarray with shape of (height, width)
solar_zenith_angle_deg, # float or np.ndarray with shape of (height, width)
sensor_azimuth_angle_deg, # float or np.ndarray with shape of (height, width)
sensor_zenith_angle_deg # float or np.ndarray with shape of (height, width)
)
assert isinstance(surface_reflectance, np.ndarray)
assert surface_reflectance.shape == toa_reflectance.shape
For detailed usage, please refer to examples of Landsat-8 and Sentinel-2.
References
- Bilal, Muhammad, et al. "A simplified and robust surface reflectance estimation method (srem) for use over diverse land surfaces using multi-sensor data." Remote Sensing 11.11 (2019): 1344.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
srem-1.0.1.tar.gz
(808.1 kB
view hashes)
Built Distribution
srem-1.0.1-py3-none-any.whl
(4.4 kB
view hashes)