1 // Copyright (C) 2014-2015 EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 // Lesser General Public License for more details.
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #include <HYDROData_LandCoverMap.h>
23 class HYDROData_LandCoverMap : public HYDROData_Entity
26 #include <HYDROData_LandCoverMap.h>
29 %ConvertToSubClassCode
30 switch ( sipCpp->GetKind() )
32 case KIND_LAND_COVER_MAP:
33 sipClass = sipClass_HYDROData_LandCoverMap;
37 // We don't recognise the type.
46 DBFStatus_DIFF_SIZE_ERROR,
47 DBFStatus_OPEN_FILE_ERROR,
48 DBFStatus_NO_SUCH_FIELD_ERROR,
49 DBFStatus_NO_DBFVALUES_CORRESPONDENCE_WARNING
52 HYDROData_LandCoverMap();
53 ~HYDROData_LandCoverMap();
55 DBFStatus ImportDBF( const QString& theDBFFileName,
56 const QString& theFieldName,
57 const QStringList& DBFValues,
58 const QStringList& StricklerTypes );
60 void ExportDBF( const QString& theDBFFileName,
61 const QString& theFieldName,
62 const QStringList& theDBFValues,
63 const QStringList& theStricklerTypes ) const;
65 bool ImportSHP( const QString& theFileName, const QList<int>& theIndices = QList<int>() );
67 bool ExportSHP( const QString& theFileName ) const;
69 bool ExportTelemac( const QString& theFileName, double theDeflection,
70 HYDROData_StricklerTable theTable ) const
71 [bool( const QString&, double, const opencascade::handle<HYDROData_StricklerTable>& )];
73 Handle(HYDROData_StricklerTable) aRef =
74 Handle(HYDROData_StricklerTable)::DownCast( createHandle( a2 ) );
77 Py_BEGIN_ALLOW_THREADS
79 sipRes = sipSelfWasArg ? sipCpp->HYDROData_LandCoverMap::ExportTelemac( *a0, a1, aRef, messStat ):
80 sipCpp->ExportTelemac( *a0, a1, aRef, messStat );
85 bool Add( HYDROData_Object theObject, const QString& theType )
86 [bool ( const opencascade::handle<HYDROData_Object>&, const QString& )];
88 Handle(HYDROData_Object) aRef =
89 Handle(HYDROData_Object)::DownCast( createHandle( a0 ) );
92 Py_BEGIN_ALLOW_THREADS
93 sipRes = sipSelfWasArg ? sipCpp->HYDROData_LandCoverMap::Add( aRef, *a1 ):
94 sipCpp->Add( aRef, *a1 );
99 bool Add( HYDROData_PolylineXY thePolyline, const QString& theType )
100 [bool ( const opencascade::handle<HYDROData_PolylineXY>&, const QString& )];
102 Handle(HYDROData_PolylineXY) aRef =
103 Handle(HYDROData_PolylineXY)::DownCast( createHandle( a0 ) );
104 if ( !aRef.IsNull() )
106 Py_BEGIN_ALLOW_THREADS
107 sipRes = sipSelfWasArg ? sipCpp->HYDROData_LandCoverMap::Add( aRef, *a1 ):
108 sipCpp->Add( aRef, *a1 );
113 bool Split( HYDROData_PolylineXY thePolyline )
114 [bool ( const opencascade::handle<HYDROData_PolylineXY>& )];
116 Handle(HYDROData_PolylineXY) aRef =
117 Handle(HYDROData_PolylineXY)::DownCast( createHandle( a0 ) );
118 if ( !aRef.IsNull() )
120 Py_BEGIN_ALLOW_THREADS
121 sipRes = sipSelfWasArg ? sipCpp->HYDROData_LandCoverMap::Split( aRef ):
122 sipCpp->Split( aRef );