简体   繁体   English

在 python 中使用 lxml.objectify 检查和修复附加到节点的值

[英]checking and fixing values appended to a node with lxml.objectify in python

I'm trying to modify PyKML, which uses lxml.objectify.我正在尝试修改使用 lxml.objectify 的 PyKML。 With a track node append, this gets turned into a string with the default str() behavior.使用轨道节点 append,这将变成具有默认str()行为的字符串。 I'd like to catch appends of lists or tuples and convert them to proper place separated lines rather than '(xx.xxxx, yy.yyyy)'我想捕获列表或元组的附加并将它们转换为适当的位置分隔行而不是 '(xx.xxxx, yy.yyyy)'

from pykml.factory import GX_ElementMaker as GX

track = GX.Track(id='track_%d' % group_num )
for pt in group:
    when = datetime.datetime.utcfromtimestamp(pt['ts'])
    track.append( KML.when( when ) )  # WHEN?
for pt in group:
    track.append( GX.coord( (pt['x'],pt['y'])) )  # <-- trouble here

Thanks, -kurt谢谢,-库尔特

Create a clean ElementMaker class with the namespace info.使用命名空间信息创建一个干净的 ElementMaker class。 Then create a subclass with the node name as a method.然后创建一个以节点名作为方法的子类。 In that method, handle all the odd cases.在这种方法中,处理所有奇怪的情况。 Then craft the string that would go in that node names place and return an instance of the clean ElementMaker class with that node name.然后制作将 go 放在该节点名称中的字符串,并返回具有该节点名称的干净 ElementMaker class 的实例。

http://code.google.com/r/schwehr-pykml/source/browse/src/pykml/factory.py?spec=svn05a10cef3fd3c430389e8aca1313a20da932e565&r=05a10cef3fd3c430389e8aca1313a20da932e565 http://code.google.com/r/schwehr-pykml/source/browse/src/pykml/factory.py?spec=svn05a10cef3fd3c430389e8aca1313a20da932e565&r=05a10cef3efd3c43038

def indexable_levels(args):
    #print 'args:',args
    levels = 0
    while True:
        if isinstance(args,str): break
        try:
            args = args[0]
            levels += 1
        except:
            break
    #print '   levels ->',levels
    return levels

# Create a factory object for the KML Google Extension namespace
_GX_ElementMakerSimple = objectify.ElementMaker(
    annotate=False,
    namespace=nsmap['gx'],
    nsmap={'gx': nsmap['gx']},
)

class _GX_ElementMaker (objectify.ElementMaker):
    'KML ElementMaker with overloads for custom text payloads like coordinates'
    def coord(self, *args):
        #print 'start coord: "%s"' % (str(args)), type(args), len(args)
        levels = indexable_levels(args)
        if levels == 1 and len(args) == 1:
            # This case is really redundant with the next
            assert isinstance(args[0],str)
            return _GX_ElementMakerSimple.coord(args[0])
        if levels == 1:
            return _GX_ElementMakerSimple.coord(' '.join([str(item) for item in args]))
        if levels == 2:
            # ((-121.583851, 37.386052),)
            assert(len(args)==1)
            return _GX_ElementMakerSimple.coord(' '.join([str(item) for item in args[0] ]))
        assert(False)

# Create a factory object for the KML Google Extension namespace
GX_ElementMaker = _GX_ElementMaker(
    annotate=False,
    namespace=nsmap['gx'],
    nsmap={'gx': nsmap['gx']},
)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM