#Metview Macro

#Read ODB
amsua_odb = read("AMSUA.odb")

#Define plot
tb_plot = odb_visualiser(
		odb_where	:	"vertco_reference_1@body = 5 ",
		odb_data	:	amsua_odb
		)

#Symbol plotting
symbol_fixed = msymb(
		legend	:	"on",
		symbol_type	:	"marker",
		symbol_table_mode	:	"advanced",
		symbol_advanced_table_selection_type	:	"interval",
		symbol_advanced_table_min_value	:	220,
		symbol_advanced_table_max_value	:	270,
		symbol_advanced_table_interval	:	5,
		symbol_advanced_table_max_level_colour	:	"red",
		symbol_advanced_table_min_level_colour	:	"blue",
		symbol_advanced_table_colour_direction	:	"clockwise",
		symbol_advanced_table_marker_list	:	3,
		symbol_advanced_table_height_list	:	0.15
		)
#Title
title = mtext(
		text_line_count	:	3,
		text_line_1	:	"Date: 2010-12-22 Time: 00",
		text_line_2	:	"Sat: METOP-A  Sensor: AMSU-A  Channel: 5 Param: Tb [K]",
		text_line_3	:	"Type: MFB"
		)

#Plot
plot(tb_plot,symbol_fixed,title)
