ColumnGeoPoint#

class rbc.heavydb.ColumnGeoPoint#

RBC Column<GeoPoint> type that corresponds to HeavyDB COLUMN<POINT>

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

{
    int8_t* flatbuffer;
    int64_t size;
}

Methods

ColumnGeoPoint.__init__()

ColumnGeoPoint.get_item(index)

Return self[index]

ColumnGeoPoint.get_n_of_values()

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

ColumnGeoPoint.is_null(index)

Check if element at index is null.

ColumnGeoPoint.set_item(index, buf)

Set line from a buffer of point coordindates

ColumnGeoPoint.set_null(index)

Set element at index to null.

ColumnGeoPoint.size()

Return the length of the Column<T>