Generate Globe Server Cache (Server)
Summary
Generates Globe data Caches based on ArcGlobe’s Data tiling scheme. Use this tool to generate a globe data cache using the specified globe server object.
This is a deprecated tool. Use Manage Globe Server Cache Tiles instead.
Usage
-
This tool is used to create a globe cache from an existing a Globe Server Object. To build a cache using the server object, specify the Globe server host. The tool will automatically list all server objects available on that server.
-
You are able to generate data cache for all the layers contained in the server object or for a single layer.
-
The data caching scheme is already pre defined. Hence, as a user, all you need to specify is the ‘from’ and ‘To’ Levels of detail. The From Level of Detail defines the lowest level of detail you would want your data cache to begin with. The To Level of detail defines the highest resolution you would want your data caching to have.
-
Each data cache generation thread on the client must have access to the data, otherwise that thread will not be able to be used in the generation of the cache.
-
This tool does not accept any Environment Settings that have been specified.
Syntax
Parameter | Explanation | Data Type |
server_name |
The host name of the ArcGIS Server Object Manager (SOM) that will be used to generate the cache. | String |
object_name |
The name of the Globe Server configuration that will be used to generate the cache. | String |
out_folder |
The parent directory for this Globe Service where the data cache will reside for. The server cache directory must be registered with the server before running this tool. This directory must be read/write accessible to the ArcGIS Server Object Container account user on each SOC machine in the ArcGIS Server. | String |
lod_from |
Select the level-of-detail scale you would like to begin caching the layer. If the smallest and largest level-of-detail scales are used for the minimum and maximum, a full cache will be built for the layer. | String |
lod_to |
Select the level-of-detail scale you would like to begin caching the layer. If the smallest and largest level-of-detail scales are used for the minimum and maximum, a full cache will be built for the layer. | String |
thread_count (Optional) |
The specified number of threads to attempt to create on the client. Each thread, in turn, will try to create a server context on the globe server object to generate the cache. | Long |
Layer Layer;Layer... |
Select the layers to include in the layer cache. | String |
Code Sample
# Importing standard library modules import os, arcgisscripting # Create the geoprocessing object gp = arcgisscripting.create() gp.GenerateGlobeServerCache("myglobeserver","Boundaries","Globe - 1:10000000","Countries - 1:2500000", 4,"'ESRI Countries (Small Scale)';'ESRI Countries (Medium Scale)';LargeProvinces;'ESRI AWS Boundaries';'AND Countries'")