openavmkit.utilities.dem
USGS 3DEP Digital Elevation Model (DEM) service.
Fetches DEM tiles from the USGS 3D Elevation Program for a given bounding box,
mosaics them, reprojects to a local UTM CRS, derives a slope raster, and
computes per-parcel zonal statistics (mean elevation, stdev elevation, mean
slope). Used by the DEM enrichment step (data.process.enrich.dem) in
openavmkit.data.
USGS 3DEP covers CONUS, AK, HI, and PR at 10m / 30m / 60m resolution. For bounding boxes outside that coverage the caller should warn-and-skip; this module's coverage check is the authoritative gate.
DEMService
DEMService(settings=None)
Service for fetching USGS 3DEP DEMs and computing per-parcel stats.
Lazy-imports rasterio and seamless_3dep so the rest of the package
can be loaded in environments that don't have them installed.
Source code in openavmkit/utilities/dem.py
51 52 53 | |
compute_parcel_stats
compute_parcel_stats(gdf, dem_path, slope_path, verbose=False)
Compute per-parcel mean/stdev elevation (meters) and mean slope (degrees).
Returns a DataFrame indexed by gdf.index with three columns:
elevation_mean_m, elevation_stdev_m, slope_mean_deg.
Parcels whose geometry has no valid raster cells receive NaN.
Source code in openavmkit/utilities/dem.py
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 | |
compute_slope_raster
compute_slope_raster(utm_dem_path, verbose=False)
Compute a slope raster (degrees) from a UTM-projected DEM.
Source code in openavmkit/utilities/dem.py
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | |
get_dem_for_bbox
get_dem_for_bbox(bbox, resolution_m=10, verbose=False)
Download (or read cached) USGS 3DEP DEM for a WGS84 bbox.
Returns the path to a single mosaiced GeoTIFF in EPSG:4326.
Cache layout: cache/dem/<key>/ for raw tiles, cache/dem/<key>_mosaic.tif
for the mosaic. The key is a short hash of (bbox, resolution).
Source code in openavmkit/utilities/dem.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | |
reproject_to_utm
reproject_to_utm(src_path, bbox_wgs84, verbose=False)
Reproject a DEM GeoTIFF to a local UTM CRS so pixel sizes are in meters.
Source code in openavmkit/utilities/dem.py
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | |
bbox_in_usgs_coverage
bbox_in_usgs_coverage(bbox)
Return True if any part of the WGS84 bbox overlaps USGS 3DEP coverage.
Source code in openavmkit/utilities/dem.py
35 36 37 38 39 40 41 | |
init_service_dem
init_service_dem(settings=None)
Factory mirroring init_service_openstreetmap.
Source code in openavmkit/utilities/dem.py
320 321 322 | |