As example i use the following DF:
Index Temperature
2019-11-14 08:25:30.000 50.776897
2019-11-14 08:25:40.000 49.671967
2019-11-14 08:25:50.000 48.729610
2019-11-14 08:26:00.000 48.022270
2019-11-14 08:26:10.000 47.502003
2019-11-14 08:43:40.000 87.997314 <-- here i want to split the DF into two DF's
2019-11-14 08:43:50.000 90.791519
2019-11-14 08:44:00.000 93.656128
2019-11-14 08:44:10.000 95.525215
2019-11-14 08:44:20.000 95.694481
So i use a large DF and i want to split the DF into small DF's when there is a jump in the timestamp index. Or in other words I would like to split the dataframe whenever the next timestep is larger than 10 seconds later.