Top

pyMez.Code.DataHandlers.Translations module

Translations.py holds stateless functions that map from one form to another. Warning!!! The functions defined in this module break from normal naming practices to better reflect their purpose. A translation from one object or file takes the form UpperCamelCase_to_UpperCamelCase This change is meant to make consistent node names for graph models found in pyMez.Code.DataHandlers.GraphModels. Normal naming rules about HTML and XML abbreviations are not followed. (XmlList not XMLList) All types that end with File are on-disk file types, composite types are denoted by ending the UpperCamelCase name with a full english version of the python class name, such as DataFrameDictionary or DataFrameList. Full translations requires the following third party software: +Inkscape +Microsoft Office +Wkhtmltopdf

Examples

>>test_JBSparameter_to_S2PV1()

Translations Example

Requirements

Help

pyMez.Code.DataHandlers

Documentation Home | API Documentation Home | Examples Home | Index

#-----------------------------------------------------------------------------
# Name:        Translations
# Purpose:     To translate from one data form to another
# Author:      Aric Sanders
# Created:     3/3/2016
# License:     MIT License
#-----------------------------------------------------------------------------
""" Translations.py holds stateless functions that map from one form to another.
Warning!!! The functions defined in this module break from normal naming practices to better
reflect their purpose. A translation from one object or file takes the form UpperCamelCase_to_UpperCamelCase
This change is meant to make consistent node names for graph models found in
pyMez.Code.DataHandlers.GraphModels. Normal naming rules about
 HTML and XML abbreviations are not followed. (XmlList not XMLList)
 All types that end with File are on-disk file types,
composite types are denoted by ending the UpperCamelCase name with a full english version of the python
class name, such as DataFrameDictionary or DataFrameList. Full translations requires the following third party
software:
    +Inkscape
    +Microsoft Office
    +Wkhtmltopdf

Examples
--------
    #!python
    >>test_JBSparameter_to_S2PV1()

 <h3><a href="../../../Examples/html/Translations_Example.html">Translations Example</a></h3>

Requirements
------------
+ [sys](https://docs.python.org/2/library/sys.html)
+ [os](https://docs.python.org/2/library/os.html?highlight=os#module-os)
+ [lxml](http://lxml.de/)
+ [types](https://docs.python.org/2/library/types.html)
+ [pyMez](https://github.com/aricsanders/pyMez)
+ [pdfkit](http://pdfkit.org/)
+ [wkhtmltopdf](http://wkhtmltopdf.org/)

Help
---------------
<a href="./index.html">`pyMez.Code.DataHandlers`</a>
<div>
<a href="../../../pyMez_Documentation.html">Documentation Home</a> |
<a href="../../index.html">API Documentation Home</a> |
<a href="../../Examples/html/Examples_Home.html">Examples Home</a> |
<a href="../../../Reference_Index.html">Index</a>
</div>
"""

#-----------------------------------------------------------------------------
# Standard Imports
import timeit
import os
import sys
import json
import subprocess
import base64
import io
import io
import re
#-----------------------------------------------------------------------------
# Third Party Imports
sys.path.append(os.path.join(os.path.dirname( __file__ ), '..','..'))
try:
    from Code.Utils.Types import *
except:
    print("The module pyMez.Code.Utils.Types was not found or had an error,"
          "please check module or put it on the python path")
    raise ImportError

try:
    from Code.DataHandlers.GeneralModels import *
except:
    print("The module pyMez.Code.DataHandlers.GeneralModels was not found or had an error,"
          "please check module or put it on the python path")
    raise ImportError
try:
    from Code.DataHandlers.XMLModels import *
except:
    print("The module pyMez.Code.DataHandlers.XMLModels was not found or had an error,"
          "please check module or put it on the python path")
    raise ImportError
try:
    from Code.DataHandlers.NISTModels import *
except:
    print("The module pyMez.Code.DataHandlers.NISTModels was not found or had an error,"
          "please check module or put it on the python path")
    raise ImportError
try:
    from Code.DataHandlers.TouchstoneModels import *
except:
    print("The module pyMez.Code.DataHandlers.TouchstoneModels was not found or had an error,"
          "please check module or put it on the python path")
    raise ImportError
try:
    from Code.DataHandlers.StatistiCALModels import *
except:
    print("The module pyMez.Code.DataHandlers.StatistiCALModels was not found or had an error,"
          "please check module or put it on the python path")
    raise ImportError

try:
    from Code.DataHandlers.HTMLModels import *
except:
    print("The module pyMez.Code.DataHandlers.HTMLModels was not found or had an error,"
          "please check module or put it on the python path")
    raise ImportError

try:
    import pandas
except:
    print("The module pandas was not found or had an error,"
          "please check module or put it on the python path")
    raise ImportError
try:
    import odo
except:
    print("The module odo was not found or had an error,"
          "please check module or put it on the python path")
    pass
    #raise ImportError
try:
    import PIL
except:
    print("The module PIL was not found or had an error,"
          "please check module or put it on the python path")
    raise ImportError
try:
    import pdfkit
    PDF_CONVERT=True
    "Constant that is set to True if the module pdfkit is available."
except:
    print("The module pdfkit was not found or had an error,"
          "please check module or put it on the python path use pip install pdfkit and also install "
          "wkhtmltopdf")
    #raise ImportError
    PDF_CONVERT=False
    pass
try:
    from scipy import misc
except:
    print("The module scipy.misc was not found or had an error,"
          "please check module or put it on the python path")
    raise ImportError
try:
    from scipy.io import savemat,loadmat
except:
    print("The module scipy.io was not found or had an error,"
          "please check module or put it on the python path")
    raise ImportError
try:
    from win32com import client
    WINDOWS_COM=True
    "Constant that is set to True if the module win32com is available."
except:
    print("The module win32com was not found or had an error,"
          "please check module or put it on the python path, if OS is not Windows ignore this warning")
    WINDOWS_COM=False
try:
    import h5py
except:
    print("Could not import h5py")
    #raise ImportError
#-----------------------------------------------------------------------------
# Module Constants
INKSCAPE_PATH=r'C:\Program Files (x86)\Inkscape\inkscape.exe'
"Path to the Inkscape executable."
WKHTML_PATH=r'C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe'
"Path to the wkhtmltopdf executable."


#-----------------------------------------------------------------------------
# Module Functions

def Model_to_File(model,file_path=None):
    """Uses the save method of a model to create file, default path is save default for the model"""
    if file_path:
        old_path=model.path
        model.path=file_path
        out=model.save()
        model.path=old_path
    else:
        out=model.save()
    return out

def File_to_Model(file_path,model_class_name):
    """Uses a class to open the File and returns an object of type model_class_name"""
    return globals()[model_class_name](file_path)

def String_to_StringList(string):
    """Converts a string to a list of strings using splitlines"""
    string_list=string.splitlines()
    return string_list

def StringList_to_String(string_list):
    """Collapses a list of strings to a single list"""
    out_string=string_list_collapse(string_list)
    return out_string

def File_to_String(file_name):
    """Opens a file and returns the contents as a string"""
    in_file=open(file_name,'r')
    out_string=in_file.read()
    in_file.close()
    return out_string

def String_to_File(string,file_name="test"):
    """Saves a string as a file"""
    out_file=open(file_name,'w')
    out_file.write(string)
    out_file.close()
    return file_name
def StringList_to_File(string_list,file_name="test"):
    """Saves a string list as a file"""
    out_file=open(file_name,"w")
    for line in string_list:
        out_file.write(line)
    out_file.close()
    return file_name
def String_to_StringIo(string):
    """Converts a string to a StringIO.StringIO object"""
    return io.StringIO(string)
def StringIo_to_String(string_io_object):
    """Converts a StringIO.StringIO object to a string """
    return string_io_object.getvalue()
def String_to_CStringIo(string):
    """Converts a string to a StringIO.StringIO object.
    Inverse of CStringIo_to_StringIo"""
    return io.StringIO(string)
def CStringIo_to_String(string_io_object):
    """Converts a StringIO.StringIO object to a string.
     Inverse of String_to_CStringIo"""
    return string_io_object.getvalue()

def String_to_DownloadLink(string,**options):
    """Converts a string to a download link options are suggested_name, mime_type and text for the link"""
    defaults={"suggested_name":"test.txt",
              "mime_type":"text/plain",
              "text":"Download File"}
    link_options={}
    for key,value in defaults.items():
        link_options[key]=value
    for key,value in options.items():
        link_options[key]=value
    if not isinstance(string,str):
        string=str(string)
    try:
        string=string.encode()
        base_64 = base64.b64encode(string).decode()
    except:
        base_64 = base64.b64encode(string)
    out_text="<a href='data:{0};base64,{1}' download = '{2}'>{3}</a>".format(link_options["mime_type"],
                                                                                    base_64,
                                                                                    link_options["suggested_name"],
                                                                                    link_options["text"])
    return out_text


def DownloadLink_to_String(download_link):
    """Given a download link of the form <a href='data:mime_type;base64,encoded_file' download='file_name'>text</a>
    returns a unencoded text string"""
    encoded_pattern = "base64,(?P<encoded_text>[\w|\W]+)\'"

    if re.search(encoded_pattern, download_link):
        encoded_data = re.search(encoded_pattern, download_link).groupdict()["encoded_text"]
        try:
            decoded_data = base64.b64decode(bytes(encoded_data))
        except:
            decoded_data = base64.b64decode(encoded_data)
        return decoded_data
    else:
        print("Could Not Decode Link")
        return None

def String_to_SVGAnchorLinkElement(string,**options):
    """Converts a string to a DataURI"""
    defaults={"suggested_name":"test.txt",
              "mime_type":"text/plain"}
    link_options={}
    for key,value in defaults.items():
        link_options[key]=value
    for key,value in options.items():
        link_options[key]=value
    if not isinstance(string,str):
        string=str(string)
    try:
        base_64=base64.b64encode(string.encode()).decode()
    except:
        base_64 = base64.b64encode(string.encode())
    data_uri="data:{0};base64,{1}".format(link_options["mime_type"],base_64)
    anchor_dictionary={"tag":"a","xlink:href":data_uri,"xlink:download":link_options["suggested_name"]}
    out_element=make_html_element(**anchor_dictionary)
    return out_element

def AsciiDataTable_to_XmlDataTable(ascii_data_table,**options):
    """Takes an AsciiDataTable and returns a XmlDataTable with **options"""
    defaults={"specific_descriptor":ascii_data_table.options["specific_descriptor"],
                     "general_descriptor":ascii_data_table.options["general_descriptor"],
                      "directory":ascii_data_table.options["directory"],
              "style_sheet":"./DEFAULT_STYLE.xsl"
                     }
    XML_options={}
    for key,value in defaults.items():
        XML_options[key]=value
    for key,value in options.items():
        XML_options[key]=value
    # Todo: Clean this up so the AsciiDataTable.column_names always goes to an XML attribute that is properly named
    for index,column_name in enumerate(ascii_data_table.column_names[:]):
        ascii_data_table.column_names[index]=column_name.replace("*","_times_").replace("/","_div_").replace("(","_").replace(")","_").replace("-","_")

    data_description={}
    if ascii_data_table.options["column_descriptions"] is not None:
        if isinstance(ascii_data_table.options["column_descriptions"], DictionaryType):
            for key,value in ascii_data_table.options["column_descriptions"].items():
                data_description[key]=value
        elif isinstance(ascii_data_table.options["column_descriptions"], ListType):
            for index,value in enumerate(ascii_data_table.options["column_descriptions"]):
                key=ascii_data_table.column_names[index]
                data_description[key]=value

    if ascii_data_table.metadata is not None:
        for key,value in ascii_data_table.metadata.items():
            data_description[key]=value
    else:
        if ascii_data_table.header is not None:
            for index,line in enumerate(ascii_data_table.header):
                key="Header_{0:0>3}".format(index)
                data_description[key]=line
        if ascii_data_table.footer is not None:
            for index,line in enumerate(ascii_data_table.footer):
                key="Footer_{0:0>3}".format(index)
                data_description[key]=line
    data_dictionary={"Data_Description":data_description,"Data":ascii_data_table.get_data_dictionary_list()}
    XML_options["data_dictionary"]=data_dictionary
    new_xml_data_table=DataTable(None,**XML_options)
    return new_xml_data_table

def XmlBase_to_XsltResultString(xml_model,**options):
    """Uses the xml_model's to_HTML method to return a HTML string"""
    defaults={"style_sheet":os.path.join(TESTS_DIRECTORY,XSLT_REPOSITORY,"DEFAULT_STYLE.xsl")}
    transform_options={}
    for key,value in defaults.items():
        transform_options[key]=value
    for key,value in options.items():
        transform_options[key]=value
    return xml_model.to_HTML(**transform_options)

def XmlBase_to_XsltResultFile(xml_model,**options):
    """Uses the xml_model's save_HTML method to return a HTML file"""
    defaults={"style_sheet":os.path.join(TESTS_DIRECTORY,XSLT_REPOSITORY,"DEFAULT_STYLE.xsl"),
              "file_path":"test.xml"}
    transform_options={}
    for key,value in defaults.items():
        transform_options[key]=value
    for key,value in options.items():
        transform_options[key]=value
    xml_model.save_HTML(XSLT=transform_options["style_sheet"],file_path=transform_options["file_path"])
    return transform_options["file_path"]

def XmlLog_to_AsciiDataTable(xml_log):
    """Transforms the XMLLog class to the AsciiDataTable class"""
    table=xml_log.get_table()
    column_names=["Index","Date","Entry"]
    column_types=["int","string","string"]
    data=[[row[column_name] for column_name in column_names] for row in table]
    ascii=AsciiDataTable(column_names=column_names,data=data,column_types=column_types)
    return ascii

def AsciiDataTable_to_DataFrame(ascii_data_table):
    """Converts an AsciiDataTable to a pandas.DataFrame
    discarding any header or footer information"""
    data_frame=pandas.DataFrame(data=ascii_data_table.data,columns=ascii_data_table.column_names)
    return data_frame

def AsciiDataTable_to_DataFrameDictionary(AsciiDataTable):
    """Converts an AsciiDataTable to a dictionary of pandas.DataFrame s"""
    output_dict={}
    for element in AsciiDataTable.elements:
        #print("{0} is {1}".format('element',element))
        if AsciiDataTable.__dict__[element]:
            if re.search('header',element,re.IGNORECASE):
                header_table=pandas.DataFrame(AsciiDataTable.header,columns=["Header_Line_Content"])
                output_dict["Header"]=header_table
            # needs to be before data search
            elif re.search('meta',element,re.IGNORECASE):
                #print("{0} is {1}".format('element',element))
                metadata_table=pandas.DataFrame([[key,value] for key,value in AsciiDataTable.metadata.items()],
                                columns=["Property","Value"])
                output_dict["Metadata"]=metadata_table
            elif re.search('data|^meta',element,re.IGNORECASE):

                data_table=pandas.DataFrame(AsciiDataTable.data,columns=AsciiDataTable.column_names)
                output_dict["Data"]=data_table

            elif re.search('footer',element,re.IGNORECASE):
                footer_table=pandas.DataFrame(AsciiDataTable.footer,columns=["Footer_Line_Content"])
                output_dict["Footer"]=footer_table

            elif re.search('comment',element,re.IGNORECASE):
                comments=AsciiDataTable.__dict__[element]
                inline_comments=pandas.DataFrame(comments,columns=["Comment","Line","Location"])
                output_dict["Comments"]=inline_comments
    return output_dict

def AsciiDataTable_to_NumpyArray(data_table,exclude_columns=None):
    """Converts a table's data into a 1-D np.array"""
    column_names=data_table.column_names[:]
    if exclude_columns:
        for column_name in column_names:
            if column_name in exclude_columns:
                column_names.remove(column_name)
    data_list=[]
    for column_name in column_names:
        data_list=data_list+data_table[column_name]
    numpy_array=np.array(data_list)
    return numpy_array

def DataFrameDictionary_to_ExcelFile(DataFrame_dict,excel_file_name="Test.xlsx"):
    """Converts a dictionary of pandas DataFrames to a single excel file with sheet names
    determined by keys"""
    # sort the keys so that they will display in the same order
    writer = pandas.ExcelWriter(excel_file_name)
    keys=sorted(DataFrame_dict.keys())
    for key in keys:
        #print key
        DataFrame_dict[key].to_excel(writer,sheet_name=key,index=False)
    writer.close()
    return excel_file_name


def DataFrameDictionary_to_AsciiDataTable(DataFrame_dict, **options):
    """Given a dictionary of pandas DataFrames returns an AsciiDataTable"""
    defaults = {"comment_begin": "!", "comment_end": "\n",
                "column_names_begin_token": "!", "column_names_end_token": "\n",
                "data_delimiter": "  ", "data_table_element_separator": None}
    # defaults={}
    table_options = {}
    for key, value in defaults.items():
        table_options[key] = value
    for key, value in options.items():
        table_options[key] = value
    keys = list(DataFrame_dict.keys())
    for key in keys:
        table_key = key
        if re.search("comments", key, re.IGNORECASE):
            table_key = "inline_comments"
            table_options[table_key] = DataFrame_dict[key].as_matrix().tolist()

        elif key in ["data", "Data"]:
            table_options["column_names"] = DataFrame_dict[key].columns.tolist()
            table_options["column_types"] = [str(x) for x in DataFrame_dict[key].dtypes.tolist()]
            table_options["data"] = DataFrame_dict[key].as_matrix().tolist()

        elif re.search("footer", key, re.IGNORECASE):
            list_of_lists = DataFrame_dict[key].as_matrix().tolist()
            list_of_strings = [str(row[0]) for row in list_of_lists]
            table_options["footer"] = list_of_strings

        elif re.search("header", key, re.IGNORECASE):
            table_options["treat_header_as_comment"] = True
            list_of_lists = DataFrame_dict[key].as_matrix().tolist()
            list_of_strings = [str(row[0]) for row in list_of_lists]
            # print("{0} is {1}".format("list_of_lists",list_of_lists))
            table_options["header"] = list_of_strings

        elif re.search("meta", key, re.IGNORECASE):
            list_of_lists = DataFrame_dict[key].as_matrix().tolist()
            dictionary = {str(row[0]): str(row[1]) for row in list_of_lists}
            table_options["metadata"] = dictionary

    new_table = AsciiDataTable(None, **table_options)
    return new_table


def ExcelFile_to_DataFrameDictionary(excel_file_name):
    """Reads an excel file into a dictionary of data frames"""
    data_frame_dictionary = pandas.read_excel(excel_file_name, sheetname=None)
    return data_frame_dictionary


def DataFrameDictionary_to_HdfFile(DataFrame_dict, hdf_file_name="Test.hd5"):
    """Transforms a dictionary of pandas.DataFrames to a single HD5 file with groups determined by the keys"""
    keys = sorted(DataFrame_dict.keys())
    for key in keys:
        DataFrame_dict[key].to_hdf(hdf_file_name, key)
    print(("{0} is {1}".format('key', key)))
    return hdf_file_name


def HdfFile_to_DataFrameDictionary(hdf_file_name):
    """Creates a dictionary of pandas.DataFrames given a hd5 file name, does this require the table names?
    """
    hdf = h5py.File(hdf_file_name)
    keys = list(hdf.keys())
    pandas_dictionary = {key: pandas.read_hdf(hdf_file_name, key) for key in keys}
    return pandas_dictionary


def AsciiDataTable_to_CsvFile(ascii_data_table, file_name="test.csv", schema_file_name="schema_csv"):
    """Converts an AsciiDataTable into an csv file by setting options and saving"""
    original_options = ascii_data_table.options.copy()
    ascii_data_table.options["column_names_begin_token"] = ""
    ascii_data_table.options["column_names_end_token"] = "\n"
    ascii_data_table.options["data_table_element_separator"] = None
    ascii_data_table.options["data_begin_token"] = None
    ascii_data_table.options["data_end_token"] = None
    ascii_data_table.options["data_delimiter"] = ","
    ascii_data_table.options["column_names_delimiter"] = ","
    if ascii_data_table.header is not None:
        ascii_data_table.options["comment_begin"] = "#"
        ascii_data_table.options["comment_end"] = "\n"
        ascii_data_table.options["treat_header_as_comment"] = True
    if ascii_data_table.footer is not None:
        ascii_data_table.options["comment_begin"] = "#"
        ascii_data_table.options["comment_end"] = "\n"
        ascii_data_table.options["treat_footer_as_comment"] = True
    # ascii_data_table.update_model()
    ascii_data_table.save_schema(schema_file_name)
    ascii_data_table.save(file_name)
    ascii_data_table.options = original_options
    return [file_name, schema_file_name]


def AsciiDataTable_to_HpFile(ascii_data_table, file_name="test.txt", schema_file_name="schema_hp"):
    """Converts an AsciiDataTable into an csv file by setting options and saving"""
    original_options = ascii_data_table.options.copy()
    ascii_data_table.options["column_names_begin_token"] = "!"
    ascii_data_table.options["column_names_end_token"] = "\n"
    ascii_data_table.options["data_table_element_separator"] = None
    ascii_data_table.options["data_begin_token"] = None
    ascii_data_table.options["data_end_token"] = None
    ascii_data_table.options["data_delimiter"] = "  "
    ascii_data_table.options["column_names_delimiter"] = "  "
    if ascii_data_table.header is not None:
        ascii_data_table.options["comment_begin"] = "!"
        ascii_data_table.options["comment_end"] = "\n"
        ascii_data_table.options["treat_header_as_comment"] = True
    if ascii_data_table.footer is not None:
        ascii_data_table.options["comment_begin"] = "!"
        ascii_data_table.options["comment_end"] = "\n"
        # ascii_data_table.options["treat_header_as_comment"]=True
        ascii_data_table.options["treat_footer_as_comment"] = True
    # ascii_data_table.update_model()
    ascii_data_table.save_schema(schema_file_name)
    ascii_data_table.save(file_name)
    ascii_data_table.options = original_options
    return [file_name, schema_file_name]


def File_to_AsciiDataTable(paths):
    [file_name, schema] = paths
    options = read_schema(schema)
    table = AsciiDataTable(file_name, **options)
    print(table)
    return table


def AsciiDataTable_to_File(ascii_data_table, file_name="Test.txt", schema_file_name="schema"):
    paths = [file_name, schema_file_name]
    ascii_data_table.save(file_name)
    ascii_data_table.save_schema(schema_file_name)
    return paths


# def ExcelFile_to_DataFrameDictionary(excel_file_name):
#     """Reads an excel file into a dictionary of data frames"""
#     data_frame_dictionary=pandas.read_excel(excel_file_name,sheetname=None)
#     return data_frame_dictionary

def DataFrame_to_AsciiDataTable(pandas_data_frame,**options):
    """Converts a pandas.DataFrame to an AsciiDataTable"""
    # Set up defaults and pass options
    defaults={}
    conversion_options={}
    for key,value in defaults.items():
        conversion_options[key]=value
    for key,value in options.items():
        conversion_options[key]=value

    conversion_options["column_names"]=pandas_data_frame.columns.tolist()[:]
    conversion_options["data"]=pandas_data_frame.as_matrix().tolist()[:]
    conversion_options["column_types"]=[str(x) for x in pandas_data_frame.dtypes.tolist()[:]]

    new_table=AsciiDataTable(None,**conversion_options)
    return new_table

def AsciiDataTable_to_ExcelFile(ascii_data_table,file_path=None):
    """Converts an AsciiDataTable to an excel spreadsheet using pandas"""
    if ascii_data_table.header:
        data_frame=pandas.DataFrame(data=ascii_data_table.data,columns=ascii_data_table.column_names,index=False)

# todo: Fix naming convention here
def S2PV1_to_XmlDataTable(s2p,**options):
    """Transforms a s2p's sparameters to a XmlDataTable. Converts the format to #GHz DB first"""
    defaults={"specific_descriptor":s2p.options["specific_descriptor"],
                      "general_descriptor":s2p.options["general_descriptor"],
                      "directory":s2p.options["directory"],
                      "style_sheet":"../XSL/S2P_DB_STYLE.xsl",
                      "format":"DB"}
    XML_options={}
    for key,value in defaults.items():
        XML_options[key]=value
    for key,value in options.items():
        XML_options[key]=value
    data_description={}
    if s2p.options["column_descriptions"] is not None:
        for key,value in s2p.options["column_descriptions"].items():
            data_description[key]=value
    if s2p.metadata is not None:
        for key,value in s2p.metadata.items():
            data_description[key]=value
    else:
        if s2p.comments is not None:
            for index,line in enumerate(s2p.comments):
                key="Comments_{0:0>3}".format(index)
                data_description[key]=line[0]
    s2p.change_data_format(new_format=XML_options["format"])
    s2p.change_frequency_units('GHz')
    data_dictionary={"Data_Description":data_description,"Data":s2p.get_data_dictionary_list()}
    XML_options["data_dictionary"]=data_dictionary
    new_xml_data_table=DataTable(None,**XML_options)
    return new_xml_data_table

