Versions Compared

Key

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

...

Section
Column
width30%


Column
width70%
Panel
titleMacro example
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)

The Taylor Grid  Editor

HTML
<h3> Taylor Label</h3>
<p>Label of the grid</p>
<h3> Taylor Label Colour</h3>
<p>Colour of the label</p>
<h3> Taylor Label Height</h3>
<p>Hieght of the label</p>
<h3> Taylor Primary Grid Increment</h3>
<p>Reference used  of the Standard deviation plotting.</p>
<h3> Taylor Primary Grid Line Colour</h3>
<p>Colour used to plot the primary grid</p>
<h3> Taylor Primary Grid Line Thickness</h3>
<p>Thickness used to plot the primary grid</p>
<h3> Taylor Primary Grid Line Style</h3>
<p>Line Style used to plot the primary grid</p>
<h3> Taylor Primary Grid Reference</h3>
<p>Reference used  of the Standard deviation plotting.</p>
<h3> Taylor Reference Line Colour</h3>
<p>Colour used to plot the primary grid</p>
<h3> Taylor Reference Line Thickness</h3>
<p>Thickness used to plot the primary grid</p>
<h3> Taylor Reference Line Style</h3>
<p>Line Style used to plot the primary grid</p>
<h3> Taylor Primary Label</h3>
<p>Turn the labels (on/off) of the primary grid</p>
<h3> Taylor Primary Label Colour</h3>
<p>Colour of the  labels  of the primary grid</p>
<h3> Taylor Primary Label Height</h3>
<p>Height of the  labels  of the primary grid</p>
<h3> Taylor Secondary Grid</h3>
<p>turn on/off the secondaries lines for the grid</p>
<h3> Taylor Secondary Grid Reference</h3>
<p>Reference used  of the Standard deviation plotting.</p>
<h3> Taylor Secondary Grid Increment</h3>
<p>Reference used  of the Standard deviation plotting.</p>
<h3> Taylor Secondary Grid Line Colour</h3>
<p>Colour used to plot the primary grid</p>
<h3> Taylor Secondary Grid Line Thickness</h3>
<p>Thickness used to plot the primary grid</p>
<h3> Taylor Secondary Grid Line Style</h3>
<p>Line Style used to plot the primary grid</p>
<h3> Taylor Secondary Label</h3>
<p>Turn the labels (on/off) of the secondary grid</p>
<h3> Taylor Secondary Label Colour</h3>
<p>Colour of the  labels  of the secondary grid</p>
<h3> Taylor Secondary Label Height</h3>
<p>Height of the  labels  of the secondary grid</p>




...