An open API service indexing awesome lists of open source software.

https://github.com/ecmwf/metkit

Toolkit for manipulating and describing meteorological objects, implementing the MARS language and associated processing and semantics.
https://github.com/ecmwf/metkit

fdb mars

Last synced: 11 months ago
JSON representation

Toolkit for manipulating and describing meteorological objects, implementing the MARS language and associated processing and semantics.

Awesome Lists containing this project

README

          

metkit
======

[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/ecmwf/metkit/blob/develop/LICENSE)

Requirements
------------

Runtime dependencies:

- eckit -- http://github.com/ecmwf/eckit

Build dependencies:

- CMake --- For use and installation see http://www.cmake.org/
- ecbuild --- ECMWF library of CMake macros ()

Installation
------------

metkit employs an out-of-source build/install based on CMake.

Make sure ecbuild is installed and the ecbuild executable script is found ( `which ecbuild` ).

Now proceed with installation as follows:

```bash
# Environment --- Edit as needed
srcdir=$(pwd)
builddir=build
installdir=$HOME/local

# 1. Create the build directory:
mkdir $builddir
cd $builddir

# 2. Run CMake
ecbuild --prefix=$installdir -- -DECKIT_PATH= $srcdir

# 3. Compile / Install
make -j10
make install
```