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: Нет
  • Standard: Обязательно ArcGIS Bathymetry
  • Advanced: Обязательно ArcGIS Bathymetry

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