@maschinenlesbar.org/regionalatlas-cli
    Preparing search index...

    Interface RegionRow

    One parsed region row: the geographic unit plus its indicator values. The value map keeps every indicator value field — including the <field>v Veränderungsrate columns — and drops only the join columns, with numbers or null. What each key measures is in the indicator's fields.

    interface RegionRow {
        ags: string;
        level: string;
        name: string;
        typ: GeoLevel;
        values: Record<string, number | null>;
        year: number;
    }
    Index
    ags: string

    Amtlicher Gemeindeschlüssel (AGS).

    level: string

    The friendly geo-level name (e.g. "land").

    name: string

    Gebietsname (region name), trimmed.

    The typ integer (geo level).

    values: Record<string, number | null>

    Indicator value fields → number or null.

    year: number

    The reporting year.