2021-02-19 18:09:38 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <Functions/geometryConverters.h>
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
#include <boost/geometry.hpp>
|
|
|
|
#include <boost/geometry/geometries/point_xy.hpp>
|
|
|
|
#include <boost/geometry/geometries/polygon.hpp>
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
#include <common/logger_useful.h>
|
2020-06-21 14:54:13 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
#include <Columns/ColumnArray.h>
|
|
|
|
#include <Columns/ColumnTuple.h>
|
|
|
|
#include <Columns/ColumnConst.h>
|
|
|
|
#include <Columns/ColumnsNumber.h>
|
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
|
|
#include <DataTypes/DataTypeArray.h>
|
|
|
|
#include <DataTypes/DataTypeTuple.h>
|
|
|
|
#include <DataTypes/DataTypeCustomGeo.h>
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <utility>
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
template <typename Point>
|
|
|
|
class FunctionPolygonsDistance : public IFunction
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static inline const char * name;
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
explicit FunctionPolygonsDistance() = default;
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
static FunctionPtr create(const Context &)
|
|
|
|
{
|
|
|
|
return std::make_shared<FunctionPolygonsDistance>();
|
|
|
|
}
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
String getName() const override
|
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
bool isVariadic() const override
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
size_t getNumberOfArguments() const override
|
|
|
|
{
|
|
|
|
return 2;
|
|
|
|
}
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes &) const override
|
|
|
|
{
|
|
|
|
return std::make_shared<DataTypeFloat64>();
|
|
|
|
}
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr & /*result_type*/, size_t input_rows_count) const override
|
|
|
|
{
|
|
|
|
auto first_parser = getConverterBasedOnType<Point>(arguments[0]);
|
|
|
|
auto second_parser = getConverterBasedOnType<Point>(arguments[1]);
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
auto first = parseFigure(first_parser);
|
|
|
|
auto second = parseFigure(second_parser);
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
auto res_column = ColumnFloat64::create();
|
|
|
|
auto & res_data = res_column->getData();
|
|
|
|
res_data.reserve(input_rows_count);
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
for (size_t i = 0; i < input_rows_count; i++)
|
|
|
|
{
|
|
|
|
boost::geometry::correct(first[i]);
|
|
|
|
boost::geometry::correct(second[i]);
|
2021-01-21 12:31:47 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
res_data.emplace_back(boost::geometry::distance(first[i], second[i]));
|
|
|
|
}
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
return res_column;
|
|
|
|
}
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
bool useDefaultImplementationForConstants() const override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
2020-06-21 14:54:13 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
template <>
|
|
|
|
const char * FunctionPolygonsDistance<CartesianPoint>::name = "polygonsDistanceCartesian";
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
template <>
|
|
|
|
const char * FunctionPolygonsDistance<GeographicPoint>::name = "polygonsDistanceGeographic";
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-01-18 23:51:34 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
void registerFunctionPolygonsDistance(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionPolygonsDistance<CartesianPoint>>();
|
|
|
|
factory.registerFunction<FunctionPolygonsDistance<GeographicPoint>>();
|
|
|
|
}
|
2021-01-19 14:52:53 +00:00
|
|
|
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
}
|