AREA

Used in

REQUEST  

Servers

Metadata (Browse)  

Parent elements

SEARCH_METADATA 

Syntax

<AREAAttribute Description Table
     (r)equalto="string"
     (r)greaterthan="string"
     (r)greaterthanorequalto="string"
     (r)lessthan="string"
     (r)lessthanorequalto="string"
     (r)notequalto="string"
>

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

Description

Finds metadata documents based on the area of the document's extent.

Restrictions


Attribute Descriptions for AREA

AttributeUsage
equaltoEqual to operator for comparing two values.
greaterthanGreater than operator for comparing two values.
greaterthanorequaltoGreater than or equal to operator for comparing two values.
lessthanLess than operator for comparing two values.
lessthanorequaltoLess than or equal to operator for comparing two values.
notequaltoEliminates a particular value from the search.
Back to top 

Examples for AREA

<?xml version="1.0" encoding="UTF-8"?>
<ARCXML version="1.1">
  <REQUEST>
    <GET_METADATA>
      <SEARCH_METADATA foldermask="4" sort="name">
        <SEARCH_METADATA >
          <AREA greaterthanorequalto="0" lessthanorequalto="500" />
        </SEARCH_METADATA>
      </SEARCH_METADATA>
    </GET_METADATA>
  </REQUEST>
</ARCXML>

Back to top