Подпись | Описание | Тип данных |
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: Нет
- Standard: Обязательно ArcGIS Bathymetry
- Advanced: Обязательно ArcGIS Bathymetry