描述
在现有 Globe 服务缓存中创建和更新切片。此工具用于创建新切片、恢复缺失切片、覆盖过时切片或添加新切片。所有这些操作都可通过矩形范围或面要素类定义。创建新切片时,可选择是仅创建空切片还是重新创建所有切片。
使用方法
此工具应被用于更新现有 Globe 服务器缓存。要更新缓存,请指定托管 Globe 服务的 ArcGIS Server。此工具会自动列出该服务器上所有可用的 Globe 服务。
如果运行更新时并未指定范围,则该服务的整个范围都将得到更新。
指定输入图层的 level_from 和 level_to 时,请务必指定生成切片时要用到的全部细节层次。level_from 定义了数据缓存起始的最低细节层次。level_to 定义了希望数据缓存具有的最高分辨率。
语法
arcpy.server.ManageGlobeServerCacheTiles(service, in_layers, update_mode, {num_of_caching_service_instances}, {area_of_interest}, {ignore_status}, {update_extent})
参数 | 说明 | 数据类型 |
service | 待更新缓存切片所属的 globe 服务。 这是一个包含服务器和服务器信息的字符串。 要查看构建此字符串的方法,请打开 ArcCatalog,选择目录树中的服务,并注意位置工具栏中的文本。 将反斜线改为正斜线,例如 GIS Servers/arcgis on MYSERVER (admin)/Seattle.GlobeServer。 | GlobeServer |
in_layers [[layer, level_from, level_to],...] | 要包含在缓存中的图层。 您需要为每个图层提供缓存开始时的细节层次 level_from 以及缓存结束时的细节层次 level_to。如果将最小细节层次和最大细节层次分别用作 level_from 和 level_to,将为图层建立完全缓存。 | Value Table |
update_mode | 选择缓存的更新模式。有两种模式可用:
| String |
num_of_caching_service_instances (可选) | 专用于运行该工具的 System/CachingTools 服务实例的总数。 您可以通过 ArcGIS Server 的管理连接,使用服务编辑器窗口,增加 System/CachingTools 服务的每台计算机的最大实例数设置。 确保您的服务器计算机可以支持所选数量的实例。 | Long |
area_of_interest (可选) | 定义感兴趣区以对将创建或删除的切片进行约束。它可能是一个要素类,也可能是在 ArcMap 中以交互方式定义的要素。该参数用于为形状不规则的区域管理切片。它对您要对某些区域进行预缓存或让较少访问的区域保持未缓存的状态等情形也同样有用。 | Feature Set |
ignore_status (可选) | 如果您基于要素类边界创建切片,则可使用此参数追踪缓存的状态(请参阅 update_feature_class 参数)。
| Boolean |
update_extent (可选) | 创建或删除切片所参照的矩形范围,具体取决于 update_mode 参数的值。输入范围值或将现有的某一数据源作为一个范围值即可。 | Extent |
代码示例
为 globe 服务创建缓存切片。
#ManageGlobeServerCacheTiles For ArcGIS Server 10.1 Beta example (stand-alone script)
# Name: ManageGlobeServerCacheTiles.py
# Description: The following stand-alone script demonstrates how to update the
# globe map server cache tiles
# Requirements: os, sys, time & traceback modules
# Author: ESRI
# Any line that begins with a pound sign is a comment and will not be executed
# Empty quotes take the default values
# To accept arguments from the command line replace values of variables to
# "sys.argv[]"
# Import system modules
import arcpy
from arcpy import env
import os, sys, time, datetime, traceback, string
# Set environment settings
env.workspace = "C:/data"
# List of input variables for map service properties
connectionFile = r"C:\Users\<username>\AppData\Roaming\ESRI\Desktop10.1\ArcCatalog"
server = "arcgis on MyServer_6080 (publisher)"
globeServiceName = "tstGlobeService.GlobeService"
globeService = connectionFile + "\\" + server + "\\" + globeServiceName
inputLayers = ""
updateExtents = ""
updateMode = "RECREATE_ALL_TILES"
numOfCachingServiceInstances = "2"
areaOfInterest = ""
ignoreStatus = "DO_NOT_TRACK_STATUS"
currentTime = datetime.datetime.now()
arg1 = currentTime.strftime("%H-%M")
arg2 = currentTime.strftime("%Y-%m-%d %H:%M")
file = 'C:/data/report_%s.txt' % arg1
# print results of the script to a report
report = open(file,'w')
try:
starttime= time.clock()
result = arcpy.ManageGlobeServerCacheTiles_server (globeService, inputLayers,
updateMode,
numOfCachingServiceInstances,
areaOfInterest,
ignoreStatus, updateExtents)
finishtime = time.clock()
elapsedtime = finishtime - starttime
#print messages to a file
while result.status < 4:
time.sleep(0.2)
resultValue = result.getMessages()
report.write ("completed " + str(resultValue))
print "Created the GlobeServer cache successfully for mapservice "
globeService + "\n in " + str(elapsedtime) + " sec \n on " + arg2
except Exception, e:
# If an error occurred, print line number and error message
tb = sys.exc_info()[2]
report.write("Failed at step 1 \n" "Line %i" % tb.tb_lineno)
report.write(e.message)
report.close()
print "Created the globe server cache successfully"
环境
此工具不使用任何地理处理环境。
许可信息
- Basic: 需要 3D Analyst
- Standard: 需要 3D Analyst
- Advanced: 需要 3D Analyst