ClickHouse/dbms/src/Functions/registerFunctionsGeo.cpp

25 lines
640 B
C++
Raw Normal View History

2019-12-15 06:34:43 +00:00
#include "registerFunctions.h"
2019-06-30 18:20:32 +00:00
namespace DB
{
2019-06-30 19:45:23 +00:00
void registerFunctionsGeo(FunctionFactory & factory)
2019-06-30 18:20:32 +00:00
{
2019-12-08 23:41:34 +00:00
registerFunctionGeoDistance(factory);
2019-06-30 18:20:32 +00:00
registerFunctionPointInEllipses(factory);
registerFunctionPointInPolygon(factory);
registerFunctionGeohashEncode(factory);
registerFunctionGeohashDecode(factory);
registerFunctionGeohashesInBox(factory);
2019-06-30 18:20:32 +00:00
#if USE_H3
registerFunctionGeoToH3(factory);
2019-12-13 08:46:28 +00:00
registerFunctionH3EdgeAngle(factory);
registerFunctionH3EdgeLengthM(factory);
registerFunctionH3GetResolution(factory);
registerFunctionH3IsValid(factory);
registerFunctionH3KRing(factory);
2019-06-30 18:20:32 +00:00
#endif
}
}