@loaders.gl/geoarrow
Version:
GeoArrow columnar geometry encoding and decoding
20 lines • 758 B
TypeScript
/**
* Information about a binary geometry
*/
export type geoColumnInfo = {
type: 'Point' | 'LineString' | 'Polygon';
/** The GeoJSON style geometry type corresponding to this particular binary geometry */
multiGeometryType: 'Point' | 'LineString' | 'Polygon' | 'MultiPoint' | 'MultiLineString' | 'MultiPolygon';
/** Is this a "Multi" version of the binary geometry? */
isMultiGeometry: boolean;
/** How many dimensions are the coordinates? */
dimension: number;
/** How many points does this geometry have? */
pointCount: number;
/** How many coordinates does this geometry have? */
coordinateCount: number;
};
/**
* @returns information about a binary geometry
*/
//# sourceMappingURL=geo-column-info.d.ts.map