hydromt.DataArray.raster.xy#
- DataArray.raster.xy(r: ndarray[int], c: ndarray[int], mask: Optional[ndarray[bool]] = None, mask_outside: bool = False, nodata: float | int = nan) tuple[numpy.ndarray[float], numpy.ndarray[float]] #
Return x,y coordinates at cell center of row, col indices
- Parameters:
r (ndarray of int) – index of row, column
c (ndarray of int) – index of row, column
mask (ndarray of bool, optional) – data mask of valid values, by default None
mask_outside (boolean, optional) – mask xy points outside domain (i.e. set nodata), by default False
nodata (int, optional) – nodata value, used for output array, by default np.nan
- Returns:
x, y coordinates
- Return type:
Tuple of ndarray of float