geopackage-ts
    Preparing search index...

    Interface Contents

    Represents a row in the gpkg_contents table.

    The contents table is the master catalog of a GeoPackage. Each entry identifies one user data table and describes its type, spatial extent, and associated SRS. This interface mirrors the columns defined in the GeoPackage Contents specification.

    interface Contents {
        data_type: string;
        description: string;
        identifier: string | null;
        last_change: string;
        max_x: number | null;
        max_y: number | null;
        min_x: number | null;
        min_y: number | null;
        srs_id: number | null;
        table_name: string;
    }
    Index

    Properties

    data_type: string

    Type of data stored in the table. One of 'features', 'tiles', or 'attributes'.

    description: string

    A human-readable description of the table contents. Defaults to an empty string.

    identifier: string | null

    A human-readable identifier (e.g., a short title) for the contents entry, or null if not set.

    last_change: string

    Timestamp of the last modification in ISO 8601 format (e.g., '2024-01-15T12:00:00.000Z').

    max_x: number | null

    Maximum bounding x-coordinate, or null if not applicable.

    max_y: number | null

    Maximum bounding y-coordinate, or null if not applicable.

    min_x: number | null

    Minimum bounding x-coordinate, or null if not applicable.

    min_y: number | null

    Minimum bounding y-coordinate, or null if not applicable.

    srs_id: number | null

    SRS identifier referencing gpkg_spatial_ref_sys.srs_id, or null for attribute tables that have no spatial reference.

    table_name: string

    The name of the actual user data table in the GeoPackage database.