# Metview Macro

# **************************** LICENSE START ***********************************
#
# Copyright 2012 ECMWF. 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 ************************************

obs_area_bufr = read("../obs_area.bufr")

obs_t2m = obsfilter(
        output  :  "geopoints",
        data    :  obs_area_bufr
        )


obs_symb = msymb(
        legend                                 : "on",
        symbol_type                            : "marker",
        symbol_table_mode                      : "advanced",
        symbol_advanced_table_max_level_colour : "red",
        symbol_advanced_table_min_level_colour : "blue",
        symbol_advanced_table_colour_direction : "clockwise"
        )

plot (obs_t2m, obs_symb)