def SNP_to_XmlDataTable(snp,**options):
    """Transforms a snp's sparameters to a XmlDataTable. Converts the format to #GHz DB first"""
    defaults={"specific_descriptor":snp.options["specific_descriptor"],
                     "general_descriptor":snp.options["general_descriptor"],
                      "directory":snp.options["directory"],
              "style_sheet":"../XSL/DEFAULT_MEASUREMENT_STYLE.xsl"
                     }
    XML_options={}
    for key,value in defaults.items():
        XML_options[key]=value
    for key,value in options.items():
        XML_options[key]=value
    data_description={}
    if snp.options["column_descriptions"] is not None:
        for key,value in snp.options["column_descriptions"].items():
            data_description[key]=value
    if snp.metadata is not None:
        for key,value in snp.metadata.items():
            data_description[key]=value
    else:
        if snp.comments is not None:
            for index,line in enumerate(snp.comments):
                key="Comments_{0:0>3}".format(index)
                data_description[key]=line[0]
    snp.change_data_format(new_format='RI')
    snp.change_frequency_units('GHz')
    data_dictionary={"Data_Description":data_description,"Data":snp.get_data_dictionary_list()}
    XML_options["data_dictionary"]=data_dictionary
    new_xml_data_table=DataTable(None,**XML_options)
    return new_xml_data_table

def S1PV1_to_XmlDataTable(s1p,**options):
    """Transforms a s1p's sparameters to a XmlDataTable. Converts the format to RI first"""
    defaults={"specific_descriptor":s1p.options["specific_descriptor"],
                     "general_descriptor":s1p.options["general_descriptor"],
                      "directory":s1p.options["directory"],
              "style_sheet":"../XSL/S1P_STYLE.xsl"
                     }
    XML_options={}
    for key,value in defaults.items():
        XML_options[key]=value
    for key,value in options.items():
        XML_options[key]=value
    data_description={}
    if s1p.options["column_descriptions"] is not None:
        for key,value in s1p.options["column_descriptions"].items():
            data_description[key]=value
    if s1p.metadata is not None:
        for key,value in s1p.metadata.items():
            data_description[key]=value
    else:
        if s1p.comments is not None:
            for index,line in enumerate(s1p.comments):
                key="Comments_{0:0>3}".format(index)
                data_description[key]=line[0]
    s1p.change_data_format(new_format='RI')
    s1p.change_frequency_units('GHz')
    data_dictionary={"Data_Description":data_description,"Data":s1p.get_data_dictionary_list()}
    XML_options["data_dictionary"]=data_dictionary
    new_xml_data_table=DataTable(None,**XML_options)
    return new_xml_data_table

def TwoPortCalrepModel_to_XmlDataTable(two_port_calrep_table,**options):
    """Converts the 2-port calrep model to xml"""
    table=two_port_calrep_table.joined_table
    defaults={"specific_descriptor":table.options["specific_descriptor"],
                     "general_descriptor":table.options["general_descriptor"],
                      "directory":table.options["directory"],
              "style_sheet":"../XSL/TWO_PORT_CALREP_STYLE.xsl"
                     }
    XML_options={}
    for key,value in defaults.items():
        XML_options[key]=value
    for key,value in options.items():
        XML_options[key]=value
    new_xml=AsciiDataTable_to_XmlDataTable(table,**XML_options)
    return new_xml

def Snp_to_AsciiDataTable(snp_model):
    """Converts snp files to AsciiDataTable"""
    options=snp_model.options
    options['data']=snp_model.data
    options['column_names']=snp_model.column_names
    options['column_types']=['float' for i in snp_model.column_names]
    options["extension"]="txt"
    new_table=AsciiDataTable(None,**options)
    return new_table

def TwoPortCalrepModel_to_S2PV1(two_port_calrep_table,**options):
    """Transforms a TwoPortRawModel  to S2PV1"""
    table=two_port_calrep_table
    path=table.path.split('.')[0]+".s2p"
    data=[[row["Frequency"],row["magS11"],row["argS11"],row["magS21"],row["argS21"],row["magS21"],
           row["argS21"],row["magS22"],row["argS22"]] for row in table.joined_table.get_data_dictionary_list()]
    comments=[[line,index,0] for index,line in enumerate(table.joined_table.header[:])]
    s2p_options={"option_line":"# GHz S MA R 50","data":data,
                 "comments":comments,"path":path,"option_line_line":len(table.joined_table.header),
                 "sparameter_begin_line":len(table.joined_table.header)+1,"column_names":S2P_MA_COLUMN_NAMES}
    s2p_file=S2PV1(None,**s2p_options)
    return s2p_file

def OnePortCalrep_to_XmlDataTable(one_port_calrep_table,**options):
    """Converts the 1-port calrep model to xml"""
    table=one_port_calrep_table
    defaults={"specific_descriptor":table.options["specific_descriptor"],
                     "general_descriptor":table.options["general_descriptor"],
                      "directory":table.options["directory"],
              "style_sheet":"../XSL/ONE_PORT_CALREP_STYLE.xsl"
                     }
    XML_options={}
    for key,value in defaults.items():
        XML_options[key]=value
    for key,value in options.items():
        XML_options[key]=value
    new_xml=AsciiDataTable_to_XmlDataTable(table,**XML_options)
    return new_xml

def TwoPortRawModel_to_XmlDataTable(two_port_raw_table,**options):
    """Converts the 2-port raw model used by s-parameters to xml"""
    table=two_port_raw_table
    defaults={"specific_descriptor":table.options["specific_descriptor"],
                     "general_descriptor":table.options["general_descriptor"],
                      "directory":table.options["directory"],
              "style_sheet":"../XSL/TWO_PORT_RAW_STYLE.xsl"
                     }
    XML_options={}
    for key,value in defaults.items():
        XML_options[key]=value
    for key,value in options.items():
        XML_options[key]=value
    new_xml=AsciiDataTable_to_XmlDataTable(table,**XML_options)
    return new_xml

def TwoPortRawModel_to_S2PV1(two_port_raw_table,**options):
    """Transforms a TwoPortRawModel  to S2PV1"""
    table=two_port_raw_table
    path=table.path.split('.')[0]+".s2p"
    data=[[row[0],row[3],row[4],row[5],row[6],row[5],row[6],row[7],row[8]] for row in table.data]
    comments=[[line,index,0] for index,line in enumerate(table.header[:])]
    s2p_options={"option_line":"# GHz S MA R 50","data":data,
                 "comments":comments,"path":path,"option_line_line":len(table.header),
                 "sparameter_begin_line":len(table.header)+1,"column_names":S2P_MA_COLUMN_NAMES}
    s2p_file=S2PV1(None,**s2p_options)
    return s2p_file

def Snp_to_AsciiDataTable(snp_model):
    """Converts snp files to AsciiDataTable"""
    options=snp_model.options
    options['data']=snp_model.data
    options['column_names']=snp_model.column_names
    options['column_types']=['float' for i in snp_model.column_names]
    options["extension"]="txt"
    new_table=AsciiDataTable(None,**options)
    return new_table

def JBSparameter_to_S2PV1(jb_model,**options):
    """Transforms a JBSparameter file to S2PV1 """
    table=jb_model
    path=table.path.split('.')[0]+".s2p"
    old_prefix=table.get_frequency_units().replace('Hz','')
    table.change_unit_prefix(column_selector=0,old_prefix=old_prefix,new_prefix='G',unit='Hz')
    data=table.data[:]
    comments=[[line,index,0] for index,line in enumerate(table.header[:])]
    s2p_options={"option_line":"# GHz S RI R 50","data":data,
                 "comments":comments,"path":path,"option_line_line":len(table.header),
                 "sparameter_begin_line":len(table.header)+1,"column_names":S2P_RI_COLUMN_NAMES}
    s2p_file=S2PV1(None,**s2p_options)
    return s2p_file

def PowerRawModel_to_XmlDataTable(power_raw_table,**options):
    """Converts the 2-port raw model used by s-parameters to xml"""
    table=power_raw_table
    defaults={"specific_descriptor":table.options["specific_descriptor"],
                     "general_descriptor":table.options["general_descriptor"],
                      "directory":table.options["directory"],
              "style_sheet":"../XSL/POWER_RAW_STYLE.xsl"
                     }
    XML_options={}
    for key,value in defaults.items():
        XML_options[key]=value
    for key,value in options.items():
        XML_options[key]=value
    new_xml=AsciiDataTable_to_XmlDataTable(table,**XML_options)
    return new_xml
# Table Translations
def DataFrame_to_HdfFile(pandas_data_frame,hdf_file_name="test.hdf"):
    """Saves a DataFrame as an HDF File, returns the file name"""
    pandas_data_frame.to_hdf(hdf_file_name,"table")
    return hdf_file_name

def HdfFile_to_DataFrame(hdf_file_name):
    """Opens a HDF with a Group named table and creates a pandas.DataFrame"""
    pandas_data_frame=pandas.read_hdf(hdf_file_name,"table")
    return pandas_data_frame

def XmlDataTable_to_AsciiDataTable(xml_table):
    """Turns A XMLData to AsciiDataTable table without preserving Metadata"""
    table=AsciiDataTable(None,
                         column_names=xml_table.attribute_names,
                         data=xml_table.data)
    return table

# def AsciiDataTable_to_XmlDataTable_2(data_table):
#     xml=AsciiDataTable_to_XmlDataTable(data_table)
#     return xml

def DataFrame_to_ExcelFile(pandas_data_frame,file_name="Test.xlsx"):
    "Converts a pandas.DataFrame to an excel file using to_excel with index=False"
    pandas_data_frame.to_excel(file_name,index=False)
    return file_name

def ExcelFile_to_DataFrame(excel_file_name):
    "Converts an excel file to a pandas.DataFrame"
    df=pandas.read_excel(excel_file_name)
    return df

def DataFrame_to_HtmlString(pandas_data_frame):
    """Converts a pandas.DataFrame to a html table using index=False
    inverse of HtmlString_to_DataFrame"""
    html=pandas_data_frame.to_html(index=False)
    return html

def HtmlString_to_DataFrame(html_string):
    "Converts a Html String to a pandas.DataFrame, inverse of DataFrame_to_HtmlString  "
    list_df=pandas.read_html(html_string)
    return list_df[0]

def DataFrame_to_JsonFile(pandas_data_frame,file_name="test.json"):
    """Converts a pandas.DataFrame to a JsonFile using orient='records'
    inverse of JsonFile_to_DataFrame"""
    json=pandas_data_frame.to_json(file_name,orient='records')
    return file_name

def JsonFile_to_DataFrame(json_file_name):
    """Converts a JsonFile to a pandas.DataFrame using orient='records'
    inverse of DataFrame_to_JsonFile"""
    data_frame=pandas.read_json(json_file_name,orient='records')
    return data_frame

def DataFrame_to_JsonString(pandas_data_frame):
    """Converts a pandas.DataFrame to a Json string in the form {column_name:value,...}.
    Inverse of JsonString_to_DataFrame."""
    json=pandas_data_frame.to_json(orient='records')
    return json

def JsonString_to_DataFrame(json_string):
    """Converts a JsonString to a pandas.DataFrame in the form with orient = records.
    Inverse of DataFrame_to_JsonString."""
    data_frame=pandas.read_json(json_string,orient='records')
    return data_frame

def DataFrame_to_CsvFile(pandas_data_frame,file_name="test.csv"):
    """Converts a pandas.DataFrame to a Csv file with default file_name test.csv.
    Inverse of CsvFile_to_DataFrame."""
    csv=pandas_data_frame.to_csv(file_name,index=False)
    return file_name

def CsvFile_to_DataFrame(csv_file_name):
    """Converts a csv file to a panads.DataFrame.
    Inverse of DataFrame_to_CsvFile"""
    data_frame=pandas.read_csv(csv_file_name)
    return data_frame

def AsciiTable_to_MatFile(ascii_data_table,file_name="test.mat"):
    """Transforms an ascii data table without a header or footer to a matlab form"""
    matlab_data_dictionary={"data":ascii_data_table.data,"column_names":ascii_data_table.column_names}
    savemat(file_name,matlab_data_dictionary)
    return file_name

def MatFile_to_AsciiTable(matlab_file_name):
    """Converts a .mat file that has the variables column_names and table to an AsciiDataTable
    with no header or footer."""
    matlab_data_dictionary=loadmat(matlab_file_name)
    ascii_data_table=AsciiDataTable(None,
                                    column_names=[x.rstrip().lstrip() for x in matlab_data_dictionary["column_names"].tolist()],
                                     data=matlab_data_dictionary["data"].tolist())
    return ascii_data_table

def XmlDataTable_to_XmlFile(xml_data_table,file_name="test.xml"):
    """Converts the XMLModel DataTable to a file on disk using the save method"""
    xml_data_table.save(file_name)
    return file_name

def XmlFile_to_XmlDataTable(xml_file_name):
    """Opens a saved file in the XMLModels format DataTable and returns an DataTable object"""
    xml_data_table=DataTable(xml_file_name)
    return xml_data_table

def HtmlString_to_HtmlFile(html_string,file_name="test.html"):
    """Saves an html string as a file with the default name """
    out_file=open(file_name,'w')
    out_file.write(html_string)
    out_file.close()
    return file_name
# this is broken, something does not work properly
def HtmlFile_to_DataFrame(html_file_name):
    in_file=open(html_file_name,'r')
    pandas_data_frame=pandas.read_html(in_file)
    return pandas_data_frame

def HtmlFile_to_HtmlString(html_file_name):
    in_file=open(html_file_name,'r')
    html_string=in_file.read()
    return html_string

def DataFrame_to_HtmlFile(pandas_data_frame,file_name="test.html"):
    # need to supress all the styles and what not
    out_file=open(file_name,'w')
    pandas_data_frame.to_html(out_file,index=False)
    return file_name

def AsciiTable_to_HtmlString(ascii_table):
    """Converts an AsciiDataTable with no header or footer to a html table."""
    # it would be best if this resulted in identical html, but I think it might be close enough
    ascii_table_original_options=ascii_table.options.copy()
    ascii_table.options["data_begin_token"]="<tbody>"
    ascii_table.options["data_end_token"]="</tbody></table>"
    ascii_table.options["data_delimiter"]="</td><td>"
    ascii_table.options["row_begin_token"]="<tr><td>"
    ascii_table.options["row_end_token"]="</td></tr>"
    ascii_table.options["column_names_begin_token"]="<table><thead><tr><th>"
    ascii_table.options["column_names_end_token"]="</th></tr></thead>"
    ascii_table.options["column_names_delimiter"]="</th><th>"
    out_string=str(ascii_table)
    ascii_table.options=ascii_table_original_options
    return out_string

if PDF_CONVERT:
    def HtmlFile_to_PdfFile(html_file_name,pdf_file_name="test.pdf"):
        """Takes an html page and converts it to pdf using wkhtmltopdf and pdfkit"""
        config = pdfkit.configuration(wkhtmltopdf=WKHTML_PATH)
        pdfkit.from_file(html_file_name,pdf_file_name,configuration=config)
        return pdf_file_name

    def HtmlString_to_PdfFile(html_string,pdf_file_name="test.pdf"):
        """Takes an html string and converts it to pdf using wkhtmltopdf and pdfkit"""
        config = pdfkit.configuration(wkhtmltopdf=WKHTML_PATH)
        pdfkit.from_string(html_string,pdf_file_name,configuration=config)
        return pdf_file_name

def JsonFile_to_XmlDataTable(json_file_name):
    data_dictionary_list=json.load(open(json_file_name,'r'))
    xml=DataTable(None,data_dictionary={"data":data_dictionary_list})
    return xml

def CsvFile_to_AsciiDataTable(csv_file_name):
    options={"column_names_begin_line":0,"column_names_end_line":1,
             "data_begin_line":1,"data_end_line":-1,"data_delimiter":",","column_names_delimiter":","}
    table=AsciiDataTable(csv_file_name,**options)
    return table

# Image Translations
def PngFile_to_JpgFile(png_file_name):
    "Convets png file t a jpg using PIL "
    [root_name,extension]=png_file_name.split(".")
    jpeg_file_name=root_name+".jpg"
    PIL.Image.open(png_file_name).save(jpeg_file_name)
    return jpeg_file_name

def File_to_Image(file_path):
    """Converts an image file to the Image class of PIL
    Inverse of Image_to_File"""
    new_image=PIL.Image.open(file_path)
    if re.search(".gif",file_path,re.IGNORECASE):
        new_image=new_image.convert("RGB")
    return new_image

def Image_to_File(pil_image,file_path=None):
    """Converts the Image class of PIL to a file
    Inverse of File_to_Image"""
    if file_path is None:
        file_path=pil_image.filename
    pil_image.save(file_path)
    return file_path

def Image_to_FileType(pil_image,file_path=None,extension="png"):
    """More specific conversion of the Image class of PIL to a file, sets the output to RGB if possible
    returns the new file name"""
    if file_path is None:
        file_path=pil_image.filename
    root_name=file_path.split(".")[0]
    new_file_name=root_name+"."+extension.replace(".","")
    if re.search('jp|bmp',extension,re.IGNORECASE):
        pil_image.convert('RGB')
    print(("{0} is {1}".format("pil_image.mode",pil_image.mode)))
    pil_image.save(new_file_name)
    return new_file_name

def Image_to_ThumbnailFile(pil_image,file_path="thumbnail.jpg"):
    """Converts an Image to a 64x64 pixel jpg thumbnail file. Returns the new file name"""
    size = (64, 64)
    temp_image=pil_image.copy()
    temp_image.thumbnail(size)
    temp_image.save(file_path)
    return file_path

def Image_to_FaviconFile(pil_image,file_path="favicon.png"):
    """Converts an Image to a 32x32 pixel png thumbnail file. Returns the new file name"""
    size = (32, 32)
    temp_image=pil_image.copy()
    temp_image.thumbnail(size)
    temp_image.save(file_path)
    return file_path

def PngFile_to_Base64(file_name):
    """Converts a png file to a base 64 encoded string"""
    in_file=open(file_name, "rb")
    encoded=base64.b64encode(in_file.read()).decode()
    return encoded

def Base64_to_PngFile(base64_encoded_png,file_name="test.png"):
    out_file=open(file_name, "wb")
    decoded=base64.b64decode(base64_encoded_png)
    out_file.write(decoded)
    out_file.close()
    return file_name


def PngFile_to_Ndarray(file_name):
    nd_array=misc.imread(file_name)
    return nd_array

def Ndarray_to_PngFile(nd_array,file_name="test.png"):
    misc.imsave(file_name,nd_array)
    return file_name

# change this to base64png
def Base64Png_to_EmbeddedHtmlString(base64_encoded_png):
    html_string="<img src='data:image/png;base64,{0}' />".format(base64_encoded_png)
    return html_string

def EmbeddedHtmlString_to_Base64Png(html_string):
    pattern=re.compile("<img src='data:image/png;base64,(?P<data>.+)' />")
    match=re.search(pattern,html_string)
    if match:
        encoded=match.groupdict()["data"]
    else:
        raise
    return encoded

def Ndarray_to_Matplotlib(nd_array):
    figure=plt.imshow(nd_array)
    figure.axes.get_xaxis().set_visible(False)
    figure.axes.get_yaxis().set_visible(False)
    plt.show()

def Ndarray_to_MatplotlibFigure(nd_array):
    plt.close()
    figure=plt.figure("Image",frameon=False)
    plt.figimage(nd_array,resize=True)
    return figure

def MatplotlibFigure_to_File(figure,file_name):
    """Saves the figure to file name"""
    figure.savefig(file_name,bbox_inches='tight', pad_inches=.1,dpi="figure")
    return file_name

def MatplotlibFigure_to_PngFile(figure,file_name="test.png"):
    figure.savefig(file_name,bbox_inches='tight', pad_inches=.1,dpi="figure")
    return file_name

def MatplotlibFigure_to_SvgFile(figure,file_name="test.svg"):
    figure.savefig(file_name,bbox_inches='tight', pad_inches=.1,dpi="figure")
    return file_name

# Transformations that use Inkscape
# Todo: put an error handler and a message about InkScape path
def SvgFile_to_PngFile(svg_file_path,export_file_path="test.png"):
    """Uses Inkscape to convert SVG to png via commandline """
    p=subprocess.call([INKSCAPE_PATH,svg_file_path,
                       '--export-png',export_file_path])
    return export_file_path

def SvgFile_to_EpsFile(svg_file_path,export_file_path="test.eps"):
    """Uses Inkscape to convert SVG to Eps via commandline """
    p=subprocess.call([INKSCAPE_PATH,svg_file_path,
                       '--export-eps',export_file_path])
    return export_file_path

def SvgFile_to_PdfFile(svg_file_path,export_file_path="test.pdf"):
    """Uses Inkscape to convert SVG to pdf via commandline """
    p=subprocess.call([INKSCAPE_PATH,svg_file_path,
                       '--export-pdf',export_file_path])
    return export_file_path

# Matlab Figure Translation
def FigFile_to_MatplotlibFigure(filename,fignr=1):
    "Function that uses loadmat to create a matplotlib plot of a matlab fig file"
    from scipy.io import loadmat
    from numpy import size
    from matplotlib.pyplot import plot,figure,hold,xlabel,ylabel,show,clf,xlim,legend
    d = loadmat(filename,squeeze_me=True, struct_as_record=False)
    ax1 = d['hgS_070000'].children
    if size(ax1) > 1:
        legs= ax1[1]
        ax1 = ax1[0]
    else:
        legs=0
    fig=figure(fignr)
    clf()
    hold(True)
    counter = 0
    for line in ax1.children:
        if line.type == 'graph2d.lineseries':
            if hasattr(line.properties,'Marker'):
                mark = "%s" % line.properties.Marker
                mark = mark[0]
            else:
                mark = '.'
            if hasattr(line.properties,'LineStyle'):
                linestyle = "%s" % line.properties.LineStyle
            else:
                linestyle = '-'
            if hasattr(line.properties,'Color'):
                r,g,b =  line.properties.Color
            else:
                r = 0
                g = 0
                b = 1
            if hasattr(line.properties,'MarkerSize'):
                marker_size = line.properties.MarkerSize
            else:
                marker_size = 1
            x = line.properties.XData
            y = line.properties.YData
            plot(x,y,marker=mark,linestyle=linestyle,color=(r,g,b),markersize=marker_size)
        elif line.type == 'text':
            if counter <1:
                #print(dir(line.properties))
                counter += 1
            elif counter < 2:
                #print dir(line.properties.String)
                xlabel("%s" % line.properties.String,fontsize = 16)
                counter += 1
            elif counter < 3:
                #print dir(line.properties.String)
                ylabel("%s" % line.properties.String,fontsize = 16)
                counter += 1
    xlim(ax1.properties.XLim)
    if legs:
        leg_entries = tuple(legs.properties.String)
        py_locs = ['upper center','lower center','right','left','upper right','upper left','lower right','lower left','best']
        MAT_locs=['North','South','East','West','NorthEast', 'NorthWest', 'SouthEast', 'SouthWest','Best']
        Mat2py = dict(list(zip(MAT_locs,py_locs)))
        location = legs.properties.Location
        legend(leg_entries,loc=Mat2py[location])
    hold(False)
    show()
    return fig

# Metadata Translations
def replace_None(string):
    """Replaces the string 'None' with the python value None"""
    if string:
        if re.match("None",string):
            return None
        else:
            return string
    else:
        return string

def Dictionary_to_JsonString(python_dictionary):
    """Uses json module to create a json string from a python dictionary"""
    return json.dumps(python_dictionary)

def JsonString_to_Dictionary(json_string):
    """Uses json module to return a python dictionary"""
    out_dictionary=json.loads(json_string)
    for key,value in out_dictionary.items():
        out_dictionary[key]=replace_None(value)
    return out_dictionary

def JsonString_to_JsonFile(json_string,file_name="test.json"):
    """Transforms a json string to a json file"""
    out_file=open(file_name,'w')
    out_file.write(json_string)
    out_file.close()
    return file_name

def JsonFile_to_JsonString(json_file_name):
    "Transforms a Json file to a json string"
    in_file=open(json_file_name,'r')
    json_string=in_file.read()
    in_file.close()
    return json_string



def Dictionary_to_XmlString(dictionary=None,char_between='\n'):
    """Transforms a python dictionary to a XML string of the form <key>value</key>"""
    string_output=''
    for key,value in dictionary.items():
        xml_open="<"+str(key)+">"
        xml_close="</"+str(key)+">"
        string_output=string_output+xml_open+str(value)+xml_close+char_between
    return string_output

