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

ENH: Use OGRversionProxy in OGRIOHelper, making it compatible with both gdal 1.x and 2.x

parent 4d300f5c
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,7 @@
#include <vector>
#include "otbVectorData.h"
#include "otbOGRVersionProxy.h"
class GDALDataset;
class OGRGeometryCollection;
......@@ -63,14 +64,14 @@ public:
unsigned int ProcessNodeWrite(InternalTreeNodeType * source,
GDALDataset * m_DataSource,
OGRVersionProxy::GDALDatasetType * m_DataSource,
OGRGeometryCollection * ogrCollection,
OGRLayer * ogrCurrentLayer,
OGRSpatialReference * oSRS);
/** Return a list of OGRLayer * */
std::vector<OGRLayer*> ConvertDataTreeNodeToOGRLayers(InternalTreeNodeType * source,
GDALDataset * dummyDatasource,
OGRVersionProxy::GDALDatasetType * dummyDatasource,
OGRLayer* ogrCurrentLayer,
OGRSpatialReference * oSRS);
......
......@@ -649,7 +649,7 @@ void OGRIOHelper
unsigned int OGRIOHelper
::ProcessNodeWrite(InternalTreeNodeType * source,
GDALDataset * m_DataSource,
OGRVersionProxy::GDALDatasetType * m_DataSource,
OGRGeometryCollection * ogrCollection,
OGRLayer * ogrCurrentLayer,
OGRSpatialReference * oSRS)
......@@ -1025,7 +1025,7 @@ unsigned int OGRIOHelper
**/
std::vector<OGRLayer*> OGRIOHelper
::ConvertDataTreeNodeToOGRLayers(InternalTreeNodeType * source,
GDALDataset * inMemoryDataSource,
OGRVersionProxy::GDALDatasetType * inMemoryDataSource,
OGRLayer* ogrCurrentLayer,
OGRSpatialReference * oSRS)
{
......@@ -1034,8 +1034,8 @@ std::vector<OGRLayer*> OGRIOHelper
if (inMemoryDataSource == NULL)
{
const char * driverName = "Memory";
GDALDriver * ogrDriver = GetGDALDriverManager()->GetDriverByName(driverName);
inMemoryDataSource = ogrDriver->Create("tempDataSource",0,0,0,GDT_Unknown,NULL);
OGRVersionProxy::GDALDriverType * ogrDriver = OGRVersionProxy::GetDriverByName(driverName);
inMemoryDataSource = OGRVersionProxy::Create(ogrDriver,"tempDataSource");
}
std::vector<OGRLayer*> ogrLayerVector;
......
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