##// END OF EJS Templates
Esta archivo contiene la edición para el procesamiento y ploteo de datos hf....
Esta archivo contiene la edición para el procesamiento y ploteo de datos hf. -Unidad de lectura hf. -Unidad de Voltaje- Operacion CI. -Unidad Spectra-Operacion nFFt, II, Ploteo(Spectro,Power profile, RTI, Coherence, Doppler)

File last commit:

r208:f0e2ebb4337f
r546:fec7b3e04037
Show More
xmlprint.py
13 lines | 368 B | text/x-python | PythonLexer
'''
Created on Septembre, 2012
@author: roj-idl71
'''
from xml.etree import ElementTree
from xml.dom import minidom
def prettify(elem):
"""Return a pretty-printed XML string for the Element.
"""
rough_string = ElementTree.tostring(elem, 'utf-8')
reparsed = minidom.parseString(rough_string)
return reparsed.toprettyxml(indent=" ")