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 IrregularGridMetaspatialRaster indicating what object type the hash represents.

input_rasters

Required. A 2D array of input ENVIRasters. The following rules apply:

  • Specify empty tiles with null objects by entering 'NullObject' instead of using ENVIRasters.
  • Metadata values are passed from the input rasters to the virtual raster only if the values are the same in all input rasters.
  • Input rasters do not need to be georeferenced. If the top-left tile contains a spatial reference, that reference will be used for the virtual raster. You can override the spatial reference by using the spatialref key.
  • The order of array elements determines the layout of the tiles in the metaspatial raster.

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": [
   [
      {
         "url":
"/usr/local/INSTALL_DIR/envi/mydata/tutorial_data/apigriddingexamples/qb_boulder_msi1.dat",
         "factory": "URLRaster"
      },
      {
      "url":
"/usr/local/INSTALL_DIR/envi/mydata/tutorial_data/apigriddingexamples/qb_boulder_msi2.dat",
         "factory": "URLRaster"
      }
   ],
   [
      {
      "url":
"/usr/local/INSTALL_DIR/envi/mydata/tutorial_data/apigriddingexamples/qb_boulder_msi3.dat",
         "factory": "URLRaster"
      },
      {
      "url":
"/usr/local/INSTALL_DIR/envi/mydata/tutorial_data/apigriddingexamples/qb_boulder_msi4.dat",
      "factory": "URLRaster"
      }
   ]
]

Example 2:

"input_rasters": [
   [
      {
         "factory": "URLRaster",
         "url":
"/usr/local/INSTALL_DIR/envi/mydata/tutorial_data/apigriddingexamples/qb_boulder_msi1.dat"
      },
      {
         "factory": "NullObject"
      }
   ],
   [
      {
      "factory": "NullObject"
      },
      {
      "factory": "URLRaster",
      "url": 
"/usr/local/INSTALL_DIR/envi/mydata/tutorial_data/apigriddingexamples/qb_boulder_msi4.dat",
         "factory": "URLRaster"
      }
   ]
]

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: {
   "factory": "StandardRasterSpatialRef",
   "rotation": 0.00000000,
   "tie_point_pixel": [0.00000000, 0.00000000],
   "coord_sys_code": 32611,
   "pixel_size": [30.000000, 30.000000],
   "tie_point_map": [493785.00, 4899315.0]
}

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