Buffer Point

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

Description

Buffer an XY coordinate by a specified distance and return selected features.

Service Arguments

PARAMETER DESCRIPTION
x The X coordinate of the point to buffer.
y The Y coordinate of the point to buffer.
srid The SRID of the input point. 2264 is NC State Plane NAD83 (feet), 4326 is decimal degrees.
geotable The geotable to return features from.
fields Comma delimited list of fields to return.
parameters SQL where parameters. Can be left blank.
distance The number of units to be buffered. The units are the units of the geotable SRID, and for Union County data will be feet.
order The field(s) to order the return by. If left blank, the return is ordered by distance (closest features first).
limit Limit to the number of features returned. If left blank, the default is to return all records.
format Format for the output (xml, json, or geojson)

Service Output

Service output is entirely dependant upon the fields parameter.

Sample Output

Sample XML Output

	<rows count="3">
	  <row>
	    <column name="acctno">04282008</column>
	    <column name="owner1">MOSLEY RUSSELL J & WIFE TAMERA</column>
	  </row>
	  <row>
	    <column name="acctno">04312013</column>
	    <column name="owner1">MOSLEY RUSSELL J & WIFE TAMERA O</column>
	  </row>
	  <row>
	    <column name="acctno">04312018</column>
	    <column name"=owner1">MOSLEY RUSSELL J & WIFE TAMERA O</column>
	  </row>
	</rows>
	

Sample JSON Output

	{rows:[
	  {acctno:"04282008",owner1:"MOSLEY RUSSELL J & WIFE TAMERA",owner2:""},
	  {acctno:"04312013",owner1:"MOSLEY RUSSELL J & WIFE TAMERA O",owner2:""},
	  {acctno:"04312018",owner1:"MOSLEY RUSSELL J & WIFE TAMMY O",owner2:""}
	]}