pandas教程:Time Zone Handling 时区处理

文章目录

  • [11.4 Time Zone Handling(时区处理)](#11.4 Time Zone Handling(时区处理))
  • [1 Time Zone Localization and Conversion(时区定位和转换)](#1 Time Zone Localization and Conversion(时区定位和转换))
  • [2 Operations with Time Zone−Aware Timestamp Objects(时区的操作-意识到时间戳对象)](#2 Operations with Time Zone−Aware Timestamp Objects(时区的操作-意识到时间戳对象))
  • [3 Operations Between Diferent Time Zones(不同时区间的运算)](#3 Operations Between Diferent Time Zones(不同时区间的运算))

11.4 Time Zone Handling(时区处理)

格林威治标准时间GMT
十七世纪,格林威治皇家天文台为了海上霸权的扩张计画而进行天体观测。1675年旧皇家观测所(Old Royal Observatory) 正式成立,到了1884年决定以通过格林威治的子午线作为划分地球东西两半球的经度零度。观测所门口墙上有一个标志24小时的时钟,显示当下的时间,对全球而言,这里所设定的时间是世界时间参考点,全球都以格林威治的时间作为标准来设定时间,这就是我们耳熟能详的「格林威治标准时间」(Greenwich Mean Time,简称G.M.T.)的由来,标示在手表上,则代表此表具有两地时间功能,也就是同时可以显示原居地和另一个国度的时间。
世界协调时间UTC
多数的两地时间表都以GMT来表示,但也有些两地时间表上看不到GMT字样,出现的反而是UTC这3个英文字母,究竟何谓UTC?事实上,UTC指的是Coordinated Universal Time- 世界协调时间(又称世界标准时间、世界统一时间),是经过平均太阳时(以格林威治时间GMT为准)、地轴运动修正后的新时标以及以「秒」为单位的国际原子时所综合精算而成的时间,计算过程相当严谨精密,因此若以「世界标准时间」的角度来说,UTCGMT来得更加精准。其误差值必须保持在0.9秒以内,若大于0.9秒则由位于巴黎的国际地球自转事务中央局发布闰秒,使UTC与地球自转周期一致。所以基本上UTC的本质强调的是比GMT更为精确的世界时间标准,不过对于现行表款来说,GMTUTC的功能与精确度是没有差别的。

时区可以理解为UTC的偏移(offset),例如,在夏令时,纽约时间落后于UTC时间四个小时,而在一年的其他时间里,纽约时间落后于UTC时间五个小时。

python中,时区信息来自第三方的pytz库,这个库利用的是奥尔森数据库,这个数据库汇集了世界时区信息。这个信息对于历史数据很重要,因为夏令时(daylight saving time,DST)的交接日(transition date)取决于当地政府的心血来潮。在美国,自1900年后,夏令时的交接日已经被改了很多次。

关于pytz库的更多信息,需要查看相关的文档。本书中pandas包含了一些pytz的功能,除了时区的名字,其他的API都不用去查。时区名字可以通过下面的方法获得:

python 复制代码
import pytz
python 复制代码
pytz.common_timezones[-5:]
['US/Eastern', 'US/Hawaii', 'US/Mountain', 'US/Pacific', 'UTC']

想要从pytz中得到一个时区对象(time zone object),使用pytz.timezone:

python 复制代码
tz = pytz.timezone('America/New_York')
tz
<DstTzInfo 'America/New_York' LMT-1 day, 19:04:00 STD>

1 Time Zone Localization and Conversion(时区定位和转换)

默认的,pandas中的时间序列是time zone naive(朴素时区)。例如,考虑下面的时间序列:

python 复制代码
import pandas as pd
import numpy as np
python 复制代码
rng = pd.date_range('3/9/2012 9:30', periods=6, freq='D')
python 复制代码
ts = pd.Series(np.random.randn(len(rng)), index=rng)
ts
2012-03-09 09:30:00    1.001642
2012-03-10 09:30:00   -1.277818
2012-03-11 09:30:00    0.481214
2012-03-12 09:30:00    0.738525
2012-03-13 09:30:00    0.396482
2012-03-14 09:30:00   -0.269782
Freq: D, dtype: float64

索引的tz部分是None

python 复制代码
print(ts.index.tz)
None

日期范围也能通过时区集合(time zone set)来创建:

python 复制代码
pd.date_range('3/9/2012 9:30', periods=10, freq='D', tz='UTC')
DatetimeIndex(['2012-03-09 09:30:00+00:00', '2012-03-10 09:30:00+00:00',
               '2012-03-11 09:30:00+00:00', '2012-03-12 09:30:00+00:00',
               '2012-03-13 09:30:00+00:00', '2012-03-14 09:30:00+00:00',
               '2012-03-15 09:30:00+00:00', '2012-03-16 09:30:00+00:00',
               '2012-03-17 09:30:00+00:00', '2012-03-18 09:30:00+00:00'],
              dtype='datetime64[ns, UTC]', freq='D')

使用tz_localize方法,可以实现从朴素到本地化(naive to localized)的转变:

python 复制代码
ts
2012-03-09 09:30:00    1.001642
2012-03-10 09:30:00   -1.277818
2012-03-11 09:30:00    0.481214
2012-03-12 09:30:00    0.738525
2012-03-13 09:30:00    0.396482
2012-03-14 09:30:00   -0.269782
Freq: D, dtype: float64
python 复制代码
ts_utc = ts.tz_localize('UTC')
ts_utc
2012-03-09 09:30:00+00:00    1.001642
2012-03-10 09:30:00+00:00   -1.277818
2012-03-11 09:30:00+00:00    0.481214
2012-03-12 09:30:00+00:00    0.738525
2012-03-13 09:30:00+00:00    0.396482
2012-03-14 09:30:00+00:00   -0.269782
Freq: D, dtype: float64
python 复制代码
ts_utc.index
DatetimeIndex(['2012-03-09 09:30:00+00:00', '2012-03-10 09:30:00+00:00',
               '2012-03-11 09:30:00+00:00', '2012-03-12 09:30:00+00:00',
               '2012-03-13 09:30:00+00:00', '2012-03-14 09:30:00+00:00'],
              dtype='datetime64[ns, UTC]', freq='D')

一旦时间序列被定位到某个时区,那么它就可以被转换为任何其他时区,使用tz_convert

python 复制代码
ts_utc.tz_convert('America/New_York')
2012-03-09 04:30:00-05:00    1.001642
2012-03-10 04:30:00-05:00   -1.277818
2012-03-11 05:30:00-04:00    0.481214
2012-03-12 05:30:00-04:00    0.738525
2012-03-13 05:30:00-04:00    0.396482
2012-03-14 05:30:00-04:00   -0.269782
Freq: D, dtype: float64

在处理时间序列的时候,我们可以先把时间定位到纽约时间,然后转换到柏林时间:

python 复制代码
ts_eastern = ts.tz_localize('America/New_York')
python 复制代码
ts_eastern.tz_convert('UTC')
2012-03-09 14:30:00+00:00    1.001642
2012-03-10 14:30:00+00:00   -1.277818
2012-03-11 13:30:00+00:00    0.481214
2012-03-12 13:30:00+00:00    0.738525
2012-03-13 13:30:00+00:00    0.396482
2012-03-14 13:30:00+00:00   -0.269782
Freq: D, dtype: float64
python 复制代码
ts_eastern.tz_convert('Europe/Berlin')
2012-03-09 15:30:00+01:00    1.001642
2012-03-10 15:30:00+01:00   -1.277818
2012-03-11 14:30:00+01:00    0.481214
2012-03-12 14:30:00+01:00    0.738525
2012-03-13 14:30:00+01:00    0.396482
2012-03-14 14:30:00+01:00   -0.269782
Freq: D, dtype: float64

tz_localizetz_convert也是DatetimeIndex上的实例方法(instance methods):

python 复制代码
ts.index.tz_localize('Asia/Shanghai')
DatetimeIndex(['2012-03-09 09:30:00+08:00', '2012-03-10 09:30:00+08:00',
               '2012-03-11 09:30:00+08:00', '2012-03-12 09:30:00+08:00',
               '2012-03-13 09:30:00+08:00', '2012-03-14 09:30:00+08:00'],
              dtype='datetime64[ns, Asia/Shanghai]', freq='D')

讲朴素的时间戳进行本地化,还会检查夏令时转换期附近是否有模糊的或不存在的时间。

2 Operations with Time Zone−Aware Timestamp Objects(时区的操作-意识到时间戳对象)

和时间序列或日期范围(date ranges)相似,单独的Timestamp object(时间戳对象)也能从朴素(即无时区)本地化为有时区的日期,然后就可以转换为其他时区了:

python 复制代码
stamp = pd.Timestamp('2011-03-12 04:00')
python 复制代码
stamp_utc = stamp.tz_localize('utc')
python 复制代码
stamp_utc.tz_convert('America/New_York')
Timestamp('2011-03-11 23:00:00-0500', tz='America/New_York')

在创建Timestamp的时候,我们可以传递一个时区:

python 复制代码
stamp_moscow = pd.Timestamp('2011-03-12 04:00', tz='Europe/Moscow')
stamp_moscow
Timestamp('2011-03-12 04:00:00+0300', tz='Europe/Moscow')

有时区的Timestamp对象内部存储了一个UTC时间戳,这个值是从Unix纪元(即1907年1月1日)到现在的纳秒;这个UTC值在即使换了不同的时区,也是不变的:

python 复制代码
stamp_utc.value
1299902400000000000
python 复制代码
stamp_utc.tz_convert('America/New_York').value
1299902400000000000

在使用pandasDateOffset对象进行算数运算的时候,如果夏令时存在,pandas也会考虑进去。这里我们构建一个时间戳,正好出现在夏令时转换前。首先,在变为夏令时的前30分钟:

python 复制代码
from pandas.tseries.offsets import Hour
python 复制代码
stamp = pd.Timestamp('2012-03-12 01:30', tz='US/Eastern')
stamp
Timestamp('2012-03-12 01:30:00-0400', tz='US/Eastern')
python 复制代码
stamp + Hour()
Timestamp('2012-03-12 02:30:00-0400', tz='US/Eastern')

变为夏令时的90分钟前:

python 复制代码
stamp = pd.Timestamp('2012-11-04 00:30', tz='US/Eastern')
stamp
Timestamp('2012-11-04 00:30:00-0400', tz='US/Eastern')
python 复制代码
stamp + 2 * Hour()
Timestamp('2012-11-04 01:30:00-0500', tz='US/Eastern')

3 Operations Between Diferent Time Zones(不同时区间的运算)

如果两个不同时区的时间序列被合并,那么结果为UTC。因为时间戳是以UTC为背后机制的,这种变化是直接的,不需要手动转换:

python 复制代码
rng = pd.date_range('3/7/2012 9:30', periods=10, freq='B')
python 复制代码
ts = pd.Series(np.random.randn(len(rng)), index=rng)
ts
2012-03-07 09:30:00    0.857427
2012-03-08 09:30:00   -0.985773
2012-03-09 09:30:00   -0.037836
2012-03-12 09:30:00   -1.561366
2012-03-13 09:30:00    0.195092
2012-03-14 09:30:00   -0.182154
2012-03-15 09:30:00    0.629671
2012-03-16 09:30:00   -1.351815
2012-03-19 09:30:00   -1.054486
2012-03-20 09:30:00    0.072799
Freq: B, dtype: float64
python 复制代码
ts1 = ts[:7].tz_localize('Europe/London')
ts2 = ts1[2:].tz_convert('Europe/Moscow')
result = ts1 + ts2
python 复制代码
result.index
DatetimeIndex(['2012-03-07 09:30:00+00:00', '2012-03-08 09:30:00+00:00',
               '2012-03-09 09:30:00+00:00', '2012-03-12 09:30:00+00:00',
               '2012-03-13 09:30:00+00:00', '2012-03-14 09:30:00+00:00',
               '2012-03-15 09:30:00+00:00'],
              dtype='datetime64[ns, UTC]', freq='B')
相关推荐
一点媛艺3 小时前
Kotlin函数由易到难
开发语言·python·kotlin
魔道不误砍柴功4 小时前
Java 中如何巧妙应用 Function 让方法复用性更强
java·开发语言·python
pianmian14 小时前
python数据结构基础(7)
数据结构·算法
_.Switch4 小时前
高级Python自动化运维:容器安全与网络策略的深度解析
运维·网络·python·安全·自动化·devops
测开小菜鸟5 小时前
使用python向钉钉群聊发送消息
java·python·钉钉
萧鼎7 小时前
Python并发编程库:Asyncio的异步编程实战
开发语言·数据库·python·异步
学地理的小胖砸7 小时前
【一些关于Python的信息和帮助】
开发语言·python
疯一样的码农7 小时前
Python 继承、多态、封装、抽象
开发语言·python
ChoSeitaku7 小时前
链表交集相关算法题|AB链表公共元素生成链表C|AB链表交集存放于A|连续子序列|相交链表求交点位置(C)
数据结构·考研·链表
偷心编程7 小时前
双向链表专题
数据结构