在 python 中使用 lxml.objectify 检查和修复附加到节点的值
我正在尝试修改 PyKML,它使用 lxml.objectify。通过跟踪节点追加,它会变成具有默认 str()
行为的字符串。我想捕获列表或元组的附加并将它们转换为适当位置的分隔行而不是“(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
谢谢, -库尔特
I'm trying to modify PyKML, which uses lxml.objectify. With a track node append, this gets turned into a string with the default str()
behavior. I'd like to catch appends of lists or tuples and convert them to proper place separated lines rather than '(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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用命名空间信息创建一个干净的 ElementMaker 类。然后创建一个子类,将节点名称作为方法。在该方法中,处理所有奇怪的情况。然后制作将进入该节点名称位置的字符串,并返回具有该节点名称的干净 ElementMaker 类的实例。
<一href="http://code.google.com/r/schwehr-pykml/source/browse/src/pykml/factory.py?spec=svn 05a10cef3fd3c430389e8aca1313a20da932e565&r=05a10cef3fd3c430389e8aca1313a20da932e565" rel="nofollow">http://code.google.com/r/schwehr-pykml/source/browse/src/pykml/factory.py?spec= svn05a10cef3fd3c430389e8aca1313a20da932e565&r=05a10cef3fd3c430389e8aca1313a20da932e565
Create a clean ElementMaker class with the namespace info. 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.
http://code.google.com/r/schwehr-pykml/source/browse/src/pykml/factory.py?spec=svn05a10cef3fd3c430389e8aca1313a20da932e565&r=05a10cef3fd3c430389e8aca1313a20da932e565