问题标签 [grib]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
gdal - 如何将 GRIB 文件目录加载到 Dask 数组中
假设我有一个包含数千个 GRIB 文件的目录。我想将这些文件加载到 dask 数组中,以便查询它们。我该怎么做呢?下面的尝试似乎有效,但它需要打开每个 GRIB 文件,并且需要很长时间才能运行和我的所有内存。肯定有更好的办法。
我的尝试:
xcode - 在 Mac Osx El Capitan 上编译代码时 gcc 和 clang 之间的冲突
我正在编译一个需要 C 和 Fortran 的代码(wgrib)。我已经在我的 MacOsx El Capitan 上安装了 Xcode 7.3.1 和 Xcode 7.3 的相关命令行工具。编译 wgrib(失败)后,我正在粘贴命令行和 config.log。
batch-file - 在 grib 文件的文件夹上迭代 grib 工具
我正在尝试在批处理文件中使用 grib 工具(我在 Windows 7 上)将大量 GRIB 文件批量转换为 netCDF。
我正在使用这段代码:
但是当我运行它时,除了 CMD 打开和关闭非常快之外,似乎什么都没有发生。
我可能错过了一些语法错误,但我的主要问题是:我可以在 grib 工具语句中使用通配符 (*) 吗?另外,目录路径名中的空格是否有问题?
谢谢!
azure - 选择正确的 Azure 技术来存储和处理天气预报数据
我想从 NCEP GFS(天气预报数据提供商)下载 FTP 文件并从中提取一些参数。过滤后(我只需要温度和降水量),我每天大约有 1 GB 的 GRIB 格式(二进制)数据。因为这些文件包含“网格数据”,SQL Azure 不是(恕我直言)存储此类文件的最佳解决方案(10 年的数据导致存储 3 TB)。最后,这些文件应该由 Azure ML 和 Power BI 使用。报告涉及一些“地理空间连接”,以按国家、州等聚合网格数据。
您对如何选择正确的技术有任何想法吗?当我阅读 Azure 文档时,我有点迷茫,因为数据存储太多,很难理解它们各自的优缺点:Azure Data Lake、HDInsight 等。
在此先感谢您的帮助。
此致
python - 使用 Python 将 grib 文件转换为文本文件
我想从一个文件夹中读取许多 grib 文件,然后另存为文本文件。文本文件的名称将与 grib 文件的名称相同。我的代码:
运行代码时,出现此错误: AttributeError: 'str' object has no attribute 'write'
干杯!
r - ReadGrib(来自 rNOMADS)返回空列表
为什么ReadGrib
返回空列表?这个例子非常接近文档ReadGrib
的用法:https ://cran.r-project.org/web/packages/rNOMADS/rNOMADS.pdf
python - 使用 python 脚本将 .grib 文件转换为 .nc 文件?
我是 python 的初学者,正在寻找一个 python 脚本,通过遵循文件所在目录的路径将 .grib 文件转换为 .nc。我知道 cdo 命令行和 ncl 脚本。但是,由于数据文件的数量很大并且随着时间的推移不断更新,我正在寻找一种方法来自动化转换过程。
先感谢您。
python - Problems when i convert Grib2 to Netcdf4
I got some problems when i try to convert some grib files form CFSR.
when i use ncl_convert2nc
in the unix shell, the nc file information is like this :
and this only happen when i convert CFSR data grib2 files.
here is part of information of the origin file:
as you can see it is able to find the variables from the grib file. So why the nc file is empty? ncl_convert2nc
do work for Grib files of JRA-55 reanalysis dataset. Can anyone help me find where is the problem?
python - Pygrib 打开编码错误
我正在尝试使用pygrib
Python 3.5 工作。我已经在我的程序中导入了它,我已经将 grib 文件分配给了一个变量(grib)。
但是当我尝试运行命令时:
grbs=pygrib.open(grib)
我收到以下错误:
文件“”,第 1 行,在 print(sys.getdefault_encoding())
AttributeError:模块“sys”没有属性“getdefault_encoding”
没有谷歌搜索让我对这个问题有任何理解。
这个错误实际上是什么意思?