def XmlString_to_Dictionary(xml_string):
    """XML string must be in the format <key>value</key>\n<key2>.. to work"""
    pattern='<(?P<XML_tag>.+)>(?P<XML_text>.+)</.+>'
    lines=xml_string.splitlines()
    out_dictionary={}
    for line in lines:
        match=re.search(pattern,line)
        if match:
            key=match.groupdict()["XML_tag"].rstrip().lstrip().replace("\'","")
            value=match.groupdict()["XML_text"].rstrip().lstrip().replace("\'","")
            out_dictionary[key]=value
    return out_dictionary


def Dictionary_to_HtmlMetaString(python_dictionary):
    """Converts a python dictionary to meta tags for html"""
    out_string=""
    for key,value in python_dictionary.items():
        out_string=out_string+"<meta name="+'"{0}"'.format(key)+" content="+'"{0}"'.format(value)+" />\n"
    return out_string

def HtmlMetaString_to_Dictionary(HTML_meta_tags_string):
    """Converts a python dictionary to meta tags for html"""
    pattern='<meta name="(?P<key>.+)" content="(?P<value>.+)" />'
    lines=HTML_meta_tags_string.splitlines()
    out_dictionary={}
    for line in lines:
        match=re.search(pattern,line)
        if match:
            key=match.groupdict()["key"]
            value=match.groupdict()["value"]
            out_dictionary[key]=value
    return out_dictionary

def Dictionary_to_XmlTupleString(python_dictionary):
    """transforms a python dictionary into a xml line in the form
    <Tuple key1="value1" key2="value2"..keyN="valueN" />"""
    prefix="<Tuple "
    postfix=" />"
    inner=""
    xml_out=""
    for key,value in python_dictionary.items():
        inner=inner+'{0}="{1}" ' .format(key,value)
        xml_out=prefix+inner+postfix
    return xml_out

def XmlTupleString_to_Dictionary(tuple_line):
    """Takes a line in the form of <Tuple key1="value1" key2="Value2" ...KeyN="ValueN" />
    and returns a dictionary"""
    stripped_string=tuple_line.replace("<Tuple","")
    stripped_string=stripped_string.replace("/>","")
    pattern="(?<=\")(?<!,|:)\s+(?!,+)"
    lines=re.split(pattern,stripped_string)
    out_dictionary={}
    for line in lines:
        split_line=line.split("=")
        print(split_line)
        if len(split_line)==2:
            key=split_line[0].rstrip().lstrip().replace("\"","")
            value=split_line[1].rstrip().lstrip().replace("\"","")
            out_dictionary[key]=value
    return out_dictionary

def Dictionary_to_PickleFile(python_dictionary,file_name="dictionary.pkl"):
    """Python Dictionary to pickled file"""
    pickle.dump(python_dictionary,open(file_name,'wb'))
    return file_name

def PickleFile_to_Dictionary(pickle_file_name):
    """open and read a pickled file with only a single python dictionary in it"""
    dictionary_out=pickle.load(open(pickle_file_name,'rb'))
    return dictionary_out

def Dictionary_to_ListList(python_dictionary):
    """Returns a list with two lists : [[key_list][item_list]]"""
    key_list=[]
    value_list=[]
    for key,value in python_dictionary.items():
        key_list.append(key)
        value_list.append(value)
    out_list=[key_list,value_list]
    return out_list

def ListList_to_Dictionary(list_list):
    """takes a list of [[keys],[items]] and returns a dictionary """
    keys=list_list[0]
    items=list_list[1]
    out_dictionary={}
    for index,key in enumerate(keys):
        out_dictionary[key]=items[index]
    return out_dictionary

def Dictionary_to_DataFrame(python_dictionary):
    """Takes a python dictionary and maps it to a pandas dataframe"""
    data_frame=pandas.DataFrame([[key,value] for key,value in python_dictionary.items()],
                                columns=["Property","Value"])
    data_frame.fillna("None")
    return data_frame

def DataFrame_to_Dictionary(pandas_data_frame):
    """Takes a pandas.DataFrame with column names ["Property","Value"] and returns a python dictionary"""
    list_of_lists=pandas_data_frame.as_matrix().tolist()
    dictionary={row[0]:replace_None(row[1]) for row in list_of_lists}
    return dictionary

def Dictionary_to_HeaderList(python_dictionary):
    "Converts a python dictionary to a list of strings in the form ['key1=value1',..'keyN=valueN']"
    out_string=""
    out_list=[]
    for key,value in python_dictionary.items():
        out_string="{0}={1}".format(key,value)
        out_list.append(out_string)
    return out_list

def HeaderList_to_Dictionary(header_list):
    "Creates a python dictionary from a list of strings in the form ['key1=value1',..'keyN=valueN']"
    out_dictionary={}
    for item in header_list:
        key_value_list=item.split("=")
        key=key_value_list[0].rstrip().lstrip()
        value=key_value_list[1].rstrip().lstrip()
        out_dictionary[key]=value
    return out_dictionary


def MatFile_to_AsciiDataTableKeyValue(matlab_file_name):
    matlab_data_dictionary=loadmat(matlab_file_name)
    #print matlab_data_dictionary
    data=[[x.rstrip().lstrip() for x in row] for row in matlab_data_dictionary["data"].tolist()]
    column_names=[x.rstrip().lstrip() for x in matlab_data_dictionary["column_names"].tolist()]
    ascii_data_table=AsciiDataTable(None,column_names=column_names,data=data)
    return ascii_data_table
# Word Translations Warning COM interface can be very unreliable
if WINDOWS_COM:
    def DocFile_to_PdfFile(doc_file_name,pdf_file_name="test.pdf"):
        """Converts a microsoft doc or docx file to a pdf using word.
        Requires word and win32com to be installed.
        FileFormat=17 is pdf for SaveAs, search for WdSaveFormat Enumeration to see more details.
        Returns the new file name"""
        split_doc_name=list(os.path.split(doc_file_name))
        split_pdf_name=list(os.path.split(pdf_file_name))
        if not split_doc_name[0]:
            split_doc_name[0]=os.getcwd()
            doc_file_name=os.path.join(*split_doc_name)
        if not split_pdf_name[0]:
            split_pdf_name[0]=os.getcwd()
            pdf_file_name=os.path.join(*split_pdf_name)

        word=client.DispatchEx("Word.Application")
        doc=word.Documents.Open(doc_file_name)
        doc.SaveAs(pdf_file_name,FileFormat=17)
        doc.Close()
        word.Quit()
        return pdf_file_name

    def DocFile_to_HtmlFile(doc_file_name,html_file_name="test.html"):
        """Converts a microsoft doc or docx file to a filtered html file using word.
        Requires word and win32com to be installed.
        FileFormat=10 is filtered html for SaveAs, search for WdSaveFormat Enumeration to see more details.
        Returns the new file name"""
        split_doc_name=list(os.path.split(doc_file_name))
        split_html_name=list(os.path.split(html_file_name))
        if not split_doc_name[0]:
            split_doc_name[0]=os.getcwd()
            doc_file_name=os.path.join(*split_doc_name)
        if not split_html_name[0]:
            split_html_name[0]=os.getcwd()
            html_file_name=os.path.join(*split_html_name)

        word=client.DispatchEx("Word.Application")
        doc=word.Documents.Open(doc_file_name)
        doc.SaveAs(html_file_name,FileFormat=10)
        doc.Close()
        word.Quit()
        return html_file_name

    def DocFile_to_OdtFile(doc_file_name,odt_file_name="test.odt"):
        """Converts a microsoft doc or docx file to a open document format file using word.
        Requires word and win32com to be installed.
        FileFormat=23 is odt for SaveAs, search for WdSaveFormat Enumeration to see more details.
        This one required guessing at the integer value.
        Returns the new file name"""
        split_doc_name=list(os.path.split(doc_file_name))
        split_odt_name=list(os.path.split(odt_file_name))
        if not split_doc_name[0]:
            split_doc_name[0]=os.getcwd()
            doc_file_name=os.path.join(*split_doc_name)
        if not split_odt_name[0]:
            split_odt_name[0]=os.getcwd()
            odt_file_name=os.path.join(*split_odt_name)
        word=client.DispatchEx("Word.Application")
        doc=word.Documents.Open(doc_file_name)
        doc.SaveAs(odt_file_name,FileFormat=23)
        doc.Close()
        word.Quit()
        return odt_file_name

    def ExcelFile_to_OdsFile(excel_file_name,ods_file_name="test.ods"):
        """Converts a microsoft xlsx or xls file to a open document spreadsheet file using excel.
        Requires word and win32com to be installed.
        FileFormat=60 is ods for SaveAs, search for XlFileFormat Enumeration to see more details.
        Returns the new file name"""
        split_excel_name=list(os.path.split(excel_file_name))
        split_ods_name=list(os.path.split(ods_file_name))
        if not split_excel_name[0]:
            split_excel_name[0]=os.getcwd()
            excel_file_name=os.path.join(*split_excel_name)
        if not split_ods_name[0]:
            split_ods_name[0]=os.getcwd()
            ods_file_name=os.path.join(*split_ods_name)
        excel=client.DispatchEx("Excel.Application")
        workbook=excel.Workbooks.Open(excel_file_name)
        workbook.SaveAs(ods_file_name,FileFormat=60,ConflictResolution=2)
        workbook.Close()
        excel.Quit()
        return ods_file_name

    def OdsFile_to_ExcelFile(ods_file_name,excel_file_name="test.xlsx"):
        """Converts a microsoft excel or excelx file to a open document format file using excel.
        Requires word and win32com to be installed.
        FileFormat=51 is Workbook default for SaveAs, search for XlFileFormat Enumeration to see more details.
        Returns the new file name"""
        split_excel_name=list(os.path.split(excel_file_name))
        split_ods_name=list(os.path.split(ods_file_name))
        if not split_excel_name[0]:
            split_excel_name[0]=os.getcwd()
            excel_file_name=os.path.join(*split_excel_name)
        if not split_ods_name[0]:
            split_ods_name[0]=os.getcwd()
            ods_file_name=os.path.join(*split_ods_name)
        excel=client.DispatchEx("Excel.Application")
        workbook=excel.Workbooks.Open(ods_file_name)
        workbook.SaveAs(excel_file_name,FileFormat=51,ConflictResolution=2)
        workbook.Close()
        excel.Quit()
        return excel_file_name

    def PptxFile_to_OdpFile(power_point_file_name,odp_file_name="test.odp"):
        """Converts a pptx or ppt file to a open presentation format file using Power Point.
        Requires word and win32com to be installed.
        FileFormat=35 is odp  default for SaveAs,
        search for PowerPointFileFormat Enumeration to see more details.
        Returns the new file name"""
        split_power_point_name=list(os.path.split(power_point_file_name))
        split_odp_name=list(os.path.split(odp_file_name))
        if not split_power_point_name[0]:
            split_power_point_name[0]=os.getcwd()
            power_point_file_name=os.path.join(*split_power_point_name)
        if not split_odp_name[0]:
            split_odp_name[0]=os.getcwd()
            odp_file_name=os.path.join(*split_odp_name)
        power_point=client.DispatchEx("PowerPoint.Application")
        presentation=power_point.Presentations.Open(power_point_file_name)
        presentation.SaveAs(odp_file_name,FileFormat=35)
        presentation.Close()
        power_point.Quit()
        return odp_file_name

    def OdpFile_to_PptxFile(odp_file_name,power_point_file_name="test.pptx"):
        """Converts a odp  to a open pptx format file using Power Point.
        Requires word and win32com to be installed.
        FileFormat=11 is DefaultPresentation  default for SaveAs,
        search for PowerPointFileFormat Enumeration to see more details.
        Returns the new file name"""
        split_power_point_name=list(os.path.split(power_point_file_name))
        split_odp_name=list(os.path.split(odp_file_name))
        if not split_power_point_name[0]:
            split_power_point_name[0]=os.getcwd()
            power_point_file_name=os.path.join(*split_power_point_name)
        if not split_odp_name[0]:
            split_odp_name[0]=os.getcwd()
            odp_file_name=os.path.join(*split_odp_name)
        power_point=client.DispatchEx("PowerPoint.Application")
        presentation=power_point.Presentations.Open(odp_file_name)
        presentation.SaveAs(power_point_file_name,FileFormat=11)
        presentation.Close()
        power_point.Quit()
        return power_point_file_name
# first we define matrix to list conversions
def FrequencyList_to_FrequencyMatrixList(frequency_list):
    """Converts a list of form [f,m11,m12,m21,m22] to a list of form [f,np.matrix([[m11,m12],[m12,m22]])]
    inverse of FrequencyMatrixList_to_FrequencyList """
    matrix_list=[]
    for row in frequency_list[:]:
        frequency=row[0]
        [m11,m12,m21,m22]=row[1:]
        matrix=np.matrix([[m11,m12],[m21,m22]])
        matrix_list.append([frequency,matrix])
    return matrix_list

def FrequencyMatrixList_to_FrequencyList(frequency_matrix_list):
    """Converts a list of form [f,np.matrix([[m11,m12],[m12,m22]])] to a list of form [f,m11,m12,m21,m22]
    inverse of FrequencyList_to_FrequencyMatrixList"""
    frequency_list=[]
    for row in frequency_matrix_list[:]:
        frequency=row[0]
        matrix=row[1]
        [m11,m12,m21,m22]=[matrix[0,0],matrix[0,1],matrix[1,0],matrix[1,1]]
        frequency_list.append([frequency,m11,m12,m21,m22])
    return frequency_list

# now for each set of parameters we need a single conversion into and out of the format

# This was copied and needs to be refactored to be consitent with the other tranforms
def SFrequencyMatrixList_to_TFrequencyMatrixList(s_frequency_matrix_list):
    """Converts S-parameters into a T Matrix. Input form should be in frequency, np.matrix([[S11,S12],[S21,S22]])
    format. Returns a list in [frequency, np.matrix] format.
    Is the inverse of TFrequencyMatrixList_to_SFrequencyMatrixList"""
    t_frequency_matrix_list=[]
    for row in s_frequency_matrix_list:
        frequency=row[0]
        m=row[1]
        T11=-np.linalg.det(m)/m[1,0]
        T12=m[0,0]/m[1,0]
        T21=-m[1,1]/m[1,0]
        T22=1/m[1,0]
        t_frequency_matrix_list.append([frequency,np.matrix([[T11,T12],[T21,T22]])])
    return t_frequency_matrix_list

def TFrequencyMatrixList_to_SFrequencyMatrixList(t_frequency_matrix_list):
    """Converts T Matrix into S parameters. Input form should be in frequency, np.matrix([[T11,T12],[T21,T22]])
    format. Returns a list in [frequency, np.matrix] format.
    Is the inverse of SFrequencyMatrixList_to_TFrequencyMatrixList"""
    s_frequency_matrix_list=[]
    for row in t_frequency_matrix_list:
        frequency=row[0]
        m=row[1]
        S11=m[0,1]/m[1,1]
        S12=np.linalg.det(m)/m[1,1]
        S21=1/m[1,1]
        S22=-m[1,0]/m[1,1]
        s_frequency_matrix_list.append([frequency,np.matrix([[S11,S12],[S21,S22]])])
    return s_frequency_matrix_list

def SFrequencyList_to_ZFrequencyList(s_frequency_list,Z01=complex(50,0),Z02=complex(50,0)):
    """ Converts s parameters into z-parameters. S-parameters should be in the form [[f,S11,S12,S21,S22],...]
    the port 1 (Z01) and port 2 (Z01) impedances can be specified, default is 50. Returns data in the form
    [[f,Z11,Z12,Z21,Z22],...]
    """
    z_frequency_list=[]
    for row in s_frequency_list[:]:
        [frequency,S11,S12,S21,S22]=row
        denominator=-1*((1-S11)*(1-S22)-S12*S21)
        Z11=((Z01.conjugate()+S11*Z01)*(1-S22)+S12*S21*Z01)/denominator
        Z12=(2*S12*(Z01.real*Z02.real)**(.5))/denominator
        Z21=(2*S21*(Z01.real*Z02.real)**(.5))/denominator
        Z22=((1-S11)*(Z02.conjugate()+S22*Z02)+S21*S12*Z02)/denominator
        z_frequency_list.append([frequency,complex(abs(Z11.real),Z11.imag),Z12,Z21,complex(abs(Z22.real),Z22.imag)])
    return z_frequency_list

def SFrequencyMatrixList_to_ZFrequencyMatrixList(s_frequency_matrix_list,Z01=complex(50,0),Z02=complex(50,0)):
    """ Converts s parameters into z-parameters. S-parameters should be in the form
    [[f,np.matrix([[S11,S12],S21,S22]],...]
    the port 1 (Z01) and port 2 (Z01) impedances can be specified, default is 50. Returns data in the form
    [[f,np.matrix([[Z11,Z12],[Z21,Z22]]),...]
    """
    z_frequency_matrix_list=[]
    for row in s_frequency_matrix_list[:]:
        [frequency,m]=row
        [S11,S12,S21,S22]=[m[0,0],m[0,1],m[1,0],m[1,1]]
        denominator=-1*((1-S11)*(1-S22)-S12*S21)
        Z11=((Z01.conjugate()+S11*Z01)*(1-S22)+S12*S21*Z01)/denominator
        Z12=(2*S12*(Z01.real*Z02.real)**(.5))/denominator
        Z21=(2*S21*(Z01.real*Z02.real)**(.5))/denominator
        Z22=((1-S11)*(Z02.conjugate()+S22*Z02)+S21*S12*Z02)/denominator
        z_frequency_matrix_list.append([frequency,
                                        np.matrix([[complex(abs(Z11.real),Z11.imag),Z12],
                                                   [Z21,complex(abs(Z22.real),Z22.imag)]])])
    return z_frequency_matrix_list


def ZFrequencyList_to_TFrequencyList(Z_frequency_list,Z01=complex(50,0),Z02=complex(50,0)):
    """ Converts z parameters into T parameters. Z-parameters should be in the form [[f,Z11,Z12,Z21,Z22],...]
    the port 1 (Z01) and port 2 (Z01) impedances can be specified, default is 50. Returns data in the form
    [[f,T11,T12,T21,T22],...]
    """
    t_frequency_list=[]
    for row in Z_frequency_list[:]:
        [frequency,Z11,Z12,Z21,Z22]=row
        denominator=2*Z21*(Z01.real*Z02.real)**(.5)
        T11= ((Z11+Z01)*(Z22+Z02)-Z12*Z21)/denominator
        T12=((Z11+Z01)*(Z02.conjugate()-Z22)+Z12*Z21)/denominator
        T21=((Z11-Z01.conjugate())*(Z22+Z02)-Z12*Z21)/denominator
        T22=((Z01.conjugate()-Z11)*(Z22-Z02.conjugate())+Z12*Z21)/denominator
        t_frequency_list.append([frequency,T11,T12,T21,T22])
    return t_frequency_list

def ZFrequencyMatrixList_to_TFrequencyMatrixList(Z_frequency_matrix_list,Z01=complex(50,0),Z02=complex(50,0)):
    """ Converts z parameters into T parameters. Z-parameters should be in the form [[f,np.matrix([[Z11,Z12],[Z21,Z22]])],...]
    the port 1 (Z01) and port 2 (Z01) impedances can be specified, default is 50. Returns data in the form
    [[f,np.matrix([[T11,T12],[T21,T22]])],...]
    """
    t_frequency_matrix_list=[]
    for row in Z_frequency_matrix_list[:]:
        [frequency,m]=row
        [Z11,Z12,Z21,Z22]=[m[0,0],m[0,1],m[1,0],m[1,1]]
        denominator=2*Z21*(Z01.real*Z02.real)**(.5)
        T11= ((Z11+Z01)*(Z22+Z02)-Z12*Z21)/denominator
        T12=((Z11+Z01)*(Z02.conjugate()-Z22)+Z12*Z21)/denominator
        T21=((Z11-Z01.conjugate())*(Z22+Z02)-Z12*Z21)/denominator
        T22=((Z01.conjugate()-Z11)*(Z22-Z02.conjugate())+Z12*Z21)/denominator
        t_frequency_matrix_list.append([frequency,np.matrix([[T11,T12],[T21,T22]])])
    return t_frequency_matrix_list


def ABCDFrequencyList_to_YFrequencyList(ABCD_frequency_list):
    """ Converts ABCD parameters into Y-parameters. ABCD-parameters should be in the form [[f,A,B,C,D],...]
    Returns data in the form
    [[f,Y11,Y12,Y21,Y22],...]
    """
    y_frequency_list=[]
    for row in ABCD_frequency_list[:]:
        [frequency,A,B,C,D]=row
        Y11=D/B
        Y12=(B*C-A*D)/B
        Y21=-1/B
        Y22=A/B
        y_frequency_list.append([frequency,Y11,Y12,Y21,Y22])
    return y_frequency_list

def YFrequencyList_to_HFrequencyList(y_frequency_list):
    """ Converts Y parameters into h-parameters. ABCD-parameters should be in the form [[f,Y11,Y12,Y21,Y22],...]
    Returns data in the form
    [[f,h11,h12,h21,h22],...]
    """
    h_frequency_list=[]
    for row in y_frequency_list[:]:
        [frequency,Y11,Y12,Y21,Y22]=row
        h11=1/Y11
        h12=-1*Y12/Y11
        h21=Y21/Y11
        h22=(Y11*Y22-Y12*Y21)/Y11
        h_frequency_list.append([frequency,h11,h12,h21,h22])
    return h_frequency_list

def ABCDFrequencyList_to_HFrequencyList(ABCD_frequency_list):
    """ Converts ABCD parameters into h-parameters. ABCD-parameters should be in the form [[f,A,B,C,D],...]
    Returns data in the form
    [[f,h11,h12,h21,h22],...]
    """
    h_frequency_list=[]
    for row in ABCD_frequency_list[:]:
        [frequency,A,B,C,D]=row
        h11=B/D
        h12=(A*D-B*C)/D
        h21=-1/D
        h22=C/D
        h_frequency_list.append([frequency,h11,h12,h21,h22])
    return h_frequency_list

def HFrequencyList_to_ZFrequencyList(h_frequency_list):
    """ Converts h parameters into Z-parameters. h-parameters should be in the form [[f,h11,h12,h21,h22],...]
    Returns data in the form
    [[f,Z11,Z12,Z21,Z22],...]
    """
    z_frequency_list=[]
    for row in h_frequency_list[:]:
        [frequency,h11,h12,h21,h22]=row
        Z11=(h11*h22-h12*h21)/h22
        Z12=h12/h22
        Z21=-1*h21/h22
        Z22=1/h22
        z_frequency_list.append([frequency,Z11,complex(abs(Z12.real),Z12.imag),complex(abs(Z21.real),Z21.imag),Z22])
    return z_frequency_list

def ZFrequencyMatrixList_to_YFrequencyMatrixList(z_frequency_matrix_list):
    """ Converts Z parameters into Y-parameters. Z-parameters should be in the form
    [[f,np.matrix([[Z11,Z12],[Z21,Z22]])],...]
    Returns data in the form
    [[f,np.matrix([[Y11,Y12],[Y21,Y22]])],...]
    inverse of YFrequencyMatrixList_to_ZFrequencyMatrixList
    """
    y_frequency_matrix_list=[]
    for row in z_frequency_matrix_list[:]:
        frequency=row[0]
        m=row[1]
        y_frequency_matrix_list.append([frequency,m.I])
    return y_frequency_matrix_list

def YFrequencyMatrixList_to_ZFrequencyMatrixList(y_frequency_matrix_list):
    """ Converts Z parameters into Y-parameters. Z-parameters should be in the form
    [[f,np.matrix([[Y11,Y12],[Y21,Y22]])],...]
    Returns data in the form
    [[f,np.matrix([[Z11,Z12],[Z21,Z22]])],...]
    inverse of ZFrequencyMatrixList_to_YFrequencyMatrixList
    """
    z_frequency_matrix_list=[]
    for row in y_frequency_matrix_list[:]:
        frequency=row[0]
        m=row[1]
        z_frequency_matrix_list.append([frequency,m.I])
    return z_frequency_matrix_list

def ZFrequencyList_to_ABCDFrequencyList(z_frequency_list):
    """ Converts z parameters into ABCD-parameters. Z-parameters should be in the form [[f,Z11,Z12,Z21,Z22],...]
    Returns data in the form
    [[f,A,B,C,D],...]
    inverse of ABCDFrequencyList_to_ZFrequencyList
    """
    ABCD_frequency_list=[]
    for row in z_frequency_list[:]:
        [frequency,Z11,Z12,Z21,Z22]=row
        A=Z11/Z21
        B=(Z11*Z22-Z12*Z21)/Z21
        C=1/Z21
        D=Z22/Z21
        ABCD_frequency_list.append([frequency,A,B,C,D])
    return ABCD_frequency_list

