ラベル | 説明 | データ タイプ |
Input BisCatalog | The BisCatalog that footprint features will be extracted from. | Feature Layer |
Output Feature Class | The output feature class containing the footprint features extracted from the BisCatalog. | Feature Class |
Query File (Filter, Rule, Model) (オプション) | A filter, rule, or model file that will be used to establish either the subset of BIS datasets or the priority order of the exported footprints included in the output feature class. Choose from the following query file types:
You can create a filter file with the Explore Bathymetry tool. You can create a rule or model file with the Compose Surface tool. If no query file is provided, the output feature class will include all BIS dataset footprints in OBJECTID order. | File |
Deconflict Footprints (オプション) | Specifies whether the output will contain overlapping features.
| Boolean |
サマリー
Exports footprints from a BisCatalog to an output feature class.
図

使用法
-
The Input BisCatalog parameter value must be a catalog dataset in a Bathymetric Information System (BIS) workspace.
-
The Output Feature Class parameter value must be created in an enterprise or file geodatabase.
-
The Output Feature Class parameter value must be exported to a workspace that is not a BIS.
When added to the map, the output polygon feature class will have ArcGIS Pro default rendering. To visualize a layer using the priority order established in a rule or model file, go to the Advanced symbology options tab
and choose OBJECTID from the Drawing order field. Choose Lowest draws on top as the sorting method.
パラメーター
arcpy.bathymetry.ExportFootprints(in_biscatalog, out_feature_class, {in_query_file}, {deconflict_footprints})
名前 | 説明 | データ タイプ |
in_biscatalog | The BisCatalog that footprint features will be extracted from. | Feature Layer |
out_feature_class | The output feature class containing the footprint features extracted from the BisCatalog. | Feature Class |
in_query_file (オプション) | A filter, rule, or model file that will be used to establish either the subset of BIS datasets or the priority order of the exported footprints included in the output feature class. Choose from the following query file types:
You can create a filter file with the Explore Bathymetry tool. You can create a rule or model file with the Compose Surface tool. If no query file is provided, the output feature class will include all BIS dataset footprints in OBJECTID order. | File |
deconflict_footprints (オプション) | Specifies whether the output will contain overlapping features.
| Boolean |
コードのサンプル
The following script demonstrates how to use the ExportFootprints function.
# Import arcpy module
import arcpy
arcpy.CheckOutExtension("Bathymetry")
# Identify tool parameters
in_biscatalog = r"C:\Data\BIS.gdb\BisCatalog"
out_feature_class = r"C:\Data\target.gdb\OutputFeatureClass"
in_query_file = r"C:\date_desc.rule"
deconflict_footprints = "DECONFLICT_FOOTPRINTS"
# Execute the tool
arcpy.bathymetry.ExportFootprints(in_biscatalog, out_feature_class, in_query_file, deconflict_footprints)
arcpy.CheckInExtension("Bathymetry")
環境
ライセンス情報
- Basic: No
- Standard: 次のものが必要 ArcGIS Bathymetry
- Advanced: 次のものが必要 ArcGIS Bathymetry