R语言下载气象数据

article/2025/9/22 11:43:21

近来气象数据共享网的账户到期,失去日序列数据的下载权限。总结了以下R语言气象数据的下载包。尚未亲自尝试,具体各包的适用情况诸君请自行研究。

package一览

下列所有包的来源均属于 rOpenSci 项目.

1. GSODTools
2. GSOD
3. rnoaa
4. bomrang
5. riem
6. weathercan
7. CliFlo
8. weatherData

在这里插入图片描述
上述包简介如下:
The GSODTools by Florian Detsch is an R package that offers similar functionality as GSODR, but also has the ability to graph the data and working with data for time series analysis.

The gsod package from DataBrew aims to streamline the way that researchers and data scientists interact with and utilize weather data and relies on [GSODR], but provides data in the package rather than downloading so it is faster (though available data may be out of date).
在这里插入图片描述

rnoaa, from rOpenSci offers tools for interacting with and downloading weather data from the United States National Oceanic and Atmospheric Administration but lacks support for GSOD data.

bomrang, from rOpenSci provides functions to interface with Australia Government Bureau of Meteorology (BoM) data, fetching current and historical data including précis and marine forecasts, current weather data from stations, agriculture bulletin data, BoM 0900 or 1500 weather bulletins and satellite and radar imagery.

riem from rOpenSci allows to get weather data from Automated Surface Observing System (ASOS) stations (airports) in the whole world thanks to the Iowa Environment Mesonet website.

weathercan from rOpenSci makes it easier to search for and download multiple months/years of historical weather data from Environment and Climate Change Canada (ECCC) website.

