Add additional geo functions
This commit is contained in:
parent
1324fed1b3
commit
70dfe88dff
1 changed files with 6 additions and 0 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue