ALOS World 3D 30m (AW3D30) digital surface model derived from ALOS PRISM stereo imagery by JAXA, providing 30m resolution global elevation data. Alternative to SRTM with better accuracy in some terrain types. The higher-res 12.5m PALSAR RTC DEM is also available via ASF.
import rasterio
import numpy as np
# Download from https://www.eorc.jaxa.jp/ALOS/en/dataset/aw3d30/
# src = rasterio.open('ALOS_PALSAR_DEM.tif')
# elev = src.read(1)
# print(f'Elevation range: {elev.min():.0f}m to {elev.max():.0f}m')
print('ALOS PALSAR DEM: https://www.eorc.jaxa.jp/ALOS/en/dataset/aw3d30/')| Field | Type | Description |
|---|---|---|
| elevation | float | Elevation value in meters above sea level |
| latitude | float | Latitude coordinate |
| longitude | float | Longitude coordinate |