Salome HOME
Merge Python 3 porting.
[modules/paravis.git] / test / VisuPrs / SWIG_scripts / A6.py
1 # Copyright (C) 2010-2016  CEA/DEN, EDF R&D
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
20 # This case corresponds to: /visu/SWIG_scripts/A6 case
21 # Import a table from file and show it in 2D viewer
22
23 from paravistest import tablesdir
24 from presentations import *
25 import pvsimple
26
27 # Import table from CSV file
28 file_path = tablesdir + "sinus.csv"
29 sinus_csv = pvsimple.CSVReader(FileName=file_path)
30
31 # Import settings
32 sinus_csv.DetectNumericColumns = 1
33 sinus_csv.UseStringDelimiter = 1
34 sinus_csv.FieldDelimiterCharacters = ' '
35 sinus_csv.HaveHeaders = 1
36
37 # Display curve
38 cur_view = pvsimple.GetRenderView()
39 if cur_view:
40     delete_pv_object(cur_view)
41 xy_view = pvsimple.CreateXYPlotView()
42
43 xy_rep = pvsimple.Show(sinus_csv)
44 xy_rep.AttributeType = 'Row Data'
45 xy_rep.UseIndexForXAxis = 0
46 xy_rep.XArrayName = 'x'
47 xy_rep.SeriesVisibility = ['x', '0']
48
49 pvsimple.Render()