geopackage-ts
    Preparing search index...

    Interface GeometryColumns

    Represents a row in the gpkg_geometry_columns table.

    This table identifies the geometry column(s) in each feature table and defines their geometry type, SRS, and dimensionality flags. See the GeoPackage Geometry Columns specification.

    interface GeometryColumns {
        column_name: string;
        geometry_type_name: string;
        m: number;
        srs_id: number;
        table_name: string;
        z: number;
    }
    Index

    Properties

    column_name: string

    Name of the column within the feature table that holds geometry values.

    geometry_type_name: string

    Name of the geometry type (e.g., 'POINT', 'LINESTRING', 'POLYGON', 'MULTIPOINT', 'GEOMETRY', etc.) following OGC Simple Features naming.

    m: number

    Indicates whether m-coordinates (measure values) are present.

    • 0 -- m values are prohibited
    • 1 -- m values are mandatory
    • 2 -- m values are optional
    srs_id: number

    SRS identifier referencing gpkg_spatial_ref_sys.srs_id.

    table_name: string

    Name of the feature table containing the geometry column.

    z: number

    Indicates whether z-coordinates (elevation/altitude) are present.

    • 0 -- z values are prohibited
    • 1 -- z values are mandatory
    • 2 -- z values are optional