Questions tagged «select-by-attribute»

根据应用于其字段值(“属性”)的逻辑标准选择数据记录

1
使用Python按属性选择Arcmap
我希望下面选择(突出显示)与网格相交的“项目”层,然后从选定的“网格”中提取一条记录。我不需要保存该层。 注意:在Python控制台窗口的ArcMap中运行脚本。 import arcpy # Make a layer from the feature class arcpy.MakeFeatureLayer_management("project","project_lyr") # Then add a selection to the layer based on location to features in another feature class arcpy.SelectLayerByLocation_management("project_lyr","INTERSECT","Grid") 该代码运行并且没有给出错误,但是它没有选择(突出显示)任何功能。知道为什么吗?运行也真的很慢。 基本上我正在尝试这样做: 这几乎很快就可以运行,但是我想使用python来做同样的事情。我只需要选定要素表中的值,就不需要该层的副本。 解决方案的一部分可以是使用在存储器的工作区,其是 将数据写入内存工作区通常比写入其他格式快得多... 只是不确定如何实现内存中的工作区

1
如何对分号使用按属性选择查询?
我正在尝试使用分号';' 使用ArcGIS 10的“按属性选择”选择多个(50个或更多)唯一数字记录。在每条记录被验证为合格之后。请查看它验证我的表达“成功”的屏幕截图。 但是,当单击确定时,它仅选择第一条记录。 我们是否真的必须输入“ xyz” = 1或“ xyz” = 2或“ xyz” = 3等等,以选择多个记录?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.