Skip to content

Commit

Permalink
update MDAL 1.01 (#51239)
Browse files Browse the repository at this point in the history
  • Loading branch information
vcloarec committed Dec 15, 2022
1 parent 9a8b8b1 commit 463ef5b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion external/mdal/frmts/mdal_hdf5.hpp
Expand Up @@ -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;

/**
Expand Down
4 changes: 4 additions & 0 deletions external/mdal/frmts/mdal_xmdf.cpp
Expand Up @@ -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 );
Expand Down

0 comments on commit 463ef5b

Please sign in to comment.