geodata.model.wind.WindInterpolationModel.estimate
==================================================

.. py:method:: geodata.model.wind.WindInterpolationModel.estimate(height: int, years: slice, months: Optional[slice] = None, xs: Optional[slice] = None, ys: Optional[slice] = None, use_real_data: bool = False) -> xarray.DataArray

   Estimate the wind speed at given coordinates.

   :param height: Height of the wind speed, need to be greater than 0.
   :type height: int
   :param years: Years.
   :type years: slice
   :param months: Months. If None, all months are estimated.
   :type months: slice, optional
   :param xs: X coordinates. If None, all x coordinates in source are estimated.
   :type xs: slice
   :param ys: Y coordinates. If None, all y coordinates in source are estimated.
   :type ys: slice
   :param use_real_data: If available, use real data for estimation. Defaults to False.
   :type use_real_data: bool, optional

   :returns: Dataset with wind speed.
   :rtype: xr.DataArray