def ABCDFrequencyList_to_ZFrequencyList(ABCD_frequency_list):
    """ Converts ABCD parameters into z-parameters. ABCD-parameters should be in the form [[f,A,B,C,D],...]
    Returns data in the form
    [[f,Z11,Z12,Z21,Z22],...],
    inverse of ZFrequencyList_to_ABCDFrequencyList
    """
    z_frequency_list=[]
    for row in ABCD_frequency_list[:]:
        [frequency,A,B,C,D]=row
        Z11=A/C
        Z12=(A*D-B*C)/C
        Z21=1/C
        Z22=D/C
        z_frequency_list.append([frequency,complex(abs(Z11.real),Z11.imag),Z12,Z21,complex(abs(Z22.real),Z22.imag)])
    return z_frequency_list

def ABCDFrequencyList_to_SFrequencyList(ABCD_frequency_list,Z01=complex(50,0),Z02=complex(50,0)):
    """ Converts ABCD parameters into s-parameters. ABCD-parameters should be in the form [[f,A,B,C,D],...]
    Returns data in the form
    [[f,S11,S12,S21,S22],...],
    """
    s_frequency_list=[]
    for row in ABCD_frequency_list[:]:
        [frequency,A,B,C,D]=row
        denominator=A*Z02+B+C*Z01*Z02+D*Z01
        S11=(A*Z02+B-C*Z01.conjugate()*Z02-D*Z01.conjugate())/denominator
        S12=-1*(2*(Z01.real*Z02.real)**(.5))/denominator
        S21=-1*(2*(Z01.real*Z02.real)**(.5))/denominator
        S22=(-1*A*Z02.conjugate()+B-C*Z01*Z02+D*Z01)/denominator
        s_frequency_list.append([frequency,S11,S12,S21,S22])
    return s_frequency_list


def FileName_to_HtmlBase(file_path, xsl_directory=os.path.join(TESTS_DIRECTORY, "../XSL")):
    """Return an html version of the file for display"""
    file_location = file_path
    extension = file_location.split('.')[-1]
    if extension in ['s2p', "S2P"]:
        table = S2PV1(file_location)
        table.change_data_format("RI")
        xml = S2PV1_to_XmlDataTable(table, format="RI", style_sheet=os.path.join(xsl_directory, "S2P_RI_STYLE.xsl"))

    elif extension in ['parameter', 'model', 'vnauncert', 'meas']:
        xml = XMLBase(file_location, **{"style_sheet": os.path.join(xsl_directory, "MUF_MENU_STYLE.xsl")})

    elif extension in ['conn']:
        xml = XMLBase(file_location, **{"style_sheet": os.path.join(xsl_directory, "VNATOOLS_CONNECTOR_STYLE.xsl")})

    elif extension in ['vnadev']:
        xml = XMLBase(file_location, **{"style_sheet": os.path.join(xsl_directory, "VNATOOLS_VNA_STYLE.xsl")})

    elif extension in ['cable']:
        xml = XMLBase(file_location, **{"style_sheet": os.path.join(xsl_directory, "VNATOOLS_CABLE_STYLE.xsl")})

    elif re.search('xml', extension, re.IGNORECASE):
        if re.search("Resource_Registry", file_location, re.IGNORECASE) and not re.search("Metadata", file_location,
                                                                                          re.IGNORECASE):
            xml = XMLBase(file_location, **{"style_sheet": os.path.join(xsl_directory, "FR_STYLE.xsl")})
        elif re.search("Resource_Registry", file_location, re.IGNORECASE) and re.search("Metadata", file_location,
                                                                                        re.IGNORECASE):
            xml = XMLBase(file_location, **{"style_sheet": os.path.join(xsl_directory, "METADATA_STYLE.xsl")})
        elif re.search("Log", file_location, re.IGNORECASE):
            xml = XMLBase(file_location, **{"style_sheet": os.path.join(xsl_directory, "DEFAULT_LOG_STYLE.xsl")})
        else:
            xml = XMLBase(file_location, **{"style_sheet": os.path.join(xsl_directory, "DEFAULT_STYLE.xsl")})

    elif re.search('htm', extension, re.IGNORECASE):
        xml = HTMLEcho(file_location)

    elif extension in ['s1p', 'S1P']:
        table = S1PV1(file_location)
        xml = S1PV1_to_XmlDataTable(table, **{"style_sheet": os.path.join(xsl_directory, "S1P_STYLE.xsl")})

    elif re.match('s[\d]+p', extension, re.IGNORECASE):
        table = SNP(file_location)
        table.change_data_format("MA")
        xml = SNP_to_XmlDataTable(table, style_sheet=os.path.join(xsl_directory, "S2P_MA_STYLE.xsl"), format="MA")

    elif re.match('w2p', extension, re.IGNORECASE):
        # print("Caught File, Being Handled by .txt statement")
        # print("{0} is {1}".format('file_location',file_location))

        table = W2P(file_location)

        xml = AsciiDataTable_to_XmlDataTable(table,
                                             **{"style_sheet": os.path.join(xsl_directory,
                                                                            "DEFAULT_MEASUREMENT_STYLE.xsl")})
    elif re.match('txt', extension, re.IGNORECASE):
        # print("Caught File, Being Handled by .txt statement")
        # print("{0} is {1}".format('file_location',file_location))
        if re.search("CalCoefficients", file_location, re.IGNORECASE):
            print("Caught File, Being Handled by CalCoefficients.txt statement")
            table = TwelveTermErrorModel(file_location)

            xml = AsciiDataTable_to_XmlDataTable(table,
                                                 **{"style_sheet": os.path.join(xsl_directory,
                                                                                "DEFAULT_MEASUREMENT_STYLE.xsl")})

        elif re.search("Solution_Plus", file_location, re.IGNORECASE):
            # print("Caught File, Being Handled by StatistiCALSolutionModel")
            table = StatistiCALSolutionModel(file_location)
            xml = AsciiDataTable_to_XmlDataTable(table,
                                                 **{"style_sheet": os.path.join(xsl_directory,
                                                                                "DEFAULT_MEASUREMENT_STYLE.xsl")})

    elif file_location.split('.')[-1] == file_location and re.search('_', file_location):
        print("Caught by JB Handler")
        table = JBSparameter(file_location)
        # old_prefix=table.get_frequency_units().replace('Hz','')
        # table.change_unit_prefix(column_selector=0,old_prefix=old_prefix,new_prefix='G',unit='Hz')
        # table.column_names=S2P_RI_COLUMN_NAMES
        # xml=AsciiDataTable_to_XmlDataTable(table,**{"style_sheet":"../XSL/S2P_STYLE_02.xsl"})
        s2p = JBSparameter_to_S2PV1(table)
        xml = S2PV1_to_XmlDataTable(s2p, style_sheet=os.path.join(xsl_directory, "S2P_DB_STYLE.xsl"))

    elif extension in ['asc', 'ASC', 'dut', 'DUT'] and not re.search('raw', file_location, re.IGNORECASE):
        file_model = sparameter_power_type(file_location)
        # print("{0} is {1}".format('file_model',file_model))
        model = globals()[file_model]
        calrep_model = model(file_location)
        if re.search("PowerCalrep", file_model):
            table = calrep_model.joined_table
            # print("{0} is {1}".format("table.column_names",table.column_names))
            if "uCe" in table.column_names:
                style_sheet = os.path.join(xsl_directory, "POWER_3TERM_CALREP_STYLE.xsl")
                # print("Power Model is 3TERM")
            else:
                style_sheet = os.path.join(xsl_directory, "POWER_CALREP_STYLE.xsl")
                # print("Power Model is 4TERM")

        elif re.search("TwoPortCalrep", file_model):
            table = calrep_model.joined_table
            style_sheet = os.path.join(xsl_directory, "TWO_PORT_CALREP_STYLE.xsl")

        else:
            table = calrep_model
            style_sheet = os.path.join(xsl_directory, "ONE_PORT_CALREP_STYLE_002.xsl")

        xml = AsciiDataTable_to_XmlDataTable(table, **{"style_sheet": style_sheet})

    elif re.search('(.)+_(.)+', extension) or re.search('raw', file_location, re.IGNORECASE):
        # print("The file is a raw file")
        file_model = sparameter_power_type(file_location)
        model = globals()[file_model]
        table = model(file_location)
        # print("{0} is {1}".format('file_model',file_model))
        if re.search("OnePort", file_model):
            style_sheet = os.path.join(xsl_directory, "ONE_PORT_RAW_STYLE.xsl")
        elif re.search("TwoPort", file_model):
            style_sheet = os.path.join(xsl_directory, "TWO_PORT_RAW_STYLE.xsl")
        elif re.search("PowerRaw", file_model):
            print("This is a raw Power File")
            style_sheet = os.path.join(xsl_directory, "POWER_RAW_STYLE_002.xsl")
        xml = AsciiDataTable_to_XmlDataTable(table, **{"style_sheet": style_sheet})
    else:
        raise
        # xml=XMLBase(style_sheet=os.path.join(xsl_directory,"DEFAULT_STYLE.xsl"))

    html = HTMLBase(html_text=xml.to_HTML())
    return html
#-----------------------------------------------------------------------------
# Module Classes

#-----------------------------------------------------------------------------
# Module Scripts
def test_AsciiDataTable_to_XmlDataTable(input_file="700437.asc"):
    """Tests a one port ascii data table to an XmlDataTable transformation
    and saves the result in the tests directory. The one port file should be the output
    of Calrep7.1 or similar."""
    os.chdir(TESTS_DIRECTORY)
    one_port=OnePortRawModel(input_file)
    XML_one_port=AsciiDataTable_to_XmlDataTable(one_port)
    print(XML_one_port)
    XML_one_port.save()
    XML_one_port.save_HTML()

def test_OnePortRaw_to_XmlDataTable(input_file="OnePortRawTestFile.txt"):
    """Tests a one port raw ascii data table to an XmlDataTable transformation
    and saves the result in the tests directory. The one port file should be the output
    of Meas HP Basic program or similar. Average time without print is 7.2 ms for 10 loops."""
    os.chdir(TESTS_DIRECTORY)
    one_port=OnePortRawModel(input_file)
    options={"style_sheet":"../XSL/ONE_PORT_RAW_STYLE.xsl"}
    XML_one_port=AsciiDataTable_to_XmlDataTable(one_port,**options)
    #print XML_one_port
    XML_one_port.save()
    XML_one_port.save_HTML()

def test_StatistiCALSolutionModel_to_XmlDataTable(input_file="Solution_Plus.txt"):
    """Tests a StatistiCALSolutionModel  ascii data table to an XmlDataTable transformation
    and saves the result in the tests directory. """
    os.chdir(TESTS_DIRECTORY)
    solution=StatistiCALSolutionModel(input_file)
    options={"style_sheet":"../XSL/DEFAULT_MEASUREMENT_STYLE.xsl"}
    XML_solution=AsciiDataTable_to_XmlDataTable(solution,**options)
    print(XML_solution)
    XML_solution.show()
    print(XML_solution.to_HTML())

def test_AsciiDataTable_to_DataFrame(input_file="700437.asc"):
    os.chdir(TESTS_DIRECTORY)
    one_port=OnePortCalrepModel(input_file)
    data_frame=AsciiDataTable_to_DataFrame(one_port)
    data_frame.to_excel('one_port.xlsx', sheet_name='Sheet1')
    #print data_frame

def test_S2P_to_XmlDataTable(file_path="thru.s2p"):
    os.chdir(TESTS_DIRECTORY)
    s2p_file=S2PV1(file_path)
    XML_s2p=S2PV1_to_XmlDataTable(s2p_file)
    XML_s2p.save()
    #print XML_s2p
def test_S1PV1_to_XmlDataTable(file_path="OnePortTouchstoneTestFile.s1p"):
    """Tests the S1PV1 to XmlDataTable translation"""
    os.chdir(TESTS_DIRECTORY)
    s1p_file=S1PV1(file_path)
    XML_s1p=S1PV1_to_XmlDataTable(s1p_file)
    XML_s1p.show()
def timeit_script(script='test_AsciiDataTable_to_XmlDataTable()',
                  setup="from __main__ import test_AsciiDataTable_to_XmlDataTable",n_loops=10):
    """Returns the mean time from running script n_loops time. To import a script, put a string
    import statement in setup"""
    print(timeit.timeit(script,setup=setup,number=n_loops)/n_loops)

def test_S2P_to_XmlDataTable_02(file_path="thru.s2p",**options):
    os.chdir(TESTS_DIRECTORY)
    s2p_file=S2PV1(file_path)
    XML_s2p=S2PV1_to_XmlDataTable(s2p_file,**options)
    #XML_s2p.save()

def test_TwoPortCalrep_to_XmlDataTable(file_path='922729.asc',**options):
    """Test's the conversion of the TwoPortCalrep to XmlDataTable"""
    os.chdir(TESTS_DIRECTORY)
    two_port=TwoPortCalrepModel(file_path)
    two_port.joined_table.save()
    xml=TwoPortCalrepModel_to_XmlDataTable(two_port,**options)
    xml.save()
    xml.save_HTML()

def test_OnePortCalrep_to_XmlDataTable(file_path='700437.asc',**options):
    """Test's the conversion of the OnePortCalrep to XmlDataTable"""
    os.chdir(TESTS_DIRECTORY)
    one_port=OnePortCalrepModel(file_path)
    one_port.save("ExportedOnePortCalrep.txt")
    xml=OnePortCalrep_to_XmlDataTable(one_port,**options)
    xml.save()
    xml.save_HTML()

def test_TwoPortRawModel_to_XmlDataTable(file_path='TestFileTwoPortRaw.txt',**options):
    """Test's the conversion of the TwoPorRaw to XmlDataTable"""
    os.chdir(TESTS_DIRECTORY)
    two_port=TwoPortRawModel(file_path)
    two_port.save("SavedTest2PortRaw.txt")
    xml=TwoPortRawModel_to_XmlDataTable(two_port,**options)
    xml.save("SavedTest2PortRaw.xml")
    xml.save_HTML(file_path="SavedTest2PortRaw.html")

def test_TwoPortRawModel_to_S2PV1(file_path='TestFileTwoPortRaw.txt',**options):
    """Test's the conversion of the TwoPorRaw to XmlDataTable"""
    os.chdir(TESTS_DIRECTORY)
    two_port=TwoPortRawModel(file_path)
    s2p=TwoPortRawModel_to_S2PV1(two_port,**options)
    print(s2p)
    s2p.save("SavedTest2PortRaw.s2p")

def test_PowerRawModel_to_XmlDataTable(file_path='CTNP15.A1_042601',**options):
    """Test's the conversion of the TwoPorRaw to XmlDataTable"""
    os.chdir(TESTS_DIRECTORY)
    power=PowerRawModel(file_path)
    print(power)
    xml=PowerRawModel_to_XmlDataTable(power,**options)
    xml.save("SavedTestPowerRaw.xml")
    xml.save_HTML(file_path="SavedTestPowerPortRaw.html")
def test_JBSparameter_to_S2PV1(file_path='QuartzRefExample_L1_g10_HF'):
    """Tests the conversion of JBSparameter files to S2PV1"""
    os.chdir(TESTS_DIRECTORY)
    table=JBSparameter(file_path)
    s2p=JBSparameter_to_S2PV1(table)
    print(("Before conversion the JBSparameter file is {0} ".format(table)))
    s2p.change_data_format('RI')
    print(("After Conversion the JBSparameter file is {0} ".format(s2p)))
    s2p.show()
#-----------------------------------------------------------------------------
# Module Runner
if __name__ == '__main__':
    #test_AsciiDataTable_to_XmlDataTable()
    #test_OnePortRaw_to_XmlDataTable()
    #test_AsciiDataTable_to_pandas()
    #timeit_script()
    #timeit_script(script="test_AsciiDataTable_to_pandas()",
     #             setup="from __main__ import test_AsciiDataTable_to_pandas",n_loops=10)
    # timeit_script(script="test_OnePortRaw_to_XmlDataTable()",
    #               setup="from __main__ import test_OnePortRaw_to_XmlDataTable",n_loops=10)
    #test_S2P_to_XmlDataTable()
    #test_S2P_to_XmlDataTable('TwoPortTouchstoneTestFile.s2p')
    #test_S2P_to_XmlDataTable('20160301_30ft_cable_0.s2p')
    #test_S2P_to_XmlDataTable_02('20160301_30ft_cable_0.s2p',**{"style_sheet":"../XSL/S2P_STYLE_02.xsl"})
    #test_TwoPortCalrep_to_XmlDataTable(r'C:\Share\ascii.dut\000146a.txt')
    #test_TwoPortRaw_to_XmlDataTable()
    #test_TwoPortRawModel_to_S2PV1()
    #test_PowerRawModel_to_XmlDataTable(**{"style_sheet":"../XSL/POWER_RAW_STYLE_002.xsl"})
    #test_JBSparameter_to_S2PV1()
    #test_OnePortCalrep_to_XmlDataTable(**{"style_sheet":"../XSL/ONE_PORT_CALREP_STYLE_002.xsl"})
    #test_S2P_to_XmlDataTable('704b.S2P')
    test_S1PV1_to_XmlDataTable()
    test_StatistiCALSolutionModel_to_XmlDataTable()

Functions

def ABCDFrequencyList_to_HFrequencyList(

ABCD_frequency_list)

Converts ABCD parameters into h-parameters. ABCD-parameters should be in the form [[f,A,B,C,D],...] Returns data in the form [[f,h11,h12,h21,h22],...]

def ABCDFrequencyList_to_HFrequencyList(ABCD_frequency_list):
    """ Converts ABCD parameters into h-parameters. ABCD-parameters should be in the form [[f,A,B,C,D],...]
    Returns data in the form
    [[f,h11,h12,h21,h22],...]
    """
    h_frequency_list=[]
    for row in ABCD_frequency_list[:]:
        [frequency,A,B,C,D]=row
        h11=B/D
        h12=(A*D-B*C)/D
        h21=-1/D
        h22=C/D
        h_frequency_list.append([frequency,h11,h12,h21,h22])
    return h_frequency_list

def ABCDFrequencyList_to_SFrequencyList(

ABCD_frequency_list, Z01=(50+0j), Z02=(50+0j))

Converts ABCD parameters into s-parameters. ABCD-parameters should be in the form [[f,A,B,C,D],...] Returns data in the form [[f,S11,S12,S21,S22],...],

def ABCDFrequencyList_to_SFrequencyList(ABCD_frequency_list,Z01=complex(50,0),Z02=complex(50,0)):
    """ Converts ABCD parameters into s-parameters. ABCD-parameters should be in the form [[f,A,B,C,D],...]
    Returns data in the form
    [[f,S11,S12,S21,S22],...],
    """
    s_frequency_list=[]
    for row in ABCD_frequency_list[:]:
        [frequency,A,B,C,D]=row
        denominator=A*Z02+B+C*Z01*Z02+D*Z01
        S11=(A*Z02+B-C*Z01.conjugate()*Z02-D*Z01.conjugate())/denominator
        S12=-1*(2*(Z01.real*Z02.real)**(.5))/denominator
        S21=-1*(2*(Z01.real*Z02.real)**(.5))/denominator
        S22=(-1*A*Z02.conjugate()+B-C*Z01*Z02+D*Z01)/denominator
        s_frequency_list.append([frequency,S11,S12,S21,S22])
    return s_frequency_list

def ABCDFrequencyList_to_YFrequencyList(

ABCD_frequency_list)

Converts ABCD parameters into Y-parameters. ABCD-parameters should be in the form [[f,A,B,C,D],...] Returns data in the form [[f,Y11,Y12,Y21,Y22],...]

def ABCDFrequencyList_to_YFrequencyList(ABCD_frequency_list):
    """ Converts ABCD parameters into Y-parameters. ABCD-parameters should be in the form [[f,A,B,C,D],...]
    Returns data in the form
    [[f,Y11,Y12,Y21,Y22],...]
    """
    y_frequency_list=[]
    for row in ABCD_frequency_list[:]:
        [frequency,A,B,C,D]=row
        Y11=D/B
        Y12=(B*C-A*D)/B
        Y21=-1/B
        Y22=A/B
        y_frequency_list.append([frequency,Y11,Y12,Y21,Y22])
    return y_frequency_list

def ABCDFrequencyList_to_ZFrequencyList(

ABCD_frequency_list)

Converts ABCD parameters into z-parameters. ABCD-parameters should be in the form [[f,A,B,C,D],...] Returns data in the form [[f,Z11,Z12,Z21,Z22],...], inverse of ZFrequencyList_to_ABCDFrequencyList

def ABCDFrequencyList_to_ZFrequencyList(ABCD_frequency_list):
    """ Converts ABCD parameters into z-parameters. ABCD-parameters should be in the form [[f,A,B,C,D],...]
    Returns data in the form
    [[f,Z11,Z12,Z21,Z22],...],
    inverse of ZFrequencyList_to_ABCDFrequencyList
    """
    z_frequency_list=[]
    for row in ABCD_frequency_list[:]:
        [frequency,A,B,C,D]=row
        Z11=A/C
        Z12=(A*D-B*C)/C
        Z21=1/C
        Z22=D/C
        z_frequency_list.append([frequency,complex(abs(Z11.real),Z11.imag),Z12,Z21,complex(abs(Z22.real),Z22.imag)])
    return z_frequency_list

def AsciiDataTable_to_CsvFile(

ascii_data_table, file_name='test.csv', schema_file_name='schema_csv')

Converts an AsciiDataTable into an csv file by setting options and saving

def AsciiDataTable_to_CsvFile(ascii_data_table, file_name="test.csv", schema_file_name="schema_csv"):
    """Converts an AsciiDataTable into an csv file by setting options and saving"""
    original_options = ascii_data_table.options.copy()
    ascii_data_table.options["column_names_begin_token"] = ""
    ascii_data_table.options["column_names_end_token"] = "\n"
    ascii_data_table.options["data_table_element_separator"] = None
    ascii_data_table.options["data_begin_token"] = None
    ascii_data_table.options["data_end_token"] = None
    ascii_data_table.options["data_delimiter"] = ","
    ascii_data_table.options["column_names_delimiter"] = ","
    if ascii_data_table.header is not None:
        ascii_data_table.options["comment_begin"] = "#"
        ascii_data_table.options["comment_end"] = "\n"
        ascii_data_table.options["treat_header_as_comment"] = True
    if ascii_data_table.footer is not None:
        ascii_data_table.options["comment_begin"] = "#"
        ascii_data_table.options["comment_end"] = "\n"
        ascii_data_table.options["treat_footer_as_comment"] = True
    # ascii_data_table.update_model()
    ascii_data_table.save_schema(schema_file_name)
    ascii_data_table.save(file_name)
    ascii_data_table.options = original_options
    return [file_name, schema_file_name]

def AsciiDataTable_to_DataFrame(

ascii_data_table)

Converts an AsciiDataTable to a pandas.DataFrame discarding any header or footer information

def AsciiDataTable_to_DataFrame(ascii_data_table):
    """Converts an AsciiDataTable to a pandas.DataFrame
    discarding any header or footer information"""
    data_frame=pandas.DataFrame(data=ascii_data_table.data,columns=ascii_data_table.column_names)
    return data_frame

def AsciiDataTable_to_DataFrameDictionary(

AsciiDataTable)

Converts an AsciiDataTable to a dictionary of pandas.DataFrame s

def AsciiDataTable_to_DataFrameDictionary(AsciiDataTable):
    """Converts an AsciiDataTable to a dictionary of pandas.DataFrame s"""
    output_dict={}
    for element in AsciiDataTable.elements:
        #print("{0} is {1}".format('element',element))
        if AsciiDataTable.__dict__[element]:
            if re.search('header',element,re.IGNORECASE):
                header_table=pandas.DataFrame(AsciiDataTable.header,columns=["Header_Line_Content"])
                output_dict["Header"]=header_table
            # needs to be before data search
            elif re.search('meta',element,re.IGNORECASE):
                #print("{0} is {1}".format('element',element))
                metadata_table=pandas.DataFrame([[key,value] for key,value in AsciiDataTable.metadata.items()],
                                columns=["Property","Value"])
                output_dict["Metadata"]=metadata_table
            elif re.search('data|^meta',element,re.IGNORECASE):

                data_table=pandas.DataFrame(AsciiDataTable.data,columns=AsciiDataTable.column_names)
                output_dict["Data"]=data_table

            elif re.search('footer',element,re.IGNORECASE):
                footer_table=pandas.DataFrame(AsciiDataTable.footer,columns=["Footer_Line_Content"])
                output_dict["Footer"]=footer_table

            elif re.search('comment',element,re.IGNORECASE):
                comments=AsciiDataTable.__dict__[element]
                inline_comments=pandas.DataFrame(comments,columns=["Comment","Line","Location"])
                output_dict["Comments"]=inline_comments
    return output_dict

def AsciiDataTable_to_ExcelFile(

ascii_data_table, file_path=None)

