Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Section
Column
width30%


Column
width70%

 

 

 

 

Code Block
titleMacro Example
collapsetrue
#Metview Macro
png = png_output(output_name:"taylor")
	taylor_grid = mtaylor(
	taylor_primary_grid_increment : 0.1,
	taylor_secondary_grid : "on",
	taylor_secondary_grid_increment : 0.1,
	taylor_secondary_grid_line_colour : "RGB(0.28,0.58,0.11)",
	taylor_secondary_grid_line_style : "dash",
	taylor_secondary_label_colour : "RGB(0.33,0.58,0.16)"
)
view = cartesianview(
	map_projection : "taylor",
	page_frame : "off",
	subpage_frame : "off",
	taylor_grid : taylor_grid
)
input = input_visualiser(
	input_x_values : [0.2,0.4,0.6,0.7],
	input_y_values : [0.1,0.3,0.5,0.8]
)
symbol = msymb(
	symbol_type : "marker",
	symbol_marker_index : 15,
	symbol_colour : "red",
	symbol_height : 0.5,
	symbol_outline : "on",
	symbol_outline_thickness : 2
)
plot(png, view, input, symbol

...