ClickHouse/src/Functions/polygonPerimeter.cpp

95 lines
2.3 KiB
C++
Raw Normal View History

2021-02-19 18:09:38 +00:00
#include <Functions/FunctionFactory.h>
#include <Functions/geometryConverters.h>
2020-06-22 16:36:21 +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-22 16:36:21 +00:00
2021-02-19 18:09:38 +00:00
#include <common/logger_useful.h>
2020-06-22 16:36:21 +00:00
2021-02-19 18:09:38 +00:00
#include <Columns/ColumnArray.h>
#include <Columns/ColumnTuple.h>
#include <Columns/ColumnsNumber.h>
#include <DataTypes/DataTypeArray.h>
#include <DataTypes/DataTypeTuple.h>
#include <DataTypes/DataTypeCustomGeo.h>
2020-06-22 16:36:21 +00:00
2021-02-19 18:09:38 +00:00
#include <memory>
#include <string>
2020-06-22 16:36:21 +00:00
2021-02-19 18:09:38 +00:00
namespace DB
{
2020-06-22 16:36:21 +00:00
2021-02-19 18:09:38 +00:00
template <typename Point>
class FunctionPolygonPerimeter : public IFunction
{
public:
static const char * name;
2020-06-22 16:36:21 +00:00
2021-02-19 18:09:38 +00:00
explicit FunctionPolygonPerimeter() = default;
2020-06-22 16:36:21 +00:00
2021-02-19 18:09:38 +00:00
static FunctionPtr create(const Context &)
{
return std::make_shared<FunctionPolygonPerimeter>();
}
2020-06-22 16:36:21 +00:00
2021-02-19 18:09:38 +00:00
String getName() const override
{
return name;
}
2020-06-22 16:36:21 +00:00
2021-02-19 18:09:38 +00:00
bool isVariadic() const override
{
return false;
}
2020-06-22 16:36:21 +00:00
2021-02-19 18:09:38 +00:00
size_t getNumberOfArguments() const override
{
return 1;
}
2020-06-22 16:36:21 +00:00
2021-02-19 18:09:38 +00:00
DataTypePtr getReturnTypeImpl(const DataTypes &) const override
{
return std::make_shared<DataTypeFloat64>();
}
2020-06-22 16:36:21 +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 parser = getConverterBasedOnType<Point>(arguments[0]);
auto figures = parseFigure(parser);
2020-06-22 16:36:21 +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-22 16:36:21 +00:00
2021-02-19 18:09:38 +00:00
for (size_t i = 0; i < input_rows_count; i++)
{
boost::geometry::correct(figures[i]);
res_data.emplace_back(boost::geometry::perimeter(figures[i]));
}
2020-06-22 16:36:21 +00:00
2021-02-19 18:09:38 +00:00
return res_column;
}
2021-01-18 23:51:34 +00:00
2021-02-19 18:09:38 +00:00
bool useDefaultImplementationForConstants() const override
{
return true;
}
};
2020-06-22 16:36:21 +00:00
2021-02-19 18:09:38 +00:00
template <>
const char * FunctionPolygonPerimeter<CartesianPoint>::name = "polygonPerimeterCartesian";
2020-06-22 16:36:21 +00:00
2021-02-19 18:09:38 +00:00
template <>
const char * FunctionPolygonPerimeter<GeographicPoint>::name = "polygonPerimeterGeographic";
2021-01-18 23:51:34 +00:00
2021-02-19 18:09:38 +00:00
void registerFunctionPolygonPerimeter(FunctionFactory & factory)
{
factory.registerFunction<FunctionPolygonPerimeter<CartesianPoint>>();
factory.registerFunction<FunctionPolygonPerimeter<GeographicPoint>>();
}
2020-06-22 16:36:21 +00:00
2021-01-19 14:52:53 +00:00
2021-02-19 18:09:38 +00:00
}