PARTITION

Used in

CONFIG  

Parent elements

DATASET 

Syntax

<PARTITIONAttribute Description Table
     (r)name="string"
>

     (r)<ENVELOPE... />

</PARTITION >
(r): Attribute or child element is required.

Description

A method of grouping multiple layers and treating them as one big layer.

Restrictions


Notes


Attribute Descriptions for PARTITION

AttributeUsage
nameLayer name for partition. Specifies ArcSDE layer. Multiple ArcSDE layers with the same name are permitted. Performance is generally better if the field name is all upper case. In the PARTITION example, CALIFORNIA.STREET02 is used twice. The ENVELOPE is different for each PARTITION.
Back to top 

Examples for PARTITION

<?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="-124.0" miny="32.0" maxx="-114.0" maxy="42.0"/>
        <BACKGROUND color="255,255,204"/>
        <MAPUNITS units="decimal_degrees" />
        <FILTERCOORDSYS id="4326" />
        <FEATURECOORDSYS id="4326"/>
      </PROPERTIES>
      <WORKSPACES>
        <SDEWORKSPACE name="sde-1" server="CALIFORNIA" instance="port:5150" user="street_data" password="AFXOR"/>
      </WORKSPACES>
      <LAYER type="featureclass" name="Streets" visible="true" id="1">
        <DATASET name="CALIFORNIA.STREET" type="line" workspace="sde-1">
          <PARTITION name="CALIFORNIA.STREET01">
              <ENVELOPE minx="-124.0" miny="36.0" maxx="-116.0" maxy="42.0"/>
          </PARTITION>
          <PARTITION name="CALIFORNIA.STREET02">
              <ENVELOPE minx="-122.0" miny="33.0" maxx="-114.0" maxy="36.0"/>
          </PARTITION>
          <PARTITION name="CALIFORNIA.STREET02">
              <ENVELOPE minx="-117.0" miny="32.0" maxx="-113.0" maxy="33.0"/>
          </PARTITION>
        </DATASET>
        <SIMPLERENDERER>
           <SIMPLELINESYMBOL type="solid" width="3" color="102,102,102" />
        </SIMPLERENDERER>
      </LAYER>
    </MAP>
  </CONFIG>
</ARCXML>

Back to top