1

我正在尝试为 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 导入的任何内容......我认为这是必需的/所有这一切的重点。我很感激你的帮助。请让我知道您在我的代码中看到的内容。

4

2 回答 2

3

您不能按照您尝试的方式执行此操作,因为time.sleep会阻塞并锁定整个应用程序。ArcGIS 中的 Python 插件是相当新的东西,还有很多功能尚未实现。其中之一是某种更新或计时器事件,就像您在 .NET 和 ArcObjects 中获得的一样。在这种情况下,您可能会考虑使用 threading.Thread 和 threading.Event,但在 Python 插件环境中与线程无关。至少我不能让它工作。所以我在这种情况下所做的就是使用 wxPython 和 Timer 类。如果插件设置正确,下面的代码将起作用。

import time
import os, sys
import wx
import arcpy

mp = os.path.dirname(__file__)
sys.path.append(mp)

WATCHER = None

class LibLoader1(object):
    """Extension Implementation"""
    def __init__(self):
        self.enabled = True

    def startup(self):
        global WATCHER
        WATCHER = watcherDialog()

class ButtonClass5(object):
    """Button Implementation"""
    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)

制作一个带有工具栏和按钮类的扩展插件。startup如上所示覆盖扩展的方法。这将创建一个带有计时器的 Frame 子类的实例。然后,每当您单击工具栏上的按钮时,计时器就会打开或关闭。Timer 参数以毫秒为单位,因此显示的代码将每 5 秒刷新一次。

您可以在此处阅读有关在插件中使用 wxPython 的更多信息。请特别注意 MCederholm 的帖子,例如关于 print 语句不起作用的帖子。

编辑

该代码使用startup插件扩展类的方法覆盖。此方法应该在 Arcmap 启动时运行,但从您的评论看来,此启动方法在启动时无法运行。如果您没有正确创建插件,这是可能的,但在我的测试中它对我来说很好。如果您继续收到“AttributeError: 'NoneType' object has no attribute 'timer'”,请更改onClick按钮类的方法,如下所示:

def onClick(self):

    if WATCHER is None:
        global WATCHER
        WATCHER = watcherDialog()

    if not WATCHER.timer.IsRunning():
        WATCHER.timer.Start(5000)
    else:
        WATCHER.timer.Stop()

前 3 行检查以确保 WATCHER 变量已设置为 的实例,watcherDialog并且尚未设置为None. 不知道为什么您的启动方法没有运行,但希望这会为您解决问题。

于 2013-05-11T21:56:07.527 回答
0

您可以使用RefreshTOCRefreshActiveView方法。只需添加一个计时器

于 2013-05-11T20:42:39.323 回答