pygrib icon indicating copy to clipboard operation
pygrib copied to clipboard

Python interface for reading and writing GRIB data

Results 85 pygrib issues
Sort by recently updated
recently updated
newest added

Running into an issue here that I can't imagine is that uncommon given the large number of users in the meteorological community. I work with datasets between each of the...

When the environment variables `GRIBAPI_DIR`, `GRIBAPI_LIBDIR`, or `GRIBAPI_INCDIR` are set, the relevant directories are not added to `libdirs` and `incdirs`. As a result, `python setup.py build` and `python setup.py install`...

Hi, I am having difficulties building setup.py file. It seems that I am having trouble with the Jasper package. Below are the exact commands I executed to this point. Perhaps...

I have grib messages that use two different grids (one regular global grid and one gaussian global grid, and different numbers of lats and lons). I'd like to interpolate values...

I have a grib that only contains the value 100.0 which appears not to unpack correctly, the values unpack to 1000.0 not 100. Sample file containing only the value 100.0...

Hi I use pygrib to plot charts from GFS grib2 files (a UK subset). This works great and quick enough for my purposes. I am now looking into plotting time...

There is no support for the grid definition template 12. I'm working on a patch and can submit when I've got it to work (wont be fully tested though). Otherwise,...

I am trying to install pygrib using the following pip command #!/bin/bash pip install --global-option=build_ext \ --global-option="-I/usr/local/grib_api/include/" \ --global-option=build_ext \ --global-option="-L/usr/local/jasper-1.900.1/lib/ -ljasper" \ --global-option=build_ext \ --global-option="-L/usr/local/grib_api/lib/ -lgrib_api" \ --global-option=build_ext \...

Hi, I'm attempting to create a new grib file using an older one as a template and replacing the values in the messages with new ones. I've done this in...

This is a very common issue when installing several packages from a pip requirements file. see https://github.com/scipy/scipy/pull/453 Should be solvable by using a solution like https://github.com/pydata/pandas/blob/master/setup.py#L92. This introduces a setuptools...