形状查询编辑

查询包含使用 shape 类型索引的字段的文档。

需要 shape 映射

该查询支持两种定义目标形状的方法:提供完整的形状定义,或者引用预先索引在另一个索引中的形状的名称或 ID。下面将通过示例定义这两种格式。

内联形状定义编辑

geo_shape 查询类似,shape 查询使用 GeoJSONWell Known Text (WKT) 来表示形状。

给定以下索引

response = client.indices.create(
  index: 'example',
  body: {
    mappings: {
      properties: {
        geometry: {
          type: 'shape'
        }
      }
    }
  }
)
puts response

response = client.index(
  index: 'example',
  id: 1,
  refresh: 'wait_for',
  body: {
    name: 'Lucky Landing',
    geometry: {
      type: 'point',
      coordinates: [
        1355.400544,
        5255.530286
      ]
    }
  }
)
puts response
PUT /example
{
  "mappings": {
    "properties": {
      "geometry": {
        "type": "shape"
      }
    }
  }
}

PUT /example/_doc/1?refresh=wait_for
{
  "name": "Lucky Landing",
  "geometry": {
    "type": "point",
    "coordinates": [ 1355.400544, 5255.530286 ]
  }
}

以下查询将使用 Elasticsearch 的 envelope GeoJSON 扩展名查找点

GET /example/_search
{
  "query": {
    "shape": {
      "geometry": {
        "shape": {
          "type": "envelope",
          "coordinates": [ [ 1355.0, 5355.0 ], [ 1400.0, 5200.0 ] ]
        },
        "relation": "within"
      }
    }
  }
}

预索引形状编辑

该查询还支持使用已索引在另一个索引中的形状。当您有一组对您的应用程序有用的预定义形状,并且您希望使用逻辑名称(例如“新西兰”)引用它们,而不是每次都必须提供它们的坐标时,这将特别有用。在这种情况下,只需提供

  • id - 包含预索引形状的文档的 ID。
  • index - 预索引形状所在的索引的名称。默认为 shapes
  • path - 指定为包含预索引形状的路径的字段。默认为 shape
  • routing - 形状文档的路由(如果需要)。

以下是如何使用带有预索引形状的过滤器的示例

response = client.indices.create(
  index: 'shapes',
  body: {
    mappings: {
      properties: {
        geometry: {
          type: 'shape'
        }
      }
    }
  }
)
puts response

response = client.index(
  index: 'shapes',
  id: 'footprint',
  body: {
    geometry: {
      type: 'envelope',
      coordinates: [
        [
          1355,
          5355
        ],
        [
          1400,
          5200
        ]
      ]
    }
  }
)
puts response

response = client.search(
  index: 'example',
  body: {
    query: {
      shape: {
        geometry: {
          indexed_shape: {
            index: 'shapes',
            id: 'footprint',
            path: 'geometry'
          }
        }
      }
    }
  }
)
puts response
PUT /shapes
{
  "mappings": {
    "properties": {
      "geometry": {
        "type": "shape"
      }
    }
  }
}

PUT /shapes/_doc/footprint
{
  "geometry": {
    "type": "envelope",
    "coordinates": [ [ 1355.0, 5355.0 ], [ 1400.0, 5200.0 ] ]
  }
}

GET /example/_search
{
  "query": {
    "shape": {
      "geometry": {
        "indexed_shape": {
          "index": "shapes",
          "id": "footprint",
          "path": "geometry"
        }
      }
    }
  }
}

空间关系编辑

以下是可用的空间关系运算符的完整列表

  • INTERSECTS -(默认)返回其 shape 字段与查询几何图形相交的所有文档。
  • DISJOINT - 返回其 shape 字段与查询几何图形没有任何共同点的文档。
  • WITHIN - 返回其 shape 字段在查询几何图形内的所有文档。
  • CONTAINS - 返回其 shape 字段包含查询几何图形的所有文档。

忽略未映射编辑

当设置为 true 时,ignore_unmapped 选项将忽略未映射的字段,并且不会匹配此查询的任何文档。这在查询可能具有不同映射的多个索引时非常有用。当设置为 false(默认值)时,如果未映射该字段,则查询将引发异常。