ArcGIS 定义查询

ArcGIS definition query

我从事农业工作,正在考察两个农场。

每个人都有相同的 Farm Number (FSN) 所以我试图展示那些 FSN 和特定 Common Land Units (CLUs).

的特定土地

有没有办法写一个查询基本上告诉系统,"I want to see clus 1 and 2 from tract 443 and clus 1 and 4 from tract 442 both from farm 551?

我一直在为每个区域创建新层,但我知道必须有更优雅的方法来做到这一点。

这就是我得到一份传单的条件:

state_code = '22' AND county_code = '053' AND farm_number = '516' AND tract_number = '228' AND clu_number IN ('17', '21')`

我需要做什么才能从该查询中的同一个农场获得另一个 tract 及其 clus

我知道在 ArcGIS 中有一个查询生成器,它使用 SQL 来定义用于特定地图层的数据。在查询构建器中,编写了 select 语句,您在 "where:".

之后提供信息

我在这个论坛之外收到了一个答案,但它可能对其他人有用。

https://gis.stackexchange.com/a/208363/81404