Salome HOME
Updated copyright comment
[modules/hexablock.git] / doc / pyplots / process_vtk.py
1 # Copyright (C) 2009-2024  CEA, EDF
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19 import sys
20 import os
21 from argparse import ArgumentParser
22
23 def process (file_name):
24     """
25     cette methode prend en entree le nom d'un fichier vtk cree par le
26     module HEXABLOCK de Salome, et remplace les "," par des "."
27     """
28
29     wr_data = ""
30     with open(file_name, 'r', encoding='utf8') as f:
31         read_data = f.read()
32         wr_data = read_data.replace(',', '.')
33         pass
34
35     with open(file_name, 'w', encoding='utf8') as f:
36         f.write(wr_data)
37         pass
38
39     pass
40
41 if __name__ == '__main__':
42
43     parser = ArgumentParser()
44     parser.add_argument('file_name', help='Nom du fichier vtk dans $TMP')
45     args = parser.parse_args()
46     
47     file_name = os.path.join(os.environ['TMP'], args.file_name)
48
49     print(file_name)
50     process(file_name)
51     
52     sys.exit()