本文简要介绍 python 语言中 arcgis.apps.hub.events.EventManager.add
的用法。
用法:
add(event_properties)
返回:
添加成功后的事件。
为倡议添加事件。
Parameter
Description
event_properties
必需的字典。有关键和值,请参见下表。
参数event_properties的键:值字典选项
Key
Value
title
必需的字符串。事件名称。
description
必需的字符串。事件说明。
initiaitve_id
必需的字符串。物品的名称标签。
venue
必需的字符串。活动的地点名称。
address1
必需的字符串。场地的街道地址。
status
必需的字符串。事件的访问。有效值为 private、planned、public、draft。
startDate
自 UNIX 纪元以来所需的事件开始日期(以毫秒为单位)。
endDate
自 UNIX 纪元以来所需的事件结束日期(以毫秒为单位)。
isAllDay
必需的布尔值。指示事件是否为全天事件。
capacity
可选整数。活动场地的出席人数。
address2
可选字符串。有关活动场地街道地址的更多信息。
onlineLocation
可选字符串。在线活动的网址或其他详细信息。
organizers
每个组织者的姓名和电子邮件的可选键字典列表
name
和contact
。默认值为事件创建者的姓名、电子邮件、用户名。sponsors
每个赞助商的姓名和联系人的可选键字典列表
name
和contact
。例子:
# USAGE EXAMPLE: Add an event successfully event_properties = { 'title':'Test Event', 'description': 'Testing with python', 'initiativeId': '43f..', 'venue': 'Washington Monument', 'address1': '2 15th St NW, Washington, District of Columbia, 20024', 'status': 'planned', 'startDate': 1562803200, 'endDate': 1562889600, 'isAllDay': 1 } new_event = myhub.events.add(event_properties)
相关用法
- Python ArcGIS Event.update用法及代码示例
- Python ArcGIS Event.delete用法及代码示例
- Python ArcGIS Envelope.coordinates用法及代码示例
- 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用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.apps.hub.events.EventManager.add。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。