DBA Data[Home] [Help]

MDSYS.SDO_GEOR_RA dependencies on SDO_GEORASTER_ARRAY

Line 186: georArray IN SDO_GEORASTER_ARRAY,

182: -- RETURNS
183: --
184: PROCEDURE classify
185: (
186: georArray IN SDO_GEORASTER_ARRAY,
187: expression IN VARCHAR2,
188: rangeArray IN SDO_NUMBER_ARRAY,
189: valueArray IN SDO_NUMBER_ARRAY,
190: storageParam IN VARCHAR2,

Line 314: georArray IN SDO_GEORASTER_ARRAY,

310: --
311: --
312: PROCEDURE rasterMathOp
313: (
314: georArray IN SDO_GEORASTER_ARRAY,
315: operation IN SDO_STRING2_ARRAY,
316: storageParam IN VARCHAR2,
317: outGeoraster IN OUT MDSYS.SDO_GEORASTER,
318: nodata IN VARCHAR2 DEFAULT 'false',

Line 458: -- geor_array - The SDO_GEORASTER array

454: -- the model space if they are georeferenced
455: --
456: --
457: -- ARGUMENTS
458: -- geor_array - The SDO_GEORASTER array
459: -- tolerance - Specifies the tolerance used to decide if two pixels in cell space are
460: -- overlapped in the model spce. The value should be between 0
461: -- and 1 and is in pixel unit. for example, 0.5 means half pixel.
462: --

Line 468: georArray IN SDO_GEORASTER_ARRAY,

464: -- 'TRUE' if overlapped, otherwise 'FALSE'
465:
466: FUNCTION isOverlap
467: (
468: georArray IN SDO_GEORASTER_ARRAY,
469: tolerance IN NUMBER default 0.5
470: )
471: RETURN VARCHAR2 DETERMINISTIC PARALLEL_ENABLE;
472: