This document is archived and information here might be outdated.  Recommended version.


Selection analysis roadmap (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > Developing with ArcGIS > Learning ArcObjects > Spatial query and analysis > Selection analysis roadmap

Selection analysis roadmap


In this topic


About selection analysis

When working with a geographic information system (GIS), it is often necessary to select data that matches a particular set of information or attributes. This data can then be used in geoprocessing tools and analyses.

Selection analysis using geoprocessing

In ArcGIS, the functionality for performing selection analysis is available through the geoprocessing tools.
The Select Layer By Attribute tool selects features based on attribute values, while the Select Layer By Location tool selects features based on their relationship to other features in the same, or in another, feature class.
When the layer (as opposed to the path to the feature class or table) is used as input, only the selected features will be used for analysis. For example, Select Layer By Attribute is run on a layer named World Countries that has a selection with COUNTRY_NAME=Canada. The layer is then used as input to the Summary Statistics tool to add the values in the Population field. Only one feature will be used (Canada), and the result will be a value of 33 million. However, if the path to the feature class (for example, c:\mydata.gdb\world_countries) is used instead of the layer name, all 195 features will be used and the result will be 6.7 billion.
The Copy Features tool can be used to make a permanent copy of the selection to a new feature class or table.
Multiple spatial and attribute selections can be combined using the Add to and Remove from options on the Select Layer By Attribute and Select Layer By Location tools.
Layers and table views and selections can be used in .NET applications by using the Make Feature Layer and Make Table View tools to create the layer or view, perform selections on the layers, and use the layers as input to other tools.
For more information on how to use geoprocessing tools in a developer scenario, see How to run a geoprocessing tool.
You can also select a subset of features or records through the SQL query builder available in some tools, for example, the Select tool in the Analysis toolbox.

Selection analysis using ArcObjects

There are no ArcObjects to assist you in this analysis. You need to use geoprocessing tools, as discussed in the previous section, to perform these tasks.


See Also:

Selecting and Extracting data
Using Select by Attributes
Using Select by Location
Working with selected features
Using geoprocessing
Executing tools