Versions Compared

Key

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

...

  • <dateTimeParameter> : used to specify how the time should be passed in the url when requesting (parts of) the wms layer from the server. The name attribute specifies the name of the time parameter, the format specifies the datetime format pattern used and the timeZone attribute can be used to specify in which timezone the time should be passed. For example <dateTimeParameter name="time" format="yyyy-MM-dd" timeZone="GMT"/> will result in "time=2019-05-17" being added to the request url (when that date is selected on the time slider).
  • <timeStep> : the timeStep used when displaying the wms layer. You can find out the timestep supported by the WMS server for the layer you wish to animate by requesting its capabilities as described on the geoMap page.
  • <relativeViewPeriod> : the view period over which the wms layer will be displayed. You can find out the period supported by the WMS server for the layer you wish to animate by requesting its capabilities as described on the geoMap page.


trackLayer

Use this option to show a track of a particle, ship etc.

Code Block
<trackLayer>
   <dotFillColor>black</dotFillColor>
   <dotSize>1</dotSize>
   <onlyShowDotForCurrentTime>true</onlyShowDotForCurrentTime>
   <geoDatum>WGS 1984</geoDatum>
   <xTimeSeriesSet>
      <moduleInstanceId>ImportDrifters</moduleInstanceId>
      <valueType>scalar</valueType>
      <parameterId>Longitude</parameterId>
      <locationSetId>Drifters</locationSetId>
      <timeSeriesType>simulated forecasting</timeSeriesType>
      <timeStep unit="nonequidistant"/>
      <readWriteMode>read complete forecast</readWriteMode>
   </xTimeSeriesSet>
   <yTimeSeriesSet>
      <moduleInstanceId>ImportDrifters</moduleInstanceId>
      <valueType>scalar</valueType>
      <parameterId>Latitude</parameterId>
      <locationSetId>Drifters</locationSetId>
      <timeSeriesType>simulated forecasting</timeSeriesType>
      <timeStep unit="nonequidistant"/>
      <readWriteMode>read complete forecast</readWriteMode>
   </yTimeSeriesSet>
   <valueTimeSeriesSet>
      <moduleInstanceId>ImportDrifters</moduleInstanceId>
      <valueType>scalar</valueType>
      <parameterId>Age</parameterId>
      <locationSetId>Drifters</locationSetId>
      <timeSeriesType>simulated forecasting</timeSeriesType>
      <timeStep unit="nonequidistant"/>
      <readWriteMode>read complete forecast</readWriteMode>
   </valueTimeSeriesSet>
</trackLayer> 


showThumbnailsPanel

If this is true, then the grid display shows the spatial thumbnails panel when this grid plot is selected. Otherwise the grid display will not show the spatial thumbnails panel when this grid plot is selected. Default is false. After this grid plot has been selected, the user can still switch on/off the spatial thumbnails panel manually, using the toggle button in the grid display.

...