Converts an AsciiDataTable to an excel spreadsheet using pandas

def AsciiDataTable_to_ExcelFile(ascii_data_table,file_path=None):
    """Converts an AsciiDataTable to an excel spreadsheet using pandas"""
    if ascii_data_table.header:
        data_frame=pandas.DataFrame(data=ascii_data_table.data,columns=ascii_data_table.column_names,index=False)

def AsciiDataTable_to_File(

ascii_data_table, file_name='Test.txt', schema_file_name='schema')

def AsciiDataTable_to_File(ascii_data_table, file_name="Test.txt", schema_file_name="schema"):
    paths = [file_name, schema_file_name]
    ascii_data_table.save(file_name)
    ascii_data_table.save_schema(schema_file_name)
    return paths

def AsciiDataTable_to_HpFile(

ascii_data_table, file_name='test.txt', schema_file_name='schema_hp')

Converts an AsciiDataTable into an csv file by setting options and saving

def AsciiDataTable_to_HpFile(ascii_data_table, file_name="test.txt", schema_file_name="schema_hp"):
    """Converts an AsciiDataTable into an csv file by setting options and saving"""
    original_options = ascii_data_table.options.copy()
    ascii_data_table.options["column_names_begin_token"] = "!"
    ascii_data_table.options["column_names_end_token"] = "\n"
    ascii_data_table.options["data_table_element_separator"] = None
    ascii_data_table.options["data_begin_token"] = None
    ascii_data_table.options["data_end_token"] = None
    ascii_data_table.options["data_delimiter"] = "  "
    ascii_data_table.options["column_names_delimiter"] = "  "
    if ascii_data_table.header is not None:
        ascii_data_table.options["comment_begin"] = "!"
        ascii_data_table.options["comment_end"] = "\n"
        ascii_data_table.options["treat_header_as_comment"] = True
    if ascii_data_table.footer is not None:
        ascii_data_table.options["comment_begin"] = "!"
        ascii_data_table.options["comment_end"] = "\n"
        # ascii_data_table.options["treat_header_as_comment"]=True
        ascii_data_table.options["treat_footer_as_comment"] = True
    # ascii_data_table.update_model()
    ascii_data_table.save_schema(schema_file_name)
    ascii_data_table.save(file_name)
    ascii_data_table.options = original_options
    return [file_name, schema_file_name]

def AsciiDataTable_to_NumpyArray(

data_table, exclude_columns=None)

Converts a table's data into a 1-D np.array

def AsciiDataTable_to_NumpyArray(data_table,exclude_columns=None):
    """Converts a table's data into a 1-D np.array"""
    column_names=data_table.column_names[:]
    if exclude_columns:
        for column_name in column_names:
            if column_name in exclude_columns:
                column_names.remove(column_name)
    data_list=[]
    for column_name in column_names:
        data_list=data_list+data_table[column_name]
    numpy_array=np.array(data_list)
    return numpy_array

def AsciiDataTable_to_XmlDataTable(

ascii_data_table, **options)

Takes an AsciiDataTable and returns a XmlDataTable with **options

def AsciiDataTable_to_XmlDataTable(ascii_data_table,**options):
    """Takes an AsciiDataTable and returns a XmlDataTable with **options"""
    defaults={"specific_descriptor":ascii_data_table.options["specific_descriptor"],
                     "general_descriptor":ascii_data_table.options["general_descriptor"],
                      "directory":ascii_data_table.options["directory"],
              "style_sheet":"./DEFAULT_STYLE.xsl"
                     }
    XML_options={}
    for key,value in defaults.items():
        XML_options[key]=value
    for key,value in options.items():
        XML_options[key]=value
    # Todo: Clean this up so the AsciiDataTable.column_names always goes to an XML attribute that is properly named
    for index,column_name in enumerate(ascii_data_table.column_names[:]):
        ascii_data_table.column_names[index]=column_name.replace("*","_times_").replace("/","_div_").replace("(","_").replace(")","_").replace("-","_")

    data_description={}
    if ascii_data_table.options["column_descriptions"] is not None:
        if isinstance(ascii_data_table.options["column_descriptions"], DictionaryType):
            for key,value in ascii_data_table.options["column_descriptions"].items():
                data_description[key]=value
        elif isinstance(ascii_data_table.options["column_descriptions"], ListType):
            for index,value in enumerate(ascii_data_table.options["column_descriptions"]):
                key=ascii_data_table.column_names[index]
                data_description[key]=value

    if ascii_data_table.metadata is not None:
        for key,value in ascii_data_table.metadata.items():
            data_description[key]=value
    else:
        if ascii_data_table.header is not None:
            for index,line in enumerate(ascii_data_table.header):
                key="Header_{0:0>3}".format(index)
                data_description[key]=line
        if ascii_data_table.footer is not None:
            for index,line in enumerate(ascii_data_table.footer):
                key="Footer_{0:0>3}".format(index)
                data_description[key]=line
    data_dictionary={"Data_Description":data_description,"Data":ascii_data_table.get_data_dictionary_list()}
    XML_options["data_dictionary"]=data_dictionary
    new_xml_data_table=DataTable(None,**XML_options)
    return new_xml_data_table

def AsciiTable_to_HtmlString(

ascii_table)

Converts an AsciiDataTable with no header or footer to a html table.

def AsciiTable_to_HtmlString(ascii_table):
    """Converts an AsciiDataTable with no header or footer to a html table."""
    # it would be best if this resulted in identical html, but I think it might be close enough
    ascii_table_original_options=ascii_table.options.copy()
    ascii_table.options["data_begin_token"]="<tbody>"
    ascii_table.options["data_end_token"]="</tbody></table>"
    ascii_table.options["data_delimiter"]="</td><td>"
    ascii_table.options["row_begin_token"]="<tr><td>"
    ascii_table.options["row_end_token"]="</td></tr>"
    ascii_table.options["column_names_begin_token"]="<table><thead><tr><th>"
    ascii_table.options["column_names_end_token"]="</th></tr></thead>"
    ascii_table.options["column_names_delimiter"]="</th><th>"
    out_string=str(ascii_table)
    ascii_table.options=ascii_table_original_options
    return out_string

def AsciiTable_to_MatFile(

ascii_data_table, file_name='test.mat')

Transforms an ascii data table without a header or footer to a matlab form

def AsciiTable_to_MatFile(ascii_data_table,file_name="test.mat"):
    """Transforms an ascii data table without a header or footer to a matlab form"""
    matlab_data_dictionary={"data":ascii_data_table.data,"column_names":ascii_data_table.column_names}
    savemat(file_name,matlab_data_dictionary)
    return file_name

def Base64Png_to_EmbeddedHtmlString(

base64_encoded_png)

def Base64Png_to_EmbeddedHtmlString(base64_encoded_png):
    html_string="<img src='data:image/png;base64,{0}' />".format(base64_encoded_png)
    return html_string

def Base64_to_PngFile(

base64_encoded_png, file_name='test.png')

def Base64_to_PngFile(base64_encoded_png,file_name="test.png"):
    out_file=open(file_name, "wb")
    decoded=base64.b64decode(base64_encoded_png)
    out_file.write(decoded)
    out_file.close()
    return file_name

def CStringIo_to_String(

string_io_object)

Converts a StringIO.StringIO object to a string. Inverse of String_to_CStringIo

def CStringIo_to_String(string_io_object):
    """Converts a StringIO.StringIO object to a string.
     Inverse of String_to_CStringIo"""
    return string_io_object.getvalue()

def CsvFile_to_AsciiDataTable(

csv_file_name)

def CsvFile_to_AsciiDataTable(csv_file_name):
    options={"column_names_begin_line":0,"column_names_end_line":1,
             "data_begin_line":1,"data_end_line":-1,"data_delimiter":",","column_names_delimiter":","}
    table=AsciiDataTable(csv_file_name,**options)
    return table

def CsvFile_to_DataFrame(

csv_file_name)

Converts a csv file to a panads.DataFrame. Inverse of DataFrame_to_CsvFile

def CsvFile_to_DataFrame(csv_file_name):
    """Converts a csv file to a panads.DataFrame.
    Inverse of DataFrame_to_CsvFile"""
    data_frame=pandas.read_csv(csv_file_name)
    return data_frame

def DataFrameDictionary_to_AsciiDataTable(

DataFrame_dict, **options)

Given a dictionary of pandas DataFrames returns an AsciiDataTable

def DataFrameDictionary_to_AsciiDataTable(DataFrame_dict, **options):
    """Given a dictionary of pandas DataFrames returns an AsciiDataTable"""
    defaults = {"comment_begin": "!", "comment_end": "\n",
                "column_names_begin_token": "!", "column_names_end_token": "\n",
                "data_delimiter": "  ", "data_table_element_separator": None}
    # defaults={}
    table_options = {}
    for key, value in defaults.items():
        table_options[key] = value
    for key, value in options.items():
        table_options[key] = value
    keys = list(DataFrame_dict.keys())
    for key in keys:
        table_key = key
        if re.search("comments", key, re.IGNORECASE):
            table_key = "inline_comments"
            table_options[table_key] = DataFrame_dict[key].as_matrix().tolist()

        elif key in ["data", "Data"]:
            table_options["column_names"] = DataFrame_dict[key].columns.tolist()
            table_options["column_types"] = [str(x) for x in DataFrame_dict[key].dtypes.tolist()]
            table_options["data"] = DataFrame_dict[key].as_matrix().tolist()

        elif re.search("footer", key, re.IGNORECASE):
            list_of_lists = DataFrame_dict[key].as_matrix().tolist()
            list_of_strings = [str(row[0]) for row in list_of_lists]
            table_options["footer"] = list_of_strings

        elif re.search("header", key, re.IGNORECASE):
            table_options["treat_header_as_comment"] = True
            list_of_lists = DataFrame_dict[key].as_matrix().tolist()
            list_of_strings = [str(row[0]) for row in list_of_lists]
            # print("{0} is {1}".format("list_of_lists",list_of_lists))
            table_options["header"] = list_of_strings

        elif re.search("meta", key, re.IGNORECASE):
            list_of_lists = DataFrame_dict[key].as_matrix().tolist()
            dictionary = {str(row[0]): str(row[1]) for row in list_of_lists}
            table_options["metadata"] = dictionary

    new_table = AsciiDataTable(None, **table_options)
    return new_table

def DataFrameDictionary_to_ExcelFile(

DataFrame_dict, excel_file_name='Test.xlsx')

Converts a dictionary of pandas DataFrames to a single excel file with sheet names determined by keys

def DataFrameDictionary_to_ExcelFile(DataFrame_dict,excel_file_name="Test.xlsx"):
    """Converts a dictionary of pandas DataFrames to a single excel file with sheet names
    determined by keys"""
    # sort the keys so that they will display in the same order
    writer = pandas.ExcelWriter(excel_file_name)
    keys=sorted(DataFrame_dict.keys())
    for key in keys:
        #print key
        DataFrame_dict[key].to_excel(writer,sheet_name=key,index=False)
    writer.close()
    return excel_file_name

def DataFrameDictionary_to_HdfFile(

DataFrame_dict, hdf_file_name='Test.hd5')

Transforms a dictionary of pandas.DataFrames to a single HD5 file with groups determined by the keys

def DataFrameDictionary_to_HdfFile(DataFrame_dict, hdf_file_name="Test.hd5"):
    """Transforms a dictionary of pandas.DataFrames to a single HD5 file with groups determined by the keys"""
    keys = sorted(DataFrame_dict.keys())
    for key in keys:
        DataFrame_dict[key].to_hdf(hdf_file_name, key)
    print(("{0} is {1}".format('key', key)))
    return hdf_file_name

def DataFrame_to_AsciiDataTable(

pandas_data_frame, **options)

Converts a pandas.DataFrame to an AsciiDataTable

def DataFrame_to_AsciiDataTable(pandas_data_frame,**options):
    """Converts a pandas.DataFrame to an AsciiDataTable"""
    # Set up defaults and pass options
    defaults={}
    conversion_options={}
    for key,value in defaults.items():
        conversion_options[key]=value
    for key,value in options.items():
        conversion_options[key]=value

    conversion_options["column_names"]=pandas_data_frame.columns.tolist()[:]
    conversion_options["data"]=pandas_data_frame.as_matrix().tolist()[:]
    conversion_options["column_types"]=[str(x) for x in pandas_data_frame.dtypes.tolist()[:]]

    new_table=AsciiDataTable(None,**conversion_options)
    return new_table

def DataFrame_to_CsvFile(

pandas_data_frame, file_name='test.csv')

Converts a pandas.DataFrame to a Csv file with default file_name test.csv. Inverse of CsvFile_to_DataFrame.

def DataFrame_to_CsvFile(pandas_data_frame,file_name="test.csv"):
    """Converts a pandas.DataFrame to a Csv file with default file_name test.csv.
    Inverse of CsvFile_to_DataFrame."""
    csv=pandas_data_frame.to_csv(file_name,index=False)
    return file_name

def DataFrame_to_Dictionary(

pandas_data_frame)

Takes a pandas.DataFrame with column names ["Property","Value"] and returns a python dictionary

def DataFrame_to_Dictionary(pandas_data_frame):
    """Takes a pandas.DataFrame with column names ["Property","Value"] and returns a python dictionary"""
    list_of_lists=pandas_data_frame.as_matrix().tolist()
    dictionary={row[0]:replace_None(row[1]) for row in list_of_lists}
    return dictionary

def DataFrame_to_ExcelFile(

pandas_data_frame, file_name='Test.xlsx')

Converts a pandas.DataFrame to an excel file using to_excel with index=False

def DataFrame_to_ExcelFile(pandas_data_frame,file_name="Test.xlsx"):
    "Converts a pandas.DataFrame to an excel file using to_excel with index=False"
    pandas_data_frame.to_excel(file_name,index=False)
    return file_name

def DataFrame_to_HdfFile(

pandas_data_frame, hdf_file_name='test.hdf')

Saves a DataFrame as an HDF File, returns the file name

def DataFrame_to_HdfFile(pandas_data_frame,hdf_file_name="test.hdf"):
    """Saves a DataFrame as an HDF File, returns the file name"""
    pandas_data_frame.to_hdf(hdf_file_name,"table")
    return hdf_file_name

def DataFrame_to_HtmlFile(

pandas_data_frame, file_name='test.html')

def DataFrame_to_HtmlFile(pandas_data_frame,file_name="test.html"):
    # need to supress all the styles and what not
    out_file=open(file_name,'w')
    pandas_data_frame.to_html(out_file,index=False)
    return file_name

def DataFrame_to_HtmlString(

pandas_data_frame)

Converts a pandas.DataFrame to a html table using index=False inverse of HtmlString_to_DataFrame

def DataFrame_to_HtmlString(pandas_data_frame):
    """Converts a pandas.DataFrame to a html table using index=False
    inverse of HtmlString_to_DataFrame"""
    html=pandas_data_frame.to_html(index=False)
    return html

def DataFrame_to_JsonFile(

pandas_data_frame, file_name='test.json')

Converts a pandas.DataFrame to a JsonFile using orient='records' inverse of JsonFile_to_DataFrame

def DataFrame_to_JsonFile(pandas_data_frame,file_name="test.json"):
    """Converts a pandas.DataFrame to a JsonFile using orient='records'
    inverse of JsonFile_to_DataFrame"""
    json=pandas_data_frame.to_json(file_name,orient='records')
    return file_name

def DataFrame_to_JsonString(

pandas_data_frame)

Converts a pandas.DataFrame to a Json string in the form {column_name:value,...}. Inverse of JsonString_to_DataFrame.

def DataFrame_to_JsonString(pandas_data_frame):
    """Converts a pandas.DataFrame to a Json string in the form {column_name:value,...}.
    Inverse of JsonString_to_DataFrame."""
    json=pandas_data_frame.to_json(orient='records')
    return json

def Dictionary_to_DataFrame(

python_dictionary)

Takes a python dictionary and maps it to a pandas dataframe

def Dictionary_to_DataFrame(python_dictionary):
    """Takes a python dictionary and maps it to a pandas dataframe"""
    data_frame=pandas.DataFrame([[key,value] for key,value in python_dictionary.items()],
                                columns=["Property","Value"])
    data_frame.fillna("None")
    return data_frame

def Dictionary_to_HeaderList(

python_dictionary)

Converts a python dictionary to a list of strings in the form ['key1=value1',..'keyN=valueN']

def Dictionary_to_HeaderList(python_dictionary):
    "Converts a python dictionary to a list of strings in the form ['key1=value1',..'keyN=valueN']"
    out_string=""
    out_list=[]
    for key,value in python_dictionary.items():
        out_string="{0}={1}".format(key,value)
        out_list.append(out_string)
    return out_list

def Dictionary_to_HtmlMetaString(

python_dictionary)

Converts a python dictionary to meta tags for html

def Dictionary_to_HtmlMetaString(python_dictionary):
    """Converts a python dictionary to meta tags for html"""
    out_string=""
    for key,value in python_dictionary.items():
        out_string=out_string+"<meta name="+'"{0}"'.format(key)+" content="+'"{0}"'.format(value)+" />\n"
    return out_string

def Dictionary_to_JsonString(

python_dictionary)

Uses json module to create a json string from a python dictionary

def Dictionary_to_JsonString(python_dictionary):
    """Uses json module to create a json string from a python dictionary"""
    return json.dumps(python_dictionary)

def Dictionary_to_ListList(

python_dictionary)

Returns a list with two lists : [[key_list][item_list]]

def Dictionary_to_ListList(python_dictionary):
    """Returns a list with two lists : [[key_list][item_list]]"""
    key_list=[]
    value_list=[]
    for key,value in python_dictionary.items():
        key_list.append(key)
        value_list.append(value)
    out_list=[key_list,value_list]
    return out_list

def Dictionary_to_PickleFile(

python_dictionary, file_name='dictionary.pkl')

Python Dictionary to pickled file

def Dictionary_to_PickleFile(python_dictionary,file_name="dictionary.pkl"):
    """Python Dictionary to pickled file"""
    pickle.dump(python_dictionary,open(file_name,'wb'))
    return file_name

def Dictionary_to_XmlString(

dictionary=None, char_between='\n')

Transforms a python dictionary to a XML string of the form value

def Dictionary_to_XmlString(dictionary=None,char_between='\n'):
    """Transforms a python dictionary to a XML string of the form <key>value</key>"""
    string_output=''
    for key,value in dictionary.items():
        xml_open="<"+str(key)+">"
        xml_close="</"+str(key)+">"
        string_output=string_output+xml_open+str(value)+xml_close+char_between
    return string_output

def Dictionary_to_XmlTupleString(

python_dictionary)

transforms a python dictionary into a xml line in the form

def Dictionary_to_XmlTupleString(python_dictionary):
    """transforms a python dictionary into a xml line in the form
    <Tuple key1="value1" key2="value2"..keyN="valueN" />"""
    prefix="<Tuple "
    postfix=" />"
    inner=""
    xml_out=""
    for key,value in python_dictionary.items():
        inner=inner+'{0}="{1}" ' .format(key,value)
        xml_out=prefix+inner+postfix
    return xml_out

def DocFile_to_HtmlFile(

doc_file_name, html_file_name='test.html')

Converts a microsoft doc or docx file to a filtered html file using word. Requires word and win32com to be installed. FileFormat=10 is filtered html for SaveAs, search for WdSaveFormat Enumeration to see more details. Returns the new file name

def DocFile_to_HtmlFile(doc_file_name,html_file_name="test.html"):
    """Converts a microsoft doc or docx file to a filtered html file using word.
    Requires word and win32com to be installed.
    FileFormat=10 is filtered html for SaveAs, search for WdSaveFormat Enumeration to see more details.
    Returns the new file name"""
    split_doc_name=list(os.path.split(doc_file_name))
    split_html_name=list(os.path.split(html_file_name))
    if not split_doc_name[0]:
        split_doc_name[0]=os.getcwd()
        doc_file_name=os.path.join(*split_doc_name)
    if not split_html_name[0]:
        split_html_name[0]=os.getcwd()
        html_file_name=os.path.join(*split_html_name)
    word=client.DispatchEx("Word.Application")
    doc=word.Documents.Open(doc_file_name)
    doc.SaveAs(html_file_name,FileFormat=10)
    doc.Close()
    word.Quit()
    return html_file_name

def DocFile_to_OdtFile(

doc_file_name, odt_file_name='test.odt')

Converts a microsoft doc or docx file to a open document format file using word. Requires word and win32com to be installed. FileFormat=23 is odt for SaveAs, search for WdSaveFormat Enumeration to see more details. This one required guessing at the integer value. Returns the new file name

def DocFile_to_OdtFile(doc_file_name,odt_file_name="test.odt"):
    """Converts a microsoft doc or docx file to a open document format file using word.
    Requires word and win32com to be installed.
    FileFormat=23 is odt for SaveAs, search for WdSaveFormat Enumeration to see more details.
    This one required guessing at the integer value.
    Returns the new file name"""
    split_doc_name=list(os.path.split(doc_file_name))
    split_odt_name=list(os.path.split(odt_file_name))
    if not split_doc_name[0]:
        split_doc_name[0]=os.getcwd()
        doc_file_name=os.path.join(*split_doc_name)
    if not split_odt_name[0]:
        split_odt_name[0]=os.getcwd()
        odt_file_name=os.path.join(*split_odt_name)
    word=client.DispatchEx("Word.Application")
    doc=word.Documents.Open(doc_file_name)
    doc.SaveAs(odt_file_name,FileFormat=23)
    doc.Close()
    word.Quit()
    return odt_file_name

def DocFile_to_PdfFile(

doc_file_name, pdf_file_name='test.pdf')

Converts a microsoft doc or docx file to a pdf using word. Requires word and win32com to be installed. FileFormat=17 is pdf for SaveAs, search for WdSaveFormat Enumeration to see more details. Returns the new file name

def DocFile_to_PdfFile(doc_file_name,pdf_file_name="test.pdf"):
    """Converts a microsoft doc or docx file to a pdf using word.
    Requires word and win32com to be installed.
    FileFormat=17 is pdf for SaveAs, search for WdSaveFormat Enumeration to see more details.
    Returns the new file name"""
    split_doc_name=list(os.path.split(doc_file_name))
    split_pdf_name=list(os.path.split(pdf_file_name))
    if not split_doc_name[0]:
        split_doc_name[0]=os.getcwd()
        doc_file_name=os.path.join(*split_doc_name)
    if not split_pdf_name[0]:
        split_pdf_name[0]=os.getcwd()
        pdf_file_name=os.path.join(*split_pdf_name)
    word=client.DispatchEx("Word.Application")
    doc=word.Documents.Open(doc_file_name)
    doc.SaveAs(pdf_file_name,FileFormat=17)
    doc.Close()
    word.Quit()
    return pdf_file_name

Given a download link of the form text returns a unencoded text string

def EmbeddedHtmlString_to_Base64Png(

html_string)

def EmbeddedHtmlString_to_Base64Png(html_string):
    pattern=re.compile("<img src='data:image/png;base64,(?P<data>.+)' />")
    match=re.search(pattern,html_string)
    if match:
        encoded=match.groupdict()["data"]
    else:
        raise
    return encoded

def ExcelFile_to_DataFrame(

excel_file_name)

Converts an excel file to a pandas.DataFrame

def ExcelFile_to_DataFrame(excel_file_name):
    "Converts an excel file to a pandas.DataFrame"
    df=pandas.read_excel(excel_file_name)
    return df

def ExcelFile_to_DataFrameDictionary(

excel_file_name)

Reads an excel file into a dictionary of data frames

def ExcelFile_to_DataFrameDictionary(excel_file_name):
    """Reads an excel file into a dictionary of data frames"""
    data_frame_dictionary = pandas.read_excel(excel_file_name, sheetname=None)
    return data_frame_dictionary

def ExcelFile_to_OdsFile(

excel_file_name, ods_file_name='test.ods')

Converts a microsoft xlsx or xls file to a open document spreadsheet file using excel. Requires word and win32com to be installed. FileFormat=60 is ods for SaveAs, search for XlFileFormat Enumeration to see more details. Returns the new file name

def ExcelFile_to_OdsFile(excel_file_name,ods_file_name="test.ods"):
    """Converts a microsoft xlsx or xls file to a open document spreadsheet file using excel.
    Requires word and win32com to be installed.
    FileFormat=60 is ods for SaveAs, search for XlFileFormat Enumeration to see more details.
    Returns the new file name"""
    split_excel_name=list(os.path.split(excel_file_name))
    split_ods_name=list(os.path.split(ods_file_name))
    if not split_excel_name[0]:
        split_excel_name[0]=os.getcwd()
        excel_file_name=os.path.join(*split_excel_name)
    if not split_ods_name[0]:
        split_ods_name[0]=os.getcwd()
        ods_file_name=os.path.join(*split_ods_name)
    excel=client.DispatchEx("Excel.Application")
    workbook=excel.Workbooks.Open(excel_file_name)
    workbook.SaveAs(ods_file_name,FileFormat=60,ConflictResolution=2)
    workbook.Close()
    excel.Quit()
    return ods_file_name

