Skip to content
Snippets Groups Projects
Commit c6042692 authored by Julien Michel's avatar Julien Michel
Browse files

MRG: Mergin heads

parents ce5c849e 30798a1f
Branches
Tags
No related merge requests found
/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include "otbKMLVectorDataIO.h"
#include "otbVectorData.h"
#include <iostream>
int otbKMLVectorDataIOTestFileReader(int argc, char* argv[])
{
typedef otb::VectorData<> VectorDataType;
typedef otb::KMLVectorDataIO<VectorDataType> KMLVectorDataIOType;
typedef VectorDataType::Pointer VectorDataPointerType;
KMLVectorDataIOType::Pointer object = KMLVectorDataIOType::New();
VectorDataPointerType data = VectorDataType::New();
bool lCanRead = object->CanReadFile(argv[1]);
// ??
object->SetFileName(argv[1]);
std::cout<<" FileName : "<< object->GetFileName() <<std::endl;
object->Read(data);
/* if ( lCanRead == false)
{
std::cerr << "Erreur otb::KMLVectorDataIO : impossible to create the file "<<argv[1]<<"."<<std::endl;
return EXIT_FAILURE;
}
*/
return EXIT_SUCCESS;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment