The hours of the datetime
(self)
| 425 | |
| 426 | @property |
| 427 | def hour(self) -> T_DataArray: |
| 428 | """The hours of the datetime""" |
| 429 | return self._date_field("hour", np.int64) |
| 430 | |
| 431 | @property |
| 432 | def minute(self) -> T_DataArray: |
nothing calls this directly
no test coverage detected