Versions Compared

Key

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

...

When selecting a location in the spatial Display the displayGroup for this location will be opened in the TimeSeriesDisplay. Available for 2019.01 and later.

You have to edit 2 files to get this working. The SpatialDisplay.xml and the displayGroups.xml.

Code Block
languagexml
titleAdjustments to SpatialDisplay.xml
<gridPlotGroup id="Coastal" name="Coastal">                       
  <gridPlotGroup id="coastal_obs" name="Observations">                               
    <gridPlot id="coastal_obs_discrete_level_rf" name="Water level (rise or fall)">                                              
      <displayGroupPlotId>TidalGauges_Centre_CMRENS</displayGroupPlotId>                             
           <dataLayer>                                                         
              <visibleInTimeSeriesDisplay>true</visibleInTimeSeriesDisplay>

So the <displayGroupPlotId> in the code example above should have a valid reference to a plotId in the displayGroups.xml, in this case: "TidalGauges_Centre_CMRENS" 

Code Block
languagexml
titleAdjustments to displayGroups.xml
<plot id="TidalGauges_Centre_CMRENS">
  <subplot>
    <!--total water level-->
    <line>
      <!--obs-->
      <color>blue</color>
      <lineStyle>solid;thick</lineStyle>
      <timeSeriesSet>
          <moduleInstanceId>Import_Telemetry</moduleInstanceId>
          <valueType>scalar</valueType>
          <parameterId>H.obs</parameterId>
          <locationSetId>UK_ASTROSUM</locationSetId>
          <timeSeriesType>external historical</timeSeriesType>
          <timeStep unit="minute" multiplier="15"/>
          <relativeViewPeriod unit="hour" start="-48" end="120"/>
          <readWriteMode>read only</readWriteMode>
      </timeSeriesSet>
    </line>



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.

...