FROMCOORDSYS

Used in

REQUEST  

Servers

Query  Feature  ArcMap  

Parent elements

GET_PROJECT 

Syntax

<FROMCOORDSYSAttribute 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
</FROMCOORDSYS >
(r): Attribute or child element is required.

Description

The current coordinate system of the geometry used in GET_PROJECT.

Restrictions


Notes


Attribute Descriptions for FROMCOORDSYS

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 FROMCOORDSYS

<?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