3

我正在尝试使用comtypes模块访问 ArcGIS10.1 附带的 .olb 文件。一些 .olb 文件可以正常工作 (esriGeometry.olb),而有些则不能正常工作 (esriSystem.olb),其中一些有时可以正常工作 (esriSearch.olb)。

以下代码

from comtypes.client import GetModule
olb_path = 'C:\\Program Files (x86)\\ArcGIS\\Desktop10.1\\com\\esriSystem.olb'
m = GetModule(path)

引发此回溯和异常

Traceback (most recent call last):
  File "<pyshell#6>", line 1, in <module>
    test3()
  File "D:\Data\MatthewPlourde\JAMES\gis_tools\tool.py", line 139, in test3
    m = GetModule(path)
  File "C:\Python27\ArcGIS10.1\lib\site-packages\comtypes\client\_generate.py", line 112, in GetModule
    mod = _CreateWrapper(tlib, pathname)
  File "C:\Python27\ArcGIS10.1\lib\site-packages\comtypes\client\_generate.py", line 188, in _CreateWrapper
    mod = _my_import(fullname)
  File "C:\Python27\ArcGIS10.1\lib\site-packages\comtypes\client\_generate.py", line 26, in _my_import
    return __import__(fullname, globals(), locals(), ['DUMMY'])
  File "C:\Python27\ArcGIS10.1\lib\site-packages\comtypes\gen\_5E1F7BC3_67C5_4AEE_8EC6_C4B73AAC42ED_0_10_1.py", line 5705, in <module>
    ( ['in'], POINTER(_midlSAFEARRAY(POINTER(BSTR))), 'pParameters' ),
  File "C:\Python27\ArcGIS10.1\lib\site-packages\comtypes\safearray.py", line 18, in _midlSAFEARRAY
    sa_type = _make_safearray_type(itemtype)
  File "C:\Python27\ArcGIS10.1\lib\site-packages\comtypes\safearray.py", line 53, in _make_safearray_type
    raise TypeError(itemtype)
TypeError: <class 'comtypes.errorinfo.LP_BSTR'>

显然comtypes.safearray._make_safearray_type不知道该怎么办<class 'comtypes.errorinfo.LP_BSTR'>。如果有人在使用 ArcGIS10.1,我会很高兴知道您是否可以重现此错误,如果您知道原因,尤其感激。

4

2 回答 2

4

我在 ArcGIS 论坛上找到了一个解决方案它只涉及修改automation.pycomtypes源。将条目添加到字典中。POINTER(BSTR): VT_BYREF|VT_BSTR_ctype_to_vartype

在此之后,所有 .olb 的负载。

于 2013-07-17T13:57:49.863 回答
0

我也有这个确切的错误,我无法克服它。如果您发现发生了什么,请更新此内容。我唯一能找到的就是说可能混合了 32 位和 64 位库。(另外,我看不到在哪里可以回复您的问题......只有一个答案。我不经常使用 stackexchange)

让我添加一些可能对您有所帮助的内容,取自:http ://forums.arcgis.com/threads/15848-ArcMap-10-ArcObjects-and-Python-very-cool-but-help-with-a-几个问题

import logging
# grab rootlogger
_loggy = logging.getLogger()
_loggy.setLevel(logging.DEBUG)
_loggy.addHandler(logging.FileHandler("derpdebug.log"))
import os
import comtypes.client
# change com_dir to whatever it is for you
com_dir = r'C:\Program Files (x86)\ArcGIS\Desktop10.0\com'
coms = [os.path.join(com_dir, x) for x in os.listdir(com_dir) if os.path.splitext(x)[1].upper() == '.OLB']
map(comtypes.client.GetModule, coms)
# check add whatever you want here.
import comtypes.gen.esriArcMapUI
import comtypes.gen.esriGeodatabase

print dir(comtypes.gen.esriArcMapUI)

然后我就这样做了: grep -v ^Release derpdebug.log >readable.log

于 2013-07-16T22:32:16.737 回答