ENVIIrregularGridMetaspatialRaster::Hydrate
Use the Hydrate static function method to create the object from its dehydrated form. The dehydrated form consists of a hash containing the object’s properties and values. The Hydrate and Dehydrate methods let you store the object state in memory and restore it later.
Representing an object as a hash is necessary for running ENVI analytics with the ENVI Task Engine.
See the ENVIHydrate function if you are creating a general IDL routine that will restore multiple object types.
For additional information, see What are Hydrate and Dehydrate routines used for?
Example
; Start the application
e = ENVI(/HEADLESS)
offsets = LonArr(2,2,2)
; Select input rasters
file1 = 'qb_boulder_msi1.dat'
raster1 = e.OpenRaster(file1)
offsets[0,0,0] = 0 ;column
offsets[0,0,1] = 0 ;row
file2 = 'qb_boulder_msi2.dat'
raster2 = e.OpenRaster(file2)
offsets[1,0,0] = 464 ;column
offsets[1,0,1] = 0 ;row
file3 = 'qb_boulder_msi3.dat'
raster3 = e.OpenRaster(file3)
offsets[0,1,0] = 10 ;column
offsets[0,1,1] = 399 ;row
file4 = 'qb_boulder_msi4.dat'
raster4 = e.OpenRaster(file4)
offsets[1,1,0] = 425 ;column
offsets[1,1,1] = 453 ;row
; Specify input arguments
input_Rasters = [[raster1, raster2], [raster3, raster4]]
tileSize = [512,512]
; create the metaspatial raster
msRaster = ENVIIrregularGridMetaspatialRaster(input_Rasters, $
tileSize, offsets)
; Retrieve the dehydrated hash
dehydratedForm = msRaster.Dehydrate()
msRaster.close
; Restore the object
newImage = ENVIIrregularGridMetaspatialRaster.Hydrate(dehydratedForm)
Print, newImage, /IMPLIED_PRINT
Syntax
Result = ENVIIrregularGridMetaspatialRaster.Hydrate(DehydratedForm, ERROR=value)
Return Value
The result is a reference to a new object instance of this virtual raster class.
Arguments
DehydratedForm
Key |
Description |
---|---|
factory |
Required. A string value of |
input_rasters |
Required. A 2D array of input ENVIRasters. The following rules apply:
The following examples use data files that are available from our ENVI Tutorials web page. Click the API Gridding Examples link to download the .zip file to your machine, then unzip the files. Update the file location with your own directory. Example 1: "input_rasters": [ Example 2: "input_rasters": [ }, { "url": |
name |
A string that identifies the raster. |
tile_size |
Required. A 2D array indicating the desired size of each tile, using the convention [xSize, ySize]. Each input raster will be cropped or padded with values to fit the tile size. Example: "tile_size" : [512,512], |
offsets |
Required. Offsets are zero-based pixel coordinates that represent the top-left corner of each raster with respect to the top-left corner of the metaspatial raster. An m x n x 2 array of offsets corresponding to the m x n array of input rasters, along with a column and row offset for each array. Example: "offsets": [[[0, 464], [10, 425]], [[0, 0], [399, 453]]] |
spatialref |
An ENVIStandardRasterSpatialRef, ENVIPseudoRasterSpatialRef, or ENVIRPCRasterSpatialref hash if you want to reproject the source rasters to a common spatial reference. Example: spatialRef: { |
Keywords
ERROR (optional)
Set this keyword to a named variable that will contain any error message issued during execution of this routine. If no error occurs, the ERROR variable will be set to a null string (''
). If an error occurs and the routine is a function, then the function result will be undefined.
When this keyword is not set and an error occurs, ENVI returns to the caller and execution halts. In this case, the error message is contained within !ERROR_STATE and can be caught using IDL's CATCH routine. See IDL Help for more information on !ERROR_STATE and CATCH.
See Manage Errors for more information on error handling in ENVI programming.
Version History
ENVI 5.4 |
Introduced |
API Version
4.2
See Also
ENVIIrregularGridMetaspatialRaster, ENVIIrregularGridMetaspatialRaster::Dehydrate, ENVIHydratable, ENVIHydrate