How to tell Numpy to print datetime64 in UTC and not in local timezone?
For example, I get:
>>> np.datetime64('2012-01-01T00:00Z')
Out[111]: numpy.datetime64('2012-01-01T02:00+0200')
But I prefer to get:
>>> np.datetime64('2012-01-01T00:00Z')
Out[110]: numpy.datetime64('2012-01-01T00:00+0000')