What I have:
pd.Timestamp('2021-07-05 08:10:11')
pd.Timestamp('2021-07-07 12:13:14')
What I'm looking for:
[pd.Timestamp('2021-07-05 09:00:00'),
pd.Timestamp('2021-07-06 09:00:00'),
pd.Timestamp('2021-07-07 09:00:00')]
It feels like I should be able to do this with some combination of of pd.date_range and pd.offsets, but I can't find the right combination.
Given that 9am is the standard meteorological time point, I'm hoping someone has a nice solution for this already!