1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
Some parts of this code are derived from ITK. See ITKCopyright.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.
=========================================================================*/
#ifndef otbPersistentImageToOGRDataFilter_txx
#define otbPersistentImageToOGRDataFilter_txx
#include "otbPersistentImageToOGRDataFilter.h"
#include "itkTimeProbe.h"
#include <boost/foreach.hpp>
#include <stdio.h>
#include "otbMacro.h"
#include "otbOGRHelpers.h"
namespace otb
{
template<class TImage>
PersistentImageToOGRDataFilter<TImage>
::PersistentImageToOGRDataFilter()
: m_FieldName("DN")
, m_LayerName("Layer")
, m_GeometryType(wkbMultiPolygon)
, m_FieldType(OFTInteger)
{
this->SetNumberOfRequiredInputs(2);
this->SetNumberOfRequiredInputs(2);
m_StreamSize.Fill(0);
}
template<class TImage>
PersistentImageToOGRDataFilter<TImage>
::~PersistentImageToOGRDataFilter()
{
}
template<class TImage>
void
PersistentImageToOGRDataFilter<TImage>
::SetOGRDataSource( OGRDataSourcePointerType ogrDS )
{
this->itk::ProcessObject::SetNthInput(1, ogrDS);
}
template<class TImage>
typename PersistentImageToOGRDataFilter<TImage>::OGRDataSourceType *
PersistentImageToOGRDataFilter<TImage>
::GetOGRDataSource( void )
{
return static_cast<OGRDataSourceType *> (this->itk::ProcessObject::GetInput(1));
}
template<class TImage>
void
PersistentImageToOGRDataFilter<TImage>
::AddOGRLayerCreationOption(const std::string& option)
{
m_OGRLayerCreationOptions.push_back(option);
this->Modified();
}
template<class TImage>
void
PersistentImageToOGRDataFilter<TImage>
::ClearOGRLayerCreationOptions()
{
m_OGRLayerCreationOptions.clear();
this->Modified();
}
template<class TImage>
void
PersistentImageToOGRDataFilter<TImage>
::SetOGRLayerCreationOptions(const std::vector<std::string>& options)
{
m_OGRLayerCreationOptions = options;
this->Modified();
}
template<class TImage>
const std::vector<std::string>&
PersistentImageToOGRDataFilter<TImage>
::GetOGRLayerCreationOptions(void)
{
return m_OGRLayerCreationOptions;
}
template<class TImage>
void
PersistentImageToOGRDataFilter<TImage>
::AllocateOutputs()
{
// Nothing that needs to be allocated for the outputs : the output is not meant to be used
}
template<class TImage>
void
PersistentImageToOGRDataFilter<TImage>
::Reset()
{
}
template<class TImage>
void
PersistentImageToOGRDataFilter<TImage>
::Synthetize()
{
}
template<class TImage>
void
PersistentImageToOGRDataFilter<TImage>
::Initialize()
{
std::string projectionRefWkt = this->GetInput()->GetProjectionRef();
bool projectionInformationAvailable = !projectionRefWkt.empty();
OGRSpatialReference * oSRS = NULL;
if(projectionInformationAvailable)
{
oSRS = static_cast<OGRSpatialReference *>(OSRNewSpatialReference(projectionRefWkt.c_str()));
}
OGRDataSourcePointerType ogrDS = this->GetOGRDataSource();
OGRLayerType outLayer = ogrDS->CreateLayer(m_LayerName, oSRS ,m_GeometryType, m_OGRLayerCreationOptions);
OGRFieldDefn field(m_FieldName.c_str(),m_FieldType);
outLayer.CreateField(field, true);
}
template<class TImage>
void
PersistentImageToOGRDataFilter<TImage>
::GenerateData()
{
if (this->GetStreamSize()[0]==0 && this->GetStreamSize()[1]==0)
{
this->m_StreamSize = this->GetInput()->GetRequestedRegion().GetSize();
}
// call the processing function for this tile
OGRDataSourcePointerType currentTileVD = this->ProcessTile();
OGRLayerType srcLayer = currentTileVD->GetLayerChecked(0);
OGRDataSourcePointerType ogrDS = this->GetOGRDataSource();
OGRLayerType dstLayer = ogrDS->GetLayersCount() == 1
? ogrDS->GetLayer(0)
: ogrDS->GetLayer(m_LayerName);
//Copy features contained in the memory layer (srcLayer) in the output layer
itk::TimeProbe chrono;
chrono.Start();
OGRErr err = dstLayer.ogr().StartTransaction();
if (err != OGRERR_NONE)
{
itkExceptionMacro(<< "Unable to start transaction for OGR layer " << dstLayer.ogr().GetName() << ".");
}
OGRLayerType::const_iterator featIt = srcLayer.begin();
for(; featIt!=srcLayer.end(); ++featIt)
{
OGRFeatureType dstFeature(dstLayer.GetLayerDefn());
dstFeature.SetFrom( *featIt, TRUE );
dstLayer.CreateFeature( dstFeature );
}
err = dstLayer.ogr().CommitTransaction();
if (err != OGRERR_NONE)
{
itkExceptionMacro(<< "Unable to commit transaction for OGR layer " << dstLayer.ogr().GetName() << ".");
}
chrono.Stop();
otbMsgDebugMacro(<< "write ogr tile took " << chrono.GetTotal() << " sec");
}
template<class TImage>
void
PersistentImageToOGRDataFilter<TImage>
::PrintSelf(std::ostream& os, itk::Indent indent) const
{
Superclass::PrintSelf(os, indent);
}
} // end namespace otb
#endif
|