#!/bin/bash

# **************************** LICENSE START ***********************************
#
# Copyright 2012 ECMWF and INPE. This software is distributed under the terms
# of the Apache License version 2.0. In applying this license, ECMWF does not
# waive the privileges and immunities granted to it by virtue of its status as
# an Intergovernmental Organization or submit itself to any jurisdiction.
#
# ***************************** LICENSE END ************************************


# -----------------------------------------
# ECMWF extras for setting magmlx environment 
# for Obstat Scatter tool
# -----------------------------------------

# set up the environment
. /usr/local/share/ecmwf/use/sh.newmagics++


# run the specified module
if [ x$1 != x ]
then
    	exe=$1
	shift
	$METVIEW_BIN/$exe $*
fi
