Versions Compared

Key

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

...

This is an optional configuration field. It can be only configured together with chainageLocationAttributeId. I f configured, this location attribute will be used as the label of vertical station lines in longitudinal plot.  If a location does not have this attribute, there will be no vertical station line drawn. This should be a text attribute.

 

 

Code Block
xml
xml
	<locationSet id="CHAINAGE_C">
		<chainageLocationAttributeId>Chainage</chainageLocationAttributeId>
		<chainageLabelLocationAttributeId>AddLabel</chainageLabelLocationAttributeId>
......
......
	</locationSet>

Location example:

 

 

 

Code Block
languagexml
linenumberstrue
<?xml version="1.0" encoding="UTF-8"?>
<locations xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.wldelft.nl/fews" xsi:schemaLocation="http://www.wldelft.nl/fews http://fews.wldelft.nl/schemas/version1.0/locations.xsd"
         xmlns:textAttribute="http://www.wldelft.nl/fews/textAttribute"
         xmlns:numberAttribute="http://www.wldelft.nl/fews/numberAttribute"
         xmlns:booleanAttribute="http://www.wldelft.nl/fews/booleanAttribute"
         version="1.1">
   <geoDatum>WGS 1984</geoDatum>
   
   <location id="LocA" name="LocA">
      <x>4.5</x>
      <y>53.5</y>
      <z>0</z>
<textAttribute:AddLabel>This is region Europe</textAttribute:REGION>
   </location>
   <location id="LocB" name="LocB">
      <x>4.1</x>
      <y>53.1</y>
      <z>0</z>
   </location>  
</locations>

...

In this example, both location A and B will appear on the longitudinal plot, but only location A will have a station line drawn (with label text "This is region Europe"). It is also possible to use this option with CSV or esriShape files.


description 

Optional description of the location set. Used for reference purposes only.

...