ColumnGeoMultiPoint#

class rbc.heavydb.ColumnGeoMultiPoint#

RBC Column<GeoMultiPoint> type that corresponds to HeavyDB COLUMN<MULTIPOINT>

In HeavyDB, a Column of type GeoMultiPoint is represented as follows:

{
    int8_t* flatbuffer;
    int64_t size;
}

Methods

ColumnGeoMultiPoint.__init__()

ColumnGeoMultiPoint.get_item(index)

Return self[index]

ColumnGeoMultiPoint.get_n_of_values()

Return the total number of points in a Column<T>

ColumnGeoMultiPoint.is_null(index)

Check if element at index is null.

ColumnGeoMultiPoint.set_item(index, buf)

Set line from a buffer of point coordindates

ColumnGeoMultiPoint.set_null(index)

Set element at index to null.

ColumnGeoMultiPoint.size()

Return the length of the Column<T>