0% found this document useful (0 votes)
174 views

8.8 Postgis Function Support Matrix: ST - Translate

This document provides a matrix that summarizes PostGIS spatial function support for different geometry types, including 2D, 3D, curves, and geography types. It lists common PostGIS functions and indicates whether they support each type natively, with casting, or for some types based on auto-casting to another type like box3d. The matrix provides an overview of spatial type compatibility with the various functions in PostGIS.

Uploaded by

Mathias Eder
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
174 views

8.8 Postgis Function Support Matrix: ST - Translate

This document provides a matrix that summarizes PostGIS spatial function support for different geometry types, including 2D, 3D, curves, and geography types. It lists common PostGIS functions and indicates whether they support each type natively, with casting, or for some types based on auto-casting to another type like box3d. The matrix provides an overview of spatial type compatibility with the various functions in PostGIS.

Uploaded by

Mathias Eder
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

PostGIS 1.5.

1 Manual
285 / 315

ST_Translate - Translates the geometry to a new location using the numeric parameters as offsets. Ie: ST_Translate(geom, X,
Y) or ST_Translate(geom, X, Y,Z).
ST_XMax - Returns X maxima of a bounding box 2d or 3d or a geometry.
ST_XMin - Returns X minima of a bounding box 2d or 3d or a geometry.
ST_YMax - Returns Y maxima of a bounding box 2d or 3d or a geometry.
ST_YMin - Returns Y minima of a bounding box 2d or 3d or a geometry.
ST_ZMax - Returns Z minima of a bounding box 2d or 3d or a geometry.
ST_ZMin - Returns Z minima of a bounding box 2d or 3d or a geometry.
ST_Zmflag - Returns ZM (dimension semantic) flag of the geometries as a small int. Values are: 0=2d, 1=3dm, 2=3dz, 3=4d.
UpdateGeometrySRID - Updates the SRID of all features in a geometry column, geometry_columns metadata and srid table
constraint

8.8 PostGIS Function Support Matrix


Below is an alphabetical listing of spatial specific functions in PostGIS and the kinds of spatial types they work with or OGC/SQL
compliance they try to conform to.

means the function works with the type or subtype natively.

A
means it works but with a transform cast built-in using cast to geometry, transform to a "best srid" spatial ref and
then cast back. Results may not be as expected for large areas or areas at poles and may accumulate floating point junk.
A
means the function works with the type because of a auto-cast to another such as to box3d rather than direct type
support.
Function
Box2D
Box3D
Find_SRID
GeometryType
ST_Accum
ST_AddMeasure
ST_AddPoint
ST_Affine
ST_Area
ST_AsBinary
ST_AsEWKB
ST_AsEWKT
ST_AsGML

geometry

geography

3D (2.5D)

Curves

SQL MM

PostGIS 1.5.1 Manual


286 / 315

Function
ST_AsGeoJSON
ST_AsHEXEWKB
ST_AsKML
ST_AsSVG
ST_AsText
ST_Azimuth
ST_BdMPolyFromText
ST_BdPolyFromText
ST_Boundary
ST_Buffer
ST_BuildArea
ST_Centroid
ST_ClosestPoint
ST_Collect
ST_CollectionExtract
ST_Contains
ST_ContainsProperly
ST_ConvexHull
ST_CoordDim
ST_CoveredBy
ST_Covers
ST_Crosses
ST_CurveToLine
ST_DFullyWithin
ST_DWithin
ST_Difference
ST_Dimension
ST_Disjoint
ST_Distance
ST_Distance_Sphere
ST_Distance_Spheroid
ST_Dump
ST_DumpPoints
ST_DumpRings

geometry

geography

3D (2.5D)

Curves

SQL MM

You might also like