Managing output from Image Analyst tools in Map Algebra

Доступно с лицензией 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")
    • Место, где будут сохранены данные, определяется тем, что вы указали в методе save, и параметрами среды рабочей области, которые вы задали.

      1. Когда задан полный путь с именем набора данных, данные будут сохранены в этом месте.
      2. Если указано только имя набора данных, то местоположение сохраняемых данных определяется параметрами среды рабочей области геообработки.
        • Если задана временная или текущая рабочая область, сохраняемые данные будут сохранены в заданной рабочей области.
        • Если заданы и текущая, и временная рабочие области, данные будут сохранены в текущей рабочей области.
        • Если рабочая область не задана, будет возвращена ошибка.

    • Если вы просто хотите сохранить данные там, где они есть, с именем по умолчанию, вызовите метод save, не указывая имя, как показано в примере ниже:
      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.

Связанные разделы