Project Point

http://gisapps.co.union.nc.us/ws/rest/v2/geo_projectpoint.ashx

Description

Takes a user defined point and return the XY coordinates in another projection.

Service Arguments

PARAMETER DESCRIPTION
x X coordinate.
y Y coordinate.
fromsrid SRID of the XY coordinate.
tosrid The SRID of the XY coordinate you want returned.
format Format for the output (xml or json)

Service Output

PARAMETER DESCRIPTION
x_coordinate X coordinate of projected point.
y_coordinate Y coordinate of projected point.

Sample Output

Sample XML Output

	<rows total-rows="1">
	  <row>
	    <column name="x_coordinate">-80.88288</column>
	    <column name="y_coordinate">35.10791</column>
	  </row>
	</rows>
	

Sample JSON Output

	{rows:[
	  {row:{x_coordinate:"-80.88288",y_coordinate:"35.10791"}}
	]}