[GIS] How to Extract Data by Attributes (Clip/Zip/Ship) using Attribute Where Clause – Esri Server Tools

arcgis-desktoparcgis-servergeoprocessing-servicemodelbuilderpython

I want to use the out-of-the-box Esri geoprocessing task to extract data via ArcGIS Server (Server Tools –> Extract Data). Its pretty straight-forward, but it doesn't seem to support use of a "where clause" as an input parameter for the service. I could add this in using python, but would love if it just supported it without custom development.

Has anybody seen a way to use ArcGIS Server to extract data using an attribute where clause WITHOUT custom development.

Thanks ahead of time.

Best Answer

I decided to go ahead and just add a Select By Attributes into the script tool. I also decided to remove the clip because i didn't need it and was tired of supplying an extent feature class.

I've posted my solution to github: https://github.com/brendancol/esri-extract-data-where

Related Question