open-vector-tile - v1.8.0
    Preparing search index...

    Class ColumnCacheReader

    Column Cache Reader Stores all data in a column format. Upon construction, all columns are decoded from the protobuf. This allows for quick and easy access to data in a column format.

    Index

    Constructors

    Properties

    1 10 2 3 4 5 6 7 8 9

    Methods

    Constructors

    • Parameters

      • pbf: PbfReader

        the pbf protocol we are reading from

      • end: number = 0

        the position to stop at

      Returns ColumnCacheReader

    Properties

    "1": ColumnValueReadSimple<string> = []

    strings are stored in a column of strings

    "10": ColumnValueRead<BBox | BBox3D> = []

    Stores both BBox and BBox3D in a single column

    "2": ColumnValueReadSimple<number> = []

    unsigned whole numbers are stored in unsigned

    "3": ColumnValueReadSimple<number> = []

    negative numbers are stored in signed

    "4": ColumnValueReadSimple<number> = []

    non-whole 32-bit numbers are stored in float

    "5": ColumnValueReadSimple<number> = []

    non-whole numbers greater than 32-bit are stored in double

    for geometry types each column is individually weaved and delta encoded

    for geometry types each column is individually weaved and delta encoded

    "8": ColumnValueReadSimple<number> = []

    store M-Value indices, geometry indices, and geometry shapes

    "9": ColumnValueRead<number[]> = []

    shapes and possibly value indices are stored in a number[] to be decoded by readShape

    Methods

    • Type Parameters

      • T

      Parameters

      • col: OColumnName

        the column to read/store the parsed data

      • index: number

        the index in the column to read/store the parsed data

      Returns T

      • the parsed data