Changes between Version 53 and Version 54 of WKTRaster/SpecificationWorking01


Ignore:
Timestamp:
Dec 15, 2009, 12:20:58 PM (14 years ago)
Author:
pracine
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WKTRaster/SpecificationWorking01

    v53 v54  
    170170List of similar functions in PostGIS:
    171171
    172 ST_Boundary(geometry) (not really - always return a geometry a dimension lower - i.e. the boundary of a polygon is a polyline.)[[BR]]
    173 ST_box(geometry) (return a box object)[[BR]]
    174 ST_box2d(geometry) (return a box2d object)[[BR]]
    175 ST_box3d(geometry) (return a box3d object)[[BR]]
    176 ST_Envelope(geometry)[[BR]]
     172ST_Boundary(geometry) (not really - always return a geometry a dimension lower - i.e. the boundary of a polygon is a polyline.)[[BR]][[BR]]
     173ST_box(geometry) (return a PostgreSQL box object)[[BR]][[BR]]
     174ST_box2d(geometry) (return a box2d object)[[BR]][[BR]]
     175ST_box3d(geometry) (return a box3d object)[[BR]][[BR]]
     176ST_Envelope(geometry) Returns the minimum bounding box for the supplied geometry, as a geometry. The polygon is defined by the corner points of the bounding box ((MINX, MINY), (MINX, MAXY), (MAXX, MAXY), (MAXX, MINY), (MINX, MINY)). (PostGIS will add a ZMIN/ZMAX coordinate as well). In PostGIS, the bounding box of a geometry is represented internally using float4s instead of float8s that are used to store geometries. The bounding box coordinates are floored, guarenteeing that the geometry is contained entirely within its bounds. This has the advantage that a geometry's bounding box is half the size as the minimum bounding rectangle, which means significantly faster indexes and general performance. But it also means that the bounding box is NOT the same as the minimum bounding rectangle that bounds the geometry.[[BR]][[BR]]
    177177getBBOX(geometry) (Deprecation in 1.2.3)[[BR]]
    178178
    179179List of related functions in PostGIS:
    180180
    181 ST_extent(geometry set)[[BR]]
    182 ST_ExteriorRing(geometry)[[BR]]
     181ST_extent(geometry set)[[BR]][[BR]]
     182ST_ExteriorRing(geometry)[[BR]][[BR]]
    183183ST_ConvexHull(geometry)
    184184