Export BIS Points (Bathymetry)

Zusammenfassung

Exports a point or multipoint feature class from input points, multipoints, shapefile points, LAS, or LASD registered to a Bathymetric Information System (BIS). Exported features will comply with filters and ordering provided by an optional input query file, and dataset overlaps can be removed.

Abbildung

Export BIS Points tool illustration
Overlaps in point data can be removed with the Remove overlaps parameter.

Verwendung

  • The Input BisCatalog parameter value must be a catalog dataset in a BIS workspace.

  • The Output Points parameter value must be a point or multipoint feature class in a file or enterprise geodatabase.

  • The Output Points parameter value must be a point or multipoint feature class in a non-BIS workspace.

  • Only point shapefiles and point feature classes will export as point feature classes. Other input data types will be ignored in a point feature class output.

  • If the input data includes any point cloud datasets, the output must be multipoint; otherwise only point data will be exported and the point cloud data will be ignored.

Parameter

BeschriftungErläuterungDatentyp
Input BisCatalog

The catalog dataset in the BIS workspace that contains the point datasets that will be exported.

Feature Layer
Output Points

The output feature class that will be created. The output feature class will use the BIS coordinate system.

Feature Class
Data Type
(optional)

Specifies the data type of the output.

  • PointThe output will be a new point feature class with the exported points. This is the default.
  • MultipointThe output will be a new multipoint feature class with the exported points.
String
Query File (Filter, Rule, Model)
(optional)

The file that determines which point datasets will be exported and the order of the output.

  • Filter file (*.filter)—This file filters the set of points that will be exported from the BisCatalog to the output. The output will follow the default OBJECTID ordering.
  • Rule file (*.rule)—This file establishes the sorting rules for the output data. All points in the BisCatalog will be exported to the output according to the defined rules.
  • Model file (*.model)—This file defines the specific set of point datasets to be exported from the BisCatalog to the output, along with the desired order of the output.

If no query file is provided, all points from the BisCatalog will be exported to the output using the default OBJECTID ordering.

File
Include dataset fields
(optional)

Specifies whether the fields from the input point feature class items will be included in the output point feature class. This parameter only applies to point feature class output.

  • Checked—All fields from the input point feature classes or shapefiles will be included in the output point feature class.
  • Unchecked—Only point geometries will be included in the output point feature class. This is the default.
Boolean
Remove overlaps
(optional)

Specifies whether overlapping areas across the input point datasets will be exported to the output. In areas of overlap between two or more datasets, only points from the topmost dataset will be exported.

  • Checked—Nonoverlapping point features representing the deconflicted data area of the input will be exported.
  • Unchecked—Point features will be exported without concern of overlapping. This is the default.
Boolean

arcpy.bathymetry.ExportBISPoints(in_biscatalog, out_points, {data_type}, {in_query_file}, {include_fields}, {remove_overlaps})
NameErläuterungDatentyp
in_biscatalog

The catalog dataset in the BIS workspace that contains the point datasets that will be exported.

Feature Layer
out_points

The output feature class that will be created. The output feature class will use the BIS coordinate system.

Feature Class
data_type
(optional)

Specifies the data type of the output.

  • POINTThe output will be a new point feature class with the exported points. This is the default.
  • MULTIPOINTThe output will be a new multipoint feature class with the exported points.
String
in_query_file
(optional)

The file that determines which point datasets will be exported and the order of the output.

  • Filter file (*.filter)—This file filters the set of points that will be exported from the BisCatalog to the output. The output will follow the default OBJECTID ordering.
  • Rule file (*.rule)—This file establishes the sorting rules for the output data. All points in the BisCatalog will be exported to the output according to the defined rules.
  • Model file (*.model)—This file defines the specific set of point datasets to be exported from the BisCatalog to the output, along with the desired order of the output.

If no query file is provided, all points from the BisCatalog will be exported to the output using the default OBJECTID ordering.

File
include_fields
(optional)

Specifies whether the fields from the input point feature class items will be included in the output point feature class. This parameter only applies to point feature class output.

  • INCLUDE_FIELDSAll fields from the input point feature classes or shapefiles will be included in the output point feature class.
  • NO_INCLUDE_FIELDSOnly point geometries will be included in the output point feature class. This is the default.
Boolean
remove_overlaps
(optional)

Specifies whether overlapping areas across the input point datasets will be exported to the output. In areas of overlap between two or more datasets, only points from the topmost dataset will be exported.

  • REMOVE_OVERLAPSNonoverlapping point features representing the deconflicted data area of the input will be exported.
  • NO_REMOVE_OVERLAPSPoint features will be exported without concern of overlapping. This is the default.
Boolean

Codebeispiel

ExportsBISPoints example (stand-alone script)

The following script demonstrates how to use the ExportBISPoints function.

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

# Identify tool parameters
in_biscatalog = r"C:\Data\BIS.gdb\BisCatalog"
out_points = r"C:\Data\Target.gdb\OutputPoints"
data_type = "POINT"
in_query_file = r"C:\Data\surface.model"
include_fields = "INCLUDE_FIELDS"
remove_overlaps = "REMOVE_OVERLAPS"

# Execute the tool
arcpy.bathymetry.ExportBISPoints(in_biscatalog, out_points, data_type, in_query_file, include_fields, remove_overlaps)
arcpy.CheckInExtension("Bathymetry")

Umgebungen

Lizenzinformationen

  • Basic: Nein
  • Standard: Erfordert ArcGIS Bathymetry, 3D Analyst
  • Advanced: Erfordert ArcGIS Bathymetry, 3D Analyst

Verwandte Themen