2021-02-18 19:51:19 +00:00
|
|
|
// #include <Functions/FunctionFactory.h>
|
|
|
|
// #include <Functions/geometryConverters.h>
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-18 19:51:19 +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-18 19:51:19 +00:00
|
|
|
// #include <common/logger_useful.h>
|
2020-06-21 14:54:13 +00:00
|
|
|
|
2021-02-18 19:51:19 +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-18 19:51:19 +00:00
|
|
|
// #include <memory>
|
|
|
|
// #include <utility>
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// namespace DB
|
|
|
|
// {
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-18 19:51:19 +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-18 19:51:19 +00:00
|
|
|
// explicit FunctionPolygonsDistance() = default;
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// static FunctionPtr create(const Context &)
|
|
|
|
// {
|
|
|
|
// return std::make_shared<FunctionPolygonsDistance>();
|
|
|
|
// }
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// String getName() const override
|
|
|
|
// {
|
|
|
|
// return name;
|
|
|
|
// }
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// bool isVariadic() const override
|
|
|
|
// {
|
|
|
|
// return false;
|
|
|
|
// }
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// size_t getNumberOfArguments() const override
|
|
|
|
// {
|
|
|
|
// return 2;
|
|
|
|
// }
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// DataTypePtr getReturnTypeImpl(const DataTypes &) const override
|
|
|
|
// {
|
|
|
|
// return std::make_shared<DataTypeFloat64>();
|
|
|
|
// }
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr & /*result_type*/, size_t input_rows_count) const override
|
|
|
|
// {
|
|
|
|
// checkColumnTypeOrThrow<Point, MultiPolygon>(arguments[0]);
|
|
|
|
// auto first_parser = MultiPolygonFromColumnParser<Point>(std::move(arguments[0].column->convertToFullColumnIfConst()));
|
|
|
|
// MultiPolygon<Point> first_container;
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// checkColumnTypeOrThrow<Point, MultiPolygon>(arguments[1]);
|
|
|
|
// auto second_parser = MultiPolygonFromColumnParser<Point>(std::move(arguments[1].column->convertToFullColumnIfConst()));
|
|
|
|
// MultiPolygon<Point> second_container;
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// auto res_column = ColumnFloat64::create();
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// for (size_t i = 0; i < input_rows_count; i++)
|
|
|
|
// {
|
|
|
|
// first_parser.get(first_container, i);
|
|
|
|
// second_parser.get(second_container, i);
|
2021-01-21 12:31:47 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// boost::geometry::correct(first_container);
|
|
|
|
// boost::geometry::correct(second_container);
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// res_column->insertValue(boost::geometry::distance(first_container, second_container));
|
|
|
|
// }
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// return res_column;
|
|
|
|
// }
|
2020-06-21 14:54:13 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// bool useDefaultImplementationForConstants() const override
|
|
|
|
// {
|
|
|
|
// return true;
|
|
|
|
// }
|
|
|
|
// };
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// template <>
|
|
|
|
// const char * FunctionPolygonsDistance<CartesianPoint>::name = "polygonsDistanceCartesian";
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// template <>
|
|
|
|
// const char * FunctionPolygonsDistance<GeographicPoint>::name = "polygonsDistanceGeographic";
|
2021-01-18 23:51:34 +00:00
|
|
|
|
2021-01-19 14:52:53 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// void registerFunctionPolygonsDistance(FunctionFactory & factory)
|
|
|
|
// {
|
|
|
|
// factory.registerFunction<FunctionPolygonsDistance<CartesianPoint>>();
|
|
|
|
// factory.registerFunction<FunctionPolygonsDistance<GeographicPoint>>();
|
|
|
|
// }
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-01-19 14:52:53 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
// }
|