package data
- Alphabetic
- Public
- All
Type Members
-
class
Box extends AnyRef
Rectangular box data type in Postgres represented by pairs of Points that are opposite corners of the box.
-
class
Circle extends AnyRef
Circle data type in Postgres represented by a center Point and radius.
-
class
Interval extends AnyRef
Postgres Interval is date and time based such as 120 years 3 months 332 days 20 hours 20 minutes 20.999999 seconds
-
class
Line extends AnyRef
Line data type in Postgres represented by the linear equation Ax + By + C = 0, where A and B are not both zero.
-
class
LineSegment extends AnyRef
Finite line segment data type in Postgres represented by pairs of Points that are the endpoints of the segment.
-
class
Path extends AnyRef
Path data type in Postgres represented by lists of connected points.
Path data type in Postgres represented by lists of connected points. Paths can be open, where the first and last points in the list are considered not connected, or closed, where the first and last points are considered connected.
-
class
Point extends AnyRef
A Postgresql point.
-
class
Polygon extends AnyRef
Polygon data type in Postgres represented by lists of points (the vertexes of the polygon).
Polygon data type in Postgres represented by lists of points (the vertexes of the polygon). Polygons are very similar to closed paths, but are stored differently and have their own set of support routines.