DENSIFY

Used in

CONFIG  REQUEST  

Servers

Image  Feature  Extract  

Parent elements

LAYER 

Syntax

<DENSIFYAttribute Description Table
     (r)tolerance="double"
>

     No Child Elements
</DENSIFY >
(r): Attribute or child element is required.

Description

The process of data densification adds points to a layer before the layer is projected. DENSIFY sets the interval used for adding points.

Notes


Attribute Descriptions for DENSIFY

AttributeUsage
toleranceDefines distance (tolerance) between points and is applied on geometry before projecting takes place.
Back to top 

Examples for DENSIFY

<?xml version="1.0" encoding="UTF-8"?>
<ARCXML version="1.1">
  <CONFIG>
    <ENVIRONMENT>
      <LOCALE country="US" language="en" variant="" />
      <UIFONT color="0,0,0" name="Arial" size="12" style="regular" />
    </ENVIRONMENT>
    <MAP>
      <PROPERTIES>
        <ENVELOPE minx="-180.0" miny="-90.0" maxx="180.0" maxy="90.0" />
        <MAPUNITS units="meters" />
        <FEATURECOORDSYS id="54008" />
        <FILTERCOORDSYS id="4326"  />
      </PROPERTIES>
      <WORKSPACES>
      <SHAPEWORKSPACE name="shp_ws-0" directory="<path to WORLD ESRIDATA>"/>
      </WORKSPACES>
      <LAYER type="featureclass" name="Cntry94" visible="true" id="0">
        <DATASET name="Cntry94" type="polygon" workspace="shp_ws-0" />
        <COORDSYS id="4326" />  
        <DENSIFY tolerance="100" />
        <SIMPLERENDERER>
           <SIMPLEPOLYGONSYMBOL filltransparency="1.0" fillcolor="27,127,127" />
        </SIMPLERENDERER>
      </LAYER>
    </MAP>
  </CONFIG>
</ARCXML>

Back to top