Summary
Loads raster datasets into an OGC GeoPackage raster pyramid.
Usage
The target GeoPackage can be created using the Create SQLite Database tool.
The GeoPackage raster name cannot already exist in the GeoPackage.
Raster data with an unknown coordinate reference will be created with a 6-level tiling scheme.
Syntax
arcpy.conversion.AddRasterToGeoPackage(in_dataset, target_geopackage, raster_name, {tiling_scheme}, {tiling_scheme_file}, {area_of_interest})
Parameter | Explanation | Data Type |
in_dataset | The raster dataset to load into the OGC GeoPackage raster pyramid. | Raster Layer; Mosaic Layer |
target_geopackage | The GeoPackage into which the raster dataset will be loaded. | Workspace |
raster_name | The name of the output GeoPackage raster pyramid. | String |
tiling_scheme (Optional) | Specifies the tiling scheme.
| String |
tiling_scheme_file (Optional) | A custom tiling scheme file that is required when tiling_scheme is set to FROM_FILE. | File |
area_of_interest (Optional) | An area of interest used to limit the area of the raster to be loaded, rather than the entire dataset. | Feature Set |
Derived Output
Name | Explanation | Data Type |
out_geopackage_raster | The updated GeoPackage. | Raster Dataset |
Code sample
The following Python window script demonstrates how to use the AddRasterToGeoPackage function.
import arcpy
arcpy.AddRasterToGeoPackage_conversion("c:/data/san_diego.png", "c:/data/san_diego.gpkg",
"SanDiego", "TILED")
Environments
Licensing information
- Basic: Yes
- Standard: Yes
- Advanced: Yes