本文简要介绍 python 语言中 arcgis.mapping.OfflineMapAreaManager.modify_refresh_schedule
的用法。
用法:
modify_refresh_schedule(item, refresh_schedule=None, refresh_rates=None)
返回:
指示成功 (True) 或失败 (False) 的布尔值
modify_refresh_schedule
方法修改现有脱机包的刷新计划。Parameter
Description
item
必需的
Item
对象。这是用于更新刷新计划的离线包。refresh_schedule
可选字符串。这是刷新率。
以下是有效变量:
从不 - 从不刷新离线包(默认)
每日 - 每天刷新
每周 - 每周刷新一次
每月 - 每月刷新一次
refresh_rates
可选字典。此参数允许自定义调度程序。请注意,所有时间都是 UTC。
字典接受以下内容:
{ “hour” : 1 “minute” = 0 “nthday” = 3 “day_of_week” = 0 }
小时 - 0-23 之间的值(整数)
分钟 0-60 之间的值(整数)
nthday - 这仅用于每月。这表示刷新将在每月的‘x’ 日发生。
day_of_week - 0-6 之间的值,其中 0 是星期日,6 是星期六。
示例日常:
{ “hour”: 10, “minute” : 30 }
这意味着每天 10:30 AM UTC
示例每周:
{ “hour” : 23, “minute” : 59, “day_of_week” : 4 }
这意味着世界标准时间每周三晚上 11:59
## Updates Offline Package Building Everyday at 10:30 AM UTC gis = GIS(profile='owner_profile') item = gis.content.get('9b93887c640a4c278765982aa2ec999c') oa = wm.offline_areas.modify_refresh_schedule(item.id, 'daily', {'hour' : 10, 'minute' : 30})
相关用法
- Python ArcGIS OfflineMapAreaManager.create用法及代码示例
- Python ArcGIS Object3DLayer用法及代码示例
- Python ArcGIS power用法及代码示例
- Python ArcGIS APIKeyManager.get用法及代码示例
- Python ArcGIS KnowledgeGraph.named_object_type_delete用法及代码示例
- Python ArcGIS ContentManager.unshare_items用法及代码示例
- Python ArcGIS ImageryLayer.thumbnail用法及代码示例
- Python ArcGIS FormFieldElement用法及代码示例
- Python ArcGIS Geometry.true_centroid用法及代码示例
- Python ArcGIS Site.delete用法及代码示例
- Python ArcGIS GeoAccessor.bbox用法及代码示例
- Python arcgis.apps.hub.Initiative.update用法及代码示例
- Python ArcGIS generate_service_areas用法及代码示例
- Python ArcGIS build_overview用法及代码示例
- Python ArcGIS RunInterval用法及代码示例
- Python ArcGIS describe_dataset用法及代码示例
- Python ArcGIS acos用法及代码示例
- Python ArcGIS Item.publish用法及代码示例
- Python ArcGIS MapImageLayer.find用法及代码示例
- Python ArcGIS Group.get_members用法及代码示例
- Python ArcGIS Geometry.last_point用法及代码示例
- Python ArcGIS Worker用法及代码示例
- Python ArcGIS ContentManager.delete_folder用法及代码示例
- Python ArcGIS train_classifier用法及代码示例
- Python ArcGIS APIKeyManager.create用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.mapping.OfflineMapAreaManager.modify_refresh_schedule。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。