def FigFile_to_MatplotlibFigure(

filename, fignr=1)

Function that uses loadmat to create a matplotlib plot of a matlab fig file

def FigFile_to_MatplotlibFigure(filename,fignr=1):
    "Function that uses loadmat to create a matplotlib plot of a matlab fig file"
    from scipy.io import loadmat
    from numpy import size
    from matplotlib.pyplot import plot,figure,hold,xlabel,ylabel,show,clf,xlim,legend
    d = loadmat(filename,squeeze_me=True, struct_as_record=False)
    ax1 = d['hgS_070000'].children
    if size(ax1) > 1:
        legs= ax1[1]
        ax1 = ax1[0]
    else:
        legs=0
    fig=figure(fignr)
    clf()
    hold(True)
    counter = 0
    for line in ax1.children:
        if line.type == 'graph2d.lineseries':
            if hasattr(line.properties,'Marker'):
                mark = "%s" % line.properties.Marker
                mark = mark[0]
            else:
                mark = '.'
            if hasattr(line.properties,'LineStyle'):
                linestyle = "%s" % line.properties.LineStyle
            else:
                linestyle = '-'
            if hasattr(line.properties,'Color'):
                r,g,b =  line.properties.Color
            else:
                r = 0
                g = 0
                b = 1
            if hasattr(line.properties,'MarkerSize'):
                marker_size = line.properties.MarkerSize
            else:
                marker_size = 1
            x = line.properties.XData
            y = line.properties.YData
            plot(x,y,marker=mark,linestyle=linestyle,color=(r,g,b),markersize=marker_size)
        elif line.type == 'text':
            if counter <1:
                #print(dir(line.properties))
                counter += 1
            elif counter < 2:
                #print dir(line.properties.String)
                xlabel("%s" % line.properties.String,fontsize = 16)
                counter += 1
            elif counter < 3:
                #print dir(line.properties.String)
                ylabel("%s" % line.properties.String,fontsize = 16)
                counter += 1
    xlim(ax1.properties.XLim)
    if legs:
        leg_entries = tuple(legs.properties.String)
        py_locs = ['upper center','lower center','right','left','upper right','upper left','lower right','lower left','best']
        MAT_locs=['North','South','East','West','NorthEast', 'NorthWest', 'SouthEast', 'SouthWest','Best']
        Mat2py = dict(list(zip(MAT_locs,py_locs)))
        location = legs.properties.Location
        legend(leg_entries,loc=Mat2py[location])
    hold(False)
    show()
    return fig

def FileName_to_HtmlBase(

file_path, xsl_directory='C:\\ProgramData\\Anaconda2\\lib\\site-packages\\pyMez\\Code\\DataHandlers\\Tests\\../XSL')

Return an html version of the file for display

def FileName_to_HtmlBase(file_path, xsl_directory=os.path.join(TESTS_DIRECTORY, "../XSL")):
    """Return an html version of the file for display"""
    file_location = file_path
    extension = file_location.split('.')[-1]
    if extension in ['s2p', "S2P"]:
        table = S2PV1(file_location)
        table.change_data_format("RI")
        xml = S2PV1_to_XmlDataTable(table, format="RI", style_sheet=os.path.join(xsl_directory, "S2P_RI_STYLE.xsl"))

    elif extension in ['parameter', 'model', 'vnauncert', 'meas']:
        xml = XMLBase(file_location, **{"style_sheet": os.path.join(xsl_directory, "MUF_MENU_STYLE.xsl")})

    elif extension in ['conn']:
        xml = XMLBase(file_location, **{"style_sheet": os.path.join(xsl_directory, "VNATOOLS_CONNECTOR_STYLE.xsl")})

    elif extension in ['vnadev']:
        xml = XMLBase(file_location, **{"style_sheet": os.path.join(xsl_directory, "VNATOOLS_VNA_STYLE.xsl")})

    elif extension in ['cable']:
        xml = XMLBase(file_location, **{"style_sheet": os.path.join(xsl_directory, "VNATOOLS_CABLE_STYLE.xsl")})

    elif re.search('xml', extension, re.IGNORECASE):
        if re.search("Resource_Registry", file_location, re.IGNORECASE) and not re.search("Metadata", file_location,
                                                                                          re.IGNORECASE):
            xml = XMLBase(file_location, **{"style_sheet": os.path.join(xsl_directory, "FR_STYLE.xsl")})
        elif re.search("Resource_Registry", file_location, re.IGNORECASE) and re.search("Metadata", file_location,
                                                                                        re.IGNORECASE):
            xml = XMLBase(file_location, **{"style_sheet": os.path.join(xsl_directory, "METADATA_STYLE.xsl")})
        elif re.search("Log", file_location, re.IGNORECASE):
            xml = XMLBase(file_location, **{"style_sheet": os.path.join(xsl_directory, "DEFAULT_LOG_STYLE.xsl")})
        else:
            xml = XMLBase(file_location, **{"style_sheet": os.path.join(xsl_directory, "DEFAULT_STYLE.xsl")})

    elif re.search('htm', extension, re.IGNORECASE):
        xml = HTMLEcho(file_location)

    elif extension in ['s1p', 'S1P']:
        table = S1PV1(file_location)
        xml = S1PV1_to_XmlDataTable(table, **{"style_sheet": os.path.join(xsl_directory, "S1P_STYLE.xsl")})

    elif re.match('s[\d]+p', extension, re.IGNORECASE):
        table = SNP(file_location)
        table.change_data_format("MA")
        xml = SNP_to_XmlDataTable(table, style_sheet=os.path.join(xsl_directory, "S2P_MA_STYLE.xsl"), format="MA")

    elif re.match('w2p', extension, re.IGNORECASE):
        # print("Caught File, Being Handled by .txt statement")
        # print("{0} is {1}".format('file_location',file_location))

        table = W2P(file_location)

        xml = AsciiDataTable_to_XmlDataTable(table,
                                             **{"style_sheet": os.path.join(xsl_directory,
                                                                            "DEFAULT_MEASUREMENT_STYLE.xsl")})
    elif re.match('txt', extension, re.IGNORECASE):
        # print("Caught File, Being Handled by .txt statement")
        # print("{0} is {1}".format('file_location',file_location))
        if re.search("CalCoefficients", file_location, re.IGNORECASE):
            print("Caught File, Being Handled by CalCoefficients.txt statement")
            table = TwelveTermErrorModel(file_location)

            xml = AsciiDataTable_to_XmlDataTable(table,
                                                 **{"style_sheet": os.path.join(xsl_directory,
                                                                                "DEFAULT_MEASUREMENT_STYLE.xsl")})

        elif re.search("Solution_Plus", file_location, re.IGNORECASE):
            # print("Caught File, Being Handled by StatistiCALSolutionModel")
            table = StatistiCALSolutionModel(file_location)
            xml = AsciiDataTable_to_XmlDataTable(table,
                                                 **{"style_sheet": os.path.join(xsl_directory,
                                                                                "DEFAULT_MEASUREMENT_STYLE.xsl")})

    elif file_location.split('.')[-1] == file_location and re.search('_', file_location):
        print("Caught by JB Handler")
        table = JBSparameter(file_location)
        # old_prefix=table.get_frequency_units().replace('Hz','')
        # table.change_unit_prefix(column_selector=0,old_prefix=old_prefix,new_prefix='G',unit='Hz')
        # table.column_names=S2P_RI_COLUMN_NAMES
        # xml=AsciiDataTable_to_XmlDataTable(table,**{"style_sheet":"../XSL/S2P_STYLE_02.xsl"})
        s2p = JBSparameter_to_S2PV1(table)
        xml = S2PV1_to_XmlDataTable(s2p, style_sheet=os.path.join(xsl_directory, "S2P_DB_STYLE.xsl"))

    elif extension in ['asc', 'ASC', 'dut', 'DUT'] and not re.search('raw', file_location, re.IGNORECASE):
        file_model = sparameter_power_type(file_location)
        # print("{0} is {1}".format('file_model',file_model))
        model = globals()[file_model]
        calrep_model = model(file_location)
        if re.search("PowerCalrep", file_model):
            table = calrep_model.joined_table
            # print("{0} is {1}".format("table.column_names",table.column_names))
            if "uCe" in table.column_names:
                style_sheet = os.path.join(xsl_directory, "POWER_3TERM_CALREP_STYLE.xsl")
                # print("Power Model is 3TERM")
            else:
                style_sheet = os.path.join(xsl_directory, "POWER_CALREP_STYLE.xsl")
                # print("Power Model is 4TERM")

        elif re.search("TwoPortCalrep", file_model):
            table = calrep_model.joined_table
            style_sheet = os.path.join(xsl_directory, "TWO_PORT_CALREP_STYLE.xsl")

        else:
            table = calrep_model
            style_sheet = os.path.join(xsl_directory, "ONE_PORT_CALREP_STYLE_002.xsl")

        xml = AsciiDataTable_to_XmlDataTable(table, **{"style_sheet": style_sheet})

    elif re.search('(.)+_(.)+', extension) or re.search('raw', file_location, re.IGNORECASE):
        # print("The file is a raw file")
        file_model = sparameter_power_type(file_location)
        model = globals()[file_model]
        table = model(file_location)
        # print("{0} is {1}".format('file_model',file_model))
        if re.search("OnePort", file_model):
            style_sheet = os.path.join(xsl_directory, "ONE_PORT_RAW_STYLE.xsl")
        elif re.search("TwoPort", file_model):
            style_sheet = os.path.join(xsl_directory, "TWO_PORT_RAW_STYLE.xsl")
        elif re.search("PowerRaw", file_model):
            print("This is a raw Power File")
            style_sheet = os.path.join(xsl_directory, "POWER_RAW_STYLE_002.xsl")
        xml = AsciiDataTable_to_XmlDataTable(table, **{"style_sheet": style_sheet})
    else:
        raise
        # xml=XMLBase(style_sheet=os.path.join(xsl_directory,"DEFAULT_STYLE.xsl"))

    html = HTMLBase(html_text=xml.to_HTML())
    return html

def File_to_AsciiDataTable(

paths)

def File_to_AsciiDataTable(paths):
    [file_name, schema] = paths
    options = read_schema(schema)
    table = AsciiDataTable(file_name, **options)
    print(table)
    return table

def File_to_Image(

file_path)

Converts an image file to the Image class of PIL Inverse of Image_to_File

def File_to_Image(file_path):
    """Converts an image file to the Image class of PIL
    Inverse of Image_to_File"""
    new_image=PIL.Image.open(file_path)
    if re.search(".gif",file_path,re.IGNORECASE):
        new_image=new_image.convert("RGB")
    return new_image

def File_to_Model(

file_path, model_class_name)

Uses a class to open the File and returns an object of type model_class_name

def File_to_Model(file_path,model_class_name):
    """Uses a class to open the File and returns an object of type model_class_name"""
    return globals()[model_class_name](file_path)

def File_to_String(

file_name)

Opens a file and returns the contents as a string

def File_to_String(file_name):
    """Opens a file and returns the contents as a string"""
    in_file=open(file_name,'r')
    out_string=in_file.read()
    in_file.close()
    return out_string

def FrequencyList_to_FrequencyMatrixList(

frequency_list)

Converts a list of form [f,m11,m12,m21,m22] to a list of form [f,np.matrix([[m11,m12],[m12,m22]])] inverse of FrequencyMatrixList_to_FrequencyList

def FrequencyList_to_FrequencyMatrixList(frequency_list):
    """Converts a list of form [f,m11,m12,m21,m22] to a list of form [f,np.matrix([[m11,m12],[m12,m22]])]
    inverse of FrequencyMatrixList_to_FrequencyList """
    matrix_list=[]
    for row in frequency_list[:]:
        frequency=row[0]
        [m11,m12,m21,m22]=row[1:]
        matrix=np.matrix([[m11,m12],[m21,m22]])
        matrix_list.append([frequency,matrix])
    return matrix_list

def FrequencyMatrixList_to_FrequencyList(

frequency_matrix_list)

Converts a list of form [f,np.matrix([[m11,m12],[m12,m22]])] to a list of form [f,m11,m12,m21,m22] inverse of FrequencyList_to_FrequencyMatrixList

def FrequencyMatrixList_to_FrequencyList(frequency_matrix_list):
    """Converts a list of form [f,np.matrix([[m11,m12],[m12,m22]])] to a list of form [f,m11,m12,m21,m22]
    inverse of FrequencyList_to_FrequencyMatrixList"""
    frequency_list=[]
    for row in frequency_matrix_list[:]:
        frequency=row[0]
        matrix=row[1]
        [m11,m12,m21,m22]=[matrix[0,0],matrix[0,1],matrix[1,0],matrix[1,1]]
        frequency_list.append([frequency,m11,m12,m21,m22])
    return frequency_list

def HFrequencyList_to_ZFrequencyList(

h_frequency_list)

Converts h parameters into Z-parameters. h-parameters should be in the form [[f,h11,h12,h21,h22],...] Returns data in the form [[f,Z11,Z12,Z21,Z22],...]

def HFrequencyList_to_ZFrequencyList(h_frequency_list):
    """ Converts h parameters into Z-parameters. h-parameters should be in the form [[f,h11,h12,h21,h22],...]
    Returns data in the form
    [[f,Z11,Z12,Z21,Z22],...]
    """
    z_frequency_list=[]
    for row in h_frequency_list[:]:
        [frequency,h11,h12,h21,h22]=row
        Z11=(h11*h22-h12*h21)/h22
        Z12=h12/h22
        Z21=-1*h21/h22
        Z22=1/h22
        z_frequency_list.append([frequency,Z11,complex(abs(Z12.real),Z12.imag),complex(abs(Z21.real),Z21.imag),Z22])
    return z_frequency_list

def HdfFile_to_DataFrame(

hdf_file_name)

Opens a HDF with a Group named table and creates a pandas.DataFrame

def HdfFile_to_DataFrame(hdf_file_name):
    """Opens a HDF with a Group named table and creates a pandas.DataFrame"""
    pandas_data_frame=pandas.read_hdf(hdf_file_name,"table")
    return pandas_data_frame

def HdfFile_to_DataFrameDictionary(

hdf_file_name)

Creates a dictionary of pandas.DataFrames given a hd5 file name, does this require the table names?

def HdfFile_to_DataFrameDictionary(hdf_file_name):
    """Creates a dictionary of pandas.DataFrames given a hd5 file name, does this require the table names?
    """
    hdf = h5py.File(hdf_file_name)
    keys = list(hdf.keys())
    pandas_dictionary = {key: pandas.read_hdf(hdf_file_name, key) for key in keys}
    return pandas_dictionary

def HeaderList_to_Dictionary(

header_list)

Creates a python dictionary from a list of strings in the form ['key1=value1',..'keyN=valueN']

def HeaderList_to_Dictionary(header_list):
    "Creates a python dictionary from a list of strings in the form ['key1=value1',..'keyN=valueN']"
    out_dictionary={}
    for item in header_list:
        key_value_list=item.split("=")
        key=key_value_list[0].rstrip().lstrip()
        value=key_value_list[1].rstrip().lstrip()
        out_dictionary[key]=value
    return out_dictionary

def HtmlFile_to_DataFrame(

html_file_name)

def HtmlFile_to_DataFrame(html_file_name):
    in_file=open(html_file_name,'r')
    pandas_data_frame=pandas.read_html(in_file)
    return pandas_data_frame

def HtmlFile_to_HtmlString(

html_file_name)

def HtmlFile_to_HtmlString(html_file_name):
    in_file=open(html_file_name,'r')
    html_string=in_file.read()
    return html_string

def HtmlFile_to_PdfFile(

html_file_name, pdf_file_name='test.pdf')

Takes an html page and converts it to pdf using wkhtmltopdf and pdfkit

def HtmlFile_to_PdfFile(html_file_name,pdf_file_name="test.pdf"):
    """Takes an html page and converts it to pdf using wkhtmltopdf and pdfkit"""
    config = pdfkit.configuration(wkhtmltopdf=WKHTML_PATH)
    pdfkit.from_file(html_file_name,pdf_file_name,configuration=config)
    return pdf_file_name

def HtmlMetaString_to_Dictionary(

HTML_meta_tags_string)

Converts a python dictionary to meta tags for html

def HtmlMetaString_to_Dictionary(HTML_meta_tags_string):
    """Converts a python dictionary to meta tags for html"""
    pattern='<meta name="(?P<key>.+)" content="(?P<value>.+)" />'
    lines=HTML_meta_tags_string.splitlines()
    out_dictionary={}
    for line in lines:
        match=re.search(pattern,line)
        if match:
            key=match.groupdict()["key"]
            value=match.groupdict()["value"]
            out_dictionary[key]=value
    return out_dictionary

def HtmlString_to_DataFrame(

html_string)

Converts a Html String to a pandas.DataFrame, inverse of DataFrame_to_HtmlString

def HtmlString_to_DataFrame(html_string):
    "Converts a Html String to a pandas.DataFrame, inverse of DataFrame_to_HtmlString  "
    list_df=pandas.read_html(html_string)
    return list_df[0]

def HtmlString_to_HtmlFile(

html_string, file_name='test.html')

Saves an html string as a file with the default name

def HtmlString_to_HtmlFile(html_string,file_name="test.html"):
    """Saves an html string as a file with the default name """
    out_file=open(file_name,'w')
    out_file.write(html_string)
    out_file.close()
    return file_name

def HtmlString_to_PdfFile(

html_string, pdf_file_name='test.pdf')

Takes an html string and converts it to pdf using wkhtmltopdf and pdfkit

def HtmlString_to_PdfFile(html_string,pdf_file_name="test.pdf"):
    """Takes an html string and converts it to pdf using wkhtmltopdf and pdfkit"""
    config = pdfkit.configuration(wkhtmltopdf=WKHTML_PATH)
    pdfkit.from_string(html_string,pdf_file_name,configuration=config)
    return pdf_file_name

def Image_to_FaviconFile(

pil_image, file_path='favicon.png')

Converts an Image to a 32x32 pixel png thumbnail file. Returns the new file name

def Image_to_FaviconFile(pil_image,file_path="favicon.png"):
    """Converts an Image to a 32x32 pixel png thumbnail file. Returns the new file name"""
    size = (32, 32)
    temp_image=pil_image.copy()
    temp_image.thumbnail(size)
    temp_image.save(file_path)
    return file_path

def Image_to_File(

pil_image, file_path=None)

Converts the Image class of PIL to a file Inverse of File_to_Image

def Image_to_File(pil_image,file_path=None):
    """Converts the Image class of PIL to a file
    Inverse of File_to_Image"""
    if file_path is None:
        file_path=pil_image.filename
    pil_image.save(file_path)
    return file_path

def Image_to_FileType(

pil_image, file_path=None, extension='png')

More specific conversion of the Image class of PIL to a file, sets the output to RGB if possible returns the new file name

def Image_to_FileType(pil_image,file_path=None,extension="png"):
    """More specific conversion of the Image class of PIL to a file, sets the output to RGB if possible
    returns the new file name"""
    if file_path is None:
        file_path=pil_image.filename
    root_name=file_path.split(".")[0]
    new_file_name=root_name+"."+extension.replace(".","")
    if re.search('jp|bmp',extension,re.IGNORECASE):
        pil_image.convert('RGB')
    print(("{0} is {1}".format("pil_image.mode",pil_image.mode)))
    pil_image.save(new_file_name)
    return new_file_name

def Image_to_ThumbnailFile(

pil_image, file_path='thumbnail.jpg')

Converts an Image to a 64x64 pixel jpg thumbnail file. Returns the new file name

def Image_to_ThumbnailFile(pil_image,file_path="thumbnail.jpg"):
    """Converts an Image to a 64x64 pixel jpg thumbnail file. Returns the new file name"""
    size = (64, 64)
    temp_image=pil_image.copy()
    temp_image.thumbnail(size)
    temp_image.save(file_path)
    return file_path

def JBSparameter_to_S2PV1(

jb_model, **options)

Transforms a JBSparameter file to S2PV1

def JBSparameter_to_S2PV1(jb_model,**options):
    """Transforms a JBSparameter file to S2PV1 """
    table=jb_model
    path=table.path.split('.')[0]+".s2p"
    old_prefix=table.get_frequency_units().replace('Hz','')
    table.change_unit_prefix(column_selector=0,old_prefix=old_prefix,new_prefix='G',unit='Hz')
    data=table.data[:]
    comments=[[line,index,0] for index,line in enumerate(table.header[:])]
    s2p_options={"option_line":"# GHz S RI R 50","data":data,
                 "comments":comments,"path":path,"option_line_line":len(table.header),
                 "sparameter_begin_line":len(table.header)+1,"column_names":S2P_RI_COLUMN_NAMES}
    s2p_file=S2PV1(None,**s2p_options)
    return s2p_file

def JsonFile_to_DataFrame(

json_file_name)

Converts a JsonFile to a pandas.DataFrame using orient='records' inverse of DataFrame_to_JsonFile

def JsonFile_to_DataFrame(json_file_name):
    """Converts a JsonFile to a pandas.DataFrame using orient='records'
    inverse of DataFrame_to_JsonFile"""
    data_frame=pandas.read_json(json_file_name,orient='records')
    return data_frame

def JsonFile_to_JsonString(

json_file_name)

Transforms a Json file to a json string

def JsonFile_to_JsonString(json_file_name):
    "Transforms a Json file to a json string"
    in_file=open(json_file_name,'r')
    json_string=in_file.read()
    in_file.close()
    return json_string

def JsonFile_to_XmlDataTable(

json_file_name)

def JsonFile_to_XmlDataTable(json_file_name):
    data_dictionary_list=json.load(open(json_file_name,'r'))
    xml=DataTable(None,data_dictionary={"data":data_dictionary_list})
    return xml

def JsonString_to_DataFrame(

json_string)

Converts a JsonString to a pandas.DataFrame in the form with orient = records. Inverse of DataFrame_to_JsonString.

def JsonString_to_DataFrame(json_string):
    """Converts a JsonString to a pandas.DataFrame in the form with orient = records.
    Inverse of DataFrame_to_JsonString."""
    data_frame=pandas.read_json(json_string,orient='records')
    return data_frame

def JsonString_to_Dictionary(

json_string)

Uses json module to return a python dictionary

def JsonString_to_Dictionary(json_string):
    """Uses json module to return a python dictionary"""
    out_dictionary=json.loads(json_string)
    for key,value in out_dictionary.items():
        out_dictionary[key]=replace_None(value)
    return out_dictionary

def JsonString_to_JsonFile(

json_string, file_name='test.json')

Transforms a json string to a json file

def JsonString_to_JsonFile(json_string,file_name="test.json"):
    """Transforms a json string to a json file"""
    out_file=open(file_name,'w')
    out_file.write(json_string)
    out_file.close()
    return file_name

def ListList_to_Dictionary(

list_list)

takes a list of [[keys],[items]] and returns a dictionary

def ListList_to_Dictionary(list_list):
    """takes a list of [[keys],[items]] and returns a dictionary """
    keys=list_list[0]
    items=list_list[1]
    out_dictionary={}
    for index,key in enumerate(keys):
        out_dictionary[key]=items[index]
    return out_dictionary

def MatFile_to_AsciiDataTableKeyValue(

matlab_file_name)

def MatFile_to_AsciiDataTableKeyValue(matlab_file_name):
    matlab_data_dictionary=loadmat(matlab_file_name)
    #print matlab_data_dictionary
    data=[[x.rstrip().lstrip() for x in row] for row in matlab_data_dictionary["data"].tolist()]
    column_names=[x.rstrip().lstrip() for x in matlab_data_dictionary["column_names"].tolist()]
    ascii_data_table=AsciiDataTable(None,column_names=column_names,data=data)
    return ascii_data_table

def MatFile_to_AsciiTable(

matlab_file_name)

Converts a .mat file that has the variables column_names and table to an AsciiDataTable with no header or footer.

def MatFile_to_AsciiTable(matlab_file_name):
    """Converts a .mat file that has the variables column_names and table to an AsciiDataTable
    with no header or footer."""
    matlab_data_dictionary=loadmat(matlab_file_name)
    ascii_data_table=AsciiDataTable(None,
                                    column_names=[x.rstrip().lstrip() for x in matlab_data_dictionary["column_names"].tolist()],
                                     data=matlab_data_dictionary["data"].tolist())
    return ascii_data_table

def MatplotlibFigure_to_File(

figure, file_name)

Saves the figure to file name

def MatplotlibFigure_to_File(figure,file_name):
    """Saves the figure to file name"""
    figure.savefig(file_name,bbox_inches='tight', pad_inches=.1,dpi="figure")
    return file_name

