From 68d66576c9a7b9019c71a7d9e77427e466f548d0 Mon Sep 17 00:00:00 2001 From: vcloarec Date: Thu, 15 Dec 2022 08:17:58 -0400 Subject: [PATCH] update MDAL 1.01 --- external/mdal/frmts/mdal_hdf5.hpp | 2 +- external/mdal/frmts/mdal_xmdf.cpp | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/external/mdal/frmts/mdal_hdf5.hpp b/external/mdal/frmts/mdal_hdf5.hpp index e03314f26c3e..1f09e9d24ad6 100644 --- a/external/mdal/frmts/mdal_hdf5.hpp +++ b/external/mdal/frmts/mdal_hdf5.hpp @@ -77,7 +77,7 @@ class HdfFile inline HdfGroup group( const std::string &path ) const; - //! Creates a group wint an absolute path + //! Creates a group with an absolute path inline HdfGroup createGroup( const std::string &path ) const; /** diff --git a/external/mdal/frmts/mdal_xmdf.cpp b/external/mdal/frmts/mdal_xmdf.cpp index 516febbc2303..c09d5fa0e557 100644 --- a/external/mdal/frmts/mdal_xmdf.cpp +++ b/external/mdal/frmts/mdal_xmdf.cpp @@ -132,6 +132,10 @@ void MDAL::DriverXmdf::readGroupsTree( HdfFile &file, const std::string &name, M { addDatasetGroupsFromXmdfGroup( groups, gGroup, "/Maximums", vertexCount, faceCount ); } + else if ( groupName == "Final" ) + { + addDatasetGroupsFromXmdfGroup( groups, gGroup, "/Final", vertexCount, faceCount ); + } else { addDatasetGroupsFromXmdfGroup( groups, gGroup, "", vertexCount, faceCount );