imod.util.empty_2d#
- imod.util.empty_2d(dx: float | ndarray[tuple[Any, ...], dtype[floating]], xmin: float, xmax: float, dy: float | ndarray[tuple[Any, ...], dtype[floating]], ymin: float, ymax: float) DataArray[source]#
- Create an empty 2D (x, y) DataArray. - dxand- dymay be provided as:- scalar: for equidistant spacing 
- array: for non-equidistant spacing 
 - Note that xarray (and netCDF4) uses midpoint coordinates. - xminand- xmaxare used to generate the appropriate midpoints.- Parameters:
- dx (float, 1d array of floats) – cell size along x 
- xmin (float) 
- xmax (float) 
- dy (float, 1d array of floats) – cell size along y 
- ymin (float) 
- ymax (float) 
 
- Returns:
- empty – Filled with NaN. 
- Return type:
- xr.DataArray