CliFlo from rOpenSci is a web portal to the New Zealand National Climate Database and provides public access (via subscription) to around 6,500 various climate stations (see https://cliflo.niwa.co.nz/ for more information). Collating and manipulating data from CliFlo (hence clifro) and importing into R for further analysis, exploration and visualisation is now straightforward and coherent. The user is required to have an Internet connection, and a current CliFlo subscription (free) if data from stations, other than the public Reefton electronic weather station, is sought.

weatherData provides a selection of functions to fetch weather data from Weather Underground and return it as a clean data frame

参考文献

https://ropensci.org/packages/


http://chatgpt.dhexx.cn/article/RYBSKrRK.shtml

相关文章

Linux+conda+R+Rstudio下载安装环境全方面配置

很多小伙伴不习惯在R中用到conda环境,其实这可能是因为你还没有使用到对环境有更高要求的包。 假如我们想安装R包A,它要求的R版本是4.3.0,但是你现在R版本是4.2.0,并且你其他的算法包都是根据4.2.0所创建的,那么就会造…

R语言使用教程(三)——Rstudio添加镜像源(加快包的下载)

文章目录 Windows系统R语言使用教程(三)——Rstudio添加镜像源(加快包的下载)打开rstudio --> Tools --> Global Options -->Packages --> add -->输入--> Change --> 选择离自己最近的源 --> Apply --> OK参考链接 Windows系…

【数据分析入门】R语言下载与R包新旧设备转移

一、R语言下载 https://cran.rstudio.com/ 二、Rstudio下载 https://www.rstudio.com/products/rstudio/download/#download Rstudio是R语言的集成开发环境 如果R语言是饭,Rstudio就是筷子 不用筷子也行,可以用手(直接用R) 但是…

R语言批量下载PubMed摘要

1&#xff0c;安装easyPubMed包&#xff1a; install.packages("easyPubMed")2&#xff0c;关键字搜索下载摘要信息 library(easyPubMed) query <- "GATK" #以关键字“GATK”为例 file_name <- "GATK" #保存结果的输出文件的文件名前缀…

R或RStudio下载包时出错解决方案

当我们想要在R&RStudio中下载包时可能会出现如下类似错误 在如下目录中的Rprofile.site文件中对应位置增加一条代码即可&#xff1a; options(download.file.method"libcurl") 修改好后&#xff0c;再次下载即可成功&#xff01;

R语言源代码下载

吐槽&#xff1a;老师说让我去找开源代码&#xff0c;不要用别人做好的软件。 经过调研&#xff0c;有两个可以用的开源软件&#xff0c;一个是bibliometrix&#xff0c;一个是SciMAT。 软件都没用过就算了&#xff0c;学一学就行&#xff0c;可是这些软件只支持英文文献&#…

R3.6.3下载 Rstudio下载及安装,网盘链接永久有效

链接&#xff1a;https://pan.baidu.com/s/1ab1JdmzKDAbDuUv76K3g1Q 提取码&#xff1a;pzkj 永久有效&#xff0c;收藏点赞拿走 记得软件安装路径一定不要有中文、空格&#xff0c;默认安装就没什么问题&#xff0c;其他问题可以联系文末微信号&#xff0c;24小时解答。 参考…

R和Rstudio 下载安装

R下载地址 1.选择自己电脑系统 2.点击base 3.选择合适版本下载 Rstudio下载地址 点击右上角 DOWNLOAD 点击 Free下 DOWNLOAD 选择合适的下载即可 机械安装即可&#xff08;默认安装C盘&#xff0c;可自行更改安装路径&#xff09; 在电脑开始页可看见&#xff0c;如图

R和RStudio下载安装详细步骤

相关文章&#xff1a; r语言基础知识 r语言习题和参考答案 r语言数据分析案例 还有很多相关文章都在我的专栏里面&#xff1a;R语言专栏 本文介绍R和RStudio的下载安装&#xff08;Windows系统&#xff09;&#xff0c;步骤十分详细&#xff08;按照我截图的顺序来即可&#x…

第一课 R语言下载和安装

一、什么是 R 语言 R 编程语言被广泛应用在统计科学和商业领域。在各种编程语言排名中 R 语言的排名 都很靠前。它是一款集成了数据操作、统计&#xff0c;以及可视化功能的优秀开源软件。免费&#xff0c;开源 是 R 重要的特点。 二、什么是 RStudio RStudio 是用亍 R 编…

R语言下载GEOquery包

一开始我用的是R语言常用的下载方式 install.packages(GEOquery) 结果报错了。 然后&#xff0c;我在网上查找资料&#xff0c;看到这个视频 如何在R上下载GEOquery包_哔哩哔哩_bilibili 首先&#xff0c;确认有BiocManager包&#xff0c;没有的话就下载 if(!requireNames…

RStudio 下载R包的几种方法

1. 使用RStudio自带的安装方法&#xff0c;右侧找到Packages&#xff0c;点击Install&#xff0c;然后输入package_name即可 2.使用CRAN&#xff0c;repos后面的镜像地址可以更改&#xff0c;一般使用的是这个清华的镜像。 #一般使用第一行命令进行安装&#xff0c;如果不成功…

R语言——RStudio下载R包时总是下载不成功?解决方案

RStudio下载R包出现Warning in install.packages的情况 原因是&#xff1a;由于RStudio的源是Global&#xff0c;所以在使用install命令去安装包的时候可能会出现数据部分丢失的情况。 解决方法&#xff1a;换源 在工具栏找到Tools->Global Options 在右边的栏目里找到Pack…

Linux简单了解入门学习一

1. 学习Linux之前先认识Unix l Unix是一个强大的多用户、多任务操作系统。 l 于1969年在AT&T的贝尔实验室开发。 l UNIX的商标权由国际开放标准组织(The Open Group)所拥有。 l UNIX操作系统是商业版,需要收费,价格比Microsoft Windows正版要贵一些。 2. Linux l…

(一) Linux入门概述

系列文章目录 &#xff08;一&#xff09; Linux入门概述 &#xff08;二&#xff09; Linux环境搭建 &#xff08;三&#xff09; Linux常用命令 &#xff08;四&#xff09; 软件安装与部署 文章目录 系列文章目录前言Linux概述 前言 Linux和Windows一样是一个操作系统软件&…

Linux一篇入门(以Ubuntu为例)

一、Linux与Windows区别 Linux&#xff1a;无盘符&#xff0c;只有一个根目录&#xff08;/&#xff09; Windows&#xff1a;有盘符 二、目录相关常见命令 Linux命令格式&#xff1a; cmd -option parameter cdm命令&#xff0c;就是一个操作 parameter一般是要做的对象…

Linux新手入门

1 什么是Linux系统&#xff1f; Linux&#xff0c;全称GNU/Linux&#xff0c;是一种免费使用和自由传播的类UNIX操作系统&#xff0c;其内核由林纳斯本纳第克特托瓦兹于1991年10月5日首次发布&#xff0c;它主要受到Minix和Unix思想的启发&#xff0c;是一个基于POSIX的多用户…

Linux 系统必备入门级自学手册!

你知道哪个操作系统是世界上最受欢迎的操作系统吗&#xff1f;是Linux&#xff01; 据不完全统计&#xff0c;Linux在数据中心操作系统上的份额高达近70&#xff05;。它一般运行于服务器和超级计算机上&#xff0c;我们日常访问网站背后的数百万台服务器很大几率运行着的操作系…

初学linux系统

1、创建虚拟机 2、安装linux操作系统 选择Linux系统 输入名称&#xff08;自定义&#xff09;即可 根据本机情况自定义虚拟机内存空间 &#xff08;建议2G&#xff09; 选择NAT 仅主机模式无网络 桥接网络 如果本机连接的是WiFi 可能会造成虚拟机无网络情况 分配磁盘大小…

Linux学习从入门到精通推荐书籍

如何学习Linux 在现在的生活&#xff0c;生产&#xff0c;研究等领域&#xff0c;Linux已经无所不在&#xff0c;从我们使用的手机&#xff0c;车载设备&#xff0c;到服务器&#xff0c;桌面电脑等&#xff0c;Linux已经成为这个世界方方面面的基石。尤其对于参与技术有关工作…