#if !defined(ARCADIA_BUILD) # include "config_functions.h" #endif #if USE_S2_GEOMETRY #include #include #include #include #include #include #include #include "s2_fwd.h" class S2CellId; namespace DB { namespace ErrorCodes { extern const int ILLEGAL_TYPE_OF_ARGUMENT; } namespace { /** * Returns a point (longitude, latitude) in degrees */ class FunctionS2ToGeo : public IFunction { public: static constexpr auto name = "s2ToGeo"; static FunctionPtr create(ContextPtr) { return std::make_shared(); } std::string getName() const override { return name; } size_t getNumberOfArguments() const override { return 1; } bool useDefaultImplementationForConstants() const override { return true; } DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override { const auto * arg = arguments[0].get(); if (!WhichDataType(arg).isUInt64()) throw Exception( ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT, "Illegal type {} of argument {} of function {}. Must be Float64", arg->getName(), 1, getName()); DataTypePtr element = std::make_shared(); return std::make_shared(DataTypes{element, element}); } ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &, size_t input_rows_count) const override { const auto * col_id = arguments[0].column.get(); auto col_longitude = ColumnFloat64::create(); auto col_latitude = ColumnFloat64::create(); auto & longitude = col_longitude->getData(); longitude.reserve(input_rows_count); auto & latitude = col_latitude->getData(); latitude.reserve(input_rows_count); for (const auto row : collections::range(0, input_rows_count)) { const UInt64 id = col_id->getUInt(row); S2Point point = S2CellId(id).ToPoint(); S2LatLng ll(point); longitude.emplace_back(ll.lng().degrees()); latitude.emplace_back(ll.lat().degrees()); } return ColumnTuple::create(Columns{std::move(col_longitude), std::move(col_latitude)}); } }; } void registerFunctionS2ToGeo(FunctionFactory & factory) { factory.registerFunction(); } } #endif