Подпись | Описание | Тип данных |
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 (Дополнительный) | Specifies the data type of the output.
| String |
Query File (Filter, Rule, Model) (Дополнительный) | 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 (Дополнительный) | 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 (Дополнительный) | 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 |
Краткая информация
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.
Иллюстрация

Использование
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.
Параметры
arcpy.bathymetry.ExportBISPoints(in_biscatalog, out_points, {data_type}, {in_query_file}, {include_fields}, {remove_overlaps})
Имя | Описание | Тип данных |
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 (Дополнительный) | Specifies the data type of the output.
| String |
in_query_file (Дополнительный) | 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 (Дополнительный) | 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 (Дополнительный) | 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 |
Пример кода
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")
Параметры среды
Информация о лицензиях
- Basic: Нет
- Standard: Обязательно ArcGIS Bathymetry, 3D Analyst
- Advanced: Обязательно ArcGIS Bathymetry, 3D Analyst