• Geometry is a fundamental PostGIS spatial data type used to represent a feature in planar (Euclidean) coordinate systems.

    Geometry is an abstract type. Geometry values belong to one of its concrete subtypes which represent various kinds and dimensions of geometric shapes. These include the atomic types Point, LineString, and Polygon, and the collection types MultiPoint, MultiLineString, MultiPolygon and GeometryCollection.

    Type Parameters

    • TName extends string

    Parameters

    Returns PgCustomColumnBuilder<{
        columnType: "PgCustomColumn";
        data: Geometry;
        dataType: "custom";
        driverParam: string;
        enumValues: undefined;
        name: TName;
    }>

Generated using TypeDoc