Beschriftung | Erläuterung | Datentyp |
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.
| String |
Query File (Filter, Rule, Model) (optional) | The file that determines which point datasets will be exported and the 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.
| 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.
| Boolean |
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

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
arcpy.bathymetry.ExportBISPoints(in_biscatalog, out_points, {data_type}, {in_query_file}, {include_fields}, {remove_overlaps})
Name | Erläuterung | Datentyp |
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.
| String |
in_query_file (optional) | The file that determines which point datasets will be exported and the 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.
| 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.
| Boolean |
Codebeispiel
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