I have a pandas dataframe with the following data:
PointId Time Value
0 Brabrand1_1 2020-10-02 23:58:14+02 0.9754
1 Brabrand1_1 2020-02-23 21:03:00+01 2.1414
2 Brabrand1_1 2020-02-23 21:33:00+01 2.1406
3 Brabrand1_1 2019-01-29 18:03:32+01 1.0390
4 Brabrand1_1 2019-01-29 18:33:32+01 1.0390
5 Brabrand1_1 2019-01-29 19:03:32+01 1.0390
6 Brabrand1_1 2019-01-29 19:33:32+01 1.0399
7 Brabrand1_1 2019-01-29 20:03:32+02 1.0000
I want the Time data to be UTC, ignoring the +01, +02 ... whats a good way of removing the +01 or +02... is it best to convert to string and remove or is there a more appropirate way of converting to datetime and then converting to utc? Thanks