Movatterモバイル変換


[0]ホーム

URL:



Facebook
Postgres Pro
Facebook
Downloads
8.8. Geometric Types
Prev UpChapter 8. Data TypesHome Next

8.8. Geometric Types#

Geometric data types represent two-dimensional spatial objects.Table 8.20 shows the geometric types available inPostgres Pro.

Table 8.20. Geometric Types

NameStorage SizeDescriptionRepresentation
point16 bytesPoint on a plane(x,y)
line24 bytesInfinite line{A,B,C}
lseg32 bytesFinite line segment[(x1,y1),(x2,y2)]
box32 bytesRectangular box(x1,y1),(x2,y2)
path16+16n bytesClosed path (similar to polygon)((x1,y1),...)
path16+16n bytesOpen path[(x1,y1),...]
polygon40+16n bytesPolygon (similar to closed path)((x1,y1),...)
circle24 bytesCircle<(x,y),r> (center point and radius)

In all these types, the individual coordinates are stored asdouble precision (float8) numbers.

A rich set of functions and operators is available to perform various geometric operations such as scaling, translation, rotation, and determining intersections. They are explained inSection 9.11.

8.8.1. Points#

Points are the fundamental two-dimensional building block for geometric types. Values of typepoint are specified using either of the following syntaxes:

(x ,y )x ,y

wherex andy are the respective coordinates, as floating-point numbers.

Points are output using the first syntax.

8.8.2. Lines#

Lines are represented by the linear equationAx +By +C = 0, whereA andB are not both zero. Values of typeline are input and output in the following form:

{A,B,C }

Alternatively, any of the following forms can be used for input:

[ (x1 ,y1 ) , (x2 ,y2 ) ]( (x1 ,y1 ) , (x2 ,y2 ) )  (x1 ,y1 ) , (x2 ,y2 )x1 ,y1   ,x2 ,y2

where(x1,y1) and(x2,y2) are two different points on the line.

8.8.3. Line Segments#

Line segments are represented by pairs of points that are the endpoints of the segment. Values of typelseg are specified using any of the following syntaxes:

[ (x1 ,y1 ) , (x2 ,y2 ) ]( (x1 ,y1 ) , (x2 ,y2 ) )  (x1 ,y1 ) , (x2 ,y2 )x1 ,y1   ,x2 ,y2

where(x1,y1) and(x2,y2) are the end points of the line segment.

Line segments are output using the first syntax.

8.8.4. Boxes#

Boxes are represented by pairs of points that are opposite corners of the box. Values of typebox are specified using any of the following syntaxes:

( (x1 ,y1 ) , (x2 ,y2 ) )  (x1 ,y1 ) , (x2 ,y2 )x1 ,y1   ,x2 ,y2

where(x1,y1) and(x2,y2) are any two opposite corners of the box.

Boxes are output using the second syntax.

Any two opposite corners can be supplied on input, but the values will be reordered as needed to store the upper right and lower left corners, in that order.

8.8.5. Paths#

Paths are represented by lists of connected points. Paths can beopen, where the first and last points in the list are considered not connected, orclosed, where the first and last points are considered connected.

Values of typepath are specified using any of the following syntaxes:

[ (x1 ,y1 ) , ... , (xn ,yn ) ]( (x1 ,y1 ) , ... , (xn ,yn ) )  (x1 ,y1 ) , ... , (xn ,yn )  (x1 ,y1   , ... ,xn ,yn )x1 ,y1   , ... ,xn ,yn

where the points are the end points of the line segments comprising the path. Square brackets ([]) indicate an open path, while parentheses (()) indicate a closed path. When the outermost parentheses are omitted, as in the third through fifth syntaxes, a closed path is assumed.

Paths are output using the first or second syntax, as appropriate.

8.8.6. Polygons#

Polygons are represented by lists of points (the vertices of the polygon). Polygons are very similar to closed paths; the essential semantic difference is that a polygon is considered to include the area within it, while a path is not.

An important implementation difference between polygons and paths is that the stored representation of a polygon includes its smallest bounding box. This speeds up certain search operations, although computing the bounding box adds overhead while constructing new polygons.

Values of typepolygon are specified using any of the following syntaxes:

( (x1 ,y1 ) , ... , (xn ,yn ) )  (x1 ,y1 ) , ... , (xn ,yn )  (x1 ,y1   , ... ,xn ,yn )x1 ,y1   , ... ,xn ,yn

where the points are the end points of the line segments comprising the boundary of the polygon.

Polygons are output using the first syntax.

8.8.7. Circles#

Circles are represented by a center point and radius. Values of typecircle are specified using any of the following syntaxes:

< (x ,y ) ,r >( (x ,y ) ,r )  (x ,y ) ,rx ,y   ,r

where(x,y) is the center point andr is the radius of the circle.

Circles are output using the first syntax.


Prev Up Next
8.7. Enumerated Types Home 8.9. Network Address Types
pdfepub
Go to Postgres Pro Standard 17
By continuing to browse this website, you agree to the use of cookies. Go toPrivacy Policy.

[8]ページ先頭

©2009-2025 Movatter.jp