The month as January=1, December=12
(self)
| 415 | |
| 416 | @property |
| 417 | def month(self) -> T_DataArray: |
| 418 | """The month as January=1, December=12""" |
| 419 | return self._date_field("month", np.int64) |
| 420 | |
| 421 | @property |
| 422 | def day(self) -> T_DataArray: |
nothing calls this directly
no test coverage detected