基于R中最高温度的热波计算 [英] Heatwave calculation based on maximum temperature in R

查看:69
本文介绍了基于R中最高温度的热波计算的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果气象站的最高温度连续3天或更长时间连续高于正常温度3°C或以上,则定义为热浪。我已经根据多年的每日最高温度数据(例如

A heatwave is defined if the maximum temperature at a meteorological station is 3 °C or more than the normal temperature consecutively for 3 days or more. I have calculated the daily average (daily normal) from multiple-year daily maximum temperature data like

df <- data.frame("date"= seq(from = as.Date("1970-1-1"), to = as.Date("2000-12-31"), by = "day"),
                        "MaxT" = runif(length(seq.Date(as.Date("1970-1-1"), as.Date("2000-12-31"), "days")), 20, 40))

df$day <- format(df$date, format='%m-%d')

daily_mean <- aggregate(MaxT ~ day, data=df, FUN=mean)

现在必须将其与每年的每日最高温度相匹配,并确定何时最高温度连续3天或以上连续3天高于正常日温度。这些事件将被视为热浪。我的问题是如何在R中实现它?

Now it has to be matched with every year's daily maximum temperature and identify the dates when the maximum temperature is 3 °C or more than the normal daily temperature consecutively for 3 days or more. Those events will be considered as heatwaves. My question is how to implement it in R?

推荐答案

这里是使用 dplyr zoo rollapplyr

library(dplyr)

df_out <- df %>%
           left_join(daily_mean %>% rename(mean_temp = MaxT), by = 'day') %>% 
            mutate(is_heatwave = zoo::rollapplyr(MaxT > (mean_temp + 3), 
              3, all,fill = NA))

热浪的某些情况:

df_out[31:50, ]

#         date     MaxT   day mean_temp is_heatwave
#31 1970-01-31 26.31675 01-31  28.31451       FALSE
#32 1970-02-01 22.05946 02-01  29.83059       FALSE
#33 1970-02-02 34.22469 02-02  29.84562       FALSE
#34 1970-02-03 33.03264 02-03  29.87919       FALSE
#35 1970-02-04 36.62357 02-04  31.50603        TRUE
#36 1970-02-05 29.82134 02-05  30.22581       FALSE
#37 1970-02-06 28.13625 02-06  29.64073       FALSE
#38 1970-02-07 29.95754 02-07  29.54277       FALSE
#39 1970-02-08 21.40026 02-08  30.96619       FALSE
#40 1970-02-09 33.10983 02-09  28.16146       FALSE
#41 1970-02-10 30.87346 02-10  29.37693       FALSE
#42 1970-02-11 31.08721 02-11  28.89930       FALSE
#43 1970-02-12 27.34925 02-12  29.27882       FALSE
#44 1970-02-13 31.88582 02-13  29.35825       FALSE
#45 1970-02-14 30.05155 02-14  28.24995       FALSE
#46 1970-02-15 35.07049 02-15  29.02716       FALSE
#47 1970-02-16 39.49029 02-16  32.75644       FALSE
#48 1970-02-17 37.41917 02-17  31.44022        TRUE
#49 1970-02-18 36.03564 02-18  29.56212        TRUE
#50 1970-02-19 36.48052 02-19  30.18766        TRUE

TRUE 值是存在热浪的位置。正如我们在第33、34和35行看到的那样,当 MaxT mean_temp 大连续三天时,比3度同样,我们可以再验证几天。

TRUE values are where heatwave was present. As we can see in row 33, 34 and 35 we had 3 consecutive days when MaxT was greater than mean_temp by more than 3 degrees. Similarly, we can verify for other days.

要获得每年的热浪发生次数,我们可以这样做:

To get yearly heatwave occurrences, we can do :

df_year <- df_out %>%
             group_by(year = format(date, "%Y")) %>%
             summarise(total_heat = with(rle(is_heatwave), 
                                         sum(values, na.rm = TRUE)))

sum(df_year $ total_heat)即可得出总计数。

这篇关于基于R中最高温度的热波计算的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