Analyze BIS (Bathymetry)

サマリー

Analyzes a Bathymetric Information System (BIS).

使用法

  • This tool provides validation checks related to BIS elements and their interrelationships.

  • All checks and operations are optional.

  • This tool can be used to delete proxy rasters that have no corresponding point datasets in the BIS.

パラメーター

ラベル説明データ タイプ
BIS

The input BIS.

Workspace
BIS Checks
(オプション)

Specifies the checks that will be performed on the BIS.

  • BIS StructureThe structure of the BIS will be analyzed to ensure it is a valid BIS.
  • BisCatalog LinksThe BisCatalog will be analyzed for broken links.
  • BisBDI LinksThe BisBDI will be analyzed for broken links.
  • BisCatalog/BisBDI SyncThe catalog dataset will be compared to the mosaic dataset to detect entries that do not match.
  • Proxy Raster CheckIdentifies proxy raster problems.
String
Repair Operations
(オプション)

Specifies the repair operations that will be performed.

  • Remove Excess Proxy RastersUnused proxy rasters will be deleted.
String

派生した出力

ラベル説明データ タイプ
Updated BIS

The updated BIS workspace.

Workspace

arcpy.bathymetry.AnalyzeBIS(in_bis, {bis_checks}, {repair_operations})
名前説明データ タイプ
in_bis

The input BIS.

Workspace
bis_checks
[bis_checks,...]
(オプション)

Specifies the checks that will be performed on the BIS.

  • BIS_STRUCTUREThe structure of the BIS will be analyzed to ensure it is a valid BIS.
  • BISCATALOG_LINKSThe BisCatalog will be analyzed for broken links.
  • BISBDI_LINKSThe BisBDI will be analyzed for broken links.
  • BISCATALOG_BISBDI_SYNCThe catalog dataset will be compared to the mosaic dataset to detect entries that do not match.
  • PROXY_RASTER_CHECKIdentifies proxy raster problems.
String
repair_operations
[repair_operations,...]
(オプション)

Specifies the repair operations that will be performed.

  • REMOVE_EXCESS_PROXY_RASTERSUnused proxy rasters will be deleted.
String

派生した出力

名前説明データ タイプ
updated_bis

The updated BIS workspace.

Workspace

コードのサンプル

AnalyzeBIS example (stand-alone script)

The following stand-alone script demonstrates how to use the AnalyzeBIS function.

# Import arcpy module
import arcpy
arcpy.CheckOutExtension("Bathymetry")

# Identify tool parameters
in_bis = r"C:\Data\BIS.gdb"
bis_checks = "BIS_STRUCTURE;BISCATALOG_LINKS;BISBDI_LINKS;BISCATALOG_BISBDI_SYNC;PROXY_RASTER_CHECK"
repair_operations  = "REMOVE EXCESS PROXY RASTERS"

# Execute the tool
arcpy.bathymetry.AnalyzeBIS(in_bis, bis_checks, repair_operations)
arcpy.CheckInExtension("Bathymetry")

環境

このツールは、ジオプロセシング環境を使用しません。

ライセンス情報

  • Basic: No
  • Standard: 次のものが必要 ArcGIS Bathymetry
  • Advanced: 次のものが必要 ArcGIS Bathymetry

関連トピック