ラベル | 説明 | データ タイプ |
Input BIS Workspace
| The enterprise or file geodatabase where the BIS workspace is located. | Workspace |
Output Mosaic Dataset
| The output mosaic dataset. | Mosaic Dataset |
Coordinate System
| The coordinate system that will be used for all items in the mosaic dataset. If no coordinate system is provided, WGS84 Web Mercator (auxiliary sphere) will be used by default. | Coordinate System |
Query File (オプション) | The model or rule file that defines the datasets and sorting order that will be applied to the rasters included in the output mosaic dataset.
If no query file is provided, all rasters in the BIS will be exported. | File |
Create Overviews
(オプション) | Specifies whether overviews for a mosaic dataset will be defined and generated.
| Boolean |
Force Overview Tiles
(オプション) | Specifies whether overviews will be created at all levels or only above existing pyramid levels.
| Boolean |
サマリー
Creates a mosaic dataset from a Bathymetric Information System (BIS).
使用法
The mosaic dataset must be created in an enterprise or file geodatabase.
The Output Mosaic Dataset parameter value must be a workspace other than the Input BIS Workspace parameter value.
The name of the mosaic dataset must be in accordance with the limits of the geodatabase or underlying database; for example, the name cannot start with a number.
If no coordinate system is provided, WGS84 Web Mercator (auxiliary sphere) will be used by default.
If the Force Overview Tiles parameter is checked, overviews will be created at all levels. Otherwise, overviews will only be created above the raster pyramid levels.
パラメーター
arcpy.bathymetry.BISToMosaicDataset(in_bis_workspace, out_mosaic, coordinate_system, {in_query_file}, {create_overviews}, {force_overview_tiles})
名前 | 説明 | データ タイプ |
in_bis_workspace | The enterprise or file geodatabase where the BIS workspace is located. | Workspace |
out_mosaic | The output mosaic dataset. | Mosaic Dataset |
coordinate_system | The coordinate system that will be used for all items in the mosaic dataset. If no coordinate system is provided, WGS84 Web Mercator (auxiliary sphere) will be used by default. | Coordinate System |
in_query_file (オプション) | The model or rule file that defines the datasets and sorting order that will be applied to the rasters included in the output mosaic dataset.
If no query file is provided, all rasters in the BIS will be exported. | File |
create_overviews (オプション) | Specifies whether overviews for a mosaic dataset will be defined and generated.
| Boolean |
force_overview_tiles (オプション) | Specifies whether overviews will be created at all levels or only above existing pyramid levels.
| Boolean |
コードのサンプル
The following stand-alone script demonstrates how to use the BISToMosaicDataset function.
import arcpy
arcpy.CheckOutExtension("Bathymetry")
# Identify tool parameters
bis_workspace = r"C:\Data\BIS.gdb"
out_mosaic = r"C:\Data\Target.gdb\OutputMosaic"
coordinate_system = ""
rule_file = r"C:\Data\sort.rule"
create_overviews = "NO_OVERVIEWS"
force_overview_tiles = "NO_FORCE_OVERVIEW_TILES"
# Execute the tool
out_mosaic = arcpy.bathymetry.BISToMosaicDataset(bis_workspace, out_mosaic, coordinate_system, rule_file, create_overviews, force_overview_tiles)
arcpy.CheckInExtension("Bathymetry")
ライセンス情報
- Basic: No
- Standard: 次のものが必要 ArcGIS Bathymetry
- Advanced: 次のものが必要 ArcGIS Bathymetry