elasticsearch_dsl/search/queries/shape/mod.rs
1//! Like geo_shape Elasticsearch supports the ability to index arbitrary two dimension
2//! (non Geospatial) geometries making it possible to map out virtual worlds, sporting venues,
3//! theme parks, and CAD diagrams.
4//!
5//! Elasticsearch supports two types of cartesian data: point fields which support x/y pairs, and
6//! shape fields, which support points, lines, circles, polygons, multi-polygons, etc.
7
8mod shape_lookup_query;
9mod shape_query;
10
11pub use self::shape_lookup_query::*;
12pub use self::shape_query::*;