X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Bathymetry.cxx;h=adc140a1db93066822acd12b612faced8666e980;hb=c7cf59e092fe050003d1e556715e3ac97acf6bd4;hp=e3320ad2d4f308b5e68a32ac9f309494514cd6c9;hpb=474c2cd65280d793f1c81ca528bc92e1cff988e6;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Bathymetry.cxx b/src/HYDROData/HYDROData_Bathymetry.cxx index e3320ad2..adc140a1 100644 --- a/src/HYDROData/HYDROData_Bathymetry.cxx +++ b/src/HYDROData/HYDROData_Bathymetry.cxx @@ -409,6 +409,8 @@ bool HYDROData_Bathymetry::ImportFromFile( const TCollection_AsciiString& theFil // Try to import the file if ( aFileSuf == "xyz" ) aRes = importFromXYZFile( aFile, aPoints ); + else if ( aFileSuf == "asc" ) + aRes = importFromASCFile( aFile, aPoints ); // Close the file aFile.close(); @@ -496,6 +498,97 @@ bool HYDROData_Bathymetry::importFromXYZFile( QFile& theFile, return true; } +bool HYDROData_Bathymetry::importFromASCFile( QFile& theFile, + AltitudePoints& thePoints ) const +{ + if ( !theFile.isOpen() ) + return false; + + QString aLine; + QStringList aStrList; + + int aNCols; + int aNRows; + double anXllCorner; + double anYllCorner; + double aCellSize; + double aNoDataValue; + + aLine = theFile.readLine().simplified(); + aStrList = aLine.split( ' ', QString::SkipEmptyParts ); + if ( aStrList.length() != 2 && aStrList[0].toLower() != "ncols" ) + return false; + aNCols = aStrList[1].toInt(); + + aLine = theFile.readLine().simplified(); + aStrList = aLine.split( ' ', QString::SkipEmptyParts ); + if ( aStrList.length() != 2 && aStrList[0].toLower() != "nrows" ) + return false; + aNRows = aStrList[1].toInt(); + + aLine = theFile.readLine().simplified(); + aStrList = aLine.split( ' ', QString::SkipEmptyParts ); + if ( aStrList.length() != 2 && aStrList[0].toLower() != "xllcorner" ) + return false; + anXllCorner = aStrList[1].toDouble(); + + aLine = theFile.readLine().simplified(); + aStrList = aLine.split( ' ', QString::SkipEmptyParts ); + if ( aStrList.length() != 2 && aStrList[0].toLower() != "yllcorner" ) + return false; + anYllCorner = aStrList[1].toDouble(); + + aLine = theFile.readLine().simplified(); + aStrList = aLine.split( ' ', QString::SkipEmptyParts ); + if ( aStrList.length() != 2 && aStrList[0].toLower() != "cellsize" ) + return false; + aCellSize = aStrList[1].toDouble(); + + aLine = theFile.readLine().simplified(); + aStrList = aLine.split( ' ', QString::SkipEmptyParts ); + if ( aStrList.length() != 2 && aStrList[0].toLower() != "nodata_value" ) + return false; + aNoDataValue = aStrList[1].toDouble(); + + bool anIsAltitudesInverted = IsAltitudesInverted(); + + int i = 0; + int aStrLength = 0; + while ( !theFile.atEnd() ) + { + aLine = theFile.readLine().simplified(); + aStrList = aLine.split( ' ', QString::SkipEmptyParts ); + + aStrLength = aStrList.length(); + if ( aStrLength == 0 ) + continue; + + if ( aStrLength != aNRows ) + return false; + + for (int j = 0; j < aNCols; j++) + { + if (aStrList[j].toDouble() != aNoDataValue) + { + AltitudePoint aPoint; + aPoint.SetX(anXllCorner + aCellSize*(j + 0.5)); + aPoint.SetY(anYllCorner + aCellSize*(aNRows - i + 0.5)); + aPoint.SetZ(aStrList[j].toDouble()); + + if ( anIsAltitudesInverted ) + aPoint.SetZ( -aPoint.Z() ); + + thePoints.Append(aPoint); + } + } + i++; + + } + + return true; + +} + Handle_HYDROData_PolylineXY HYDROData_Bathymetry::CreateBoundaryPolyline() const {