Add additional geo functions

This commit is contained in:
Tobie Morgan Hitchcock 2021-05-17 17:59:50 +01:00
parent 1324fed1b3
commit 70dfe88dff

View file

@ -161,9 +161,15 @@ fn function_count(i: &str) -> IResult<&str, &str> {
fn function_geo(i: &str) -> IResult<&str, &str> { fn function_geo(i: &str) -> IResult<&str, &str> {
alt(( alt((
tag("geo::area"),
tag("geo::bearing"),
tag("geo::center"),
tag("geo::centroid"),
tag("geo::circle"),
tag("geo::distance"), tag("geo::distance"),
tag("geo::latitude"), tag("geo::latitude"),
tag("geo::longitude"), tag("geo::longitude"),
tag("geo::midpoint"),
tag("geo::hash::decode"), tag("geo::hash::decode"),
tag("geo::hash::encode"), tag("geo::hash::encode"),
))(i) ))(i)