pygrib
pygrib copied to clipboard
Python interface for reading and writing GRIB data
Apologies for asking this as part of an issue but there is no discussion board on this repo. I've been trying to find a good grib2 writer for 2D and...
How can I save my xarray dataset on a fresh grib file using pygrib? In other words How can I generate a fresh grib message on python using pygrib.
Using pygrib 2.1.5, the attached HRRR grib file is instantaneous solar radiation at sixty minutes from model initialization [hrrr_grib2.zip](https://github.com/jswhit/pygrib/files/14905333/hrrr_grib2.zip) wgrib2 properly reports this as ``` $ wgrib2 hrrr.grib2 1:0:d=2024040807:DSWRF:surface:60 min...
Whether it is possible to extend support for the `len` function to the object returned by `pygrib.open`, such that it could be used like this: ```python import pygrib grb =...
I'm on Python 3.10, gcc 13.2.1 and Linux of course. Cython 0.29 works, more modern version fail: ``` [1/1] Cythonizing src/pygrib/_pygrib.pyx /usr/lib/python3.10/site-packages/Cython/Compiler/Main.py:373: FutureWarning: Cython directive 'language_level' not set, using '3'...
The memory allocated when an index is opened is not correctly released, in fact when the index is opened and closed multiple times you can notice the memory increase. Does...
Good afternoon! I'm trying to install the pygrib library to run in VS Code, but I'm not succeeding. When I go to install, the following reason appears: note: This error...
Hello, I have been working on a project that involves processing weather data using the Pygrib library in Python. During my implementation, I encountered an issue with replacing a new...
I faced the following issue while using pygrib 2.1.4 installed using pip. ``` File "src/pygrib/_pygrib.pyx", line 538, in pygrib._pygrib.open.select ValueError: no matches found ``` The grib file i used is...
am trying to read NOAA's GFS weather data which is in .grb2 format with Pygrib in PYTHON. An example of the data can be found https://nomads.ncep.noaa.gov/pub/data/nccf/com/gfs/prod/gfs.20230610/06/atmos/gfs.t06z.pgrb2.0p25.f000 The issue is that...