Salome HOME
Corrections of examples path after install with scbi
[modules/hydro.git] / doc / salome / examples / h006_importBathyXYZBad.py
1 # -*- coding: utf-8 -*-
2
3 import os
4 HYDRO_SAMPLES = os.path.join( os.environ["HYDRO_ROOT_DIR"], "bin/salome/test")
5
6 import sys
7 import salome
8
9 salome.salome_init()
10
11 from HYDROPy import *
12 from PyQt5.QtCore import *
13 from PyQt5.QtGui import *
14
15 hydro_doc = HYDROData_Document.Document()
16
17 hydro_doc.SetLocalCS( 430000, 6.35e+06 )
18
19 Cloud_inexistant = hydro_doc.CreateObject( KIND_BATHYMETRY )
20 Cloud_inexistant.SetName( "Cloud_inexistant" )
21
22 Cloud_inexistant.SetAltitudesInverted( 0 );
23 ret = Cloud_inexistant.ImportFromFile( os.path.join(HYDRO_SAMPLES,  "Cloud_inexistant.xyz" ))
24
25 if ret:
26   raise ValueError('loading problem not detected: return value should be null')
27
28 if salome.sg.hasDesktop():
29   salome.sg.updateObjBrowser()