我怎么知道今天是否因为当地时间的变化而变了标准python和pandas时间戳的夏令时?

问题描述 投票:2回答:1

根据英国夏令时/夏令时(https://www.gov.uk/when-do-the-clocks-change)的规则,时钟:

  • 在3月的最后一个星期天凌晨1点前进1小时,
  • 在十月的最后一个星期天凌晨2点回去1小时。

2019年3月31日和10月27日发生了当地的民间时间变化,但每年的变化都很小。是否有一种干净的方式来了解每个输入年份的这些日期?

我需要以自动方式检查这些“更改时间”日期,有没有办法避免for循环检查每个日期的详细信息,看看它是否是“更改时间”日期?

目前我正在探索2019年的这些日期,试图找出一个可重复/自动的程序,我发现了这个:

# using datetime from the standard library
march_utc_30 = datetime.datetime(2019, 3, 30, 0, 0, 0, 0, tzinfo=datetime.timezone.utc)
march_utc_31 = datetime.datetime(2019, 3, 31, 0, 0, 0, 0, tzinfo=datetime.timezone.utc)
april_utc_1 = datetime.datetime(2019, 4, 1, 0, 0, 0, 0, tzinfo=datetime.timezone.utc)
# using pandas timestamps
pd_march_utc_30 = pd.Timestamp(march_utc_30) #, tz='UTC')
pd_march_utc_31 = pd.Timestamp(march_utc_31) #, tz='UTC')
pd_april_utc_1 = pd.Timestamp(april_utc_1) #, tz='UTC')
# using pandas wrappers
pd_local_march_utc_30 = pd_march_utc_30.tz_convert('Europe/London')
pd_local_march_utc_31 = pd_march_utc_31.tz_convert('Europe/London')
pd_local_april_utc_1 = pd_april_utc_1.tz_convert('Europe/London')
# then printing all these dates
print("march_utc_30 {} pd_march_utc_30 {} pd_local_march_utc_30 {}".format(march_utc_30, pd_march_utc_30, pd_local_march_utc_30))
print("march_utc_31 {} pd_march_utc_31 {} pd_local_march_utc_31 {}".format(march_utc_31, pd_march_utc_31, pd_local_march_utc_31))
print("april_utc_1  {} pd_april_utc_1  {} pd_local_april_utc_1  {}".format(april_utc_1, pd_april_utc_1, pd_local_april_utc_1))

这些print声明的输出是:

march_utc_30 2019-03-30 00:00:00+00:00 pd_march_utc_30 2019-03-30 00:00:00+00:00 pd_local_march_utc_30 2019-03-30 00:00:00+00:00
march_utc_31 2019-03-31 00:00:00+00:00 pd_march_utc_31 2019-03-31 00:00:00+00:00 pd_local_march_utc_31 2019-03-31 00:00:00+00:00
april_utc_1  2019-04-01 00:00:00+00:00 pd_april_utc_1  2019-04-01 00:00:00+00:00 pd_local_april_utc_1  2019-04-01 01:00:00+01:00

我可以使用for循环来查明当前日期是否是该月的最后一个星期日,或者比较当前日期和第二天之间的“小时增量”,看看是否有+1,但是我我想知道是否有更清洁的方法来做到这一点?

是否有一些东西附在这一年,例如知道输入年份是2019然后我们肯定知道3月的“更改日期”将是第31天?

python-3.x pandas timezone timezone-offset
1个回答
1
投票

使用dateutil.rrule可以提供帮助(使用pip install python-dateutil安装)。

因为我们可以按周获取日期,所以我们不需要任何循环,

from dateutil.rrule import rrule, WEEKLY
from dateutil.rrule import SU as Sunday
from datetime import date
import datetime

def get_last_sunday(year, month):
    date = datetime.datetime(year=year, month=month, day=1)
    # we can find max 5 sundays in a months
    days = rrule(freq=WEEKLY, dtstart=date, byweekday=Sunday, count=5)
    # Check if last date is same month,
    # If not this couple year/month only have 4 Sundays
    if days[-1].month == month:
        return days[-1]
    else:
        return days[-2]

def get_march_switch(year):
    # Get 5 next Sundays from first March
    day = get_last_sunday(year, 3)
    return day.replace(hour=1, minute=0, second=0, microsecond=0)

def get_october_switch(year):
    day = get_last_sunday(year, 10)
    return day.replace(hour=2, minute=0, second=0, microsecond=0)

print('2019:')
print('  {}'.format(get_march_switch(2019)))
print('  {}'.format(get_october_switch(2019)))

print('2021:')
print('  {}'.format(get_march_switch(2021)))
print('  {}'.format(get_october_switch(2021)))

get_sundays()从给定的month的第一天返回5个下周日,因为一个月最多可以有5个星期日。

然后我只检查(在get_(march|october)_switch()内)最后给定的星期天是否来自预期的月份,如果不是很好这个月只有4个星期日,我拿了这个。

最后我修复了小时,秒和微秒。

输出:

2019:
  2019-03-31 01:00:00
  2019-10-27 02:00:00
2021:
  2021-03-28 01:00:00
  2021-10-24 02:00:00
© www.soinside.com 2019 - 2024. All rights reserved.