mirror of https://github.com/ecmwf/eccodes.git
Rebranding
This commit is contained in:
parent
80d31eec3d
commit
bda47b2b48
3
AUTHORS
3
AUTHORS
|
@ -1,5 +1,6 @@
|
|||
Shahram Najm
|
||||
Enrico Fucile
|
||||
Shahram Najm
|
||||
Sandor Kertesz
|
||||
Baudoin Raoult
|
||||
Cristian Codorean
|
||||
Jean-Baptiste Filippi
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
The changelog is now online. Please see:
|
||||
|
||||
https://software.ecmwf.int/wiki/display/GRIB/History+of+Changes
|
||||
https://software.ecmwf.int/wiki/display/ECC/History+of+Changes
|
||||
|
||||
|
||||
|
|
20
INSTALL
20
INSTALL
|
@ -1,5 +1,5 @@
|
|||
|
||||
The grib_api installation is based on the standard configure utility.
|
||||
The ecCodes installation is based on the standard configure utility.
|
||||
It is tested on several platforms and with several compilers. However for some platforms
|
||||
modifications to the installation engine may be required. If you encounter any problem
|
||||
during the installation procedure please send an e-mail with your problem to
|
||||
|
@ -7,27 +7,27 @@ Software.Support@ecmwf.int.
|
|||
|
||||
The only required package for a standard installation is jasper which enables the jpeg2000
|
||||
packing/unpacking algorithm.
|
||||
It is possible to build grib_api without jasper, by using the --disable-jpeg configure option,
|
||||
It is possible to build ecCodes without jasper, by using the --disable-jpeg configure option,
|
||||
but to install a fully functional library, its download is recommended.
|
||||
|
||||
|
||||
Standard Installation
|
||||
=====================
|
||||
|
||||
1. Download grib_api from https://software.ecmwf.int/wiki/display/GRIB/Releases.
|
||||
1. Download eccodes from https://software.ecmwf.int/wiki/display/ECC/Releases.
|
||||
2. Unpack distribution:
|
||||
|
||||
> gunzip grib_api-X.tar.gz
|
||||
> tar xf grib_api-X.tar
|
||||
> gunzip eccodes-X.tar.gz
|
||||
> tar xf eccodes-X.tar
|
||||
|
||||
3. Create the directory where to install grib_api say grib_api_dir
|
||||
3. Create the directory where to install eccodes say eccodes_dir
|
||||
|
||||
> mkdir grib_api_dir
|
||||
> mkdir eccodes_dir
|
||||
|
||||
4. Run the configure in the grib_api-X
|
||||
4. Run the configure in the eccodes-X
|
||||
|
||||
> cd grib_api-X
|
||||
> ./configure --prefix=grib_api_dir
|
||||
> cd eccodes-X
|
||||
> ./configure --prefix=eccodes_dir
|
||||
|
||||
5. make, check and install
|
||||
|
||||
|
|
2
NOTICE
2
NOTICE
|
@ -1,4 +1,4 @@
|
|||
ECMWF GRIB API
|
||||
ECMWF ecCodes
|
||||
Copyright 2005-2015 ECMWF.
|
||||
|
||||
This product includes software developed at ECMWF (http://www.ecmwf.int).
|
||||
|
|
22
README
22
README
|
@ -1,25 +1,25 @@
|
|||
grib_api is the ECMWF encoding/decoding software for GRIB edition 1 and 2.
|
||||
ecCodes is the ECMWF encoding/decoding software for GRIB (edition 1 and 2) and BUFR.
|
||||
|
||||
Documentation in html format can be found in the html directory of the
|
||||
distribution directory.
|
||||
Documentation can be found here:
|
||||
https://software.ecmwf.int/wiki/display/ECC/ecCodes+Home
|
||||
|
||||
INSTALLATION
|
||||
|
||||
Standard Installation
|
||||
1. Download grib_api from https://software.ecmwf.int/wiki/display/GRIB/Releases
|
||||
1. Download from https://software.ecmwf.int/wiki/display/ECC/Releases
|
||||
2. Unpack distribution:
|
||||
|
||||
> gunzip grib_api-X.tar.gz
|
||||
> tar xf grib_api-X.tar
|
||||
> gunzip eccodes-X.tar.gz
|
||||
> tar xf eccodes-X.tar
|
||||
|
||||
3. Create the directory where to install grib_api say /usr/local/grib_api_dir
|
||||
3. Create the directory where to install eccodes say /usr/local/eccodes_dir
|
||||
|
||||
> mkdir /usr/local/grib_api_dir
|
||||
> mkdir /usr/local/eccodes_dir
|
||||
|
||||
4. Run the configure in the grib_api-X
|
||||
4. Run the configure in the eccodes-X
|
||||
|
||||
> cd grib_api-X
|
||||
> ./configure --prefix=/usr/local/grib_api_dir
|
||||
> cd eccodes-X
|
||||
> ./configure --prefix=/usr/local/eccodes_dir
|
||||
|
||||
Note that the prefix must be the absolute path of the
|
||||
directory created.
|
||||
|
|
|
@ -2,7 +2,7 @@ if( SWIG_FOUND )
|
|||
message( STATUS " SWIG command : [${SWIG_EXECUTABLE}]" )
|
||||
endif()
|
||||
|
||||
foreach( _tpl ${GRIB_API_TPLS} )
|
||||
foreach( _tpl ${ECCODES_TPLS} )
|
||||
string( TOUPPER ${_tpl} TPL )
|
||||
if( ${TPL}_FOUND )
|
||||
message( STATUS " ${_tpl} ${${_tpl}_VERSION}" )
|
||||
|
|
Loading…
Reference in New Issue