Salome HOME
Update copyrights
[tools/medcoupling.git] / src / MEDLoader / Swig / ConvertMEDFileTo33.py
1 #! /usr/bin/env python
2 #  -*- coding: iso-8859-1 -*-
3 # Copyright (C) 2007-2019  CEA/DEN, EDF R&D
4 #
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License, or (at your option) any later version.
9 #
10 # This library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # Lesser General Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with this library; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 #
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #
21 # Author : Anthony GEAY (EDF R&D)
22
23 import MEDLoader as ml
24 import os
25
26 def ConvertTo33(nameOfMEDFile):
27     fn,ext=os.path.splitext(nameOfMEDFile)
28     assert(ext in [".med",".rmed"])
29     realFnOut=fn+"_33.med"
30     #
31     initalVersion=ml.MEDFileVersionOfFileStr(nameOfMEDFile)
32     #
33     mfd=ml.MEDFileData(nameOfMEDFile)
34     mfd.write33(realFnOut,2)
35     #
36     finalVersion=ml.MEDFileVersionOfFileStr(realFnOut)
37     #
38     print(("File \"%s\" has been successfully converted to 3.3 ( %s -> %s ) !\nOutput file is here : \"%s\" !"%(fn,initalVersion,finalVersion,realFnOut)))
39     pass
40
41 if __name__=="__main__":
42     import argparse
43     parser=argparse.ArgumentParser(description='Convert a MED file into a MED file with 3.3 version (3.3.1)')
44     parser.add_argument('nameOfMEDFile', type=str, nargs=1,help='File name of the MED file to be converted into 3.3.')
45     args=parser.parse_args()
46     nameOfMEDFile=args.nameOfMEDFile[0]
47     ConvertTo33(nameOfMEDFile)
48     pass