Skip to content
Snippets Groups Projects
Commit 24806f33 authored by Thibaut ROMAIN's avatar Thibaut ROMAIN
Browse files

Fix remaining vectordata Tests and fix CI warnings

parent d1a29279
No related branches found
No related tags found
1 merge request!528Support of ITK 5.x in OTB
Pipeline #16054 failed
......@@ -126,7 +126,7 @@ fast-build:
- export GIT_LFS_SKIP_SMUDGE=1
- git checkout -f -q $CI_COMMIT_SHA
script:
- ctest -V -S CI/main_ci.cmake -DIMAGE_NAME:string=ubuntu-22.04-fast -Dci_skip_testing:BOOL=ON
- ctest -V -S CI/main_ci.cmake -DIMAGE_NAME:string=ubuntu-22.04-fast
- ccache -s
legal-check:
......
......@@ -138,6 +138,7 @@ excludedfiles = set([
'./Modules/Visualization/Ice/README',
'./Modules/Core/Wrappers/SWIG/src/numpy.i',
'./Modules/Core/Wrappers/SWIG/src/python/__init__.py',
'./Modules/Core/Common/include/otbCastImageFilter.h'
'./Packaging/Files/OTB Project.zip',
'./Packaging/Files/template.app/Contents/Info.plist',
'./Packaging/LICENSE',
......
File moved
File moved
No preview for this file type
GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]]
\ No newline at end of file
......@@ -86,8 +86,9 @@ void ConcatenateVectorDataFilter<TVectorData>::GenerateData()
auto outputPtr = this->GetOutput();
auto inputPtr = this->GetInput(0);
typename DataNodeType::Pointer outputDocument = inputPtr->GetChildrenList(inputPtr->GetRoot()).at(0);
outputPtr->Add(outputDocument,outputPtr->GetRoot());
outputPtr->Graft(inputPtr);
typename DataNodeType::Pointer outputDocument = outputPtr->GetChildrenList(outputPtr->GetRoot()).at(0);
//outputPtr->Add(outputDocument,outputPtr->GetRoot());
// Adding the layer to the data tree
// this->GetOutput()->Add(m_Document, outputRoot);
// this->GetOutput()->Add(m_Folder, m_Document);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment