Options
All
  • Public
  • Public/Protected
  • All
Menu

Module cuspatial/src

Index

Type aliases

BoundingBoxes

BoundingBoxes<T>: DataFrame<{ x_max: T; x_min: T; y_max: T; y_min: T }>

Type parameters

Point

Point<T>: Struct<{ x: T; y: T }>

Type parameters

Points

Points<T>: Series<Point<T>>

Type parameters

Polygon

Polygon<T>: List<Polyline<T>>

Type parameters

Polygons

Polygons<T>: Series<Polygon<T>>

Type parameters

Polyline

Polyline<T>: List<Point<T>>

Type parameters

Polylines

Polylines<T>: Series<Polyline<T>>

Type parameters

Functions

convertLonLatToCartesian

  • convertLonLatToCartesian<T>(centerX: number, centerY: number, lonPoints: Series<T>, latPoints: Series<T>, memoryResource?: MemoryResource): StructSeries<{ x: Series<T>["type"]; y: Series<T>["type"] }>

makePoints

  • makePoints<T>(x: T, y: T): Points<T["type"]>

makePolygons

makePolylines

polygonBoundingBoxes

polylineBoundingBoxes

  • polylineBoundingBoxes<T>(polylines: ListSeries<Point<T>>, expansionRadius?: number, memoryResource?: MemoryResource): DataFrame<Object>