Managing output from Image Analyst tools in Map Algebra

Disponible con licencia de Image Analyst.

The primary raster output of a Image Analyst Map Algebra expression is a Raster object. One of the most important behaviors of a Raster object is that when it is created as primary output from a Map Algebra expression, it references a temporary raster. Temporary data, unless it is explicitly saved, will be removed when the ArcGIS session or script ends.

Saving a temporary raster

A temporary raster can be permanently saved by using the save method on the Raster object. If the temporary data has a layer associated with it, the data can also be saved through the layer's context menu or by saving the map document. These methods of saving are expounded below:

  1. A temporary raster can be saved by using the save method. In the example below, the temporary output from the Float tool is saved to the specified output folder.
    outraster = Float("C:/Data/elevation") 
    outraster.save("C:/output/floatraster")
    • La ubicación en la que se guardan los datos depende de lo que introduzca en el método save y de los entornos de espacio de trabajo que establezca.

      1. Cuando se especifica la ruta completa con el nombre del dataset, esa será la ubicación permanente donde se guardarán los datos.
      2. Si solo se especifica el nombre del dataset, los entornos de espacio de trabajo de geoprocesamiento determinarán la ubicación de los datos guardados.
        • Si se establece el espacio de trabajo actual o el espacio de trabajo temporal, entonces los datos se guardarán en la ubicación del espacio de trabajo establecido.
        • Si se establece tanto el espacio de trabajo actual como el espacio de trabajo temporal, entonces los datos se guardarán en el espacio de trabajo actual.
        • Si no se establece ningún espacio de trabajo, se devolverá un error.

    • Si simplemente desea conservar los datos donde están y con el nombre predeterminado, llame al método save sin especificar ningún nombre, como se muestra en el siguiente ejemplo:
      outraster.save()
  2. To persist a temporary raster dataset associated with a map layer, save the Map Project. When the project is saved, the raster dataset persists to disk at its current location with its auto-generated name.

Interaction of a Raster object, layer, and dataset

A Raster object references a raster dataset and, if used in a map display, can be associated with a raster layer in the table of contents. The relationships between the raster dataset, the Raster object, and the raster layer are maintained in most cases, but it is important to understand these relationships to work productively with Map Algebra.

For more information on the interaction of Raster objects, see The interaction of the raster object in ArcGIS.

Temas relacionados