2021-02-20 13:59:37 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <Functions/geometryConverters.h>
|
2020-06-21 17:25:05 +00:00
|
|
|
|
2021-02-20 13:59:37 +00:00
|
|
|
#include <boost/geometry.hpp>
|
|
|
|
#include <boost/geometry/geometries/point_xy.hpp>
|
|
|
|
#include <boost/geometry/geometries/polygon.hpp>
|
|
|
|
|
|
|
|
#include <common/logger_useful.h>
|
|
|
|
|
|
|
|
#include <Columns/ColumnArray.h>
|
|
|
|
#include <Columns/ColumnTuple.h>
|
|
|
|
#include <Columns/ColumnConst.h>
|
|
|
|
#include <DataTypes/DataTypeArray.h>
|
|
|
|
#include <DataTypes/DataTypeTuple.h>
|
|
|
|
#include <DataTypes/DataTypeCustomGeo.h>
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
template <typename Point>
|
|
|
|
class FunctionPolygonsUnion : public IFunction
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static inline const char * name;
|
|
|
|
|
|
|
|
explicit FunctionPolygonsUnion() = default;
|
|
|
|
|
|
|
|
static FunctionPtr create(const Context &)
|
|
|
|
{
|
|
|
|
return std::make_shared<FunctionPolygonsUnion>();
|
|
|
|
}
|
|
|
|
|
|
|
|
String getName() const override
|
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isVariadic() const override
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t getNumberOfArguments() const override
|
|
|
|
{
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes &) const override
|
|
|
|
{
|
|
|
|
return DataTypeCustomMultiPolygonSerialization::nestedDataType();
|
|
|
|
}
|
|
|
|
|
|
|
|
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr & /*result_type*/, size_t input_rows_count) const override
|
|
|
|
{
|
|
|
|
MultiPolygonSerializer<Point> serializer;
|
|
|
|
|
|
|
|
callOnTwoGeometryDataTypes<Point>(arguments[0].type, arguments[1].type, [&](const auto & left_type, const auto & right_type)
|
|
|
|
{
|
|
|
|
using LeftConverterType = std::decay_t<decltype(left_type)>;
|
|
|
|
using RightConverterType = std::decay_t<decltype(right_type)>;
|
|
|
|
|
|
|
|
using LeftConverter = typename LeftConverterType::Type;
|
|
|
|
using RightConverter = typename RightConverterType::Type;
|
|
|
|
|
|
|
|
auto first = LeftConverter(arguments[0].column->convertToFullColumnIfConst()).convert();
|
|
|
|
auto second = RightConverter(arguments[1].column->convertToFullColumnIfConst()).convert();
|
|
|
|
|
|
|
|
/// We are not interested in some pitfalls in third-party libraries
|
|
|
|
/// NOLINTNEXTLINE(clang-analyzer-core.uninitialized.Assign)
|
|
|
|
for (size_t i = 0; i < input_rows_count; i++)
|
|
|
|
{
|
|
|
|
/// Orient the polygons correctly.
|
|
|
|
boost::geometry::correct(first[i]);
|
|
|
|
boost::geometry::correct(second[i]);
|
|
|
|
|
|
|
|
MultiPolygon<Point> polygons_union{};
|
|
|
|
/// Main work here.
|
|
|
|
boost::geometry::union_(first[i], second[i], polygons_union);
|
|
|
|
|
|
|
|
serializer.add(polygons_union);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return serializer.finalize();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool useDefaultImplementationForConstants() const override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
const char * FunctionPolygonsUnion<CartesianPoint>::name = "polygonsUnionCartesian";
|
|
|
|
|
|
|
|
template <>
|
|
|
|
const char * FunctionPolygonsUnion<GeographicPoint>::name = "polygonsUnionGeographic";
|
|
|
|
|
|
|
|
|
|
|
|
void registerFunctionPolygonsUnion(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionPolygonsUnion<CartesianPoint>>();
|
|
|
|
factory.registerFunction<FunctionPolygonsUnion<GeographicPoint>>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|