Provides access to members that control RasterSDE storage.
Members
Name | Description | |
---|---|---|
CompressionQuality | The compression quality. | |
CompressionType | The compression type. | |
Keyword | The keyword. | |
MosaicingTolerance | The mosaicing tolerance. | |
PyramidOption | The option for building pyramids. | |
PyramidResampleType | The resampling method. | |
SpatialReference | The SpatialReference. | |
TileHeight | The tile height. | |
TileWidth | The tile width. |
IRasterSdeStorage2.CompressionQuality Property
The compression quality.
Public Property CompressionQuality As Integer
public int CompressionQuality {get; set;}
IRasterSdeStorage2.CompressionType Property
The compression type.
Public Property CompressionType As esriRasterSdeCompressionTypeEnum
public esriRasterSdeCompressionTypeEnum CompressionType {get; set;}
IRasterSdeStorage2.Keyword Property
The keyword.
Public Property Keyword As String
public string Keyword {get; set;}
IRasterSdeStorage2.MosaicingTolerance Property
The mosaicing tolerance.
Public WriteOnly Property MosaicingTolerance
public void MosaicingTolerance {set;}
IRasterSdeStorage2.PyramidOption Property
The option for building pyramids.
Public Property PyramidOption As esriRasterSdePyramidOptEnum
public esriRasterSdePyramidOptEnum PyramidOption {get; set;}
IRasterSdeStorage2.PyramidResampleType Property
The resampling method.
Public Property PyramidResampleType As rstResamplingTypes
public rstResamplingTypes PyramidResampleType {get; set;}
IRasterSdeStorage2.SpatialReference Property
The SpatialReference.
Public Property SpatialReference As ISpatialReference
public ISpatialReference SpatialReference {get; set;}
IRasterSdeStorage2.TileHeight Property
The tile height.
Public Property TileHeight As Integer
public int TileHeight {get; set;}
IRasterSdeStorage2.TileWidth Property
The tile width.
Public Property TileWidth As Integer
public int TileWidth {get; set;}
Classes that implement IRasterSdeStorage2
Classes | Description |
---|---|
BasicRasterSdeLoader | A mechanism to control creation of SDE Raster datasets and load raster data. |
Remarks
The CompressionType property selects the compression type used for the new dataset. At ArcGIS 8.1, only LZ77 compression is supported. By default, the data is uncompressed.
The PyramidOption property specifies how pyramids will be built. Pyramids will be built by default.
The PyramidResampleType determines which resampling method will be used to compute the pyramids. For categorical data, nearest neighbor resampling is best, while for continuous data, bilinear interpolation or cubic convolution are appropriate.
The SpatialReference property determines the coordinate system that will be defined for the new raster. Rasters inserted into the database will not be reprojected during loading.
The TileHeight and TileWidth properties determine the size of the stor-age block inserted into the database. The default tile size is 128 x 128.
The Keyword property allows you to specify a configuration keyword in a dbtune file to optimize the performance of your database for raster retrievals.
The MosaicingTolerance property specifies the offset between the output raster cell corners and input raster cell corners. By default, the tolerance is 0, which means that if the input raster is not perfectly aligned with the output raster in x and y, data loading will fail. At ArcGIS 8.1, this property has no effect.
This interface is not recommended for use in 9.x