TOCOORDSYS

Used in

REQUEST  

Servers

Query  Feature  ArcMap  

Parent elements

GET_PROJECT 

Syntax

<TOCOORDSYSAttribute Description Table

     When using ArcMap Server:
     (r)id="integer"
     (r)string="string"

     When using Query or Feature Server:
     (r)id="integer"
     (r)string="string"
     datumtransformid="integer"
     datumtransformstring="string"
>

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

Description

The coordinate system of the geometry to project to when using GET_PROJECT.

Restrictions


Notes


Attribute Descriptions for TOCOORDSYS

AttributeUsage
idProjected or geographic coordinate system ID. Use either id or string, but not both.
stringProjected or geographic coordinate system definition string. Use either id or string, but not both.
datumtransformidDatum transformation ID. Use either datumtransformid or datumstransformstring, but not both.
datumtransformstringDatum transformation definition string. Use either datumtransformid or datumstransformstring, but not both.
idProjected or geographic coordinate system ID. Use either id or string, but not both.
stringProjected or geographic coordinate system definition string. Use either id or string, but not both.
Back to top 

Examples for TOCOORDSYS

<?xml version="1.0" encoding="UTF-8"?>
<ARCXML version="1.1">
  <REQUEST>
    <GET_PROJECT envelope="true">
      <FROMCOORDSYS id="4326"/>
      <TOCOORDSYS id="53030"/>
      <ENVELOPE minx="-178" miny="18" maxx="-66" maxy="71"/>
   </GET_PROJECT>
</REQUEST>
</ARCXML>

Back to top