Skip navigation links

Oracle® Spatial Java API Reference
11g Release 2 (11.2)
E11829-02


oracle.spatial.georaster.sql
Class SdoGeoRaster

java.lang.Object
  extended by oracle.spatial.georaster.sql.SdoGeoRaster


public class SdoGeoRaster
extends java.lang.Object

SdoGeoRaster is a Java class which contains a pair of rasterID and rasterDataTable information. Combined with a connection (a database), SdoGeoRaster can uniquely identify a GeoRaster object in the target database.

SdoGeoRaster can be constructed from a STRUCT object.

    public SdoGeoRaster(STRUCT georaster) throws Exception
    
 or from a pair of rasterID and rasterDataTable.
 
    public SdoGeoRaster(String rasterDataTable, NUMBER rasterID)
    
 SdoGeoRaster can also be constructed from a JGeoRaster object:
 
    public SdoGeoRaster(JGeoRaster jeor)
 

Compared with JGeoRaster object, SdoGeoRaster is a lightweight Java mapping of a GeoRaster object, because it only contains a pair of rasterID and rasterDataTable information without any other overhead; instead, when a JGeoRaster object is constructed, it needs to fetch and parse a GeoRaster metadata XML string, construct internal metadata objects structure, and initialize some necessary attributes for later data and image processing.

SdoGeoRaster is usually used with class SdoGeorPKG to wrap the GeoRaster PL/SQL API on the Java side. For example:

     public void changeFormatCopy(SdoGeoRaster source,String storageParam,SdoGeoRaster target,double[] bgValues) throws Exception
 

Constructor Summary
SdoGeoRaster(java.lang.String rasterDataTable, NUMBER rasterID)
          Constructs an SdoGeoRaster object using the given rasterDataTable and rasterID.
SdoGeoRaster(STRUCT georaster)
          Constructs an SdoGeoRaster object using the given STRUCT.

 

Method Summary
 java.lang.String getRasterDataTable()
          Returns the raster data table where the current GeoRaster object is stored.
 NUMBER getRasterID()
          Returns the raster ID assigned to the current GeoRaster object.
 void setRasterDataTable(java.lang.String rasterDataTable)
          Sets the raster data table of the current GeoRaster object.
 void setRasterID(NUMBER rasterID)
          Sets the raster ID of the current GeoRaster object.

 

Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

Constructor Detail

SdoGeoRaster

public SdoGeoRaster(STRUCT georaster)
             throws java.lang.Exception
Constructs an SdoGeoRaster object using the given STRUCT.
Parameters:
georaster - a STRUCT object, which is used to initiate the SdoGeoRaster object
Throws:
java.lang.Exception

SdoGeoRaster

public SdoGeoRaster(java.lang.String rasterDataTable,
                    NUMBER rasterID)
Constructs an SdoGeoRaster object using the given rasterDataTable and rasterID.
Parameters:
rasterDataTable - raster data table
rasterID - raster ID number

Method Detail

getRasterDataTable

public java.lang.String getRasterDataTable()
Returns the raster data table where the current GeoRaster object is stored.
Returns:
the raster data table where the current GeoRaster object is stored.

getRasterID

public NUMBER getRasterID()
Returns the raster ID assigned to the current GeoRaster object.
Returns:
the raster ID assigned to the current GeoRaster object.

setRasterID

public void setRasterID(NUMBER rasterID)
                 throws GeoRasterException
Sets the raster ID of the current GeoRaster object.
Parameters:
rasterID - the raster ID assigned to the current GeoRaster object
Throws:
GeoRasterException

setRasterDataTable

public void setRasterDataTable(java.lang.String rasterDataTable)
                        throws GeoRasterException
Sets the raster data table of the current GeoRaster object.
Parameters:
rasterDataTable - the raster data table where the current GeoRaster object is stored
Throws:
GeoRasterException

Skip navigation links

Oracle® Spatial Java API Reference
11g Release 2 (11.2)
E11829-02


Copyright © 2007, 2011, Oracle and/or its affiliates. All Rights Reserved.