def MatplotlibFigure_to_PngFile(

figure, file_name='test.png')

def MatplotlibFigure_to_PngFile(figure,file_name="test.png"):
    figure.savefig(file_name,bbox_inches='tight', pad_inches=.1,dpi="figure")
    return file_name

def MatplotlibFigure_to_SvgFile(

figure, file_name='test.svg')

def MatplotlibFigure_to_SvgFile(figure,file_name="test.svg"):
    figure.savefig(file_name,bbox_inches='tight', pad_inches=.1,dpi="figure")
    return file_name

def Model_to_File(

model, file_path=None)

Uses the save method of a model to create file, default path is save default for the model

def Model_to_File(model,file_path=None):
    """Uses the save method of a model to create file, default path is save default for the model"""
    if file_path:
        old_path=model.path
        model.path=file_path
        out=model.save()
        model.path=old_path
    else:
        out=model.save()
    return out

def Ndarray_to_Matplotlib(

nd_array)

def Ndarray_to_Matplotlib(nd_array):
    figure=plt.imshow(nd_array)
    figure.axes.get_xaxis().set_visible(False)
    figure.axes.get_yaxis().set_visible(False)
    plt.show()

def Ndarray_to_MatplotlibFigure(

nd_array)

def Ndarray_to_MatplotlibFigure(nd_array):
    plt.close()
    figure=plt.figure("Image",frameon=False)
    plt.figimage(nd_array,resize=True)
    return figure

def Ndarray_to_PngFile(

nd_array, file_name='test.png')

def Ndarray_to_PngFile(nd_array,file_name="test.png"):
    misc.imsave(file_name,nd_array)
    return file_name

def OdpFile_to_PptxFile(

odp_file_name, power_point_file_name='test.pptx')

Converts a odp to a open pptx format file using Power Point. Requires word and win32com to be installed. FileFormat=11 is DefaultPresentation default for SaveAs, search for PowerPointFileFormat Enumeration to see more details. Returns the new file name

def OdpFile_to_PptxFile(odp_file_name,power_point_file_name="test.pptx"):
    """Converts a odp  to a open pptx format file using Power Point.
    Requires word and win32com to be installed.
    FileFormat=11 is DefaultPresentation  default for SaveAs,
    search for PowerPointFileFormat Enumeration to see more details.
    Returns the new file name"""
    split_power_point_name=list(os.path.split(power_point_file_name))
    split_odp_name=list(os.path.split(odp_file_name))
    if not split_power_point_name[0]:
        split_power_point_name[0]=os.getcwd()
        power_point_file_name=os.path.join(*split_power_point_name)
    if not split_odp_name[0]:
        split_odp_name[0]=os.getcwd()
        odp_file_name=os.path.join(*split_odp_name)
    power_point=client.DispatchEx("PowerPoint.Application")
    presentation=power_point.Presentations.Open(odp_file_name)
    presentation.SaveAs(power_point_file_name,FileFormat=11)
    presentation.Close()
    power_point.Quit()
    return power_point_file_name

def OdsFile_to_ExcelFile(

ods_file_name, excel_file_name='test.xlsx')

Converts a microsoft excel or excelx file to a open document format file using excel. Requires word and win32com to be installed. FileFormat=51 is Workbook default for SaveAs, search for XlFileFormat Enumeration to see more details. Returns the new file name

def OdsFile_to_ExcelFile(ods_file_name,excel_file_name="test.xlsx"):
    """Converts a microsoft excel or excelx file to a open document format file using excel.
    Requires word and win32com to be installed.
    FileFormat=51 is Workbook default for SaveAs, search for XlFileFormat Enumeration to see more details.
    Returns the new file name"""
    split_excel_name=list(os.path.split(excel_file_name))
    split_ods_name=list(os.path.split(ods_file_name))
    if not split_excel_name[0]:
        split_excel_name[0]=os.getcwd()
        excel_file_name=os.path.join(*split_excel_name)
    if not split_ods_name[0]:
        split_ods_name[0]=os.getcwd()
        ods_file_name=os.path.join(*split_ods_name)
    excel=client.DispatchEx("Excel.Application")
    workbook=excel.Workbooks.Open(ods_file_name)
    workbook.SaveAs(excel_file_name,FileFormat=51,ConflictResolution=2)
    workbook.Close()
    excel.Quit()
    return excel_file_name

def OnePortCalrep_to_XmlDataTable(

one_port_calrep_table, **options)

Converts the 1-port calrep model to xml

def OnePortCalrep_to_XmlDataTable(one_port_calrep_table,**options):
    """Converts the 1-port calrep model to xml"""
    table=one_port_calrep_table
    defaults={"specific_descriptor":table.options["specific_descriptor"],
                     "general_descriptor":table.options["general_descriptor"],
                      "directory":table.options["directory"],
              "style_sheet":"../XSL/ONE_PORT_CALREP_STYLE.xsl"
                     }
    XML_options={}
    for key,value in defaults.items():
        XML_options[key]=value
    for key,value in options.items():
        XML_options[key]=value
    new_xml=AsciiDataTable_to_XmlDataTable(table,**XML_options)
    return new_xml

def PickleFile_to_Dictionary(

pickle_file_name)

open and read a pickled file with only a single python dictionary in it

def PickleFile_to_Dictionary(pickle_file_name):
    """open and read a pickled file with only a single python dictionary in it"""
    dictionary_out=pickle.load(open(pickle_file_name,'rb'))
    return dictionary_out

def PngFile_to_Base64(

file_name)

Converts a png file to a base 64 encoded string

def PngFile_to_Base64(file_name):
    """Converts a png file to a base 64 encoded string"""
    in_file=open(file_name, "rb")
    encoded=base64.b64encode(in_file.read()).decode()
    return encoded

def PngFile_to_JpgFile(

png_file_name)

Convets png file t a jpg using PIL

def PngFile_to_JpgFile(png_file_name):
    "Convets png file t a jpg using PIL "
    [root_name,extension]=png_file_name.split(".")
    jpeg_file_name=root_name+".jpg"
    PIL.Image.open(png_file_name).save(jpeg_file_name)
    return jpeg_file_name

def PngFile_to_Ndarray(

file_name)

def PngFile_to_Ndarray(file_name):
    nd_array=misc.imread(file_name)
    return nd_array

def PowerRawModel_to_XmlDataTable(

power_raw_table, **options)

Converts the 2-port raw model used by s-parameters to xml

def PowerRawModel_to_XmlDataTable(power_raw_table,**options):
    """Converts the 2-port raw model used by s-parameters to xml"""
    table=power_raw_table
    defaults={"specific_descriptor":table.options["specific_descriptor"],
                     "general_descriptor":table.options["general_descriptor"],
                      "directory":table.options["directory"],
              "style_sheet":"../XSL/POWER_RAW_STYLE.xsl"
                     }
    XML_options={}
    for key,value in defaults.items():
        XML_options[key]=value
    for key,value in options.items():
        XML_options[key]=value
    new_xml=AsciiDataTable_to_XmlDataTable(table,**XML_options)
    return new_xml

def PptxFile_to_OdpFile(

power_point_file_name, odp_file_name='test.odp')

Converts a pptx or ppt file to a open presentation format file using Power Point. Requires word and win32com to be installed. FileFormat=35 is odp default for SaveAs, search for PowerPointFileFormat Enumeration to see more details. Returns the new file name

def PptxFile_to_OdpFile(power_point_file_name,odp_file_name="test.odp"):
    """Converts a pptx or ppt file to a open presentation format file using Power Point.
    Requires word and win32com to be installed.
    FileFormat=35 is odp  default for SaveAs,
    search for PowerPointFileFormat Enumeration to see more details.
    Returns the new file name"""
    split_power_point_name=list(os.path.split(power_point_file_name))
    split_odp_name=list(os.path.split(odp_file_name))
    if not split_power_point_name[0]:
        split_power_point_name[0]=os.getcwd()
        power_point_file_name=os.path.join(*split_power_point_name)
    if not split_odp_name[0]:
        split_odp_name[0]=os.getcwd()
        odp_file_name=os.path.join(*split_odp_name)
    power_point=client.DispatchEx("PowerPoint.Application")
    presentation=power_point.Presentations.Open(power_point_file_name)
    presentation.SaveAs(odp_file_name,FileFormat=35)
    presentation.Close()
    power_point.Quit()
    return odp_file_name

def S1PV1_to_XmlDataTable(

s1p, **options)

Transforms a s1p's sparameters to a XmlDataTable. Converts the format to RI first

def S1PV1_to_XmlDataTable(s1p,**options):
    """Transforms a s1p's sparameters to a XmlDataTable. Converts the format to RI first"""
    defaults={"specific_descriptor":s1p.options["specific_descriptor"],
                     "general_descriptor":s1p.options["general_descriptor"],
                      "directory":s1p.options["directory"],
              "style_sheet":"../XSL/S1P_STYLE.xsl"
                     }
    XML_options={}
    for key,value in defaults.items():
        XML_options[key]=value
    for key,value in options.items():
        XML_options[key]=value
    data_description={}
    if s1p.options["column_descriptions"] is not None:
        for key,value in s1p.options["column_descriptions"].items():
            data_description[key]=value
    if s1p.metadata is not None:
        for key,value in s1p.metadata.items():
            data_description[key]=value
    else:
        if s1p.comments is not None:
            for index,line in enumerate(s1p.comments):
                key="Comments_{0:0>3}".format(index)
                data_description[key]=line[0]
    s1p.change_data_format(new_format='RI')
    s1p.change_frequency_units('GHz')
    data_dictionary={"Data_Description":data_description,"Data":s1p.get_data_dictionary_list()}
    XML_options["data_dictionary"]=data_dictionary
    new_xml_data_table=DataTable(None,**XML_options)
    return new_xml_data_table

def S2PV1_to_XmlDataTable(

s2p, **options)

Transforms a s2p's sparameters to a XmlDataTable. Converts the format to #GHz DB first

def S2PV1_to_XmlDataTable(s2p,**options):
    """Transforms a s2p's sparameters to a XmlDataTable. Converts the format to #GHz DB first"""
    defaults={"specific_descriptor":s2p.options["specific_descriptor"],
                      "general_descriptor":s2p.options["general_descriptor"],
                      "directory":s2p.options["directory"],
                      "style_sheet":"../XSL/S2P_DB_STYLE.xsl",
                      "format":"DB"}
    XML_options={}
    for key,value in defaults.items():
        XML_options[key]=value
    for key,value in options.items():
        XML_options[key]=value
    data_description={}
    if s2p.options["column_descriptions"] is not None:
        for key,value in s2p.options["column_descriptions"].items():
            data_description[key]=value
    if s2p.metadata is not None:
        for key,value in s2p.metadata.items():
            data_description[key]=value
    else:
        if s2p.comments is not None:
            for index,line in enumerate(s2p.comments):
                key="Comments_{0:0>3}".format(index)
                data_description[key]=line[0]
    s2p.change_data_format(new_format=XML_options["format"])
    s2p.change_frequency_units('GHz')
    data_dictionary={"Data_Description":data_description,"Data":s2p.get_data_dictionary_list()}
    XML_options["data_dictionary"]=data_dictionary
    new_xml_data_table=DataTable(None,**XML_options)
    return new_xml_data_table

def SFrequencyList_to_ZFrequencyList(

s_frequency_list, Z01=(50+0j), Z02=(50+0j))

Converts s parameters into z-parameters. S-parameters should be in the form [[f,S11,S12,S21,S22],...] the port 1 (Z01) and port 2 (Z01) impedances can be specified, default is 50. Returns data in the form [[f,Z11,Z12,Z21,Z22],...]

def SFrequencyList_to_ZFrequencyList(s_frequency_list,Z01=complex(50,0),Z02=complex(50,0)):
    """ Converts s parameters into z-parameters. S-parameters should be in the form [[f,S11,S12,S21,S22],...]
    the port 1 (Z01) and port 2 (Z01) impedances can be specified, default is 50. Returns data in the form
    [[f,Z11,Z12,Z21,Z22],...]
    """
    z_frequency_list=[]
    for row in s_frequency_list[:]:
        [frequency,S11,S12,S21,S22]=row
        denominator=-1*((1-S11)*(1-S22)-S12*S21)
        Z11=((Z01.conjugate()+S11*Z01)*(1-S22)+S12*S21*Z01)/denominator
        Z12=(2*S12*(Z01.real*Z02.real)**(.5))/denominator
        Z21=(2*S21*(Z01.real*Z02.real)**(.5))/denominator
        Z22=((1-S11)*(Z02.conjugate()+S22*Z02)+S21*S12*Z02)/denominator
        z_frequency_list.append([frequency,complex(abs(Z11.real),Z11.imag),Z12,Z21,complex(abs(Z22.real),Z22.imag)])
    return z_frequency_list

def SFrequencyMatrixList_to_TFrequencyMatrixList(

s_frequency_matrix_list)

Converts S-parameters into a T Matrix. Input form should be in frequency, np.matrix([[S11,S12],[S21,S22]]) format. Returns a list in [frequency, np.matrix] format. Is the inverse of TFrequencyMatrixList_to_SFrequencyMatrixList

def SFrequencyMatrixList_to_TFrequencyMatrixList(s_frequency_matrix_list):
    """Converts S-parameters into a T Matrix. Input form should be in frequency, np.matrix([[S11,S12],[S21,S22]])
    format. Returns a list in [frequency, np.matrix] format.
    Is the inverse of TFrequencyMatrixList_to_SFrequencyMatrixList"""
    t_frequency_matrix_list=[]
    for row in s_frequency_matrix_list:
        frequency=row[0]
        m=row[1]
        T11=-np.linalg.det(m)/m[1,0]
        T12=m[0,0]/m[1,0]
        T21=-m[1,1]/m[1,0]
        T22=1/m[1,0]
        t_frequency_matrix_list.append([frequency,np.matrix([[T11,T12],[T21,T22]])])
    return t_frequency_matrix_list

def SFrequencyMatrixList_to_ZFrequencyMatrixList(

s_frequency_matrix_list, Z01=(50+0j), Z02=(50+0j))

