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

    Interface Indicator

    A single indicator (Indikator), flattened out of the catalogue with a resolved SQL table name, its available years and its value columns. The table is derived solely from the catalogue code and is the ONLY value ever interpolated as a table name into the SQL query.

    interface Indicator {
        code: string;
        fields: IndicatorField[];
        table: string;
        theme: string;
        titleLong: string;
        titleShort: string;
        years: string[];
    }
    Index
    code: string

    Catalogue code, e.g. "AI002-1-5".

    fields: IndicatorField[]

    The value columns this indicator's rows carry, in catalogue order — which is also the order the data host returns them in. Empty when the catalogue entry lists no attributes.

    table: string

    The SQL table name derived from the code (code.toLowerCase().replace(/-/g,"_")).

    theme: string

    The theme (subject area) this indicator belongs to.

    titleLong: string

    Long, descriptive title.

    titleShort: string

    Short title.

    years: string[]

    Available years, ascending, as 4-digit strings (e.g. ["2000","2005",…]).