TABLE OF CONTENTS


OBJECT TYPE ARRAY/T_GRIDS [ Structures ]

[ Top ] [ Structures ]

NAME

    T_GRIDS -- An array (collection/table) of T_GRIDs.

DESCRIPTION

    An array of T_GRID objects that represents an array of optimized rectangles 
    representing a grid, matrix or "raster".
    Used mainly by PIPELINED T_GEOMETRY methods.

AUTHOR

    Simon Greener

HISTORY

    Simon Greener - Jan 2005 - Original coding.
    Simon Greener - Jan 2013 - Port from GEOM Package

COPYRIGHT

    (c) 2005-2018 by TheSpatialDBAdvisor/Simon Greener

SOURCE

CREATE OR REPLACE TYPE &&INSTALL_SCHEMA..T_Grids 
           IS TABLE OF &&INSTALL_SCHEMA..T_Grid;

OBJECT TYPE/T_GRID [ Types ]

[ Top ] [ Types ]

NAME

    T_GRID -- Object type representing a single cell in a matrix of non-overlapping (no gaps) cells.

DESCRIPTION

    An object type that represents a single cell within an array of 
    optimized rectanges representing a grid or matrix of "raster" style objects.
    Used mainly with T_GRIDS in PIPELINED T_GEOMETRY methods.

NOTES

    No methods are declared on this type.

AUTHOR

    Simon Greener

HISTORY

    Simon Greener - Jan 2005 - Original coding.
    Simon Greener - Jan 2013 - Port from GEOM Package.

COPYRIGHT

    (c) 2005-2018 by TheSpatialDBAdvisor/Simon Greener

T_GRID/ATTRIBUTES(T_GRID) [ Variables ]

[ Top ] [ T_GRID ] [ Variables ]

ATTRIBUTES

    gCol -- Column Reference 
    gRow -- Row Reference
    geom -- SDO_GEOMETRY coded as Optimized Rectangle.

SOURCE

  gcol  number,
  grow  number,
  geom  mdsys.sdo_geometry