• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..24-Mar-2022-

README.mdH A D24-Mar-2022631 106

geo.goH A D24-Mar-20225.8 KiB211150

geo_dist.goH A D24-Mar-20223.2 KiB9961

geohash.goH A D24-Mar-20222.6 KiB11279

parse.goH A D24-Mar-20224.7 KiB182124

sloppy.goH A D24-Mar-20227.3 KiB213161

README.md

1# geo support in bleve
2
3First, all of this geo code is a Go adaptation of the [Lucene 5.3.2 sandbox geo support](https://lucene.apache.org/core/5_3_2/sandbox/org/apache/lucene/util/package-summary.html).
4
5## Notes
6
7- All of the APIs will use float64 for lon/lat values.
8- When describing a point in function arguments or return values, we always use the order lon, lat.
9- 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.
10