Analyze BIS (Bathymetry)

Summary

Analyzes a Bathymetric Information System (BIS).

Usage

  • 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.

Parameters

LabelExplanationData Type
BIS

The input BIS.

Workspace
BIS Checks
(Optional)

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
(Optional)

Specifies the repair operations that will be performed.

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

Derived Output

LabelExplanationData Type
Updated BIS

The updated BIS workspace.

Workspace

arcpy.bathymetry.AnalyzeBIS(in_bis, {bis_checks}, {repair_operations})
NameExplanationData Type
in_bis

The input BIS.

Workspace
bis_checks
[bis_checks,...]
(Optional)

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,...]
(Optional)

Specifies the repair operations that will be performed.

  • REMOVE_EXCESS_PROXY_RASTERSUnused proxy rasters will be deleted.
String

Derived Output

NameExplanationData Type
updated_bis

The updated BIS workspace.

Workspace

Code sample

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")

Environments

This tool does not use any geoprocessing environments.

Licensing information

  • Basic: No
  • Standard: Requires ArcGIS Bathymetry
  • Advanced: Requires ArcGIS Bathymetry

Related topics