data = mnetcdf(
netcdf_filename ='netcdffile.nc'
netcdf_time_dimension_setting = "2017-10-02 00:00:00", #extract the specified time
netcdf_value_variable = var
)
anomaly = mcont(contour = "off",
legend = "on",
contour_shade = "on",
contour_level_selection_type = "level_list",
contour_level_list = [-15.00, -0.5, 0.5, 15.00],
contour_label = "off",
contour_label_height = 0.40,
contour_label_colour = "charcoal",
contour_label_frequency = 1,
contour_shade_method = "area_fill",
contour_shade_colour_method = "gradients",
contour_gradients_colour_list = ['blue','white','white', 'red'],
contour_gradients_step_list = [50, 1, 50]
)
plot(data, contour) |