Represents the data structure for a grid, based on multiple features for a same ID (and with a same structure, geom type and properties).

  • Columns are every (not ol) features properties name;
  • Data are every (not ol) features properties values;
  • Features are every Ol features (backref);
  • notOlProperties are every property but without ol specific one.
interface GridData {
    columns: string[];
    data: unknown[][];
    features: Feature<Geometry>[];
    notOlProperties: Record<string, unknown>[];
}

Properties

columns: string[]
data: unknown[][]
features: Feature<Geometry>[]
notOlProperties: Record<string, unknown>[]