#!/bin/bash

# **************************** LICENSE START ***********************************
#
# Copyright 2021- 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 ************************************


# ensure we have a Python3 environment


which python3

if [ $? -eq 1 ]
then
    module load python3
fi

python3 $METVIEW_BIN/metgram.py -i $1

