我正在尝试为 ArcMap 创建一个“自动刷新”工具,以刷新 DataFrame。我相信版本 10 有一个可以为此目的下载的附加组件。但是我们在工作中运行的是 10.1,并且没有这样的工具。
编辑wxPython 的计时器应该可以工作,但是在 arc 中使用 wx 很棘手。这是当前代码的样子:
import arcpy
import pythonaddins
import os
import sys
sMyPath = os.path.dirname(__file__)
sys.path.insert(0, sMyPath)
WATCHER = None
class WxExtensionClass(object):
"""Implementation for Refresher_addin.extension (Extension)"""
_wxApp = None
def __init__(self):
# For performance considerations, please remove all unused methods in this class.
self.enabled = True
def startup(self):
from wx import PySimpleApp
self._wxApp = PySimpleApp()
self._wxApp.MainLoop()
global WATCHER
WATCHER = watcherDialog()
class RefreshButton(object):
"""Implementation for Refresher_addin.button (Button)"""
def __init__(self):
self.enabled = True
self.checked = False
def onClick(self):
if not WATCHER.timer.IsRunning():
WATCHER.timer.Start(5000)
else:
WATCHER.timer.Stop()
class watcherDialog(wx.Frame):
'''Frame subclass, just used as a timer event.'''
def __init__(self):
wx.Frame.__init__(self, None, -1, "timer_event")
#set up timer
self.timer = wx.Timer(self)
self.Bind(wx.EVT_TIMER, self.onTimer, self.timer)
def onTimer(self, event):
localtime = time.asctime( time.localtime(time.time()) )
print "Refresh at :", localtime
arcpy.RefreshActiveView()
app = wx.App(False)
你会注意到里面有 PySimpleApp 的东西。我是从 Cederholm 的演讲中得到的。我想知道我是否误会了什么。我应该为扩展创建一个完全独立的插件吗?那么,用我需要的代码创建我的工具栏/栏插件吗?我问这个是因为我没有看到您下面的代码中引用的 PySimpleApp,或者在启动覆盖方法中从 wx 导入的任何内容......我认为这是必需的/所有这一切的重点。我很感激你的帮助。请让我知道您在我的代码中看到的内容。