-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merging AHN tiles takes forever #429
Comments
@rubencalje and I tried changing lines 620:624 of ahn.py to: # da = da.sel(x=slice(extent[0], extent[1]), y=slice(extent[3], extent[2]))
das.append(da)
if len(das) == 0:
raise (ValueError("No data found within extent"))
da = merge_arrays(das, bounds=(extent[0], extent[2], extent[1], extent[3])) But that did not help.. |
I tried: # da = da.sel(x=slice(extent[0], extent[1]), y=slice(extent[3], extent[2]))
das.append(da)
if len(das) == 0:
raise (ValueError("No data found within extent"))
da = merge_arrays(das)
return da.sel(x=slice(extent[0], extent[1]), y=slice(extent[3], extent[2])) But that did not work either. |
Setting the mem_limit of _merge_rio to 8*64 (default 64MB) does not work either. |
So # %%
import os
import numpy as np
import matplotlib
import rasterio
import rioxarray
import nlmod
# %%
nlmod.util.get_color_logger()
pathname = "issue_429"
extent = [101_000, 120_000, 412_000, 432_000]
bounds = (extent[0], extent[2], extent[1], extent[3])
# %% download extent
tiles = nlmod.read.ahn.get_ahn5(
extent=extent, identifier="AHN5_05M_M", return_tiles=True
)
# %% save tiles
if not os.path.isdir(pathname):
os.makedirs(pathname)
for i in range(len(tiles)):
fname = os.path.join(pathname, f"ahn_{i}.tif")
tiles[i].rio.to_raster(fname)
# %% read tiles again using rasterio, merge and save
images = []
for file in os.listdir(pathname):
fname = os.path.join(pathname, file)
images.append(rasterio.open(fname))
dest, out_transform = rasterio.merge.merge(images, bounds=bounds, nodata=np.nan)
profile = {
"driver": "GTiff",
"height": dest.shape[1],
"width": dest.shape[2],
"count": 1,
"dtype": "float32",
"transform": out_transform,
}
with rasterio.open("ahn_merged.tif", "w", crs="EPSG:28992", **profile) as dst:
dst.write(dest)
# %% read again using rioxarray
ahn_merged = rioxarray.open_rasterio("ahn_merged.tif") This code needs the extra argument |
Thanks for checking :) I'll try the code in the PR. But if I understand you correctly. We could also just change |
When downloading the AHN5 (and 4) for a relatively large extent and at 05m scale.
results in
which does not stop running.
The text was updated successfully, but these errors were encountered: