Versions Compared

Key

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

...

Code Block
languagexml
linenumberstrue
<gridPlotGroup id="PlotGroup1">
   <gridPlot id="PlotGroup1 Plot1">
      <dataLayer>
            <timeSeriesSet>
               <moduleInstanceId>Import</moduleInstanceId>
               <valueType>scalar</valueType>
               <parameterId>H.m</parameterId>
               <locationId>LocA</locationId>
               <timeSeriesType>external historical</timeSeriesType>
               <timeStep unit="hour"/>
               <relativeViewPeriod unit="hour" start="-24" end="0"/>
               <readWriteMode>read only</readWriteMode>
         </timeSeriesSet>          
      </dataLayer>
      <classBreaks>
         <unitVisible>true</unitVisible>
         <break color="FFFFFF" lowerValue="0" label="no rain" opaquenessPercentage="35"/>
         <break color="99E9FF" lowerValue="0.2" label="nearly dry" opaquenessPercentage="35"/>
         <break color="00C8FF" lowerValue="1" label="rain" opaquenessPercentage="60"/>
         <break color="0053FF" lowerValue="5" opaquenessPercentage="60"/>
         <break color="00956A" lowerValue="10" label="even more rain" opaquenessPercentage="60"/>
         <break color="00FA10" lowerValue="25" label="a lot of rain" opaquenessPercentage="60"/>
         <break color="F5F50A" lowerValue="50" label="storm" opaquenessPercentage="60"/>
         <break color="FF9600" lowerValue="75" label="big storm" opaquenessPercentage="60"/>
         <break color="FF0000" lowerValue="100" label="even bigger storm" opaquenessPercentage="80"/>
         <break color="960000" lowerValue="200" label="flood" opaquenessPercentage="80"/>
         <break color="FF00CC" lowerValue="400" label="very big flood" opaquenessPercentage="80"/>
      </classBreaks>
   </gridPlot>
</gridPlotGroup>


Show last import time for external historical data

This option is supporten with online version only. The option dataFeedId needs to be configured per gridPlot. The value of the dataFeedId must be the same value that can be seen in System Monitor table, tab Import Status. The id should be the one that corresponds with the module instance id of the time series.

Code Block
languagexml
linenumberstrue
<gridPlotGroup id="Radar KNMI">
   <gridPlot id="TF0005_R" name="Uncorrected 5 min">
      <dataFeedId>ATIS</dataFeedId>
      <timeSeriesSet>
         <moduleInstanceId>ImportWIWB</moduleInstanceId>
         <valueType>grid</valueType>
         <parameterId>P.radar</parameterId>
         <qualifierId>realtime</qualifierId>
         <locationId>KNMI-RADAR1km</locationId>
         <timeSeriesType>external historical</timeSeriesType>
         <timeStep unit="minute" multiplier="5"/>
         <relativeViewPeriod unit="day" start="-10" end="5"/>
         <readWriteMode>read only</readWriteMode>
      </timeSeriesSet>
      <accumulationTimeSpan multiplier="1" unit="hour"/>
      <accumulationTimeSpan multiplier="6" unit="hour"/>
      <accumulationTimeSpan multiplier="12" unit="hour"/>  
      <classBreaks>
         <break lowerValue="0" color="white" label="0 mm/hr" opaquenessPercentage="25"/>
         <break lowerValue="0.008" color="light blue" label="0.1" opaquenessPercentage="75"/>
         <break lowerValue="0.083" color="8CAAFF" label="1" opaquenessPercentage="80"/>
         <break lowerValue="0.167" color="636DFF" label="2" opaquenessPercentage="85"/> 
      </classBreaks>
      <contourLinesColor>gray</contourLinesColor>
   </gridPlot>
</gridPlotGroup>

If dataFeedId is configured, this is how the time will appear:

Image Added



Logo at map

Some satelite products require to be shown with a logo, where the imageFile with the logo should be located in the MaplayerFiles directory.

...