You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lauris BH f5abe2f563
Upgrade blevesearch dependency to v2.0.1 (#14346)
* Upgrade blevesearch dependency to v2.0.1

* Update rupture to v1.0.0

* Fix test
4 years ago
..
README.md Upgrade blevesearch dependency to v2.0.1 (#14346) 4 years ago
geo.go Upgrade blevesearch dependency to v2.0.1 (#14346) 4 years ago
geo_dist.go Upgrade blevesearch dependency to v2.0.1 (#14346) 4 years ago
geohash.go Upgrade blevesearch dependency to v2.0.1 (#14346) 4 years ago
parse.go Upgrade blevesearch dependency to v2.0.1 (#14346) 4 years ago
sloppy.go Upgrade blevesearch dependency to v2.0.1 (#14346) 4 years ago

README.md

geo support in bleve

First, all of this geo code is a Go adaptation of the Lucene 5.3.2 sandbox geo support.

Notes

  • All of the APIs will use float64 for lon/lat values.
  • When describing a point in function arguments or return values, we always use the order lon, lat.
  • High level APIs will use TopLeft and BottomRight to describe bounding boxes. This may not map cleanly to min/max lon/lat when crossing the dateline. The lower level APIs will use min/max lon/lat and require the higher-level code to split boxes accordingly.