geopackage-ts
    Preparing search index...

    Interface SpatialReferenceSystem

    Represents a row in the gpkg_spatial_ref_sys table.

    Every GeoPackage contains a Spatial Reference System (SRS) table that defines the coordinate reference systems used by feature and tile data. This interface mirrors the columns of that table as defined in the GeoPackage SRS specification.

    interface SpatialReferenceSystem {
        definition: string;
        definition_12_063: string;
        description: string | null;
        organization: string;
        organization_coordsys_id: number;
        srs_id: number;
        srs_name: string;
    }
    Index

    Properties

    definition: string

    Well-Known Text (WKT) representation of the coordinate reference system as defined by OGC 01-009 (WKT 1).

    definition_12_063: string

    Well-Known Text (WKT) representation as defined by OGC 12-063r5 (WKT 2). This is the updated WKT standard introduced in GeoPackage 1.2.

    description: string | null

    Human-readable description of the SRS, or null if not provided.

    organization: string

    Case-insensitive name of the defining organization (e.g., 'EPSG' or 'NONE').

    organization_coordsys_id: number

    Numeric identifier used by the organization for this coordinate system (e.g., 4326 for EPSG:4326).

    srs_id: number

    Unique integer identifier for the SRS within this GeoPackage. Typically matches well-known EPSG codes (e.g., 4326 for WGS 84).

    srs_name: string

    Human-readable name of the spatial reference system.