the geographical view
my_view = mv.geoview(map_area_definition = "CORNERS",
map_projection = "CYLINDRICAL",
area = [25.00,-20.00,65.00,50.00],
coastlines = my_coast)
# set up the contour so that grid values are shown
my_contour = mv.mcont(contour_grid_value_plot = "ON",
contour_level_selection_type = "LEVEL_LIST",
contour_level_list = [-20, -10, -5, -2.5, -1, -0.5, 0, 0.5, 1, 2.5, 5, 10, 20],
contour_grid_value_height = 0.30,
contour_grid_value_plot_type = "BOTH",
contour_grid_value_marker_height = 0.20,
contour_line_colour = "GREY",
contour_highlight = "OFF",
contour_line_thickness = 2,
contour_label = "OFF",
contour_grid_value_lon_frequency = 10,
|