Converts s parameters into z-parameters. S-parameters should be in the form [[f,np.matrix([[S11,S12],S21,S22]],...] the port 1 (Z01) and port 2 (Z01) impedances can be specified, default is 50. Returns data in the form [[f,np.matrix([[Z11,Z12],[Z21,Z22]]),...]

def SFrequencyMatrixList_to_ZFrequencyMatrixList(s_frequency_matrix_list,Z01=complex(50,0),Z02=complex(50,0)):
    """ Converts s parameters into z-parameters. S-parameters should be in the form
    [[f,np.matrix([[S11,S12],S21,S22]],...]
    the port 1 (Z01) and port 2 (Z01) impedances can be specified, default is 50. Returns data in the form
    [[f,np.matrix([[Z11,Z12],[Z21,Z22]]),...]
    """
    z_frequency_matrix_list=[]
    for row in s_frequency_matrix_list[:]:
        [frequency,m]=row
        [S11,S12,S21,S22]=[m[0,0],m[0,1],m[1,0],m[1,1]]
        denominator=-1*((1-S11)*(1-S22)-S12*S21)
        Z11=((Z01.conjugate()+S11*Z01)*(1-S22)+S12*S21*Z01)/denominator
        Z12=(2*S12*(Z01.real*Z02.real)**(.5))/denominator
        Z21=(2*S21*(Z01.real*Z02.real)**(.5))/denominator
        Z22=((1-S11)*(Z02.conjugate()+S22*Z02)+S21*S12*Z02)/denominator
        z_frequency_matrix_list.append([frequency,
                                        np.matrix([[complex(abs(Z11.real),Z11.imag),Z12],
                                                   [Z21,complex(abs(Z22.real),Z22.imag)]])])
    return z_frequency_matrix_list

def SNP_to_XmlDataTable(

snp, **options)

Transforms a snp's sparameters to a XmlDataTable. Converts the format to #GHz DB first

def SNP_to_XmlDataTable(snp,**options):
    """Transforms a snp's sparameters to a XmlDataTable. Converts the format to #GHz DB first"""
    defaults={"specific_descriptor":snp.options["specific_descriptor"],
                     "general_descriptor":snp.options["general_descriptor"],
                      "directory":snp.options["directory"],
              "style_sheet":"../XSL/DEFAULT_MEASUREMENT_STYLE.xsl"
                     }
    XML_options={}
    for key,value in defaults.items():
        XML_options[key]=value
    for key,value in options.items():
        XML_options[key]=value
    data_description={}
    if snp.options["column_descriptions"] is not None:
        for key,value in snp.options["column_descriptions"].items():
            data_description[key]=value
    if snp.metadata is not None:
        for key,value in snp.metadata.items():
            data_description[key]=value
    else:
        if snp.comments is not None:
            for index,line in enumerate(snp.comments):
                key="Comments_{0:0>3}".format(index)
                data_description[key]=line[0]
    snp.change_data_format(new_format='RI')
    snp.change_frequency_units('GHz')
    data_dictionary={"Data_Description":data_description,"Data":snp.get_data_dictionary_list()}
    XML_options["data_dictionary"]=data_dictionary
    new_xml_data_table=DataTable(None,**XML_options)
    return new_xml_data_table

def Snp_to_AsciiDataTable(

snp_model)

Converts snp files to AsciiDataTable

def Snp_to_AsciiDataTable(snp_model):
    """Converts snp files to AsciiDataTable"""
    options=snp_model.options
    options['data']=snp_model.data
    options['column_names']=snp_model.column_names
    options['column_types']=['float' for i in snp_model.column_names]
    options["extension"]="txt"
    new_table=AsciiDataTable(None,**options)
    return new_table

def StringIo_to_String(

string_io_object)

Converts a StringIO.StringIO object to a string

def StringIo_to_String(string_io_object):
    """Converts a StringIO.StringIO object to a string """
    return string_io_object.getvalue()

def StringList_to_File(

string_list, file_name='test')

Saves a string list as a file

def StringList_to_File(string_list,file_name="test"):
    """Saves a string list as a file"""
    out_file=open(file_name,"w")
    for line in string_list:
        out_file.write(line)
    out_file.close()
    return file_name

def StringList_to_String(

string_list)

Collapses a list of strings to a single list

def StringList_to_String(string_list):
    """Collapses a list of strings to a single list"""
    out_string=string_list_collapse(string_list)
    return out_string

def String_to_CStringIo(

string)

Converts a string to a StringIO.StringIO object. Inverse of CStringIo_to_StringIo

def String_to_CStringIo(string):
    """Converts a string to a StringIO.StringIO object.
    Inverse of CStringIo_to_StringIo"""
    return io.StringIO(string)

Converts a string to a download link options are suggested_name, mime_type and text for the link

def String_to_File(

string, file_name='test')

Saves a string as a file

def String_to_File(string,file_name="test"):
    """Saves a string as a file"""
    out_file=open(file_name,'w')
    out_file.write(string)
    out_file.close()
    return file_name

def String_to_SVGAnchorLinkElement(

string, **options)

Converts a string to a DataURI

def String_to_SVGAnchorLinkElement(string,**options):
    """Converts a string to a DataURI"""
    defaults={"suggested_name":"test.txt",
              "mime_type":"text/plain"}
    link_options={}
    for key,value in defaults.items():
        link_options[key]=value
    for key,value in options.items():
        link_options[key]=value
    if not isinstance(string,str):
        string=str(string)
    try:
        base_64=base64.b64encode(string.encode()).decode()
    except:
        base_64 = base64.b64encode(string.encode())
    data_uri="data:{0};base64,{1}".format(link_options["mime_type"],base_64)
    anchor_dictionary={"tag":"a","xlink:href":data_uri,"xlink:download":link_options["suggested_name"]}
    out_element=make_html_element(**anchor_dictionary)
    return out_element

def String_to_StringIo(

string)

Converts a string to a StringIO.StringIO object

def String_to_StringIo(string):
    """Converts a string to a StringIO.StringIO object"""
    return io.StringIO(string)

def String_to_StringList(

string)

Converts a string to a list of strings using splitlines

def String_to_StringList(string):
    """Converts a string to a list of strings using splitlines"""
    string_list=string.splitlines()
    return string_list

def SvgFile_to_EpsFile(

svg_file_path, export_file_path='test.eps')

Uses Inkscape to convert SVG to Eps via commandline

def SvgFile_to_EpsFile(svg_file_path,export_file_path="test.eps"):
    """Uses Inkscape to convert SVG to Eps via commandline """
    p=subprocess.call([INKSCAPE_PATH,svg_file_path,
                       '--export-eps',export_file_path])
    return export_file_path

def SvgFile_to_PdfFile(

svg_file_path, export_file_path='test.pdf')

Uses Inkscape to convert SVG to pdf via commandline

def SvgFile_to_PdfFile(svg_file_path,export_file_path="test.pdf"):
    """Uses Inkscape to convert SVG to pdf via commandline """
    p=subprocess.call([INKSCAPE_PATH,svg_file_path,
                       '--export-pdf',export_file_path])
    return export_file_path

def SvgFile_to_PngFile(

svg_file_path, export_file_path='test.png')

Uses Inkscape to convert SVG to png via commandline

def SvgFile_to_PngFile(svg_file_path,export_file_path="test.png"):
    """Uses Inkscape to convert SVG to png via commandline """
    p=subprocess.call([INKSCAPE_PATH,svg_file_path,
                       '--export-png',export_file_path])
    return export_file_path

def TFrequencyMatrixList_to_SFrequencyMatrixList(

t_frequency_matrix_list)

Converts T Matrix into S parameters. Input form should be in frequency, np.matrix([[T11,T12],[T21,T22]]) format. Returns a list in [frequency, np.matrix] format. Is the inverse of SFrequencyMatrixList_to_TFrequencyMatrixList

def TFrequencyMatrixList_to_SFrequencyMatrixList(t_frequency_matrix_list):
    """Converts T Matrix into S parameters. Input form should be in frequency, np.matrix([[T11,T12],[T21,T22]])
    format. Returns a list in [frequency, np.matrix] format.
    Is the inverse of SFrequencyMatrixList_to_TFrequencyMatrixList"""
    s_frequency_matrix_list=[]
    for row in t_frequency_matrix_list:
        frequency=row[0]
        m=row[1]
        S11=m[0,1]/m[1,1]
        S12=np.linalg.det(m)/m[1,1]
        S21=1/m[1,1]
        S22=-m[1,0]/m[1,1]
        s_frequency_matrix_list.append([frequency,np.matrix([[S11,S12],[S21,S22]])])
    return s_frequency_matrix_list

def TwoPortCalrepModel_to_S2PV1(

two_port_calrep_table, **options)

Transforms a TwoPortRawModel to S2PV1

def TwoPortCalrepModel_to_S2PV1(two_port_calrep_table,**options):
    """Transforms a TwoPortRawModel  to S2PV1"""
    table=two_port_calrep_table
    path=table.path.split('.')[0]+".s2p"
    data=[[row["Frequency"],row["magS11"],row["argS11"],row["magS21"],row["argS21"],row["magS21"],
           row["argS21"],row["magS22"],row["argS22"]] for row in table.joined_table.get_data_dictionary_list()]
    comments=[[line,index,0] for index,line in enumerate(table.joined_table.header[:])]
    s2p_options={"option_line":"# GHz S MA R 50","data":data,
                 "comments":comments,"path":path,"option_line_line":len(table.joined_table.header),
                 "sparameter_begin_line":len(table.joined_table.header)+1,"column_names":S2P_MA_COLUMN_NAMES}
    s2p_file=S2PV1(None,**s2p_options)
    return s2p_file

def TwoPortCalrepModel_to_XmlDataTable(

two_port_calrep_table, **options)

Converts the 2-port calrep model to xml

def TwoPortCalrepModel_to_XmlDataTable(two_port_calrep_table,**options):
    """Converts the 2-port calrep model to xml"""
    table=two_port_calrep_table.joined_table
    defaults={"specific_descriptor":table.options["specific_descriptor"],
                     "general_descriptor":table.options["general_descriptor"],
                      "directory":table.options["directory"],
              "style_sheet":"../XSL/TWO_PORT_CALREP_STYLE.xsl"
                     }
    XML_options={}
    for key,value in defaults.items():
        XML_options[key]=value
    for key,value in options.items():
        XML_options[key]=value
    new_xml=AsciiDataTable_to_XmlDataTable(table,**XML_options)
    return new_xml

def TwoPortRawModel_to_S2PV1(

two_port_raw_table, **options)

Transforms a TwoPortRawModel to S2PV1

def TwoPortRawModel_to_S2PV1(two_port_raw_table,**options):
    """Transforms a TwoPortRawModel  to S2PV1"""
    table=two_port_raw_table
    path=table.path.split('.')[0]+".s2p"
    data=[[row[0],row[3],row[4],row[5],row[6],row[5],row[6],row[7],row[8]] for row in table.data]
    comments=[[line,index,0] for index,line in enumerate(table.header[:])]
    s2p_options={"option_line":"# GHz S MA R 50","data":data,
                 "comments":comments,"path":path,"option_line_line":len(table.header),
                 "sparameter_begin_line":len(table.header)+1,"column_names":S2P_MA_COLUMN_NAMES}
    s2p_file=S2PV1(None,**s2p_options)
    return s2p_file

def TwoPortRawModel_to_XmlDataTable(

two_port_raw_table, **options)

Converts the 2-port raw model used by s-parameters to xml

def TwoPortRawModel_to_XmlDataTable(two_port_raw_table,**options):
    """Converts the 2-port raw model used by s-parameters to xml"""
    table=two_port_raw_table
    defaults={"specific_descriptor":table.options["specific_descriptor"],
                     "general_descriptor":table.options["general_descriptor"],
                      "directory":table.options["directory"],
              "style_sheet":"../XSL/TWO_PORT_RAW_STYLE.xsl"
                     }
    XML_options={}
    for key,value in defaults.items():
        XML_options[key]=value
    for key,value in options.items():
        XML_options[key]=value
    new_xml=AsciiDataTable_to_XmlDataTable(table,**XML_options)
    return new_xml

def XmlBase_to_XsltResultFile(

xml_model, **options)

Uses the xml_model's save_HTML method to return a HTML file

def XmlBase_to_XsltResultFile(xml_model,**options):
    """Uses the xml_model's save_HTML method to return a HTML file"""
    defaults={"style_sheet":os.path.join(TESTS_DIRECTORY,XSLT_REPOSITORY,"DEFAULT_STYLE.xsl"),
              "file_path":"test.xml"}
    transform_options={}
    for key,value in defaults.items():
        transform_options[key]=value
    for key,value in options.items():
        transform_options[key]=value
    xml_model.save_HTML(XSLT=transform_options["style_sheet"],file_path=transform_options["file_path"])
    return transform_options["file_path"]

def XmlBase_to_XsltResultString(

xml_model, **options)

Uses the xml_model's to_HTML method to return a HTML string

def XmlBase_to_XsltResultString(xml_model,**options):
    """Uses the xml_model's to_HTML method to return a HTML string"""
    defaults={"style_sheet":os.path.join(TESTS_DIRECTORY,XSLT_REPOSITORY,"DEFAULT_STYLE.xsl")}
    transform_options={}
    for key,value in defaults.items():
        transform_options[key]=value
    for key,value in options.items():
        transform_options[key]=value
    return xml_model.to_HTML(**transform_options)

def XmlDataTable_to_AsciiDataTable(

xml_table)

Turns A XMLData to AsciiDataTable table without preserving Metadata

def XmlDataTable_to_AsciiDataTable(xml_table):
    """Turns A XMLData to AsciiDataTable table without preserving Metadata"""
    table=AsciiDataTable(None,
                         column_names=xml_table.attribute_names,
                         data=xml_table.data)
    return table

def XmlDataTable_to_XmlFile(

xml_data_table, file_name='test.xml')

Converts the XMLModel DataTable to a file on disk using the save method

def XmlDataTable_to_XmlFile(xml_data_table,file_name="test.xml"):
    """Converts the XMLModel DataTable to a file on disk using the save method"""
    xml_data_table.save(file_name)
    return file_name

def XmlFile_to_XmlDataTable(

xml_file_name)

Opens a saved file in the XMLModels format DataTable and returns an DataTable object

def XmlFile_to_XmlDataTable(xml_file_name):
    """Opens a saved file in the XMLModels format DataTable and returns an DataTable object"""
    xml_data_table=DataTable(xml_file_name)
    return xml_data_table

def XmlLog_to_AsciiDataTable(

xml_log)

Transforms the XMLLog class to the AsciiDataTable class

def XmlLog_to_AsciiDataTable(xml_log):
    """Transforms the XMLLog class to the AsciiDataTable class"""
    table=xml_log.get_table()
    column_names=["Index","Date","Entry"]
    column_types=["int","string","string"]
    data=[[row[column_name] for column_name in column_names] for row in table]
    ascii=AsciiDataTable(column_names=column_names,data=data,column_types=column_types)
    return ascii

def XmlString_to_Dictionary(

xml_string)

XML string must be in the format value .. to work

def XmlString_to_Dictionary(xml_string):
    """XML string must be in the format <key>value</key>\n<key2>.. to work"""
    pattern='<(?P<XML_tag>.+)>(?P<XML_text>.+)</.+>'
    lines=xml_string.splitlines()
    out_dictionary={}
    for line in lines:
        match=re.search(pattern,line)
        if match:
            key=match.groupdict()["XML_tag"].rstrip().lstrip().replace("\'","")
            value=match.groupdict()["XML_text"].rstrip().lstrip().replace("\'","")
            out_dictionary[key]=value
    return out_dictionary

def XmlTupleString_to_Dictionary(

tuple_line)

Takes a line in the form of and returns a dictionary

def XmlTupleString_to_Dictionary(tuple_line):
    """Takes a line in the form of <Tuple key1="value1" key2="Value2" ...KeyN="ValueN" />
    and returns a dictionary"""
    stripped_string=tuple_line.replace("<Tuple","")
    stripped_string=stripped_string.replace("/>","")
    pattern="(?<=\")(?<!,|:)\s+(?!,+)"
    lines=re.split(pattern,stripped_string)
    out_dictionary={}
    for line in lines:
        split_line=line.split("=")
        print(split_line)
        if len(split_line)==2:
            key=split_line[0].rstrip().lstrip().replace("\"","")
            value=split_line[1].rstrip().lstrip().replace("\"","")
            out_dictionary[key]=value
    return out_dictionary

def YFrequencyList_to_HFrequencyList(

y_frequency_list)

Converts Y parameters into h-parameters. ABCD-parameters should be in the form [[f,Y11,Y12,Y21,Y22],...] Returns data in the form [[f,h11,h12,h21,h22],...]

def YFrequencyList_to_HFrequencyList(y_frequency_list):
    """ Converts Y parameters into h-parameters. ABCD-parameters should be in the form [[f,Y11,Y12,Y21,Y22],...]
    Returns data in the form
    [[f,h11,h12,h21,h22],...]
    """
    h_frequency_list=[]
    for row in y_frequency_list[:]:
        [frequency,Y11,Y12,Y21,Y22]=row
        h11=1/Y11
        h12=-1*Y12/Y11
        h21=Y21/Y11
        h22=(Y11*Y22-Y12*Y21)/Y11
        h_frequency_list.append([frequency,h11,h12,h21,h22])
    return h_frequency_list

def YFrequencyMatrixList_to_ZFrequencyMatrixList(

y_frequency_matrix_list)

Converts Z parameters into Y-parameters. Z-parameters should be in the form [[f,np.matrix([[Y11,Y12],[Y21,Y22]])],...] Returns data in the form [[f,np.matrix([[Z11,Z12],[Z21,Z22]])],...] inverse of ZFrequencyMatrixList_to_YFrequencyMatrixList

def YFrequencyMatrixList_to_ZFrequencyMatrixList(y_frequency_matrix_list):
    """ Converts Z parameters into Y-parameters. Z-parameters should be in the form
    [[f,np.matrix([[Y11,Y12],[Y21,Y22]])],...]
    Returns data in the form
    [[f,np.matrix([[Z11,Z12],[Z21,Z22]])],...]
    inverse of ZFrequencyMatrixList_to_YFrequencyMatrixList
    """
    z_frequency_matrix_list=[]
    for row in y_frequency_matrix_list[:]:
        frequency=row[0]
        m=row[1]
        z_frequency_matrix_list.append([frequency,m.I])
    return z_frequency_matrix_list

def ZFrequencyList_to_ABCDFrequencyList(

z_frequency_list)

Converts z parameters into ABCD-parameters. Z-parameters should be in the form [[f,Z11,Z12,Z21,Z22],...] Returns data in the form [[f,A,B,C,D],...] inverse of ABCDFrequencyList_to_ZFrequencyList

def ZFrequencyList_to_ABCDFrequencyList(z_frequency_list):
    """ Converts z parameters into ABCD-parameters. Z-parameters should be in the form [[f,Z11,Z12,Z21,Z22],...]
    Returns data in the form
    [[f,A,B,C,D],...]
    inverse of ABCDFrequencyList_to_ZFrequencyList
    """
    ABCD_frequency_list=[]
    for row in z_frequency_list[:]:
        [frequency,Z11,Z12,Z21,Z22]=row
        A=Z11/Z21
        B=(Z11*Z22-Z12*Z21)/Z21
        C=1/Z21
        D=Z22/Z21
        ABCD_frequency_list.append([frequency,A,B,C,D])
    return ABCD_frequency_list

def ZFrequencyList_to_TFrequencyList(

Z_frequency_list, Z01=(50+0j), Z02=(50+0j))

Converts z parameters into T parameters. Z-parameters should be in the form [[f,Z11,Z12,Z21,Z22],...] the port 1 (Z01) and port 2 (Z01) impedances can be specified, default is 50. Returns data in the form [[f,T11,T12,T21,T22],...]

def ZFrequencyList_to_TFrequencyList(Z_frequency_list,Z01=complex(50,0),Z02=complex(50,0)):
    """ Converts z parameters into T parameters. Z-parameters should be in the form [[f,Z11,Z12,Z21,Z22],...]
    the port 1 (Z01) and port 2 (Z01) impedances can be specified, default is 50. Returns data in the form
    [[f,T11,T12,T21,T22],...]
    """
    t_frequency_list=[]
    for row in Z_frequency_list[:]:
        [frequency,Z11,Z12,Z21,Z22]=row
        denominator=2*Z21*(Z01.real*Z02.real)**(.5)
        T11= ((Z11+Z01)*(Z22+Z02)-Z12*Z21)/denominator
        T12=((Z11+Z01)*(Z02.conjugate()-Z22)+Z12*Z21)/denominator
        T21=((Z11-Z01.conjugate())*(Z22+Z02)-Z12*Z21)/denominator
        T22=((Z01.conjugate()-Z11)*(Z22-Z02.conjugate())+Z12*Z21)/denominator
        t_frequency_list.append([frequency,T11,T12,T21,T22])
    return t_frequency_list

def ZFrequencyMatrixList_to_TFrequencyMatrixList(

Z_frequency_matrix_list, Z01=(50+0j), Z02=(50+0j))

Converts z parameters into T parameters. Z-parameters should be in the form [[f,np.matrix([[Z11,Z12],[Z21,Z22]])],...] the port 1 (Z01) and port 2 (Z01) impedances can be specified, default is 50. Returns data in the form [[f,np.matrix([[T11,T12],[T21,T22]])],...]

def ZFrequencyMatrixList_to_TFrequencyMatrixList(Z_frequency_matrix_list,Z01=complex(50,0),Z02=complex(50,0)):
    """ Converts z parameters into T parameters. Z-parameters should be in the form [[f,np.matrix([[Z11,Z12],[Z21,Z22]])],...]
    the port 1 (Z01) and port 2 (Z01) impedances can be specified, default is 50. Returns data in the form
    [[f,np.matrix([[T11,T12],[T21,T22]])],...]
    """
    t_frequency_matrix_list=[]
    for row in Z_frequency_matrix_list[:]:
        [frequency,m]=row
        [Z11,Z12,Z21,Z22]=[m[0,0],m[0,1],m[1,0],m[1,1]]
        denominator=2*Z21*(Z01.real*Z02.real)**(.5)
        T11= ((Z11+Z01)*(Z22+Z02)-Z12*Z21)/denominator
        T12=((Z11+Z01)*(Z02.conjugate()-Z22)+Z12*Z21)/denominator
        T21=((Z11-Z01.conjugate())*(Z22+Z02)-Z12*Z21)/denominator
        T22=((Z01.conjugate()-Z11)*(Z22-Z02.conjugate())+Z12*Z21)/denominator
        t_frequency_matrix_list.append([frequency,np.matrix([[T11,T12],[T21,T22]])])
    return t_frequency_matrix_list

def ZFrequencyMatrixList_to_YFrequencyMatrixList(

z_frequency_matrix_list)

Converts Z parameters into Y-parameters. Z-parameters should be in the form [[f,np.matrix([[Z11,Z12],[Z21,Z22]])],...] Returns data in the form [[f,np.matrix([[Y11,Y12],[Y21,Y22]])],...] inverse of YFrequencyMatrixList_to_ZFrequencyMatrixList

def ZFrequencyMatrixList_to_YFrequencyMatrixList(z_frequency_matrix_list):
    """ Converts Z parameters into Y-parameters. Z-parameters should be in the form
    [[f,np.matrix([[Z11,Z12],[Z21,Z22]])],...]
    Returns data in the form
    [[f,np.matrix([[Y11,Y12],[Y21,Y22]])],...]
    inverse of YFrequencyMatrixList_to_ZFrequencyMatrixList
    """
    y_frequency_matrix_list=[]
    for row in z_frequency_matrix_list[:]:
        frequency=row[0]
        m=row[1]
        y_frequency_matrix_list.append([frequency,m.I])
    return y_frequency_matrix_list

def replace_None(

string)

Replaces the string 'None' with the python value None

def replace_None(string):
    """Replaces the string 'None' with the python value None"""
    if string:
        if re.match("None",string):
            return None
        else:
            return string
    else:
        return string

def test_AsciiDataTable_to_DataFrame(

input_file='700437.asc')

def test_AsciiDataTable_to_DataFrame(input_file="700437.asc"):
    os.chdir(TESTS_DIRECTORY)
    one_port=OnePortCalrepModel(input_file)
    data_frame=AsciiDataTable_to_DataFrame(one_port)
    data_frame.to_excel('one_port.xlsx', sheet_name='Sheet1')

def test_AsciiDataTable_to_XmlDataTable(

input_file='700437.asc')

Tests a one port ascii data table to an XmlDataTable transformation and saves the result in the tests directory. The one port file should be the output of Calrep7.1 or similar.

def test_AsciiDataTable_to_XmlDataTable(input_file="700437.asc"):
    """Tests a one port ascii data table to an XmlDataTable transformation
    and saves the result in the tests directory. The one port file should be the output
    of Calrep7.1 or similar."""
    os.chdir(TESTS_DIRECTORY)
    one_port=OnePortRawModel(input_file)
    XML_one_port=AsciiDataTable_to_XmlDataTable(one_port)
    print(XML_one_port)
    XML_one_port.save()
    XML_one_port.save_HTML()

def test_JBSparameter_to_S2PV1(

file_path='QuartzRefExample_L1_g10_HF')

Tests the conversion of JBSparameter files to S2PV1

def test_JBSparameter_to_S2PV1(file_path='QuartzRefExample_L1_g10_HF'):
    """Tests the conversion of JBSparameter files to S2PV1"""
    os.chdir(TESTS_DIRECTORY)
    table=JBSparameter(file_path)
    s2p=JBSparameter_to_S2PV1(table)
    print(("Before conversion the JBSparameter file is {0} ".format(table)))
    s2p.change_data_format('RI')
    print(("After Conversion the JBSparameter file is {0} ".format(s2p)))
    s2p.show()

def test_OnePortCalrep_to_XmlDataTable(

file_path='700437.asc', **options)

Test's the conversion of the OnePortCalrep to XmlDataTable

def test_OnePortCalrep_to_XmlDataTable(file_path='700437.asc',**options):
    """Test's the conversion of the OnePortCalrep to XmlDataTable"""
    os.chdir(TESTS_DIRECTORY)
    one_port=OnePortCalrepModel(file_path)
    one_port.save("ExportedOnePortCalrep.txt")
    xml=OnePortCalrep_to_XmlDataTable(one_port,**options)
    xml.save()
    xml.save_HTML()

def test_OnePortRaw_to_XmlDataTable(

input_file='OnePortRawTestFile.txt')

Tests a one port raw ascii data table to an XmlDataTable transformation and saves the result in the tests directory. The one port file should be the output of Meas HP Basic program or similar. Average time without print is 7.2 ms for 10 loops.

def test_OnePortRaw_to_XmlDataTable(input_file="OnePortRawTestFile.txt"):
    """Tests a one port raw ascii data table to an XmlDataTable transformation
    and saves the result in the tests directory. The one port file should be the output
    of Meas HP Basic program or similar. Average time without print is 7.2 ms for 10 loops."""
    os.chdir(TESTS_DIRECTORY)
    one_port=OnePortRawModel(input_file)
    options={"style_sheet":"../XSL/ONE_PORT_RAW_STYLE.xsl"}
    XML_one_port=AsciiDataTable_to_XmlDataTable(one_port,**options)
    #print XML_one_port
    XML_one_port.save()
    XML_one_port.save_HTML()

def test_PowerRawModel_to_XmlDataTable(

file_path='CTNP15.A1_042601', **options)

Test's the conversion of the TwoPorRaw to XmlDataTable

def test_PowerRawModel_to_XmlDataTable(file_path='CTNP15.A1_042601',**options):
    """Test's the conversion of the TwoPorRaw to XmlDataTable"""
    os.chdir(TESTS_DIRECTORY)
    power=PowerRawModel(file_path)
    print(power)
    xml=PowerRawModel_to_XmlDataTable(power,**options)
    xml.save("SavedTestPowerRaw.xml")
    xml.save_HTML(file_path="SavedTestPowerPortRaw.html")

def test_S1PV1_to_XmlDataTable(

file_path='OnePortTouchstoneTestFile.s1p')

Tests the S1PV1 to XmlDataTable translation

def test_S1PV1_to_XmlDataTable(file_path="OnePortTouchstoneTestFile.s1p"):
    """Tests the S1PV1 to XmlDataTable translation"""
    os.chdir(TESTS_DIRECTORY)
    s1p_file=S1PV1(file_path)
    XML_s1p=S1PV1_to_XmlDataTable(s1p_file)
    XML_s1p.show()

def test_S2P_to_XmlDataTable(

file_path='thru.s2p')

def test_S2P_to_XmlDataTable(file_path="thru.s2p"):
    os.chdir(TESTS_DIRECTORY)
    s2p_file=S2PV1(file_path)
    XML_s2p=S2PV1_to_XmlDataTable(s2p_file)
    XML_s2p.save()

def test_S2P_to_XmlDataTable_02(

file_path='thru.s2p', **options)

def test_S2P_to_XmlDataTable_02(file_path="thru.s2p",**options):
    os.chdir(TESTS_DIRECTORY)
    s2p_file=S2PV1(file_path)
    XML_s2p=S2PV1_to_XmlDataTable(s2p_file,**options)

def test_StatistiCALSolutionModel_to_XmlDataTable(

input_file='Solution_Plus.txt')

Tests a StatistiCALSolutionModel ascii data table to an XmlDataTable transformation and saves the result in the tests directory.

def test_StatistiCALSolutionModel_to_XmlDataTable(input_file="Solution_Plus.txt"):
    """Tests a StatistiCALSolutionModel  ascii data table to an XmlDataTable transformation
    and saves the result in the tests directory. """
    os.chdir(TESTS_DIRECTORY)
    solution=StatistiCALSolutionModel(input_file)
    options={"style_sheet":"../XSL/DEFAULT_MEASUREMENT_STYLE.xsl"}
    XML_solution=AsciiDataTable_to_XmlDataTable(solution,**options)
    print(XML_solution)
    XML_solution.show()
    print(XML_solution.to_HTML())

def test_TwoPortCalrep_to_XmlDataTable(

file_path='922729.asc', **options)

Test's the conversion of the TwoPortCalrep to XmlDataTable

def test_TwoPortCalrep_to_XmlDataTable(file_path='922729.asc',**options):
    """Test's the conversion of the TwoPortCalrep to XmlDataTable"""
    os.chdir(TESTS_DIRECTORY)
    two_port=TwoPortCalrepModel(file_path)
    two_port.joined_table.save()
    xml=TwoPortCalrepModel_to_XmlDataTable(two_port,**options)
    xml.save()
    xml.save_HTML()

def test_TwoPortRawModel_to_S2PV1(

file_path='TestFileTwoPortRaw.txt', **options)

Test's the conversion of the TwoPorRaw to XmlDataTable

def test_TwoPortRawModel_to_S2PV1(file_path='TestFileTwoPortRaw.txt',**options):
    """Test's the conversion of the TwoPorRaw to XmlDataTable"""
    os.chdir(TESTS_DIRECTORY)
    two_port=TwoPortRawModel(file_path)
    s2p=TwoPortRawModel_to_S2PV1(two_port,**options)
    print(s2p)
    s2p.save("SavedTest2PortRaw.s2p")

def test_TwoPortRawModel_to_XmlDataTable(

file_path='TestFileTwoPortRaw.txt', **options)

Test's the conversion of the TwoPorRaw to XmlDataTable

def test_TwoPortRawModel_to_XmlDataTable(file_path='TestFileTwoPortRaw.txt',**options):
    """Test's the conversion of the TwoPorRaw to XmlDataTable"""
    os.chdir(TESTS_DIRECTORY)
    two_port=TwoPortRawModel(file_path)
    two_port.save("SavedTest2PortRaw.txt")
    xml=TwoPortRawModel_to_XmlDataTable(two_port,**options)
    xml.save("SavedTest2PortRaw.xml")
    xml.save_HTML(file_path="SavedTest2PortRaw.html")

def timeit_script(

script='test_AsciiDataTable_to_XmlDataTable()', setup='from __main__ import test_AsciiDataTable_to_XmlDataTable', n_loops=10)

Returns the mean time from running script n_loops time. To import a script, put a string import statement in setup

def timeit_script(script='test_AsciiDataTable_to_XmlDataTable()',
                  setup="from __main__ import test_AsciiDataTable_to_XmlDataTable",n_loops=10):
    """Returns the mean time from running script n_loops time. To import a script, put a string
    import statement in setup"""
    print(timeit.timeit(script,setup=setup,number=n_loops)/n_loops)

Module variables

var COMBINE_S11_S22

var COMMENT_PATTERN

var CONVERT_S21

var DEFAULT_FILE_NAME

var DEFAULT_INSTRUMENT_SHEET_STYLE

var DEFAULT_INSTRUMENT_STATE_STYLE

var DEFAULT_LOG_STYLE

var DEFAULT_MEASUREMENT_STYLE

var DEFAULT_METADATA_STYLE

var DEFAULT_REGISTER_STYLE

var DEFAULT_STYLE

var DRIVER_FILE_EXTENSIONS

var DUT_COLUMN_NAMES

var EXIF_AVAILABLE

var EXTENSION_PATTERN

var FORMATS

var FREQUENCY_UNITS

var GENERAL_DESCRIPTORS

var GET_STATS_FIELDS

var HTML_TEMPLATE_DIRECTORY

var IMAGE_FILE_EXTENSIONS

var INKSCAPE_PATH

Path to the Inkscape executable.

var INSTRUMENT_SHEETS

var METHOD_ALIASES

var MINIMUM_DB_ARG_VALUE

var MINIMUM_DB_VALUE

var NODE_TYPE_DICTIONARY

var NUMBER_MATCH_STRING

var ONE_PORT_COLUMN_NAMES

var OPTION_LINE_PATTERN

var OS_STAT_FIELDS

var PARAMETERS

var PDF_CONVERT

var PIL_AVAILABLE

var POWER_3TERM_COLUMN_DESCRIPTIONS

var POWER_3TERM_COLUMN_NAMES

var POWER_4TERM_COLUMN_DESCRIPTIONS

var POWER_4TERM_COLUMN_NAMES

var PYMEASURE_ROOT

var RESULTS_FILE_ONE_PORT_COLUMN_NAMES

var RESULTS_FILE_POWER_COLUMN_NAMES

var RESULTS_FILE_TWO_PORT_COLUMN_NAMES

var S1P_DB_COLUMN_NAMES

var S1P_MA_COLUMN_NAMES

var S1P_RI_COLUMN_NAMES

var S2P_COMPLEX_COLUMN_NAMES

var S2P_DB_COLUMN_DESCRIPTION

var S2P_DB_COLUMN_NAMES

var S2P_MA_COLUMN_DESCRIPTION

var S2P_MA_COLUMN_NAMES

var S2P_NOISE_PARAMETER_COLUMN_NAMES

var S2P_RI_COLUMN_DESCRIPTION

var S2P_RI_COLUMN_NAMES

var SMITHPLOT

var SOLUTION_VECTOR_COLUMN_NAMES

var StringTypes

var TESTS_DIRECTORY

var TOUCHSTONE_KEYWORDS

var TWELVE_TERM_ERROR_COLUMN_NAMES

var WINDOWS_COM

var WINDOWS_WRAPPER

var WKHTML_PATH

Path to the wkhtmltopdf executable.

var XSLT_CAPABLE

var XSLT_REPOSITORY

var type_names