Depths To ASCII (Bathymetry)

License Level:BasicStandardAdvanced

Summary

Exports a depths point feature class to an ASCII text file. You can use the ASCII text file for working with depths information in non-GIS systems. Depths in the ArcGIS for Maritime: Bathymetry are z-enabled point features interpolated from a Bathymetric Attributed Grid (BAG). Depth values also contain a vertical uncertainty value. Elevation and uncertainty values are sampled from bands in the BAG.

Depths represent a measurement of the vertical distance from a given water level to the seafloor.

A BAG is a multidimensional hydrographic data file that models elevation and Total Propagated Uncertainty (TPU) values in a gridded format. It conforms to standards created by the Open Navigation Surface Working Group.

Usage

Syntax

DepthsToASCII_bathymetry (in_layer, ascii_file)
ParameterExplanationData Type
in_layer

Input points to export to ASCII.

Feature Layer
ascii_file

The text file to which features will be written.

File

Code Sample

DepthsToASCII example (stand-alone script)

The following stand-alone script demonstrates how to use the DepthsToASCII tool.

# Name: DepthsToASCII_Example.py
# Description: Exports a Bathymetry points feature class to an ascii file
# Requirements: ArcGIS for Maritime Bathymetry

import arcpy

# setup parameters
inLayer = "C:/data/MyData.gdb/PointFC"
asciiFile = "C:/output/MyOutput.txt"

# execute the tool. For a stand-alone scripts, checkout the extension first - arcpy.CheckOutExtension("nauticalb")
arcpy.DepthsToASCII_bathymetry(inLayer, asciiFile)

Environments

Related Topics

Licensing Information

ArcGIS for Desktop Basic: No
ArcGIS for Desktop Standard: Requires Bathymetry
ArcGIS for Desktop Advanced: Requires Bathymetry
2/20/2015