Skip to content
Snippets Groups Projects
Commit 8b16b513 authored by Frisinghelli Daniel's avatar Frisinghelli Daniel
Browse files

Convert DEM to dask array.

parent 9bd2192b
No related branches found
No related tags found
No related merge requests found
......@@ -142,7 +142,9 @@ class EoDataset(torch.utils.data.Dataset):
alg='Horn').ReadAsArray().astype(np.float32)
# read digital elevation model
dem = img2np(dem).astype(np.float32)
dem = da.asarray(img2np(dem).astype(np.float32))
slope = da.asarray(slope)
aspect = da.asarray(aspect)
# digital elevation model features: elevation, slope and aspect
dem_vars = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment