• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Makefile.amH A D05-Dec-20183.2 KiB12586

Makefile.inH A D03-May-202231 KiB881756

READMEH A D05-Dec-2018732 2114

__init__.pyH A D05-Dec-2018217 72

compare_iterator_values.shH A D05-Dec-2018406 2014

dummy.amH A D05-Dec-20180

extrules.amH A D05-Dec-2018251 75

grib_errors.hH A D05-Dec-20183.7 KiB12259

grib_interface.cH A D05-Dec-201843.9 KiB1,9921,555

grib_interface.hH A D05-Dec-20186.1 KiB110107

gribapi.cH A D05-Dec-20184.3 KiB197133

gribapi.pyH A D05-Dec-201853.4 KiB1,7671,314

gribapi_swig.iH A D05-Dec-20187.8 KiB210150

gribfile.pyH A D05-Dec-20182 KiB6647

gribindex.pyH A D05-Dec-20183.6 KiB10481

gribmessage.pyH A D05-Dec-20187.2 KiB199152

numpy.iH A D05-Dec-201854.9 KiB1,6351,232

run_tests.shH A D05-Dec-2018125 95

setup.py.inH A D05-Dec-20182.5 KiB8768

swig_wrap_array.cH A D05-Dec-2018257.6 KiB8,1837,049

swig_wrap_array.pyH A D05-Dec-201820.6 KiB551441

swig_wrap_numpy.cH A D05-Dec-2018283.6 KiB9,0167,761

swig_wrap_numpy.pyH A D05-Dec-201821.4 KiB575459

test_extra.pyH A D05-Dec-2018938 4831

test_general.pyH A D05-Dec-20185.1 KiB173116

test_index.pyH A D05-Dec-20181.9 KiB8556

test_iterator.pyH A D05-Dec-2018873 4327

test_keysiterator.pyH A D05-Dec-2018772 3116

README

1GRIB API Python bindings
2
3In order to enable the Python bindings in the build,
4use the --enable-python configure flag.
5
6./configure --enable-python
7
8This will enable the build of the Python bindings with
9NumPy support enabled. Python needs to be in the path
10and, of course, the NumPy package installed.
11
12To build the Python bindings without NumPy support, use
13the --disable-numpy configure flag. This will result in
14Python array objects being used for data handling.
15
16On 'make install', the Python bindings will be installed as package
17'gribapi' under '${GRIBAPI_install_dir}/lib/pythonX.X/site-packages',
18where X.X is the version of python used to build the bindings.
19Add this folder to your PYTHONPATH and you are ready to go.
20
21