ラベル | 説明 | データ タイプ |
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: No
- Standard: 次のものが必要 ArcGIS Bathymetry, 3D Analyst
- Advanced: 次のものが必要 ArcGIS Bathymetry, 3D Analyst