ArcObjects Library Reference (GeoDatabaseExtensions)  

ITerrainAsciiDataImporter.FileFormat Property

The format of the data to be imported.

[Visual Basic .NET]
Public Property FileFormat As esriTerrainAsciiDataFormatType
[C#]
public esriTerrainAsciiDataFormatType FileFormat {get; set;}
[C++]
HRESULT get_FileFormat(
  esriTerrainAsciiDataFormatType* pFormat
);
[C++]
HRESULT put_FileFormat(
  esriTerrainAsciiDataFormatType pFormat
);
[C++]

Parameters

pFormat [out, retval]

  pFormat is a parameter of type esriTerrainAsciiDataFormatType

pFormat [in]

  pFormat is a parameter of type esriTerrainAsciiDataFormatType

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

The supported file formats are esriTerrainAsciiDataFormatXYZ, esriTerrainAsciiDataFormatGenerate, and esriTerrainAsciiFormatXYZI.

If the format is XYZI the target feature class must have a BLOB type field named 'Intensity'. This will be used to hold the intensity values. The TerrainBlobReader can be used to interpret the values placed in the BLOBs. The Intensity field of the resulting feature class can also be included in a terrain dataset if the feature class were embedded. If the intensity values in the file are of no interest, and should be ignored, then specify the format as XYZ. In this case, the importer will not require the Intensity field and the intensity values in the file(s) will be skipped.

 

See Also

ITerrainAsciiDataImporter Interface