WaPORMOOC
WaPORMOOC copied to clipboard
Python scripts and Jupyter notebooks for WaPOR MOOCs, 'Introduction to WaPORv3' and 'Python for geospatial analyses using WaPOR data'
Results
1
WaPORMOOC issues
Sort by
recently updated
recently updated
newest added
import rioxarray as rioxr file_path = "/content/output/L2-AETI-A/your_file.tif" # Replace with actual path data = rioxr.open_rasterio(file_path) max_value = data.max().values min_value = data.min().values mean_value = data.mean().values print(f"Max AETI: {max_value}, Min AETI: {min_value},...