我正在编写一个脚本,该脚本应该根据日期范围确定一年的"季节":
例如:January 1 - April 1: Winter
April 2 - June 30: Spring
July 1 - September 31: Summer
October 1 - December 31: Fall
我不确定如何最好的方式(或最好的ruby方式)去做这件事。还有人知道怎么做吗?
9月31日?
正如leifg建议的那样,下面是代码:
require 'Date'
class Date
def season
# Not sure if there's a neater expression. yday is out due to leap years
day_hash = month * 100 + mday
case day_hash
when 101..401 then :winter
when 402..630 then :spring
when 701..930 then :summer
when 1001..1231 then :fall
end
end
end
定义后,像这样调用它:
d = Date.today
d.season
您可以尝试使用range和Date对象:
http://www.tutorialspoint.com/ruby/ruby_ranges.htm无范围
require 'date'
def season
year_day = Date.today.yday().to_i
year = Date.today.year.to_i
is_leap_year = year % 4 == 0 && year % 100 != 0 || year % 400 == 0
if is_leap_year and year_day > 60
# if is leap year and date > 28 february
year_day = year_day - 1
end
if year_day >= 355 or year_day < 81
result = :winter
elsif year_day >= 81 and year_day < 173
result = :spring
elsif year_day >= 173 and year_day < 266
result = :summer
elsif year_day >= 266 and year_day < 355
result = :autumn
end
return result
end
Neil Slater的回答方法很好,但对我来说,这些日期并不完全正确。他们显示秋天在12月31日结束,而我能想到的任何场景都不是这样。
利用北方气象季节:
- 春季从3月1日至5月31日;
- 夏季为6月1日至8月31日;
- 秋季(秋季)从9月1日至11月30日;和
- 冬季从12月1日至2月28日(闰年为2月29日)。
代码需要更新为:
require "date"
class Date
def season
day_hash = month * 100 + mday
case day_hash
when 101..300 then :winter
when 301..531 then :spring
when 601..831 then :summer
when 901..1130 then :fall
when 1201..1231 then :winter
end
end
end