Description
This tool clips the features in the input feature data source to the polygons in the clip feature data source. All attribute data in the input table is copied to the output table.
The 'where' clause can be used to define a subset of polygon clip features to use. See the 'where' section for further details on how to formulate a where clause.
Syntax
geom.clip(in, clip, out, [where]);
| in | the input feature data source | |
| clip | the input polygon data source that is used to clip the input feature data source | |
| out | the output feature data source) | |
| [where] | the selection statement that will be applied to the clip polygon feature data source to identify a subset of polygons to process (see full Help documentation for further details) |
Example
geom.clip(in="C:\data\stands.shp", clip="C:\data\plots.shp", out="C:\data\standsclipped.shp");
geom.clip(in="C:\data\stands.shp", clip="C:\data\plots.shp", out="C:\data\standsclipped.shp", where="YEAR=2010");