Versions Compared

Key

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

...

This element is available since 2018.01, in combination with a dataLayer containing a timeSeriesSet element. If this is set to true (false by default) and the locationSet in the timeSeriesSet contains (poly)-lines, the lines drawn in the spatial display will include directional arrows. If the time series has a positive value for a line, the arrow will point from the start of the line (first point found in the shape file) to the end of the line (second point found in the shape file). If the value is negative, the arrow is inverted. See the figures for examples.


symbolSvg

Since 2024.02. Instead of the circle symbol an custom svg can be configured. Every layer / time series set can have it's own symbol. The svg should only use the color black. The svg is automatically resized to the active symbol size.

Image Added

Code Block
languagexml
<dataLayer>
	<symbolSvg>triangle.svg</symbolSvg> <!--	from Config/IconFiles-->
	<timeSeriesSet>
		<moduleInstanceId>DummyImport</moduleInstanceId>
		<valueType>scalar</valueType>
		<parameterId>H.m</parameterId>
		<locationId>SX.E7842</locationId>
		<timeSeriesType>external historical</timeSeriesType>
		<timeStep unit="hour"/>
		<readWriteMode>read complete forecast</readWriteMode>
	</timeSeriesSet>
</dataLayer>


Code Block
languagexml
<?xml version="1.0"?>
<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg" version="1.1">
	<polygon points="0,10 5,0 10,10" fill="black"/>
</svg>
wmsLayer

Use this option to show an animated wms layer which will be downloaded from a WMS server.

...